From owner-freebsd-questions Sun Jul 1 0: 2:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from omsk.mushinsky.net (omsk.mushinsky.net [66.9.37.251]) by hub.freebsd.org (Postfix) with ESMTP id F07CC37B401 for ; Sun, 1 Jul 2001 00:02:48 -0700 (PDT) (envelope-from imush@mail.ru) Received: from omsk.mushinsky.net (itz@localhost [127.0.0.1]) by omsk.mushinsky.net (8.11.3/8.11.1) with SMTP id f616SEC74786; Sun, 1 Jul 2001 02:28:14 -0400 (EDT) (envelope-from imush@mail.ru) Content-Type: text/plain; charset="koi8-r" From: Isaac Mushinsky To: "freebsd-questions" Subject: Re: ipfw Date: Sun, 1 Jul 2001 02:28:14 -0400 X-Mailer: KMail [version 1.2] Cc: tyler spivey MIME-Version: 1.0 Message-Id: <01070102281403.73812@omsk.mushinsky.net> 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 On Saturday 30 June 2001 16:50, you wrote: > place cc me sicne i am not on this list. > how do i get nat on ipf? > it says unknown keyword map. > map rl0 10.0.0.0/24 -> 0/32 > it worked under ipfw. > and ihave natd_enable and all that in rc.conf. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message In your kernel config file you shoud have options=09 IPFIREWALL options IPDIVERT also possibly options MROUTING options IPFIREWALL_FORWARD options IPV6FIREWALL if not, recompile kernel with these. Now use ipfw. For example, I have 2 ethernet cards on the firewall: rl0 g= oes to DSL modem and dc0 to another box. For a wide open diversion use $ ipf= w -f flush $ ipfw add divert 8668 all from any to any via rl0 $ ipfw add allow all from any to any $ /sbin/natd To set this up on boot, here is my rc.conf: inetd_enable=3D"YES" ifconfig_rl0=3D"inet xxx.xxx.xxx.xxx netmask 255.255.255.0" <<<< my s= tatic IP address there defaultrouter=3D"xxx.xxx.xxx.1" <<<< gateway from my ISP tcp_extensions=3D"YE= S" nisdomainname=3D"NO" network_interfaces=3D"ppp0 rl0 dc0 lo0" ifconfig_dc0=3D"inet 192.168.2.100 netmask 255.255.255.0" ipv6_enable=3D"YES" firewall_enable=3D"YES" natd_program=3D"/sbin/natd" natd_interface=3D"rl0" natd_enable=3D"YES" and rc.network: /sbin/ipfw -f flush /sbin/ipfw add divert 8668 all from any to any via rl0 /sbin/ipfw add allow all from any to any ------------------------------------------------------- ------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 0: 3: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from omsk.mushinsky.net (omsk.mushinsky.net [66.9.37.251]) by hub.freebsd.org (Postfix) with ESMTP id 5AF6237B406 for ; Sun, 1 Jul 2001 00:02:50 -0700 (PDT) (envelope-from imush@mail.ru) Received: from omsk.mushinsky.net (itz@localhost [127.0.0.1]) by omsk.mushinsky.net (8.11.3/8.11.1) with SMTP id f614KIC73975; Sun, 1 Jul 2001 00:20:18 -0400 (EDT) (envelope-from imush@mail.ru) Content-Type: text/plain; charset="koi8-r" From: Isaac Mushinsky To: tyler spivey , "freebsd-questions" Subject: Re: how to setup natd under ipf? Date: Sun, 1 Jul 2001 00:20:18 -0400 X-Mailer: KMail [version 1.2] References: <200106302050.f5UKoRa00311@home.com> In-Reply-To: <200106302050.f5UKoRa00311@home.com> MIME-Version: 1.0 Message-Id: <01070100201800.73812@omsk.mushinsky.net> 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 On Saturday 30 June 2001 16:50, you wrote: > place cc me sicne i am not on this list. > how do i get nat on ipf? > it says unknown keyword map. > map rl0 10.0.0.0/24 -> 0/32 > it worked under ipfw. > and ihave natd_enable and all that in rc.conf. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message In your kernel config file you shoud have options=09 IPFIREWALL options IPDIVERT also possibly options MROUTING options IPFIREWALL_FORWARD options IPV6FIREWALL if not, recompile kernel with these. Now use ipfw. For example, I have 2 ethernet cards on the firewall: rl0 g= oes to DSL modem and dc0 to another box. For a wide open diversion use $ ipfw -f flush $ ipfw add divert 8668 all from any to any via rl0 $ ipfw add allow all from any to any $ /sbin/natd To set this up on boot, here is my rc.conf: inetd_enable=3D"YES" ifconfig_rl0=3D"inet xxx.xxx.xxx.xxx netmask 255.255.255.0" <<<< my s= tatic IP address there defaultrouter=3D"xxx.xxx.xxx.1" = <<<< gateway from my ISP tcp_extensions=3D"YES" nisdomainname=3D"NO" network_interfaces=3D"ppp0 rl0 dc0 lo0" ifconfig_dc0=3D"inet 192.168.2.100 netmask 255.255.255.0" ipv6_enable=3D"YES" firewall_enable=3D"YES" natd_program=3D"/sbin/natd" natd_interface=3D"rl0" natd_enable=3D"YES" and rc.network: /sbin/ipfw -f flush /sbin/ipfw add divert 8668 all from any to any via rl0 /sbin/ipfw add allow all from any to any To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 0: 8: 5 2001 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 2883737B405 for ; Sun, 1 Jul 2001 00:08:02 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-b083.otenet.gr [195.167.121.211]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f6177xF03768; Sun, 1 Jul 2001 10:07:59 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.3) id f616n7x02469; Sun, 1 Jul 2001 09:49:07 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sun, 1 Jul 2001 09:49:07 +0300 From: Giorgos Keramidas To: John Toon Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Internet browser setup Message-ID: <20010701094907.B2141@hades.hell.gr> References: <49B.5000300@btinternet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <49B.5000300@btinternet.com>; from john.toon@btinternet.com on Thu, Jan 01, 1970 at 12:19:39AM +0000 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-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, 01 Jan 1970 00:19:39 +0000 From: John Toon To: Micke Josefsson Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Internet browser setup This must be the message whose date is closest to the Epoch, that I have ever seen! And one of the oldest email messages too. My goodness! I never realized that FreeBSD was *that* old ;-) -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 0: 8:38 2001 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 1236237B406 for ; Sun, 1 Jul 2001 00:08:33 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-b083.otenet.gr [195.167.121.211]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f61787F03868; Sun, 1 Jul 2001 10:08:07 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.3) id f616iSH02449; Sun, 1 Jul 2001 09:44:28 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sun, 1 Jul 2001 09:44:27 +0300 From: Giorgos Keramidas To: Jun Beldad Cc: questions@FreeBSD.ORG Subject: Re: need help with freebsd Message-ID: <20010701094427.A2141@hades.hell.gr> References: <001601c10064$62129880$0c0cdca5@dost.gov.ph> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <001601c10064$62129880$0c0cdca5@dost.gov.ph>; from nuj@dost.gov.ph on Fri, Jun 29, 2001 at 02:24:54PM +0800 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ## Moved from -newbies to -questions. On Fri, Jun 29, 2001 at 02:24:54PM +0800, Jun Beldad wrote: > hello to all > > I'm using FreeBSD 3.2 as a mail server. I have a few questions in mind, please help. > > 1. users always see "FreeBSD/i386 (localhost.localdomain) (ttyp1)" , > which file should I modify so that it would appear something like > "Welcome to ....." ? You need to change the hostname of the machine. Set this by editing /etc/rc.conf and adding a line: hostname="your.full.host.and.domain.name.here" or changing an existing hostname line, if one already exists. > 2. recently, the root receives mail from "root(Cron Dameon)" with > subject : Cron root@localhost /usr/libexec/atrun, what am i suppose > to do ? What do you mean, "what are you supposed to do"? It's mail. Read it, would be a reasonable thing. Forward it to some mailbox that you regularly check, is another idea. It's actually up to you to choose :) > 3. I need "file" command that supports "-b" but I can't seem to > download it from any ftp site suggested in the man pages... anyone > who knows where else can i download it? What is your -b option supposed to do. From the manpage of file(1) on my FreeBSD system I read: OPTIONS -b Do not prepend filenames to output lines (brief mode). Is that what you mean? If not, reaed the manpage of file with `man file' and see if some other option does what you are trying to do. Ciao, -giorgos PS: The -newbies list is not for posting questions. Try posting to freebsd-questions@freebsd.org next time you want to ask something about FreeBSD. Before posting to -questions though, it would be a very good idea to read what Greg Lehey has written about using the list effectively. Point your browser at http://www.lemis.com/questions.html. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 0:16: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hamster.franken.de (hamster.franken.de [193.141.110.13]) by hub.freebsd.org (Postfix) with ESMTP id A87B537B403 for ; Sun, 1 Jul 2001 00:15:55 -0700 (PDT) (envelope-from tanis@gaspode.franken.de) Received: from karnickel.franken.de (karnickel.franken.de [193.141.110.11]) by hamster.franken.de (8.11.1/8.11.1) with ESMTP id f617Fox80476; Sun, 1 Jul 2001 09:15:50 +0200 (CEST) (envelope-from tanis@gaspode.franken.de) Received: from gaspode.franken.de (lengfeld.core.main.franken.de [193.141.110.4]) by karnickel.franken.de (8.11.3/8.11.3) with ESMTP id f617Fnd69189; Sun, 1 Jul 2001 09:15:49 +0200 (CEST) (envelope-from tanis@gaspode.franken.de) Received: (from tanis@localhost) by gaspode.franken.de (8.11.3/8.11.1) id f617Fmo01086; Sun, 1 Jul 2001 09:15:48 +0200 (CEST) (envelope-from tanis) Date: Sun, 1 Jul 2001 09:15:48 +0200 From: German Tischler To: shailesh sheoran Cc: FreeBSD-Questions Subject: Re: -iface option doesn't work in route command Message-ID: <20010701091548.A1027@gaspode.franken.de> References: <025301c0f91f$caff1130$1200a8c0@gsicomp.on.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="+QahgC5+KEYLbs62" Content-Disposition: inline User-Agent: Mutt/1.2.5-current-20010403i In-Reply-To: ; from shailesh@ece.ubc.ca on Sat, Jun 30, 2001 at 11:13:13PM -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 --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jun 30, 2001 at 11:13:13PM -0700, shailesh sheoran wrote: > Hi, > i am trying to setup a network using 5 computers each with 2 > network interfaces. > when i try to do the following on my FreeBSD 4.3 RELEASE machine: >=20 > route add 198.82.223.123 198.82.223.79 -iface fxp1 >=20 > i.e i want to tell my machine to look for 198.82.223.123 on > interfacet fxp1 instead of fxp0, and use 198.82.223.79 as the gateway, i > get the following error/bug: > bad address : fxp1 Did you try route add 198.82.223.79 -iface fxp1 route add 198.82.223.123 198.82.223.79 ? (According to the route manpage the iface and gateway flags can't be set at the same time) --gt --+QahgC5+KEYLbs62 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 iQEVAwUBOz7OJL7hO6NLB/FvAQG6SQf/f41XF23GGWl0yPxuFM1kdTJc97HX77tI PKbLerJ00ra8GntZrrujKcox5GBW9BCSOteMki9fXlKRaPGuSJY1duHRKt8Llo6J /KuAN7l9m071OjswBhoLkHQ+EBSjS6+UNyN3thJEj7iRBvsXNqOf9yMzTUZFMj1p IUHCo1rzq4mVzrT9t0Mf1S1U/8ocvPsjMhHnhOKks/Cujchgf7eE8nKoqIDNOM1o Y8xIpPezJrMYXVOQEhN0dpiMe397xLjM66pRRQ2PuRVYIXvbWqWslz2ycrst/R3r BjIYIuKW9D4UDph/5de6x5FXF/JU4t7icJv4bvpoBYc18pgWP3CM0Q== =D3wo -----END PGP SIGNATURE----- --+QahgC5+KEYLbs62-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 0:58:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from my.usask.ca (my.usask.ca [128.233.65.7]) by hub.freebsd.org (Postfix) with ESMTP id 3EF9137B403 for ; Sun, 1 Jul 2001 00:58:14 -0700 (PDT) (envelope-from kek971@mail.usask.ca) Received: (from nobody@localhost) by my.usask.ca (8.11.0/8.11.0) id f617wCl31526 for questions@FreeBSD.ORG; Sun, 1 Jul 2001 01:58:12 -0600 To: Subject: 2 versions of ftp? Message-ID: <993974292.3b3ed81428980@my.usask.ca> Date: Sun, 01 Jul 2001 01:58:12 -0600 (CST) From: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 2.3.6-cvs X-WebMail-Service: My.USask.CA X-Originating-IP: 24.71.108.209 Sender: owner-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 i have 2 versions of ftp servers on one freebsd box? ...one for anoymous...the other for requiring login&pass which is "not anoymous" one... 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 Sun Jul 1 1: 9:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [206.29.169.15]) by hub.freebsd.org (Postfix) with ESMTP id 51A7537B401 for ; Sun, 1 Jul 2001 01:09:34 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Received: from tedm.placo.com (nat-rtr.freebsd-corp-net-guide.com [206.29.168.154]) by mail.freebsd-corp-net-guide.com (8.11.1/8.11.1) with SMTP id f6189Vl25460; Sun, 1 Jul 2001 01:09:32 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "David Leimbach" , Subject: RE: Real numbers on why loopback is slow in FreeBSD please read... Date: Sun, 1 Jul 2001 01:09:30 -0700 Message-ID: <001801c10205$27b12f60$1401a8c0@tedm.placo.com> 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 8.5, Build 4.71.2173.0 In-Reply-To: <20010630112406.A1143@mutt.home.net> X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 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 >-----Original Message----- >From: owner-freebsd-questions@FreeBSD.ORG >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of David Leimbach > [rant deleted] >I noticed the really horribly poor latency of FreeBSD when using >the loopback. > >Here are some numbers: >[From the perf MPI test on FreeBSD ] > [numbers deleted, refer to previous message] >So I think I have valid reason to be worried. This is just a ping-pong >test that perf runs but the message latency on linux is more desirable >than FreeBSD. > >Is this related to proc speeds at all? If so how much? > >I would like to do better than 223.44 ms latency for a 0 data length packet >in FreeBSD. > >Any ideas?? > Dave, There's probably another reason that people aren't really paying attention to your posting - they aren't seeing the same figures. Here's the output on my own home system, a Pentium 166Mhz: mail# ping -s 4096 -f 127.0.0.1 PING 127.0.0.1 (127.0.0.1): 4096 data bytes .^. --- 127.0.0.1 ping statistics --- 2574 packets transmitted, 2573 packets received, 0% packet loss round-trip min/avg/max/stddev = 0.235/0.252/0.438/0.013 ms mail# As you can see, with a packetsize of 4096 (8192, your largest size, isn't valid for ping) pinging the loopback as fast as possible, I'm only seeing an average of 252 microseconds, not 400 microseconds as you posted. Doing the same thing again with a packetsize of 64 shows the following: mail# ping -s 64 -f 127.0.0.1 PING 127.0.0.1 (127.0.0.1): 64 data bytes .^C --- 127.0.0.1 ping statistics --- 2995 packets transmitted, 2994 packets received, 0% packet loss round-trip min/avg/max/stddev = 0.071/0.075/0.229/0.004 ms mail# Now I'm seeing only 75 microseconds average. Once again, this is vastly different than the 200+ microseconds your seeing on your test. Now, you said in your posting that your perf stats run a ping pong test so whatever your running ought to be identical to "ping -f -s somedatasize". You didn't post how fast the CPU of your system is, nor any of the other particulars. And, you certainly didn't post the code that your using to generate your numbers. Would you consider the possibility that your code that you wrote to do this is horribly inefficient, instead of FreeBSD? I have observed that most of the problems that people have troubleshooting is when they start assuming that what they have done couldn't possibly have a problem, so they waste all kinds of time searching for the problem that they are convinced that something else has. You need to consider that your code is faulty and test this hypothesis with other people's code that does the same thing. If your code and everyone else's code running on FreeBSD all come up with the same numbers, that are repeatable on other people's system, then we would get interested. But as of now I have attempted to duplicate your hypothesis of inefficient loopback performance under FreeBSD and found that there is no basis for it. Ted Mittelstaedt tedm@toybox.placo.com Author of: The FreeBSD Corporate Networker's Guide Book website: http://www.freebsd-corp-net-guide.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 1:25: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from consult-meyers.com (dialup-40-47.dplanet.ch [212.35.40.47]) by hub.freebsd.org (Postfix) with ESMTP id 3AA4B37B406 for ; Sun, 1 Jul 2001 01:24:54 -0700 (PDT) (envelope-from a.l.meyers@consult-meyers.com) Received: from localhost (localhost.localhost [127.0.0.1]) by consult-meyers.com (8.11.4/8.11.3) with ESMTP id f618Vsh00452; Sun, 1 Jul 2001 10:31:54 +0200 (CEST) (envelope-from a.l.meyers@consult-meyers.com) Date: Sun, 1 Jul 2001 10:31:53 +0200 (CEST) From: "A. L. Meyers" To: Kent Stewart Cc: Subject: Re: make installworld problem In-Reply-To: <3B3E6F41.52AD9552@urx.com> Message-ID: <20010701102152.E414-100000@consult-meyers.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, Kent. Went thru all the steps you recommended with exactly the same result. > > 1. do cvsup supfile done after reexamining Handbook, config files etc. > > > > 2. do make buildworld in /usr/src done, no problems > > > > 3. make buildkernel done, no problems > > > > 4. make installkernel done, no problems > > > > 5. reboot ??? did it and new kernel "4.3 stable" loaded flawlessly > > > > 6. make installworld in /usr/src exited with exactly the same error as in the previous tries. pod2man is included in the perl build and install! The openssl install simply does not find that file, issues the error message you know and makes installworld quit. > > > > 7. mastermerge > > Still haven't got this far. Do you need any further infos? Greetings, Lucien To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 1:27:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from wintermute.primelogic.com (wintermute.primelogic.com [207.189.136.1]) by hub.freebsd.org (Postfix) with ESMTP id ABA2637B403 for ; Sun, 1 Jul 2001 01:27:20 -0700 (PDT) (envelope-from michelle@primelogic.com) Received: from [192.168.1.1] (c886028-a.eugene1.or.home.com [24.14.231.140]) by wintermute.primelogic.com (8.9.2/8.9.2) with ESMTP id BAA26839 for ; Sun, 1 Jul 2001 01:27:09 -0700 (PDT) Mime-Version: 1.0 X-Sender: michelle@primelogic.com (Unverified) Message-Id: Date: Sun, 1 Jul 2001 01:27:07 -0700 To: freebsd-questions@freebsd.org From: Michelle Brownsworth Subject: Problem compiling gtk-1.2.10 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 encountering the following error when trying to compile the GIMP Toolkit for use with XFree86 4.1 via the port on FreeBSD 4.3: configure:4687: cc -o conftest -O -pipe -Wall -I/usr/local/include conftest.c -lXt -L/usr/local/lib -lintl -lxpg4 1>&5 configure: In function `main': configure:4683: warning: implicit declaration of function `XtMalloc' /usr/libexec/elf/ld: cannot find -lXt configure: failed program was: #line 4680 "configure" #include "confdefs.h" int main() { XtMalloc() ; return 0; } (end of "config.log") *** Error code 1 Stop in /usr/ports/x11-toolkits/gtk12. *** Error code 1 I could swear I've compiled this same port on 4.3 previously. .\\ichelle --------------------- Michelle Brownsworth System Administrator PrimeLogic Communications http://www.primelogic.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 2:10:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp04.wxs.nl (smtp04.wxs.nl [195.121.6.59]) by hub.freebsd.org (Postfix) with ESMTP id 060C437B405 for ; Sun, 1 Jul 2001 02:10:26 -0700 (PDT) (envelope-from alfatrion@cybertron.tmfweb.nl) Received: from cybertron ([213.10.151.186]) by smtp04.wxs.nl (Netscape Messaging Server 4.15) with SMTP id GFSETC02.34S; Sun, 1 Jul 2001 11:10:24 +0200 Message-ID: <001801c1020d$a94b4f80$231fa8c0@dekruijff.nl> From: "Alfatrion" To: Cc: References: <993974292.3b3ed81428980@my.usask.ca> Subject: Re: 2 versions of ftp? Date: Sun, 1 Jul 2001 11:09:38 +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 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.. > Can i have 2 versions of ftp servers on one freebsd box? > ...one for anoymous...the other for requiring login&pass which is "not anoymous" one... > > Thank you in advance > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > Yes, just say you want anoymous ftp and you have both. Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 2:31:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from studict.student.utwente.nl (studict.student.utwente.nl [130.89.220.2]) by hub.freebsd.org (Postfix) with ESMTP id 8788137B403 for ; Sun, 1 Jul 2001 02:31:35 -0700 (PDT) (envelope-from e.blok@ieee.org) Received: from hotrod (cal30b034.student.utwente.nl [130.89.229.21]) by studict.student.utwente.nl (8.9.3/MQT) with SMTP id LAA26228 for ; Sun, 1 Jul 2001 11:31:34 +0200 (METDST) Message-ID: <009301c10210$be296240$0215e50a@hotrod> From: "Eelke Blok" To: References: <993974292.3b3ed81428980@my.usask.ca> Subject: Re: 2 versions of ftp? Date: Sun, 1 Jul 2001 11:32: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 From: > Can i have 2 versions of ftp servers on one freebsd box? > ...one for anoymous...the other for requiring login&pass which is "not anoymous" one... I would think the only way is to have them both listen to different ports, but I'm by no means an expert. It would at least be the most straightforward way, I suppose. Cheers, Eelke -- Eelke Blok, http://haywire.student.utwente.nl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 2:33: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web14703.mail.yahoo.com (web14703.mail.yahoo.com [216.136.224.120]) by hub.freebsd.org (Postfix) with SMTP id 7E88E37B405 for ; Sun, 1 Jul 2001 02:33:00 -0700 (PDT) (envelope-from vassd2000@yahoo.com) Message-ID: <20010701093300.77244.qmail@web14703.mail.yahoo.com> Received: from [62.192.66.151] by web14703.mail.yahoo.com; Sun, 01 Jul 2001 02:33:00 PDT Date: Sun, 1 Jul 2001 02:33:00 -0700 (PDT) From: vass D Subject: upgrade - newbie 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. wonder if anyone can help me with the following. i got freebsd 4.2 on my HD and want to go to 4.3. i have a 4.3 iso image on cd. do i upgrade the system from /stand/sysinstall? tried to do the above but didnt quite work. when i selected to update all the sources a message poped-up saying that /usr/src already exists and that this is not the proper way to install sourses and that i should be using cvsup or ctm. i dont wanna use cvsup or ctm cause i alredy have a 600M iso image... any ideas? thanx in advance __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Sun Jul 1 2:34:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.urx.com (mail.urx.com [63.170.19.36]) by hub.freebsd.org (Postfix) with ESMTP id 5368037B403 for ; Sun, 1 Jul 2001 02:34:07 -0700 (PDT) (envelope-from kstewart@urx.com) Received: from urx.com [206.159.132.160] by mail.urx.com with ESMTP (SMTPD32-6.06) id AE86105A0256; Sun, 01 Jul 2001 02:33:58 -0700 Message-ID: <3B3EEE87.B34F3FD9@urx.com> Date: Sun, 01 Jul 2001 02:33:59 -0700 From: Kent Stewart X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: "A. L. Meyers" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: make installworld problem References: <20010701102152.E414-100000@consult-meyers.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 "A. L. Meyers" wrote: > > Thanks, Kent. Went thru all the steps you recommended with > exactly the same result. > > > > 1. do cvsup supfile > > done after reexamining Handbook, config files etc. > > > > > > > 2. do make buildworld in /usr/src > > done, no problems > > > > > > > 3. make buildkernel > > done, no problems > > > > > > > 4. make installkernel > > done, no problems > > > > > > > 5. reboot ??? > > did it and new kernel "4.3 stable" loaded flawlessly > > > > > > > 6. make installworld in /usr/src > > exited with exactly the same error as in the previous tries. > pod2man is included in the perl build and install! The openssl > install simply does not find that file, issues the error message > you know and makes installworld quit. I don't have any idea at this point. I expected pod2man to be built when perl was. You might have to cd in to the src and do make or make install. The makefile is located in /usr/src/gnu/usr.bin/perl/pod/pod2man/Makefile It should be in /usr1/obj/usr/src/gnu/usr.bin/perl/pod/pod2man but the installworld makefile is looking for the /usr/bin version, which you don't have. Then try your installworld again. Kent > > > > > > > 7. mastermerge > > > > > Still haven't got this far. Do you need any further infos? > > Greetings, > > Lucien > > 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://kstewart.urx.com/kstewart/index.html http://daily.daemonnews.org/ SETI (Search for Extraterrestrial Intelligence) @ Home http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 2:35:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from consult-meyers.com (dialup-62-49.dplanet.ch [212.35.62.49]) by hub.freebsd.org (Postfix) with ESMTP id A596737B403 for ; Sun, 1 Jul 2001 02:35:13 -0700 (PDT) (envelope-from a.l.meyers@consult-meyers.com) Received: from localhost (localhost.localhost [127.0.0.1]) by consult-meyers.com (8.11.4/8.11.3) with ESMTP id f619gCh11050 for ; Sun, 1 Jul 2001 11:42:27 +0200 (CEST) (envelope-from a.l.meyers@consult-meyers.com) Date: Sun, 1 Jul 2001 11:42:11 +0200 (CEST) From: "A. L. Meyers" To: Subject: console problems Message-ID: <20010701113032.U4138-100000@consult-meyers.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 Dear FreeBSD support, Thanks for the references to vidcontrol etc. Have also studied the German HOWTO on umlauts. Can you please help me solve the remaining issues: 1. can I set mode="80x50" in rc.conf? I didn't find such a variable in the rc.conf man page. 2. ditto with colours e. g. like "vidcontrol green black". Is there a variable for this in rc.conf or must I set up a script? 3. I following the instructions to edit /etc/ttys setting the terminals to 2511 instead of 25. Hoped to get correct border and frame characters for midc but instead, midc and ee refuse to work in 2511 terminals. Had to use vi (worked!) to set the terminals back to 25. Meanwhile, I have to use vidcontrol manually on each console to set colours and mode. And put up with garbage using midc. Thanks and greetings, Lucien To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 2:40:55 2001 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 AD51E37B401 for ; Sun, 1 Jul 2001 02:40:51 -0700 (PDT) (envelope-from ertr1013@student.uu.se) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by mailf.telia.com (8.11.2/8.11.0) with ESMTP id f619eo027683 for ; Sun, 1 Jul 2001 11:40:50 +0200 (CEST) Received: from ertr1013.student.uu.se (h185n2fls20o913.telia.com [212.181.163.185]) by d1o913.telia.com (8.8.8/8.8.8) with SMTP id LAA23069 for ; Sun, 1 Jul 2001 11:40:49 +0200 (CEST) Received: (qmail 57133 invoked by uid 1001); 1 Jul 2001 09:40:05 -0000 Date: Sun, 1 Jul 2001 11:40:04 +0200 From: Erik Trulsson To: "A. L. Meyers" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: console problems Message-ID: <20010701114004.A57103@student.uu.se> Mail-Followup-To: "A. L. Meyers" , freebsd-questions@FreeBSD.ORG References: <20010701113032.U4138-100000@consult-meyers.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010701113032.U4138-100000@consult-meyers.com> User-Agent: Mutt/1.3.19i Sender: owner-freebsd-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, Jul 01, 2001 at 11:42:11AM +0200, A. L. Meyers wrote: > Dear FreeBSD support, > > Thanks for the references to vidcontrol etc. Have also studied > the German HOWTO on umlauts. Can you please help me solve the > remaining issues: > > 1. can I set mode="80x50" in rc.conf? I didn't find such a > variable in the rc.conf man page. > > 2. ditto with colours e. g. like "vidcontrol green black". Is > there a variable for this in rc.conf or must I set up a script? > Yes to both. Use the 'allscreens_flags' variable in rc.conf. -- 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 Sun Jul 1 2:41:46 2001 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 6051E37B401 for ; Sun, 1 Jul 2001 02:41:43 -0700 (PDT) (envelope-from alfatrion@cybertron.tmfweb.nl) Received: from cybertron ([213.10.151.186]) by smtp01.wxs.nl (Netscape Messaging Server 4.05) with SMTP id GFSG9H03.2R7; Sun, 1 Jul 2001 11:41:41 +0200 Message-ID: <003101c10212$082390e0$231fa8c0@dekruijff.nl> From: "Alfatrion" To: "vass D" , References: <20010701093300.77244.qmail@web14703.mail.yahoo.com> Subject: Re: upgrade - newbie Date: Sun, 1 Jul 2001 11:40:48 +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 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. wonder if anyone can help me with the following. > i got freebsd 4.2 on my HD and want to go to 4.3. i > have a 4.3 iso image on cd. do i upgrade the system > from /stand/sysinstall? > > tried to do the above but didnt quite work. when i > selected to update all the sources a message > poped-up saying that /usr/src already exists and > that this is not the proper way to install sourses > and that i should be using cvsup or ctm. > > i dont wanna use cvsup or ctm cause i alredy have a > 600M iso image... > > any ideas? > > > thanx in advance > > __________________________________________________ > Do You Yahoo!? > Get personalized email addresses from Yahoo! Mail > http://personal.mail.yahoo.com/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > I havend tried this my self, but 1) rm -rf /usr/src 2) install the source from 4.3 3) Used cvsup for the must recent updates. 4) follow up on the manual from here (make world and such) Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 2:42:55 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [206.29.169.15]) by hub.freebsd.org (Postfix) with ESMTP id 0EBF437B401 for ; Sun, 1 Jul 2001 02:42:45 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Received: from tedm.placo.com (nat-rtr.freebsd-corp-net-guide.com [206.29.168.154]) by mail.freebsd-corp-net-guide.com (8.11.1/8.11.1) with SMTP id f619gel26040; Sun, 1 Jul 2001 02:42:41 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Shannon" , "Freebsd Questions" Subject: RE: [Fwd: [Fwd: Office XP & Windows XP activation woes]] Date: Sun, 1 Jul 2001 02:42:38 -0700 Message-ID: <002801c10212$2a357d60$1401a8c0@tedm.placo.com> 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 8.5, Build 4.71.2173.0 In-Reply-To: <20010701004354.B29971@widomaker.com> X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 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 >-----Original Message----- >From: owner-freebsd-questions@FreeBSD.ORG >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Shannon >Sent: Saturday, June 30, 2001 9:44 PM >To: Freebsd Questions >Subject: Re: [Fwd: [Fwd: Office XP & Windows XP activation woes]] > > >On Sat, Jun 30, 2001 at 12:44:51AM -0500, Virtual Bob wrote: > >> newcomers will also (usually) go for Windoze. After you've >flooded and has >> majority of the market, you then put things like XP which needs this >> "activation code" thing and begin to suck $$$ out of it. > >No doubt about it. They have wanted this sort of thing for a long time. >I personally hate serialization in software. It can be gotten around a >lot of times, and it's an annoyance for the paying customer. > It will be interesting to see how long it takes before an illicit patch is released on warez to take care of this serialization business. Of course Microsoft will move to block that and it's going to create a series of moves and counter moves as each side releases the latest crack and anti-crack. >> I doubt Microsoft made much money on individual sales of any WInblows. I >> bet virtually all profit came from OEM bundling deals with hardware >> makers, with corporate America (site license) coming in distant second... > >True, and there is a more sinister element of XP: mandatory upgrades. >This is key to converting from OEM sales to nickle-and-diming the users >to compensate. From what I have read, upgrades aren't optional. >Given the directions they are taking with things like restricting what >files you can copy, and even what hardware you can install (has to be >officially supported, etc), this is a sure-fire way to take what >little choice you have away completely. > Only if the users accept it, that's the $64 question. At the ISP I work at I'd estimate that about 80% of our dialup customers are flat-out cheapskates. (The people that really care about decent Internet service have long ago migrated to DSL which we also support) I probably get stuck with about one or two calls-from-hell a week from these people (fortunately our support staff handles most of them) It's literally a different world out there among the non-techies, folks. I've had people peeing in my ear for a half hour bitching because I told them to throw away their crap modem and replace it with a decent one or we would cut off their account, because by the time they got to me their history had shown that they had consumed at least 5-10 hours of support time over a 6 month period of time screwing around with their shitty $5 winmodem on a crummy phone line. (and it would take at least another 2 years of service to them for the company to make back what we had spent on them by then) And the cost difference between the shitty modem and the decent modem was only $35. I think that if Microsoft thinks they are going to be able to extract $100 every two years from these people for software subscriptions (which is where this serialization is heading, of course) that they are high on laughing gas. I may be biased because of too much exposure to the bottom feeders, but I think that nobody in the computer industry has any idea of the vast extent of illegal copying of Windows that there is, let alone Microsoft Office. For every name-brand computer that goes out the door with a legitimate copy of Windows on it, there's at least 100 systems put together in clone shops that never got within 20 miles of a legitimate copy of Windows. Today, these systems are shipping with illegal copies of Windows Millennium or Windows 98. But, in about 3 years when the general userbase out there that's buying clone systems starts demanding Windows XP loads, there is going to be such a screaming that every Windows in the country is going to shatter. It's been about 15 years since there was large-scale serialization attempts of retail software, long enough for the software manufacturers and a lot of the users to forget what that was like. A lot of the folks that are using PC's today were loading up their diapers while chomping down a pacifier when this was going on. I can vividly remember the enormous industry that bypass schemes created, in fact my first computer-related job was with a 20 million+ dollar a year in profits company that was founded on a product called Copy II PC that's sole purpose in life was to bypass copy protection schemes on media. Of course they called it a product to allow the users to make backups, but this was rediculous window dressing that nobody believed. Today, XP is a blip on the radar screen with most people purchasing computers, because they are doing the Millennium Edition thing. So it's still possible to have these dreams about being able to move the userbase to a subscription model. But this simply won't happen, because the userbase will simply stop buying Windows _completely_. All they will do is continue to use copies of Windows 95/98/ME CD's until a new non-serialized version of Windows is released by Microsoft, and every year that this is delayed there will be more and more and more illegal copies of those Windows 95/98/ME cd's made. And, this is just end-users. Corporations will simply continue to pay site-license fees for one-time purchases of those OS's and if Microsoft threatens to take away the right to add new users to existing Windows 98/ME licenses, then your going to start seeing wholesale moves of entire departments over to Linux. It's actually far easier for the corporation to move people to a non-Windows desktop, and I think that today a lot larger number of administrators than anyone believes are out there would love to do this - simply because it eliminates the ability of the dumb end-user to stick in a floppy disk from home and load up the latest Windows widgit they downloaded from the Internet that ends up trashing their system. You cannot imagine the enormous amount of corporate support time is blown on putting systems back together that dumb-assed end users have trashed, because they think their corporate Windows desktop system is just like their home Windows desktop system. >The next step is to kill the concept of the PC being a general purpose >computers. You not registered as a software developer? Sorry, you >can't run a compiler. > >I would like to agree with Ted (I think he said this) that this will >accelerate the drive away from Microsoft, but I think the sheep will >just accept it. Corporte America is scary, the way they think, and >people in general don't seem to see the traps set for them. > We have a large customer, a mill, with about 50 office types in it. Well, I just learned that they had to make an emergency purchase of software licenses costing about $40,000 in order to avoid a fine of $100,000. It seems that a disgruntled former employee had turned them in to the anti-piracy group (not the SPA) that Microsoft has set up. What they had been doing is they had a CEO and CFO who every time the IT budget came up, they slashed it in half because they had got the idea that a lot of the stuff that the IT people had been screaming about was fluff. (because apparently it's rather common for other departments, like marketing and sales and such, to inflate their own budget requests) So, the IT department had really just been getting enough money to enable it to maintain the PC hardware, and never had the money to buy software licensing. When the notice from the law firm came in telling them they were going to have to produce the licensing or be fined, the IT manager had a "come to Jesus" meeting with the CEO and CFO and laid out the Facts of Life, that simply there was no negotiating here in budget time - that when the budget figures came in from IT that the company had to cough up the money. I know for a fact that there was some serious re-evaulation of Windows and Windows products, but of course by then it was too late since the anti-piracy people would have just fined them for prior use of unlicensed Windows. The upshot of all this is, of course, that here you have a company that is now suddennly paying the real costs of Windows, not the cost that they had thought they should be paying. :-) And, of course, their $40,000 would just bring them _current_ now all of the sudden they are facing the fact that all future IT expenses are going to at least be double what they were. Now, these piracy audits are really just one-shot things that happen here and there, and overall they really don't address more than 1-2% of the piracy going on, and so there's been no industry backlash. But, the serialization thing will hit everbody, all at once. It's a given that by now the very largest corporations are legal, what they are going to be pissed at is being forced into upgrading if Microsoft decides to stop allowing authorizations for multiple installs of XP on the same user's PC. But there's no idea if that will happen. What isn't known, however, is how the smaller to medium-sized corporations that have piss-poor licensing control are going to tolerate a subscription model - my guess is that the backlash is going to come the heaviest from those folks. It's no wonder that Microsoft's Steve Ballmer has targeted Linux as threat #1 - it's not because of the GPL, that's pure smokescreen. What they are really afraid of is the people who are illegal _now_ with Windows just saying "fuck it" and moving to Linux, once the serialization schemes are fully implemented. >Of course, I think Microsoft may end up failing just due to its own >weight and stupidity, but then, that hasn't killed it so far. Lately >the computer industry depresses me a lot. > You shouldn't be, we are really seeing the light at the end of the tunnel now. It's been upheld that Microsoft is a monopoly, and now the government anti-trust regulators have control over the company's future markets. The tying claims have been pretty much upheld, and there will be some divestiture tht will occur as a result of that. The regulators aren't going to allow the kind of ham-handed "forcing a public standard to be proprietary" that Microsoft attempted to do with Kerberos. And, best of all, Microsoft has finally realized that just giving away Windows like they have been doing for so long simply serves to create a market of users that have now come to _expect_ that the OS and Application software on a PC is supposed to be free - and they are getting ready to put an end to that. While some of those freeloaders will ante-up, there's going to be a lot more of them that just turn their backs on the Windows path and find something else that they can freeload off of, and Open Source is now well positioned for them to attach their suckers to. I really think that we are at the beginning of a major split in the PC software market. Some people may say that Microsoft is engineering all of this because they want to ultimately be no longer declared a monopoly, whether you believe this is your own affair, I don't. But I do think that in 10 years that we are going to have a solid 50% of the PC market using Open Source regularly, and it will be accepted. Most likely if Microsoft has anything to say about it, the 50% of the market running Windows will be heavily weighted with the large corporate types, while the 50% of the market that's Open Source will be the traditionally-unprofitable smaller companies and private individuals, but I do think that we are going to see that 50-50 split eventually. Ted Mittelstaedt tedm@toybox.placo.com Author of: The FreeBSD Corporate Networker's Guide Book website: http://www.freebsd-corp-net-guide.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 3: 0:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from consult-meyers.com (dialup-59-68.dplanet.ch [212.35.59.68]) by hub.freebsd.org (Postfix) with ESMTP id AB98937B408 for ; Sun, 1 Jul 2001 03:00:52 -0700 (PDT) (envelope-from a.l.meyers@consult-meyers.com) Received: from localhost (localhost.localhost [127.0.0.1]) by consult-meyers.com (8.11.4/8.11.3) with ESMTP id f61A7uh71912; Sun, 1 Jul 2001 12:07:57 +0200 (CEST) (envelope-from a.l.meyers@consult-meyers.com) Date: Sun, 1 Jul 2001 12:07:55 +0200 (CEST) From: "A. L. Meyers" To: Kent Stewart Cc: Subject: Re: make installworld problem In-Reply-To: <3B3EEE87.B34F3FD9@urx.com> Message-ID: <20010701115852.Q20005-100000@consult-meyers.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, 1 Jul 2001, Kent Stewart wrote: > > I don't have any idea at this point. I expected pod2man to be built when > perl was. You might have to cd in to the src and do make or make > install. The makefile is located in > > /usr/src/gnu/usr.bin/perl/pod/pod2man/Makefile > Yes, it is there, all alone. No other files. Dated 20 Oct 2000. > It should be in > /usr1/obj/usr/src/gnu/usr.bin/perl/pod/pod2man No, Makefile is not here. 3 other files are here: pod2man (executable) dated 30 June pod2man.l dated 01 July pod2man.L dated 02 May 1999 > > but the installworld makefile is looking for the /usr/bin version, which > you don't have. > > Then try your installworld again. > > Kent > Should I copy the Makefile dated 20 Oct 2000 to /usr/obj/usr/src/gnu/usr.bin/perl/pid/pod2man ? Then run make and make install? NB No directory /usr1/obj. Greetings, Lucien To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 3:58: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web14701.mail.yahoo.com (web14701.mail.yahoo.com [216.136.224.118]) by hub.freebsd.org (Postfix) with SMTP id D310E37B407 for ; Sun, 1 Jul 2001 03:57:57 -0700 (PDT) (envelope-from vassd2000@yahoo.com) Message-ID: <20010701105757.75492.qmail@web14701.mail.yahoo.com> Received: from [62.192.66.151] by web14701.mail.yahoo.com; Sun, 01 Jul 2001 03:57:57 PDT Date: Sun, 1 Jul 2001 03:57:57 -0700 (PDT) From: vass D Subject: Re: upgrade - newbie To: Alfatrion , questions@FreeBSD.ORG In-Reply-To: <003101c10212$082390e0$231fa8c0@dekruijff.nl> 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 thanx for your answer. just removed /usr/src as u said. when i try to upgrade from stand/sysinstall though i get error message that the cd does not seem to be a valid freebsd cd and it cant retrieve the stuff. the cdrom is iso image mounted in /cdrom and contains the file '4.3-install.iso'. any ideas what happens? is there any special way to deal with iso files? thanx a lot and looking forward to your response. --- Alfatrion wrote: > > hi. wonder if anyone can help me with the > following. > > i got freebsd 4.2 on my HD and want to go to 4.3. > i > > have a 4.3 iso image on cd. do i upgrade the > system > > from /stand/sysinstall? > > > > tried to do the above but didnt quite work. when i > > selected to update all the sources a message > > poped-up saying that /usr/src already exists and > > that this is not the proper way to install sourses > > > and that i should be using cvsup or ctm. > > > > i dont wanna use cvsup or ctm cause i alredy have > a > > 600M iso image... > > > > any ideas? > > > > > > thanx in advance > > > > __________________________________________________ > > Do You Yahoo!? > > Get personalized email addresses from Yahoo! Mail > > http://personal.mail.yahoo.com/ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body > of the message > > > I havend tried this my self, but > 1) rm -rf /usr/src > 2) install the source from 4.3 > 3) Used cvsup for the must recent updates. > 4) follow up on the manual from here (make world and > such) > > Alex > __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Sun Jul 1 4: 0:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from my.usask.ca (my.usask.ca [128.233.65.7]) by hub.freebsd.org (Postfix) with ESMTP id C6E1437B405 for ; Sun, 1 Jul 2001 04:00:14 -0700 (PDT) (envelope-from kek971@mail.usask.ca) Received: (from nobody@localhost) by my.usask.ca (8.11.0/8.11.0) id f61B0Dw31975 for questions@FreeBSD.ORG; Sun, 1 Jul 2001 05:00:13 -0600 To: Subject: disable services? Message-ID: <993985213.3b3f02bda1774@my.usask.ca> Date: Sun, 01 Jul 2001 05:00:13 -0600 (CST) From: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 2.3.6-cvs X-WebMail-Service: My.USask.CA X-Originating-IP: 24.71.108.209 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG after checking inetd.conf and some shell scripts in rc.d directory, if still there are some services which are supposed to be off, then where else can i check? ...or is there anything like 'ntsysv' in linux ? ... still ambigous how to manage services.... 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 Sun Jul 1 4: 6: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from c007.snv.cp.net (c007-h012.c007.snv.cp.net [209.228.33.219]) by hub.freebsd.org (Postfix) with SMTP id 8E93637B405 for ; Sun, 1 Jul 2001 04:05:57 -0700 (PDT) (envelope-from otterr@telocity.com) Received: (cpmta 3742 invoked from network); 1 Jul 2001 04:05:56 -0700 Received: from dsl-216-227-91-85.telocity.com (HELO zoso) (216.227.91.85) by smtp.telocity.com (209.228.33.219) with SMTP; 1 Jul 2001 04:05:56 -0700 X-Sent: 1 Jul 2001 11:05:56 GMT Reply-To: From: "Otter" To: "Eelke Blok" , Subject: RE: 2 versions of ftp? Date: Sun, 1 Jul 2001 07:04:13 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <009301c10210$be296240$0215e50a@hotrod> 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 Some people have both running from one ftpd. If you login as anonymous, it sends you to the anonymous section. Logging in with a valid username and pass yieldds access to your home directory on the machine. You could run two different ftpd's, one for each, if you like. I think that would require that they listen on different ports. -Otter > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Eelke Blok > Sent: Sunday, July 01, 2001 5:32 AM > To: freebsd-questions@FreeBSD.ORG > Subject: Re: 2 versions of ftp? > > > From: > > > Can i have 2 versions of ftp servers on one freebsd box? > > ...one for anoymous...the other for requiring login&pass > which is "not > anoymous" one... > > I would think the only way is to have them both listen to different > ports, but I'm by no means an expert. It would at least be the most > straightforward way, I suppose. > > Cheers, > > Eelke > -- > Eelke Blok, http://haywire.student.utwente.nl > > > > > 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 Jul 1 4:16:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by hub.freebsd.org (Postfix) with ESMTP id 4C56B37B405 for ; Sun, 1 Jul 2001 04:16:11 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from pacbell.net ([64.166.87.247]) by mta7.pltn13.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0GFS00HY6KMZJ0@mta7.pltn13.pbi.net> for questions@FreeBSD.ORG; Sun, 01 Jul 2001 04:16:11 -0700 (PDT) Date: Sun, 01 Jul 2001 04:15:57 -0700 From: W Gerald Hicks Subject: Re: 2 versions of ftp? To: Alfatrion Cc: kek971@mail.usask.ca, questions@FreeBSD.ORG Message-id: <3B3F066D.51D75E6@pacbell.net> Organization: Cisco Systems, Inc. MIME-version: 1.0 X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 sun4u) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT X-Accept-Language: en References: <993974292.3b3ed81428980@my.usask.ca> <001801c1020d$a94b4f80$231fa8c0@dekruijff.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 Alfatrion wrote: > > > hi.. > > Can i have 2 versions of ftp servers on one freebsd box? > > ...one for anoymous...the other for requiring login&pass which is "not > anoymous" one... > > > > Thank you in advance > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > Yes, just say you want anoymous ftp and you have both. > > Alex Uhm, I think the poster wants to have two different binary programs for the different class of users. With a fair amount of work you can achieve this with the jail(8) facility. Read here for more information: http://www.hsc.fr/ressources/breves/jail.html -- Cheers, W Gerald Hicks gehicks@pacbell.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 4:24: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by hub.freebsd.org (Postfix) with ESMTP id 35A5E37B409 for ; Sun, 1 Jul 2001 04:23:58 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from pacbell.net ([64.166.87.247]) by mta7.pltn13.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0GFS00IF3KZX5G@mta7.pltn13.pbi.net> for questions@FreeBSD.ORG; Sun, 01 Jul 2001 04:23:57 -0700 (PDT) Date: Sun, 01 Jul 2001 04:23:43 -0700 From: W Gerald Hicks Subject: Re: disable services? To: kek971@mail.usask.ca Cc: questions@FreeBSD.ORG Message-id: <3B3F083F.2126760D@pacbell.net> Organization: Cisco Systems, Inc. MIME-version: 1.0 X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 sun4u) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT X-Accept-Language: en References: <993985213.3b3f02bda1774@my.usask.ca> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kek971@mail.usask.ca wrote: > > after checking inetd.conf and some shell scripts in rc.d directory, if still there are some services which are > supposed to be off, then where else can i check? > ...or is there anything like 'ntsysv' in linux ? ... still ambigous how to manage services.... > > Thank you in advance..... Doesn't seem very ambiguous to many of us :-) Also, tcp_wrappers functionality is built into inetd these days; have a look at /etc/hosts.allow Be sure of how sendmail is configured and if you still have lingering doubts why not just portscan it using one of many available tools? -- Cheers, W Gerald Hicks gehicks@pacbell.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 5:16:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from clmboh1-smtp3.columbus.rr.com (clmboh1-smtp3.columbus.rr.com [65.24.0.112]) by hub.freebsd.org (Postfix) with ESMTP id 03A4D37B401 for ; Sun, 1 Jul 2001 05:16:12 -0700 (PDT) (envelope-from wmoran@iowna.com) Received: from iowna.com (dhcp065-024-023-038.columbus.rr.com [65.24.23.38]) by clmboh1-smtp3.columbus.rr.com (8.11.2/8.11.2) with ESMTP id f61CCns23488 for ; Sun, 1 Jul 2001 08:12:50 -0400 (EDT) Message-ID: <3B3F146C.45BEB682@iowna.com> Date: Sun, 01 Jul 2001 08:15:40 -0400 From: Bill Moran X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Login accounting 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 When the system tallies up the login times each month, does it include ftp login times. For example, if I have an account that should never allow login, but should be used for anonymous ftp access, should I be concerned if the log in accounting shows lengthy login time when the login accounting email is sent out during the monthy periodic run? -Bill -- If a bird in the hand is worth two in the bush, then what can I get for two hands in the bush? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 5:29:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smithers.stomped.com (smithers.stomped.com [216.17.56.2]) by hub.freebsd.org (Postfix) with SMTP id 4003737B40B for ; Sun, 1 Jul 2001 05:29:42 -0700 (PDT) (envelope-from malhavoc@stomped.com) Received: (qmail 86569 invoked by uid 1041); 1 Jul 2001 12:29:45 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 1 Jul 2001 12:29:45 -0000 Date: Sun, 1 Jul 2001 07:29:45 -0500 (CDT) From: Jason Nugent To: David Hill Cc: Subject: Re: java support In-Reply-To: <20010701003802.J5042-100000@shumai.marcuscom.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've successfully built (and use all the time) Sun's native J2EE environment, complete with cloudscape object oriented database, under FreeBSD 4.3-RELEASE using Linux Emulation. Works like a charm, including all of the Swing GUI components. Jason On Sun, 1 Jul 2001 at 7:28am, Joe Clarke thought about > There are Linux versions of JDK in the ports tree that should work the > same as any native FreeBSD version. I have personally only used JDK 1.1.8 > for FreeBSD, but I have heard good things about the Linux 1.3 port. > > Joe Clarke > > On Sat, 30 Jun 2001, David Hill wrote: > > > Hello - > > I am wondering what'll take to have better java support under freebsd. Is it simply the fact that java is not "made" for bsd systems, or is FreeBSD missing something? > > > > I know java works under FreeBSD, but the performance is not too great. For example, 1.1.8 is included in the ports. Why not 1.2, or a more recent version at that? > > > > Thanks > > - David > > > > 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 > ---------------------- Jason Nugent Aka MalHavoc Server Programmer and Administrator S T O M P E D . C O M For PGP public key: http://malhavoc.stomped.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 5:29:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from anchor-post-31.mail.demon.net (anchor-post-31.mail.demon.net [194.217.242.89]) by hub.freebsd.org (Postfix) with ESMTP id EC3B237B401 for ; Sun, 1 Jul 2001 05:29:42 -0700 (PDT) (envelope-from waynep@pan.realtime.co.uk) Received: from madadmin.demon.co.uk ([193.237.103.251] helo=marvin.penguinpowered.org.uk) by anchor-post-31.mail.demon.net with esmtp (Exim 2.12 #1) id 15GgN4-0004dg-0V for freebsd-questions@freebsd.org; Sun, 1 Jul 2001 13:30:38 +0100 Received: from [192.168.10.11] (helo=pan.realtime.co.uk) by marvin.penguinpowered.org.uk with esmtp (Exim 3.22 #1) id 15GgHd-0001LG-00 for freebsd-questions@freebsd.org; Sun, 01 Jul 2001 13:25:01 +0100 Received: from waynep by pan.realtime.co.uk with local (Exim 3.22 #1) id 15GgLW-0000ZB-00 for freebsd-questions@freebsd.org; Sun, 01 Jul 2001 13:29:02 +0100 From: Wayne Pascoe To: freebsd-questions@freebsd.org Subject: Problems with X and window manager Date: 01 Jul 2001 13:29:01 +0100 Message-ID: <86pubk4yuq.fsf@pan.home.penguinpowered.org.uk> Lines: 55 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 Hi all, I am having some weirdness with my window manager. I currently use icewm built from ports running under gnome on 2 machines. Until recently it behaved OK on both machines. On the first machine, I am having problems with my .xinitrc It looks as follows : /usr/bin/ssh-agent > /tmp/ssh-agent.out source /tmp/ssh-agent.out /usr/bin/ssh-add < /dev/null xmodmap -e "keycode 0x40 = Meta_L" xmodmap -e "keycode 0x73 = Alt_L" exec gnome-session This used to start ssh-agent, source the ssh-agent.out file and popup a window asking me for my ssh passphrase. Once this was done it would launch gnome-session. Like I say, this used to work. Yesterday I installed sawfish. I wasn't happy with a couple of things about it (mostly window placement and shortcuts to launch applications), so I decided to go back to icewm. Now starting X gives me the following : (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE) source: not found Could not open a connection to your authentication agent. SESSION_MANAGER=local/pan.home.penguinpowered.org.uk:/tmp/.ICE-unix/2113 I've tried replacing the source line in my .xinitrc with . /tmp/ssh-agent,out but the same message persists. Now my ssh passphrase is not asked for and life is generally grody :) On the other machine, the xinitrc works ok, and the source function also works. The problem on this one is with switching desktops. I always use Ctrl-ALT-(left or right arrow) to flick between desktops. If after launching an application on a desktop, I flick to a different one, my keyboard shortcuts (including desktop moving) stops working. I have to launch an application using the mouse and than my keyboard works on that desktop. This problem does not happen on the first machine. I've tried AutoDetectGNOME at both 0 and 1 in the preferences file but the problem keeps happening. Does anyone have any advice on how to fix these problems ? I would truly appreciate it ! Thanks, -- - Wayne Pascoe E-mail: wayne.pascoe@realtime.co.uk Phone : +44 (0) 20 7544 4668 Mobile: +44 (0) 788 431 1675 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 5:34:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.urx.com (mail.urx.com [63.170.19.36]) by hub.freebsd.org (Postfix) with ESMTP id 3120137B401 for ; Sun, 1 Jul 2001 05:34:42 -0700 (PDT) (envelope-from kstewart@urx.com) Received: from urx.com [206.159.132.160] by mail.urx.com with ESMTP (SMTPD32-6.06) id A8DF10F50256; Sun, 01 Jul 2001 05:34:39 -0700 Message-ID: <3B3F18DF.21D62B52@urx.com> Date: Sun, 01 Jul 2001 05:34:39 -0700 From: Kent Stewart X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: "A. L. Meyers" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: make installworld problem References: <20010701115852.Q20005-100000@consult-meyers.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 "A. L. Meyers" wrote: > > On Sun, 1 Jul 2001, Kent Stewart wrote: > > > > > I don't have any idea at this point. I expected pod2man to be built when > > perl was. You might have to cd in to the src and do make or make > > install. The makefile is located in > > > > /usr/src/gnu/usr.bin/perl/pod/pod2man/Makefile > > > > Yes, it is there, all alone. No other files. Dated 20 Oct 2000. That is usually how it looks. Run make from here. You have the podman2 exe in the obj side and a make install should copy it into /usr/bin. > > > It should be in > > /usr1/obj/usr/src/gnu/usr.bin/perl/pod/pod2man > > No, Makefile is not here. 3 other files are here: > > pod2man (executable) dated 30 June > pod2man.l dated 01 July > pod2man.L dated 02 May 1999 > > > > > but the installworld makefile is looking for the /usr/bin version, which > > you don't have. > > > > Then try your installworld again. > > > > Kent > > > > Should I copy the Makefile dated 20 Oct 2000 to > /usr/obj/usr/src/gnu/usr.bin/perl/pid/pod2man ? No, the make file is only on the src side. > > Then run make and make install? > > NB No directory /usr1/obj. No, I know. I was going to edit the "1" off. I have /usr on an HD, /usr/src on a 2nd HD, and /usr/obj on a 3rd HD to get the build speed up. Kent > > Greetings, > > Lucien -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html http://daily.daemonnews.org/ SETI (Search for Extraterrestrial Intelligence) @ Home http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 5:35:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smithers.stomped.com (smithers.stomped.com [216.17.56.2]) by hub.freebsd.org (Postfix) with SMTP id 9B0E037B401 for ; Sun, 1 Jul 2001 05:35:34 -0700 (PDT) (envelope-from malhavoc@stomped.com) Received: (qmail 86702 invoked by uid 1041); 1 Jul 2001 12:35:38 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 1 Jul 2001 12:35:38 -0000 Date: Sun, 1 Jul 2001 07:35:38 -0500 (CDT) From: Jason Nugent To: Cc: Subject: Re: disable services? In-Reply-To: <993985213.3b3f02bda1774@my.usask.ca> 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 usually use nmap to do a quick scan of a machine once I think I've taken down everything I want kept turned off. You can build it from the /usr/ports/security/nmap directory. The other place to make sure stuff is turned off is in /etc/rc.conf. There are a large number of config options that you can use to turn off things (like, say, sendmail). You should also look into ipfw or ipfilter, both of which let you set up a firewall to restrict access to services that you might want to keep running. HTH, Jason On Sun, 1 Jul 2001 at 7:33am, kek971@mail.usask.ca thought about > after checking inetd.conf and some shell scripts in rc.d directory, if still there are some services which are > supposed to be off, then where else can i check? > ...or is there anything like 'ntsysv' in linux ? ... still ambigous how to manage services.... > > Thank you in advance..... > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > ---------------------- Jason Nugent Aka MalHavoc Server Programmer and Administrator S T O M P E D . C O M For PGP public key: http://malhavoc.stomped.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 5:40: 7 2001 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 BB20437B405 for ; Sun, 1 Jul 2001 05:40:03 -0700 (PDT) (envelope-from jfm@blueyonder.co.uk) Received: from lexx.my.domain ([62.31.194.122]) by blueyonder.co.uk with Microsoft SMTPSVC(5.5.1877.687.68); Sun, 1 Jul 2001 13:42:16 +0100 From: John Murphy To: Isaac Mushinsky Cc: tspivey8@home.com, questions@FreeBSD.ORG Subject: Re: how to setup natd under ipf? Date: Sun, 01 Jul 2001 13:39:58 +0100 Organization: poor Reply-To: jfm@blueyonder.co.uk Message-ID: References: <200106302050.f5UKoRa00311@home.com> <01070100201800.73812@omsk.mushinsky.net> In-Reply-To: <01070100201800.73812@omsk.mushinsky.net> X-Mailer: Forte Agent 1.8/32.548 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 Isaac Mushinsky wrote: >On Saturday 30 June 2001 16:50, you wrote: >> place cc me sicne i am not on this list. >> how do i get nat on ipf? >> it says unknown keyword map. >> map rl0 10.0.0.0/24 -> 0/32 >> it worked under ipfw. >> and ihave natd_enable and all that in rc.conf. >> >In your kernel config file you shoud have >options IPFIREWALL Ummm. Great answer for how to use ipfirewall, however: natd is only required for ipfw. It's ipnat for ipfilter. IPFilter needs a separate file /etc/ipnat.rules for map and rdr rules. You just need these two lines in the kernel configuration file: options IPFILTER # ipfilter support options IPFILTER_LOG # ipfilter logging and these in /etc/rc.conf: ipfilter_enable=3D"YES" # Set to YES to enable ipfilter = functionality ipfilter_program=3D"/sbin/ipf -Fa -f" # program and how to specify the rules = file, # see /etc/rc.network (pass1) for details ipfilter_rules=3D"/etc/ipf.rules" # rules definition file for ipfilter, see # /usr/src/contrib/ipfilter/rules for = examples ipfilter_flags=3D"" # should be *empty* when ipf is _not_ a= module # (i.e. compiled into the kernel) to # avoid a warning about "already = initialized" ipnat_enable=3D"YES" # Set to YES for ipnat; = needs ipfilter, too! ipnat_program=3D"/sbin/ipnat -CF -f" # program and how to specify rules file ipnat_rules=3D"/etc/ipnat.rules" # rules = definition file for ipnat ipnat_flags=3D"" # additional flags for ipnat ipmon_enable=3D"YES" # Set to YES for ipmon; needs ipfilter,= too! ipmon_program=3D"/sbin/ipmon" # where the ipfilter monitor program = lives ipmon_flags=3D"-D /var/log/ipflog" # typically "-Ds" or "-D = /var/log/ipflog" John. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 5:47:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nef.ens.fr (nef.ens.fr [129.199.96.32]) by hub.freebsd.org (Postfix) with ESMTP id 9A0C337B407 for ; Sun, 1 Jul 2001 05:47:11 -0700 (PDT) (envelope-from Jacques.Beigbeder@free.fr) Received: from trefle.ens.fr (trefle.ens.fr [129.199.96.17]) by nef.ens.fr (8.10.1/1.01.28121999) with ESMTP id f61ClAb83660 for ; Sun, 1 Jul 2001 14:47:10 +0200 (CEST) Received: from (beig@localhost) by trefle.ens.fr (8.10.1/jb-1.1) X-Authentication-Warning: trefle.ens.fr: beig set sender to Jacques.Beigbeder@free.fr using -f Date: Sun, 1 Jul 2001 14:47:10 +0200 From: Jacques Beigbeder To: freebsd-questions@freebsd.org Subject: swap_pager: indefinite wait buffer? Message-ID: <20010701144710.A3247@trefle.ens.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit 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 Hardware: PC Dell OS: FreeBSD 3.3 (november 1999) Kernel: GENERIC Yesterday, this very important host on my network failed with: swap_pager: indefinite wait buffer: device: 0x20401, blkno:XXX, size: 4096 (2 different values shown for XXX). Using mail archives, I found this message can occur when there is some hardware failure on the disk. But: . no message appears in /var/log/all.log (*.* -> all.log) . even if i try: dd if=/dev/da0s1b of=/dev/null ^ swap partition I also see that the file swap_pager.c was modified between FreeBSD 3.4 and FreeBSD 4.2. So is my problem really hardware? Or is there a software fix? Thanks in advance. -- Jacques Beigbeder | Jacques.Beigbeder@ens.fr Service de Prestations Informatiques | http://www.spi.ens.fr Ecole normale supérieure | 45 rue d'Ulm |Tel : (+33 1)1 44 32 37 96 F75230 Paris cedex 05 |Fax : (+33 1)1 44 32 20 80 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 6:16:26 2001 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 03CD137B403 for ; Sun, 1 Jul 2001 06:16:22 -0700 (PDT) (envelope-from alfatrion@cybertron.tmfweb.nl) Received: from cybertron ([213.10.151.186]) by smtp06.wxs.nl (Netscape Messaging Server 4.15) with SMTP id GFSQ7702.32O; Sun, 1 Jul 2001 15:16:19 +0200 Message-ID: <00df01c10230$05627970$231fa8c0@dekruijff.nl> From: "Alfatrion" To: "vass D" , References: <20010701105757.75492.qmail@web14701.mail.yahoo.com> Subject: Re: upgrade - newbie Date: Sun, 1 Jul 2001 15:13:58 +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 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 I also burned with the iso image as source, but i see more than one file. So i think that you didn't burn the cd in the right way. Mamy you can mount the file as a source, but i have no experance at all with this, so i can't help you with that. Let me know when you have a solution to this subproblem. (I do have on, burn another cd, not as data) Alex ----- Original Message ----- From: "vass D" To: "Alfatrion" ; Sent: Sunday, July 01, 2001 12:57 PM Subject: Re: upgrade - newbie > Alfatrion thanx for your answer. just removed /usr/src > as u said. > > when i try to upgrade from stand/sysinstall though i > get > error message that the cd does not seem to be a valid > freebsd cd and it cant retrieve the stuff. > the cdrom is iso image mounted in /cdrom and contains > the file '4.3-install.iso'. > > any ideas what happens? is there any special way to > deal with iso files? > > thanx a lot and looking forward to your response. > > --- Alfatrion wrote: > > > hi. wonder if anyone can help me with the > > following. > > > i got freebsd 4.2 on my HD and want to go to 4.3. > > i > > > have a 4.3 iso image on cd. do i upgrade the > > system > > > from /stand/sysinstall? > > > > > > tried to do the above but didnt quite work. when i > > > selected to update all the sources a message > > > poped-up saying that /usr/src already exists and > > > that this is not the proper way to install sourses > > > > > and that i should be using cvsup or ctm. > > > > > > i dont wanna use cvsup or ctm cause i alredy have > > a > > > 600M iso image... > > > > > > any ideas? > > > > > > > > > thanx in advance > > > > > > __________________________________________________ > > > Do You Yahoo!? > > > Get personalized email addresses from Yahoo! Mail > > > http://personal.mail.yahoo.com/ > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body > > of the message > > > > > I havend tried this my self, but > > 1) rm -rf /usr/src > > 2) install the source from 4.3 > > 3) Used cvsup for the must recent updates. > > 4) follow up on the manual from here (make world and > > such) > > > > Alex > > > > > __________________________________________________ > Do You Yahoo!? > Get personalized email addresses from Yahoo! Mail > http://personal.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 Sun Jul 1 6:27:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from k0r3.reflektor.cz (k0r3.reflektor.cz [212.24.129.54]) by hub.freebsd.org (Postfix) with SMTP id 867E437B401 for ; Sun, 1 Jul 2001 06:27:38 -0700 (PDT) (envelope-from cynic@mail.cz) Received: (qmail 21506 invoked by uid 202); 1 Jul 2001 13:27:37 -0000 Received: from unknown (HELO zvahlav.mail.cz) (212.24.143.100) by k0r3.reflektor.cz with SMTP; 1 Jul 2001 13:27:37 -0000 Message-Id: <5.1.0.14.2.20010701152612.00ba41b0@mail.cz> X-Sender: cynic@mail.cz X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sun, 01 Jul 2001 15:35:52 +0200 To: vass D , questions@FreeBSD.ORG From: Cynic Subject: Re: upgrade - newbie In-Reply-To: <20010701105757.75492.qmail@web14701.mail.yahoo.com> References: <003101c10212$082390e0$231fa8c0@dekruijff.nl> 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 At 12:57 7/1/2001, vass D wrote the following: -------------------------------------------------------------- >Alfatrion thanx for your answer. just removed /usr/src >as u said. > >when i try to upgrade from stand/sysinstall though i >get >error message that the cd does not seem to be a valid >freebsd cd and it cant retrieve the stuff. >the cdrom is iso image mounted in /cdrom and contains >the file '4.3-install.iso'. 1) you must not mount the CD if you want to use it from /stand/sysinstall 2) if you see only 4.3-install.iso listed after # mount /cdrom && ls -l /cdrom you won't be able to use the cd (the normal way). this is what I get with a 4.3 cd, and what _you_ should get (your favorite cd burning sortware should include instructions on burning cds from ISO images): [root@freepuppy root]# mount /cdrom [root@freepuppy root]# ls -l /cdrom total 5826 -r--r--r-- 1 root wheel 9707 Apr 21 06:16 ABOUT.TXT -r--r--r-- 1 root wheel 980 Apr 21 06:16 ERRATA.TXT -r--r--r-- 1 root wheel 34686 Apr 21 06:16 HARDWARE.TXT -r--r--r-- 1 root wheel 25484 Apr 21 06:16 INSTALL.TXT -r--r--r-- 1 root wheel 4722 Apr 21 06:16 LAYOUT.TXT -r--r--r-- 1 root wheel 3615 Apr 21 06:16 README.TXT -r--r--r-- 1 root wheel 42508 Apr 21 06:16 RELNOTES.TXT -r--r--r-- 1 root wheel 17777 Apr 21 06:16 TROUBLE.TXT -r--r--r-- 1 root wheel 8453 Apr 21 06:16 UPGRADE.TXT dr-xr-xr-x 4 root wheel 4096 Apr 20 23:44 XF86336 dr-xr-xr-x 2 root wheel 18432 Apr 21 06:15 bin dr-xr-xr-x 2 root wheel 4096 Apr 21 06:15 catpages -r--r--r-- 1 root wheel 25 Apr 21 06:16 cdrom.inf dr-xr-xr-x 2 root wheel 2048 Apr 21 06:15 compat1x dr-xr-xr-x 2 root wheel 2048 Apr 21 06:15 compat20 dr-xr-xr-x 2 root wheel 2048 Apr 21 06:15 compat21 dr-xr-xr-x 2 root wheel 2048 Apr 21 06:15 compat22 dr-xr-xr-x 2 root wheel 2048 Apr 21 06:15 compat3x dr-xr-xr-x 2 root wheel 2048 Apr 21 06:15 compat4x dr-xr-xr-x 2 root wheel 8192 Apr 21 06:15 crypto dr-xr-xr-x 2 root wheel 2048 Apr 21 06:15 dict dr-xr-xr-x 2 root wheel 8192 Apr 21 06:15 doc -r--r--r-- 1 root wheel 87189 Apr 21 14:33 filename.txt dr-xr-xr-x 2 root wheel 2048 Apr 21 06:15 floppies dr-xr-xr-x 2 root wheel 4096 Apr 21 06:15 games dr-xr-xr-x 2 root wheel 2048 Apr 21 06:15 info -r--r--r-- 1 root wheel 5606172 Apr 21 06:15 kernel dr-xr-xr-x 2 root wheel 4096 Apr 21 06:15 manpages dr-xr-xr-x 66 root wheel 8192 Apr 19 22:27 packages dr-xr-xr-x 2 root wheel 2048 Apr 21 06:27 ports dr-xr-xr-x 2 root wheel 2048 Apr 21 06:15 proflibs dr-xr-xr-x 2 root wheel 40960 Apr 21 06:15 src dr-xr-xr-x 4 root wheel 4096 Apr 20 23:44 tools >any ideas what happens? is there any special way to >deal with iso files? > >thanx a lot and looking forward to your response. > >--- Alfatrion wrote: >> > hi. wonder if anyone can help me with the >> following. >> > i got freebsd 4.2 on my HD and want to go to 4.3. >> i >> > have a 4.3 iso image on cd. do i upgrade the >> system >> > from /stand/sysinstall? >> > >> > tried to do the above but didnt quite work. when i >> > selected to update all the sources a message >> > poped-up saying that /usr/src already exists and >> > that this is not the proper way to install sourses >> >> > and that i should be using cvsup or ctm. >> > >> > i dont wanna use cvsup or ctm cause i alredy have >> a >> > 600M iso image... >> > >> > any ideas? >> > >> > >> > thanx in advance >> > >> > __________________________________________________ >> > Do You Yahoo!? >> > Get personalized email addresses from Yahoo! Mail >> > http://personal.mail.yahoo.com/ >> > >> > To Unsubscribe: send mail to majordomo@FreeBSD.org >> > with "unsubscribe freebsd-questions" in the body >> of the message >> > >> I havend tried this my self, but >> 1) rm -rf /usr/src >> 2) install the source from 4.3 >> 3) Used cvsup for the must recent updates. >> 4) follow up on the manual from here (make world and >> such) >> >> Alex >> > > >__________________________________________________ >Do You Yahoo!? >Get personalized email addresses from Yahoo! Mail >http://personal.mail.yahoo.com/ > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message ------end of quote------ cynic@mail.cz ------------- And the eyes of them both were opened and they saw that their files were world readable and writable, so they chmoded 600 their files. - Book of Installation chapt 3 sec 7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 7: 7:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f185.law15.hotmail.com [64.4.23.185]) by hub.freebsd.org (Postfix) with ESMTP id 10A6237B405 for ; Sun, 1 Jul 2001 07:07:37 -0700 (PDT) (envelope-from bulldog2260@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 1 Jul 2001 07:07:36 -0700 Received: from 24.21.159.57 by lw15fd.law15.hotmail.msn.com with HTTP; Sun, 01 Jul 2001 14:07:36 GMT X-Originating-IP: [24.21.159.57] From: "Bull Dog" To: questions@freebsd.org Subject: Core Dump Date: Sun, 01 Jul 2001 09:07:36 -0500 Mime-Version: 1.0 Content-Type: text/html Message-ID: X-OriginalArrivalTime: 01 Jul 2001 14:07:36.0924 (UTC) FILETIME=[2E7941C0:01C10237] Sender: owner-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 recently installing FBSD 4.3S on my PII 400.  When I got done installing the os, I went to usr/ports/ and was wanting to install vmware.  when I went to install it, I got the error, Core Dumped.  I then went to several other ports and tried to install them, such as linux_base, wmtime, and others, but with no success.  I was wondering what that error message ment.
 
Thanks
Bob


Get your FREE download of MSN Explorer at http://explorer.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 Jul 1 7:20:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from void.xpert.com (xpert.com [199.203.132.1]) by hub.freebsd.org (Postfix) with ESMTP id D172E37B401 for ; Sun, 1 Jul 2001 07:20:44 -0700 (PDT) (envelope-from Yonatan@xpert.com) Received: from mailserv.xpert.com ([199.203.132.135]) by void.xpert.com with esmtp (Exim 3.20 #1) id 15Gi4n-0006c0-00; Sun, 01 Jul 2001 17:19:53 +0300 Received: by mailserv.xpert.com with Internet Mail Service (5.5.2650.21) id ; Sun, 1 Jul 2001 17:20:18 +0300 Message-ID: From: Yonatan Bokovza To: 'Bull Dog' , questions@freebsd.org Subject: RE: Core Dump Date: Sun, 1 Jul 2001 17:20:14 +0300 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) 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 Please see: http://www.lemis.com/questions.html It will tell you to shorten your lines to 80 characters, to send mail as plain text and not html, to tell more about your problem, and where possible to attach the relebant error messagea. Best Regards, Yonatan Bokovza IT Security Consultant Xpert Systems -----Original Message----- From: Bull Dog [mailto:bulldog2260@hotmail.com] Sent: Sunday, July 01, 2001 17:08 To: questions@freebsd.org Subject: Core Dump I was recently installing FBSD 4.3S on my PII 400. When I got done installing the os, I went to usr/ports/ and was wanting to install vmware. when I went to install it, I got the error, Core Dumped. I then went to several other ports and tried to install them, such as linux_base, wmtime, and others, but with no success. I was wondering what that error message ment. 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 Jul 1 8:15:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from h24-67-61-12.lb.shawcable.net (h24-67-61-12.lb.shawcable.net [24.67.61.12]) by hub.freebsd.org (Postfix) with ESMTP id 8371437B403 for ; Sun, 1 Jul 2001 08:15:40 -0700 (PDT) (envelope-from chris@home.com) Received: by h24-67-61-12.lb.shawcable.net (Postfix, from userid 1002) id A62F966B013; Sun, 1 Jul 2001 09:07:28 -0600 (MDT) Date: Sun, 1 Jul 2001 09:07:28 -0600 From: Chris Moline To: questions@freebsd.org Subject: Re: nice console Message-ID: <20010701090728.A37765@h24-67-61-12.lb.shawcable.net> 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 alextats@hotmail.com on Thu, Jun 28, 2001 at 06:32:07AM +0300 Sender: owner-freebsd-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, Jun 28, 2001 at 06:32:07AM +0300, A. Tatsyuk wrote: > Using Linux Mandrake 8.0 (based on 2.4.3 kernel) I was pleasured with its > console: soft scrolling, nice font, 100x37, colorized output. Is it possible > to have the same on FreeBSD 4.2? For nicer fonts and a different screen sizes see man vidcontrol. There's also a couple of entries on this in the freebsd diary at freebsddiary.org/console-fonts.php. I don't know what soft scrolling is but colorized output depends on the application. Hope this helps, Chris Moline To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 8:23:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail4.sdc1.sfba.home.com (femail4.sdc1.sfba.home.com [24.0.95.84]) by hub.freebsd.org (Postfix) with ESMTP id 3501137B401 for ; Sun, 1 Jul 2001 08:23:27 -0700 (PDT) (envelope-from samlloyd@home.com) Received: from c27302a ([24.5.27.49]) by femail4.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with SMTP id <20010701152326.BWFD24307.femail4.sdc1.sfba.home.com@c27302a> for ; Sun, 1 Jul 2001 08:23:26 -0700 From: "Sam Lloyd" To: Subject: yahoo Date: Sun, 1 Jul 2001 08:23:41 -0700 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 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 Hello, I know nothing about you. I have no way to get to Yahoo (forget them forever) and tell them about the following problem so I am contacting you. I'd appreciate it if you could forward this to them. Thanks. To @home.com (my ISP): I don't know if you can be of any help but I am having a very bad experience I thought you should know about. Some time ago I made Yahoo my default search engine in IE5. I just tried to change it by clicking the customize button on IE5 search window that brings up a list of search engines. Instead, I get a Yahoo popup asking if I want to refine my search by using the following categories. This should not happen. And, I can't get it to go away and get to the correct dialog box. I have tried everything and checked all documentation/faq's etc I could find to no avail. I know this is a bit out of your realm but any help you could be would be most appreciated. Thank you, Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 8:41:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from chmls06.mediaone.net (chmls06.mediaone.net [24.147.1.144]) by hub.freebsd.org (Postfix) with ESMTP id 9C90737B403 for ; Sun, 1 Jul 2001 08:41:12 -0700 (PDT) (envelope-from leblanc@acadia.ne.mediaone.net) Received: from acadia.ne.mediaone.net (acadia.ne.mediaone.net [65.96.185.189]) by chmls06.mediaone.net (8.11.1/8.11.1) with ESMTP id f61FfA800129 for ; Sun, 1 Jul 2001 11:41:11 -0400 (EDT) Received: (from leblanc@localhost) by acadia.ne.mediaone.net (8.9.3/8.9.3) id LAA00364 for freebsd-questions@FreeBSD.org; Sun, 1 Jul 2001 11:35:41 -0400 Date: Sun, 1 Jul 2001 11:35:41 -0400 From: Louis LeBlanc To: freebsd-questions@FreeBSD.org Subject: Firewall: ipfw? ipfilter? dhcp lease? Message-ID: <20010701113541.A32402@acadia.ne.mediaone.net> Reply-To: freebsd-questions@FreeBSD.org Mail-Followup-To: freebsd-questions@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.3.19i X-bright-idea: Lets abolish HTML mail! Sender: owner-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. FreeBSD newbie/convert in training here. Couple questions regarding firewalls. First some background on what I am doing now (meaning I have enough knowledge to get by on my current setup) I am currently using RH6.2 with ipchains for my firewall. I am blocking and allowing different ports from all or just a subnet (all open from my work subnet, most closed from all else, that kind of thing). I also have it set up with dhcpcd (pump doesn't do it for me) so that when I get a new dhcp lease, the firewall is reinitialized by executing the rc.firewall script with each dhcp lease. Anyway, I have just finally gotten around to getting a new (for me) machine at home to run FreeBSD on, and I want to set that up as my front end machine (hooked directly to the cable modem, running the firewall, masquerading, maybe doing nat, etc.), but I also want to make sure the firewall will stay up with the current dhcp lease. Anyway, I have been reading about firewalls on the list for a while, and am wondering about the differences between using ipfilter and ipfw. I take it FreeBSD is not using ipchains, so I won't go there. I assume there is some flexibility/security/simplicity tradeoff between the two? Seems logical to me if so. Is one easier to configure? What about resource requirements? (not that that would be an issue, but I'm curious.) I am well aware that there are books available on the subject, a couple are plugged right in the /etc/rc.firewall script, but I want to make a decision on the approach first, and pick the book or books, web resources, etc. that most apply to my decision (I already have plenty of books that "don't apply") Also, are there any online tools to help set up such a firewall? I have been using an ipchains firewall I generated with Rob Ziegler's excellent Linux Firewall Design Tool at http://www.linux-firewall-tools.com/linux/firewall/index.html And yes, it is excellent! Unfortunately, I don't think he has gotten too much into the FreeBSD world. Maybe I'll scout his site again later, or better yet, email him. BTW, some of you may have noticed that I had asked about 5.0-CURRENT recently, but I will be running 4.3-STABLE on this machine. I am (or was) putting -CURRENT on an extra desktop I have 'absconded' at work for experimentation. Just an FYI. Any and all useful commentary on the subject is more than welcome and much appreciated. I hope I have not strayed too far from list etiquette in terms of being both complete and concise, but please forgive me if I have, and feel free to let me know so I can correct any errant behavior, as I expect to have a lot of questions for the list in the future :). TIA Lou -- Louis LeBlanc Fully Funded Hobbyist, KeySlapper Extrordinaire :) leblanc@acadia.ne.mediaone.net http://acadia.ne.mediaone.net Ô¿Ô¬ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 10:15:38 2001 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 707D037B403 for ; Sun, 1 Jul 2001 10:15:35 -0700 (PDT) (envelope-from mwlucas@blackhelicopters.org) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id NAA78397 for questions@freebsd.org; Sun, 1 Jul 2001 13:15:31 -0400 (EDT) (envelope-from mwlucas) Date: Sun, 1 Jul 2001 13:15:31 -0400 From: Michael Lucas To: questions@freebsd.org Subject: dummynet question Message-ID: <20010701131531.A78357@blackhelicopters.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.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 Hello, I have several Web sites, with different IP addresses, on one server. I would like to limit each individual site to 128k of outbound traffic. ipfw add 00100 pipe 1 ip from a.b.c.d to any ipfw add 00200 pipe 2 ip from a.b.c.e to any .... ipfw pipe 1 config bw 128Kbit/s ipfw pipe 2 config bw 128Kbit/s ... Could I simplify this into pointing each IPFW rule into "pipe 1", throttling each to 128K? Or would they share the bandwidth, or would something else funky happen? I could figure this out by trial and error, but it's a production system and clients don't take this sort of random testing kindly. Thanks, Michael -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 10:26: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from chmls05.mediaone.net (chmls05.mediaone.net [24.147.1.143]) by hub.freebsd.org (Postfix) with ESMTP id 4822437B403 for ; Sun, 1 Jul 2001 10:25:59 -0700 (PDT) (envelope-from leblanc@acadia.ne.mediaone.net) Received: from acadia.ne.mediaone.net (acadia.ne.mediaone.net [65.96.185.189]) by chmls05.mediaone.net (8.11.1/8.11.1) with ESMTP id f61HPwx01161 for ; Sun, 1 Jul 2001 13:25:58 -0400 (EDT) Received: (from leblanc@localhost) by acadia.ne.mediaone.net (8.9.3/8.9.3) id NAA00668; Sun, 1 Jul 2001 13:20:28 -0400 Date: Sun, 1 Jul 2001 13:20:28 -0400 From: Louis LeBlanc To: freebsd-questions@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: How to to boot directly into X from Freebsd 4.0 Message-ID: <20010701132027.B32402@acadia.ne.mediaone.net> Reply-To: freebsd-questions@FreeBSD.ORG Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <3B3BB8CC.9028B6D2@ntplx.net> <01062921240300.09131@saffron> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <01062921240300.09131@saffron> User-Agent: Mutt/1.3.19i X-bright-idea: Lets abolish HTML mail! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 06/29/01 09:24 PM, William Richard sat at the `puter and typed: > On Thursday 28 June 2001 16:07, festus wrote: > > > Can someone give an idea of the files I need to tweak to get this > > working? > > Some miserable bastard wrote an article last year on setting up XDM, which is > at Daemon News: > > http://www.daemonnews.org/200001/xdm.html > > HTH. > > -- > Cheers, > William Richard > wdr@tdl.com > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > Very helpful! Unfortunately it misses one thing. The article tells you to add a line in /etc/rc.local, which doesn't seem to exist on 4.3-STABLE. For the final detail on getting xdm to start, look at the manual at http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-xdm.html Particularly section 12.5.2. There is one field on one line that must change from 'off' to 'on'. HTH Lou -- Louis LeBlanc Fully Funded Hobbyist, KeySlapper Extrordinaire :) leblanc@acadia.ne.mediaone.net http://acadia.ne.mediaone.net Ô¿Ô¬ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 10:48: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from Server3.1bigred.com (server3.1bigred.com [206.239.81.4]) by hub.freebsd.org (Postfix) with ESMTP id E675737B405 for ; Sun, 1 Jul 2001 10:48:00 -0700 (PDT) (envelope-from varian@1bigred.com) Received: from xanthium (unverified [203.166.27.177]) by Server3.1bigred.com (Vircom SMTPRS 4.6.189) with ESMTP id for ; Sun, 1 Jul 2001 07:36:59 -0400 From: "Brandon Peyton" To: Subject: Change disk size.. Date: Sun, 1 Jul 2001 21:39:08 +1000 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) Importance: Normal 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 Hello, I need some help here. Obviously I've got a problem as I can hardly get anything to work now that my / is full. I cannot afford to reformat as this is runs my mailserver/dns/webserver/etc. My issue comes down to how can I create more room in my root directory. Its clear I made a fatal mistake by only allowing 50M. What I am trying to figure out is how to add capacity to / without loosing my files. I would like to simply reformat and change it which would take a matter of minutes but I cannot. I would like to have at least 500M or a gig as my /. What do you think? What is the best way to do this without loosing data. (I do not want to use any kind of partition magic programs as I have had nothing but failure from them). Thanks brandon Filesystem Size Used Avail Capacity Mounted on /dev/ad0s1a 48M 47M -2.2M 105% / /dev/ad0s1f 5.7G 408M 4.8G 8% /usr /dev/ad0s1e 19M 3.2M 15M 18% /var procfs 4.0K 4.0K 0B 100% /proc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 10:51:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.allyster.com (fw.allyster.com [194.202.29.33]) by hub.freebsd.org (Postfix) with SMTP id 1FF6137B405 for ; Sun, 1 Jul 2001 10:51:13 -0700 (PDT) (envelope-from jslivko@jslivko.org) Received: (qmail 23484 invoked from network); 1 Jul 2001 17:53:17 -0000 Received: from mail.allyster.com (jslivko@194.202.29.35) by mail.allyster.com with SMTP; 1 Jul 2001 17:53:17 -0000 Date: Sun, 1 Jul 2001 18:53:17 +0100 (BST) From: "Jonathan M. Slivko" X-Sender: jslivko@localhost.localdomain To: Brandon Peyton Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Change disk size.. 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 I'm sorry about my earlier post, I answered before reading the whole e-mail. AFAIK, there is no other way but to either format or use Partition Magic. HTH, -- Jonathan \|||/ (o o) /-----------------------------ooO-(_)-Ooo----------------------------\ | Jonathan M. Slivko E-Mail: jslivko@jslivko.org | | IRC Nick: optix` Backup: js43064n@pace.edu | | AIM/AOL: JMSNY2001 Web : http://www.jslivko.org | |--------------------------------------------------------------------| | "History teaches us that days like this are best spent in bed" | \--------------------------------------------------------------------/ On Sun, 1 Jul 2001, Brandon Peyton wrote: > Hello, > > I need some help here. Obviously I've got a problem as I can hardly get > anything to work now that my / is full. > > I cannot afford to reformat as this is runs my mailserver/dns/webserver/etc. > My issue comes down to how can I create more room in my root directory. Its > clear I made a fatal mistake by only allowing 50M. > > What I am trying to figure out is how to add capacity to / without loosing > my files. I would like to simply reformat and change it which would take a > matter of minutes but I cannot. I would like to have at least 500M or a gig > as my /. > > What do you think? What is the best way to do this without loosing data. (I > do not want to use any kind of partition magic programs as I have had > nothing but failure from them). > > Thanks > brandon > > Filesystem Size Used Avail Capacity Mounted on > /dev/ad0s1a 48M 47M -2.2M 105% / > /dev/ad0s1f 5.7G 408M 4.8G 8% /usr > /dev/ad0s1e 19M 3.2M 15M 18% /var > procfs 4.0K 4.0K 0B 100% /proc > > > 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 Jul 1 10:52:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smithers.stomped.com (smithers.stomped.com [216.17.56.2]) by hub.freebsd.org (Postfix) with SMTP id 4DF0237B407 for ; Sun, 1 Jul 2001 10:52:08 -0700 (PDT) (envelope-from malhavoc@stomped.com) Received: (qmail 92295 invoked by uid 1041); 1 Jul 2001 17:52:11 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 1 Jul 2001 17:52:11 -0000 Date: Sun, 1 Jul 2001 12:52:11 -0500 (CDT) From: Jason Nugent To: Louis LeBlanc Cc: Subject: Re: How to to boot directly into X from Freebsd 4.0 In-Reply-To: <20010701132027.B32402@acadia.ne.mediaone.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 Sun, 1 Jul 2001 at 12:51pm, Louis LeBlanc thought about > On 06/29/01 09:24 PM, William Richard sat at the `puter and typed: > > On Thursday 28 June 2001 16:07, festus wrote: > > > > > Can someone give an idea of the files I need to tweak to get this > > > working? > > > > Some miserable bastard wrote an article last year on setting up XDM, which is > > at Daemon News: > > > > http://www.daemonnews.org/200001/xdm.html > > > > HTH. > > > > -- > > Cheers, > > William Richard > > wdr@tdl.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > Very helpful! Unfortunately it misses one thing. The article tells > you to add a line in /etc/rc.local, which doesn't seem to exist on > 4.3-STABLE. For the final detail on getting xdm to start, look at the > manual at > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-xdm.html > Particularly section 12.5.2. There is one field on one line that must > change from 'off' to 'on'. Lou, You can create this file if you want. It just doesn't come with FreeBSD by default. It *does* get read if present, though. HTH, Jason ---------------------- Jason Nugent Aka MalHavoc Server Programmer and Administrator S T O M P E D . C O M For PGP public key: http://malhavoc.stomped.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 10:56:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.allyster.com (fw.allyster.com [194.202.29.33]) by hub.freebsd.org (Postfix) with SMTP id DD1B937B401 for ; Sun, 1 Jul 2001 10:56:43 -0700 (PDT) (envelope-from jslivko@jslivko.org) Received: (qmail 23479 invoked from network); 1 Jul 2001 17:52:08 -0000 Received: from mail.allyster.com (jslivko@194.202.29.35) by mail.allyster.com with SMTP; 1 Jul 2001 17:52:08 -0000 Date: Sun, 1 Jul 2001 18:52:08 +0100 (BST) From: "Jonathan M. Slivko" X-Sender: jslivko@localhost.localdomain To: Brandon Peyton Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Change disk size.. 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 Partition Magic Pro should do the trick, I believe :) -- Jonathan \|||/ (o o) /-----------------------------ooO-(_)-Ooo----------------------------\ | Jonathan M. Slivko E-Mail: jslivko@jslivko.org | | IRC Nick: optix` Backup: js43064n@pace.edu | | AIM/AOL: JMSNY2001 Web : http://www.jslivko.org | |--------------------------------------------------------------------| | "History teaches us that days like this are best spent in bed" | \--------------------------------------------------------------------/ On Sun, 1 Jul 2001, Brandon Peyton wrote: > Hello, > > I need some help here. Obviously I've got a problem as I can hardly get > anything to work now that my / is full. > > I cannot afford to reformat as this is runs my mailserver/dns/webserver/etc. > My issue comes down to how can I create more room in my root directory. Its > clear I made a fatal mistake by only allowing 50M. > > What I am trying to figure out is how to add capacity to / without loosing > my files. I would like to simply reformat and change it which would take a > matter of minutes but I cannot. I would like to have at least 500M or a gig > as my /. > > What do you think? What is the best way to do this without loosing data. (I > do not want to use any kind of partition magic programs as I have had > nothing but failure from them). > > Thanks > brandon > > Filesystem Size Used Avail Capacity Mounted on > /dev/ad0s1a 48M 47M -2.2M 105% / > /dev/ad0s1f 5.7G 408M 4.8G 8% /usr > /dev/ad0s1e 19M 3.2M 15M 18% /var > procfs 4.0K 4.0K 0B 100% /proc > > > 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 Jul 1 10:58:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from chmls05.mediaone.net (chmls05.mediaone.net [24.147.1.143]) by hub.freebsd.org (Postfix) with ESMTP id 7A8EF37B403 for ; Sun, 1 Jul 2001 10:58:23 -0700 (PDT) (envelope-from leblanc@acadia.ne.mediaone.net) Received: from acadia.ne.mediaone.net (acadia.ne.mediaone.net [65.96.185.189]) by chmls05.mediaone.net (8.11.1/8.11.1) with ESMTP id f61HwMx10376 for ; Sun, 1 Jul 2001 13:58:22 -0400 (EDT) Received: (from leblanc@localhost) by acadia.ne.mediaone.net (8.9.3/8.9.3) id NAA00841; Sun, 1 Jul 2001 13:52:52 -0400 Date: Sun, 1 Jul 2001 13:52:52 -0400 From: Louis LeBlanc To: freebsd-questions@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: How to to boot directly into X from Freebsd 4.0 Message-ID: <20010701135251.C32402@acadia.ne.mediaone.net> Reply-To: freebsd-questions@FreeBSD.ORG Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <20010701132027.B32402@acadia.ne.mediaone.net> 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.19i X-bright-idea: Lets abolish HTML mail! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ahh. Very good to know. Thank you. L On 07/01/01 12:52 PM, Jason Nugent sat at the `puter and typed: > > > > Lou, > > You can create this file if you want. It just doesn't come with FreeBSD > by default. It *does* get read if present, though. > > HTH, > > Jason > > > ---------------------- > Jason Nugent > Aka MalHavoc > Server Programmer and Administrator > > S T O M P E D . C O M > > For PGP public key: http://malhavoc.stomped.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- Louis LeBlanc Fully Funded Hobbyist, KeySlapper Extrordinaire :) leblanc@acadia.ne.mediaone.net http://acadia.ne.mediaone.net Ô¿Ô¬ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 10:59: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from x1-6-00-50-ba-de-36-33.kico1.on.home.com (d141-119-162.home.cgocable.net [24.141.119.162]) by hub.freebsd.org (Postfix) with ESMTP id E5FAA37B401 for ; Sun, 1 Jul 2001 10:59:03 -0700 (PDT) (envelope-from genisis@istar.ca) Received: from localhost (genisis@localhost) by x1-6-00-50-ba-de-36-33.kico1.on.home.com (8.11.3/8.11.3) with ESMTP id f61I3sN28779; Sun, 1 Jul 2001 14:03:55 -0400 (EDT) (envelope-from genisis@istar.ca) X-Authentication-Warning: x1-6-00-50-ba-de-36-33.kico1.on.home.com: genisis owned process doing -bs Date: Sun, 1 Jul 2001 14:03:54 -0400 (EDT) From: Dru X-X-Sender: To: Brandon Peyton Cc: Subject: Re: Change disk size.. In-Reply-To: Message-ID: <20010701135943.H28633-100000@x1-6-00-50-ba-de-36-33.kico1.on.home.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, 1 Jul 2001, Brandon Peyton wrote: > Hello, > > I need some help here. Obviously I've got a problem as I can hardly get > anything to work now that my / is full. > > I cannot afford to reformat as this is runs my mailserver/dns/webserver/etc. > My issue comes down to how can I create more room in my root directory. Its > clear I made a fatal mistake by only allowing 50M. > > What I am trying to figure out is how to add capacity to / without loosing > my files. I would like to simply reformat and change it which would take a > matter of minutes but I cannot. I would like to have at least 500M or a gig > as my /. > > What do you think? What is the best way to do this without loosing data. (I > do not want to use any kind of partition magic programs as I have had > nothing but failure from them). > > Thanks > brandon > > Filesystem Size Used Avail Capacity Mounted on > /dev/ad0s1a 48M 47M -2.2M 105% / > /dev/ad0s1f 5.7G 408M 4.8G 8% /usr > /dev/ad0s1e 19M 3.2M 15M 18% /var > procfs 4.0K 4.0K 0B 100% /proc Hi Brandon, Your best bet would be to figure out what is filling up root. The most likely culprits are /root or /tmp and du -h /root du -h /tmp will let you know if this is the case or not. If the culprit is /root, get rid of what you don't need and don't surf, etc. as the superuser. If it's /tmp, use MFS instead. AFAIK, Partition Magic will see your FreeBSD partitions but won't let you resize them. Dru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 11:11:33 2001 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 BFC7B37B403 for ; Sun, 1 Jul 2001 11:11:30 -0700 (PDT) (envelope-from rj45@slacknet.com) Received: from rj45 (helo=localhost) by slacknet.slacknet.com with local-esmtp (Exim 3.12 #1 (Debian)) id 15Glgw-0004En-00 for ; Sun, 01 Jul 2001 12:11:30 -0600 Date: Sun, 1 Jul 2001 12:11:30 -0600 (MDT) From: RJ45 To: freebsd-questions@freebsd.org Subject: information about IPF 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 to implement a firewall design using FreeBSD+IPF. THe problem is what will be the future of IPF inside FreeBSD?? Will it continue to be included as a distribution inside the Operative system or it will be deleted?? OpenBSD already does not include it no more and they are working on a new project called PF. What about FreeBSD?? FreeBSD will continue to have IPF bundled inside in the same way is it right now or ther e will be new policies about continuing to use IPF?? thanks Rick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 11:18: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.allyster.com (fw.allyster.com [194.202.29.33]) by hub.freebsd.org (Postfix) with SMTP id D1C8F37B401 for ; Sun, 1 Jul 2001 11:17:57 -0700 (PDT) (envelope-from jslivko@jslivko.org) Received: (qmail 23772 invoked from network); 1 Jul 2001 18:20:03 -0000 Received: from mail.allyster.com (jslivko@194.202.29.35) by mail.allyster.com with SMTP; 1 Jul 2001 18:20:03 -0000 Date: Sun, 1 Jul 2001 19:20:03 +0100 (BST) From: "Jonathan M. Slivko" X-Sender: jslivko@localhost.localdomain To: RJ45 Cc: freebsd-questions@freebsd.org Subject: Re: information about IPF 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 ipfilter and ipfw are both included in FreeBSD, either in the base system or in the ports and packages. -- Jonathan \|||/ (o o) /-----------------------------ooO-(_)-Ooo----------------------------\ | Jonathan M. Slivko E-Mail: jslivko@jslivko.org | | IRC Nick: optix` Backup: js43064n@pace.edu | | AIM/AOL: JMSNY2001 Web : http://www.jslivko.org | |--------------------------------------------------------------------| | "History teaches us that days like this are best spent in bed" | \--------------------------------------------------------------------/ On Sun, 1 Jul 2001, RJ45 wrote: > > Hello, > I have to implement a firewall design using FreeBSD+IPF. > THe problem is what will be the future of IPF inside FreeBSD?? Will it > continue to be included as a distribution inside the Operative system or > it will be deleted?? OpenBSD already does not include it no more and they > are working on a new project called PF. > What about FreeBSD?? FreeBSD will continue to have IPF bundled inside in > the same way is it right now or ther e will be new policies about > continuing to use IPF?? > thanks > > Rick > > > > 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 Jul 1 11:19: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web3802.mail.yahoo.com (web3802.mail.yahoo.com [216.115.111.173]) by hub.freebsd.org (Postfix) with SMTP id 469EC37B406 for ; Sun, 1 Jul 2001 11:19:06 -0700 (PDT) (envelope-from whiskiman@yahoo.com) Message-ID: <20010701181906.10375.qmail@web3802.mail.yahoo.com> Received: from [209.178.154.11] by web3802.mail.yahoo.com; Sun, 01 Jul 2001 11:19:06 PDT Date: Sun, 1 Jul 2001 11:19:06 -0700 (PDT) From: DZUNG TRAN Subject: X windows 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 installed Free BSD4.2 as instruction in the book accompanied the package. I try to use in command line mode, it looks OK but I can not open X windows When I type X or startX or Xinit the screen becomes back all I see is an X which can be moved by the mouse. My video card is Stealth Diamond S540 which is on the video card list. Do I have to do something else Thanks for helping Dzung. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 12: 1:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailc.telia.com (mailc.telia.com [194.22.190.4]) by hub.freebsd.org (Postfix) with ESMTP id C057737B406 for ; Sun, 1 Jul 2001 12:01:41 -0700 (PDT) (envelope-from ertr1013@student.uu.se) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by mailc.telia.com (8.11.2/8.11.0) with ESMTP id f61J1dN10770 for ; Sun, 1 Jul 2001 21:01:39 +0200 (CEST) Received: from ertr1013.student.uu.se (h185n2fls20o913.telia.com [212.181.163.185]) by d1o913.telia.com (8.8.8/8.8.8) with SMTP id VAA13613 for ; Sun, 1 Jul 2001 21:01:38 +0200 (CEST) Received: (qmail 99528 invoked by uid 1001); 1 Jul 2001 19:00:54 -0000 Date: Sun, 1 Jul 2001 21:00:54 +0200 From: Erik Trulsson To: Brandon Peyton Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Change disk size.. Message-ID: <20010701210054.A97322@student.uu.se> Mail-Followup-To: Brandon Peyton , freebsd-questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.19i Sender: owner-freebsd-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, Jul 01, 2001 at 09:39:08PM +1000, Brandon Peyton wrote: > Hello, > > I need some help here. Obviously I've got a problem as I can hardly get > anything to work now that my / is full. > > I cannot afford to reformat as this is runs my mailserver/dns/webserver/etc. > My issue comes down to how can I create more room in my root directory. Its > clear I made a fatal mistake by only allowing 50M. > 50M should be enough. You should try to find out what is using all that space. Then move some of it to /usr and make a symlink to it. > What I am trying to figure out is how to add capacity to / without loosing > my files. I would like to simply reformat and change it which would take a > matter of minutes but I cannot. I would like to have at least 500M or a gig > as my /. I am afraid it is not possible to change the size of a filesystem without repartitioning the disk. > > What do you think? What is the best way to do this without loosing data. (I > do not want to use any kind of partition magic programs as I have had > nothing but failure from them). > AFAIK there is no partition magic type of program that can handle resizing of FFS partisions anyway. > Thanks > brandon > > Filesystem Size Used Avail Capacity Mounted on > /dev/ad0s1a 48M 47M -2.2M 105% / > /dev/ad0s1f 5.7G 408M 4.8G 8% /usr > /dev/ad0s1e 19M 3.2M 15M 18% /var > procfs 4.0K 4.0K 0B 100% /proc > -- 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 Sun Jul 1 12: 6:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from jezebel.demon.co.uk (jezebel.demon.co.uk [158.152.38.143]) by hub.freebsd.org (Postfix) with ESMTP id 4719237B405 for ; Sun, 1 Jul 2001 12:06:10 -0700 (PDT) (envelope-from rdls@jezebel.demon.co.uk) Received: (from rdls@localhost) by jezebel.demon.co.uk (8.11.1/8.11.1) id f61J38C00784; Sun, 1 Jul 2001 20:03:08 +0100 (BST) (envelope-from rdls) Date: Sun, 1 Jul 2001 20:03:07 +0100 From: Richard Smith To: Michael Lucas Cc: questions@freebsd.org Subject: Re: dummynet question Message-ID: <20010701200306.A282@gaia.home.rdls.net> References: <20010701131531.A78357@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: <20010701131531.A78357@blackhelicopters.org>; from mwlucas@blackhelicopters.org on Sun, Jul 01, 2001 at 01:15:31PM -0400 Sender: owner-freebsd-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, Jul 01, 2001 at 01:15:31PM -0400, Michael Lucas wrote: > Hello, > > I have several Web sites, with different IP addresses, on one server. > I would like to limit each individual site to 128k of outbound traffic. > > ipfw add 00100 pipe 1 ip from a.b.c.d to any > ipfw add 00200 pipe 2 ip from a.b.c.e to any > .... > > ipfw pipe 1 config bw 128Kbit/s > ipfw pipe 2 config bw 128Kbit/s > ... > > Could I simplify this into pointing each IPFW rule into "pipe 1", > throttling each to 128K? Or would they share the bandwidth, or would > something else funky happen? No. They would all share the same 128K pipe. Your former approach is the correct one. [I am assuming that the rules run on the web server itself, otherwise they may need modification] Richard. -- Richard Smith Network Systems Director Satamatics Ltd Green Lane, Tewkesbury, GL20 8HD, United Kingdom Tel: +44 1684 278610 Fax: +44 1684 278611 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 12:14:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from omta01.mta.everyone.net (sitemail.everyone.net [216.200.145.35]) by hub.freebsd.org (Postfix) with ESMTP id D902837B403 for ; Sun, 1 Jul 2001 12:14:19 -0700 (PDT) (envelope-from junkmail@detonate.net) Received: from sitemail.everyone.net (reports [216.200.145.62]) by omta01.mta.everyone.net (Postfix) with ESMTP id A5D551C413D; Sun, 1 Jul 2001 12:14:19 -0700 (PDT) Received: by sitemail.everyone.net (Postfix, from userid 99) id 5AE45274F; Sun, 1 Jul 2001 12:14:19 -0700 (PDT) Content-Type: text/plain Content-Disposition: inline Mime-Version: 1.0 X-Mailer: MIME-tools 4.104 (Entity 4.117) Date: Sun, 1 Jul 2001 12:14:19 -0700 (PDT) From: Spam Central To: varian@1bigred.com Cc: freebsd-questions@freebsd.org Reply-To: junkmail@detonate.net X-Originating-Ip: [24.161.154.122] Message-Id: <20010701191419.5AE45274F@sitemail.everyone.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 I've had that happen to me before. In my case, I unwittingly installed CPAN in it's default location(which is the / partition).. I don't know what you were doing before this happened, but there's a good chance you might have installed something in your / which now blocks you from doing certain things. For me, the resolution was as simple as deleting CPAN's directory. I hope this helps you out. On Sun, Jul 01, 2001 at 09:39:08PM +1000, Brandon Peyton wrote: > Hello, > > I need some help here. Obviously I've got a problem as I can hardly get > anything to work now that my / is full. > > I cannot afford to reformat as this is runs my mailserver/dns/webserver/etc. > My issue comes down to how can I create more room in my root directory. Its > clear I made a fatal mistake by only allowing 50M. > > What I am trying to figure out is how to add capacity to / without loosing > my files. I would like to simply reformat and change it which would take a > matter of minutes but I cannot. I would like to have at least 500M or a gig > as my /. > > What do you think? What is the best way to do this without loosing data. (I > do not want to use any kind of partition magic programs as I have had > nothing but failure from them). > > Thanks > brandon > > Filesystem Size Used Avail Capacity Mounted on > /dev/ad0s1a 48M 47M -2.2M 105% / > /dev/ad0s1f 5.7G 408M 4.8G 8% /usr > /dev/ad0s1e 19M 3.2M 15M 18% /var > procfs 4.0K 4.0K 0B 100% /proc _____________________________________________________________ Wake up screaming. . . http://www.detonate.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 12:15:27 2001 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 1603637B401 for ; Sun, 1 Jul 2001 12:15:24 -0700 (PDT) (envelope-from mwlucas@blackhelicopters.org) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id PAA78633; Sun, 1 Jul 2001 15:15:22 -0400 (EDT) (envelope-from mwlucas) Date: Sun, 1 Jul 2001 15:15:22 -0400 From: Michael Lucas To: Richard Smith Cc: questions@freebsd.org Subject: Re: dummynet question Message-ID: <20010701151522.A78618@blackhelicopters.org> References: <20010701131531.A78357@blackhelicopters.org> <20010701200306.A282@gaia.home.rdls.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20010701200306.A282@gaia.home.rdls.net>; from rdls@rdls.net on Sun, Jul 01, 2001 at 08:03:07PM +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 Sun, Jul 01, 2001 at 08:03:07PM +0100, Richard Smith wrote: > On Sun, Jul 01, 2001 at 01:15:31PM -0400, Michael Lucas wrote: > > Hello, > > > > I have several Web sites, with different IP addresses, on one server. > > I would like to limit each individual site to 128k of outbound traffic. > > > > ipfw add 00100 pipe 1 ip from a.b.c.d to any > > ipfw add 00200 pipe 2 ip from a.b.c.e to any > > .... > > > > ipfw pipe 1 config bw 128Kbit/s > > ipfw pipe 2 config bw 128Kbit/s > > ... > > > > Could I simplify this into pointing each IPFW rule into "pipe 1", > > throttling each to 128K? Or would they share the bandwidth, or would > > something else funky happen? > > No. They would all share the same 128K pipe. Your former approach > is the correct one. [I am assuming that the rules run on the web > server itself, otherwise they may need modification] Yep, they're on the web server itself. Dang, another bright idea gone down the tubes. Thanks much! -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 12:16:22 2001 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 64D7B37B407 for ; Sun, 1 Jul 2001 12:16:09 -0700 (PDT) (envelope-from fgleiser@cactus.fi.uba.ar) Received: from cactus.fi.uba.ar (cactus.fi.uba.ar [157.92.49.108]) by cactus.fi.uba.ar (8.11.3/8.9.3) with ESMTP id f61JDZf16478; Sun, 1 Jul 2001 16:13:40 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Sun, 1 Jul 2001 16:13:35 -0300 (ART) From: Fernando Gleiser To: tyler spivey Cc: Subject: Re: how to setup natd under ipf? In-Reply-To: <200106302050.f5UKoRa00311@home.com> Message-ID: <20010701160723.J16304-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, 30 Jun 2001, tyler spivey wrote: > place cc me sicne i am not on this list. > how do i get nat on ipf? You need to use ipnat. man ipnat for details. The ipf howto is available at http://www.obfuscation.org/ipf/ipf-howto.txt > it says unknown keyword map. Because you are using ipf to do nat. In IP Filter, you use ipf for filtering and ipnat for NAT. > map rl0 10.0.0.0/24 -> 0/32 put this rule in a file called /etc/ipnat.rules and then say "ipnat -f /etc/ipnat.rules". > it worked under ipfw. > and ihave natd_enable and all that in rc.conf. > > 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 Jul 1 12:28: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from omsk.mushinsky.net (omsk.mushinsky.net [66.9.37.251]) by hub.freebsd.org (Postfix) with ESMTP id 7322537B407 for ; Sun, 1 Jul 2001 12:28:01 -0700 (PDT) (envelope-from imush@mail.ru) Received: from omsk.mushinsky.net (itz@localhost [127.0.0.1]) by omsk.mushinsky.net (8.11.3/8.11.1) with SMTP id f61JQGC11697; Sun, 1 Jul 2001 15:26:16 -0400 (EDT) (envelope-from imush@mail.ru) Content-Type: text/plain; charset="koi8-r" From: Isaac Mushinsky To: DZUNG TRAN , "freebsd-questions" Subject: Re: X windows Date: Sun, 1 Jul 2001 15:26:16 -0400 X-Mailer: KMail [version 1.2] References: <20010701181906.10375.qmail@web3802.mail.yahoo.com> In-Reply-To: <20010701181906.10375.qmail@web3802.mail.yahoo.com> MIME-Version: 1.0 Message-Id: <01070115261605.73812@omsk.mushinsky.net> 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 Have you installed a window manager? Since you see that screen and can use you mouse, it seems that the X serv= er=20 itself is installed correctly. In particular, the window manager that should be started up by your xinit= rc=20 script (that is either ~/.xinitrc or in the absence thereof=20 /etc/X11/xinit/xinitrc). If you are still confused, send your xinitrc script and the messages from= the=20 X server (try startx 1>file 2>&1). On Sunday 01 July 2001 14:19, you wrote: > I installed Free BSD4.2 as instruction in the book > accompanied the package. > I try to use in command line mode, it looks OK > but I can not open X windows > > When I type X or startX or Xinit the screen becomes > back all I see is an X which can be moved by the > mouse. > My video card is Stealth Diamond S540 which is on > the video card list. > Do I have to do something else > Thanks for helping > Dzung. > > 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 Jul 1 12:31:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from scaup.mail.pas.earthlink.net (scaup.mail.pas.earthlink.net [207.217.121.49]) by hub.freebsd.org (Postfix) with ESMTP id 3A87B37B403 for ; Sun, 1 Jul 2001 12:31:32 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.247.143.73.Dial1.SanJose1.Level3.net [209.247.143.73]) by scaup.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id MAA05691; Sun, 1 Jul 2001 12:31:23 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f61JVCP00927; Sun, 1 Jul 2001 12:31:12 -0700 (PDT) (envelope-from cjc) Date: Sun, 1 Jul 2001 12:31:05 -0700 From: "Crist J. Clark" To: RJ45 Cc: freebsd-questions@FreeBSD.ORG Subject: Re: information about IPF Message-ID: <20010701123105.D296@blossom.cjclark.org> Reply-To: cjclark@alum.mit.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 rj45@slacknet.com on Sun, Jul 01, 2001 at 12:11:30PM -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 Sun, Jul 01, 2001 at 12:11:30PM -0600, RJ45 wrote: > > Hello, > I have to implement a firewall design using FreeBSD+IPF. > THe problem is what will be the future of IPF inside FreeBSD?? Last I knew, there were no plans to remove IPFilter. The most significant thing to happen was moving some files around in the source tree. Darren himself is the one who maintains IPF in FreeBSD. And now since Darren reworded his license to be BSD-ish, there would be no reason to reconsider again. I am curious about PF, tho'. ;) -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 12:35:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from falcon.mail.pas.earthlink.net (falcon.mail.pas.earthlink.net [207.217.120.74]) by hub.freebsd.org (Postfix) with ESMTP id 6877F37B401 for ; Sun, 1 Jul 2001 12:35:47 -0700 (PDT) (envelope-from dleimbac@earthlink.net) Received: from mutt.home.net (1Cust17.tnt1.starkville.ms.da.uu.net [63.30.107.17]) by falcon.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id MAA28570; Sun, 1 Jul 2001 12:35:40 -0700 (PDT) Received: (from dave@localhost) by mutt.home.net (8.11.3/8.11.3) id f61D5Cr01053; Sun, 1 Jul 2001 08:05:12 -0500 (CDT) (envelope-from dave) Date: Sun, 1 Jul 2001 08:05:11 -0500 From: David Leimbach To: Ted Mittelstaedt , questions@freebsd.org Subject: Re: Real numbers on why loopback is slow in FreeBSD please read... Message-ID: <20010701080511.B767@mutt.home.net> References: <20010630112406.A1143@mutt.home.net> <001801c10205$27b12f60$1401a8c0@tedm.placo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <001801c10205$27b12f60$1401a8c0@tedm.placo.com>; from tedm@toybox.placo.com on Sun, Jul 01, 2001 at 01:09:30AM -0700 X-Operating-System: FreeBSD mutt.home.net 4.3-RELEASE FreeBSD 4.3-RELEASE Sender: owner-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 going to try to figure out what kind of hardware is in that weird HP box today and ask my boss if its ok for me to develop the FreeBSD version of MPI/Pro on my home machine... He may not like that idea for security reasons but I tri-boot linux/FreeBSD/Win32 and I think I could get a more accurate measurement of what is going on [or may not be going on] in FreeBSD. Thanks for the responses and I will try to get a much better comparison with more information for those willing to help me out soon. Thanks again Dave On Sun, Jul 01, 2001 at 01:09:30AM -0700, Ted Mittelstaedt wrote: > >-----Original Message----- > >From: owner-freebsd-questions@FreeBSD.ORG > >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of David Leimbach > > > > [rant deleted] > > >I noticed the really horribly poor latency of FreeBSD when using > >the loopback. > > > >Here are some numbers: > >[From the perf MPI test on FreeBSD ] > > > > [numbers deleted, refer to previous message] > > >So I think I have valid reason to be worried. This is just a ping-pong > >test that perf runs but the message latency on linux is more desirable > >than FreeBSD. > > > >Is this related to proc speeds at all? If so how much? > > > >I would like to do better than 223.44 ms latency for a 0 data length packet > >in FreeBSD. > > > >Any ideas?? > > > > Dave, > > There's probably another reason that people aren't really paying attention > to your posting - they aren't seeing the same figures. > > Here's the output on my own home system, a Pentium 166Mhz: > > mail# ping -s 4096 -f 127.0.0.1 > PING 127.0.0.1 (127.0.0.1): 4096 data bytes > ..^. > --- 127.0.0.1 ping statistics --- > 2574 packets transmitted, 2573 packets received, 0% packet loss > round-trip min/avg/max/stddev = 0.235/0.252/0.438/0.013 ms > mail# > > As you can see, with a packetsize of 4096 (8192, your largest size, > isn't > valid for ping) pinging the loopback as fast as possible, I'm only seeing > an average of 252 microseconds, not 400 microseconds as you posted. > > Doing the same thing again with a packetsize of 64 shows the following: > > mail# ping -s 64 -f 127.0.0.1 > PING 127.0.0.1 (127.0.0.1): 64 data bytes > ..^C > --- 127.0.0.1 ping statistics --- > 2995 packets transmitted, 2994 packets received, 0% packet loss > round-trip min/avg/max/stddev = 0.071/0.075/0.229/0.004 ms > mail# > > Now I'm seeing only 75 microseconds average. Once again, this is vastly > different than the 200+ microseconds your seeing on your test. > > Now, you said in your posting that your perf stats run a ping pong test > so whatever your running ought to be identical to "ping -f -s somedatasize". > You didn't post how fast the CPU of your system is, nor any of the other > particulars. And, you certainly didn't post the code that your using > to generate your numbers. > > Would you consider the possibility that your code that you wrote to > do this is horribly inefficient, instead of FreeBSD? I have observed that > most > of the problems that people have troubleshooting is when they start assuming > that what they have done couldn't possibly have a problem, so they waste all > kinds of time searching for the problem that they are convinced that > something > else has. You need to consider that your code is faulty and test this > hypothesis with other people's code that does the same thing. If your code > and > everyone else's code running on FreeBSD all come up with the same numbers, > that are repeatable on other people's system, then we would get interested. > But as of now I have attempted to duplicate your hypothesis of inefficient > loopback performance under FreeBSD and found that there is no basis for it. > > > > Ted Mittelstaedt tedm@toybox.placo.com > Author of: The FreeBSD Corporate Networker's Guide > Book website: http://www.freebsd-corp-net-guide.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 Jul 1 12:35:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from falcon.mail.pas.earthlink.net (falcon.mail.pas.earthlink.net [207.217.120.74]) by hub.freebsd.org (Postfix) with ESMTP id 6A10537B403 for ; Sun, 1 Jul 2001 12:35:47 -0700 (PDT) (envelope-from dleimbac@earthlink.net) Received: from mutt.home.net (1Cust17.tnt1.starkville.ms.da.uu.net [63.30.107.17]) by falcon.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id MAA28734; Sun, 1 Jul 2001 12:35:43 -0700 (PDT) Received: (from dave@localhost) by mutt.home.net (8.11.3/8.11.3) id f61D29C01005; Sun, 1 Jul 2001 08:02:09 -0500 (CDT) (envelope-from dave) Date: Sun, 1 Jul 2001 08:02:08 -0500 From: David Leimbach To: Ted Mittelstaedt , questions@freebsd.org Subject: Re: Real numbers on why loopback is slow in FreeBSD please read... Message-ID: <20010701080208.A767@mutt.home.net> References: <20010630112406.A1143@mutt.home.net> <001801c10205$27b12f60$1401a8c0@tedm.placo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <001801c10205$27b12f60$1401a8c0@tedm.placo.com>; from tedm@toybox.placo.com on Sun, Jul 01, 2001 at 01:09:30AM -0700 X-Operating-System: FreeBSD mutt.home.net 4.3-RELEASE FreeBSD 4.3-RELEASE Sender: owner-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, > > There's probably another reason that people aren't really paying attention > to your posting - they aren't seeing the same figures. I think my personal home machine is actually getting better numbers than the FreeBSD 4.2 box I have at work. Its also autonegotiating its 100Mbit capable adapter down to 10Mbps... It's a weird HP box. > > Here's the output on my own home system, a Pentium 166Mhz: > > mail# ping -s 4096 -f 127.0.0.1 > PING 127.0.0.1 (127.0.0.1): 4096 data bytes > ..^. > --- 127.0.0.1 ping statistics --- > 2574 packets transmitted, 2573 packets received, 0% packet loss > round-trip min/avg/max/stddev = 0.235/0.252/0.438/0.013 ms > mail# > > As you can see, with a packetsize of 4096 (8192, your largest size, > isn't > valid for ping) pinging the loopback as fast as possible, I'm only seeing > an average of 252 microseconds, not 400 microseconds as you posted. > > Doing the same thing again with a packetsize of 64 shows the following: > > mail# ping -s 64 -f 127.0.0.1 > PING 127.0.0.1 (127.0.0.1): 64 data bytes > ..^C > --- 127.0.0.1 ping statistics --- > 2995 packets transmitted, 2994 packets received, 0% packet loss > round-trip min/avg/max/stddev = 0.071/0.075/0.229/0.004 ms > mail# > > Now I'm seeing only 75 microseconds average. Once again, this is vastly > different than the 200+ microseconds your seeing on your test. > > Now, you said in your posting that your perf stats run a ping pong test > so whatever your running ought to be identical to "ping -f -s somedatasize". > You didn't post how fast the CPU of your system is, nor any of the other > particulars. And, you certainly didn't post the code that your using > to generate your numbers. Its not really identical to ping. We use an some in house algoritms I am not sure I can talk about without getting fired to "cache small messages before they are sent". Small is a threshold that can be adjusted by the user of the MPI library. The code being used to generate the numbers I can give but unless you know any MPI its pretty useless to you. Its a parallel application and you have to remember that its running in two places simultaneously. > > Would you consider the possibility that your code that you wrote to > do this is horribly inefficient, instead of FreeBSD? I have observed that > most > of the problems that people have troubleshooting is when they start assuming > that what they have done couldn't possibly have a problem, so they waste all > kinds of time searching for the problem that they are convinced that > something > else has. You need to consider that your code is faulty and test this > hypothesis with other people's code that does the same thing. If your code > and > everyone else's code running on FreeBSD all come up with the same numbers, > that are repeatable on other people's system, then we would get interested. > But as of now I have attempted to duplicate your hypothesis of inefficient > loopback performance under FreeBSD and found that there is no basis for it. I would consider that the code is faulty I was the only one writing it.. :) and also if we didn't get reviews from our customers stating how much faster we were than our competition at doing this exact kind of work. On a 100Mbps connection between two machines we are getting bandwidth of about 11MB/s [yes B for Byte]. Since 8 bits are in a byte and you have to deal with packet header overhead and the fact that TCP/IP really isn't that great a protocol when compared to some of the less paranoid kinds [ATM comes to mind..]. I would say we are pretty close to optimal in our code. This led me to think that FreeBSD is the problem. If you don't believe my claims you can feel free to download MPI/Pro for Linux for free at www.mpi-sofftech.com. This will allow you to run up to 16 process jobs [16 processes on potentially 16 different machines in a cluster] over a TCP/IP connection. I have only ever seen less than 11MB/sec with MPI/Pro on Solaris but it was about 10.9MB/sec. The whole point of this is I am trying to verify a target for MPI/Pro on FreeBSD. That demo I was talking about in the previous paragraph will not run out after an "evaluation period" but it is only available for Linux and Win32. We would like to support all the Unixes and are currently also looking at Tru64 and Mac OSX [though we are understaffed and I am doing all three plus some other work. I am working on the FreeBSD port in my spare time though out of appreciation for being able to use such a great system.] I am not trying to criticize FreeBSD I am just trying to squeeze all the performance I can out of it.... > > > > Ted Mittelstaedt tedm@toybox.placo.com > Author of: The FreeBSD Corporate Networker's Guide > Book website: http://www.freebsd-corp-net-guide.com > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 12:39:40 2001 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 2E62537B401 for ; Sun, 1 Jul 2001 12:39:35 -0700 (PDT) (envelope-from fgleiser@cactus.fi.uba.ar) Received: from cactus.fi.uba.ar (cactus.fi.uba.ar [157.92.49.108]) by cactus.fi.uba.ar (8.11.3/8.9.3) with ESMTP id f61JcCf16755; Sun, 1 Jul 2001 16:38:12 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Sun, 1 Jul 2001 16:38:12 -0300 (ART) From: Fernando Gleiser To: Louis LeBlanc Cc: Subject: Re: Firewall: ipfw? ipfilter? dhcp lease? In-Reply-To: <20010701113541.A32402@acadia.ne.mediaone.net> Message-ID: <20010701161952.A16304-100000@cactus.fi.uba.ar> 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 Both ipf and ipfw are roughly equivalent, and each one has its strenghts and weaknesses. For me, they are way better (better syntax, better features, easier to configure) than IP chains. I am using IP Filter, because it suits my particular needs better. I use IPfilter instead of ipfw because: 1. compatibility with other OS (solaris, other bsd) 2. I like the stateful inspection features of ipf better. 3. Rule grouping. You can make the rules tree shaped instead of linear, speeding up the rule matching. 4. I prefer ipnat over natd. On the other hand with ipfw you can: 1. Use a traffic shaper (dummynet). 2. Select where you want to NAT (at the beginning, at the end, somewhere in between) You can even use them both at the same time (I use ipf for NAT/filtering and ipfw for dummynet). The ipf howto is at http://www.obfuscation.org/ipf/ipf-howto.txt The ipfw howto is at http://www.mostgraveconcern.com/freebsd/ipfw.html The IP Filter mailing list archives are at http://false.net/ipfilter My advice is try them both, and pick the one that fits your needs better. Hope this helps On Sun, 1 Jul 2001, Louis LeBlanc wrote: > Hey all. FreeBSD newbie/convert in training here. > Couple questions regarding firewalls. > > First some background on what I am doing now (meaning I have enough > knowledge to get by on my current setup) > > I am currently using RH6.2 with ipchains for my firewall. I am > blocking and allowing different ports from all or just a subnet (all > open from my work subnet, most closed from all else, that kind of > thing). I also have it set up with dhcpcd (pump doesn't do it for me) > so that when I get a new dhcp lease, the firewall is reinitialized by > executing the rc.firewall script with each dhcp lease. > > Anyway, I have just finally gotten around to getting a new (for me) > machine at home to run FreeBSD on, and I want to set that up as my > front end machine (hooked directly to the cable modem, running the > firewall, masquerading, maybe doing nat, etc.), but I also want to > make sure the firewall will stay up with the current dhcp lease. > > Anyway, I have been reading about firewalls on the list for a while, > and am wondering about the differences between using ipfilter and > ipfw. I take it FreeBSD is not using ipchains, so I won't go there. > > I assume there is some flexibility/security/simplicity tradeoff > between the two? Seems logical to me if so. Is one easier to > configure? What about resource requirements? (not that that would be > an issue, but I'm curious.) > > I am well aware that there are books available on the subject, a > couple are plugged right in the /etc/rc.firewall script, but I want to > make a decision on the approach first, and pick the book or books, web > resources, etc. that most apply to my decision (I already have plenty > of books that "don't apply") > > Also, are there any online tools to help set up such a firewall? I > have been using an ipchains firewall I generated with Rob Ziegler's > excellent Linux Firewall Design Tool at > http://www.linux-firewall-tools.com/linux/firewall/index.html > And yes, it is excellent! Unfortunately, I don't think he has gotten > too much into the FreeBSD world. Maybe I'll scout his site again > later, or better yet, email him. > > BTW, some of you may have noticed that I had asked about 5.0-CURRENT > recently, but I will be running 4.3-STABLE on this machine. I am > (or was) putting -CURRENT on an extra desktop I have 'absconded' at > work for experimentation. Just an FYI. > > Any and all useful commentary on the subject is more than welcome and > much appreciated. I hope I have not strayed too far from list > etiquette in terms of being both complete and concise, but please > forgive me if I have, and feel free to let me know so I can correct > any errant behavior, as I expect to have a lot of questions for the > list in the future :). > > TIA > Lou > -- > Louis LeBlanc > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > leblanc@acadia.ne.mediaone.net > http://acadia.ne.mediaone.net Ô¿Ô¬ > > 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 Jul 1 12:40:13 2001 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 0EF9237B405 for ; Sun, 1 Jul 2001 12:40:09 -0700 (PDT) (envelope-from LConrad@Go2France.com) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 1A56E16B16 for ; Sun, 1 Jul 2001 21:40:07 +0200 (CEST) Received: from IBM-HIRXKN66F0W.Go2France.com [195.115.185.184] by mail.Go2France.com with ESMTP (SMTPD32-6.06) id AE5DD8490128; Sun, 01 Jul 2001 21:47:41 +0200 Message-Id: <5.1.0.14.0.20010701213843.02e428c8@mail.Go2France.com> X-Sender: LConrad@Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sun, 01 Jul 2001 21:40:56 +0200 To: freebsd-questions@freebsd.org From: Len Conrad Subject: Re: kern.maxproc In-Reply-To: <20010701154102.A376@iv.nn.kiev.ua> References: <5.1.0.14.0.20010630174654.03c870c8@mail.Go2France.com> <5.1.0.14.0.20010630174654.03c870c8@mail.Go2France.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 > > Do I have to install the source and recompile? > >No, put it to /etc/sysctl.conf. Well, opionions are extremely varied on this one :))) with kern.maxproc=1000 in systctl.conf, I get this after booting. kern.maxproc: 532 kern.maxprocperuid: 1000 Bumping kern.maxproc is said to be touchable only via MAXUSERS and a custom kernel. 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 Jul 1 13:30:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hawk.mail.pas.earthlink.net (hawk.mail.pas.earthlink.net [207.217.120.22]) by hub.freebsd.org (Postfix) with ESMTP id CF60237B405 for ; Sun, 1 Jul 2001 13:30:19 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.247.143.73.Dial1.SanJose1.Level3.net [209.247.143.73]) by hawk.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id NAA14604; Sun, 1 Jul 2001 13:29:52 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f61KTKd10738; Sun, 1 Jul 2001 13:29:20 -0700 (PDT) (envelope-from cjc) Date: Sun, 1 Jul 2001 13:29:16 -0700 From: "Crist J. Clark" To: Len Conrad Cc: freebsd-questions@FreeBSD.ORG Subject: Re: kern.maxproc Message-ID: <20010701132916.E296@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <5.1.0.14.0.20010630174654.03c870c8@mail.Go2France.com> <5.1.0.14.0.20010630174654.03c870c8@mail.Go2France.com> <20010701154102.A376@iv.nn.kiev.ua> <5.1.0.14.0.20010701213843.02e428c8@mail.Go2France.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <5.1.0.14.0.20010701213843.02e428c8@mail.Go2France.com>; from LConrad@Go2France.com on Sun, Jul 01, 2001 at 09:40:56PM +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, Jul 01, 2001 at 09:40:56PM +0200, Len Conrad wrote: > > > > Do I have to install the source and recompile? > > > >No, put it to /etc/sysctl.conf. > > Well, opionions are extremely varied on this one :))) They shouldn't be. From sysctl(8), Name Type Changeable ... ... ... kern.maxproc integer no And if we go to the code, $ grep -w maxproc /usr/src/sys/kern/kern_mib.c SYSCTL_INT(_kern, KERN_MAXPROC, maxproc, CTLFLAG_RD, &maxproc, 0, "Maximum number of processes"); Note the 'CTLFLAG_RD;' it's read-only. You need to recompile to change it. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 14: 2:33 2001 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 F008037B403 for ; Sun, 1 Jul 2001 14:02:27 -0700 (PDT) (envelope-from alfatrion@cybertron.tmfweb.nl) Received: from cybertron ([213.10.151.186]) by smtp01.wxs.nl (Netscape Messaging Server 4.05) with SMTP id GFTBS000.36O; Sun, 1 Jul 2001 23:02:24 +0200 Message-ID: <002e01c10271$21fc08d0$231fa8c0@dekruijff.nl> From: "Alfatrion" To: "Fernando Gleiser" , "Louis LeBlanc" Cc: References: <20010701161952.A16304-100000@cactus.fi.uba.ar> Subject: Re: Firewall: ipfw? ipfilter? dhcp lease? Date: Sun, 1 Jul 2001 23:00:16 +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 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 > > Hey all. FreeBSD newbie/convert in training here. > > Couple questions regarding firewalls. > > > > First some background on what I am doing now (meaning I have enough > > knowledge to get by on my current setup) > > > > I am currently using RH6.2 with ipchains for my firewall. I am > > blocking and allowing different ports from all or just a subnet (all > > open from my work subnet, most closed from all else, that kind of > > thing). I also have it set up with dhcpcd (pump doesn't do it for me) > > so that when I get a new dhcp lease, the firewall is reinitialized by > > executing the rc.firewall script with each dhcp lease. > > > > Anyway, I have just finally gotten around to getting a new (for me) > > machine at home to run FreeBSD on, and I want to set that up as my > > front end machine (hooked directly to the cable modem, running the > > firewall, masquerading, maybe doing nat, etc.), but I also want to > > make sure the firewall will stay up with the current dhcp lease. > > > > Anyway, I have been reading about firewalls on the list for a while, > > and am wondering about the differences between using ipfilter and > > ipfw. I take it FreeBSD is not using ipchains, so I won't go there. > > > > I assume there is some flexibility/security/simplicity tradeoff > > between the two? Seems logical to me if so. Is one easier to > > configure? What about resource requirements? (not that that would be > > an issue, but I'm curious.) > > > > I am well aware that there are books available on the subject, a > > couple are plugged right in the /etc/rc.firewall script, but I want to > > make a decision on the approach first, and pick the book or books, web > > resources, etc. that most apply to my decision (I already have plenty > > of books that "don't apply") > > > > Also, are there any online tools to help set up such a firewall? I > > have been using an ipchains firewall I generated with Rob Ziegler's > > excellent Linux Firewall Design Tool at > > http://www.linux-firewall-tools.com/linux/firewall/index.html > > And yes, it is excellent! Unfortunately, I don't think he has gotten > > too much into the FreeBSD world. Maybe I'll scout his site again > > later, or better yet, email him. > > > > BTW, some of you may have noticed that I had asked about 5.0-CURRENT > > recently, but I will be running 4.3-STABLE on this machine. I am > > (or was) putting -CURRENT on an extra desktop I have 'absconded' at > > work for experimentation. Just an FYI. > > > > Any and all useful commentary on the subject is more than welcome and > > much appreciated. I hope I have not strayed too far from list > > etiquette in terms of being both complete and concise, but please > > forgive me if I have, and feel free to let me know so I can correct > > any errant behavior, as I expect to have a lot of questions for the > > list in the future :). > > > Both ipf and ipfw are roughly equivalent, and each one has its strenghts and > weaknesses. For me, they are way better (better syntax, better features, > easier to configure) than IP chains. > > I am using IP Filter, because it suits my particular needs better. > I use IPfilter instead of ipfw because: > > 1. compatibility with other OS (solaris, other bsd) > 2. I like the stateful inspection features of ipf better. > 3. Rule grouping. You can make the rules tree shaped instead of linear, > speeding up the rule matching. > 4. I prefer ipnat over natd. > > On the other hand with ipfw you can: > > 1. Use a traffic shaper (dummynet). > 2. Select where you want to NAT (at the beginning, at the end, somewhere in > between) > > You can even use them both at the same time (I use ipf for NAT/filtering > and ipfw for dummynet). > > The ipf howto is at http://www.obfuscation.org/ipf/ipf-howto.txt > The ipfw howto is at http://www.mostgraveconcern.com/freebsd/ipfw.html > > The IP Filter mailing list archives are at http://false.net/ipfilter > > My advice is try them both, and pick the one that fits your needs better. > > Hope this helps > You number three reson is also posible with IPFW Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 14:20:53 2001 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 3957B37B405 for ; Sun, 1 Jul 2001 14:20:50 -0700 (PDT) (envelope-from fgleiser@cactus.fi.uba.ar) Received: from cactus.fi.uba.ar (cactus.fi.uba.ar [157.92.49.108]) by cactus.fi.uba.ar (8.11.3/8.9.3) with ESMTP id f61LJKf17780; Sun, 1 Jul 2001 18:19:20 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Sun, 1 Jul 2001 18:19:20 -0300 (ART) From: Fernando Gleiser To: Alfatrion Cc: Subject: Re: Firewall: ipfw? ipfilter? dhcp lease? In-Reply-To: <002e01c10271$21fc08d0$231fa8c0@dekruijff.nl> Message-ID: <20010701180636.V16304-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 Sun, 1 Jul 2001, Alfatrion wrote: > > You number three reson is also posible with IPFW > Alex > You mean something equivalent to ipf's head/group? I didn't know that was posible but I'm not a IPFW expert. Do you have an example, or pointer to some docs? When I had to choose betwen IPF and IPFW three years ago, ipf was best suited to my particular needs, that's why I choose IPF. And the compatibility with other operating systems is very important to me. Fer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 14:29:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from home.com (h24-76-54-195.vf.shawcable.net [24.76.54.195]) by hub.freebsd.org (Postfix) with ESMTP id 3EDEC37B403 for ; Sun, 1 Jul 2001 14:29:37 -0700 (PDT) (envelope-from tspivey8@home.com) Received: from home.com (localhost [127.0.0.1]) by home.com (8.11.3/8.11.3) with ESMTP id f61HRna06035 for ; Sun, 1 Jul 2001 13:27:50 -0400 (EDT) (envelope-from tspivey8@home.com) Message-Id: <200107011727.f61HRna06035@home.com> To: freebsd-questions@freebsd.org Subject: install over nfs Date: Sun, 01 Jul 2001 13:27:49 -0400 From: tyler spivey Sender: owner-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 do i do it? this box acts as a nfs server. [cc me since im not on list too much traffic] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 14:36:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f265.law14.hotmail.com [64.4.20.140]) by hub.freebsd.org (Postfix) with ESMTP id B92EF37B406 for ; Sun, 1 Jul 2001 14:36:28 -0700 (PDT) (envelope-from luca_hall@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 1 Jul 2001 14:36:28 -0700 Received: from 216.41.42.128 by lw14fd.law14.hotmail.msn.com with HTTP; Sun, 01 Jul 2001 21:36:28 GMT X-Originating-IP: [216.41.42.128] From: "Luca Hall" To: freebsd-questions@FreeBSD.ORG Subject: 4.2-RELEASE Fatal Trap 12 at boot Date: Sun, 01 Jul 2001 17:36:28 -0400 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 01 Jul 2001 21:36:28.0685 (UTC) FILETIME=[E30DDBD0:01C10275] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ive currently installed 4.2-RELEASE upgraded from 4.0-RELEASE. 4.0 had no problems what so ever, almost through boot i get this plip0: on ppbus0 lpt0: on ppbus0 lpt0: < interrupt-driven port> ppi0: on ppbus0 Fatal trap 12: page fault while in kernel mode Fault virtual address = 0x1 Fault code = supervisor read, page not present Instruction pointer = 0x8:0xc019fe8f Satck pointer = 0x10: 0xc0447ec0 Frame pointer = 0x10: 0xc0447ed0 Code segment = base 0x0, limit 0xfffff,type 0x1b = DPI 0 , pres 1, def32 1, gran 1 processor eflags = interrupt enabled ,resume , IOPL = 0 current process = 0 (swapper) interrupt mask = net tty bio cam trap number = 12 panic: page fault syncing disk... done Uptime 0s This is all the info i can get, I had to hand copy it sorry for spelling. Any suggestion would be helpful as i dont have a clue. Ive searched all previous lists and have found similar problems but none dealing with boot. Thanks Alot Luca _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.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 Jul 1 14:42: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hawk-systems.com (hawk-systems.com [161.58.152.235]) by hub.freebsd.org (Postfix) with ESMTP id 191FE37B403 for ; Sun, 1 Jul 2001 14:41:58 -0700 (PDT) (envelope-from dave@hawk-systems.com) Received: from WS1 (ws1.nexusinternetsolutions.net [204.50.168.15]) by hawk-systems.com (8.11.2) id f61Lfv021505 for ; Sun, 1 Jul 2001 15:41:57 -0600 (MDT) From: dave@hawk-systems.com (Dave) To: Subject: RE: Change disk size.. Date: Sun, 1 Jul 2001 17:46:05 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: <20010701210054.A97322@student.uu.se> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 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 below >-----Original Message----- >From: owner-freebsd-questions@FreeBSD.ORG >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of >Erik Trulsson >On Sun, Jul 01, 2001 at 09:39:08PM +1000, Brandon Peyton wrote: >> Hello, >> >> I need some help here. Obviously I've got a problem as I >can hardly get >> anything to work now that my / is full. >> >> I cannot afford to reformat as this is runs my >mailserver/dns/webserver/etc. >> My issue comes down to how can I create more room in my >root directory. Its >> clear I made a fatal mistake by only allowing 50M. >> > >50M should be enough. You should try to find out what is using all >that space. Then move some of it to /usr and make a symlink to it. > Can't agree with that more... ran into a similar circumstance with heavy usage server filling up a small VAR partition... had to symlink the entire log tree from var over to usr/var... system and progs don't know the difference, and streamlined var partition back to <5% find out what is causing the problem, drop to single user mode, move the problem files or directories to a new location (USR is usually obese enough) and symlink back to the original location, then run up the system again. single user mode may not be required is you aren't working with hot files like qmail directories, logs, or other easily corruptible material. Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 14:50:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pltn13.pbi.net (mta8.pltn13.pbi.net [64.164.98.22]) by hub.freebsd.org (Postfix) with ESMTP id 1315237B403 for ; Sun, 1 Jul 2001 14:49:56 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from pacbell.net ([64.166.87.247]) by mta8.pltn13.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0GFT00CQVDYLOA@mta8.pltn13.pbi.net> for questions@freebsd.org; Sun, 01 Jul 2001 14:49:34 -0700 (PDT) Date: Sun, 01 Jul 2001 14:49:18 -0700 From: W Gerald Hicks Subject: Re: nice console To: Chris Moline Cc: questions@freebsd.org Message-id: <3B3F9ADE.12352F4B@pacbell.net> Organization: Cisco Systems, Inc. MIME-version: 1.0 X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 sun4u) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT X-Accept-Language: en References: <20010701090728.A37765@h24-67-61-12.lb.shawcable.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 Chris Moline wrote: > > On Thu, Jun 28, 2001 at 06:32:07AM +0300, A. Tatsyuk wrote: > > Using Linux Mandrake 8.0 (based on 2.4.3 kernel) I was pleasured with its > > console: soft scrolling, nice font, 100x37, colorized output. Is it possible > > to have the same on FreeBSD 4.2? > For nicer fonts and a different screen sizes see man vidcontrol. There's also a > couple of entries on this in the freebsd diary at > freebsddiary.org/console-fonts.php. I don't know what soft scrolling is but > colorized output depends on the application. Unless they're in graphics mode the only way soft-scrolling could be done would be through a groady hack of manipulating the graphics adapter registers directly. I once wrote a "sideways scroll" routine using this technique; I hope something like that _never_ makes it into our console driver. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 14:53:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.allyster.com (fw.allyster.com [194.202.29.33]) by hub.freebsd.org (Postfix) with SMTP id 0AC0937B401 for ; Sun, 1 Jul 2001 14:53:48 -0700 (PDT) (envelope-from jslivko@jslivko.org) Received: (qmail 25514 invoked from network); 1 Jul 2001 21:55:54 -0000 Received: from mail.allyster.com (jslivko@194.202.29.35) by mail.allyster.com with SMTP; 1 Jul 2001 21:55:54 -0000 Date: Sun, 1 Jul 2001 22:55:54 +0100 (BST) From: "Jonathan M. Slivko" X-Sender: jslivko@localhost.localdomain To: W Gerald Hicks Cc: Chris Moline , questions@freebsd.org Subject: Re: nice console In-Reply-To: <3B3F9ADE.12352F4B@pacbell.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 In X, you can side scroll, it just moves to a new desktop. -- Jonathan \|||/ (o o) /-----------------------------ooO-(_)-Ooo----------------------------\ | Jonathan M. Slivko E-Mail: jslivko@jslivko.org | | IRC Nick: optix` Backup: js43064n@pace.edu | | AIM/AOL: JMSNY2001 Web : http://www.jslivko.org | |--------------------------------------------------------------------| | "History teaches us that days like this are best spent in bed" | \--------------------------------------------------------------------/ On Sun, 1 Jul 2001, W Gerald Hicks wrote: > Chris Moline wrote: > > > > On Thu, Jun 28, 2001 at 06:32:07AM +0300, A. Tatsyuk wrote: > > > Using Linux Mandrake 8.0 (based on 2.4.3 kernel) I was pleasured with its > > > console: soft scrolling, nice font, 100x37, colorized output. Is it possible > > > to have the same on FreeBSD 4.2? > > For nicer fonts and a different screen sizes see man vidcontrol. There's also a > > couple of entries on this in the freebsd diary at > > freebsddiary.org/console-fonts.php. I don't know what soft scrolling is but > > colorized output depends on the application. > > Unless they're in graphics mode the only way soft-scrolling could be > done would be through a groady hack of manipulating the graphics adapter > registers directly. > > I once wrote a "sideways scroll" routine using this technique; I hope > something like that _never_ makes it into our console driver. ;-) > > 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 Jul 1 14:58: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-9.dsl.lsan03.pacbell.net [64.165.226.9]) by hub.freebsd.org (Postfix) with ESMTP id EF26637B403 for ; Sun, 1 Jul 2001 14:58:03 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 9489D66B23; Sun, 1 Jul 2001 14:58:03 -0700 (PDT) Date: Sun, 1 Jul 2001 14:58:03 -0700 From: Kris Kennaway To: Luca Hall Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 4.2-RELEASE Fatal Trap 12 at boot Message-ID: <20010701145803.A85193@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="+QahgC5+KEYLbs62" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from luca_hall@hotmail.com on Sun, Jul 01, 2001 at 05:36:28PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Can you try 4.3-RELEASE? Kris --+QahgC5+KEYLbs62 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 iD8DBQE7P5zqWry0BWjoQKURAuuIAKCjokDdig8BnqO8b8z8efm2KzLPmACeJjVf AchAhAt4c0KcDzQQFU+tloU= =OkZ8 -----END PGP SIGNATURE----- --+QahgC5+KEYLbs62-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 14:59:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailgw3a.lmco.com (mailgw3a.lmco.com [192.35.35.24]) by hub.freebsd.org (Postfix) with ESMTP id 7DA0537B403 for ; Sun, 1 Jul 2001 14:59:19 -0700 (PDT) (envelope-from leo.s.boegly@lmco.com) Received: from emss04g01.ems.lmco.com ([166.17.13.122]) by mailgw3a.lmco.com (8.8.8/8.8.8) with ESMTP id RAA25834 for ; Sun, 1 Jul 2001 17:59:13 -0400 (EDT) Received: from CONVERSION-DAEMON by lmco.com (PMDF V5.2-32 #38890) id <0GFT00P01EEO1Y@lmco.com> for FreeBSD-questions@freebsd.org; Sun, 1 Jul 2001 17:59:12 -0400 (EDT) Received: from serling.motown.lmco.com ([129.204.6.42]) by lmco.com (PMDF V5.2-32 #38890) with ESMTP id <0GFT00FGMEENF0@lmco.com> for FreeBSD-questions@freebsd.org; Sun, 01 Jul 2001 17:59:11 -0400 (EDT) Received: from lmco.com (Maryann's-Macintosh.motown.lmco.com [129.204.63.36]) by serling.motown.lmco.com (8.9.1a/8.9.1) with ESMTP id RAA02806 for ; Sun, 01 Jul 2001 17:59:11 -0400 (EDT) Date: Sun, 01 Jul 2001 17:49:53 -0400 From: "Leo S. Boegly" Subject: Print Filter for HP Laserjet 4L To: FreeBSD Message-id: <3B3F9B00.72D5B55D@lmco.com> MIME-version: 1.0 X-Mailer: Mozilla 4.77 (Macintosh; U; PPC) Content-type: text/plain; x-mac-creator=4D4F5353; x-mac-type=54455854; charset=us-ascii Content-transfer-encoding: 7BIT X-Accept-Language: en Sender: owner-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 FreeBSD world! I recently installed FreeBSD 4.2 on a new computer that I assembled. I'm having some trouble getting correct output on my old HP Laser Jet 4L. I'm fairly certain that my printer filter is not doing the job. I've done alot of tweaking but with limited results. If someone out their could point me to some detailed info on print filters, it would br greatly appreciated. Thanks, Leo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 15: 8: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from h24-67-61-12.lb.shawcable.net (h24-67-61-12.lb.shawcable.net [24.67.61.12]) by hub.freebsd.org (Postfix) with ESMTP id 9221F37B401 for ; Sun, 1 Jul 2001 15:08:00 -0700 (PDT) (envelope-from chris@home.com) Received: by h24-67-61-12.lb.shawcable.net (Postfix, from userid 1002) id B50F766B013; Sun, 1 Jul 2001 15:59:54 -0600 (MDT) Date: Sun, 1 Jul 2001 15:59:54 -0600 From: Chris Moline To: questions@freebsd.org Subject: Re: TCP windows size Message-ID: <20010701155954.A38682@h24-67-61-12.lb.shawcable.net> References: <3B38AA3B.FC131E95@i-clue.de> <200106281552.f5SFq0c24508@ptavv.es.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200106281552.f5SFq0c24508@ptavv.es.net>; from oberman@es.net on Thu, Jun 28, 2001 at 08:52:00AM -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 Thu, Jun 28, 2001 at 08:52:00AM -0700, Kevin Oberman wrote: > Bandwidth = window size / round trip time. This is a maximum bandwidth > regardless of other issues such as loss and congestion. Bandwidth is > in bits/sec, window size is in bits (not bytes!) and RTT is in > seconds. Since I almost always run on a fast link (2 to 10 Mbps), I > always run my max window at 64K bytes. Have I done my calculations right?? (64 * 1024) = 65536 bytes (65536 * 8) = 524288 bits After trying the above I get no buffer space availble errors. After a lot of trial and error i found the biggest value I can give without running out of buffer space is in between 233000 and 235000. Can I increase the buffer space?? Would this be a good idea?? Is it better to give a number that is a power of two?? Chris Moline To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 15:15:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail6.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by hub.freebsd.org (Postfix) with SMTP id C071737B403 for ; Sun, 1 Jul 2001 15:15:42 -0700 (PDT) (envelope-from earth@erowid.org) Received: (qmail 12107 invoked from network); 1 Jul 2001 22:15:40 -0000 Received: from unknown (HELO fungus) ([64.81.49.77]) (envelope-sender ) by mail6.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 1 Jul 2001 22:15:40 -0000 From: "earth" To: "freebsd-questions@FreeBSD.org" Date: Sun, 01 Jul 2001 15:16:29 -0700 Reply-To: "earth" X-Mailer: PMMail 2000 Professional (2.20.2100) For Windows 2000 (5.0.2195;1) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: upgrading kernel 4.2 => 4.3 Message-Id: <20010701221542.C071737B403@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 problem with kernel compile with "mlfk_ipl.c" I have been beating my head against an attempt to upgrade my kernel from 4.2 to 4.3 for a week now and I'm pretty much stuck. I am a total newbie at this, unfortunately. I used the standard-supfile from the freebsd site and did a cvsup standard-supfile in the /usr/src/ tree. Everything appears to work. I ran a 'make world', which claimed to finish properly. This did not create or install a kernel, that i could find. I then followed the descriptions at: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-building.html both of them end with the same errors. make depend, make, and make buildkernel all die with: ===> ipfilter @ -> /usr/src/sys machine -> /usr/src/sys/i386/include make: don't know how to make mlfk_ipl.c. Stop *** Error code 2 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/obj/usr/src/sys/GENERIC. *** Error code 1 I'm trying to build a GENERIC kernel. I have no idea what to do. earth earth@erowid.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 15:19:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kineo.bowdoin.edu (kineo.bowdoin.edu [139.140.14.35]) by hub.freebsd.org (Postfix) with ESMTP id 0C08537B403 for ; Sun, 1 Jul 2001 15:19:33 -0700 (PDT) (envelope-from mcowger@bowdoin.edu) Received: from bowdoin.edu ([127.0.0.1]) by kineo.bowdoin.edu (Netscape Messaging Server 4.15) with ESMTP id GFTFCE00.QPW; Sun, 1 Jul 2001 18:19:26 -0400 From: "Matthew K. Cowger" To: tyler spivey Cc: freebsd-questions@freebsd.org Message-ID: <38285438338b.38338b382854@bowdoin.edu> Date: Sun, 01 Jul 2001 18:19:26 -0400 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: Re: install over nfs X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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 procedure is in the handbook. ----- Original Message ----- From: tyler spivey Date: Sunday, July 1, 2001 1:27 pm Subject: install over nfs > how do i do it? this box acts as a nfs server. > [cc me since im not on list too much traffic] > > 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 Jul 1 15:27:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from moutvdom01.kundenserver.de (moutvdom01.kundenserver.de [195.20.224.200]) by hub.freebsd.org (Postfix) with ESMTP id 8865137B401 for ; Sun, 1 Jul 2001 15:27:11 -0700 (PDT) (envelope-from m.schmitt@tarsius.org) Received: from [195.20.224.220] (helo=mrvdom04.kundenserver.de) by moutvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 15GpgM-0004QR-00 for freebsd-questions@freebsd.org; Mon, 2 Jul 2001 00:27:10 +0200 Received: from dip-01-091-1.on-line.de ([195.64.97.91] helo=win2k) by mrvdom04.kundenserver.de with smtp (Exim 2.12 #2) id 15GpfY-0004E9-00 for freebsd-questions@freebsd.org; Mon, 2 Jul 2001 00:26:20 +0200 From: "Moritz Schmitt" To: Subject: samba-2.2.0a.tgz for 4.2-RELEASE Date: Mon, 2 Jul 2001 00:22:00 +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.2910.0) Importance: Normal 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 Hello, why isn't there the samba-2.2.0a.tgz package for 4.2-RELEASE on the FreeBSD ftp machine? The package search engine finds it but it's a dead link. I only can find the samba-2.0.7.tgz package... -Moritz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 15:46:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web14703.mail.yahoo.com (web14703.mail.yahoo.com [216.136.224.120]) by hub.freebsd.org (Postfix) with SMTP id C973637B407 for ; Sun, 1 Jul 2001 15:46:14 -0700 (PDT) (envelope-from vassd2000@yahoo.com) Message-ID: <20010701224614.55902.qmail@web14703.mail.yahoo.com> Received: from [195.170.15.61] by web14703.mail.yahoo.com; Sun, 01 Jul 2001 15:46:14 PDT Date: Sun, 1 Jul 2001 15:46:14 -0700 (PDT) From: vass D Subject: Re: upgrade - newbie To: Alfatrion , questions@FreeBSD.ORG, cynic@mail.cz In-Reply-To: <00df01c10230$05627970$231fa8c0@dekruijff.nl> 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 + Cynic -- thanx for trying to help men. as u said the cd is not burnt the right way. all i get in ls is 4.3-install.iso. it should burn the contents not the file as i was told... i'll use that file and try to create a proper image... thanx again for your help. __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Sun Jul 1 15:47:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hawk.mail.pas.earthlink.net (hawk.mail.pas.earthlink.net [207.217.120.22]) by hub.freebsd.org (Postfix) with ESMTP id 9662B37B403 for ; Sun, 1 Jul 2001 15:47:53 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.247.143.73.Dial1.SanJose1.Level3.net [209.247.143.73]) by hawk.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id PAA03919; Sun, 1 Jul 2001 15:47:40 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f61MlXw11163; Sun, 1 Jul 2001 15:47:33 -0700 (PDT) (envelope-from cjc) Date: Sun, 1 Jul 2001 15:47:33 -0700 From: "Crist J. Clark" To: earth Cc: "freebsd-questions@FreeBSD.org" Subject: Re: upgrading kernel 4.2 => 4.3 Message-ID: <20010701154733.I296@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20010701221542.C071737B403@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: <20010701221542.C071737B403@hub.freebsd.org>; from earth@erowid.org on Sun, Jul 01, 2001 at 03:16:29PM -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 Sun, Jul 01, 2001 at 03:16:29PM -0700, earth wrote: > problem with kernel compile with "mlfk_ipl.c" > > I have been beating my head against an attempt to upgrade my > kernel from 4.2 to 4.3 for a week now and I'm pretty much stuck. I > am a total newbie at this, unfortunately. > > I used the standard-supfile from the freebsd site and did a > cvsup standard-supfile in the /usr/src/ tree. Everything appears > to work. [snip] > ===> ipfilter > @ -> /usr/src/sys > machine -> /usr/src/sys/i386/include > make: don't know how to make mlfk_ipl.c. Stop > *** Error code 2 > > Stop in /usr/src/sys/modules. > *** Error code 1 > > Stop in /usr/obj/usr/src/sys/GENERIC. > *** Error code 1 You still have an outdated file in /usr/src/sys/modules/ipfilter. Update the Makefile in that directory. What does, $ fgrep FreeBSD: /usr/src/sys/modules/ipfilter/Makefile Give? -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 15:50:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from Server3.1bigred.com (server3.1bigred.com [206.239.81.4]) by hub.freebsd.org (Postfix) with ESMTP id 94ECB37B401 for ; Sun, 1 Jul 2001 15:50:49 -0700 (PDT) (envelope-from varian@1bigred.com) Received: from xanthium (unverified [203.166.27.177]) by Server3.1bigred.com (Vircom SMTPRS 4.6.189) with ESMTP id ; Sun, 1 Jul 2001 18:52:36 -0400 From: "Brandon Peyton" To: "Dru" Cc: Subject: RE: Change disk size.. Date: Mon, 2 Jul 2001 08:54:45 +1000 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 In-Reply-To: <20010701135943.H28633-100000@x1-6-00-50-ba-de-36-33.kico1.on.home.com> 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 Dru, Thanks for that. It seems the culprit is ssh. sshcrypt and sshutil and sshproto are taking a good 15M. Do you know if these are nessesary to run ssh properly? Last thing I need is to mess ssh up as I can only access the box via ssh. There's hardly anything in my /tmp. Thoughts? -----Original Message----- From: Dru [mailto:genisis@istar.ca] Sent: Monday, July 02, 2001 4:04 AM To: Brandon Peyton Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Change disk size.. On Sun, 1 Jul 2001, Brandon Peyton wrote: > Hello, > > I need some help here. Obviously I've got a problem as I can hardly get > anything to work now that my / is full. > > I cannot afford to reformat as this is runs my mailserver/dns/webserver/etc. > My issue comes down to how can I create more room in my root directory. Its > clear I made a fatal mistake by only allowing 50M. > > What I am trying to figure out is how to add capacity to / without loosing > my files. I would like to simply reformat and change it which would take a > matter of minutes but I cannot. I would like to have at least 500M or a gig > as my /. > > What do you think? What is the best way to do this without loosing data. (I > do not want to use any kind of partition magic programs as I have had > nothing but failure from them). > > Thanks > brandon > > Filesystem Size Used Avail Capacity Mounted on > /dev/ad0s1a 48M 47M -2.2M 105% / > /dev/ad0s1f 5.7G 408M 4.8G 8% /usr > /dev/ad0s1e 19M 3.2M 15M 18% /var > procfs 4.0K 4.0K 0B 100% /proc Hi Brandon, Your best bet would be to figure out what is filling up root. The most likely culprits are /root or /tmp and du -h /root du -h /tmp will let you know if this is the case or not. If the culprit is /root, get rid of what you don't need and don't surf, etc. as the superuser. If it's /tmp, use MFS instead. AFAIK, Partition Magic will see your FreeBSD partitions but won't let you resize them. Dru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 15:55:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-9.dsl.lsan03.pacbell.net [64.165.226.9]) by hub.freebsd.org (Postfix) with ESMTP id 6CCCF37B401 for ; Sun, 1 Jul 2001 15:55:30 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 03685678A8; Sun, 1 Jul 2001 15:55:29 -0700 (PDT) Date: Sun, 1 Jul 2001 15:55:29 -0700 From: Kris Kennaway To: Moritz Schmitt Cc: freebsd-questions@FreeBSD.ORG Subject: Re: samba-2.2.0a.tgz for 4.2-RELEASE Message-ID: <20010701155529.A18871@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="tKW2IUtsqtDRztdT" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from m.schmitt@tarsius.org on Mon, Jul 02, 2001 at 12: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 --tKW2IUtsqtDRztdT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 02, 2001 at 12:22:00AM +0200, Moritz Schmitt wrote: > Hello, >=20 > why isn't there the samba-2.2.0a.tgz package for 4.2-RELEASE on the FreeB= SD > ftp machine? The package search engine finds it but it's a dead link. I o= nly > can find the samba-2.0.7.tgz package... Packages aren't generated for old releases. I think 2.2.0a came out after 4.3-RELEASE, so it should be present in the relevant 4.3-STABLE directory. Kris --tKW2IUtsqtDRztdT 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 iD8DBQE7P6phWry0BWjoQKURAhSpAKC2tKiszOK9z1bLcLjBzLBQ0CvioACgkR8d OuT8nqP7sDxFiHhIuGbtpdM= =0GhK -----END PGP SIGNATURE----- --tKW2IUtsqtDRztdT-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 17:54:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sunny.pacific.net.sg (sunny.pacific.net.sg [203.120.90.127]) by hub.freebsd.org (Postfix) with ESMTP id BD96B37B403 for ; Sun, 1 Jul 2001 17:54:09 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop1.pacific.net.sg (pop1.pacific.net.sg [203.120.90.85]) by sunny.pacific.net.sg with ESMTP id f6200Mr28403; Mon, 2 Jul 2001 08:00:22 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop1.pacific.net.sg with ESMTP id IAA25668; Mon, 2 Jul 2001 08:54:02 +0800 (SGT) Message-ID: <3B3FC775.F9B111CD@pacific.net.sg> Date: Mon, 02 Jul 2001 08:59:33 +0800 From: Kelvin Ng Chee Hoong X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: zh-TW,en MIME-Version: 1.0 To: so@server.i-clue.de Cc: "freebsd-questions@FreeBSD.ORG" Subject: Re: Restart /etc/rc.conf References: <3B3C2364.B5A4445F@pacific.net.sg> <3B3C53C6.A9B69E44@i-clue.de> 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 Christoph ; I have disabled the SMTP deamon in /etc/rc.conf . How do I manually refresh the rc.conf to immediate update the change of config without rebooting the system ? Christoph Sold wrote: > Kelvin Ng Chee Hoong schrieb: > > > > Hi ; > > I've changed or modified the content of config in /etc/rc.conf . How > > do reinitialize the configuration without reboot the system ? Please > > advise . > > Unfortunately, you had not mentioned which parameters you did change. > Not knowing what to adjust leaves only reboot as easiy answer. Posting > your changes will allow to detect which part of the system was tweaked. > Usually there will be no need for reboot if you can tell what you have > changed in rc.conf. > > HTH > -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 18: 7: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from k0r3.reflektor.cz (k0r3.reflektor.cz [212.24.129.54]) by hub.freebsd.org (Postfix) with SMTP id 88C4037B401 for ; Sun, 1 Jul 2001 18:07:00 -0700 (PDT) (envelope-from cynic@mail.cz) Received: (qmail 10910 invoked by uid 202); 2 Jul 2001 01:06:58 -0000 Received: from unknown (HELO zvahlav.mail.cz) (212.24.143.100) by k0r3.reflektor.cz with SMTP; 2 Jul 2001 01:06:58 -0000 Message-Id: <5.1.0.14.2.20010702022644.02037778@mail.cz> X-Sender: cynic@mail.cz X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Mon, 02 Jul 2001 03:15:14 +0200 To: freebsd-questions@freebsd.org From: Cynic Subject: question on ports 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 there, I just tried to install samba with # make PREFIX=/usr/local/samba install and it failed with Installing SWAT in /usr/local/samba/share/swat Installing the Samba Web Administration Tool mkdir: /usr/local/samba/share: No such file or directory Failed to make directory /usr/local/samba/share/swat, does root have privileges? I then went, and (per suggestion) tried # make clean # make PREFIX=/tmp/samba install and it completed successfully. Seems like the ports framework is subject to some restrictions even when used by root. What are these restrictions, and how are they achieved? I grepped around the handbook, and the porter's handbook, but didn't spot anything related. TIA cynic@mail.cz ------------- And the eyes of them both were opened and they saw that their files were world readable and writable, so they chmoded 600 their files. - Book of Installation chapt 3 sec 7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 18:11:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.allyster.com (fw.allyster.com [194.202.29.33]) by hub.freebsd.org (Postfix) with SMTP id 5743337B403 for ; Sun, 1 Jul 2001 18:11:06 -0700 (PDT) (envelope-from jslivko@jslivko.org) Received: (qmail 26380 invoked from network); 2 Jul 2001 01:13:14 -0000 Received: from mail.allyster.com (jslivko@194.202.29.35) by mail.allyster.com with SMTP; 2 Jul 2001 01:13:14 -0000 Date: Mon, 2 Jul 2001 02:13:14 +0100 (BST) From: "Jonathan M. Slivko" X-Sender: jslivko@localhost.localdomain To: Kelvin Ng Chee Hoong Cc: so@server.i-clue.de, "freebsd-questions@FreeBSD.ORG" Subject: Re: Restart /etc/rc.conf In-Reply-To: <3B3FC775.F9B111CD@pacific.net.sg> 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 ps -aux | grep sendmail kill -9 done. \|||/ (o o) /-----------------------------ooO-(_)-Ooo----------------------------\ | Jonathan M. Slivko E-Mail: jslivko@jslivko.org | | IRC Nick: optix` Backup: js43064n@pace.edu | | AIM/AOL: JMSNY2001 Web : http://www.jslivko.org | |--------------------------------------------------------------------| | "History teaches us that days like this are best spent in bed" | \--------------------------------------------------------------------/ On Mon, 2 Jul 2001, Kelvin Ng Chee Hoong wrote: > Hi Christoph ; > I have disabled the SMTP deamon in /etc/rc.conf . How do I manually refresh > the rc.conf to immediate update the change of config without rebooting the > system ? > > Christoph Sold wrote: > > > Kelvin Ng Chee Hoong schrieb: > > > > > > Hi ; > > > I've changed or modified the content of config in /etc/rc.conf . How > > > do reinitialize the configuration without reboot the system ? Please > > > advise . > > > > Unfortunately, you had not mentioned which parameters you did change. > > Not knowing what to adjust leaves only reboot as easiy answer. Posting > > your changes will allow to detect which part of the system was tweaked. > > Usually there will be no need for reboot if you can tell what you have > > changed in rc.conf. > > > > HTH > > -Christoph Sold > > > 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 Jul 1 18:16:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from falcon.mail.pas.earthlink.net (falcon.mail.pas.earthlink.net [207.217.120.74]) by hub.freebsd.org (Postfix) with ESMTP id B226337B401 for ; Sun, 1 Jul 2001 18:16:24 -0700 (PDT) (envelope-from dleimbac@earthlink.net) Received: from mutt.home.net (1Cust208.tnt1.starkville.ms.da.uu.net [63.30.107.208]) by falcon.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id SAA16227; Sun, 1 Jul 2001 18:16:22 -0700 (PDT) Received: (from dave@localhost) by mutt.home.net (8.11.3/8.11.3) id f620gLZ00526; Sun, 1 Jul 2001 19:42:21 -0500 (CDT) (envelope-from dave) Date: Sun, 1 Jul 2001 19:42:19 -0500 From: David Leimbach To: "Leo S. Boegly" , questions@freebsd.org Subject: Re: Print Filter for HP Laserjet 4L Message-ID: <20010701194219.A459@mutt.home.net> References: <3B3F9B00.72D5B55D@lmco.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B3F9B00.72D5B55D@lmco.com>; from leo.s.boegly@lmco.com on Sun, Jul 01, 2001 at 05:49:53PM -0400 X-Operating-System: FreeBSD mutt.home.net 4.3-RELEASE FreeBSD 4.3-RELEASE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Try apsfilter.... I am fairly sure its included with the ISO image or you could just install it from ports. Works great on my laser printer. Dave On Sun, Jul 01, 2001 at 05:49:53PM -0400, Leo S. Boegly wrote: > Hello FreeBSD world! > > I recently installed FreeBSD 4.2 on a new computer that I assembled. I'm > having some trouble getting correct output on my old HP Laser Jet 4L. > I'm fairly certain that my printer filter is not doing the job. I've > done alot of tweaking but with limited results. If someone out their > could point me to some detailed info on print filters, it would br > greatly appreciated. > > Thanks, > Leo > > > 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 Jul 1 18:26:35 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailhub.cns.ksu.edu (grunt.ksu.ksu.edu [129.130.12.17]) by hub.freebsd.org (Postfix) with ESMTP id 53D4337B403 for ; Sun, 1 Jul 2001 18:26:33 -0700 (PDT) (envelope-from jdt2101@ksu.edu) Received: from unix1 (jdt2101@unix1.cc.ksu.edu [129.130.12.3]) by mailhub.cns.ksu.edu (8.9.1/8.9.1/mailhub+tar) with SMTP id UAA10666 for ; Sun, 1 Jul 2001 20:26:32 -0500 (CDT) Received: from localhost by unix1 (SMI-8.6/1.34) id UAA26300; Sun, 1 Jul 2001 20:26:32 -0500 Date: Sun, 1 Jul 2001 20:26:32 -0500 (CDT) From: Josh Thomas X-Sender: jdt2101@unix1.cc.ksu.edu To: freebsd-questions@freebsd.org Subject: nfs mount crossing filesystem boundaries? 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've got a few filesystems on the nfs server, and I've looked at both the mailing list archives and the exports manpage, and I've found no solution. I was under the impression that linux nfs has this functionality. Am I missing something? Filesystems look like this: /usr/www /usr/www/datas /usr/www/numre Should I just stick with three export entries? Additionally, does the -alldirs argument require that the exported filesystem of that entry be the root of the actual filesystem? ie, I couldn't export /usr/www/numre/blank -alldirs etc etc because it isn't a mount point? Please cc any replies, as I'm not on the mailing list. -Josh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 18:37:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from snfc21.pbi.net (mta5.snfc21.pbi.net [206.13.28.241]) by hub.freebsd.org (Postfix) with ESMTP id B635837B401 for ; Sun, 1 Jul 2001 18:37:46 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from pacbell.net ([64.166.87.247]) by mta5.snfc21.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0GFT000VOOIXTI@mta5.snfc21.pbi.net> for freebsd-questions@freebsd.org; Sun, 01 Jul 2001 18:37:45 -0700 (PDT) Date: Sun, 01 Jul 2001 18:37:31 -0700 From: W Gerald Hicks Subject: Re: samba-2.2.0a.tgz for 4.2-RELEASE To: Moritz Schmitt Cc: freebsd-questions@freebsd.org Message-id: <3B3FD05B.77B3B63A@pacbell.net> Organization: Cisco Systems, Inc. MIME-version: 1.0 X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 sun4u) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT X-Accept-Language: en References: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Moritz Schmitt wrote: > > Hello, > > why isn't there the samba-2.2.0a.tgz package for 4.2-RELEASE on the FreeBSD > ftp machine? The package search engine finds it but it's a dead link. I only > can find the samba-2.0.7.tgz package... > > -Moritz > Hi Moritz, Why not just make the package yourself from ports? I actually prefer to build everything we use here from source whenever possible. As a bonus, there are times when you can actually get more functionality this way. It _is_ an open source revolution after all... -- W Gerald Hicks gehicks@pacbell.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 19:12:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hall.mail.mindspring.net (hall.mail.mindspring.net [207.69.200.60]) by hub.freebsd.org (Postfix) with ESMTP id 12A2037B401 for ; Sun, 1 Jul 2001 19:12:06 -0700 (PDT) (envelope-from timothyr@timothyr.com) Received: from timothyr.net (user-vcaumu7.dsl.mindspring.com [216.175.91.199]) by hall.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id WAA26671; Sun, 1 Jul 2001 22:12:04 -0400 (EDT) Received: from sloth (scarlet [10.0.0.2]) by timothyr.net (8.11.3/8.11.1) with ESMTP id f622C2n33876; Sun, 1 Jul 2001 19:12:02 -0700 (PDT) (envelope-from timothyr@timothyr.com) From: "Timothy L. Robertson" To: "Luca Hall" , Subject: RE: 4.2-RELEASE Fatal Trap 12 at boot Date: Sun, 1 Jul 2001 19:12:01 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable 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 V5.00.2314.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 I had similar problems when I cvsuped RELENG_4 on Friday. I would get a = very similar crash at the same point in the boot process. I had to boot = off kernel.old (which I immediately copied to kernel.works so that when = I did another build it would not get clobbered, BTW.) I dropped down to = RELENG_4_3, and had a problem with the build at ipfilter. I don't use = ipfilter, so I just removed it from the Makefile. I finished the build = and things have been fine since. I has been a weekend, however, when my = FreeBSD system has required much more attention than I have been = accustomed to. -Tim timothyr@timothyr.com > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Luca Hall > Sent: Sunday, July 01, 2001 2:36 PM > To: freebsd-questions@FreeBSD.ORG > Subject: 4.2-RELEASE Fatal Trap 12 at boot >=20 >=20 > Ive currently installed 4.2-RELEASE upgraded from 4.0-RELEASE.=20 > 4.0 had no=20 > problems what so ever, almost through boot i get this > plip0: on ppbus0 > lpt0: on ppbus0 > lpt0: < interrupt-driven port> > ppi0: on ppbus0 > Fatal trap 12: page fault while in kernel mode > Fault virtual address =3D 0x1 > Fault code =3D supervisor read, page not present > Instruction pointer =3D 0x8:0xc019fe8f > Satck pointer =3D 0x10: 0xc0447ec0 > Frame pointer =3D 0x10: 0xc0447ed0 > Code segment =3D base 0x0, limit 0xfffff,type 0x1b > =3D DPI 0 , pres 1, def32 1, gran 1 > processor eflags =3D interrupt enabled ,resume , IOPL =3D 0 > current process =3D 0 (swapper) > interrupt mask =3D net tty bio cam > trap number =3D 12 > panic: page fault > syncing disk... > done > Uptime 0s >=20 > This is all the info i can get, I had to hand copy it sorry for = spelling.=20 > Any suggestion would be helpful as i dont have a clue. > Ive searched all previous lists and have found similar problems but = none=20 > dealing with boot. > Thanks Alot > Luca > _________________________________________________________________ > Get your FREE download of MSN Explorer at http://explorer.msn.com >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message >=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 19:59:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from scaup.mail.pas.earthlink.net (scaup.mail.pas.earthlink.net [207.217.121.49]) by hub.freebsd.org (Postfix) with ESMTP id 410E937B401 for ; Sun, 1 Jul 2001 19:59:48 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.135.39.Dial1.SanJose1.Level3.net [209.245.135.39]) by scaup.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id TAA08908; Sun, 1 Jul 2001 19:59:30 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f622xRh11734; Sun, 1 Jul 2001 19:59:27 -0700 (PDT) (envelope-from cjc) Date: Sun, 1 Jul 2001 19:59:27 -0700 From: "Crist J. Clark" To: "Jonathan M. Slivko" Cc: Kelvin Ng Chee Hoong , so@server.i-clue.de, "freebsd-questions@FreeBSD.ORG" Subject: Re: Restart /etc/rc.conf Message-ID: <20010701195927.K296@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <3B3FC775.F9B111CD@pacific.net.sg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from jslivko@jslivko.org on Mon, Jul 02, 2001 at 02:13:14AM +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, Jul 02, 2001 at 02:13:14AM +0100, Jonathan M. Slivko wrote: > ps -aux | grep sendmail > kill -9 > done. Don't use signal 9 (SIGKILL) unless you have to. It does not allow a program to clean up or do other things before exiting. Use the default SIGTERM. To properly shutdown sendmail, # kill `head -1 /var/run/sendmail.pid` -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 20: 7: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.mail.pas.earthlink.net (avocet.mail.pas.earthlink.net [207.217.121.50]) by hub.freebsd.org (Postfix) with ESMTP id DCE6D37B405 for ; Sun, 1 Jul 2001 20:07:04 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.135.39.Dial1.SanJose1.Level3.net [209.245.135.39]) by avocet.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id UAA06611; Sun, 1 Jul 2001 20:07:02 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f62371R11775; Sun, 1 Jul 2001 20:07:01 -0700 (PDT) (envelope-from cjc) Date: Sun, 1 Jul 2001 20:07:01 -0700 From: "Crist J. Clark" To: Josh Thomas Cc: freebsd-questions@FreeBSD.ORG Subject: Re: nfs mount crossing filesystem boundaries? Message-ID: <20010701200701.L296@blossom.cjclark.org> Reply-To: cjclark@alum.mit.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 jdt2101@ksu.edu on Sun, Jul 01, 2001 at 08:26:32PM -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, Jul 01, 2001 at 08:26:32PM -0500, Josh Thomas wrote: > I've got a few filesystems on the nfs server, and I've looked at both the > mailing list archives and the exports manpage, and I've found no > solution. I was under the impression that linux nfs has this > functionality. Has what functionality? > Am I missing something? This mail seems to be missing a description of what you wanr to do and what problems you are having doing it. > Filesystems look like this: > > /usr/www > /usr/www/datas > /usr/www/numre > > Should I just stick with three export entries? It depends. You may need more or less. > Additionally, does the -alldirs argument require that the exported > filesystem of that entry be the root of the actual filesystem? In exports(5), The second is to specify the pathname of the root of the filesys- tem followed by the -alldirs flag; this form allows the host(s) to mount at any point within the filesystem -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 20:33:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from edwin.mounet.com (edwin.mounet.com [216.145.76.8]) by hub.freebsd.org (Postfix) with SMTP id 43BB737B403 for ; Sun, 1 Jul 2001 20:33:16 -0700 (PDT) (envelope-from hornback@wireco.net) Received: (qmail 3792 invoked by uid 0); 2 Jul 2001 03:31:03 -0000 Received: from unknown (HELO tomcat) (216.145.86.4) by mounet.com with SMTP; 2 Jul 2001 03:31:03 -0000 From: "Andrew C. Hornback" To: "FreeBSD Questions" Subject: Star Office on 4.3-Release CDs? Date: Sun, 1 Jul 2001 23:28:55 -0400 Message-ID: <007001c102a7$1f5f0740$0e00000a@tomcat> 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 8.5, Build 4.71.2173.0 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 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 Hey everyone, Umm, just for a sanity check here, does anyone know where (or rather if) Star Office is on the 4.3-Release CD (set of 4) ? I've been searching them, trying to find it, and I can't say that I've been successful... --- Andy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 20:40:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from happy.cow.org (happy.cow.org [198.88.20.7]) by hub.freebsd.org (Postfix) with ESMTP id A259037B406 for ; Sun, 1 Jul 2001 20:40:14 -0700 (PDT) (envelope-from ravi@happy.cow.org) Received: (from ravi@localhost) by happy.cow.org (8.11.3/8.11.3) id f623d0W00142 for freebsd-questions@freebsd.org; Sun, 1 Jul 2001 23:39:00 -0400 (EDT) Date: Sun, 1 Jul 2001 23:39:00 -0400 From: ravi pina To: freebsd-questions@freebsd.org Subject: Mylex 250 and installation Message-ID: <20010701233900.D26816@happy.cow.org> Reply-To: ravi@cow.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.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 hi. has anyone successfully installed and then rebooted with no problem using a Mylex 250 with a raid 1 configuration or any config at all? 4.3R appears to have broken the Mylex driver but i can install 4.2R fine but when i boot i get the prompt to it F# to select a boot disk. F1 results in just a beep. any pointers would be fantastic. thanks, -r -- echo "send pgp key" | mail ravi@cow.org ; lynx http://cow.org ; echo "!gc" Why, when I wind up my watch, I start it, but when I wind up a project, I end it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 20:43:55 2001 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 8E5BC37B408 for ; Sun, 1 Jul 2001 20:43:50 -0700 (PDT) (envelope-from oberman@ptavv.es.net) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (8.10.1/8.10.1) with ESMTP id f623hmc30276; Sun, 1 Jul 2001 20:43:48 -0700 (PDT) Message-Id: <200107020343.f623hmc30276@ptavv.es.net> To: Wayne Pascoe Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Problems with X and window manager In-reply-to: Your message of "01 Jul 2001 13:29:01 BST." <86pubk4yuq.fsf@pan.home.penguinpowered.org.uk> Date: Sun, 01 Jul 2001 20:43:48 -0700 From: "Kevin Oberman" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Wayne, This may well be of no help in resolving your problems, but maybe? It looks to me like your .xinitrc is rather needlessly convoluted. I just do: xmodmap ... xset ... exec ssh-agent gnome-session This will also call ssh-askpass and will start the gnome session. I run Enlightenment, so I can't help on any icewm issues. 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 Sun Jul 1 20:48:42 2001 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 0FB3537B406 for ; Sun, 1 Jul 2001 20:48:39 -0700 (PDT) (envelope-from oberman@ptavv.es.net) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (8.10.1/8.10.1) with ESMTP id f623mbc12099; Sun, 1 Jul 2001 20:48:37 -0700 (PDT) Message-Id: <200107020348.f623mbc12099@ptavv.es.net> To: Chris Moline Cc: questions@FreeBSD.ORG Subject: Re: TCP windows size In-reply-to: Your message of "Sun, 01 Jul 2001 15:59:54 MDT." <20010701155954.A38682@h24-67-61-12.lb.shawcable.net> Date: Sun, 01 Jul 2001 20:48:37 -0700 From: "Kevin Oberman" Sender: owner-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, Sorry, I guess I was not completely clear. The use of bits was only for calculating the maximum bandwidth. The sendspace and recvspace values are in bytes. Unless you have a VERY fast connection setting them to 65536 (64 K bytes) should be adequate. Once again, sorry if I confused things. 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 Sun Jul 1 21: 4:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from moutvdom00.kundenserver.de (moutvdom00.kundenserver.de [195.20.224.149]) by hub.freebsd.org (Postfix) with ESMTP id ED73437B403 for ; Sun, 1 Jul 2001 21:04:28 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.204] (helo=mrvdom00.schlund.de) by moutvdom00.kundenserver.de with esmtp (Exim 2.12 #2) id 15Guwk-0001pG-00; Mon, 2 Jul 2001 06:04:26 +0200 Received: from pd9017242.dip.t-dialin.net ([217.1.114.66]) by mrvdom00.schlund.de with esmtp (Exim 2.12 #2) id 15Guwg-0004eD-00; Mon, 2 Jul 2001 06:04:22 +0200 Date: Mon, 2 Jul 2001 06:05:36 +0200 (CEST) From: "Peter Ulrich (Uli) Kruppa" X-X-Sender: To: "Andrew C. Hornback" Cc: FreeBSD Questions Subject: Re: Star Office on 4.3-Release CDs? In-Reply-To: <007001c102a7$1f5f0740$0e00000a@tomcat> 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, 1 Jul 2001, Andrew C. Hornback wrote: > Hey everyone, > > Umm, just for a sanity check here, does anyone know where (or rather if) > Star Office is on the 4.3-Release CD (set of 4) ? It should not be there due to some license-restrictions. Either you get a StarOffice-CD somewhere or you have to download the binaries via ftp. In the last case better use the port /usr/ports/editors/staroffice52 Uli. > > I've been searching them, trying to find it, and I > can't say that I've been successful... > > --- Andy > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > *-------------------------------------------------* | www.pukruppa.de www.2000d.de | | | | Wuppertal - Germany | *-------------------------------------------------* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 21:15: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from snfc21.pbi.net (mta6.snfc21.pbi.net [206.13.28.240]) by hub.freebsd.org (Postfix) with ESMTP id ABB3037B407 for ; Sun, 1 Jul 2001 21:15:06 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from pacbell.net ([64.166.87.247]) by mta6.snfc21.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0GFT00G22VT4LP@mta6.snfc21.pbi.net> for questions@FreeBSD.ORG; Sun, 01 Jul 2001 21:15:05 -0700 (PDT) Date: Sun, 01 Jul 2001 21:14:51 -0700 From: W Gerald Hicks Subject: Re: Star Office on 4.3-Release CDs? To: "Andrew C. Hornback" Cc: FreeBSD Questions Message-id: <3B3FF53B.D6EAC7F5@pacbell.net> Organization: Cisco Systems, Inc. MIME-version: 1.0 X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 sun4u) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT X-Accept-Language: en References: <007001c102a7$1f5f0740$0e00000a@tomcat> Sender: owner-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 C. Hornback" wrote: > > Hey everyone, > > Umm, just for a sanity check here, does anyone know where (or rather if) > Star Office is on the 4.3-Release CD (set of 4) ? > > I've been searching them, trying to find it, and I can't say that I've been > successful... It's not there. Sun's licensing terms won't permit it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 21:35: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sunny.pacific.net.sg (sunny.pacific.net.sg [203.120.90.127]) by hub.freebsd.org (Postfix) with ESMTP id 83D1337B403 for ; Sun, 1 Jul 2001 21:35:06 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop1.pacific.net.sg (pop1.pacific.net.sg [203.120.90.85]) by sunny.pacific.net.sg with ESMTP id f623fDr18835; Mon, 2 Jul 2001 11:41:13 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop1.pacific.net.sg with ESMTP id MAA25473; Mon, 2 Jul 2001 12:34:56 +0800 (SGT) Message-ID: <3B3FFB3B.47CA7BBA@pacific.net.sg> Date: Mon, 02 Jul 2001 12:40:27 +0800 From: Kelvin Ng Chee Hoong X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: zh-TW,en MIME-Version: 1.0 To: cjclark@alum.mit.edu Cc: "Jonathan M. Slivko" , so@server.i-clue.de, "freebsd-questions@FreeBSD.ORG" Subject: Re: Restart /etc/rc.conf References: <3B3FC775.F9B111CD@pacific.net.sg> <20010701195927.K296@blossom.cjclark.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 how about enable or disable inetd ? "Crist J. Clark" wrote: > On Mon, Jul 02, 2001 at 02:13:14AM +0100, Jonathan M. Slivko wrote: > > ps -aux | grep sendmail > > kill -9 > > done. > > Don't use signal 9 (SIGKILL) unless you have to. It does not allow a > program to clean up or do other things before exiting. Use the default > SIGTERM. > > To properly shutdown sendmail, > > # kill `head -1 /var/run/sendmail.pid` > > -- > Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 21:52:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sunny.pacific.net.sg (sunny.pacific.net.sg [203.120.90.127]) by hub.freebsd.org (Postfix) with ESMTP id 0563A37B409 for ; Sun, 1 Jul 2001 21:52:12 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop1.pacific.net.sg (pop1.pacific.net.sg [203.120.90.85]) by sunny.pacific.net.sg with ESMTP id f623wOr24423; Mon, 2 Jul 2001 11:58:24 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop1.pacific.net.sg with ESMTP id MAA08476; Mon, 2 Jul 2001 12:52:09 +0800 (SGT) Message-ID: <3B3FFF45.4F00E9A6@pacific.net.sg> Date: Mon, 02 Jul 2001 12:57:41 +0800 From: Kelvin Ng Chee Hoong X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: zh-TW,en MIME-Version: 1.0 To: so@server.i-clue.de, "freebsd-questions@FreeBSD.ORG" Subject: Re: Restart /etc/rc.conf References: <3B3C2364.B5A4445F@pacific.net.sg> <3B3C53C6.A9B69E44@i-clue.de> <3B3FC775.F9B111CD@pacific.net.sg> 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 enable or disable inetd_enable in rc.conf , then how do I refresh rc.conf ? Kelvin Ng Chee Hoong wrote: > Hi Christoph ; > I have disabled the SMTP deamon in /etc/rc.conf . How do I manually refresh > the rc.conf to immediate update the change of config without rebooting the > system ? > > Christoph Sold wrote: > > > Kelvin Ng Chee Hoong schrieb: > > > > > > Hi ; > > > I've changed or modified the content of config in /etc/rc.conf . How > > > do reinitialize the configuration without reboot the system ? Please > > > advise . > > > > Unfortunately, you had not mentioned which parameters you did change. > > Not knowing what to adjust leaves only reboot as easiy answer. Posting > > your changes will allow to detect which part of the system was tweaked. > > Usually there will be no need for reboot if you can tell what you have > > changed in rc.conf. > > > > HTH > > -Christoph Sold > > 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 Jul 1 21:58: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hawk.mail.pas.earthlink.net (hawk.mail.pas.earthlink.net [207.217.120.22]) by hub.freebsd.org (Postfix) with ESMTP id 1B16237B405 for ; Sun, 1 Jul 2001 21:58:02 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.135.39.Dial1.SanJose1.Level3.net [209.245.135.39]) by hawk.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id VAA09529; Sun, 1 Jul 2001 21:57:54 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f624vpL12254; Sun, 1 Jul 2001 21:57:51 -0700 (PDT) (envelope-from cjc) Date: Sun, 1 Jul 2001 21:57:51 -0700 From: "Crist J. Clark" To: Kelvin Ng Chee Hoong Cc: "Jonathan M. Slivko" , so@server.i-clue.de, "freebsd-questions@FreeBSD.ORG" Subject: Re: Restart /etc/rc.conf Message-ID: <20010701215751.S296@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <3B3FC775.F9B111CD@pacific.net.sg> <20010701195927.K296@blossom.cjclark.org> <3B3FFB3B.47CA7BBA@pacific.net.sg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B3FFB3B.47CA7BBA@pacific.net.sg>; from nchee_hoong@pacific.net.sg on Mon, Jul 02, 2001 at 12:40:27PM +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, Jul 02, 2001 at 12:40:27PM +0800, Kelvin Ng Chee Hoong wrote: > how about enable or disable inetd ? To kill inetd(8), # kill `cat /var/run/inetd.pid` To have it re-read /etc/inetd.conf # kill -HUP `cat /var/run/inetd.pid` To restart it (when there is not one already running), # inetd If you want to automatically read the currently used flags (the default is '-wW'), using /etc/{defaults,}/rc.conf it's a bit more work, # sh # . /etc/defaults/rc.conf # source_rc_confs # inetd ${inetd_flags} Better off just knowing the flags. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 22:17:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id CEB8B37B403 for ; Sun, 1 Jul 2001 22:17:31 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f625HMq68354; Mon, 2 Jul 2001 01:17:22 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 01:17:22 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Subject: XFree86 4.0.3 Install problems 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 just installed 4.3. I installed the following XFree86 packages (vi /stand/sysintall): 4.0.3_3 FontServer-4.0.3 aout-libs-3.3.3 font100dpi-4.0.3 font75dpi-4.0.3 fontDefaultBitmaps-4.0.3 fontEncodings-4.0.3 fontScalable-4.0.3 libraries-4.0.3_1 When running startx I get a long pause, then xauth: timeout in locking authority file /home/jfreeze/.Xauthority xauth: timeout in locking authority file /home/jfreeze/.Xauthority Fatal server error: Cannot open log file "/var/log/XFree86.0.log" ... I am somewhat concerned about he config file, since xf86config did not follow the sequence given in the handbook and it did not link or write XF86Config to /etc. Can anyone help me out here? Thanks ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 22:42:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from xyzzy.intranet.snsonline.net (ssydmasq.btlooksmart.net.au [202.53.63.217]) by hub.freebsd.org (Postfix) with ESMTP id 94BB737B406 for ; Sun, 1 Jul 2001 22:42:17 -0700 (PDT) (envelope-from msergeant@looksmart.net) Received: from xyzzy.intranet.snsonline.net (localhost [127.0.0.1]) by xyzzy.intranet.snsonline.net (8.11.4/8.11.3) with SMTP id f625g4M01933 for ; Mon, 2 Jul 2001 15:42:09 +1000 (EST) (envelope-from msergeant@looksmart.net) Message-Id: <200107020542.f625g4M01933@xyzzy.intranet.snsonline.net> Content-Type: text/plain; charset="iso-8859-1" Content-Disposition: inline Content-Transfer-Encoding: 7bit MIME-Version: 1.0 From: "Mark Sergeant" To: freebsd-questions@freebsd.org Subject: questions mailing list. X-Mailer: Pronto v2.2.5 On freebsd/mysql Date: 02 Jul 2001 00:42:03 EST Reply-To: "Mark Sergeant" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Guys, I don't seem to be getting mail from this list, stable, newbies, isp anymore. Just mobile. Any reason for this ? Cheers, -- Mark Sergeant Unix Systems Administrator Fortune follows... "Really ?? What a coincidence, I'm shallow too!!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 1 23:20: 3 2001 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 6F6AE37B403 for ; Sun, 1 Jul 2001 23:20:00 -0700 (PDT) (envelope-from bzdik@yahoo.com) Message-ID: <20010702062000.29222.qmail@web13601.mail.yahoo.com> Received: from [24.16.193.228] by web13601.mail.yahoo.com; Sun, 01 Jul 2001 23:20:00 PDT Date: Sun, 1 Jul 2001 23:20:00 -0700 (PDT) From: Bzdik BSD Subject: Re: [Fwd: [Fwd: Office XP & Windows XP activation woes]] To: Freebsd Questions In-Reply-To: <20010701004354.B29971@widomaker.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 --- Shannon wrote: ............. > I would like to agree with Ted (I think he said this) that this will > accelerate the drive away from Microsoft, but I think the sheep will > just accept it. Corporte America is scary, the way they think, and > people in general don't seem to see the traps set for them. Yet larger scale StarOffice are getting more frequent: Dept of Defence just announced 25000 installations. __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Sun Jul 1 23:25:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web13606.mail.yahoo.com (web13606.mail.yahoo.com [216.136.175.117]) by hub.freebsd.org (Postfix) with SMTP id D2C6337B405 for ; Sun, 1 Jul 2001 23:25:14 -0700 (PDT) (envelope-from bzdik@yahoo.com) Message-ID: <20010702062514.62040.qmail@web13606.mail.yahoo.com> Received: from [24.16.193.228] by web13606.mail.yahoo.com; Sun, 01 Jul 2001 23:25:14 PDT Date: Sun, 1 Jul 2001 23:25:14 -0700 (PDT) From: Bzdik BSD Subject: RE: [Fwd: [Fwd: Office XP & Windows XP activation woes]] To: Freebsd Questions In-Reply-To: <002801c10212$2a357d60$1401a8c0@tedm.placo.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 --- Ted Mittelstaedt wrote: > It will be interesting to see how long it takes before an illicit > patch > is released on warez to take care of this serialization business. Of > course > Microsoft will move to block that and it's going to create a series > of > moves and counter moves as each side releases the latest crack and > anti-crack. oh, haven't you seen those beautifully published disks with 'official' cracks that go for $1 in Moscow? Nice design... __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Sun Jul 1 23:26:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web13007.mail.yahoo.com (web13007.mail.yahoo.com [216.136.174.17]) by hub.freebsd.org (Postfix) with SMTP id B8D8137B403 for ; Sun, 1 Jul 2001 23:26:15 -0700 (PDT) (envelope-from pepsikid83@yahoo.com) Message-ID: <20010702062615.30680.qmail@web13007.mail.yahoo.com> Received: from [63.57.154.182] by web13007.mail.yahoo.com; Sun, 01 Jul 2001 23:26:15 PDT Date: Sun, 1 Jul 2001 23:26:15 -0700 (PDT) From: shamrock Subject: big problem with booteasy and new dell.. 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 Freebsd guys, I have a bit of a weird problem. A few days ago I got my new dell 8100 series (1.5 Gbs) machine in the mail and I tried to re-partition my hard drive to allow space for me to install freebsd on.. Once I partitioned my drive with partition magic and installed freebsd. I rebooted and I got the prompt (F1 for dos, F2 for freebsd), naturally I wanted to see if I could load freebsd. When I hit F2 all I heard was a beep coming from my internal speaker, and Win2k loads fine. I thought that it could be a bios problem but I toggled with some of the settings and I had no luck. Please if anyone can provide me with some help I will be very happy... Please help, Freebsd Stressor - Zac Speidel __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Mon Jul 2 0: 9:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sunny.pacific.net.sg (sunny.pacific.net.sg [203.120.90.127]) by hub.freebsd.org (Postfix) with ESMTP id E878537B401 for ; Mon, 2 Jul 2001 00:09:20 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop1.pacific.net.sg (pop1.pacific.net.sg [203.120.90.85]) by sunny.pacific.net.sg with ESMTP id f626FXr13339; Mon, 2 Jul 2001 14:15:33 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop1.pacific.net.sg with ESMTP id PAA17569; Mon, 2 Jul 2001 15:09:18 +0800 (SGT) Message-ID: <3B401F6A.EB4DD4BC@pacific.net.sg> Date: Mon, 02 Jul 2001 15:14:50 +0800 From: Kelvin Ng Chee Hoong X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: zh-TW,en MIME-Version: 1.0 To: so@server.i-clue.de Cc: "freebsd-questions@FreeBSD.ORG" Subject: Re: Install IPFW References: <3B3C2FC1.6BD50AA6@pacific.net.sg> <3B3C5307.B4384811@i-clue.de> 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 Christoph ; Thank you very much , It works now !! :-) Christoph Sold wrote: > Kelvin Ng Chee Hoong schrieb: > > > > Hi ; > > I would like to recompile my kernel to have IPFW option . But in > > kernel's configuration file , there is no option for IPFW . But I saw > > IPFW module is actually stored at /usr/src/sys/modules/ipfw . How do I > > compile this module into the kernel ? Please advise . > > Have a look at > http://www.onlamp.com/pub/a/bsd/2001/04/25/FreeBSD_Basics.html > and the following articles about building a FreeBSD firewall. > > HTH > -Christoph Sold > > 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 Jul 2 0:10: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id 6956737B401 for ; Mon, 2 Jul 2001 00:10:05 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f6279uK69703; Mon, 2 Jul 2001 03:09:56 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 03:09:56 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Subject: KDE2 and dcopserver 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 am running 4.3R and XFree86 3.3.6. When launching KDE2 I get this silly dcop error. At first it complained that it could not find the .DCOPserver_machname_:0. So I created a soft link to .DCOPserver_machname_machname. That error went away, and now it says Could not open network socket. Make sure dcopserver program is running. Well, dcopserver is running. The console is also giving the following errs: _IceTransSocketUNIXConnect: Can't connect: errno = 13 _IceTransSocketUNIXConnect: Can't connect: errno = 13 _IceTransSocketUNIXConnect: Can't connect: errno = 13 _IceTransSocketUNIXConnect: Can't connect: errno = 13 ... Any ideas on how to cure this? Thanks Jim ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 0:33: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hq.admiral.ru (hq.admiral.ru [217.146.192.17]) by hub.freebsd.org (Postfix) with ESMTP id CC4BD37B401 for ; Mon, 2 Jul 2001 00:33:00 -0700 (PDT) (envelope-from igor@mordor.admiral.ru) Received: from mordor.admiral.ru (ip147-192.admiral.ru [217.146.192.147] (may be forged)) by hq.admiral.ru (8.9.3/8.9.2) with ESMTP id LAA22592 for ; Mon, 2 Jul 2001 11:32:52 +0400 (MSD) (envelope-from igor@mordor.admiral.ru) Received: (from igor@localhost) by mordor.admiral.ru (8.11.4/8.11.4) id f627aCV19628 for freebsd-questions@FreeBSD.ORG; Mon, 2 Jul 2001 11:36:12 +0400 (MSD) (envelope-from igor) Date: Mon, 2 Jul 2001 11:36:12 +0400 From: Igor Robul To: freebsd-questions@FreeBSD.ORG Subject: Re: bsdboot support Message-ID: <20010702113612.A19576@mordor.admiral.ru> Reply-To: igorr@admiral.ru Mail-Followup-To: Igor Robul , freebsd-questions@FreeBSD.ORG References: <009201c10143$1948c2c0$d200a8c0@p451> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <009201c10143$1948c2c0$d200a8c0@p451>; from volkoff@usa.net on Sat, Jun 30, 2001 at 02:00:23AM -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, Jun 30, 2001 at 02:00:23AM -0700, Alex Volkov wrote: > Hi > Have this question > Is it any possibility to get bsdboot instructions in English? > bsdboot is Japanese version of fbsdboot, but with ability to boot ELF kernel > It is very usefull tool, but I cant find english description for it > Can you help? > Alex Where I can get it? I mean bsdboot. -- Igor Roboul, Unix programmer @ Admiral Telecom ISP, St.Peterburg. Russia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 1: 4:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from moutvdom01.kundenserver.de (moutvdom01.kundenserver.de [195.20.224.200]) by hub.freebsd.org (Postfix) with ESMTP id 52E4D37B401 for ; Mon, 2 Jul 2001 01:04:27 -0700 (PDT) (envelope-from m.schmitt@tarsius.org) Received: from [195.20.224.219] (helo=mrvdom03.kundenserver.de) by moutvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 15Gygt-0000pR-00; Mon, 2 Jul 2001 10:04:19 +0200 Received: from dip-01-073-1.on-line.de ([195.64.97.73] helo=win2k) by mrvdom03.kundenserver.de with smtp (Exim 2.12 #2) id 15Gyfr-0004gF-00; Mon, 2 Jul 2001 10:03:15 +0200 From: "Moritz Schmitt" To: "W Gerald Hicks" Cc: Subject: RE: samba-2.2.0a.tgz for 4.2-RELEASE Date: Mon, 2 Jul 2001 09:58:55 +0200 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: <3B3FD05B.77B3B63A@pacbell.net> Importance: Normal 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 Hey Gerald, yep, you're right it would be a solution. I just tried to be lazy because I don't really need any extra options when compiling the samba package. That's why I was looking for it... Regards, -Moritz -----Original Message----- From: gehicks@nodots-daemon [mailto:gehicks@nodots-daemon]On Behalf Of W Gerald Hicks Sent: Monday, July 02, 2001 3:38 AM To: Moritz Schmitt Cc: freebsd-questions@freebsd.org Subject: Re: samba-2.2.0a.tgz for 4.2-RELEASE Moritz Schmitt wrote: > > Hello, > > why isn't there the samba-2.2.0a.tgz package for 4.2-RELEASE on the FreeBSD > ftp machine? The package search engine finds it but it's a dead link. I only > can find the samba-2.0.7.tgz package... > > -Moritz > Hi Moritz, Why not just make the package yourself from ports? I actually prefer to build everything we use here from source whenever possible. As a bonus, there are times when you can actually get more functionality this way. It _is_ an open source revolution after all... -- W Gerald Hicks gehicks@pacbell.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 1: 6:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from canthai.com (ntmail21.lightrealm.com [216.122.178.4]) by hub.freebsd.org (Postfix) with ESMTP id C87F537B403 for ; Mon, 2 Jul 2001 01:06:52 -0700 (PDT) (envelope-from thiva@canthai.com) Received: from thivacyberman (a308-bkkSP1.C.loxinfo.net.th [203.146.21.54]) by canthai.com (8.8.7/8.8.5) with SMTP id BAA12633 for ; Mon, 2 Jul 2001 01:04:54 -0700 (PDT) From: "Thiva Charanasri" To: Subject: Locale+GlibC ?? Date: Mon, 2 Jul 2001 14:56:56 +0700 Message-ID: <15363D139354574BA6A582A38E19A9AF111ABC@win2ksrv.canthainet.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_005E_01C1030B.8FC1F060" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.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 This is a multi-part message in MIME format. ------=_NextPart_000_005E_01C1030B.8FC1F060 Content-Type: text/plain; charset="windows-874" Content-Transfer-Encoding: 8bit Dear All,     I have question about  installing Thai Locale on FreeBSD system. Has anybody ever tried this before?  I have installed  it on Redhat and it works fine. Anyway how can I install Glibc on FreeBSD.? thanks for any help!. -T.C.- ------=_NextPart_000_005E_01C1030B.8FC1F060 Content-Type: text/html; charset="windows-874" Content-Transfer-Encoding: quoted-printable
Dear=20 All,
 
    I have question = about =20 installing Thai Locale on FreeBSD system. Has anybody ever tried this=20 before?
 I=20 have installed  it on Redhat and it works fine. Anyway how can I = install=20 Glibc on FreeBSD.?
thanks for=20 any help!.
 
-T.C.-
 
------=_NextPart_000_005E_01C1030B.8FC1F060-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 1: 8: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web13404.mail.yahoo.com (web13404.mail.yahoo.com [216.136.175.62]) by hub.freebsd.org (Postfix) with SMTP id F2B6437B401 for ; Mon, 2 Jul 2001 01:08:00 -0700 (PDT) (envelope-from andrewgould@yahoo.com) Message-ID: <20010702080800.42127.qmail@web13404.mail.yahoo.com> Received: from [38.36.58.21] by web13404.mail.yahoo.com; Mon, 02 Jul 2001 01:08:00 PDT Date: Mon, 2 Jul 2001 01:08:00 -0700 (PDT) From: Andrew Gould Subject: modem at sio4? To: FreeBSD Mailing List 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, How do I use a modem that FreeBSD 4.3-Release assigns to sio4? Dialing scripts that worked when I had an isa modem at cuaa1 don't seem to work when I change to cuaa4. (I get "Connect script failed") Modem info: 3com 56K PCI fax/modem. It is not a winmodem (box says it has hardware control, it works under Linux). The modem does not have jumpers. dmesg output: sio0: <3COM PCI Fax/Modem> port 0xc400-0xc407 irq 11 at device 13.0 at pci0 sio0: moving to sio4 sio4: type 16550A Any help would be appreciated. Thanks, Andrew __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Mon Jul 2 1: 9:33 2001 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 08A7037B403 for ; Mon, 2 Jul 2001 01:09:32 -0700 (PDT) (envelope-from rj45@slacknet.com) Received: from rj45 (helo=localhost) by slacknet.slacknet.com with local-esmtp (Exim 3.12 #1 (Debian)) id 15Gylv-00059r-00 for ; Mon, 02 Jul 2001 02:09:31 -0600 Date: Mon, 2 Jul 2001 02:09:31 -0600 (MDT) From: RJ45 To: questions@freebsd.org Subject: bridge 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, how to configure a bridge interface on FreeBSD?? I Am used to OpenBSD where there is a brconfig command, how to do it on FreeBSD ?? 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 Jul 2 1:12:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f117.law4.hotmail.com [216.33.149.117]) by hub.freebsd.org (Postfix) with ESMTP id A18C737B401 for ; Mon, 2 Jul 2001 01:12:37 -0700 (PDT) (envelope-from dannyfast@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 2 Jul 2001 01:12:37 -0700 Received: from 63.195.145.2 by lw4fd.law4.hotmail.msn.com with HTTP; Mon, 02 Jul 2001 08:12:37 GMT X-Originating-IP: [63.195.145.2] From: "Danny Fast" To: questions@freebsd.org Subject: tis' Spaz Date: Mon, 02 Jul 2001 08:12:37 Mime-Version: 1.0 Content-Type: text/html Message-ID: X-OriginalArrivalTime: 02 Jul 2001 08:12:37.0410 (UTC) FILETIME=[C1631820:01C102CE] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG
Sup dog, about COLO....
 
why not virtual host it?  You can normally get SQL and PHP stuffs easy.......and it would be cheaper AND you could call them and say 'fix it'.......[hardware wise].
 
just a thought.......
 
D~y
SpazBSD


Get your FREE download of MSN Explorer at http://explorer.msn.com

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 1:16:14 2001 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 081C737B401 for ; Mon, 2 Jul 2001 01:15:52 -0700 (PDT) (envelope-from patrick@mip.co.za) Received: from patrick (patrick.mip.co.za [10.3.13.181]) by mip.co.za (8.9.3/8.9.3) with SMTP id KAA45990 for ; Mon, 2 Jul 2001 10:15:38 +0200 (SAST) (envelope-from patrick@mip.co.za) From: "Patrick O'Reilly" To: "FreeBSD Question List" Subject: FSCK problem at boot Date: Mon, 2 Jul 2001 10:16:26 +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) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 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 HELP! Please. I have a FreeBSD Firewall which has had the misfortune of an abnormal shutdown over the weekend (a lack of electricity is inclined to do that to you!). Now during boot I am unable to get fsck to sort out the disk inconsistencies. The following lines are part of the output, and they repeat every time I run fsck. This occurs while checking the /usr partition. ---------------------- ad0: HARD READ ERROR blk# 1573199 status=59 error=40 CANNOT READ: BLK 1048752 CONTINUE? [Y/N] ad0: HARD READ ERROR blk# 1573210 status=59 error=40 THE FOLLOWING DISK SECTORS COULD NOT BE READ: 1048863, PHASE 2: (etc) ---------------------- fsck reports the partition as dirty and requires that fsck be re-run, over and over and over and..... Is there any way to get past this? I would really prefer to avoid having to re-install the OS, but right now that seems to be my only option. Patrick. (with even less hair now than yesterday!) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 1:33:56 2001 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 1B54037B403 for ; Mon, 2 Jul 2001 01:33:51 -0700 (PDT) (envelope-from LConrad@Go2France.com) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 58B4316B16 for ; Mon, 2 Jul 2001 10:33:49 +0200 (CEST) Received: from IBM-HIRXKN66F0W.Go2France.com [195.115.185.184] by mail.Go2France.com with ESMTP (SMTPD32-6.06) id A3B52DC40128; Mon, 02 Jul 2001 10:41:25 +0200 Message-Id: <5.1.0.14.0.20010702082247.02f89918@mail.Go2France.com> X-Sender: LConrad@Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Mon, 02 Jul 2001 10:34:44 +0200 To: freebsd-questions@freebsd.org From: Len Conrad Subject: Re: kern.maxproc In-Reply-To: <20010701132916.E296@blossom.cjclark.org> References: <5.1.0.14.0.20010701213843.02e428c8@mail.Go2France.com> <5.1.0.14.0.20010630174654.03c870c8@mail.Go2France.com> <5.1.0.14.0.20010630174654.03c870c8@mail.Go2France.com> <20010701154102.A376@iv.nn.kiev.ua> <5.1.0.14.0.20010701213843.02e428c8@mail.Go2France.com> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1"; format=flowed 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 >And if we go to the code, > > $ grep -w maxproc /usr/src/sys/kern/kern_mib.c > SYSCTL_INT(_kern, KERN_MAXPROC, maxproc, CTLFLAG_RD, > &maxproc, 0, "Maximum number of processes"); > >Note the 'CTLFLAG_RD;' it's read-only. > >You need to recompile to change it. I´m trying to gather tuning information for Wietse Venema who says "I'm writing a document that describes how to crank up FreeBSD so that it can run lots of processes, and so that it can handle lots of connections. Right now, these guidelines vary from sysctl, loader.conf, to recompiling a kernel. This is confusing." Of course, what he means "lots of connections" required by 100´s and 100´s of smtp and smtpd processes in postfix. Given that the guy is very busy developping postfix basically single-handed and participating in its support list daily, we ought to be pleased he´s concentrating some of his time on a FreeBSD+postfix tuning doc, and that he wouldn't be doing this if he wasn´t seeing a real demand for large to huge FreeBSD+postifix servers, can somebody, hacker level, provide some help here? What we have found is "man 8 systcl" , "man 3 systcl" , "man sysctl.conf" , "man loader.conf". The confusion results from some systcl variables that are read-only from sysctl.conf but writeable in loader.conf. eg, kern.ipc.maxsockets and kern.ipc.nmbclusters. but these latter are not listed in "man 8 sysctl" but are in man 3 sysctl, but not as being writeable in loader.conf, which is not mentioned. So it looks like for sysctl variables, there are these options: writeable from shell or sysctl.conf (but not writeable from loader.conf) read-only from sysctl.conf but writeable only in loader.conf read-only but writeable in custom kernel (re-compile) (but there isn´t any explicit setting for maxproc in 4.3R LINT.) Furthermore, is there any doc as to exactly which and how variables are affected by changing MAXUSERS? LINT says it´s "complicated" :))) and go read param.c. 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 Mon Jul 2 1:34: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta3.snfc21.pbi.net (mta3.snfc21.pbi.net [206.13.28.141]) by hub.freebsd.org (Postfix) with ESMTP id D6CB337B403 for ; Mon, 2 Jul 2001 01:34:03 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from mac ([64.166.87.247]) by mta3.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0GFU00BIZ7PNFS@mta3.snfc21.pbi.net> for freebsd-questions@freebsd.org; Mon, 2 Jul 2001 01:32:13 -0700 (PDT) Date: Mon, 02 Jul 2001 01:32:02 -0700 From: W Gerald Hicks Subject: Re: FSCK problem at boot In-reply-to: To: Patrick O'Reilly Cc: FreeBSD Question List Message-id: <0GFU00BJ47POFS@mta3.snfc21.pbi.net> MIME-version: 1.0 (Apple Message framework v388) X-Mailer: Apple Mail (2.388) 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 The telling part is: "ad0: HARD READ ERROR blk#" This is telling you that the disk itself is sick, not just the logical consistency of the data on it. Whether it is because your disk took some sort of power surge (was there lightning?) I can't tell but... Sorry, I think it's kaput. This is more than a software problem. Good Luck, W Gerald Hicks gehicks@cisco.com gehicks@pacbell.net On Monday, July 2, 2001, at 01:16 AM, Patrick O'Reilly wrote: > HELP! Please. > > I have a FreeBSD Firewall which has had the misfortune of an abnormal > shutdown over the weekend (a lack of electricity is inclined to do that to > you!). > > Now during boot I am unable to get fsck to sort out the disk > inconsistencies. The following lines are part of the output, and they > repeat every time I run fsck. This occurs while checking the /usr > partition. > > ---------------------- > ad0: HARD READ ERROR blk# 1573199 status=59 error=40 > > CANNOT READ: BLK 1048752 > > CONTINUE? [Y/N] > > ad0: HARD READ ERROR blk# 1573210 status=59 error=40 > THE FOLLOWING DISK SECTORS COULD NOT BE READ: 1048863, > > PHASE 2: (etc) > ---------------------- > > fsck reports the partition as dirty and requires that fsck be re-run, over > and over and over and..... > > Is there any way to get past this? I would really prefer to avoid having > to > re-install the OS, but right now that seems to be my only option. > > Patrick. > (with even less hair now than yesterday!) > > > 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 Jul 2 1:54: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from seed.pacific.net.sg (seed.pacific.net.sg [203.120.90.77]) by hub.freebsd.org (Postfix) with ESMTP id 872F537B403 for ; Mon, 2 Jul 2001 01:54:01 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop1.pacific.net.sg (pop1.pacific.net.sg [203.120.90.85]) by seed.pacific.net.sg with ESMTP id f628rxY26147 for ; Mon, 2 Jul 2001 16:53:59 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop1.pacific.net.sg with ESMTP id QAA16275 for ; Mon, 2 Jul 2001 16:53:59 +0800 (SGT) Message-ID: <3B4037F4.7A6EB55D@pacific.net.sg> Date: Mon, 02 Jul 2001 16:59:32 +0800 From: Kelvin Ng Chee Hoong X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: zh-TW,en MIME-Version: 1.0 To: "freebsd-questions@FreeBSD.ORG" Subject: Port scanning 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've enabled TCP_DROP_SYNFIN and TCP_RESTRICT_RST options to against nmap and port scanning. To run the test , I ran nmap from another Linux machine . Although these two options have enabled , nmap still able scan through and list the state of services are running. Question : (1) How do I configure FBSD to against port scanning ? (2) Where log file is stored to capture the event of port scanning ? (3) How do I configure FBSD to send email alert or SMS once encountered port scanning action take place ? Please advise . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 1:54:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from klima.physik.uni-mainz.de (klima.Physik.Uni-Mainz.DE [134.93.180.162]) by hub.freebsd.org (Postfix) with ESMTP id 6232C37B408; Mon, 2 Jul 2001 01:54:44 -0700 (PDT) (envelope-from ohartman@klima.physik.uni-mainz.de) Received: from klima.Physik.Uni-Mainz.DE (Sturm@klima.Physik.Uni-Mainz.DE [134.93.180.162]) by klima.physik.uni-mainz.de (8.11.4/8.11.4) with ESMTP id f628shg56075; Mon, 2 Jul 2001 10:54:43 +0200 (CEST) (envelope-from ohartman@klima.physik.uni-mainz.de) Date: Mon, 2 Jul 2001 10:54:43 +0200 (CEST) From: "Hartmann, O." To: Cc: Subject: HELP! Server crashes since last cvsupdate! 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. Since our last update Friday, 29th June, both SMP machines run into a "stuck" condition after a while. This happened now two times and I do not know what happens. The machines do not respond on console inputs, keyboards seem to be dead. Over network, accessing the machines via ssh or telnet results in a short message, then they hung after typing passowrd (ssh) or trying to connect (telnet). Both machines have NFS running. A third server attached to the same network node (behind a switch), an UP machine, is still alive (acts also as a NFS server) and fully accessible. What's up with FreeBSD 4.2-STABLE? Has something important been changed in networking?Oliver liver -- MfG O. Hartmann ohartman@klima.physik.uni-mainz.de ---------------------------------------------------------------- IT-Administration des Institut fuer Physik der Atmosphaere (IPA) ---------------------------------------------------------------- Johannes Gutenberg Universitaet Mainz Becherweg 21 55099 Mainz Tel: +496131/3924662 (Maschinenraum) Tel: +496131/3924144 FAX: +496131/3923532 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 2: 2:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.arc.net.my (nagano.arc.net.my [203.115.225.22]) by hub.freebsd.org (Postfix) with ESMTP id D32A037B403 for ; Mon, 2 Jul 2001 02:02:11 -0700 (PDT) (envelope-from llchan@eweb-asia.com) Received: from llchan ([202.75.144.37]) by mail.arc.net.my (Netscape Messaging Server 4.15) with SMTP id GFU93J00.C1E; Mon, 2 Jul 2001 17:02:07 +0800 Message-ID: <00ba01c102d4$b2ebba80$25904bca@ewebasia.com> From: "Ling Ling" To: "Kelvin Ng Chee Hoong" Cc: References: <3B4037F4.7A6EB55D@pacific.net.sg> Subject: Re: Port scanning Date: Mon, 2 Jul 2001 16:55:06 +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 Kelvin, Did you turn on the following parameters in /etc/rc.conf or /etc/defaults/rc.conf? # For the following two options, you need to have TCP_DROP_SYNFIN and # TCP_RESTRICT_RST set in your kernel. Please refer to LINT for details. tcp_drop_synfin="YES" # Set to YES to drop TCP packets with SYN+FIN # NOTE: this violates the TCP specification tcp_restrict_rst="YES" # Set to YES to restrict emission of RST Check on a website http://www.freebsd-howto.com for further details . Regards, Ling Ling ----- Original Message ----- From: "Kelvin Ng Chee Hoong" To: Sent: Monday, July 02, 2001 4:59 PM Subject: Port scanning > Hi ; > I've enabled TCP_DROP_SYNFIN and TCP_RESTRICT_RST options to against > nmap and port scanning. To run the test , I ran nmap from another Linux > machine . Although these two options have enabled , nmap still able > scan through and list the state of services are running. > Question : > (1) How do I configure FBSD to against port scanning ? > (2) Where log file is stored to capture the event of port scanning ? > (3) How do I configure FBSD to send email alert or SMS once encountered > port scanning action take place ? > Please advise . > > > 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 Jul 2 2: 4:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from clientmail.realtime.co.uk (simian.realtime.co.uk [194.205.134.131]) by hub.freebsd.org (Postfix) with ESMTP id 0663837B403 for ; Mon, 2 Jul 2001 02:04:12 -0700 (PDT) (envelope-from waynep@pan.realtime.co.uk) Received: from [213.52.146.196] (helo=pan.realtime.co.uk) by clientmail.realtime.co.uk with esmtp (Exim 3.20 #1) id 15Gzcp-0007JW-01 for freebsd-questions@freebsd.org; Mon, 02 Jul 2001 10:04:11 +0100 Received: from waynep by pan.realtime.co.uk with local (Exim 3.22 #1) id 15GzcI-0000S6-00 for freebsd-questions@freebsd.org; Mon, 02 Jul 2001 10:03:38 +0100 From: Wayne Pascoe To: freebsd-questions@freebsd.org Subject: Re: Port scanning Date: 02 Jul 2001 10:03:37 +0100 Message-ID: <86ae2nog7q.fsf@pan.ehsrealtime.com> Lines: 36 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 Kelvin Ng Chee Hoong writes: > Hi ; > I've enabled TCP_DROP_SYNFIN and TCP_RESTRICT_RST options to against > nmap and port scanning. To run the test , I ran nmap from another Linux > machine . Although these two options have enabled , nmap still able > scan through and list the state of services are running. > Question : > (1) How do I configure FBSD to against port scanning ? > (2) Where log file is stored to capture the event of port scanning ? > (3) How do I configure FBSD to send email alert or SMS once encountered > port scanning action take place ? > Please advise . I would advise that you run either an ipfw or an ipf firewall to restrict services to your machine. Run a DENY by default type setup, where you just bin packets without sending a return. I don't know how to do this in ipfw but in ipf the lines look something like block in log on fxp0 from any to any Then in /etc/syslog.conf add the following (ipf again) !ipmon *.* /var/log/ipf.log This will cause all blocked packets to be logged in /var/log/ipf.log HTH, -- - Wayne Pascoe E-mail: wayne.pascoe@realtime.co.uk Phone : +44 (0) 20 7544 4668 Mobile: +44 (0) 788 431 1675 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 2: 7: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.urx.com (mail.urx.com [63.170.19.36]) by hub.freebsd.org (Postfix) with ESMTP id 4BB6037B403 for ; Mon, 2 Jul 2001 02:07:06 -0700 (PDT) (envelope-from kstewart@urx.com) Received: from urx.com [206.159.132.160] by mail.urx.com with ESMTP (SMTPD32-6.06) id A9B01A040274; Mon, 02 Jul 2001 02:06:56 -0700 Message-ID: <3B4039B1.5E238328@urx.com> Date: Mon, 02 Jul 2001 02:06:57 -0700 From: Kent Stewart X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: "A. L. Meyers" Cc: freebsd-questions@freebsd.org Subject: Re: make installworld 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 "A. L. Meyers" wrote: > > Dear Kent, > > Next episode in the make installworld odysee: > > Followed your instructions on making pod2man. It worked! > Thanks. make installworld finally completed without error > messages. > > However as previously reported (sigh), running mergemaster > completed without errors but has somehow altered system > initialization, e. g.: > > 1. sendmail does not start although configured "YES" in > /etc/rc.conf The location for the aliases changed. It used to be in /etc and now they are in /etc/mail. I remember having to run newaliases to get sendmail to quit complaining at startup. > > 2. inetd starts although set to "NO" in /etc/rc.conf > > 3. Swiss German keyboard not loaded > > 4. command "vidcontrol 80x50" from console gives error message > but used to complete flawlessly The section of "man vidcontrol" has options you may need to build into your kernel or load as a kld. > > etc. > > How should I proceed to repair the system? I've run out of ideas on the rest. Kent > > Lucien -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html http://daily.daemonnews.org/ SETI (Search for Extraterrestrial Intelligence) @ Home http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 2:29:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from exodus.ait.co.za (exodus.ait.co.za [66.8.26.2]) by hub.freebsd.org (Postfix) with SMTP id 5C2B137B407 for ; Mon, 2 Jul 2001 02:29:14 -0700 (PDT) (envelope-from wizard@sybaweb.co.za) Received: from pm3ctn [66.8.26.4] by exodus.ait.co.za (SMTPD32-4.06) id AD7142201C8; Mon, 02 Jul 2001 11:29:05 +0200 Message-ID: <050801c102d9$64d62880$0200a8c0@ait.co.za> Reply-To: "Peter Salvage" From: "Peter Salvage" To: Subject: IPFW Rules Date: Mon, 2 Jul 2001 11:28:46 +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 all Could someone please point me to a man page/tut. that explains how the rules are constructed, or rather the correct syntax and options available. I'm finding great difficulty in understanding the syntax. TIA /wiZZ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 2:34:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from consult-meyers.com (dialup-58-213.dplanet.ch [212.35.58.213]) by hub.freebsd.org (Postfix) with ESMTP id 7CC2737B403 for ; Mon, 2 Jul 2001 02:34:42 -0700 (PDT) (envelope-from a.l.meyers@consult-meyers.com) Received: from localhost (alm@localhost) by consult-meyers.com (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id LAA02137; Mon, 2 Jul 2001 11:38:32 +0200 Date: Mon, 2 Jul 2001 11:37:11 +0200 (CEST) From: "A. L. Meyers" X-X-Sender: To: Cc: Subject: Re: make installworld 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 Dear Kent et al, Forgot to mention that, exactly according to the handbook, I backed up /etc preserving dates and permissions. Maybe you could tell me how to use this to get the system back in shape. Thanks and greetings, Lucien PS1 Had to reconfigure this mail system as freebsd-questions@freebsd.org was rejecting mails due to "no fully qualified host name". It seems that "localhost" alone is rejected by sendmail and "localhost.localhost" not recognised as fully qualified. Lose-lose situation which I got round by using the first part of my domain name as the unqualified hostname. If you sent me mails between 9 and 11 h. CEDT this morning, they were lost. PS2 (Pse don't get angry because of this comparison :-).) Are you familiar with Debian GNU/Linux's apt-get update and apt-get upgrade system? It seems much easier to me than cvsup etc. but, as a trade-off, it uses binaries, not sources. If you could merge agp-get with sources in BSD, you would have the best of both variants, so it seems to me. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 2:35: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web9601.mail.yahoo.com (web9601.mail.yahoo.com [216.136.129.180]) by hub.freebsd.org (Postfix) with SMTP id 95B4F37B401 for ; Mon, 2 Jul 2001 02:34:57 -0700 (PDT) (envelope-from buracco@yahoo.com) Message-ID: <20010702093457.98949.qmail@web9601.mail.yahoo.com> Received: from [212.182.54.5] by web9601.mail.yahoo.com; Mon, 02 Jul 2001 02:34:57 PDT Date: Mon, 2 Jul 2001 02:34:57 -0700 (PDT) From: El Buracco Subject: my ad0 disappeared during install 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 want to install FreeBSD on my computer. I downloaded the 4.3 disk image, burned it on CD-RW, and proceeded. Several times. Actually, I consider myself to be an installation expert now, being able to breeze through setup in under one minute. Alas, I doesn't make me any wiser when it comes to the problem. PROBLEM Take a look at output of debug console after copying files starts (square brackets mine): [...some filenames here, not very much, just few seconds worth...] ad0: WRITE command timeout tag=0 serv=0 - resetting ata0: resetting devices .. ata0-master: DMA limited to UDMA 33, non-ATA66 compliant cable [ The above 2 lines appeared 0 or more times. I am not sure whether the motherboard supports UDMA-66, but it turns out that I don't have an appropriate connecting tape. The device probing reported VIA 82C596 ATA 33 controller anyway. Later on I turned UDMA-66 mode off suspecting that it could be the cause of problems. Unfortunately, it was not. ] ad0: WRITE command timeout tag=0 serv=0 - resetting ata0: resetting devices .. device dissapeared! 3 done ata0-master: timeout waiting to give command=ca s=d0 e=00 ad0: error executing command - resetting ata0-master: timeout waiting to give command=ca s=d0 e=00 ad0: error executing command - resetting ata0-master: timeout waiting to give command=ca s=d0 e=00 ad0: error executing command - resetting [hang] [ Shit hits the ventilator. This "device dissapeared" (original spelling) stuff is horrifying: after rebooting BIOS doesn't see any of the devices on primary IDE controller. The only remedy is to power off and on. ] HARDWARE motherboard: FIC VB-601-V, Apollo Pro+ chipset for Pentium, ATX primary master: Fujitsu Picobird 13 MPD-3064-AT, 6181 MB primary slave: ATAPI CDROM (LG) secondary master: IBM Deskstar DTLA-307030, 29315 MB secondary slave: none * By the way, is it better in terms of performance to have 2 hard disks on one controller and the cdrom on the other? I did not mess with secondary master, as I normally boot from it (booting device order in bios is set to floppy - cdrom - ide1). BIOS (AMI) is reasonably new, I flashed it in 2000 I think. It is called qc617.rom if you are interested. I fiddled with various settings, but to no effect. Well, once I managed to get kernel panic but can't remember exactly how. Power management is off so the computer doesn't fall asleep during install. I also toggled boot sector virus protection, but as FreeBSD does not depend on BIOS to access the disks and BIOS doesn't notice when FreeBSD writes MBR it doesn't seem to matter. * At this stage, noble wizard, you surely know the solution. Details follow for your reading pleasure. Hard drive geometry as reported by BIOS: 13 410 / 15 / 63 59 561 / 16 / 63 Hard drive geometry as we normal people are expecting to be given: 788 / 255 / 63 3737 / 255 / 63 KERNEL CONFIG I just disabled all network and all SCSI drivers, since I have no such devices. PARTITIONS (slices, that is) on primary master - recent set 1 FreeBSD 64 228 KB cylinders 0 - 7 2 unused 3 FreeBSD 2 192 872 KB cylinders 8 - 280 4 FAT32 LBA 4 072 477 KB cylinders 281 - 787 The first one is for root, as you undoubtedly guessed. The second is divided as follows: swap 125M /tmp 125M /var 125M /home 250M /usr the rest * By the way, how many partitions can you have on a slice? what about a, if root is somewhere else? MEDIA First CD, then DOS partition ( ad0s4 ) where I copied everything from CD. __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Mon Jul 2 2:45:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from relay2.flashnet.it (libra.cyb.it [212.11.95.209]) by hub.freebsd.org (Postfix) with ESMTP id B44EB37B403 for ; Mon, 2 Jul 2001 02:45:10 -0700 (PDT) (envelope-from ml.ventu@flashnet.it) Received: from smtp.flashnet.it (ip022.pool-173.cyb.it [195.191.181.23]) by relay2.flashnet.it (EMS-RELAY/8.10.0) with SMTP id f629iwI18079 for ; Mon, 2 Jul 2001 11:44:58 +0200 Message-Id: <200107020944.f629iwI18079@relay2.flashnet.it> To: X-Mailer: Post Road Mailer for OS/2 (Green Edition Ver 3.0) Date: Mon, 2 Jul 2001 11:44:56 EST From: Andrea Venturoli Reply-To: Andrea Venturoli Subject: SCSI 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 ** Reply to note from "Daniel Ranells" Fri, 29 Jun 2001 10:03:00 -0400 > Hi. I'm trying to install FreeBSD 4.2-STABLE from CD,=20 > but its not booting. It looks like this: > > Waiting 15 seconds for SCSI devices to settle > (probe15:aic0:0:0:0): ccb 0xc0d32c00 - timed out, phase 0x0, state 1 > (probe15:aic0:0:0:0): ccb 0xc0d32c00 - timed out, phase 0x0, state 1 > (probe15:aic0:0:0:0): ccb 0xc0d32c00 - timed out, phase 0x0, state 1 > (probe15:aic0:0:0:0): ccb 0xc0d32c00 - timed out, phase 0x0, state 1 > (probe15:aic0:0:0:0): ccb 0xc0d32c00 - timed out, phase 0x0, state 1 > .... > [ad nauseum] > > Ideas? > > Thank You Nope. It just happens to me to with a Zip Zoom (sort of Adaptec 15xx). Tried all FreeBSD versions from 3.3 to 4.3. I wrote to the FreeBSD-SCSI mailing list and I was answered something on the line that it's a know problem which no one has time or will to fix. If you find out anything, please let me know. Bye av. P.S. Before anyone asks the usual question, my chain is properly configured and terminated :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 2:49:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dilbert.firstcallgroup.co.uk (dilbert.firstcallgroup.co.uk [194.203.69.166]) by hub.freebsd.org (Postfix) with ESMTP id AD08A37B401; Mon, 2 Jul 2001 02:49:46 -0700 (PDT) (envelope-from pfrench@firstcallgroup.co.uk) Received: from pfrench by dilbert.firstcallgroup.co.uk with local (Exim 3.22 #1) id 15H0Kk-000344-00; Mon, 02 Jul 2001 10:49:34 +0100 To: freebsd-stable@freebsd.org, ohartman@klima.physik.uni-mainz.de Subject: Re: HELP! Server crashes since last cvsupdate! Cc: freebsd-questions@freebsd.org In-Reply-To: Message-Id: From: Pete French Date: Mon, 02 Jul 2001 10:49:34 +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 > Since our last update Friday, 29th June, both SMP machines run > into a "stuck" condition after a while. This happened now two times > and I do not know what happens. I've been seeing this effect since 4.3-RELEASE actually. WIth pretty much identical symptoms to the ones you descibe. Asking here earlier people seemed to think that it was the disc controllers getting locked up as this will lead to the effects described. Sometimes the machine will run for weeks at a time, sometimes it will freeze after a few hours. The easiest way I can make it lockup is to try and access a very large file from two processes at once. I'm currently trying to find time to work out how to use the kernel debugging stuff to connect over the network and see what sort of state the kernels in (which it is apparently posssible to do). But not really got anywhere with that yet. I'd be intyerested in knowing what sort of machine you have and what the components are to see if theres anything that both systems have in common (other than the SMP bits). cheers, -pcf. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 2:56:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hq.admiral.ru (hq.admiral.ru [217.146.192.17]) by hub.freebsd.org (Postfix) with ESMTP id A6A5037B407 for ; Mon, 2 Jul 2001 02:56:20 -0700 (PDT) (envelope-from igor@mordor.admiral.ru) Received: from mordor.admiral.ru (ip147-192.admiral.ru [217.146.192.147] (may be forged)) by hq.admiral.ru (8.9.3/8.9.2) with ESMTP id NAA36601 for ; Mon, 2 Jul 2001 13:56:18 +0400 (MSD) (envelope-from igor@mordor.admiral.ru) Received: (from igor@localhost) by mordor.admiral.ru (8.11.4/8.11.4) id f629xgn22259 for freebsd-questions@FreeBSD.ORG; Mon, 2 Jul 2001 13:59:42 +0400 (MSD) (envelope-from igor) Date: Mon, 2 Jul 2001 13:59:41 +0400 From: Igor Robul To: freebsd-questions@FreeBSD.ORG Subject: Re: Locale+GlibC ?? Message-ID: <20010702135941.A22215@mordor.admiral.ru> Reply-To: igorr@admiral.ru Mail-Followup-To: Igor Robul , freebsd-questions@FreeBSD.ORG References: <15363D139354574BA6A582A38E19A9AF111ABC@win2ksrv.canthainet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <15363D139354574BA6A582A38E19A9AF111ABC@win2ksrv.canthainet.com>; from thiva@canthai.com on Mon, Jul 02, 2001 at 02:56:56PM +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, Jul 02, 2001 at 02:56:56PM +0700, Thiva Charanasri wrote: > Dear All, > >     I have question about  installing Thai Locale on FreeBSD system. Has > anybody ever tried this before? >  I have installed  it on Redhat and it works fine. Anyway how can I install > Glibc on FreeBSD.? > thanks for any help!. You can't install GLibc on FreeBSD You can use locale on FreeBSD. For example, for russian I use export LANG=ru_RU.KOI8-R in my ~/.xsession -- Igor Roboul, Unix programmer @ Admiral Telecom ISP, St.Peterburg. Russia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 2:56:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from duval.se.mediaone.net (duval.se.mediaone.net [24.129.0.67]) by hub.freebsd.org (Postfix) with ESMTP id 2ACCA37B401 for ; Mon, 2 Jul 2001 02:56:29 -0700 (PDT) (envelope-from rvb01@mediaone.net) Received: from rr-163-63-38.atl.mediaone.net (rr-163-63-38.atl.mediaone.net [24.163.63.38]) by duval.se.mediaone.net (8.11.1/8.11.1) with SMTP id f629t5P22951; Mon, 2 Jul 2001 05:55:05 -0400 (EDT) From: rvb To: cjclark@alum.mit.edu, freebsd-questions@FreeBSD.ORG Subject: Re: Restart /etc/rc.conf Date: Mon, 02 Jul 2001 05:57:49 -0400 Organization: rvb01@[nospam]mediaone.net Reply-To: rvb01@mediaone.net Message-ID: References: <3B3FC775.F9B111CD@pacific.net.sg> <20010701195927.K296@blossom.cjclark.org> In-Reply-To: <20010701195927.K296@blossom.cjclark.org> X-Mailer: Forte Agent 1.8/32.548 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 I agree. And instead of using: # kill `head -1 /var/run/sendmail.pid` you could do: # ps -aux | grep sendmail # kill -1 The kill -1 sends a SIGHUP which bounces (stops and restarts) sendmail. rvb "Crist J. Clark" wrote: >On Mon, Jul 02, 2001 at 02:13:14AM +0100, Jonathan M. Slivko wrote: >> ps -aux | grep sendmail >> kill -9 >> done. > >Don't use signal 9 (SIGKILL) unless you have to. It does not allow a >program to clean up or do other things before exiting. Use the default >SIGTERM. > >To properly shutdown sendmail, > > # kill `head -1 /var/run/sendmail.pid` -- _____ |_____| O|||||O |,=3D=3D=3D=3D=3D,| |,| |,| /^\ =20 / \ / \ / \ __/ \__=20 / \ =20 / \ / \ __/ \__ / \ / \ Jeep. There's only one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 3: 3:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from klima.physik.uni-mainz.de (klima.Physik.Uni-Mainz.DE [134.93.180.162]) by hub.freebsd.org (Postfix) with ESMTP id E83CD37B409; Mon, 2 Jul 2001 03:03:14 -0700 (PDT) (envelope-from ohartman@klima.physik.uni-mainz.de) Received: from klima.Physik.Uni-Mainz.DE (Sturm@klima.Physik.Uni-Mainz.DE [134.93.180.162]) by klima.physik.uni-mainz.de (8.11.4/8.11.4) with ESMTP id f62A3D800906; Mon, 2 Jul 2001 12:03:13 +0200 (CEST) (envelope-from ohartman@klima.physik.uni-mainz.de) Date: Mon, 2 Jul 2001 12:03:13 +0200 (CEST) From: "Hartmann, O." To: Pete French Cc: , Subject: Re: HELP! Server crashes since last cvsupdate! 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, 2 Jul 2001, Pete French wrote: Both machines are SMP systems and here I send the dmesg output. They use both an AMI MegaRAID U160 SCSI controller, the big on uses the Enterprise 1600, the smaller on the Elite 1600. ATMOS (Enterprise1600) 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-STABLE #104: Mon Jul 2 11:32:08 CEST 2001 root@atmos.physik.uni-mainz.de:/usr/obj/usr/src/sys/ATMOS Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (868.57-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x387fbff real memory = 2147483648 (2097152K bytes) avail memory = 2087956480 (2039020K bytes) Programming 16 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 Programming 16 pins in IOAPIC #1 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 1, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x000f0011, at 0xfec00000 io1 (APIC): apic id: 3, version: 0x000f0011, at 0xfec01000 Preloaded elf kernel "kernel" at 0xc0394000. Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard IOAPIC #1 intpin 13 -> irq 2 IOAPIC #1 intpin 12 -> irq 16 IOAPIC #1 intpin 7 -> irq 17 pci0: on pcib0 pcib3: at device 0.1 on pci0 IOAPIC #1 intpin 1 -> irq 18 pci1: on pcib3 pci1: at 0.0 irq 18 sym0: <896> port 0xf800-0xf8ff mem 0xfeafe000-0xfeafffff,0xfeafac00-0xfeafafff irq 2 at device 1.0 on pci0 sym0: Symbios NVRAM, ID 7, Fast-40, LVD, parity checking sym0: open drain IRQ line driver, using on-chip SRAM sym0: using LOAD/STORE-based firmware. sym0: handling phase mismatch from SCRIPTS. sym1: <896> port 0xf400-0xf4ff mem 0xfeafc000-0xfeafdfff,0xfeafa800-0xfeafabff irq 16 at device 1.1 on pci0 sym1: Symbios NVRAM, ID 7, Fast-40, SE, parity checking sym1: open drain IRQ line driver, using on-chip SRAM sym1: using LOAD/STORE-based firmware. sym1: handling phase mismatch from SCRIPTS. pcib5: at device 3.0 on pci0 IOAPIC #1 intpin 2 -> irq 19 pci2: on pcib5 pcib6: at device 0.0 on pci2 IOAPIC #1 intpin 0 -> irq 20 pci3: on pcib6 amr0: mem 0xf4000000-0xf7ffffff irq 20 at device 0.0 on pci3 amr0: Firmware A159, BIOS 3.11, 64MB RAM pci2: (vendor=0x1077, dev=0x1216) at 1.0 irq 18 pci2: (vendor=0x1077, dev=0x1216) at 2.0 irq 19 fxp0: port 0xfcc0-0xfcff mem 0xfe900000-0xfe9fffff,0xfeaf9000-0xfeaf9fff irq 17 at device 7.0 on pci0 fxp0: Ethernet address 00:e0:81:00:f0:d7 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto isab0: at device 15.0 on pci0 isa0: on isab0 pci0: at 15.1 pcib1: on motherboard pci4: on pcib1 pcib2: on motherboard pci5: on pcib2 pcib4: on motherboard pci6: on pcib4 orm0:

Hello,

 I’ve just installed FreeBSD 4.3 stable in a k62 350 MHZ = machine with 128
MB of Ram, a voodoo 3 card and 2 d-link dfe 530tx + Ethernet cards. = I've
been using the FreeBSD handbook as a reference point to configure = the
machine to be a firewall/router; I've also been reading the Pedantic = PPP
primer but I still can't configure the nic's. I've successfully = recompiled
the kernel to include options IPFIREWALL, and NETGRAPH, IPDIVERT and
IPFILTER. The driver for the card is the vr line in the kernel. I = didn't
comment out the other nics because of a few failed make's so I left them = as
is and it recompiled and installed fine. I looked at the dmesg output = by
running "dmesg | less" and that said:
pci0: <unknown card> (vendor=3D0x1186, dev=3D0,1300) at 9.0 irq = 5
pci0: <unknown card> (vendor=3D0x1186, dev=3D0,1300) at 11.0 irq = 10
so I’m assuming they aren't seen by FreeBSD, now what should I = do?

            &= nbsp;           &n= bsp;           &nb= sp;           &nbs= p;   Thanks in advance

------=_NextPart_000_0000_01C102AB.54C5D900-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 4:15:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ucs.co.za (ucs.co.za [196.23.43.2]) by hub.freebsd.org (Postfix) with ESMTP id 793A337B401 for ; Mon, 2 Jul 2001 04:15:32 -0700 (PDT) (envelope-from vuk@ucs.co.za) Received: from ucspost.ucs.co.za (IDENT:root@mailgw1.ucs.co.za [196.23.43.254]) by ucs.co.za (8.11.2/8.11.2) with ESMTP id f62BFEQ07901 for ; Mon, 2 Jul 2001 13:15:14 +0200 Received: from jhb.ucs.co.za (IDENT:root@jhb.ucs.co.za [172.31.1.73]) by ucspost.ucs.co.za (8.9.3/8.7.3) with ESMTP id NAA21043 for ; Mon, 2 Jul 2001 13:15:14 +0200 From: vuk@ucs.co.za Received: from vuk.ucs.co.za (vuk.ucs.co.za [172.31.1.154]) by jhb.ucs.co.za (8.9.3/8.8.7) with ESMTP id NAA01280 for ; Mon, 2 Jul 2001 13:17:41 +0200 Message-ID: X-Mailer: XFMail 1.4.4 on Linux X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20010701154733.I296@blossom.cjclark.org> Date: Mon, 02 Jul 2001 19:18:04 +0200 (SAST) To: freebsd-questions@freebsd.org Subject: Sendmail & /var Sender: owner-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, VERY new to FreeBSD. And this is quite a newbie question..... I keep on getting these in /var/log/messages: Jul 2 10:29:17 grock sendmail[15373]: f628THB15373: SYSERR(root): collect: Cannot write ./dff628THB15373 (bfcommit, uid=0): No such file or directory Jul 2 10:29:18 grock sendmail[15374]: f628TIB15374: SYSERR(root): collect: Cannot write ./dff628TIB15374 (bfcommit, uid=0): No such file or directory Jul 2 11:24:15 grock sendmail[15486]: f629OFB15486: SYSERR(root): collect: Cannot write ./dff629OFB15486 (bfcommit, uid=0): No such file or directory Jul 2 11:24:15 grock sendmail[15487]: f629OFB15487: SYSERR(root): collect: Cannot write ./dff629OFB15487 (bfcommit, uid=0): No such file or directory I think the problem is /var/spool/mqueue, so i checked the permissions(copied these from a linux box): grock:/var/spool/mqueue# ls -latr total 4 drwxr-xr-x 9 root wheel 512 Jun 27 17:39 .. drwxrwxr-x 2 root mail 512 Jul 2 03:08 . i tried making it all 777, root.wheel and other stupid things. Hmmm....maybe that's not the problem directory. What else should i look at? (possible) problem origin: A while ago, i had a problem where my /var was 108% full. So, I decided to shuffle things around, and moved my /var/spool/mqueue to /usr/var.... and made a link to /var. That didn't free up any space, so i moved a whole bunch of stuff over to /usr. Nope, didnt' help. So i just rebooted, and var came down to 1%. So that probably means it's some kind of virtual fs/ramdrive or something? Where can i read up some more about that, as i see that /var is growing again.... Filesystem 512-blocks Used Avail Capacity Mounted on /dev/ad0s1a 1984478 55474 1770246 3% / /dev/ad0s1h 25387406 16237624 7118790 70% /home /dev/ad0s1e 496094 646 455762 0% /tmp /dev/ad0s1g 9923450 2619084 6510490 29% /usr /dev/ad0s1f 496094 29414 426994 6% /var /dev/ad1s1 39246312 23862024 13390632 64% /backup procfs 8 8 0 100% /proc Anyway, i think the sendmail problem came with the shuffling of the directories. Can someone please point me in the right direction? TIA -- byeeeee Vuk I am Homer of Borg. Prepare to be --- Oooh! Donuts! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 4:17:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pluto.cyco.nl (pluto.cyco.nl [193.78.170.194]) by hub.freebsd.org (Postfix) with ESMTP id 4FF7D37B403 for ; Mon, 2 Jul 2001 04:17:30 -0700 (PDT) (envelope-from jorgen@cyco.nl) Received: from Titanium.cs.cyco.nl (titanium.cs.cyco.nl [193.78.170.197]) by pluto.cyco.nl (8.9.3/8.9.3/Debian 8.9.3-21) with SMTP id NAA24073 for ; Mon, 2 Jul 2001 13:17:28 +0200 Received: by Titanium.cs.cyco.nl(Lotus SMTP MTA v4.6.4 (830.2 3-23-1999)) id 41256A7D.003E5189 ; Mon, 2 Jul 2001 12:20:41 +0100 X-Lotus-FromDomain: CYCO From: jorgen@cyco.nl To: freebsd-questions@freebsd.org Message-ID: <41256A7D.003E5016.00@Titanium.cs.cyco.nl> Date: Mon, 2 Jul 2001 12:20:36 +0100 Subject: RAID problems on Compaq DLT380 (FreeBSD 4.3-RELEASE) 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 Hello all, I've installed FreeBSD 4.3-RELEASE on my Compaq DLT380 with integrated raid controller. The kernel recognizes the controller just fine and the installation went OK. But now: When I remove one disk from the Array (configured as raid 5) and plug it back in the rebuild process doesnt start. I would expect this to work automagically.... Am I missing something obvious here? Do I need additional software? Any help is very welcome! Thanks, Jorgen Maas To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 4:21: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta3.snfc21.pbi.net (mta3.snfc21.pbi.net [206.13.28.141]) by hub.freebsd.org (Postfix) with ESMTP id EE85C37B405 for ; Mon, 2 Jul 2001 04:20:56 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from mac ([64.166.87.247]) by mta3.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0GFU00K41FHOCM@mta3.snfc21.pbi.net> for freebsd-questions@FreeBSD.ORG; Mon, 2 Jul 2001 04:20:12 -0700 (PDT) Date: Mon, 02 Jul 2001 04:20:03 -0700 From: W Gerald Hicks Subject: Re: if_stereg.h patch for D-LINK 530TX+ ? (was: no subject) In-reply-to: To: Adam Garcia Cc: freebsd-questions@FreeBSD.ORG Message-id: <0GFU00K42FHOCM@mta3.snfc21.pbi.net> MIME-version: 1.0 (Apple Message framework v388) X-Mailer: Apple Mail (2.388) Content-type: multipart/alternative; boundary=Apple-Mail-940389088-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 --Apple-Mail-940389088-1 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; format=flowed; charset=windows-1252 Hi Adam, (Next time please help the search engines and others by giving a meaningful subject line :-) Not sure if there have been material changes in the chip since wpaul wrote the driver but give the attached patch a whirl. Hope it helps, W Gerald Hicks gehicks@pacbell.net On Monday, July 2, 2001, at 03:59 AM, Adam Garcia wrote: > Hello, > > =A0I=92ve just installed FreeBSD 4.3 stable in a k62 350 MHZ machine = with 128 > MB of Ram, a voodoo 3 card and 2 d-link dfe 530tx + Ethernet cards. = I've > been using the FreeBSD handbook as a reference point to configure the > machine to be a firewall/router; I've also been reading the Pedantic = PPP > primer but I still can't configure the nic's. I've successfully = recompiled > the kernel to include options IPFIREWALL, and NETGRAPH, IPDIVERT and > IPFILTER. The driver for the card is the vr line in the kernel. I = didn't > comment out the other nics because of a few failed make's so I left = them=20 > as > is and it recompiled and installed fine. I looked at the dmesg output = by > running "dmesg | less" and that said: > pci0: (vendor=3D0x1186, dev=3D0,1300) at 9.0 irq 5 > pci0: (vendor=3D0x1186, dev=3D0,1300) at 11.0 irq 10 > so I=92m assuming they aren't seen by FreeBSD, now what should I do? > > =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0 Thanks in advance > --Apple-Mail-940389088-1 Content-Type: multipart/mixed; boundary=Apple-Mail-475994521-2 --Apple-Mail-475994521-2 Content-Transfer-Encoding: 7bit Content-Type: text/enriched; charset=us-ascii Hi Adam, (Next time please help the search engines and others by giving a meaningful subject line :-) Not sure if there have been material changes in the chip since wpaul wrote the driver but give the attached patch a whirl. Hope it helps, W Gerald Hicks gehicks@pacbell.net --Apple-Mail-475994521-2 Content-Disposition: attachment; filename="if_stereg.h.patch" Content-Type: application/octet-stream; name="if_stereg.h.patch"; x-unix-mode=0644 Content-Transfer-Encoding: 7bit --- src/sys/pci/if_stereg.h.orig Tue Dec 7 12:14:42 1999 +++ src/sys/pci/if_stereg.h Mon Jul 2 04:18:31 2001 @@ -43,7 +43,7 @@ * D-Link PCI device/vendor ID for the DFE-550TX. */ #define DL_VENDORID 0x1186 -#define DL_DEVICEID_550TX 0x1002 +#define DL_DEVICEID_550TX 0x1300 /* * Register definitions for the Sundance Technologies ST201 PCI --Apple-Mail-475994521-2 Content-Transfer-Encoding: quoted-printable Content-Type: text/enriched; charset=windows-1252 On Monday, July 2, 2001, at 03:59 AM, Adam Garcia wrote: = Arial0000,0000,0000Hello, =A0I=92ve just installed FreeBSD 4.3 stable in a k62 350 MHZ machine = with 128 MB of Ram, a voodoo 3 card and 2 d-link dfe 530tx + Ethernet cards. I've been using the FreeBSD handbook as a reference point to configure the machine to be a firewall/router; I've also been reading the Pedantic PPP primer but I still can't configure the nic's. I've successfully recompiled the kernel to include options IPFIREWALL, and NETGRAPH, IPDIVERT and IPFILTER. The driver for the card is the vr line in the kernel. I didn't comment out the other nics because of a few failed make's so I left them as is and it recompiled and installed fine. I looked at the dmesg output by running "dmesg | less" and that said: pci0: < (vendor=3D0x1186, dev=3D0,1300) at 9.0 irq 5 pci0: < (vendor=3D0x1186, dev=3D0,1300) at 11.0 irq 10 so I=92m assuming they aren't seen by FreeBSD, now what should I do? =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0 Thanks in advance = --Apple-Mail-475994521-2-- --Apple-Mail-940389088-1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 4:29: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from serenity.mcc.ac.uk (serenity.mcc.ac.uk [130.88.200.93]) by hub.freebsd.org (Postfix) with ESMTP id ED81F37B406 for ; Mon, 2 Jul 2001 04:28:59 -0700 (PDT) (envelope-from jcm@freebsd-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97] ident=root) by serenity.mcc.ac.uk with esmtp (Exim 2.05 #6) id 15H1sw-0001Ji-00 for freebsd-questions@freebsd.org; Mon, 2 Jul 2001 12:28:58 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.3/8.11.1) id f62BSwu15906 for freebsd-questions@freebsd.org; Mon, 2 Jul 2001 12:28:58 +0100 (BST) (envelope-from jcm) Date: Mon, 2 Jul 2001 12:28:58 +0100 From: j mckitrick To: freebsd-questions@freebsd.org Subject: Odd Netscape behavior (multiple invocation) Message-ID: <20010702122858.A15877@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.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 have recently (a week or 2) started seeing odd behaviour with Netscape. I am running linux netscape 4.77, and when i close it down then restart nothing happens. Then i check 'top' and there is another instance running. I kill one, and the netscape appears. Shouldn't the wrapper be preventing this? Jonathon -- Microsoft complaining about the source license used by Linux is like the event horizon calling the kettle black. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 4:37:27 2001 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 E0F4D37B407 for ; Mon, 2 Jul 2001 04:37:21 -0700 (PDT) (envelope-from simon@comsys.ntu-kpi.kiev.ua) 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 67BAC2F34D; Mon, 2 Jul 2001 14:37:16 +0300 (EEST) Received: from pm5149 (pm514-9.comsys.ntu-kpi.kiev.ua [10.18.54.109]) by comsys.ntu-kpi.kiev.ua (8.11.3/8.11.3) with SMTP id f62Bba301784; Mon, 2 Jul 2001 14:37:37 +0300 (EEST) Message-ID: <006001c102e2$972da520$6d36120a@comsys.ntukpi.kiev.ua> From: "Andrey Simonenko" To: "Peter Salvage" Cc: References: <050801c102d9$64d62880$0200a8c0@ait.co.za> Subject: Re: IPFW Rules Date: Mon, 2 Jul 2001 14:34:34 +0400 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: Peter Salvage Newsgroups: lucky.freebsd.questions Sent: Monday, July 02, 2001 1:29 PM Subject: IPFW Rules > Hi all > > Could someone please point me to a man page/tut. that explains how the rules are > constructed, or rather the correct syntax and options available. > > I'm finding great difficulty in understanding the syntax. > Try /etc/rc.firewall, this file has comments. Probably it whould be better to tell us what exactly you want to protect with IP Firewall. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 4:37:32 2001 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 B2E0737B406 for ; Mon, 2 Jul 2001 04:37:21 -0700 (PDT) (envelope-from simon@comsys.ntu-kpi.kiev.ua) 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 AB5C52F352; Mon, 2 Jul 2001 14:37:16 +0300 (EEST) Received: from pm5149 (pm514-9.comsys.ntu-kpi.kiev.ua [10.18.54.109]) by comsys.ntu-kpi.kiev.ua (8.11.3/8.11.3) with SMTP id f62BVt301765; Mon, 2 Jul 2001 14:31:56 +0300 (EEST) Message-ID: <005801c102e1$cbf7db00$6d36120a@comsys.ntukpi.kiev.ua> From: "Andrey Simonenko" To: Cc: References: Subject: Re: Sendmail & /var Date: Mon, 2 Jul 2001 14:28:53 +0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 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: Newsgroups: lucky.freebsd.questions Sent: Monday, July 02, 2001 3:16 PM Subject: Sendmail & /var > I think the problem is /var/spool/mqueue, so i checked the > permissions(copied these from a linux box): > > grock:/var/spool/mqueue# ls -latr > total 4 > drwxr-xr-x 9 root wheel 512 Jun 27 17:39 .. > drwxrwxr-x 2 root mail 512 Jul 2 03:08 . > > i tried making it all 777, root.wheel and other stupid things. Hmmm....maybe > that's not the problem directory. What else should i look at? > There shoudln't be any problems with permissions, because sendmail is run with root provileges. > > (possible) problem origin: > > A while ago, i had a problem where my /var was 108% full. So, I decided to > shuffle things around, and moved my /var/spool/mqueue to /usr/var.... > and made a link to /var. That didn't free up any space, so i moved a whole > bunch of stuff over to /usr. > Nope, didnt' help. So i just rebooted, and var came down to 1%. Some process opened some file in /var file system and until it release a descriptor for that opened file, you aren't able to free disk space of opened file. > So that probably means it's some kind of virtual fs/ramdrive or something? > Where can i read up some more about that, as i see that /var is growing > again.... > > Filesystem 512-blocks Used Avail Capacity Mounted on > /dev/ad0s1a 1984478 55474 1770246 3% / > /dev/ad0s1h 25387406 16237624 7118790 70% /home > /dev/ad0s1e 496094 646 455762 0% /tmp > /dev/ad0s1g 9923450 2619084 6510490 29% /usr > /dev/ad0s1f 496094 29414 426994 6% /var > /dev/ad1s1 39246312 23862024 13390632 64% /backup > procfs 8 8 0 100% /proc > Probably some process sends to much log information to some log file, check /var/log directory. > Anyway, i think the sendmail problem came with the shuffling of the directories. > Can someone please point me in the right direction? Tell us exact directories structure you did, when you created /usr/spool/mqueue as a link to another directory. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 4:37:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from netcabo.pt (tvcabo08.netcabo.net [212.113.161.138]) by hub.freebsd.org (Postfix) with ESMTP id 9399C37B408 for ; Mon, 2 Jul 2001 04:37:28 -0700 (PDT) (envelope-from lneves@netcabo.pt) Received: from mail pickup service by netcabo.pt with Microsoft SMTPSVC; Mon, 2 Jul 2001 12:34:41 +0100 Content-Class: urn:content-classes:message From: To: Subject: Realtek blues Date: Mon, 2 Jul 2001 12:34:40 +0100 Message-ID: <5e4701c102ea$fb928190$0814a8c0@netcabo.net> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft CDO for Windows 2000 Thread-Index: AcEC6vuSN2NP2G7IEdWKMwBQi1oaxA== 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 Hello all, I'm a newbie at FreeBSD and I'm having some trouble with my connections speeds at home using FreeBSD 4.3 STABLE. They are crawling ... with Linux I can get transfer speeds of about=20 85 Kbytes/sec, with FBSD I get about5 Kbytes/sec. After searching the mailing list archive I track down the problem. It seems to be related to the poor quality of my NIC. The people who had this problem before me solved it by adding the = following line to rc.conf : ifconfig_rl0=3D"inet netmask media 10baseT/UTP mediaopt full-duplex up" This forces full-duplex and apparently it makes things works as they are supposed to. However my IP address is given to me by my ISP (trough DHCP) so it is different each time I boot the PC. Is there some kind of workaround that I can do to solve this problem. Thanks in advance, Luis Neves To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 5: 9:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns3.tstt.net.tt (ns3.tstt.net.tt [196.3.132.3]) by hub.freebsd.org (Postfix) with SMTP id A152537B401 for ; Mon, 2 Jul 2001 05:09:20 -0700 (PDT) (envelope-from dchulhan@uwi.tt) Received: (qmail 86922 invoked from network); 2 Jul 2001 12:08:58 -0000 Received: from unknown (HELO uwi.tt) (209.94.221.18) by ns3.tstt.net.tt with SMTP; 2 Jul 2001 12:08:58 -0000 Message-ID: <3B406467.B90FE528@uwi.tt> Date: Mon, 02 Jul 2001 08:09:11 -0400 From: Dale Chulhan - Home Organization: COSTAATT X-Mailer: Mozilla 4.76 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: FreeBSD diskless workstation. 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 found the following links on setting up diskless Linux workstations. http://www.dnalounge.com/backstage/src/kiosk/ http://www.linuxgazette.com/issue68/swieskowski.html Does any one have any similar resources / expeiences with FreeBSD? I have come across a "stash" of old 486 machines and want to put them to good use. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 5:13:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dns.comrax.com (dns.comrax.com [194.90.246.124]) by hub.freebsd.org (Postfix) with ESMTP id CE95637B401 for ; Mon, 2 Jul 2001 05:13:24 -0700 (PDT) (envelope-from nadir@attractive.com) Received: from NOOR (unknown [212.117.152.115]) by dns.comrax.com (Postfix) with SMTP id 01B4A72505; Mon, 2 Jul 2001 15:13:21 +0300 (IDT) From: "Nadir@Attractive" To: Subject: Is it possible to get more power from a FreeBSD system running Apache/MySQL/PHP ? Date: Mon, 2 Jul 2001 15:13:24 +0200 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_004C_01C10309.89C5DFC0" 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_004C_01C10309.89C5DFC0 Content-Type: text/plain; charset="windows-1255" Content-Transfer-Encoding: 7bit Hello all, I hope this is the first time anyone is asking such a question, but I couldn't find any help in the archives. We have a FreeBSD 4.2-STABLE server running mainly Apache, PHP and MySQL. It is a 933Mhz Intel Xeon-based server, equipped with 1GB memory and 4 SCSI LVD RAID-5 disks. The Apache's httpd.conf file is attached in my e-mail for your evaluation. Today we had a very HIGH surge of Web visitors to one of our hosted Web sites, and it seemed that the server has reached its limits. Each Apache's instance used nearly 13MB of memory and a sum of 150 instances were active, yielding approximately 2GB of memory usage! This has nearly paralized our server, and I couldn't do anything about it, at least that's what I think. I have few questions: 1. Anyone knows if Apache 2.0 can handle more visitors than Apache 1.3.x in the current configuration that we have? 2. Can I optimize the FreeBSD system that we currently have even further to get more power of the server? 3. The MAXUSERS configuration parameter is set to 256, and this is the kernel's setting now. If I set it to be larger, say 1024, will it yield better results? 4. Personally I think that this server can do MUCH better, and maybe the server's configuration is inaccurate, or insufficient. Any suggestions where to start? 5. If you need further analysis and information about the server's exact configuration, please let me know and I will provide them. Meanwhile, the burst of visitors have dropped and the server is back to its near "dead" state, where it serves pages quickly and do almost nothing. I would like it to serve pages as smoothly, though, when it's overloaded and have so many connections to handle. Please CC me on your replies. Thank you, Noor ------=_NextPart_000_004C_01C10309.89C5DFC0 Content-Type: application/octet-stream; name="httpd.conf" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="httpd.conf" ServerType standalone ServerTokens ProductOnly ServerRoot "/www" DocumentRoot "/www/html/BLANK-VHOST" Port 80 ServerAdmin webmaster@domain.com ServerName www.domain.com User apache Group apache Listen 192.168.10.10:80 Listen 192.168.10.10:443 Listen 192.168.10.20:80 Listen 192.168.10.20:443 Listen 192.168.10.30:80 Listen 192.168.10.30:443 Listen 192.168.10.40:80 Listen 192.168.10.40:443 PidFile /www/run/httpd.pid ScoreBoardFile /www/run/httpd.scoreboard ResourceConfig etc/srm.conf AccessConfig etc/access.conf Timeout 240 KeepAlive On MaxKeepAliveRequests 0 KeepAliveTimeout 10 MinSpareServers 10 MaxSpareServers 40 StartServers 30 MaxClients 150 MaxRequestsPerChild 0 Listen 80 Listen 443 ###################################################################### AccessFileName .htaccess UseCanonicalName On HostnameLookups On ExtendedStatus On LogLevel emerg ServerSignature EMail DefaultType text/plain Order allow,deny Deny from all UserDir html DirectoryIndex index.php index.php3 index.x index.phtml index.asp = index.html index.htm TypesConfig /www/etc/mime.types MIMEMagicFile /www/etc/magic LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" = combined LogFormat "%h %l %u %t \"%r\" %>s %b" common LogFormat "%{Referer}i -> %U" referer LogFormat "%{User-agent}i" agent ErrorLog /www/log/error-log CustomLog /www/log/access-log combined Options FollowSymLinks AllowOverride None Options FollowSymLinks ExecCGI MultiViews AllowOverride All Order allow,deny Allow from all ------=_NextPart_000_004C_01C10309.89C5DFC0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 5:19:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from omsk.mushinsky.net (omsk.mushinsky.net [66.9.37.251]) by hub.freebsd.org (Postfix) with ESMTP id C36FA37B405 for ; Mon, 2 Jul 2001 05:19:14 -0700 (PDT) (envelope-from imush@mail.ru) Received: from omsk.mushinsky.net (itz@localhost [127.0.0.1]) by omsk.mushinsky.net (8.11.3/8.11.1) with SMTP id f629jLC14581; Mon, 2 Jul 2001 05:45:21 -0400 (EDT) (envelope-from imush@mail.ru) Content-Type: text/plain; charset="koi8-r" From: Isaac Mushinsky To: Jim Freeze , "freebsd-questions" Subject: Re: XFree86 4.0.3 Install problems Date: Mon, 2 Jul 2001 05:45:20 -0400 X-Mailer: KMail [version 1.2] References: In-Reply-To: MIME-Version: 1.0 Message-Id: <01070205452000.14551@omsk.mushinsky.net> 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 > When running startx I get a long pause, then > xauth: timeout in locking authority file /home/jfreeze/.Xauthority > xauth: timeout in locking authority file /home/jfreeze/.Xauthority Install wrapper from /usr/ports/x11, or have root start xdm. > > Fatal server error: > Cannot open log file "/var/log/XFree86.0.log" > ... > > I am somewhat concerned about he config file, since > xf86config did not follow the sequence given in > the handbook and it did not link or write XF86Config > to /etc. The config file should be /etc/X11/XF86Config or /etc/X11/XF86Config-4 Yes, the config file instructions are outdated in the handbook. Look at m= an=20 XF86Config. > > Can anyone help me out here? > > Thanks > > > > =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=3D=3D=3D=3D=3D=3D > Jim Freeze > jim@freeze.org > --------------------------------------------------------- > No comment at this time. > http://www.freeze.org > =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=3D=3D=3D=3D=3D=3D > > > 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 Jul 2 5:37:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ucs.co.za (ucs.co.za [196.23.43.2]) by hub.freebsd.org (Postfix) with ESMTP id 42BE237B401 for ; Mon, 2 Jul 2001 05:36:46 -0700 (PDT) (envelope-from vuk@ucs.co.za) Received: from ucspost.ucs.co.za (IDENT:root@mailgw1.ucs.co.za [196.23.43.254]) by ucs.co.za (8.11.2/8.11.2) with ESMTP id f62CYsQ10576; Mon, 2 Jul 2001 14:34:54 +0200 Received: from jhb.ucs.co.za (IDENT:root@jhb.ucs.co.za [172.31.1.73]) by ucspost.ucs.co.za (8.9.3/8.7.3) with ESMTP id OAA25541; Mon, 2 Jul 2001 14:34:53 +0200 From: vuk@ucs.co.za Received: from vuk.ucs.co.za (vuk.ucs.co.za [172.31.1.154]) by jhb.ucs.co.za (8.9.3/8.8.7) with ESMTP id OAA05673; Mon, 2 Jul 2001 14:37:21 +0200 Message-ID: X-Mailer: XFMail 1.4.4 on Linux X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <005801c102e1$cbf7db00$6d36120a@comsys.ntukpi.kiev.ua> Date: Mon, 02 Jul 2001 20:37:47 +0200 (SAST) To: Andrey Simonenko Subject: Re: Sendmail & /var Cc: 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 > check /var/log directory. true, true: /var/log# ls -latr htt* -rw-r--r-- 1 root wheel 952790 Jul 2 13:17 httpd-error.log -rw-r--r-- 1 root wheel 9614270 Jul 2 14:04 httpd-access.log and still growing.... thanks. > Tell us exact directories structure you did, when you created > /usr/spool/mqueue > as a link to another directory. i'm not quite sure it used to work as a link because i moved it back right after the reboot. but it did work before the little smartassmove. it was /usr/var/spool/mqueue with 755(weird...) permissions, a sym link to /var/spool/mqueue after that i just mv-ed mqueue back to where it's supposed to be. i was just looking for a quick fix at the time....and here is a big pwoblem. darn. -- byeeeee Vuk I am Homer of Borg. Prepare to be --- Oooh! Donuts! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 5:39:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailhub.fokus.gmd.de (mailhub.fokus.gmd.de [193.174.154.14]) by hub.freebsd.org (Postfix) with ESMTP id 0A89637B406 for ; Mon, 2 Jul 2001 05:39:16 -0700 (PDT) (envelope-from krepel@fokus.gmd.de) Received: from fokus.gmd.de (quant [193.175.133.183]) by mailhub.fokus.gmd.de (8.8.8/8.8.8) with ESMTP id OAA16251; Mon, 2 Jul 2001 14:39:12 +0200 (MET DST) Message-ID: <3B406B6F.E1DB4576@fokus.gmd.de> Date: Mon, 02 Jul 2001 14:39:11 +0200 From: Falco Krepel Organization: GMD FOKUS - CATS Group X-Mailer: Mozilla 4.77 [en] (X11; U; SunOS 5.8 sun4u) X-Accept-Language: en, de-DE MIME-Version: 1.0 To: Dale Chulhan - Home Cc: FreeBSD Questions Subject: Re: FreeBSD diskless workstation. References: <3B406467.B90FE528@uwi.tt> 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 best link I know is: http://matt.simerson.net/computing/freebsd.netboot.shtml Bye Falco -- Falco Krepel Phone: +49-(0)30 - 34 63 - 7 276 GMD-FOKUS Fax: +49-(0)30 - 34 63 - 8 276 Kaiserin-Augusta-Allee 31 e-mail: krepel@fokus.gmd.de 10589 Berlin WWW: http://www.fokus.gmd.de/usr/krepel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 5:43:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id 5930837B401 for ; Mon, 2 Jul 2001 05:43:07 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f62Cgsp71948; Mon, 2 Jul 2001 08:42:54 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 08:42:53 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Isaac Mushinsky Cc: freebsd-questions Subject: Re: XFree86 4.0.3 Install problems In-Reply-To: <01070205452000.14551@omsk.mushinsky.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, 2 Jul 2001, Isaac Mushinsky wrote: > > > When running startx I get a long pause, then > > xauth: timeout in locking authority file /home/jfreeze/.Xauthority > > xauth: timeout in locking authority file /home/jfreeze/.Xauthority > > Install wrapper from /usr/ports/x11, or have root start xdm. I saw that in the docs and attempted a pkg_add on the wrapper but it said that the wrapper package was already added. > > > > > Fatal server error: > > Cannot open log file "/var/log/XFree86.0.log" > > ... > > > > I am somewhat concerned about he config file, since > > xf86config did not follow the sequence given in > > the handbook and it did not link or write XF86Config > > to /etc. > > The config file should be /etc/X11/XF86Config or /etc/X11/XF86Config-4 > Yes, the config file instructions are outdated in the handbook. Look at man > XF86Config. > Are there known problems with XFree86 4? Does someone have a step-by-step install of XFree86 4 online? Thanks ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 5:59: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mo.egroups.com (mo.egroups.com [208.50.144.78]) by hub.freebsd.org (Postfix) with SMTP id E978A37B403 for ; Mon, 2 Jul 2001 05:59:00 -0700 (PDT) (envelope-from jessie@power-jessie.net) X-eGroups-Return: jessie@power-jessie.net Received: from [10.1.10.117] by mo.egroups.com with NNFMP; 02 Jul 2001 12:58:56 -0000 Date: Mon, 02 Jul 2001 12:58:53 -0000 From: jessie@power-jessie.net To: freebsd-questions@freebsd.org Subject: Help on HP Netserver E 45 Message-ID: <9hpr6d+p2h7@eGroups.com> User-Agent: eGroups-EW/0.82 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Mailer: eGroups Message Poster X-Originating-IP: 203.167.26.195 Sender: owner-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 there! Anyone who have success installing FreeBSD on HP Netserver E 45? I'm having a hard time installing one. I have successfully installed fBSD 4.2R but it doesn't boot, the error message is 'Operating System not found' and 'Read Error'? What is wrong? Can someone help me please. Or point me to a site about this. I'm using 20G Seagate Barracuda SCSI harddisk. Need help asap. Thanks. jessie. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 5:59:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dm.dark-rune.com (dm.dark-rune.com [203.7.155.8]) by hub.freebsd.org (Postfix) with ESMTP id 7953D37B401 for ; Mon, 2 Jul 2001 05:59:24 -0700 (PDT) (envelope-from guardian@dark-rune.com) Received: from dark-rune.com (dm.dark-rune.com [203.7.155.8]) by dm.dark-rune.com (8.9.3/8.9.3) with SMTP id VAA04239 for ; Mon, 2 Jul 2001 21:57:20 +1000 From: guardian@dark-rune.com Received: from 203.31.48.3 (SquirrelMail authenticated user guardian) by www.dark-rune.com with HTTP; Mon, 2 Jul 2001 21:57:21 +1000 (EST) Message-ID: <22247.203.31.48.3.994075041.squirrel@www.dark-rune.com> Date: Mon, 2 Jul 2001 21:57:21 +1000 (EST) Subject: Problems with SSH.. sometimes To: freebsd-questions@freebsd.org X-Mailer: SquirrelMail (version 0.5) 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 Sometimes when my freebsd box is rebooted (*gasp*, yes! I reboot it, hasn't crashed yet :) ), I get this message: hd[257]: error: bind to port 22 on :: failed :: address already in use Jul 2 23:27:25 gordon sshd[257]:error: bind to port 22 on 0.0.0.0 failed access already in use. cannot bind to address. ------- Specifics: I have my FBSD 4.0 box networked to my Win98SE box. The win98SE dials up/has IC on. I am telneting/ssh'ing to my BSD box until such time as I can get the USB card to work :) (added it into the kernel, trying to get it to work now :) ) What I am wondering is: What does the above message mean exactly? And why does telnet/ssh only sometimes not work. It seems that if I reboot the box a couple of times... it works. Thanks for any help, Geoff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 6: 6:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta3.snfc21.pbi.net (mta3.snfc21.pbi.net [206.13.28.141]) by hub.freebsd.org (Postfix) with ESMTP id 698D837B403 for ; Mon, 2 Jul 2001 06:06:28 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from mac ([64.166.87.247]) by mta3.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0GFU00BFSKCK7Z@mta3.snfc21.pbi.net> for freebsd-questions@freebsd.org; Mon, 2 Jul 2001 06:05:09 -0700 (PDT) Date: Mon, 02 Jul 2001 06:04:58 -0700 From: W Gerald Hicks Subject: Re: Help on HP Netserver E 45 In-reply-to: <9hpr6d+p2h7@eGroups.com> To: jessie@power-jessie.net Cc: freebsd-questions@freebsd.org Message-id: <0GFU00BFTKCK7Z@mta3.snfc21.pbi.net> MIME-version: 1.0 (Apple Message framework v388) X-Mailer: Apple Mail (2.388) 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 You booted install from floppy or CD? Try using that media to load the installed kernel from the SCSI disk just to see what happens... On Monday, July 2, 2001, at 05:58 AM, jessie@power-jessie.net wrote: > > Hello there! > > Anyone who have success installing FreeBSD > on HP Netserver E 45? I'm having a hard time > installing one. I have successfully installed > fBSD 4.2R but it doesn't boot, the error > message is 'Operating System not found' and > 'Read Error'? What is wrong? Can someone help me > please. Or point me to a site about this. > > I'm using 20G Seagate Barracuda SCSI harddisk. > > Need help asap. > > Thanks. > > jessie. > > > 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 Jul 2 6:13:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from postfix2-1.free.fr (postfix2-1.free.fr [213.228.0.9]) by hub.freebsd.org (Postfix) with ESMTP id E9A4737B403 for ; Mon, 2 Jul 2001 06:13:18 -0700 (PDT) (envelope-from jaco@teaser.fr) Received: from titine.fr.eu.org (toulouse-1-a7-42-236.dial.proxad.net [213.228.42.236]) by postfix2-1.free.fr (Postfix) with ESMTP id D2064C0B3 for ; Mon, 2 Jul 2001 15:13:16 +0200 (CEST) Received: by titine.fr.eu.org (Postfix, from userid 1001) id F0E47336E; Mon, 2 Jul 2001 15:12:35 +0200 (CEST) X-Attribution: Jaco To: questions@freebsd.org Subject: Re: GCC 3.0 References: <15151.23008.225837.880927@guru.mired.org> From: Eric Jacoboni Date: 02 Jul 2001 15:12:35 +0200 In-Reply-To: <15151.23008.225837.880927@guru.mired.org> (Mike Meyer's message of "Tue, 19 Jun 2001 08:55:44 -0500") Message-ID: <86k81r5vb0.fsf@titine.fr.eu.org> Lines: 34 User-Agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/21.0.103 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 >>>>> "Mike" == Mike Meyer writes: >> I heard GCC 3.0 was released yesterday. >> will GCC 3.0 be in FreeBSD 4.4? Mike> Since it's already in -STABLE as /usr/ports/lang/gcc30, yes. In fact, the port gcc30 is not the true release but a snapshot (gcc version 3.0 20010430 (prerelease))... And, at least on my box, this snapshot is heavy buggy. Try this well known example : #include int main(void) { char myName[20]; std::cin >> myName; std::cout << "Hello" << myName << std::endl; } $ g++30 -ansi -pedantic myname.cpp $ ./a.out Mike Hello $ g++ -ansi -pedantic myname.cpp $ ./a.out Mike Hello Mike $ cin >> seems to be broken :( I'm currently trying to build a gcc 3.0 release from scratch but i've problem with shared libs. -- Éric Jacoboni, né il y a 1297522759 secondes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 6:25:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.metrocon.com (metrocon.com [198.143.64.100]) by hub.freebsd.org (Postfix) with ESMTP id 0040337B401 for ; Mon, 2 Jul 2001 06:25:35 -0700 (PDT) (envelope-from tzink@metrocon.com) Received: from coldstone.metrocon.com (access.metrocon.com [198.143.64.40]) by mail.metrocon.com (8.9.3/8.9.3) with SMTP id JAA45876; Mon, 2 Jul 2001 09:24:44 -0400 (EDT) (envelope-from tzink@metrocon.com) Content-Type: text/plain; charset="iso-8859-1" From: Terry Zink Organization: Metrocon Communications To: guardian@dark-rune.com Subject: Re: Problems with SSH.. sometimes Date: Mon, 2 Jul 2001 09:24:47 -0400 X-Mailer: KMail [version 1.2] References: <22247.203.31.48.3.994075041.squirrel@www.dark-rune.com> In-Reply-To: <22247.203.31.48.3.994075041.squirrel@www.dark-rune.com> Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Message-Id: <01070209244701.22407@coldstone.metrocon.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 Check to make sure its not enabled in /etc/rc.conf AND in /usr/local/etc/rc.d On Monday 02 July 2001 07:57, you wrote: > Sometimes when my freebsd box is rebooted (*gasp*, yes! I reboot it, hasn't > crashed yet :) ), I get this message: > > hd[257]: error: bind to port 22 on :: failed :: address already in use > Jul 2 23:27:25 gordon sshd[257]:error: bind to port 22 on 0.0.0.0 failed > access already in use. > cannot bind to address. > > ------- > > Specifics: > > I have my FBSD 4.0 box networked to my Win98SE box. The win98SE dials > up/has IC on. > > I am telneting/ssh'ing to my BSD box until such time as I can get the USB > card to work :) (added it into the kernel, trying to get it to work now :) > ) > > What I am wondering is: > What does the above message mean exactly? And why does telnet/ssh only > sometimes not work. It seems that if I reboot the box a couple of times... > it works. > > Thanks for any help, > > Geoff > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Regards, Terry Zink System Administrator Metrocon Communications Phone: (212) 661-6800 x 1553 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 6:29:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ci.egroups.com (ci.egroups.com [64.211.240.235]) by hub.freebsd.org (Postfix) with SMTP id B31B937B403 for ; Mon, 2 Jul 2001 06:29:15 -0700 (PDT) (envelope-from jessie@power-jessie.net) X-eGroups-Return: jessie@power-jessie.net Received: from [10.1.1.35] by ci.egroups.com with NNFMP; 02 Jul 2001 13:29:14 -0000 Date: Mon, 02 Jul 2001 13:29:13 -0000 From: jessie@power-jessie.net To: freebsd-questions@freebsd.org Subject: Re: Help on HP Netserver E 45 Message-ID: <9hpsv9+1s75@eGroups.com> User-Agent: eGroups-EW/0.82 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Mailer: eGroups Message Poster X-Originating-IP: 203.167.26.195 Sender: owner-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 response! i booted from a CD can u kindly guide me pls on what's the command to load the installed kernel on my SCSI? thanks! jessie >You booted install from floppy or CD? > >Try using that media to load the installed kernel from the SCSI disk >just >to see what happens... >On Monday, July 2, 2001, at 05:58 AM, jessie@p... wrote: > > Hello there! > > Anyone who have success installing FreeBSD > on HP Netserver E 45? I'm having a hard time > installing one. I have successfully installed > fBSD 4.2R but it doesn't boot, the error > message is 'Operating System not found' and > 'Read Error'? What is wrong? Can someone help me > please. Or point me to a site about this. > > I'm using 20G Seagate Barracuda SCSI harddisk. > > Need help asap. > > Thanks. > > jessie. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 6:37:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from c007.snv.cp.net (c007-h000.c007.snv.cp.net [209.228.33.206]) by hub.freebsd.org (Postfix) with SMTP id D9AE837B401 for ; Mon, 2 Jul 2001 06:37:24 -0700 (PDT) (envelope-from otterr@telocity.com) Received: (cpmta 7995 invoked from network); 2 Jul 2001 06:37:24 -0700 Received: from dsl-216-227-91-85.telocity.com (HELO zoso) (216.227.91.85) by smtp.telocity.com (209.228.33.206) with SMTP; 2 Jul 2001 06:37:24 -0700 X-Sent: 2 Jul 2001 13:37:24 GMT Reply-To: From: "Otter" To: "Falco Krepel" , "Dale Chulhan - Home" Cc: "FreeBSD Questions" Subject: RE: FreeBSD diskless workstation. Date: Mon, 2 Jul 2001 09:35:41 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 In-Reply-To: <3B406B6F.E1DB4576@fokus.gmd.de> Sender: owner-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://www.freebsd.org/tutorials/diskless-x/article.html > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of > Falco Krepel > Sent: Monday, July 02, 2001 8:39 AM > To: Dale Chulhan - Home > Cc: FreeBSD Questions > Subject: Re: FreeBSD diskless workstation. > > > The best link I know is: > > http://matt.simerson.net/computing/freebsd.netboot.shtml > > Bye Falco > > -- > Falco Krepel Phone: +49-(0)30 - 34 63 - 7 276 > GMD-FOKUS Fax: +49-(0)30 - 34 63 - 8 276 > Kaiserin-Augusta-Allee 31 e-mail: krepel@fokus.gmd.de > 10589 Berlin WWW: > http://www.fokus.gmd.de/usr/krepel > > 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 Jul 2 6:40: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from exodus.ait.co.za (exodus.ait.co.za [66.8.26.2]) by hub.freebsd.org (Postfix) with SMTP id 8854737B401 for ; Mon, 2 Jul 2001 06:40:02 -0700 (PDT) (envelope-from wizard@sybaweb.co.za) Received: from pm3ctn [66.8.26.4] by exodus.ait.co.za (SMTPD32-4.06) id A6FA50288; Mon, 02 Jul 2001 15:34:34 +0200 Message-ID: <001301c102fb$bb49b020$0200a8c0@ait.co.za> Reply-To: "Peter Salvage" From: "Peter Salvage" To: "Andrey Simonenko" Cc: References: <050801c102d9$64d62880$0200a8c0@ait.co.za> <006001c102e2$972da520$6d36120a@comsys.ntukpi.kiev.ua> Subject: Re: IPFW Rules Date: Mon, 2 Jul 2001 15:32:56 +0200 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.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 > Try /etc/rc.firewall, this file has comments. > Probably it whould be better to tell us what exactly you want to protect > with IP Firewall. Hi Andrey Thanks for the info! I'm already reading the resources that Ling Ling was kind enough to provide to me, but briefly... I'm wanting to: allow port 80 on my www box allow ports 25, 110, 113 on my mailserver allow tcp/udp ports 53 on my nameservers allow ssh traffic (port 22?) allow nntp (port 123) allow webmail on one host (port 8181) allow RADIUS queries on our RADIUS box Deny spoofing of my address range(s) ...and er...I guess deny everything else :) /wiZZ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 6:40:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta3.snfc21.pbi.net (mta3.snfc21.pbi.net [206.13.28.141]) by hub.freebsd.org (Postfix) with ESMTP id 1B0F137B403 for ; Mon, 2 Jul 2001 06:40:04 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from mac ([64.166.86.37]) by mta3.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0GFU00EIQLYG46@mta3.snfc21.pbi.net> for freebsd-questions@freebsd.org; Mon, 2 Jul 2001 06:39:52 -0700 (PDT) Date: Mon, 02 Jul 2001 06:39:42 -0700 From: W Gerald Hicks Subject: Re: Help on HP Netserver E 45 In-reply-to: To: power jessie Cc: FreeBSD Question List Message-id: <0GFU00EIRLYG46@mta3.snfc21.pbi.net> MIME-version: 1.0 (Apple Message framework v388) X-Mailer: Apple Mail (2.388) 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 Hi Jesse, Let's keep it on the list, ok? Someone else may be searching the mail archives someday... I'm not really sure about what happens these days on the Install CD; Hopefully, the behavior is the same as I remember it. When you start up there should be a brief pause and you should see a 'spinning baton' prompt. Hit any key before this finishes. If this works you should see something like: >> FreeBSD/i386 BOOT Default: X:YY(0,a)/ZZZZZZZZZ boot: _ At the 'boot:' prompt enter boot: 0:da(0,a)/boot/loader Hope it works or at least gives up some useful information. W Gerald Hicks gehicks@pacbell.net On Monday, July 2, 2001, at 09:18 PM, power jessie wrote: > > hello there gerald! > > thanks for the quick reply. > can u guide me on this pls. > what are the specific commands to load the installed kernel > in the scsi? i booted from a CD. > > tia! > jessie > > -----Original Message----- > From: W Gerald Hicks [mailto:gehicks@pacbell.net] > Sent: Monday, July 02, 2001 6:05 AM > To: jessie@power-jessie.net > Cc: freebsd-questions@freebsd.org > Subject: Re: Help on HP Netserver E 45 > > > You booted install from floppy or CD? > > Try using that media to load the installed kernel from the SCSI disk just > to see what happens... > > On Monday, July 2, 2001, at 05:58 AM, jessie@power-jessie.net wrote: > >> >> Hello there! >> >> Anyone who have success installing FreeBSD >> on HP Netserver E 45? I'm having a hard time >> installing one. I have successfully installed >> fBSD 4.2R but it doesn't boot, the error >> message is 'Operating System not found' and >> 'Read Error'? What is wrong? Can someone help me >> please. Or point me to a site about this. >> >> I'm using 20G Seagate Barracuda SCSI harddisk. >> >> Need help asap. >> >> Thanks. >> >> jessie. >> >> >> 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 Jul 2 6:54:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailhub.fokus.gmd.de (mailhub.fokus.gmd.de [193.174.154.14]) by hub.freebsd.org (Postfix) with ESMTP id 12BD337B401 for ; Mon, 2 Jul 2001 06:54:36 -0700 (PDT) (envelope-from krepel@fokus.gmd.de) Received: from fokus.gmd.de (quant [193.175.133.183]) by mailhub.fokus.gmd.de (8.8.8/8.8.8) with ESMTP id PAA25887; Mon, 2 Jul 2001 15:54:19 +0200 (MET DST) Message-ID: <3B407D0B.F13B99CF@fokus.gmd.de> Date: Mon, 02 Jul 2001 15:54:19 +0200 From: Falco Krepel Organization: GMD FOKUS - CATS Group X-Mailer: Mozilla 4.77 [en] (X11; U; SunOS 5.8 sun4u) X-Accept-Language: en, de-DE MIME-Version: 1.0 To: otterr@telocity.com Cc: Falco Krepel , Dale Chulhan - Home , FreeBSD Questions Subject: Re: FreeBSD diskless workstation. 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 Thanx, by the way. I use PXE boot with FreeBSD 5.0 and since one month the diskless machine stops during the tftp process getting the pxeloader. The client loads some hundred byte and suddenly the monitor gets a mosaik with colored chars and the system hangs up. I search the error for one week. Maybe you know something. Otter wrote: > > http://www.freebsd.org/tutorials/diskless-x/article.html > -- Falco Krepel Phone: +49-(0)30 - 34 63 - 7 276 GMD-FOKUS Fax: +49-(0)30 - 34 63 - 8 276 Kaiserin-Augusta-Allee 31 e-mail: krepel@fokus.gmd.de 10589 Berlin WWW: http://www.fokus.gmd.de/usr/krepel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 7: 5:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from chmls05.mediaone.net (chmls05.mediaone.net [24.147.1.143]) by hub.freebsd.org (Postfix) with ESMTP id F0F7237B405 for ; Mon, 2 Jul 2001 07:05:35 -0700 (PDT) (envelope-from tom@gottheil.com) Received: from humbaba (nelazul@h0020182d540a.ne.mediaone.net [24.128.52.27]) by chmls05.mediaone.net (8.11.1/8.11.1) with SMTP id f62E5Xx08017 for ; Mon, 2 Jul 2001 10:05:33 -0400 (EDT) Message-ID: <000901c10300$3e5c6350$0200a8c0@humbaba> From: "Tom Gottheil" To: Subject: Cannot Allocate IRQ? Date: Mon, 2 Jul 2001 10:06:51 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 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 I have a laptop with a Linksys Combo PCMCIA Ethernet card. I installed once, and it worked fine. However, I decided to reinstall later, and when I did, it gave me the error, "cannot allocate IRQ for Linksys". I have the device enabled in kernel config also. Does anyone know how I could fix this? (Please cc me with any answers, I am not subscribed to this list) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 7: 9:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mu.egroups.com (mu.egroups.com [64.211.240.238]) by hub.freebsd.org (Postfix) with SMTP id 32F9937B403 for ; Mon, 2 Jul 2001 07:09:39 -0700 (PDT) (envelope-from jessie@power-jessie.net) X-eGroups-Return: jessie@power-jessie.net Received: from [10.1.2.117] by mu.egroups.com with NNFMP; 02 Jul 2001 14:09:38 -0000 Date: Mon, 02 Jul 2001 14:09:34 -0000 From: jessie@power-jessie.net To: freebsd-questions@freebsd.org Subject: Re: Help on HP Netserver E 45 Message-ID: <9hpvau+slg4@eGroups.com> User-Agent: eGroups-EW/0.82 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Mailer: eGroups Message Poster X-Originating-IP: 203.167.26.195 Sender: owner-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 W Gerald, Thanks it works! It booted on the SCSI harddisk. But what is causing this to not automatically boot? Do i have to change any SCSI settings or something.. What will i do to make it boot automatically? please let me know... thanks again. jessie >Hi Jesse, > >Let's keep it on the list, ok? Someone else may be searching the >mail archives someday... > >I'm not really sure about what happens these days on the Install CD; >Hopefully, the behavior is the same as I remember it. >When you start up there should be a brief pause and you should see >a 'spinning baton' prompt. Hit any key before this finishes. >If this works you should see something like: >> FreeBSD/i386 BOOT >Default: X:YY(0,a)/ZZZZZZZZZ >boot: _ >At the 'boot:' prompt enter >boot: 0:da(0,a)/boot/loader >Hope it works or at least gives up some useful information. >W Gerald Hicks >gehicks@p... >On Monday, July 2, 2001, at 09:18 PM, power jessie wrote: > > hello there gerald! > > thanks for the quick reply. > can u guide me on this pls. > what are the specific commands to load the installed kernel > in the scsi? i booted from a CD. > > tia! > jessie > > -----Original Message----- > From: W Gerald Hicks [mailto:gehicks@p...] > Sent: Monday, July 02, 2001 6:05 AM > To: jessie@p... > Cc: freebsd-questions@f... > Subject: Re: Help on HP Netserver E 45 > > > You booted install from floppy or CD? > > Try using that media to load the installed kernel from the SCSI disk just > to see what happens... > > On Monday, July 2, 2001, at 05:58 AM, jessie@p... wrote: > >> >> Hello there! >> >> Anyone who have success installing FreeBSD >> on HP Netserver E 45? I'm having a hard time >> installing one. I have successfully installed >> fBSD 4.2R but it doesn't boot, the error >> message is 'Operating System not found' and >> 'Read Error'? What is wrong? Can someone help me >> please. Or point me to a site about this. >> >> I'm using 20G Seagate Barracuda SCSI harddisk. >> >> Need help asap. >> >> Thanks. >> >> jessie. >> >> >> To Unsubscribe: send mail to majordomo@F... >> 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 Jul 2 7:32:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from VL-MS-MR003.sc1.videotron.ca (relais.videotron.ca [24.201.245.36]) by hub.freebsd.org (Postfix) with ESMTP id 3EB9337B403 for ; Mon, 2 Jul 2001 07:32:34 -0700 (PDT) (envelope-from davitron@vl.videotron.ca) Received: from kerijan.davitron.org ([24.203.239.84]) by VL-MS-MR003.sc1.videotron.ca (Netscape Messaging Server 4.15 MR003 Jun 11 2001 16:23:30) with SMTP id GFUOE903.SZ2 for ; Mon, 2 Jul 2001 10:32:33 -0400 Content-Type: text/plain; charset="iso-8859-1" From: David Comeau Reply-To: davitron@vl.videotron.ca Organization: DaviTronique To: FreeBSD-questions@FreeBSD.ORG Subject: Upgrade of libmcrypt. Date: Mon, 2 Jul 2001 10:33:28 -0400 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <01070210332800.02344@kerijan.davitron.org> 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 had been trying to upgrade my libmcrypt by using portupgrade and libmcrypt errored out. Thinking that it would probably be better to simply go to relevant ports directory and do this by hand, it resulted with the same error. Can anyone help? The following is the relevant complie error, as well as the conversation with another mailing list user who found the time to write to me personally, but was unable find an answer. ************** Compile error ********************** ../../lib/libdefs.h:30: ltdl.h: No such file or directory *** Error code 1 Stop in /usr/ports/security/libmcrypt/work/libmcrypt-2.4.15/modules/algorithms. *********** Truncated for the purpose of this email *********** ************* Conversation with other mailing list user ************** > ltdl.h is in /usr/local/include? Which is on your CPATH and > C_INCLUDE_PATH, if they're set at all? > You're right. They aren't set. (egg on my face) This sounds newbie-ish, but in which file would I include this? Mind you, I'm puzzled as to why only libmcrypt would be affected by this ommision. I have quite a few other progs and tools installed through the ports system, as well as having been upgraged by portupgrade, without complaint from any of them. > Some of the more obvious information that you left out were: what > version (and date, if it's not a release) of FreeBSD you were running, > what version of libtool you currently have installed (and how you > installed it), and whether you're using the system default build > environment for your release of FreeBSD. > > Good luck. I am using version 4.2-RELEASE that was upgrade to 4.3-RELEASE. Both times having the kernel recompiled with acustom kernel. (uname -a: FreeBSD firegate 4.3-RELEASE FreeBSD 4.3-RELEASE #1: Sat Jun 9 21:05:18 EDT 2001). The version of libtool is libtool-1.3.4_2. The original version was installed through the ports installation of some other program that had needed its libs, but seeing that it may have been installed incorrectly, for the purposes of libmcrypt, I re-installed it again through the ports system (not through portupgrade). No, I couldn't keep the default system build, as I am using freebsd as a firewall, and because my NICs weren't supported out of the box, so to speak. Or am I talking about the wrong thing here. The /etc/make.conf file has been altered, but only insignificantly, affecting only the building of lpr. I am very grateful for this help. To this date, you are the only one that has responded. ******** End of conversation ******************** -- Sincerely, David Comeau http://www.davitron.ca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 7:38:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id 3DF4E37B403 for ; Mon, 2 Jul 2001 07:38:56 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f62Ecln75037; Mon, 2 Jul 2001 10:38:47 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 10:38:47 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Subject: Need help with KDE2 and dcopserver 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 am running 4.3R and XFree86 3.3.6 (XF86 4.0.3 wouldn't install properly.) When launching KDE2 I get this silly dcop error. At first it complained that it could not find the .DCOPserver_machname_:0. So I created a soft link to .DCOPserver_machname_machname. The link fixed that error, and now it says Could not open network socket. Make sure dcopserver program is running. Well, dcopserver is running. The console is also giving the following errs: _IceTransSocketUNIXConnect: Can't connect: errno = 13 _IceTransSocketUNIXConnect: Can't connect: errno = 13 _IceTransSocketUNIXConnect: Can't connect: errno = 13 _IceTransSocketUNIXConnect: Can't connect: errno = 13 ... Any ideas on how to cure this? Thanks Jim ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 7:44:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nctams01.nctldno.navy.mil (nctams01.nctldno.navy.mil [164.229.13.13]) by hub.freebsd.org (Postfix) with ESMTP id 11E9537B403 for ; Mon, 2 Jul 2001 07:44:33 -0700 (PDT) (envelope-from LavenderB@nctldno.navy.mil) Received: by nctams01.nctldno.navy.mil with Internet Mail Service (5.5.2232.9) id ; Mon, 2 Jul 2001 09:42:21 -0500 Message-ID: <78202F9B9BB8D311846100805F577DFF274093@nctams01.nctldno.navy.mil> From: "Lavender, Ben" To: "'freebsd-questions@freebsd.org'" Subject: interface aliases and routing Date: Mon, 2 Jul 2001 09:42:14 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2232.9) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C10305.32DE8C10" Sender: owner-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_01C10305.32DE8C10 Content-Type: text/plain; charset="iso-8859-1" I have a FreeBSD 4.2 box currently running. Im trying to get interface aliases to work properly without much success. While I seemingly get the interface configured properly, I can't communicate with different subnets. The interface and the alias can both communicate with other machines on the same subnet, but only the 'primary' address (in this case, 1.72) will talk with other subnets. any ideas/information required? ifconfig: xl0: flags=8843 mtu 1500 inet6 fe80::210:5aff:fe28:ca1f%xl0 prefixlen 64 scopeid 0x1 inet 164.229.1.72 netmask 0xffffffc0 broadcast 164.229.1.127 inet 164.229.1.74 netmask 0xffffffc0 broadcast 164.229.1.127 ether 00:10:5a:28:ca:1f media: autoselect (100baseTX ) status: active supported media: autoselect 100baseTX 100baseTX 10baseT/UTP 10baseT/UTP 100baseTX lp0: flags=8810 mtu 1500 faith0: flags=8000 mtu 1500 gif0: flags=8010 mtu 1280 gif1: flags=8010 mtu 1280 gif2: flags=8010 mtu 1280 gif3: flags=8010 mtu 1280 lo0: flags=8049 mtu 16384 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x8 inet6 ::1 prefixlen 128 inet 127.0.0.1 netmask 0xff000000 ppp0: flags=8010 mtu 1500 sl0: flags=c010 mtu 552 Ben Lavender System Administrator, Newsouth Communications NCTAMS LANT DET NOLA ------_=_NextPart_001_01C10305.32DE8C10 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable interface aliases and routing

I have a FreeBSD 4.2 box currently = running.  Im trying to get interface aliases to work properly = without much success.

While I seemingly get the interface = configured properly, I can't communicate with different subnets.  = The interface and the alias can both communicate with other machines on = the same subnet, but only the 'primary' address (in this case, 1.72) = will talk with other subnets.

any ideas/information required?

ifconfig:
xl0: = flags=3D8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu = 1500
        inet6 fe80::210:5aff:fe28:ca1f%xl0 prefixlen 64 = scopeid 0x1
        inet 164.229.1.72 netmask 0xffffffc0 broadcast = 164.229.1.127
        inet 164.229.1.74 netmask 0xffffffc0 broadcast = 164.229.1.127
        ether 00:10:5a:28:ca:1f
        media: autoselect (100baseTX <full-duplex>) = status: active
        supported media: autoselect 100baseTX = <full-duplex> 100baseTX 10baseT/UTP <full-duplex> = 10baseT/UTP 100baseTX <hw-loopback>

lp0: = flags=3D8810<POINTOPOINT,SIMPLEX,MULTICAST> mtu 1500
faith0: = flags=3D8000<MULTICAST> mtu 1500
gif0: = flags=3D8010<POINTOPOINT,MULTICAST> mtu 1280
gif1: = flags=3D8010<POINTOPOINT,MULTICAST> mtu 1280
gif2: = flags=3D8010<POINTOPOINT,MULTICAST> mtu 1280
gif3: = flags=3D8010<POINTOPOINT,MULTICAST> mtu 1280
lo0: = flags=3D8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
        inet6 fe80::1%lo0 prefixlen 64 scopeid 0x8
        inet6 ::1 prefixlen 128
        inet 127.0.0.1 netmask 0xff000000
ppp0: = flags=3D8010<POINTOPOINT,MULTICAST> mtu 1500
sl0: = flags=3Dc010<POINTOPOINT,LINK2,MULTICAST> mtu 552



Ben Lavender
System Administrator, Newsouth = Communications
NCTAMS LANT DET NOLA



------_=_NextPart_001_01C10305.32DE8C10-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 7:51:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pikachu.rt.net.tr (pikachu.rt.net.tr [212.65.128.9]) by hub.freebsd.org (Postfix) with SMTP id C76CA37B401 for ; Mon, 2 Jul 2001 07:51:07 -0700 (PDT) (envelope-from ismail@enderunix.org) Received: (qmail 24508 invoked from network); 2 Jul 2001 13:02:14 -0000 Received: from unknown (HELO agayev.rt.net.tr) (212.65.128.82) by 0 with SMTP; 2 Jul 2001 13:02:14 -0000 Date: Mon, 2 Jul 2001 16:00:51 +0000 (GMT) From: Ismail YENIGUL X-X-Sender: To: Subject: EnderUNIX QLDAPAdmin 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 folks, We have coded a collection of tools for manipulating LDAP databases that are used to hold account information for qmail users, in C++. Features: - create virtual domains - delete virtual domains - create virtual users - modify virtual users - change users' password, mailhost (for qmail clusters), mailquota, mail directory etc etc... - create alternate addresses for one maibox - create forwarding addresses for one mailbox - View users' information - Delete users from LDAP database - List all qmail domains - List all users of qmail domains The tools are run in command line. Here is the list of binaries: garib:~/qldapadmin-0.4.0beta# ls -l /usr/local/bin/q* -r-x------ 1 root wheel 31008 Jul 2 03:33 /usr/local/bin/qadddomain -r-x------ 1 root wheel 44154 Jul 2 03:33 /usr/local/bin/qadduser -r-x------ 1 root wheel 29334 Jul 2 03:33 /usr/local/bin/qdeldomain -r-x------ 1 root wheel 29773 Jul 2 03:33 /usr/local/bin/qdeluser -r-x------ 1 root wheel 26492 Jul 2 03:33 /usr/local/bin/qlistdomains -r-x------ 1 root wheel 28919 Jul 2 03:33 /usr/local/bin/qlistusers -r-x------ 1 root wheel 47624 Jul 2 03:33 /usr/local/bin/qmodifyuser -r-x------ 1 root wheel 30886 Jul 2 03:33 /usr/local/bin/qpasswd -r-x------ 1 root wheel 30507 Jul 2 03:33 /usr/local/bin/qsetmailhost -r-x------ 1 root wheel 30539 Jul 2 03:33 /usr/local/bin/qsetmsgstore QLDAPAdmin is tested on FreeBSD 4.3, Redhat Linux 7.1 , Solaris 8(sparc) You can download QLDAPAdmin from http://www.enderunix.org/qldapadmin/qldapadmin-0.4.0-BETA.tar.gz Web page about QLDAPAdmin is: http://www.enderunix.org/qldapadmin/ please send your feedback to roots@EnderUNIX.ORG bye Ismail YENIGUL http://www.enderunix.org http://yenigul.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 7:52:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id 9BF9737B401; Mon, 2 Jul 2001 07:52:04 -0700 (PDT) (envelope-from irvine@sanbi.ac.za) Received: from fling.sanbi.ac.za ([196.38.142.119] ident=irvine) by fling.sanbi.ac.za with esmtp (Exim 3.13 #4) id 15H53R-000DxP-00; Mon, 02 Jul 2001 16:52:01 +0200 Date: Mon, 2 Jul 2001 16:52:01 +0200 (SAST) From: Irvine Short To: freebsd-questions@freebsd.org, ade@FreeBSD.org Subject: Probs compiling Evolution on 4-STABLE 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 thought I'd give evolution a whirl on my 4.3-STABLE machine, last cvsupped on Friday the 29th. I ran a make in the Evolution ports directory. It wanted the latest Gnome 1.4.x.x which it fetched and spent half the day compiling. Then it failed with the following messages included below. Any ideas? Here's the error: In file included from e-minicard-view-widget.h:25, from e-addressbook-view.c:42: e-minicard-view.h:25: gal/widgets/e-reflow-sorted.h: No such file or directory In file included from e-minicard-view-widget.h:25, from e-addressbook-view.c:42: e-minicard-view.h:65: syntax error before `EReflowSorted' e-minicard-view.h:86: syntax error before `EReflowSortedClass' gmake[4]: *** [e-addressbook-view.o] Error 1 gmake[4]: Leaving directory `/usr/ports/mail/evolution/work/evolution-0.10/addressbook/gui/widgets' gmake[3]: *** [all-recursive] Error 1 gmake[3]: Leaving directory `/usr/ports/mail/evolution/work/evolution-0.10/addressbook/gui' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/mail/evolution/work/evolution-0.10/addressbook' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/mail/evolution/work/evolution-0.10' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop in /usr/ports/mail/evolution. *** Error code 1 Irvine Short Sys Admin SANBI, University of the Western Cape, South Africa http://www.sanbi.ac.za tel: +27-21-959 3645 fax: +27-21-959 2512 cel: +27-82-494 3828 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 8: 3:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kodos.tinet.ie (mail1.tinet.ie [159.134.237.22]) by hub.freebsd.org (Postfix) with ESMTP id A15B437B408 for ; Mon, 2 Jul 2001 08:03:15 -0700 (PDT) (envelope-from charlivm@eircom.net) Received: from wendell.eircom.net ([159.134.237.78] helo=webmail.eircom.net) by kodos.tinet.ie with esmtp (Exim 2.05 #1) id 15H5E5-0005WT-00 for freebsd-questions@freebsd.org; Mon, 2 Jul 2001 16:03:01 +0100 From: To: freebsd-questions@freebsd.org Subject: Soundcard trouble Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit X-Originating-IP: 159.134.161.68 X-Mailer: Eircom Net CRC Webmail (http://www.eircom.net/) Organization: Eircom Net (http://www.eircom.net/) Message-Id: Date: Mon, 2 Jul 2001 16:03:01 +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 Hi, I'm using FreeBSD 4.2, having some problems getting my soundcard to work. The card is an ISA SoundBlaster AWE 64 (the usual config, port 0x220, irq 5, dma 1) The kernel configuration file I'm using: machine i386 cpu I686_CPU ident GLAUKOS 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 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 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 #options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # 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 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 # 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 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 rl # RealTek 8129/8139 # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support 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 `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter options IPFILTER options IPFILTER_LOG #device sb0 at isa? port 0x220 irq 5 drq 1 #device pcm0 at isa? irq 10 drq 1 flags 0x0 device sbc0 at isa? port 0x220 irq 5 drq 1 flags 0x15 end of kernel config file dmesg output when booting this kernel: Copyright (c) 1992-2000 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.2-RELEASE #0: Mon Jul 2 14:56:40 IST 2001 root@glaukos.phaxx.cx:/usr/src/sys/compile/SNDGLAUKOS Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 700031872 Hz CPU: AMD Duron(tm) Processor (700.03-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x630 Stepping = 0 Features=0x183f9ff AMD Features=0xc0440000<,AMIE,DSP,3DNow!> real memory = 268369920 (262080K 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 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> en atkbd0 config> ir atkbd0 1 config> f atkbd0 0x1 config> q avail memory = 258191360 (252140K bytes) Preloaded elf kernel "kernel" at 0xc031a000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc031a09c. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib2: at device 1.0 on pci0 pci1: on pcib2 pci1: at 0.0 irq 10 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xe000-0xe00f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 7.2 irq 11 pci0: at 7.3 irq 11 rl0: port 0xec00-0xecff mem 0xdf000000-0xdf0000ff irq 11 at device 11.0 on pci0 rl0: Ethernet address: 00:a0:d2:13:0b:b0 miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pcib1: on motherboard pci2: on pcib1 isa0: too many dependant configs (8) fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 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 sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 sbc1: at port 0x220-0x22f,0x330-0x331,0x388-0x38b irq 5 drq 1,5 on isa0 IP Filter: v3.4.8 initialized. Default = pass all, Logging = enabled ad0: 4120MB [8930/15/63] at ata0-master UDMA33 acd0: CDROM at ata1-master using PIO3 acd1: CDROM at ata1-slave using PIO4 Mounting root from ufs:/dev/ad0s2a cd9660: RockRidge Extension end of dmesg output I have made the necessary device nodes with MAKEDEV snd0 but I'm given a "Device not configured" error when I try to use any of them (audio,dsp,whatever) I would greatly appreciate any help with this. Thanks! Charlie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 8:10:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from 1upmc-msximc2.isdip.upmc.edu (1upmc-msximc2.isdip.upmc.edu [128.147.18.40]) by hub.freebsd.org (Postfix) with ESMTP id 6CE8637B406 for ; Mon, 2 Jul 2001 08:09:55 -0700 (PDT) (envelope-from personrp@ccbh.com) Received: by 1UPMC-MSXIMC2 with Internet Mail Service (5.5.2653.19) id ; Mon, 2 Jul 2001 11:08:30 -0400 Message-ID: <46AEB8C1B628D511969200508B6FE42A66846A@1upmc-msx6.isdip.upmc.edu> From: "Person, Roderick" To: "'charlivm@eircom.net'" , freebsd-questions@freebsd.org Subject: RE: Soundcard trouble Date: Mon, 2 Jul 2001 11:10:46 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C10309.2BAD6F20" Sender: owner-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_01C10309.2BAD6F20 Content-Type: text/plain; charset="iso-8859-1" I would uncomment your device pcm0 line and comment out the sbc0 line. Recompile the kernal and make the pcm device. device pcm0 at isa? irq 10 drq 1 flags 0x0 #device sbc0 at isa? port 0x220 irq 5 drq 1 flags 0x15 Roderick P. Person Programmer II Crystal Administrator personrp@ccbh.com "There are many things that you're not supposed to eat, especially children." - Mary Margaret McBride, radio personality > -----Original Message----- > From: charlivm@eircom.net [mailto:charlivm@eircom.net] > Sent: July 02, 2001 11:03 AM > To: freebsd-questions@freebsd.org > Subject: Soundcard trouble > > > Hi, > > I'm using FreeBSD 4.2, having some problems getting my > soundcard to work. > > The card is an ISA SoundBlaster AWE 64 (the usual config, > port 0x220, irq 5, dma 1) > > The kernel configuration file I'm using: > > machine i386 > > cpu I686_CPU > ident GLAUKOS > 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 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 > > 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 > #options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices > > # 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 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 > > > # 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 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 rl # RealTek 8129/8139 > > # Pseudo devices - the number indicates how many units to allocated. > pseudo-device loop # Network loopback > pseudo-device ether # Ethernet support > 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 `bpf' pseudo-device enables the Berkeley Packet Filter. > # Be aware of the administrative consequences of enabling this! > pseudo-device bpf #Berkeley packet filter > > options IPFILTER > options IPFILTER_LOG > > > #device sb0 at isa? port 0x220 irq 5 drq 1 > > #device pcm0 at isa? irq 10 drq 1 flags 0x0 > > device sbc0 at isa? port 0x220 irq 5 drq 1 flags 0x15 > > end of kernel config file > > dmesg output when booting this kernel: > > Copyright (c) 1992-2000 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.2-RELEASE #0: Mon Jul 2 14:56:40 IST 2001 > root@glaukos.phaxx.cx:/usr/src/sys/compile/SNDGLAUKOS > Timecounter "i8254" frequency 1193182 Hz > Timecounter "TSC" frequency 700031872 Hz > CPU: AMD Duron(tm) Processor (700.03-MHz 686-class CPU) > Origin = "AuthenticAMD" Id = 0x630 Stepping = 0 > > Features=0x183f9ff ,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR> > AMD Features=0xc0440000<,AMIE,DSP,3DNow!> > real memory = 268369920 (262080K 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 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> en atkbd0 > config> ir atkbd0 1 > config> f atkbd0 0x1 > config> q > avail memory = 258191360 (252140K bytes) > Preloaded elf kernel "kernel" at 0xc031a000. > Preloaded userconfig_script "/boot/kernel.conf" at 0xc031a09c. > Pentium Pro MTRR support enabled > md0: Malloc disk > npx0: on motherboard > npx0: INT 16 interface > pcib0: on motherboard > pci0: on pcib0 > pcib2: at > device 1.0 on pci0 > pci1: on pcib2 > pci1: at 0.0 irq 10 > isab0: at device 7.0 on pci0 > isa0: on isab0 > atapci0: port 0xe000-0xe00f at > device 7.1 on pci0 > ata0: at 0x1f0 irq 14 on atapci0 > ata1: at 0x170 irq 15 on atapci0 > pci0: at 7.2 irq 11 > pci0: at 7.3 irq 11 > rl0: port 0xec00-0xecff mem > 0xdf000000-0xdf0000ff irq 11 at device 11.0 on pci0 > rl0: Ethernet address: 00:a0:d2:13:0b:b0 > miibus0: on rl0 > rlphy0: on miibus0 > rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > pcib1: on motherboard > pci2: on pcib1 > isa0: too many dependant configs (8) > fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 > drq 2 on isa0 > atkbdc0: at port 0x60,0x64 on isa0 > atkbd0: flags 0x1 irq 1 on atkbdc0 > kbd0 at atkbd0 > psm0: irq 12 on atkbdc0 > psm0: model Generic PS/2 mouse, device ID 0 > 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 > sio1 at port 0x2f8-0x2ff irq 3 on isa0 > sio1: type 16550A > ppc0: at port 0x378-0x37f irq 7 on isa0 > ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode > plip0: on ppbus0 > lpt0: on ppbus0 > lpt0: Interrupt-driven port > ppi0: on ppbus0 > sbc1: at port > 0x220-0x22f,0x330-0x331,0x388-0x38b irq 5 drq 1,5 on isa0 > IP Filter: v3.4.8 initialized. Default = pass all, Logging = enabled > ad0: 4120MB [8930/15/63] at ata0-master UDMA33 > acd0: CDROM at ata1-master using PIO3 > acd1: CDROM at ata1-slave using PIO4 > Mounting root from ufs:/dev/ad0s2a > cd9660: RockRidge Extension > > end of dmesg output > > I have made the necessary device nodes with MAKEDEV snd0 but > I'm given a "Device not configured" error when I try to use > any of them (audio,dsp,whatever) > > I would greatly appreciate any help with this. > > Thanks! > > Charlie > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > ------_=_NextPart_001_01C10309.2BAD6F20 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable RE: Soundcard trouble

I would uncomment your device pcm0 line and comment = out the sbc0 line. Recompile the kernal and make the pcm device.

device pcm0    at isa? irq 10 drq 1 = flags 0x0

#device  sbc0    at isa? port = 0x220 irq 5 drq 1 flags 0x15


Roderick P. Person
Programmer II
Crystal Administrator
personrp@ccbh.com

"There are many things that you're not supposed = to eat, especially
children."

        - Mary = Margaret McBride, radio personality







> -----Original Message-----
> From: charlivm@eircom.net [mailto:charlivm@eircom.net]
> Sent: July 02, 2001 11:03 AM
> To: freebsd-questions@freebsd.org
> Subject: Soundcard trouble
>
>
> Hi,
>
> I'm using FreeBSD 4.2, having some problems = getting my
> soundcard to work.
>
> The card is an ISA SoundBlaster AWE 64 (the = usual config,
> port 0x220, irq 5, dma 1)
>
> The kernel configuration file I'm using:
>
> = machine         i386
>
> = cpu           &nb= sp; I686_CPU
> = ident           = GLAUKOS
> = maxusers        32
>
> #makeoptions    = DEBUG=3D-g          &n= bsp;     #Build kernel with
> gdb(1) debug symbols
>
> = options         = MATH_EMULATE          =   #Support for x87 emulation
> = options         = INET           &n= bsp;        #InterNETworking
> = options         = INET6           &= nbsp;       #IPv6 communications = protocols
> = options         = FFS           &nb= sp;         #Berkeley Fast = Filesystem
> = options         = FFS_ROOT          &nbs= p;     #FFS usable as root
> device [keep this!]
> = options         = SOFTUPDATES          &= nbsp;  #Enable FFS soft
> updates support
> = options         = MFS           &nb= sp;         #Memory = Filesystem
> = options         = MD_ROOT           = ;      #MD is a potential root device
> = options         = NFS           &nb= sp;         #Network = Filesystem
> = options         = NFS_ROOT          &nbs= p;     #NFS usable as root
> device, NFS required
> = options         = MSDOSFS           = ;      #MSDOS Filesystem
> = options         = CD9660           =        #ISO 9660 Filesystem
> = options         = CD9660_ROOT          &= nbsp;  #CD-ROM usable as
> root, CD9660 required
> = options         = PROCFS           =        #Process filesystem
> = options         = COMPAT_43          &nb= sp;    #Compatible with BSD
> 4.3 [KEEP THIS!]
> = options         = UCONSOLE          &nbs= p;     #Allow users to grab
> the console
> = options         = USERCONFIG          &n= bsp;   #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          &nbs= p;     #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
>
> = 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
> = #options        = ATA_ENABLE_ATAPI_DMA    #Enable DMA on ATAPI = devices
>
> # 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          = 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          &n= bsp;   # start with block cursor
> # If you have a ThinkPAD, uncomment this along = with the rest
> of the PCVT lines
> = #options        = PCVT_SCANSET=3D2          = # 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
>
>
> # 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           &nb= sp; # Printer
> = device          = plip            = # TCP/IP over parallel
> = device          = ppi           &nb= sp; # Parallel port interface device
> = #device         = vpo           &nb= sp; # Requires scbus and da
>
>
> # 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          = rl           &nbs= p;  # RealTek 8129/8139
>
> # Pseudo devices - the number indicates how = many units to allocated.
> pseudo-device   = loop            = # Network loopback
> pseudo-device   = ether           # = Ethernet support
> pseudo-device   = sl      1       = # Kernel SLIP
> pseudo-device   = ppp     1       # = Kernel PPP
> pseudo-device   = tun           &nb= sp; # Packet tunnel.
> pseudo-device   = pty           &nb= sp; # Pseudo-ttys (telnet etc)
> pseudo-device   = md           &nbs= p;  # Memory "disks"
> pseudo-device   = gif     4       # = IPv6 and IPv4 tunneling
> pseudo-device   faith   = 1       # IPv6-to-IPv4 relaying = (translation)
>
> # The `bpf' pseudo-device enables the Berkeley = Packet Filter.
> # Be aware of the administrative consequences = of enabling this!
> pseudo-device   = bpf           &nb= sp; #Berkeley packet filter
>
> options IPFILTER
> options IPFILTER_LOG
>
>
> #device  sb0    at isa? = port 0x220 irq 5 drq 1
>
> #device pcm0    at isa? irq 10 = drq 1 flags 0x0
>
> device  sbc0    at isa? = port 0x220 irq 5 drq 1 flags 0x15
>
> end of kernel config file
>
> dmesg output when booting this kernel:
>
> Copyright (c) 1992-2000 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.2-RELEASE #0: Mon Jul  2 = 14:56:40 IST 2001
>     = root@glaukos.phaxx.cx:/usr/src/sys/compile/SNDGLAUKOS
> Timecounter "i8254"  frequency = 1193182 Hz
> Timecounter "TSC"  frequency = 700031872 Hz
> CPU: AMD Duron(tm) Processor (700.03-MHz = 686-class CPU)
>   Origin =3D = "AuthenticAMD"  Id =3D 0x630  Stepping =3D 0
>  
> = Features=3D0x183f9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR
> ,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR>
>   AMD = Features=3D0xc0440000<<b18>,AMIE,DSP,3DNow!>
> real memory  =3D 268369920 (262080K = 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 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> en atkbd0
> config> ir atkbd0 1
> config> f atkbd0 0x1
> config> q
> avail memory =3D 258191360 (252140K = bytes)
> Preloaded elf kernel "kernel" at = 0xc031a000.
> Preloaded userconfig_script = "/boot/kernel.conf" at 0xc031a09c.
> Pentium Pro MTRR support enabled
> md0: Malloc disk
> npx0: <math processor> on = motherboard
> npx0: INT 16 interface
> pcib0: <Host to PCI bridge> on = motherboard
> pci0: <PCI bus> on pcib0
> pcib2: <PCI to PCI bridge (vendor=3D1106 = device=3D8305)> at
> device 1.0 on pci0
> pci1: <PCI bus> on pcib2
> pci1: <S3 Savage 4 graphics accelerator> = at 0.0 irq 10
> isab0: <VIA 82C686 PCI-ISA bridge> at = device 7.0 on pci0
> isa0: <ISA bus> on isab0
> atapci0: <VIA 82C686 ATA66 controller> = port 0xe000-0xe00f at
> device 7.1 on pci0
> ata0: at 0x1f0 irq 14 on atapci0
> ata1: at 0x170 irq 15 on atapci0
> pci0: <VIA 83C572 USB controller> at 7.2 = irq 11
> pci0: <VIA 83C572 USB controller> at 7.3 = irq 11
> rl0: <RealTek 8139 10/100BaseTX> port = 0xec00-0xecff mem
> 0xdf000000-0xdf0000ff irq 11 at device 11.0 on = pci0
> rl0: Ethernet address: 00:a0:d2:13:0b:b0
> miibus0: <MII bus> on rl0
> rlphy0: <RealTek internal media = interface> on miibus0
> rlphy0:  10baseT, 10baseT-FDX, 100baseTX, = 100baseTX-FDX, auto
> pcib1: <Host to PCI bridge> on = motherboard
> pci2: <PCI bus> on pcib1
> isa0: too many dependant configs (8)
> fdc0: <NEC 72065B or clone> at port = 0x3f0-0x3f5,0x3f7 irq 6
> drq 2 on isa0
> atkbdc0: <Keyboard controller (i8042)> at = port 0x60,0x64 on isa0
> atkbd0: <AT Keyboard> flags 0x1 irq 1 on = atkbdc0
> kbd0 at atkbd0
> psm0: <PS/2 Mouse> irq 12 on = atkbdc0
> psm0: model Generic PS/2 mouse, device ID = 0
> vga0: <Generic ISA VGA> at port = 0x3c0-0x3df iomem
> 0xa0000-0xbffff on isa0
> sc0: <System console> at flags 0x100 on = isa0
> sc0: VGA <16 virtual consoles, = flags=3D0x300>
> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on = isa0
> sio0: type 16550A
> sio1 at port 0x2f8-0x2ff irq 3 on isa0
> sio1: type 16550A
> ppc0: <Parallel port> at port 0x378-0x37f = irq 7 on isa0
> ppc0: Generic chipset (EPP/NIBBLE) in = COMPATIBLE mode
> plip0: <PLIP network interface> on = ppbus0
> lpt0: <Printer> on ppbus0
> lpt0: Interrupt-driven port
> ppi0: <Parallel I/O> on ppbus0
> sbc1: <Creative SB AWE64 Gold> at port =
> 0x220-0x22f,0x330-0x331,0x388-0x38b irq 5 drq = 1,5 on isa0
> IP Filter: v3.4.8 initialized.  Default = =3D pass all, Logging =3D enabled
> ad0: 4120MB <Maxtor 84320D4> [8930/15/63] = at ata0-master UDMA33
> acd0: CDROM <FX001DE> at ata1-master = using PIO3
> acd1: CDROM <FX322M> at ata1-slave using = PIO4
> Mounting root from ufs:/dev/ad0s2a
> cd9660: RockRidge Extension
>
> end of dmesg output
>
> I have made the necessary device nodes with = MAKEDEV snd0 but
> I'm given a "Device not configured" = error when I try to use
> any of them (audio,dsp,whatever)
>
> I would greatly appreciate any help with = this.
>
> Thanks!
>
> Charlie
>
>
>
>
> To Unsubscribe: send mail to = majordomo@FreeBSD.org
> with "unsubscribe freebsd-questions" = in the body of the message
>

------_=_NextPart_001_01C10309.2BAD6F20-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 8:11:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from devlab.optonline.net (ool-18badd3b.dyn.optonline.net [24.186.221.59]) by hub.freebsd.org (Postfix) with ESMTP id 9B77337B403 for ; Mon, 2 Jul 2001 08:11:22 -0700 (PDT) (envelope-from petejc@optonline.net) Received: from optonline.net (localhost [127.0.0.1]) by devlab.optonline.net (8.11.3/8.11.3) with ESMTP id f62FBSm00431 for ; Mon, 2 Jul 2001 11:11:28 -0400 (EDT) (envelope-from petejc@optonline.net) Message-ID: <3B408F1F.E1D45FAB@optonline.net> Date: Mon, 02 Jul 2001 11:11:27 -0400 From: Pete Collins X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: natrules 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 my 4.3 box set up with two cards dc0 and xl0. xl0 is my DHCP external card. My box is enabled as a gateway. My packets from the inside are not making it out . . . Do the map rules below look correct? su-2.05# ipf -V ipf: IP Filter: v3.4.16 (264) Kernel: IP Filter: v3.4.16 Running: yes Log Flags: 0 = none set Default: pass all, Logging: unavailable Active list: 0 su-2.05# ipnat -l List of active MAP/Redirect filters: map dc0 192.168.0.0/16 -> 0.0.0.0/32 portmap tcp/udp 40000:65000 map xl0 192.168.0.0/16 -> 0.0.0.0/32 List of active sessions: Thanks --pete To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 8:12:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.metrocon.com (metrocon.com [198.143.64.100]) by hub.freebsd.org (Postfix) with ESMTP id E6A9037B405 for ; Mon, 2 Jul 2001 08:12:08 -0700 (PDT) (envelope-from tzink@metrocon.com) Received: from coldstone.metrocon.com (access.metrocon.com [198.143.64.40]) by mail.metrocon.com (8.9.3/8.9.3) with SMTP id LAA52149; Mon, 2 Jul 2001 11:12:07 -0400 (EDT) (envelope-from tzink@metrocon.com) Content-Type: text/plain; charset="iso-8859-1" From: Terry Zink Organization: Metrocon Communications To: "Lavender, Ben" Subject: Re: interface aliases and routing Date: Mon, 2 Jul 2001 11:12:10 -0400 X-Mailer: KMail [version 1.2] References: <78202F9B9BB8D311846100805F577DFF274093@nctams01.nctldno.navy.mil> In-Reply-To: <78202F9B9BB8D311846100805F577DFF274093@nctams01.nctldno.navy.mil> Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Message-Id: <01070211121002.22407@coldstone.metrocon.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 Hrm. I believe if I;m not mistaken, that aliases on the nic need to have a netmask of 255.255.255.255 .. At least, that is what I need to do. Might wish to try that. On Monday 02 July 2001 10:42, you wrote: > I have a FreeBSD 4.2 box currently running. Im trying to get interface > aliases to work properly without much success. > > While I seemingly get the interface configured properly, I can't > communicate with different subnets. The interface and the alias can both > communicate with other machines on the same subnet, but only the 'primary' > address (in this case, 1.72) will talk with other subnets. > > any ideas/information required? > > ifconfig: > xl0: flags=8843 mtu 1500 > inet6 fe80::210:5aff:fe28:ca1f%xl0 prefixlen 64 scopeid 0x1 > inet 164.229.1.72 netmask 0xffffffc0 broadcast 164.229.1.127 > inet 164.229.1.74 netmask 0xffffffc0 broadcast 164.229.1.127 > ether 00:10:5a:28:ca:1f > media: autoselect (100baseTX ) status: active > supported media: autoselect 100baseTX 100baseTX > 10baseT/UTP 10baseT/UTP 100baseTX > lp0: flags=8810 mtu 1500 > faith0: flags=8000 mtu 1500 > gif0: flags=8010 mtu 1280 > gif1: flags=8010 mtu 1280 > gif2: flags=8010 mtu 1280 > gif3: flags=8010 mtu 1280 > lo0: flags=8049 mtu 16384 > inet6 fe80::1%lo0 prefixlen 64 scopeid 0x8 > inet6 ::1 prefixlen 128 > inet 127.0.0.1 netmask 0xff000000 > ppp0: flags=8010 mtu 1500 > sl0: flags=c010 mtu 552 > > > > Ben Lavender > System Administrator, Newsouth Communications > NCTAMS LANT DET NOLA ---------------------------------------- Content-Type: text/html; charset="iso-8859-1"; name="Attachment: 1" Content-Transfer-Encoding: quoted-printable Content-Description: ---------------------------------------- -- Regards, Terry Zink System Administrator Metrocon Communications Phone: (212) 661-6800 x 1553 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 8:18:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from www.stv.ee (www.stv.ee [212.7.5.251]) by hub.freebsd.org (Postfix) with ESMTP id 8D9D837B401 for ; Mon, 2 Jul 2001 08:18:46 -0700 (PDT) (envelope-from dima@stv.ee) Received: from stv.ee (tasko.local.stv.ee [192.168.196.137]) by www.stv.ee (8.11.4/8.11.4) with ESMTP id f62FIfW25105 for ; Mon, 2 Jul 2001 17:18:41 +0200 (EET) (envelope-from dima@stv.ee) Message-ID: <3B408298.1A27BAAF@stv.ee> Date: Mon, 02 Jul 2001 17:18:00 +0300 From: Dmitry Baranov X-Mailer: Mozilla 4.77 [en] (Win95; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Cron & program output Content-Type: text/plain; charset=koi8-r 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 ! FreeBSD 4.3 STABLE. Now I have a simple script: /usr/home/user> cat test #!/bin/sh telnet 192.168.196.140 5010 exit /usr/home/user>./test Trying 192.168.196.140... Connected to Escape character is '^]'. 55 0 46 77 11 43 96 3 AA .... connection closed Seems to be ok ! Now inserting to crontab: */1 * * * * user /usr/home/user/test | mail to me But I get Trying 192.168.196.140... Connected to Escape character is '^]'. And nothing more ! Where is telnet's output? Please e-mail me offlist. -- WBR ------------------------------------------------------------- Dmitry Baranov Phone: +(372) 6 056 502 STV Internet Fax: +(372) 6 056 424 Koorti 18 Mobile: +(372) 5 012 825 Tallinn, Estonia ------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 8:29:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailgate.novagate.net (mailgate.novagate.net [205.138.138.22]) by hub.freebsd.org (Postfix) with ESMTP id 9135837B406 for ; Mon, 2 Jul 2001 08:29:07 -0700 (PDT) (envelope-from djhill@novagate.net) Received: from rain.hill.hom (081bc122.chartermi.net [24.247.81.122]) by mailgate.novagate.net (8.11.3/8.11.3) with SMTP id f62FSvq66697; Mon, 2 Jul 2001 11:28:58 -0400 (EDT) (envelope-from djhill@novagate.net) Date: Mon, 2 Jul 2001 11:28:41 -0400 From: David Hill To: "Nadir@Attractive" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Is it possible to get more power from a FreeBSD system running Apache/MySQL/PHP ? Message-Id: <20010702112841.1e437d12.djhill@novagate.net> In-Reply-To: References: X-Mailer: Sylpheed version 0.5.0pre2 (GTK+ 1.2.10; i386-unknown-freebsd4.3) 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 would try the following: 1. Convert to PHP4 since it is substantially faster than PHP3 2. Run the latest Apache (1.3.x) and MySQL (3.23.x). 3. On FreeBSD, look into the MAXUSERS and NMBCLUSTERS options in the kernel. 4. Possibly try caching with Apache 5. Tweak MySQL. I would not run Apache 2.0 at this time, since it's still beta. Plus, I may be wrong, but I don't like PHP supports it yet. Just my .02 - David On Mon, 2 Jul 2001 15:13:24 +0200 "Nadir@Attractive" wrote: > Hello all, > > I hope this is the first time anyone is asking such a question, but I > couldn't find any help in the archives. > > We have a FreeBSD 4.2-STABLE server running mainly Apache, PHP and > MySQL. It is a 933Mhz Intel Xeon-based server, equipped with 1GB memory > and 4 SCSI LVD RAID-5 disks. The Apache's httpd.conf file is attached in > my e-mail for your evaluation. > > Today we had a very HIGH surge of Web visitors to one of our hosted Web > sites, and it seemed that the server has reached its limits. Each > Apache's instance used nearly 13MB of memory and a sum of 150 instances > were active, yielding approximately 2GB of memory usage! This has nearly > paralized our server, and I couldn't do anything about it, at least > that's what I think. > > I have few questions: > > 1. Anyone knows if Apache 2.0 can handle more visitors than Apache 1.3.x > in the current configuration that we have? > 2. Can I optimize the FreeBSD system that we currently have even further > to get more power of the server? > 3. The MAXUSERS configuration parameter is set to 256, and this is the > kernel's setting now. If I set it to be larger, say 1024, will it yield > better results? > 4. Personally I think that this server can do MUCH better, and maybe the > server's configuration is inaccurate, or insufficient. Any suggestions > where to start? > 5. If you need further analysis and information about the server's exact > configuration, please let me know and I will provide them. > > Meanwhile, the burst of visitors have dropped and the server is back to > its near "dead" state, where it serves pages quickly and do almost > nothing. I would like it to serve pages as smoothly, though, when it's > overloaded and have so many connections to handle. > > Please CC me on your replies. > > Thank you, > > Noor > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 8:31: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nctams01.nctldno.navy.mil (nctams01.nctldno.navy.mil [164.229.13.13]) by hub.freebsd.org (Postfix) with ESMTP id 4C46337B401 for ; Mon, 2 Jul 2001 08:30:52 -0700 (PDT) (envelope-from LavenderB@nctldno.navy.mil) Received: by nctams01.nctldno.navy.mil with Internet Mail Service (5.5.2232.9) id ; Mon, 2 Jul 2001 10:28:51 -0500 Message-ID: <78202F9B9BB8D311846100805F577DFF274094@nctams01.nctldno.navy.mil> From: "Lavender, Ben" To: 'Terry Zink' Cc: "'freebsd-questions@freebsd.org'" Subject: RE: interface aliases and routing Date: Mon, 2 Jul 2001 10:28:44 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2232.9) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C1030B.B23AE5D4" Sender: owner-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_01C1030B.B23AE5D4 Content-Type: text/plain; charset="iso-8859-1" Like this? xl0: flags=8843 mtu 1500 inet6 fe80::210:5aff:fe28:ca1f%xl0 prefixlen 64 scopeid 0x1 inet 164.229.1.72 netmask 0xffffffc0 broadcast 164.229.1.127 inet 164.229.1.74 netmask 0xffffffff broadcast 164.229.1.74 ether 00:10:5a:28:ca:1f media: autoselect (100baseTX ) status: active supported media: autoselect 100baseTX 100baseTX 10baseT/UTP 10baseT/UTP 100baseTX This didn't work. Thanks for the response, ben ps--sorry about the html email originally. > -----Original Message----- > From: Terry Zink [mailto:tzink@metrocon.com] > Sent: Monday, July 02, 2001 10:12 AM > To: Lavender, Ben > Cc: freebsd-questions@freebsd.org > Subject: Re: interface aliases and routing > > > Hrm. I believe if I;m not mistaken, that aliases on the nic > need to have a > netmask of 255.255.255.255 .. At least, that is what I need > to do. Might > wish to try that. > > > On Monday 02 July 2001 10:42, you wrote: > > I have a FreeBSD 4.2 box currently running. Im trying to > get interface > > aliases to work properly without much success. > > > > While I seemingly get the interface configured properly, I can't > > communicate with different subnets. The interface and the > alias can both > > communicate with other machines on the same subnet, but > only the 'primary' > > address (in this case, 1.72) will talk with other subnets. > > > > any ideas/information required? > > > > ifconfig: > > xl0: flags=8843 mtu 1500 > > inet6 fe80::210:5aff:fe28:ca1f%xl0 prefixlen 64 scopeid 0x1 > > inet 164.229.1.72 netmask 0xffffffc0 broadcast 164.229.1.127 > > inet 164.229.1.74 netmask 0xffffffc0 broadcast 164.229.1.127 > > ether 00:10:5a:28:ca:1f > > media: autoselect (100baseTX ) status: active > > supported media: autoselect 100baseTX 100baseTX > > 10baseT/UTP 10baseT/UTP 100baseTX > > lp0: flags=8810 mtu 1500 > > faith0: flags=8000 mtu 1500 > > gif0: flags=8010 mtu 1280 > > gif1: flags=8010 mtu 1280 > > gif2: flags=8010 mtu 1280 > > gif3: flags=8010 mtu 1280 > > lo0: flags=8049 mtu 16384 > > inet6 fe80::1%lo0 prefixlen 64 scopeid 0x8 > > inet6 ::1 prefixlen 128 > > inet 127.0.0.1 netmask 0xff000000 > > ppp0: flags=8010 mtu 1500 > > sl0: flags=c010 mtu 552 > > > > > > > > Ben Lavender > > System Administrator, Newsouth Communications > > NCTAMS LANT DET NOLA > > ---------------------------------------- > Content-Type: text/html; charset="iso-8859-1"; name="Attachment: 1" > Content-Transfer-Encoding: quoted-printable > Content-Description: > ---------------------------------------- > > -- > Regards, > > Terry Zink > System Administrator > Metrocon Communications > Phone: (212) 661-6800 x 1553 > ------_=_NextPart_001_01C1030B.B23AE5D4 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable RE: interface aliases and routing

Like this?
xl0: = flags=3D8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu = 1500
        inet6 = fe80::210:5aff:fe28:ca1f%xl0 prefixlen 64 scopeid 0x1
        inet = 164.229.1.72 netmask 0xffffffc0 broadcast 164.229.1.127
        inet = 164.229.1.74 netmask 0xffffffff broadcast 164.229.1.74
        ether = 00:10:5a:28:ca:1f
        media: = autoselect (100baseTX <full-duplex>) status: active
        supported = media: autoselect 100baseTX <full-duplex> 100baseTX 10baseT/UTP = <full-duplex> 10baseT/UTP 100baseTX = <hw-loopback>

This didn't work.

Thanks for the response,
ben

ps--sorry about the html email originally.


> -----Original Message-----
> From: Terry Zink [mailto:tzink@metrocon.com]=
> Sent: Monday, July 02, 2001 10:12 AM
> To: Lavender, Ben
> Cc: freebsd-questions@freebsd.org
> Subject: Re: interface aliases and = routing
>
>
> Hrm. I believe if I;m not mistaken, that = aliases on the nic
> need to have a
> netmask of 255.255.255.255 .. At least, that is = what I need
> to do.  Might
> wish to try that. 
>
>
> On Monday 02 July 2001 10:42, you wrote:
> > I have a FreeBSD 4.2 box currently = running.  Im trying to
> get interface
> > aliases to work properly without much = success.
> >
> > While I seemingly get the interface = configured properly, I can't
> > communicate with different subnets.  = The interface and the
> alias can both
> > communicate with other machines on the = same subnet, but
> only the 'primary'
> > address (in this case, 1.72) will talk = with other subnets.
> >
> > any ideas/information required?
> >
> > ifconfig:
> > xl0: = flags=3D8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu = 1500
> >     inet6 = fe80::210:5aff:fe28:ca1f%xl0 prefixlen 64 scopeid 0x1
> >     inet 164.229.1.72 = netmask 0xffffffc0 broadcast 164.229.1.127
> >     inet 164.229.1.74 = netmask 0xffffffc0 broadcast 164.229.1.127
> >     ether 00:10:5a:28:ca:1f<= /FONT>
> >     media: autoselect = (100baseTX <full-duplex>) status: active
> >     supported media: = autoselect 100baseTX <full-duplex> 100baseTX
> > 10baseT/UTP <full-duplex> = 10baseT/UTP 100baseTX <hw-loopback>
> > lp0: = flags=3D8810<POINTOPOINT,SIMPLEX,MULTICAST> mtu 1500
> > faith0: flags=3D8000<MULTICAST> mtu = 1500
> > gif0: = flags=3D8010<POINTOPOINT,MULTICAST> mtu 1280
> > gif1: = flags=3D8010<POINTOPOINT,MULTICAST> mtu 1280
> > gif2: = flags=3D8010<POINTOPOINT,MULTICAST> mtu 1280
> > gif3: = flags=3D8010<POINTOPOINT,MULTICAST> mtu 1280
> > lo0: = flags=3D8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
> >     inet6 fe80::1%lo0 = prefixlen 64 scopeid 0x8
> >     inet6 ::1 prefixlen = 128
> >     inet 127.0.0.1 netmask = 0xff000000
> > ppp0: = flags=3D8010<POINTOPOINT,MULTICAST> mtu 1500
> > sl0: = flags=3Dc010<POINTOPOINT,LINK2,MULTICAST> mtu 552
> >
> >
> >
> > Ben Lavender
> > System Administrator, Newsouth = Communications
> > NCTAMS LANT DET NOLA
>
> ----------------------------------------
> Content-Type: text/html; = charset=3D"iso-8859-1"; name=3D"Attachment: = 1"
> Content-Transfer-Encoding: = quoted-printable
> Content-Description:
> ----------------------------------------
>
> --
> Regards,
>
> Terry Zink
> System Administrator
> Metrocon Communications
> Phone: (212) 661-6800 x 1553
>

------_=_NextPart_001_01C1030B.B23AE5D4-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 8:38:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id 0449737B403 for ; Mon, 2 Jul 2001 08:38:16 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f62Fc6w77448; Mon, 2 Jul 2001 11:38:06 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 11:38:05 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Subject: php install and ./configure -with-mysql 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 am following the article "Installing Apache and PHP" found in the May/June issue of Daemon News - issue 4. In the article it says to configure apache like so: ./configure -with-mysql -with-apache=../apache_1.3.20 I did this and received the following message at the end of the configure: +--------------------------------------------------------------------+ | *** WARNING *** | | | | You chose to compile PHP with the built-in MySQL support. If you | | are compiling a server module, and intend to use other server | | modules that also use MySQL (e.g, mod_auth_mysql, PHP 3.0, | | mod_perl) you must NOT rely on PHP's built-in MySQL support, and | | instead build it with your local MySQL support files, by adding | | --with-mysql=/path/to/mysql to your configure line. | +--------------------------------------------------------------------+ If I choose to use the --with-mysql=/path/to/mysql, what do I use as my path? I installed mysql via pkg_add. Is the path the path to the executable or header files or what? Thanks Jim find /usr -name mysql\* /usr/local/bin/mysql /usr/local/bin/mysqladmin /usr/local/bin/mysqldump /usr/local/bin/mysqlimport /usr/local/bin/mysqlshow /usr/local/bin/mysqltest /usr/local/bin/mysql_config /usr/local/bin/mysql_convert_table_format /usr/local/bin/mysql_find_rows /usr/local/bin/mysql_fix_privilege_tables /usr/local/bin/mysql_install_db /usr/local/bin/mysql_setpermission /usr/local/bin/mysql_zap /usr/local/bin/mysqlaccess /usr/local/bin/mysqlbinlog /usr/local/bin/mysqlbug /usr/local/bin/mysqld_multi /usr/local/bin/mysqldumpslow /usr/local/bin/mysqlhotcopy /usr/local/etc/rc.d/mysql-server.sh /usr/local/include/mysql /usr/local/include/mysql/mysql.h /usr/local/include/mysql/mysql_com.h /usr/local/include/mysql/mysql_version.h /usr/local/include/mysql/mysqld_error.h /usr/local/info/mysql.info /usr/local/lib/mysql /usr/local/libexec/mysqld ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 8:44:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id 4393737B403 for ; Mon, 2 Jul 2001 08:44:06 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f62Fiau21142; Mon, 2 Jul 2001 11:44:36 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 2 Jul 2001 11:44:36 -0400 (EDT) From: Joe Clarke To: Jim Freeze Cc: Subject: Re: php install and ./configure -with-mysql In-Reply-To: Message-ID: <20010702114324.E21126-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 You should consider installing PHP/Apache from the ports or packages collection. I install from ports, and it has all the hooks built-in. It makes doing this _much_ easier. However, I think the path you need is /usr/local. Joe Clarke On Mon, 2 Jul 2001, Jim Freeze wrote: > Hi: > > I am following the article "Installing Apache and PHP" found in the > May/June issue of Daemon News - issue 4. In the article it says to > configure apache like so: > > ./configure -with-mysql -with-apache=../apache_1.3.20 > > I did this and received the following message at the end of the configure: > +--------------------------------------------------------------------+ > | *** WARNING *** | > | | > | You chose to compile PHP with the built-in MySQL support. If you | > | are compiling a server module, and intend to use other server | > | modules that also use MySQL (e.g, mod_auth_mysql, PHP 3.0, | > | mod_perl) you must NOT rely on PHP's built-in MySQL support, and | > | instead build it with your local MySQL support files, by adding | > | --with-mysql=/path/to/mysql to your configure line. | > +--------------------------------------------------------------------+ > > > If I choose to use the --with-mysql=/path/to/mysql, what do I use as my > path? I installed mysql via pkg_add. Is the path the path to the > executable or header files or what? > > Thanks > > Jim > > > find /usr -name mysql\* > /usr/local/bin/mysql > /usr/local/bin/mysqladmin > /usr/local/bin/mysqldump > /usr/local/bin/mysqlimport > /usr/local/bin/mysqlshow > /usr/local/bin/mysqltest > /usr/local/bin/mysql_config > /usr/local/bin/mysql_convert_table_format > /usr/local/bin/mysql_find_rows > /usr/local/bin/mysql_fix_privilege_tables > /usr/local/bin/mysql_install_db > /usr/local/bin/mysql_setpermission > /usr/local/bin/mysql_zap > /usr/local/bin/mysqlaccess > /usr/local/bin/mysqlbinlog > /usr/local/bin/mysqlbug > /usr/local/bin/mysqld_multi > /usr/local/bin/mysqldumpslow > /usr/local/bin/mysqlhotcopy > /usr/local/etc/rc.d/mysql-server.sh > /usr/local/include/mysql > /usr/local/include/mysql/mysql.h > /usr/local/include/mysql/mysql_com.h > /usr/local/include/mysql/mysql_version.h > /usr/local/include/mysql/mysqld_error.h > /usr/local/info/mysql.info > /usr/local/lib/mysql > /usr/local/libexec/mysqld > > > > ========================================================= > Jim Freeze > jim@freeze.org > --------------------------------------------------------- > No comment at this time. > http://www.freeze.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 Jul 2 8:44:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from q.closedsrc.org (ip233.gte15.rb1.bel.nwlink.com [209.20.244.233]) by hub.freebsd.org (Postfix) with ESMTP id 002E637B405 for ; Mon, 2 Jul 2001 08:44:41 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id 3FF7155407; Mon, 2 Jul 2001 08:29:50 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id 3031951610; Mon, 2 Jul 2001 08:29:50 -0700 (PDT) Date: Mon, 2 Jul 2001 08:29:50 -0700 (PDT) From: Linh Pham To: Jim Freeze Cc: Subject: Re: php install and ./configure -with-mysql 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 2001-07-02, Jim Freeze scribbled: # Hi: # # I am following the article "Installing Apache and PHP" found in the # May/June issue of Daemon News - issue 4. In the article it says to # configure apache like so: # # ./configure -with-mysql -with-apache=../apache_1.3.20 # [snip] # If I choose to use the --with-mysql=/path/to/mysql, what do I use as my # path? I installed mysql via pkg_add. Is the path the path to the # executable or header files or what? According to the PHP Documentation: --- start doc snippet --- PHP 3: Include MySQL support. DIR is the MySQL base install directory, defaults to searching through a number of common places for the MySQL files. PHP 4: Include MySQL support. DIR is the MySQL base directory. If unspecified, the bundled MySQL library will be used. This option is turned on by default. --- end doc snippet --- Hope this helps a little :) -- Linh Pham [lplist@closedsrc.org] // 404b - Brain not found To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 8:48:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web13905.mail.yahoo.com (web13905.mail.yahoo.com [216.136.175.68]) by hub.freebsd.org (Postfix) with SMTP id 112DA37B409 for ; Mon, 2 Jul 2001 08:48:55 -0700 (PDT) (envelope-from dennywhite@yahoo.com) Message-ID: <20010702154855.20874.qmail@web13905.mail.yahoo.com> Received: from [64.124.150.145] by web13905.mail.yahoo.com; Mon, 02 Jul 2001 08:48:55 PDT Date: Mon, 2 Jul 2001 08:48:55 -0700 (PDT) From: Dennis White Subject: DMESG error message on boot 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 Trying to find out what the following error message means when I'm booting my laptop, running freebsd 4.3 Local package intialized :July 2 10:26:04 mobile2 /kernel: ed1: DAD detected duplicate IPv6 address e08:000a::02e0:98ff:fe8a:a1fc: 1 NS, 0 NA Jul 2 10:26:04 mobile2 /kernel: ed1: DAD complete for fe80:000a::02e0:98ff:fe8a: a1fc -duplicate found Jul 2 10:26:04 mobile2 /kernel: ed1: manual intervention required Thanks for any help. Really just looking for a push in the right direction as to what to read & where to find it. ===== dennywhite@yahoo.com ICQ# 759271 ============================================================ Unix is like a wigwam -- no Gates, no Windows, and an Apache inside. ============================================================ __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Mon Jul 2 8:53:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from antares.gecadsoftware.com (antares.gecadsoftware.com [193.230.167.76]) by hub.freebsd.org (Postfix) with SMTP id 37DD537B401 for ; Mon, 2 Jul 2001 08:53:40 -0700 (PDT) (envelope-from teo@gecadsoftware.com) Received: (qmail 78955 invoked from network); 2 Jul 2001 15:54:52 -0000 Received: from unknown (HELO taz.gecadsoftware.com) (193.230.245.17) by antares.gecadsoftware.com with SMTP; 2 Jul 2001 15:54:51 -0000 Received: from teo.gecadsoftware.com ([193.230.245.169]) by taz.gecadsoftware.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id N7KC0YL2; Mon, 2 Jul 2001 18:51:35 +0300 Received: (qmail 12545 invoked by uid 500); 2 Jul 2001 15:51:21 -0000 Date: Mon, 2 Jul 2001 18:51:21 +0300 From: teo@gecadsoftware.com To: Subject: Re: Is it possible to get more power from a FreeBSD system running Apache/MySQL/PHP ? Message-ID: <20010702185121.D11890@gecadsoftware.com> Reply-To: teo@gecadsoftware.com Mail-Followup-To: teo@gecadsoftware.com, References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.15i In-Reply-To: ; from nadir@attractive.com on Mon, Jul 02, 2001 at 03:13:24PM +0200 Organization: GeCAD Software Comment: Worry less, RAV is watching! X-Operating-System: Linux 2.2.16 i686 up 20:55 Sender: owner-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 Nadir! On Mon, 02 Jul 2001, Nadir@Attractive wrote: > I have few questions: > > 1. Anyone knows if Apache 2.0 can handle more visitors than Apache 1.3.x > in the current configuration that we have? Apache 2.0 is suppose to be multithreaded, and the preliminary benchmarks I saw were promising, but Apache 1.3 is tough enough. > 2. Can I optimize the FreeBSD system that we currently have even further > to get more power of the server? I have not much experience w/ FreeBSD (newcomer to it) but I can share some of my experience > 3. The MAXUSERS configuration parameter is set to 256, and this is the > kernel's setting now. If I set it to be larger, say 1024, will it yield > better results? that is one of the points. you'll have to recompile the kernel for that, and don't worry, you'll get an improved version, cuz you'll keep in only what you need. then take a look at sysctl. You have several paramenters that can be adjusted, namely number of open files per process, size of network buffers etc. You'll have to tune it for your configuration (e.g. for network performance you have several tool in FreeBSD for that, check the packages) > 4. Personally I think that this server can do MUCH better, and maybe the > server's configuration is inaccurate, or insufficient. Any suggestions > where to start? 1. Tune Apache 2. Tune MySQL 3. Tune PHP 1. Apache - Check Apacheweek.com. I think there I saw once some recomandations e.g. HostnameLookups On - do you really need to have the hostnames in the logs? remember that this mean a DNS query for each client. Turn it off, and have the logs analized offline, if you want the FQDNs of the visitors ExtendedStatus On - another resource consuming directive. Turn it off on production servers. FollowSymLinks - try to avoid it; if you don't have any symlinks, taek it out. Another tricks for high trafic would be: Logging - what do we actually need logged? There are a lot of pages out there designed with Dreamwaver or other tools that produce thousands of mages, and a complete page has a correspondent in lots of entries in the logs, 99.99% of them regarding images. I bet a check on request is faster than a disk write, so SetEnvIf Request_URI "\.(gif|jpe?g)$" dont_log=1 CustomLog /var/log/www/www.ravantivirus.com-access_log common env=!dont_log Headers - there aren't much, but they are something http.conf - ServerTokens ProductOnly php.ini - expose_php = off Images delivery - I've heard about a nice trick to speed up images delivery. You set up a separate sever for images, e.g. for www.foobar.com, have images.foobar.com, which only delivers images this should be a separate server, namely a trimmed down Apache, statically link which eventually to use MapFile to map most requested files (e.g. the one from menus etc.) or thttpd, a faster server for statical content. Note that if you set a cookie it will be sent along even in the requests for images, so if you have lots of big and yummy cookies, they will eat bandwidth on each of that miriad of requests for the fancy menus your designer(s) made. Having a separate domain for images cuts them out, cause they won't be sent anylonger (for an obvious reason, i.e. different "domain") 2. PHP - Compile PHP statically into Apache (--with-apache, not --with-apxs) so you'll save php loading time. - Your process grew that big because the memory allocated by PHP isn't return to the system, so the httpd process grows in time. You may try to use --with-memory-limit when configuring php to impose a memory limit or better: - when doing large queries, don't fetch them into arrays, but just use mysql_fetch_array() as you need and don't forget mysql_free_result() at the end. - have a code review and profiling, to see where it spends more time and which scripts eat up lots of memory. Generally, it's because of db queries. 1+2. Compressed output - can be done either with mod_gzip.c or with a Rewrite trick or at PHP level; long story and interesting :) on short, for clients that say "Accept-Encoding: gzip" in request headers you can send compressed content. PHP as of 4.0.5 (IIRC) has a working ob_gzhanlder, and you can do it at PHP level. 3. MySQL - I don't have much experience w/ MySQL tunning parameters, so not much to say on it; - under support-files in MySQL distribution you have some samples of my.cnf for different needs. Take a look, it might be that my-large.cnf or my-huge.cnf can suit your needs (just copy it to /etc/my.cnf) - other stuff I remember is that MySQL performs better on "reads", so try to avoid inserts or use LOW_PRIORITY. Optimize your most common tables often (use isamchk), you'll "feel" the difference. Pay special atention to indexes (read "optimization tricks" from mySQL manual - spoiler: have an index for any field appearing in where clauses) 4. Network Probably other FreeBSD wizards have tips on tunning network throughput hope it helps. -- teodor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 8:57:18 2001 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 66C6837B403 for ; Mon, 2 Jul 2001 08:57:16 -0700 (PDT) (envelope-from hawk@fac13.ds.psu.edu) Received: from fac13.ds.psu.edu (localhost.ds.psu.edu [127.0.0.1]) by fac13.ds.psu.edu (8.11.4/8.11.3) with ESMTP id f62FvCi06300; Mon, 2 Jul 2001 11:57:13 -0400 (EDT) (envelope-from hawk@fac13.ds.psu.edu) Message-Id: <200107021557.f62FvCi06300@fac13.ds.psu.edu> X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: Christian Lacunza , freebsd-questions@FreeBSD.ORG Subject: Re: ok, where's fvm2rc go? In-Reply-To: Your message of "Wed, 27 Jun 2001 22:50:04 PDT." <15162.50572.200073.232255@hp0.pacbell.net> From: dochawk@psu.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 02 Jul 2001 11:57:12 -0400 Sender: owner-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 Queried, > hey ... i have a question. > > did the boot-time fsck create your lost+found directories, > or were they pre-existing? They were created automatically. I don't know whether it was at boot or previously, but the system did it. > i ask because every time the power goes out around here, > i get a couple cleared inodes, but i don't see any lost and > found directories. That's normal. Generally it's just a matter of clearing them, without having lostsomething. My misadventures caused an overwrite, leading to the lost files. hawk They were -- Prof. Richard E. Hawkins, Esq. /"\ 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 Jul 2 9: 0:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (dav27.law15.hotmail.com [64.4.22.84]) by hub.freebsd.org (Postfix) with ESMTP id 49FC737B405 for ; Mon, 2 Jul 2001 09:00:14 -0700 (PDT) (envelope-from ogomez0@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 2 Jul 2001 09:00:10 -0700 X-Originating-IP: [216.219.33.245] From: "Oswald Osmar Gomez LLovera" To: Subject: question from venezuela Date: Mon, 2 Jul 2001 12:00:42 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0015_01C102EE.9E965990" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Message-ID: X-OriginalArrivalTime: 02 Jul 2001 16:00:10.0048 (UTC) FILETIME=[120FF400:01C10310] Sender: owner-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_0015_01C102EE.9E965990 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable hi....i need your help... i've a very important problem... i am using freebsd version 4.3... when my computer start the boot process....display the next message... FreeBSD/i386 bootstrap loader, Revision 0.8 (jkh@narf.osd.bsdi.com, Sat Apr 21 08:46:19 GMT 2001) Loading /boot/defaults/loader.conf Unable to load Kernel: Aborted! / hit [Enter] to boot inmediately, or any other key for command prompt, Booting [Kernel]... can't load 'Kernel' can't load 'Kernel.old' Type '?' for a list of commands, 'help' for more detailed help. ok please...i need your help.. is there a process to load the Kernel and save the information? what is? thanks.... ------=_NextPart_000_0015_01C102EE.9E965990 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
hi....i need your help...
i've a very important = problem...
i am using freebsd version = 4.3...
when my computer start the boot = process....display=20 the next message...
 
FreeBSD/i386 bootstrap loader, Revision = 0.8
(jkh@narf.osd.bsdi.com, Sat Apr = 21=20 08:46:19 GMT 2001)
Loading = /boot/defaults/loader.conf
Unable to load Kernel:
Aborted!
/
hit [Enter] to boot inmediately, or any = other key=20 for command prompt,
Booting [Kernel]...
can't load 'Kernel'
can't load 'Kernel.old'
 
Type '?' for a list of commands, 'help' = for more=20 detailed help.
ok
 
please...i need your = help..
is there a process to load the Kernel = and save the=20 information?
what is?
 
thanks....
 
------=_NextPart_000_0015_01C102EE.9E965990-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 9: 1:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web13006.mail.yahoo.com (web13006.mail.yahoo.com [216.136.174.16]) by hub.freebsd.org (Postfix) with SMTP id 712E237B406 for ; Mon, 2 Jul 2001 09:01:12 -0700 (PDT) (envelope-from pepsikid83@yahoo.com) Message-ID: <20010702160112.25000.qmail@web13006.mail.yahoo.com> Received: from [209.162.21.30] by web13006.mail.yahoo.com; Mon, 02 Jul 2001 09:01:12 PDT Date: Mon, 2 Jul 2001 09:01:12 -0700 (PDT) From: "Zac M. Speidel" Subject: FreeBSD 4.0-release installation problems 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 A few days ago I got my Dell 8100 (1.5 ghz and 128 Mb of ram) in the mail. Naturally I desided to install Freebsd 4.0 on it along with preinstalled WindowsME. So I used Partition Magic to cut the 40 gig windows partition and add a partition for freebsd (about 5 gigs allocated). The installation ran pretty smoothly, it probed my hardware fine and everything seemed to be working ok. During the installation process freebsd prompted me to choose a boot loader, I choose the freebsd boot manager (booteasy). When I rebooted my machine The boot easy prompt came on F1 for windows and F2 for freebsd, I hit F2 because I wanted freebsd to load. When I hit "F2" all I heard was my internal speaker beep - one of those annoying "warning beeps" and nothing attempted to load. when I hit F1 windows loaded fine. I began thinking it was some sort of BIOS configuration problem so I went in bios and no luck there eather.. I have heard about some system BIOS having an issue with exceeding 1024 cylinders or whatnot, but this is for OLD machines not new 1.5 ghz machine.. If anyone has information on my problem or can offer suggestions please email me... I will take you out for a cup of coffee or lunch if you help me get freebsd running (joking) anyways have a great summer bsd cadets and stay away from the heat.. Scared Dell user, Zac Speidel Please email me: Pepsikid83@yahoo.com __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Mon Jul 2 9: 9:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pike.netdoor.com (netdoor.com [208.137.128.6]) by hub.freebsd.org (Postfix) with ESMTP id D355837B403 for ; Mon, 2 Jul 2001 09:09:34 -0700 (PDT) (envelope-from root@katana.amberskogg.dns2go.com) Received: from katana.amberskogg.dns2go.com (port18.tup.netdoor.com [208.137.140.82]) by pike.netdoor.com (8.9.3/8.9.3) with SMTP id LAA01355; Mon, 2 Jul 2001 11:09:17 -0500 (CDT) Content-Type: text/plain; charset="iso-8859-1" From: Jim Couch Reply-To: jcouch@netdoor.com Organization: AmberSkogg Development To: "Zac M. Speidel" , freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD 4.0-release installation problems Date: Mon, 2 Jul 2001 11:08:58 -0500 X-Mailer: KMail [version 1.2] References: <20010702160112.25000.qmail@web13006.mail.yahoo.com> In-Reply-To: <20010702160112.25000.qmail@web13006.mail.yahoo.com> MIME-Version: 1.0 Message-Id: <01070211085801.17304@katana.amberskogg.dns2go.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 I Believe that FreeBSD has an issue with it's boot or root partition being beyond the 1024 cylinder irrespective of what your bios will handle. Jim C On Monday 02 July 2001 11:01, Zac M. Speidel wrote: > I have heard about some system BIOS having an > issue with exceeding 1024 cylinders or whatnot, but > this is for OLD machines not new 1.5 ghz machine.. If > anyone has information on my problem or can offer > suggestions please email me... I will take you out for > a cup of coffee or lunch if you help me get freebsd > running (joking) anyways have a great summer bsd > cadets and stay away from the heat.. -- Real computer scientists don't write code. They occasionally tinker with `programming systems', but those are so high level that they hardly count (and rarely count accurately; precision is for applications.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 9:12:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from my.usask.ca (my.usask.ca [128.233.65.7]) by hub.freebsd.org (Postfix) with ESMTP id 802E237B401 for ; Mon, 2 Jul 2001 09:12:26 -0700 (PDT) (envelope-from kek971@mail.usask.ca) Received: (from nobody@localhost) by my.usask.ca (8.11.0/8.11.0) id f62GCIJ07182; Mon, 2 Jul 2001 10:12:18 -0600 To: Jim Freeze Subject: Re: php install and ./configure -with-mysql Message-ID: <994090337.3b409d617fd3e@my.usask.ca> Date: Mon, 02 Jul 2001 10:12:17 -0600 (CST) From: Cc: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 2.3.6-cvs X-WebMail-Service: My.USask.CA X-Originating-IP: 24.71.108.209 Sender: owner-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 them "static type"... i installed whole things with sources... the sequence of installing them as follows : 1.mysql 2.mod_ssl 3.mod_perl 4.apache(pre) 5.php4 6.zend-optimizer 7.apache 8.jdk1.2 9.tomcat ...in detail 1mysql : ./configure --prefix=/usr/local/mysql 2.mod_ssl: ./configure --with-apache=/path/to/apache 3.mod_perl:perl Makefile.PL APACHE_SRC=/path/to/apache \ DO_HTTPD=1 USE_APACI=1 PREP_HTTPD=1 EVERYTHING=1 4.apache(pre): ./configure --prefix=/path/to/apache 5.php4: ./configure --with-mysql=/usr/local/mysql --with-apache=/path/to/apache \ ...(add some more options)... 6.apache:./configure --prefix=/path/to/apache --activate-module=src/modules/perl/libperl.a \ --activate-module=src/modules/php4/libphp4.a ...and you can get some good references about tomcat and jdbc at "http://kjkoster.org/java/".... also you'd be satisfied with your apache on freebsd box... "Operating system choice is largely a matter of local concerns. But a general guideline is to always apply the latest vendor TCP/IP patches. HTTP serving completely breaks many of the assumptions built into Unix kernels up through 1994 and even 1995. Good choices include recent FreeBSD, and Linux. " Apache reference good luck To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 9:23:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from moutvdom00.kundenserver.de (moutvdom00.kundenserver.de [195.20.224.149]) by hub.freebsd.org (Postfix) with ESMTP id 30E9C37B403 for ; Mon, 2 Jul 2001 09:23:48 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.219] (helo=mrvdom03.kundenserver.de) by moutvdom00.kundenserver.de with esmtp (Exim 2.12 #2) id 15H6UE-0002yy-00 for freebsd-questions@freebsd.org; Mon, 2 Jul 2001 18:23:46 +0200 Received: from pd9017298.dip.t-dialin.net ([217.1.114.152] helo=pukruppa.de) by mrvdom03.kundenserver.de with esmtp (Exim 2.12 #2) id 15H6TU-0002D5-00 for freebsd-questions@freebsd.org; Mon, 2 Jul 2001 18:23:00 +0200 Message-ID: <3B40BC4C.314242BC@pukruppa.de> Date: Mon, 02 Jul 2001 18:24:12 +0000 From: "P. U. (Uli) Kruppa" X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: pine/sendmail: relaying prohibited 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, when I try to send an email from pine I get this message: Mail not send: relaying to
prohibited by administrator I am on a single-user machine, i. e. I am the administrator and I did not - as far as I know - prohibit anything. I guess there is something wrong with sendmail-configuration? (Oh, I am writing this in netscape-mail. It seems to work fine.) Thanx for any hints. Uli. -- *--------------------------------------* | www.pukruppa.de www.2000d.de | | Wuppertal - Germany | *--------------------------------------* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 9:32:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta8.srv.hcvlny.cv.net (mta8.srv.hcvlny.cv.net [167.206.5.23]) by hub.freebsd.org (Postfix) with ESMTP id 8605637B403 for ; Mon, 2 Jul 2001 09:32:09 -0700 (PDT) (envelope-from trini0@optonline.net) Received: from optonline.net (ool-18be012f.dyn.optonline.net [24.190.1.47]) by mta8.srv.hcvlny.cv.net (iPlanet Messaging Server 5.0 Patch 2 (built Dec 14 2000)) with ESMTP id <0GFU00ANITW5Z9@mta8.srv.hcvlny.cv.net> for questions@FreeBSD.ORG; Mon, 02 Jul 2001 12:31:17 -0400 (EDT) Date: Mon, 02 Jul 2001 12:31:27 -0400 From: Gerard Samuel Subject: Re: php install and ./configure -with-mysql To: Jim Freeze Cc: FreeBSD Questions Message-id: <3B40A1DE.BEBBD078@optonline.net> MIME-version: 1.0 X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT X-Accept-Language: en References: Sender: owner-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 Freeze wrote: > Hi: > > I am following the article "Installing Apache and PHP" found in the > May/June issue of Daemon News - issue 4. In the article it says to > configure apache like so: > > ./configure -with-mysql -with-apache=../apache_1.3.20 > > I did this and received the following message at the end of the configure: > +--------------------------------------------------------------------+ > | *** WARNING *** | > | | > | You chose to compile PHP with the built-in MySQL support. If you | > | are compiling a server module, and intend to use other server | > | modules that also use MySQL (e.g, mod_auth_mysql, PHP 3.0, | > | mod_perl) you must NOT rely on PHP's built-in MySQL support, and | > | instead build it with your local MySQL support files, by adding | > | --with-mysql=/path/to/mysql to your configure line. | > +--------------------------------------------------------------------+ Install it from the ports, way easy, and you can select different options for the compile with it..... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 9:54:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id 584BB37B401 for ; Mon, 2 Jul 2001 09:54:26 -0700 (PDT) (envelope-from so@server.i-clue.de) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id TAA25172; Mon, 2 Jul 2001 19:03:40 +0200 Message-ID: <3B40A7D4.3223CB49@i-clue.de> Date: Mon, 02 Jul 2001 18:56:52 +0200 From: Christoph Sold Reply-To: questions@FreeBSD.org X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: Oswald Osmar Gomez LLovera Cc: questions@FreeBSD.org Subject: Re: question from venezuela 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 > Oswald Osmar Gomez LLovera schrieb: > > hi....i need your help... > i've a very important problem... > i am using freebsd version 4.3... > when my computer start the boot process....display the next message... > > FreeBSD/i386 bootstrap loader, Revision 0.8 > (jkh@narf.osd.bsdi.com, Sat Apr 21 08:46:19 GMT 2001) > Loading /boot/defaults/loader.conf > Unable to load Kernel: > Aborted! > / > hit [Enter] to boot inmediately, or any other key for command prompt, > Booting [Kernel]... > can't load 'Kernel' > can't load 'Kernel.old' > > Type '?' for a list of commands, 'help' for more detailed help. > ok > > please...i need your help.. > is there a process to load the Kernel and save the information? > what is? You have not installed everything needed to boot in a place the bootloader searches for it. Please be more specific what you did before this error popped up. Anyhow, if your system just gets configured, it's best to start over fresh. HTH -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 9:54:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id 0EA6A37B409 for ; Mon, 2 Jul 2001 09:54:40 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f62GsSw80066; Mon, 2 Jul 2001 12:54:28 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 12:54:28 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Gerard Samuel Cc: FreeBSD Questions Subject: Re: php install and ./configure -with-mysql In-Reply-To: <3B40A1DE.BEBBD078@optonline.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, 2 Jul 2001, Gerard Samuel wrote: > Jim Freeze wrote: > > > Hi: > > > > I am following the article "Installing Apache and PHP" found in the > > May/June issue of Daemon News - issue 4. In the article it says to > > configure apache like so: > > > > ./configure -with-mysql -with-apache=../apache_1.3.20 > > > > I did this and received the following message at the end of the configure: > > +--------------------------------------------------------------------+ > > | *** WARNING *** | > > | | > > | You chose to compile PHP with the built-in MySQL support. If you | > > | are compiling a server module, and intend to use other server | > > | modules that also use MySQL (e.g, mod_auth_mysql, PHP 3.0, | > > | mod_perl) you must NOT rely on PHP's built-in MySQL support, and | > > | instead build it with your local MySQL support files, by adding | > > | --with-mysql=/path/to/mysql to your configure line. | > > +--------------------------------------------------------------------+ > > Install it from the ports, way easy, and you can select different options for > the compile with it..... I don't see apache 1.3.20 in the ports. (1.3.19 latest) I also don't see php 4.0.6 in the ports (4.0.4 is latest) The ports seems dated. If I choose to use the older versions in the ports, how do I select the different options. All I can see from the pkg_add man page is pkg_add -p prefix package_name Thanks Jim ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 10: 6:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smithers.stomped.com (smithers.stomped.com [216.17.56.2]) by hub.freebsd.org (Postfix) with SMTP id 453C537B405 for ; Mon, 2 Jul 2001 10:06:37 -0700 (PDT) (envelope-from malhavoc@stomped.com) Received: (qmail 20683 invoked by uid 1041); 2 Jul 2001 17:06:43 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 2 Jul 2001 17:06:43 -0000 Date: Mon, 2 Jul 2001 12:06:43 -0500 (CDT) From: Jason Nugent To: "P. U. (Uli) Kruppa" Cc: Subject: Re: pine/sendmail: relaying prohibited In-Reply-To: <3B40BC4C.314242BC@pukruppa.de> 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 Just curious, but what is the outgoing domain on messages you send via pine? I've seen a few misconfigured machines that use localhost.localdomain as the outgoing domain for pine, and sendmail will reject messages originating from this domain by default. If this is your problem, the easiest way to fix it in pine is to go into your setup section and change the user-domain value to something that sendmail will accept. HTH, Jason On Mon, 2 Jul 2001 at 12:05pm, P. U. (Uli) Kruppa thought about > Hello, > > when I try to send an email from pine I get this > message: > > Mail not send: relaying to
prohibited by administrator > > I am on a single-user machine, i. e. I am the administrator and > I did not - as far as I know - prohibit anything. > > I guess there is something wrong with sendmail-configuration? > (Oh, I am writing this in netscape-mail. It seems to work fine.) > > Thanx for any hints. > > Uli. > -- > *--------------------------------------* > | www.pukruppa.de www.2000d.de | > | Wuppertal - Germany | > *--------------------------------------* > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > ---------------------- Jason Nugent Aka MalHavoc Server Programmer and Administrator S T O M P E D . C O M For PGP public key: http://malhavoc.stomped.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 10: 9:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-141-144.mmcable.com [24.27.141.144]) by hub.freebsd.org (Postfix) with SMTP id 4F37537B403 for ; Mon, 2 Jul 2001 10:09:16 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 38655 invoked by uid 100); 2 Jul 2001 17:09:15 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15168.43707.321778.556363@guru.mired.org> Date: Mon, 2 Jul 2001 12:09:15 -0500 To: Jim Freeze Cc: questions@freebsd.org Subject: Re: php install and ./configure -with-mysql In-Reply-To: <22810106@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\ Sender: owner-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 Freeze types: > On Mon, 2 Jul 2001, Gerard Samuel wrote: > I don't see apache 1.3.20 in the ports. (1.3.19 latest) > I also don't see php 4.0.6 in the ports (4.0.4 is latest) > > The ports seems dated. Your ports distribution is what's dated. The ones I picked up yesterday include apache 1.3.20 and php 4.0.6. > If I choose to use the older versions in the ports, how do I select the > different options. > > All I can see from the pkg_add man page is > > pkg_add -p prefix package_name Or maybe you're looking at packages instead of the ports tree. If you use ports, you can pass configuration args via the CONFIGURE_ARGS variable. 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 Jul 2 10:19:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from unix.megared.net.mx (megamail.megared.com.mx [200.52.207.52]) by hub.freebsd.org (Postfix) with ESMTP id E1C2837B405; Mon, 2 Jul 2001 10:19:51 -0700 (PDT) (envelope-from ales@megared.net.mx) Received: from Alesito (ales.corp.megared.net.mx [200.52.193.2]) by unix.megared.net.mx (8.11.0/8.11.0) with SMTP id f62H7JI63994; Mon, 2 Jul 2001 12:07:19 -0500 (CDT) (envelope-from ales@megared.net.mx) Message-ID: <00c501c1031b$20b64120$d3620a0a@megared.net.mx> From: "Alejandro A. Ramirez" To: "Jonathan M. Slivko" , "Dimuthu Bandara" Cc: , "Soren Schmidt" , References: Subject: Re: IBM Netfinity 5000 Problem (ATA Driver Bug) Date: Mon, 2 Jul 2001 12:19:17 -0500 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 There is actually a bug in the ATA driver since 4.X branch came out, I have been having this problem with 4.0, 4.1, 4.2, and 4.3, it always hangs in there, and sometimes gives me a fatal trap, I have wrote several times to the author of the driver, sendeing him a boot -v, fatal traps, and all of those things, he replied once to try a patch, but it didnt worked and I have never heard of him again (Im copying him in this mail). You cant use the cdrom in the Netfinitys 5000´s, you will have to install the system with floppy disks. Greetings... Ales ----- Original Message ----- From: "Jonathan M. Slivko" To: "Dimuthu Bandara" Cc: Sent: Saturday, June 30, 2001 6:00 PM Subject: Re: IBM Netfinity 5000 Problem > Did you burn the ISO from ftp.freebsd.org? You could have gotten a bad > burn, thats what it looks like. -- Jonathan > > \|||/ > (o o) > /-----------------------------ooO-(_)-Ooo----------------------------\ > | Jonathan M. Slivko E-Mail: jslivko@jslivko.org | > | IRC Nick: optix` Backup: js43064n@pace.edu | > | AIM/AOL: JMSNY2001 Web : http://www.jslivko.org | > |--------------------------------------------------------------------| > | "History teaches us that days like this are best spent in bed" | > \--------------------------------------------------------------------/ > > > On Sat, 30 Jun 2001, Dimuthu Bandara wrote: > > > Hi, > > > > I am trying to install FreeBSD 4.3 Release on IBM Netfinity 5000 server. It > > all went fine until the files system creation process completes. Then it > > gives me following error. I think it's something to do with CD-ROM but I > > tried with a another brand new CD-ROM drive but the result is the same.. > > Please help me on this matter.. > > > > Here is my error messages .. > > > > Blue screeen continues until "All Filessytems information written > > successfully" and hangs. > > screen 2 (alt f2) shows more information: > > > > Debug Generating /etc/fstab file > > acd0:READ_TOC command timeout .. resetting > > ata0:Resetting devices .. done > > acd0:read data overrun 12/0 > > acd0: READ_BIG command timeout .. resetting > > ata0: reesetting devices .. done > > > > The last two messages repeat about 5 times and hangs. > > > > > > > > Could you please help me on this problem... > > > > Thanks a lot.. > > > > Dim > > _________________________________________________________________________ > > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 10:20:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from rannoch.demon.co.uk (rannoch.demon.co.uk [158.152.110.117]) by hub.freebsd.org (Postfix) with ESMTP id 73D3B37B401 for ; Mon, 2 Jul 2001 10:20:27 -0700 (PDT) (envelope-from apbran@rannoch.demon.co.uk) Received: (from apb@localhost) by rannoch.demon.co.uk (8.11.4/8.10.1) id f62HFEt24000; Mon, 2 Jul 2001 18:15:14 +0100 (BST) Date: Mon, 2 Jul 2001 18:15:13 +0100 From: Paul Branston To: "P. U. (Uli) Kruppa" Cc: freebsd-questions@freebsd.org Subject: Re: pine/sendmail: relaying prohibited Message-ID: <20010702181513.E27829@rannoch.demon.co.uk> References: <3B40BC4C.314242BC@pukruppa.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B40BC4C.314242BC@pukruppa.de>; from root@pukruppa.de on Mon, Jul 02, 2001 at 06:24:12PM +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, Jul 02, 2001 at 06:24:12PM +0000, P. U. (Uli) Kruppa wrote: > Hello, > > when I try to send an email from pine I get this > message: > > Mail not send: relaying to
prohibited by administrator > > I am on a single-user machine, i. e. I am the administrator and > I did not - as far as I know - prohibit anything. > > I guess there is something wrong with sendmail-configuration? > (Oh, I am writing this in netscape-mail. It seems to work fine.) > > Thanx for any hints. what's /var/log/maillog say about it ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 10:29:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id 58C6F37B403 for ; Mon, 2 Jul 2001 10:29:48 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f62HUL021245; Mon, 2 Jul 2001 13:30:21 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 2 Jul 2001 13:30:21 -0400 (EDT) From: Joe Clarke To: Jim Freeze Cc: Gerard Samuel , FreeBSD Questions Subject: Re: php install and ./configure -with-mysql In-Reply-To: Message-ID: <20010702132955.Q21126-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 Make sure you update your ports tree with cvsup. The latest version of apache and PHP are in there. Joe Clarke On Mon, 2 Jul 2001, Jim Freeze wrote: > On Mon, 2 Jul 2001, Gerard Samuel wrote: > > > Jim Freeze wrote: > > > > > Hi: > > > > > > I am following the article "Installing Apache and PHP" found in the > > > May/June issue of Daemon News - issue 4. In the article it says to > > > configure apache like so: > > > > > > ./configure -with-mysql -with-apache=../apache_1.3.20 > > > > > > I did this and received the following message at the end of the configure: > > > +--------------------------------------------------------------------+ > > > | *** WARNING *** | > > > | | > > > | You chose to compile PHP with the built-in MySQL support. If you | > > > | are compiling a server module, and intend to use other server | > > > | modules that also use MySQL (e.g, mod_auth_mysql, PHP 3.0, | > > > | mod_perl) you must NOT rely on PHP's built-in MySQL support, and | > > > | instead build it with your local MySQL support files, by adding | > > > | --with-mysql=/path/to/mysql to your configure line. | > > > +--------------------------------------------------------------------+ > > > > Install it from the ports, way easy, and you can select different options for > > the compile with it..... > > I don't see apache 1.3.20 in the ports. (1.3.19 latest) > I also don't see php 4.0.6 in the ports (4.0.4 is latest) > > The ports seems dated. > > If I choose to use the older versions in the ports, how do I select the > different options. > > All I can see from the pkg_add man page is > > pkg_add -p prefix package_name > > Thanks > Jim > > ========================================================= > Jim Freeze > jim@freeze.org > --------------------------------------------------------- > No comment at this time. > http://www.freeze.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 Jul 2 10:37:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sydney.worldwide.lemis.com (pixpat.austin.ibm.com [192.35.232.241]) by hub.freebsd.org (Postfix) with ESMTP id 5585A37B405 for ; Mon, 2 Jul 2001 10:37:11 -0700 (PDT) (envelope-from grog@sydney.worldwide.lemis.com) Received: (from grog@localhost) by sydney.worldwide.lemis.com (8.11.3/8.9.3) id f621DRm00472; Sun, 1 Jul 2001 20:13:27 -0500 (CDT) (envelope-from grog) Date: Sun, 1 Jul 2001 20:13:27 -0500 From: Greg Lehey To: "Andrew C . Hornback" , Alexandr Alov , Linh Pham Cc: freebsd-questions@FreeBSD.org Subject: Number of processors for SMP (was: Question of day.) Message-ID: <20010701201327.B418@sydney.worldwide.lemis.com> References: <01063023314202.14971@max.myhome.ru> <01063023314202.14971@max.myhome.ru> <004801c101d3$ba4cb100$0e00000a@tomcat> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <004801c101d3$ba4cb100$0e00000a@tomcat>; from hornback@wireco.net on Sat, Jun 30, 2001 at 10:15:41PM -0400 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 Saturday, 30 June 2001 at 22:15:41 -0400, Andrew C. Hornback wrote: > On Saturday, June 30, 2001 2:54 PM, Linh Pham wrote: >> To: Alexandr Alov >> Cc: freebsd-questions@FreeBSD.org >> Subject: Re: Question of day. >> >> >> On 2001-06-30, Alexandr Alov scribbled: >> >> # What maximum quantity of processors can support FreeBSD 4.3 ? >> >> I've seen FreeBSD 4.x installations with four Intel Xeon processors... >> but with the current SMP code, you probably won't be able to take >> complete advantage of all four processors. SMPng in FreeBSD 5.x is >> supposed to take SMP performance to a much higher notch. >> >> Haven't been able to get my hands on a eight-way server yet :) > > I've seen FreeBSD 4.2-Release running on a 6 way machine, and this was > about 5 months ago. Worked like a charm, and a good thing too, since I'm > building one of these "monsters" myself... > > Given the technology that's out there, the most IA processors > I've ever heard of in a machine would be the new Unisys CMP-7000 > (Model number might be wrong) with up to either 32 or 64 processors > per box... needless to say, it'll be a while before I get one of > those as a workstation. *evil grin* I don't think there's any particular hard limit in the number of processors. In general, the incremental benefit of adding more processors will diminish as you increase the number. I'd guess that 8 processors will work, but that the 32/64 processor machines will not work for reasons not directly related to the number of processors. On Saturday, 30 June 2001 at 23:21:33 +0400, Alexandr Alov wrote: >> I've seen FreeBSD 4.x installations with four Intel Xeon processors... >> but with the current SMP code, you probably won't be able to take >> complete advantage of all four processors. SMPng in FreeBSD 5.x is >> supposed to take SMP performance to a much higher notch. >> >> Haven't been able to get my hands on a eight-way server yet :) > > Thank for the answer. > Only four? > In general that is necessary eight. > How with such quantity ? It depends on what you want to do with them. The real issue is contention for the kernel. If you are doing compute-bound work, the additional CPUs will be very useful. If you're I/O bound, you'll quickly reach the point of diminishing returns. On Saturday, 30 June 2001 at 12:25:31 -0700, Linh Pham wrote: > On 2001-06-30, Alexandr Alov scribbled: > > # Thank for the answer. > # Only four? > > You can probably get FreeBSD to install on 8+ processor servers, but > with my experience... I have only worked with machines with four > processors. > > # In general that is necessary eight. > > Remember, the standard version of Windows 2000 only handles up to four > processors ;-) Well, I didn't know that, but I can't see that it's very relevant. -- 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 Jul 2 10:52: 0 2001 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 6A33137B406 for ; Mon, 2 Jul 2001 10:51:58 -0700 (PDT) (envelope-from oberman@ptavv.es.net) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (8.10.1/8.10.1) with ESMTP id f62Hp7c03122; Mon, 2 Jul 2001 10:51:07 -0700 (PDT) Message-Id: <200107021751.f62Hp7c03122@ptavv.es.net> To: guardian@dark-rune.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Problems with SSH.. sometimes In-reply-to: Your message of "Mon, 02 Jul 2001 21:57:21 +1000." <22247.203.31.48.3.994075041.squirrel@www.dark-rune.com> Date: Mon, 02 Jul 2001 10:51:07 -0700 From: "Kevin Oberman" Sender: owner-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 message indicates that sshd has already started on your system. Since I think 4.0 was the first to include OpenSSH as a standard part of the system, it may have some odd behaviors. It is certainly an old version of OpenSSH. Have you installed any of the ssh ports? (OpenSSH or SSH)? If so, there is an sshd startup script in /usr/local/etc/rc.d as well as the "standard" SSH startup in the /etc/rc. Please remove any layered ssh from the system to avoid serious confusion down the line. Also, think seriously about upgrading to some recent release. 4.0 is old and a bit rough around the edges. It uses the old RSA stuff if you are a USA_RESIDENT and does not support ssh V2 protocol. 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 Jul 2 10:55: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from moutvdom01.kundenserver.de (moutvdom01.kundenserver.de [195.20.224.200]) by hub.freebsd.org (Postfix) with ESMTP id AC03037B406 for ; Mon, 2 Jul 2001 10:55:02 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.219] (helo=mrvdom03.kundenserver.de) by moutvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 15H7uV-0004zG-00; Mon, 2 Jul 2001 19:54:59 +0200 Received: from pd9017258.dip.t-dialin.net ([217.1.114.88]) by mrvdom03.kundenserver.de with esmtp (Exim 2.12 #2) id 15H7tj-0002hz-00; Mon, 2 Jul 2001 19:54:12 +0200 Date: Mon, 2 Jul 2001 19:55:22 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: Jason Nugent Cc: Subject: Re: pine/sendmail: relaying prohibited In-Reply-To: Message-ID: <20010702195021.V5235-100000@localhost.de> 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, 2 Jul 2001, Jason Nugent wrote: > Date: Mon, 2 Jul 2001 12:06:43 -0500 (CDT) > From: Jason Nugent > To: "P. U. (Uli) Kruppa" > Cc: freebsd-questions@freebsd.org > Subject: Re: pine/sendmail: relaying prohibited > > > Just curious, but what is the outgoing domain on messages you send via > pine? I've seen a few misconfigured machines that use > localhost.localdomain as the outgoing domain for pine, and sendmail will > reject messages originating from this domain by default. (Arghh! ... ) Oh yes indeed, it was not set at all! Thank you! Uli. > > If this is your problem, the easiest way to fix it in pine is to go into > your setup section and change the user-domain value to something that > sendmail will accept. > > HTH, Jason > > On Mon, 2 Jul 2001 at 12:05pm, P. U. (Uli) Kruppa thought about > > > Hello, > > > > when I try to send an email from pine I get this > > message: > > > > Mail not send: relaying to
prohibited by administrator > > > > I am on a single-user machine, i. e. I am the administrator and > > I did not - as far as I know - prohibit anything. > > > > I guess there is something wrong with sendmail-configuration? > > (Oh, I am writing this in netscape-mail. It seems to work fine.) > > > > Thanx for any hints. > > > > Uli. > > -- > > *--------------------------------------* > > | www.pukruppa.de www.2000d.de | > > | Wuppertal - Germany | > > *--------------------------------------* > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > ---------------------- > Jason Nugent > Aka MalHavoc > Server Programmer and Administrator > > S T O M P E D . C O M > > For PGP public key: http://malhavoc.stomped.com > > *--------------------------------------* | www.pukruppa.de www.2000d.de | | Wuppertal - Germany | *--------------------------------------* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 10:59: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from c007.snv.cp.net (c007-h008.c007.snv.cp.net [209.228.33.214]) by hub.freebsd.org (Postfix) with SMTP id 175DD37B406 for ; Mon, 2 Jul 2001 10:58:59 -0700 (PDT) (envelope-from otterr@telocity.com) Received: (cpmta 27397 invoked from network); 2 Jul 2001 10:55:38 -0700 Received: from dsl-216-227-91-85.telocity.com (HELO zoso) (216.227.91.85) by smtp.telocity.com (209.228.33.214) with SMTP; 2 Jul 2001 10:55:38 -0700 X-Sent: 2 Jul 2001 17:55:38 GMT Reply-To: From: "Otter" To: Subject: RE: EnderUNIX QLDAPAdmin Date: Mon, 2 Jul 2001 13:53:56 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 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 After looking at http://www.enderunix.org I felt a bit uneasy. I hope for litigation's sake that the html for the FreeBSD web site is released under the BSD license. -Otter > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of > Ismail YENIGUL > Sent: Monday, July 02, 2001 12:01 PM > To: freebsd-questions@freebsd.org > Subject: EnderUNIX QLDAPAdmin > > > > Hi folks, > > We have coded a collection of tools for manipulating LDAP > databases that > are used > to hold account information for qmail users, in C++. > > Features: > - create virtual domains > - delete virtual domains > - create virtual users > - modify virtual users > - change users' password, mailhost (for qmail clusters), mailquota, > mail directory etc etc... > - create alternate addresses for one maibox > - create forwarding addresses for one mailbox > - View users' information > - Delete users from LDAP database > - List all qmail domains > - List all users of qmail domains > > > The tools are run in command line. Here is the list of binaries: > > garib:~/qldapadmin-0.4.0beta# ls -l /usr/local/bin/q* > -r-x------ 1 root wheel 31008 Jul 2 03:33 /usr/local/bin/qadddomain > -r-x------ 1 root wheel 44154 Jul 2 03:33 /usr/local/bin/qadduser > -r-x------ 1 root wheel 29334 Jul 2 03:33 /usr/local/bin/qdeldomain > -r-x------ 1 root wheel 29773 Jul 2 03:33 /usr/local/bin/qdeluser > -r-x------ 1 root wheel 26492 Jul 2 03:33 > /usr/local/bin/qlistdomains > -r-x------ 1 root wheel 28919 Jul 2 03:33 /usr/local/bin/qlistusers > -r-x------ 1 root wheel 47624 Jul 2 03:33 /usr/local/bin/qmodifyuser > -r-x------ 1 root wheel 30886 Jul 2 03:33 /usr/local/bin/qpasswd > -r-x------ 1 root wheel 30507 Jul 2 03:33 > /usr/local/bin/qsetmailhost > -r-x------ 1 root wheel 30539 Jul 2 03:33 > /usr/local/bin/qsetmsgstore > > QLDAPAdmin is tested on FreeBSD 4.3, Redhat Linux 7.1 , > Solaris 8(sparc) > > > You can download QLDAPAdmin from > http://www.enderunix.org/qldapadmin/qldapadmin-0.4.0-BETA.tar.gz > > Web page about QLDAPAdmin is: > http://www.enderunix.org/qldapadmin/ > > please send your feedback to roots@EnderUNIX.ORG > > bye > > > Ismail YENIGUL > http://www.enderunix.org > http://yenigul.net > > > > > > 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 Jul 2 11: 7:11 2001 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 221AE37B407 for ; Mon, 2 Jul 2001 11:07:09 -0700 (PDT) (envelope-from hawk@fac13.ds.psu.edu) Received: from fac13.ds.psu.edu (localhost.ds.psu.edu [127.0.0.1]) by fac13.ds.psu.edu (8.11.4/8.11.3) with ESMTP id f62I6wi12966; Mon, 2 Jul 2001 14:06:58 -0400 (EDT) (envelope-from hawk@fac13.ds.psu.edu) Message-Id: <200107021806.f62I6wi12966@fac13.ds.psu.edu> X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: William Richard Cc: festus , freebsd-questions@FreeBSD.ORG Subject: Re: How to to boot directly into X from Freebsd 4.0 In-Reply-To: Your message of "Fri, 29 Jun 2001 21:24:03 PDT." <01062921240300.09131@saffron> From: dochawk@psu.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 02 Jul 2001 14:06:58 -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG william wailed, > On Thursday 28 June 2001 16:07, festus wrote: > > Can someone give an idea of the files I need to tweak to get this > > working? > Some miserable bastard wrote an article last year on setting up XDM, which is > at Daemon News: > http://www.daemonnews.org/200001/xdm.html I simply changed the single line in /etc/ttys to tern xdm on: ttyv8 "/usr/X11R6/bin/xdm -nodaemon" xterm on secure hawk -- Prof. Richard E. Hawkins, Esq. /"\ 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 Jul 2 11:19:21 2001 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 C98D337B406 for ; Mon, 2 Jul 2001 11:19:17 -0700 (PDT) (envelope-from hawk@fac13.ds.psu.edu) Received: from fac13.ds.psu.edu (localhost.ds.psu.edu [127.0.0.1]) by fac13.ds.psu.edu (8.11.4/8.11.3) with ESMTP id f62IJCi14069 for ; Mon, 2 Jul 2001 14:19:12 -0400 (EDT) (envelope-from hawk@fac13.ds.psu.edu) Message-Id: <200107021819.f62IJCi14069@fac13.ds.psu.edu> X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: freebsd-questions@FreeBSD.ORG Subject: staroffice52 installation not reproducible From: "Richard E. Hawkins" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 02 Jul 2001 14:19:12 -0400 Sender: owner-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 used to stochastic behavior on classroom computers running windows, not freebsd . . . I previously installed staroffice52 without a hitch. Now not only do I fail, but I get incionsistent messages: fac13# make build ===> staroffice-5.2 depends on file: /compat/linux/lib/libc.so.6 - found ... /usr/ports/editors/staroffice52/work/office52/so-5_2-ga-bin-linux-en.bin: absolute programpath cannot be found. ... ERROR: setup system check failed: libc.so.6 library not found StarOffice 5.0 uses the new glibc2 (=libc6). The libraries above could not be found. The glibc_inst.tar package includes a README file which describes how to install these libraries. It will be made available on the StarDivision ftp mirror sites in the same directory as the StarOffice installation files. You can try to run setup (and StarOffice) anyway. If it does not work or you experience strange crashes or get unresolved symbol errors we recommend installing the glibc_inst.tar package. Do you want to proceed anyway ? glibc version: 2.1.2 ... Can't open /usr/ports/editors/staroffice52/work/office52/setup.ins: No such file or directory I'm wondering if I tossed in a symlink that made it happy last time? --but I think that was for lyx or pgi fortran. hawk -- Prof. Richard E. Hawkins, Esq. /"\ 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 Jul 2 11:33:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sand.global.net.uk (sand.global.net.uk [195.147.248.109]) by hub.freebsd.org (Postfix) with ESMTP id 909F137B406 for ; Mon, 2 Jul 2001 11:33:19 -0700 (PDT) (envelope-from rick.sheade@hemini.com) Received: from mail.hemini.com ([194.126.77.186] helo=fsproxy.hemini.com) by sand.global.net.uk with esmtp (Exim 2.05 #1) id 15H8VZ-0003qe-00 for questions@FreeBSD.org; Mon, 2 Jul 2001 19:33:17 +0100 Received: by FSPROXY with Internet Mail Service (5.5.2650.21) id ; Mon, 2 Jul 2001 19:22:19 +0100 Message-ID: <8537B9D76E78D41191EB00A0C9A2B8BE0EB3BA@FSPROXY> From: Rick Sheade To: "'questions@FreeBSD.org'" Subject: Your UK Telephone Number Date: Mon, 2 Jul 2001 19:22:12 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C10323.ED95C03C" Sender: owner-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_01C10323.ED95C03C Content-Type: text/plain; charset="iso-8859-1" Hemini Complex - Stirling Way Elstree / Borehamwood - Herts WD6 2BT Tel : 0208 207 2000 - Fax : 0208 207 2222 E-mail : rick.sheade@hemini.com - Web : www.hemini.com _____ Do you have a UK Phone number we can contact to find our more abour the Prices & availabity of your Products. Please either mail me a number so that I can call back or if Someone can kindly call me on +44 020 8207 2000 ( ask for Rick Sheade ) - This will be greatly appreciated Regards Rick _____ This e-mail and its attachments are intended only for the use of the individual or entity who is the intended recipient and may contain information that is privileged, confidential and exempt from disclosure or any type of use under applicable law. If the reader of this e-mail is not the intended recipient, or the employee, agent or representative responsible for delivering the e-mail to the intended recipient, you are hereby notified that any dissemination, distribution, copying, or other use of this e-mail is strictly prohibited. If you have received this e-mail in error, please reply immediately to the sender and confirm of its error. ------_=_NextPart_001_01C10323.ED95C03C Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
=20
Hemini Complex - Stirling Way
Elstree = /=20 Borehamwood - Herts WD6 2BT
Tel : 0208 207 2000 - Fax : 0208 = 207=20 2222

E-mail : rick.sheade@hemini.com = - Web : www.hemini.com =

Do you have a=20 UK Phone number we can contact to find our more abour the = Prices =20 & availabity of your Products. Please either mail me a number = so that=20 I can call back or if Someone can kindly call me on +44 020 8207 = 2000 (=20 ask for Rick Sheade ) - This will be greatly=20 appreciated
Regards
Rick



This e-mail and its attachments are intended only for = the use of=20 the individual or entity who is the intended recipient and may = contain=20 information that is privileged, confidential and exempt from = disclosure or=20 any type of use under applicable law. If the reader of this = e-mail is not=20 the intended recipient, or the employee, agent or representative=20 responsible for delivering the e-mail to the intended recipient, = you are=20 hereby notified that any dissemination, distribution, copying, or = other=20 use of this e-mail is strictly prohibited. If you have received = this=20 e-mail in error, please reply immediately to the sender and = confirm of its=20 error.

 
------_=_NextPart_001_01C10323.ED95C03C-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 11:33:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from marvin.nildram.co.uk (marvin.nildram.co.uk [195.112.4.71]) by hub.freebsd.org (Postfix) with SMTP id 4ACC937B407 for ; Mon, 2 Jul 2001 11:33:24 -0700 (PDT) (envelope-from daniel@34SP.com) Received: (qmail 19889 invoked from network); 2 Jul 2001 18:33:23 -0000 Received: from epithet.gotadsl.co.uk (195.149.46.141) by marvin.nildram.co.uk with SMTP; 2 Jul 2001 18:33:23 -0000 Received: from epithet.gotadsl.co.uk (IDENT:dan@localhost [127.0.0.1]) by epithet.gotadsl.co.uk (8.9.3/8.8.7) with ESMTP id TAA04401 for ; Mon, 2 Jul 2001 19:32:39 +0100 Date: Mon, 2 Jul 2001 19:32:39 +0100 From: Daniel Foster To: freebsd-questions@freebsd.org Subject: Booting from a Mylex or from floppy Message-ID: <20010702193239.M3725@epithet> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Balsa 1.1.6 Lines: 16 Sender: owner-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've installed 4.3-RELEASE onto a system with a Mylex AcceleRAID 170. As I understand the 4.3 release notes, this card will work but can't be booted from. I didn't know this, and now need to come up with a workaround. My plan is to do something like put the loader onto a floppy and use that to boot from. Will this be able to load the kernel from the RAID array or do I need to have the kernel on the disk too? I presume I can just set rootdev=/dev/da0 in loader.conf to have the root fs set accordingly? -- Daniel Foster - daniel@34SP.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 11:38: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from h24-67-61-12.lb.shawcable.net (h24-67-61-12.lb.shawcable.net [24.67.61.12]) by hub.freebsd.org (Postfix) with ESMTP id ADC5C37B407 for ; Mon, 2 Jul 2001 11:38:02 -0700 (PDT) (envelope-from chris@home.com) Received: by h24-67-61-12.lb.shawcable.net (Postfix, from userid 1002) id 5CDD066B013; Mon, 2 Jul 2001 12:30:14 -0600 (MDT) Date: Mon, 2 Jul 2001 12:30:14 -0600 From: Chris Moline To: questions@freebsd.org Subject: Re: TCP windows size Message-ID: <20010702123014.A69922@h24-67-61-12.lb.shawcable.net> References: <20010701155954.A38682@h24-67-61-12.lb.shawcable.net> <200107020348.f623mbc12099@ptavv.es.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200107020348.f623mbc12099@ptavv.es.net>; from oberman@es.net on Sun, Jul 01, 2001 at 08:48:37PM -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 Sun, Jul 01, 2001 at 08:48:37PM -0700, Kevin Oberman wrote: > Chris, > > Sorry, I guess I was not completely clear. The use of bits was only > for calculating the maximum bandwidth. The sendspace and recvspace > values are in bytes. Unless you have a VERY fast connection setting > them to 65536 (64 K bytes) should be adequate. Thanks for your help. I just found out it's not recommended to set it to zero :) Sincerly, Chris Moline To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 11:45:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc24.worldnet.att.net (mtiwmhc24.worldnet.att.net [204.127.131.49]) by hub.freebsd.org (Postfix) with ESMTP id DA80E37B406 for ; Mon, 2 Jul 2001 11:45:48 -0700 (PDT) (envelope-from parv@worldnet.att.net) Received: from worldnet.att.net ([32.101.235.199]) by mtiwmhc24.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010702184547.CMJT3707.mtiwmhc24.worldnet.att.net@worldnet.att.net> for ; Mon, 2 Jul 2001 18:45:47 +0000 Received: by worldnet.att.net (Postfix, from userid 1001) id 935B21943F; Mon, 2 Jul 2001 14:49:37 -0400 (EDT) Date: Mon, 2 Jul 2001 14:49:37 -0400 From: parv To: f-q Subject: cvsup list file & file status (c C F U D) Message-ID: <20010702144937.A2168@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 does anybody know what above mentioned 5 one-letter tags mean in a cvsup list file? i could find only those 5 tags for "src-all" for "RELENG_4". also, does anybody know the complete format of a cvsup list file? manpage of cvsup doesn't have much to say under section "the list file", or "see also". i have checked manpage for cvs too; is the "commands" section, subsection "update" relevant here? web/usenet searches offer nothing relevant... - in search of enlightenment -- so, do you like word games or scrabble? - parv To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 11:49:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from camel.kdsi.net (camel.kdsi.net [206.103.113.218]) by hub.freebsd.org (Postfix) with ESMTP id A272037B403 for ; Mon, 2 Jul 2001 11:49:24 -0700 (PDT) (envelope-from tony@camel.kdsi.net) Received: from camel.kdsi.net (leepcC-088.sub-c.lee.net [208.205.126.88]) (authenticated (0 bits)) by camel.kdsi.net (8.12.0.Beta10/8.12.0.Beta10) with ESMTP id f62IpvKv008240; Mon, 2 Jul 2001 13:51:58 -0500 (CDT) Message-ID: <3B40C1E6.EDE72A09@camel.kdsi.net> Date: Mon, 02 Jul 2001 13:48:06 -0500 From: Tony Wells X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: jorgen@cyco.nl Cc: freebsd-questions@FreeBSD.ORG Subject: Re: RAID problems on Compaq DLT380 (FreeBSD 4.3-RELEASE) References: <41256A7D.003E5016.00@Titanium.cs.cyco.nl> 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'm not familiar with that controller, but you may have to rebuild it through a BIOS utility offline. jorgen@cyco.nl wrote: > > Hello all, > > I've installed FreeBSD 4.3-RELEASE on my Compaq DLT380 with integrated raid > controller. > The kernel recognizes the controller just fine and the installation went OK. > > But now: > When I remove one disk from the Array (configured as raid 5) and plug it back > in > the rebuild process doesnt start. > I would expect this to work automagically.... > Am I missing something obvious here? Do I need additional software? > > Any help is very welcome! > > Thanks, > > Jorgen Maas > > 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 Jul 2 11:52:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail4.txucom.net (mail4.txucom.net [207.70.175.17]) by hub.freebsd.org (Postfix) with SMTP id 989AF37B403 for ; Mon, 2 Jul 2001 11:52:54 -0700 (PDT) (envelope-from robert@luftx.net) Received: (qmail 4260 invoked from network); 2 Jul 2001 18:52:53 -0000 Received: from lfkn-adsl-pwoodahec.txucom.net (HELO luftx.net) ([207.70.146.31]) (envelope-sender ) by mail4.txucom.net (qmail-ldap-1.03) with SMTP for ; 2 Jul 2001 18:52:53 -0000 Message-ID: <3B40C326.8F4C7505@luftx.net> Date: Mon, 02 Jul 2001 13:53:26 -0500 From: Robert Small X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: Daniel Frazier Cc: questions@freebsd.org Subject: Re: any tricks to speed up mozilla??? References: <3B3C9A87.10405@magpage.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 I'm interested in the answer to this question also. Daniel Frazier wrote: > *This message was transferred with a trial version of CommuniGate(tm) Pro* > I remember reading a post a while back where someone mentioned tweaking > some memory settings in their kernel config file that he claimed > imporved mozilla's performance. I've searched the archives, but no > luck. The stable archive is offline for some reason though, so I > wasn't able to search there... Does this sound familiar to anyone? > Anyone have any other suggestions as to speeding up mozilla? Thanks... > > -- > ---------------------------------------------------------------------- > Daniel Frazier Tel: 302-239-5900 Ext. 231 > Systems Administrator Fax: 302-239-3909 > MAGPAGE, We Power the Internet WWW: http://www.magpage.com/ > > "They that can give up essential liberty to obtain a little temporary > safety deserve neither liberty nor safety." > - Benjamin Franklin, Historical Review of Pennsylvania, 1759. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- ----------------------------------------------------------- The only difference between a rut and a grave is the depth. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 11:54:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smithers.stomped.com (smithers.stomped.com [216.17.56.2]) by hub.freebsd.org (Postfix) with SMTP id 33D7037B403 for ; Mon, 2 Jul 2001 11:54:13 -0700 (PDT) (envelope-from malhavoc@stomped.com) Received: (qmail 23624 invoked by uid 1041); 2 Jul 2001 18:54:19 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 2 Jul 2001 18:54:19 -0000 Date: Mon, 2 Jul 2001 13:54:19 -0500 (CDT) From: Jason Nugent To: parv Cc: f-q Subject: Re: cvsup list file & file status (c C F U D) In-Reply-To: <20010702144937.A2168@moo.holy.cow> 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 Parv, There are a whole stack of CVSup files in your /usr/share/examples/cvsup/ directory. there is also quite a bit in the Handbook on CVSup. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html HTH, Jason On Mon, 2 Jul 2001 at 1:52pm, parv thought about > does anybody know what above mentioned 5 one-letter tags mean in a > cvsup list file? i could find only those 5 tags for "src-all" for > "RELENG_4". > > also, does anybody know the complete format of a cvsup list file? > > manpage of cvsup doesn't have much to say under section "the list > file", or "see also". i have checked manpage for cvs too; is the > "commands" section, subsection "update" relevant here? web/usenet > searches offer nothing relevant... > > - in search of enlightenment > > -- > so, do you like word games or scrabble? > - parv > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > ---------------------- Jason Nugent Aka MalHavoc Server Programmer and Administrator S T O M P E D . C O M For PGP public key: http://malhavoc.stomped.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 11:58:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id CE9A137B401 for ; Mon, 2 Jul 2001 11:58:43 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f62IwWa84563; Mon, 2 Jul 2001 14:58:32 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 14:58:32 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Mike Meyer Cc: Subject: Re: php install and ./configure -with-mysql In-Reply-To: <15168.44592.816365.276480@guru.mired.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 Hi: I am trying to update my ports tree. I have followed the tutorial at freebsdvault.net, but get the following error: # cat /usr/src/stable-supfile *default host=cvsup12.FreeBSD.org *default base=/usr *default prefix=/usr *default release=cvs tag=RELENG_4 *default delete use-rel-suffix *default compress src-all ports-all tag=. # /usr/local/bin/cvsup -g -L 2 /usr/src/stable-supfile Parsing supfile "/usr/src/stable-supfile" Empty supfile # ls -ls /usr/src/stable-supfile 1 -rw-r--r-- 1 root wheel 183 Jul 2 15:00 /usr/src/stable-supfile Is there a problem with the supfile? Thanks ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 12:12:44 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id A80A737B401 for ; Mon, 2 Jul 2001 12:12:41 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f62JD5221376; Mon, 2 Jul 2001 15:13:05 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 2 Jul 2001 15:13:05 -0400 (EDT) From: Joe Clarke To: Jim Freeze Cc: Mike Meyer , Subject: Re: php install and ./configure -with-mysql In-Reply-To: Message-ID: <20010702151152.F21126-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 If all you want to do is update your ports tree, try using the example in /usr/share/examples/cvsup/ports-supfile. It is designed to pull down the latest ports stubs from the -current branch (which is what you want). Joe Clarke On Mon, 2 Jul 2001, Jim Freeze wrote: > Hi: > > I am trying to update my ports tree. > I have followed the tutorial at freebsdvault.net, but > get the following error: > > # cat /usr/src/stable-supfile > *default host=cvsup12.FreeBSD.org > *default base=/usr > *default prefix=/usr > *default release=cvs tag=RELENG_4 > *default delete use-rel-suffix > *default compress src-all ports-all tag=. > > # /usr/local/bin/cvsup -g -L 2 /usr/src/stable-supfile > Parsing supfile "/usr/src/stable-supfile" > Empty supfile > > # ls -ls /usr/src/stable-supfile > 1 -rw-r--r-- 1 root wheel 183 Jul 2 15:00 /usr/src/stable-supfile > > Is there a problem with the supfile? > > Thanks > > ========================================================= > Jim Freeze > jim@freeze.org > --------------------------------------------------------- > No comment at this time. > http://www.freeze.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 Jul 2 12:52:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pope.teraglobal.com (mail.teraglobal.com [216.143.27.144]) by hub.freebsd.org (Postfix) with ESMTP id 5118637B41D for ; Mon, 2 Jul 2001 12:52:47 -0700 (PDT) (envelope-from jprosser@teraglobal.com) Received: from [10.2.0.127] ([10.2.0.127]) by pope.teraglobal.com (Netscape Messaging Server 4.15) with ESMTP id GFV3I500.G7U for ; Mon, 2 Jul 2001 12:58:53 -0700 User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2022 Date: Mon, 02 Jul 2001 13:52:46 -0600 Subject: Stupid log file problems... From: "Jason Prosser" To: FreeBSD-Questions Message-ID: 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 am running IPFW with logging feature, on 4.2-Rel. This logs to the file /var/security. It was getting to big so I figured to delete it and then make a new one and it should work... Wrong!. What do I need to do to A: get the logging feature to work again to any file. B: What would I need to do to clean out the file periodically. (I am looking at copying it to another location and then emptying the actual file.) Thank you for your help ahead of time. JP jprosser@teraglobal.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 13: 4:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc26.worldnet.att.net (mtiwmhc26.worldnet.att.net [204.127.131.51]) by hub.freebsd.org (Postfix) with ESMTP id EFA7137B403 for ; Mon, 2 Jul 2001 13:04:31 -0700 (PDT) (envelope-from parv@worldnet.att.net) Received: from worldnet.att.net ([32.101.235.189]) by mtiwmhc26.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010702200430.HRMG2154.mtiwmhc26.worldnet.att.net@worldnet.att.net>; Mon, 2 Jul 2001 20:04:30 +0000 Received: by worldnet.att.net (Postfix, from userid 1001) id 9E5811943F; Mon, 2 Jul 2001 16:08:18 -0400 (EDT) Date: Mon, 2 Jul 2001 16:08:18 -0400 From: parv To: Jason Nugent Cc: f-q Subject: Re: cvsup list file & file status (c C F U D) Message-ID: <20010702160818.A496@moo.holy.cow> Mail-Followup-To: Jason Nugent , f-q References: <20010702144937.A2168@moo.holy.cow> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: ; from malhavoc@stomped.com on Mon, Jul 02, 2001 at 01:54:19PM -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 so, Jason Nugent shared this in my lifetime... > > Parv, > > There are a whole stack of CVSup files in your > > /usr/share/examples/cvsup/ > > directory. > > there is also quite a bit in the Handbook on CVSup. > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html > > > Jason > > On Mon, 2 Jul 2001 at 1:52pm, parv thought about > > > does anybody know what above mentioned 5 one-letter tags mean in a > > cvsup list file? i could find only those 5 tags for "src-all" for ^^^^^^^^^^^^^^^ > > "RELENG_4". > > > > also, does anybody know the complete format of a cvsup list file? ^^^^^^^^^^^^^^^ > > > > manpage of cvsup doesn't have much to say under section "the list > > file", or "see also". i have checked manpage for cvs too; is the > > "commands" section, subsection "update" relevant here? web/usenet > > searches offer nothing relevant... > > no. that's not it. please re-read the previous message. i am not looking information for supfile or its format. i am looking for information about _THE_LIST_FILE_, as cvsup manpage calls it. or, a "status file" according to the handbook. anybody else? -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 13:15:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pluto.cc.emory.edu (pluto.cc.emory.edu [170.140.1.23]) by hub.freebsd.org (Postfix) with ESMTP id D894437B401 for ; Mon, 2 Jul 2001 13:15:42 -0700 (PDT) (envelope-from gpagnon@emory.edu) Received: from emory.edu ([170.140.25.235]) by pluto.cc.emory.edu (8.10.2/8.10.2) with ESMTP id f62KFfC15049 for ; Mon, 2 Jul 2001 16:15:41 -0400 (EDT) Message-ID: <3B40D5D1.680C1530@emory.edu> Date: Mon, 02 Jul 2001 16:13:05 -0400 From: Giuseppe Pagnoni Organization: Emory X-Mailer: Mozilla 4.7 [en] (X11; I; FreeBSD 4.3-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: after upgrading to 4.3 can't su anymore 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 just upgraded my box to 4-stable from 4.0 (from src) and though everything seem to have gone well, I cannot su anymore though I am still in the wheel group (as from the /etc/group file). The error message is: su: permission denied (shell). (by the way my shell is tcsh...) And also, another unrelated question. When I do telnet now it appears the following message: Trying SRA secure login what does it mean? Is this useful? thanks for any suggestion! giuseppe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 13:16:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from comp1.mastery.ca (comp1.mastery.ca [209.202.88.60]) by hub.freebsd.org (Postfix) with ESMTP id 70CBD37B401 for ; Mon, 2 Jul 2001 13:16:20 -0700 (PDT) (envelope-from mail@max-info.net) Received: from 78kw954 (dyn216-8-131-5.ADSL.mnsi.net [216.8.131.5]) (authenticated) by comp1.mastery.ca (8.11.3/8.11.1) with ESMTP id f62KG3Q17840; Mon, 2 Jul 2001 16:16:03 -0400 (EDT) (envelope-from mail@max-info.net) Message-ID: <014201c10333$7c098a60$3200a8c0@Home> From: "Ryan Masse" To: "Jason Prosser" Cc: "FreeBSD-Questions" References: Subject: Re: Stupid log file problems... Date: Mon, 2 Jul 2001 16:12:26 -0400 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 you may want to try; 1. delete, move, copy, gzip whatever /var/log/security 2. touch /var/log/security < creates a new empty file in that location 3. killall -HUP syslogd < restarts syslog 4. ipfw resetlog < resets and restarts the ipfw logging that should work.. Ryan > I am running IPFW with logging feature, on 4.2-Rel. > > This logs to the file /var/security. It was getting to big so I figured to > delete it and then make a new one and it should work... Wrong!. > > What do I need to do to A: get the logging feature to work again to any > file. B: What would I need to do to clean out the file periodically. (I am > looking at copying it to another location and then emptying the actual > file.) > > Thank you for your help ahead of time. > > JP > jprosser@teraglobal.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 Mon Jul 2 13:17:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from monk.via.net (monk.via.net [209.81.2.10]) by hub.freebsd.org (Postfix) with ESMTP id 49BA437B401 for ; Mon, 2 Jul 2001 13:17:37 -0700 (PDT) (envelope-from joe@monk.via.net) Received: (from joe@localhost) by monk.via.net (8.11.1/8.11.0) id f62KJLH81637 for questions@freebsd.org; Mon, 2 Jul 2001 13:19:21 -0700 (PDT) (envelope-from joe) From: Joe McGuckin Message-Id: <200107022019.f62KJLH81637@monk.via.net> Date: Mon, 2 Jul 2001 13:19:21 -0700 (PDT) To: questions@freebsd.org Subject: default serial device settings ? X-Mailer: Ishmail 1.3.1-970608-bsdi MIME-Version: 1.0 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 How do I configure the default baud rate, parity, etc for a tty device? Thanks, Joe -- -- Joe McGuckin ViaNet Communications 994 San Antonio Road Palo Alto, CA 94303 Phone: 650-969-2203 Cell: 650-207-0372 Fax: 650-969-2124 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 13:24:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc22.worldnet.att.net (mtiwmhc22.worldnet.att.net [204.127.131.47]) by hub.freebsd.org (Postfix) with ESMTP id 7E8DF37B406 for ; Mon, 2 Jul 2001 13:24:46 -0700 (PDT) (envelope-from parv@worldnet.att.net) Received: from worldnet.att.net ([32.101.235.189]) by mtiwmhc22.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010702202445.LUOC13460.mtiwmhc22.worldnet.att.net@worldnet.att.net>; Mon, 2 Jul 2001 20:24:45 +0000 Received: by worldnet.att.net (Postfix, from userid 1001) id 319311943F; Mon, 2 Jul 2001 16:28:35 -0400 (EDT) Date: Mon, 2 Jul 2001 16:28:35 -0400 From: parv To: Mike Meyer Cc: questions@freebsd.org Subject: Re: anything to create contact/business cards? Message-ID: <20010702162834.A630@moo.holy.cow> Mail-Followup-To: Mike Meyer , questions@freebsd.org References: <132191866@toto.iv> <15166.23233.326501.607825@guru.mired.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <15166.23233.326501.607825@guru.mired.org>; from mwm@mired.org on Sat, Jun 30, 2001 at 06:03: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 so, Mike Meyer shared this in my lifetime... > parv types: > > couldn't find anything relevant in /usr/ports... does anybody know of > > some software to create business/contact cards ... ok, or may be for > > linux (intended to be run in emulation)? > > Either ghostscript or a good word processor will do the trick. If > you're using perfed cardstock, any word processor that can handle > tables should work. I ran off a couple of sheets of those earlier this > week with Applix Words, and of course you can just write the > postscript to generate the output you want and feed it to ghostscript, > or your printer if you've got a postscript printer. One function to > print a card, then a loop to cause it to be printed at each position > on the sheet. > > If you're going through a print shop, ask them what formats they will > accept. The ones I've dealt with liked pdf. ps2pdf is part of the > ghostscript port, and should work fine on either of the two forms I > talked about for perfed cardstock, as I've as yet to see a WP that > wouldn't generate postscript to a file. > > ; Mon, 2 Jul 2001 13:38:09 -0700 (PDT) (envelope-from c.y.chen@bham.ac.uk) Received: from bham.ac.uk ([147.188.128.127]) by mailer3.bham.ac.uk with esmtp (Exim 3.16 #2) id 15HAS8-0003en-00; Mon, 02 Jul 2001 21:37:52 +0100 Received: from eee-fs7.bham.ac.uk ([147.188.145.131] helo=bham-eee-fs7.bham.ac.uk) by bham.ac.uk with esmtp (Exim 3.16 #3) id 15HASF-0001ob-00; Mon, 02 Jul 2001 21:37:59 +0100 Received: by eee-fs7.bham.ac.uk with Internet Mail Service (5.5.2653.19) id ; Mon, 2 Jul 2001 21:37:22 +0100 Message-ID: From: "chen c.y." To: 'FreeBSD Customer Relations' Cc: "'freebsd-questions@FreeBSD.ORG'" , "'denise@osd.bsdi.com'" Subject: Experience of buying FreeBSD CDs from Wind River Date: Mon, 2 Jul 2001 21:37:21 +0100 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 Hi, I just want to share some experience of buying freeBSD from "Wind River". Last month, I purchased a set of freeBSD CD from them, and encounter some installation problems due to the un-bootable CD. As we know, the first CD should be bootable and lead the users through the installation once the PC is able to be booted from CD-ROM. However, the version they provided to me is not able to do that. I needed to make some boot floppy diskes and did the installation. Yes, it was successful. However, it was not what the advertisement said!! I did complain to them and wait for 11 days so far. However,they did not reply in term of this. For some new users, the bootable CD is very important and convenient for them. Sorry to take your time. Regards, Curtis P.S the following are the e-mails I sent to them. --------------------------------------- --------------------------------------- Dear Valentino Thank for the response! After another trial, the installation was successful after using bootable "floppies". However, it was not the purpose for us to purchase the disks. We expected to have a bootable "CD", and it was printed on the Disk 1. Somehow, we are not very satisfied, because the service we obtain from you is not what we ordered. Dear Denise Don't you think the company should provide the right service which was advertised? Regards, Curtis -----Original Message----- From: Valentino Vaschetto [mailto:logo@osd.bsdi.com] Sent: 21 June 2001 21:41 To: c.y.chen@bham.ac.uk Cc: Denise Rivera Subject: RE: BSDi/WCCDROM Order:Confirmed (fwd) :1. The Disk 1 is not bootable. After trying to install on different laptop :and PCs, which I am sure are able to boot from the cd-rom drive, it is :impossible to boot from Disk 1. This was done for a reason; because at the time of the snapshot, -CURRENT (aka FreeBSD 5.0) was not stable and if my mind serves me correctly, it wasn't even booting correctly. :2. I try the alternative way to install FreeBSD by making boot floppy disks. :However, the kern.flp and msfboot.flp stored in the directory /floppies are :of version 4.2. The floppies are the same, what's different is the installation packages on the CD. :3. While I install the software, it even can not extract files. Explain more.. :I am not sure if the FreeBSD-5.0-current is stable. Therefore,I wonder if :you can send me a replacement of FreeBSD-4.3-release, which was shown on :your web site. Please help me to solve this out. The software is used for :some ugent experiments. You should be able to install FreeBSD from the Toolkit. You are going to have to contact Denise about getting that replacement (which I don't think is possible). -val WindRiver Systems; FreeBSD. -----Original Message----- From: FreeBSD Customer Relations [mailto:FreeBSDCustomerRelations@windriver.com] Sent: 22 June 2001 09:38 To: Curtis Chen Subject: WindRiver/FreeBSD Transition Update June 21, 2001 Dear Curtis Chen, In May 2001, Wind River, a leading provider of embedded software and services, acquired BSDi's software business. We would like to take this opportunity to introduce ourselves. Wind River software is used in conjunction with the embedded, or hidden microprocessors that make up over 90% of all computer chips sold today. Embedded systems made up of hardware and software are found in numerous end products from laser printers to automotive braking systems to aerospace applications. Wind River picked up two software product lines from BSDi: the proprietary BSD/OS and the open-source FreeBSD. By acquiring the proprietary BSD/OS, Wind River broadened its line of commercial software solutions for the embedded market. FreeBSD, on the other hand, is not owned by Wind River, but managed by the open-source community. In the tradition of BSDi, and Walnut Creek CDROM before it, Wind River intends to support the efforts of the FreeBSD community. Wind River will act as a channel for the distribution of FreeBSD products. This is not a commercial venture for Wind River, but rather a public service for the community. Many of us at Wind River are or have been FreeBSD users---notably Wind River founder and chairman Jerry Fiddler, and chief technical officer John Fogelin. Wind River is investing resources to develop and release FreeBSD products, operating retail and online sales distribution channels, offering developer resources such as computer hosting and infrastructure services, and providing public relations, marketing, and events support for FreeBSD. In this transition, some customers have been experiencing delays and confusion in the servicing of their orders for FreeBSD products. If you are one of these customers, we sincerely apologize for any frustration and inconvenience this may have caused you. After acquiring BSDi, we have found many problems with the old order processing system. We are currently working to put a new system in place. Still, this will take some time to implement. We ask for your patience and continued support. As an interim measure we have set up a special email address, ordertracking@windriver.com. Contacting us this way will ensure your question immediately reaches the right person and will expedite a response. You can also reach us at 1-925-691-2800 ext.3820 and from our web site at www.FreeBSDmall.com. Exciting new products are being developed for 2001. We look forward to a long and satisfying relationship with the FreeBSD community. Sincerely, Pauline Shulman Senior Manager, eDevelopment Wind River To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 13:40:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pope.teraglobal.com (mail.teraglobal.com [216.143.27.144]) by hub.freebsd.org (Postfix) with ESMTP id 1D35037B407 for ; Mon, 2 Jul 2001 13:40:47 -0700 (PDT) (envelope-from jprosser@teraglobal.com) Received: from [10.2.0.127] ([10.2.0.127]) by pope.teraglobal.com (Netscape Messaging Server 4.15) with ESMTP id GFV5Q400.8AM; Mon, 2 Jul 2001 13:46:52 -0700 User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2022 Date: Mon, 02 Jul 2001 14:40:45 -0600 Subject: Re: Stupid log file problems... From: "Jason Prosser" To: Ryan Masse , FreeBSD-Questions Message-ID: In-Reply-To: <014201c10333$7c098a60$3200a8c0@Home> 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 7/2/01 2:12 PM, Ryan Masse at mail@max-info.net wrote: > you may want to try; > > 1. delete, move, copy, gzip whatever /var/log/security > 2. touch /var/log/security < creates a new empty file in that > location > 3. killall -HUP syslogd < restarts syslog > 4. ipfw resetlog < resets and restarts the ipfw > logging > > that should work.. > > Ryan Thank you... Worked like a charm. jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 13:41:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id C1A0637B403 for ; Mon, 2 Jul 2001 13:41:17 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f62Kdra87859; Mon, 2 Jul 2001 16:39:53 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 16:39:53 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Joe Clarke Cc: Mike Meyer , Subject: Does Anything work in ports??!! (Was: Re: php install and ./configure -with-mysql) In-Reply-To: <20010702151152.F21126-100000@shumai.marcuscom.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 Man, what a day, I have never had so many things not work. On Mon, 2 Jul 2001, Joe Clarke wrote: > If all you want to do is update your ports tree, try using the example in > /usr/share/examples/cvsup/ports-supfile. It is designed to pull down the > latest ports stubs from the -current branch (which is what you want). > Thanks Joe. I took your advice and used the ports-supfile in /usr/share/examples. It worked fine and I was able to update my ports. While that worked great, all my attempts to compile php and apache seem to end in failure. My original goal is to install apache 1.3.20 and php4.0.6. I started with: # cd /usr/ports/www/mod_php4 # make [after some time it fails] cc -c -O -pipe -I/usr/ports/print/freetype2/work/freetype-2.0.3/builds/unix -I/usr/ports/print/freetype2/work/freetype-2.0.3/include -I/usr/ports/print/freetype2/work/freetype-2.0.3/src/autohint /usr/ports/print/freetype2/work/freetype-2.0.3/src/autohint/autohint.c -o /usr/ports/print/freetype2/work/freetype-2.0.3/objs/autohint.o >/dev/null 2>&1 gmake: *** [/usr/ports/print/freetype2/work/freetype-2.0.3/objs/autohint.lo] Error 1 *** Error code 2 Stop in /usr/ports/print/freetype2. *** Error code 1 Stop in /usr/ports/print/freetype2. *** Error code 1 Stop in /usr/ports/print/freetype2. *** Error code 1 Stop in /usr/ports/print/freetype2. *** Error code 1 Stop in /usr/ports/graphics/gd. *** Error code 1 Stop in /usr/ports/graphics/gd. *** Error code 1 Stop in /usr/ports/graphics/gd. *** Error code 1 Stop in /usr/ports/graphics/gd. *** Error code 1 Stop in /usr/ports/graphics/gd. *** Error code 1 Stop in /usr/ports/graphics/gd. *** Error code 1 Stop in /usr/ports/graphics/gd. *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. I remember reading somewhere that apache (or php) needs gcc30. So I try to download that. # cd /usr/ports/lang/gcc30 # make [and I get the following error] cc: Internal compiler error: program cc1 got fatal signal 11 gmake[2]: *** [c-decl.o] Error 1 gmake[2]: Leaving directory `/usr/ports/lang/gcc30/work/build/gcc' gmake[1]: *** [stage1_build] Error 2 gmake[1]: Leaving directory `/usr/ports/lang/gcc30/work/build/gcc' gmake: *** [bootstrap] Error 2 *** Error code 2 Stop in /usr/ports/lang/gcc30. *** Error code 1 Stop in /usr/ports/lang/gcc30. *** Error code 1 Stop in /usr/ports/lang/gcc30. Going back and looking more closely at why mod_php4 failed, I see that freetype2 failed. So, I install that and gd explicitly and retry mod_php4. This time I get another failure point: [...stuff snipped..] creating config.h ===> Building for ucd-snmp-4.2.1 Segmentation fault - core dumped *** Error code 139 Stop in /usr/ports/net/net-snmp. *** Error code 1 Stop in /usr/ports/net/net-snmp. *** Error code 1 Stop in /usr/ports/net/net-snmp. *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. I'm still trying things over here, but I sure could use some help. As far as I can tell, I am doing what the manual says. Thanks for any help. Jim ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 14: 1:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web13305.mail.yahoo.com (web13305.mail.yahoo.com [216.136.175.41]) by hub.freebsd.org (Postfix) with SMTP id 3EDE937B403 for ; Mon, 2 Jul 2001 14:01:51 -0700 (PDT) (envelope-from gwq_uk@yahoo.com) Message-ID: <20010702210151.27633.qmail@web13305.mail.yahoo.com> Received: from [213.122.150.1] by web13305.mail.yahoo.com; Mon, 02 Jul 2001 22:01:51 BST Date: Mon, 2 Jul 2001 22:01:51 +0100 (BST) From: =?iso-8859-1?q?Greg=20Quinlan?= Reply-To: gwq_uk@yahoo.com Subject: fxp NIC error! 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, Does anyone know why I have one fxp type interface that works but the other gives these errors. I have been told it is because Plug & Play OS is set to yes? Why? fxp1: command queue timeout fxp1: SCB timeout: 0x1, 0x0, 0x80 0x0 fxp1: device timeout fxp1: DMA timeout fxp1: DMA timeout fxp1: SCB timeout: 0x10, 0x0, 0x80 0x0 fxp1: SCB timeout: 0x10, 0x0, 0x80 0x0 Thanks Greg ____________________________________________________________ Do You Yahoo!? Get your free @yahoo.co.uk address at http://mail.yahoo.co.uk or your free @yahoo.ie address at http://mail.yahoo.ie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 14: 7:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from home.com (h24-76-54-195.vf.shawcable.net [24.76.54.195]) by hub.freebsd.org (Postfix) with ESMTP id 0C7A537B401 for ; Mon, 2 Jul 2001 14:07:16 -0700 (PDT) (envelope-from tspivey8@home.com) Received: from home.com (localhost [127.0.0.1]) by home.com (8.11.3/8.11.3) with ESMTP id f62H5Ua10088 for ; Mon, 2 Jul 2001 13:05:30 -0400 (EDT) (envelope-from tspivey8@home.com) Message-Id: <200107021705.f62H5Ua10088@home.com> To: freebsd-questions@freebsd.org Subject: freebsd audio Date: Mon, 02 Jul 2001 13:05:30 -0400 From: tyler spivey Sender: owner-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 decrease the size of freebsad's audio buffer? when i cat something to /dev/sound or /dev/audio i cant hit c-c right away and have it stop sending sound like i can under linux do i have to set up a linux box over the ethernet to have sound support for this box? i want to run something like speak freely. pnote: please fc me sonce i aim not on this list. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 14:13:55 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-169-104-161.dsl.lsan03.pacbell.net [64.169.104.161]) by hub.freebsd.org (Postfix) with ESMTP id 240B037B403 for ; Mon, 2 Jul 2001 14:13:52 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id A8A7067B08; Mon, 2 Jul 2001 14:13:48 -0700 (PDT) Date: Mon, 2 Jul 2001 14:13:48 -0700 From: Kris Kennaway To: "chen c.y." Cc: 'FreeBSD Customer Relations' , "'freebsd-questions@FreeBSD.ORG'" , "'denise@osd.bsdi.com'" Subject: Re: Experience of buying FreeBSD CDs from Wind River Message-ID: <20010702141347.A34056@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="OXfL5xGRrasGEqWY" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from c.y.chen@bham.ac.uk on Mon, Jul 02, 2001 at 09:37:21PM +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 --OXfL5xGRrasGEqWY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 02, 2001 at 09:37:21PM +0100, chen c.y. wrote: > Last month, I purchased a set of freeBSD CD from them, and encounter some > installation problems due to the un-bootable CD. As we know, the first CD > should be bootable and lead the users through the installation once the PC > is able to be booted from CD-ROM. However, the version they provided to me > is not able to do that. I needed to make some boot floppy diskes and did = the > installation. Yes, it was successful. However, it was not what the > advertisement said!! I did complain to them and wait for 11 days so far. > However,they did not reply in term of this. =46rom the emails you included, it looks like you purchased a product which was different than the one you wanted; a development snapshot of 5.0-CURRENT part of the FreeBSD Toolkit (a product intended for developers and power users). You can't really complain too much if you bought the wrong product by mistake and it doesn't do what you hoped it to do. Kris --OXfL5xGRrasGEqWY 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 iD8DBQE7QOQKWry0BWjoQKURAqyqAJ9xnBHnvjGt1LW2Qo89mjWPqnFMGwCgh75g IMUAnUEG2tQS48rv8HJamoo= =2Kr3 -----END PGP SIGNATURE----- --OXfL5xGRrasGEqWY-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 14:25: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from rottweiler.cwusa.com (rottweiler-dmz.cwusa.com [146.135.88.50]) by hub.freebsd.org (Postfix) with ESMTP id 4193B37B406 for ; Mon, 2 Jul 2001 14:25:00 -0700 (PDT) (envelope-from Mike.Reed@cwusa.com) Received: from us-cwi-exc-a10.cwusa.com (us-cwi-exc-a10.cwusa.com [146.135.85.143]) by rottweiler.cwusa.com (8.11.2/8.11.2) with ESMTP id f62LOsa21470 for ; Mon, 2 Jul 2001 17:24:55 -0400 (EDT) Received: by us-cwi-exc-a10.cwi.cablew.com with Internet Mail Service (5.5.2653.19) id ; Mon, 2 Jul 2001 17:24:54 -0400 Message-ID: <1C00093DA7FAD111B5390020AFFC18BE0B6C1E23@us-cwi-exc-a06.cwi.cablew.com> From: "Reed, Mike" To: "'questions@FreeBSD.ORG'" Subject: Rescue disk for 1.44 floppies? Date: Mon, 2 Jul 2001 17:24:53 -0400 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 All, My box has fallen, and I can't get it up! ( Personal problem, yes. But what can you do... ;-) ) Anyone know where I can get the "fixit" boot image split into 1.44 MB floppy images? The one in the releases is only for 2.88. I've tried splitting it in parts myself, but I just can't seem to find the right byte offset to start the second disk. Incidentally, my installation is on an AlphaServer 800, just to complicate things. Thanks in advance, Mike R. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 14:28:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from k0r3.reflektor.cz (k0r3.reflektor.cz [212.24.129.54]) by hub.freebsd.org (Postfix) with SMTP id 12EA537B401 for ; Mon, 2 Jul 2001 14:28:13 -0700 (PDT) (envelope-from cynic@mail.cz) Received: (qmail 15385 invoked by uid 202); 2 Jul 2001 21:28:07 -0000 Received: from unknown (HELO zvahlav.mail.cz) (212.24.143.100) by k0r3.reflektor.cz with SMTP; 2 Jul 2001 21:28:07 -0000 Message-Id: <5.1.0.14.2.20010702233456.020bad60@mail.cz> X-Sender: cynic@mail.cz X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Mon, 02 Jul 2001 23:35:43 +0200 To: Jim Freeze , Joe Clarke From: Cynic Subject: Re: Does Anything work in ports??!! (Was: Re: php install and ./configure -with-mysql) Cc: Mike Meyer , In-Reply-To: References: <20010702151152.F21126-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 neither Apache-1.3 nor PHP 4 require gcc-3.0 the coredumping program is prolly gcc30 At 22:39 7/2/2001, Jim Freeze wrote the following: -------------------------------------------------------------- >Man, what a day, I have never had so many things not work. > >On Mon, 2 Jul 2001, Joe Clarke wrote: > >> If all you want to do is update your ports tree, try using the example in >> /usr/share/examples/cvsup/ports-supfile. It is designed to pull down the >> latest ports stubs from the -current branch (which is what you want). >> > >Thanks Joe. I took your advice and used the ports-supfile in >/usr/share/examples. It worked fine and I was able to update my ports. >While that worked great, all my attempts to compile php and apache seem to >end in failure. > >My original goal is to install apache 1.3.20 and php4.0.6. > >I started with: ># cd /usr/ports/www/mod_php4 ># make >[after some time it fails] >cc -c -O -pipe >-I/usr/ports/print/freetype2/work/freetype-2.0.3/builds/unix >-I/usr/ports/print/freetype2/work/freetype-2.0.3/include >-I/usr/ports/print/freetype2/work/freetype-2.0.3/src/autohint >/usr/ports/print/freetype2/work/freetype-2.0.3/src/autohint/autohint.c -o >/usr/ports/print/freetype2/work/freetype-2.0.3/objs/autohint.o >/dev/null >2>&1 >gmake: *** >[/usr/ports/print/freetype2/work/freetype-2.0.3/objs/autohint.lo] Error 1 >*** Error code 2 > >Stop in /usr/ports/print/freetype2. >*** Error code 1 > >Stop in /usr/ports/print/freetype2. >*** Error code 1 > >Stop in /usr/ports/print/freetype2. >*** Error code 1 > >Stop in /usr/ports/print/freetype2. >*** Error code 1 > >Stop in /usr/ports/graphics/gd. >*** Error code 1 > >Stop in /usr/ports/graphics/gd. >*** Error code 1 > >Stop in /usr/ports/graphics/gd. >*** Error code 1 > >Stop in /usr/ports/graphics/gd. >*** Error code 1 > >Stop in /usr/ports/graphics/gd. >*** Error code 1 > >Stop in /usr/ports/graphics/gd. >*** Error code 1 > >Stop in /usr/ports/graphics/gd. >*** Error code 1 > >Stop in /usr/ports/www/mod_php4. >*** Error code 1 > >Stop in /usr/ports/www/mod_php4. >*** Error code 1 > >Stop in /usr/ports/www/mod_php4. >*** Error code 1 > >Stop in /usr/ports/www/mod_php4. >*** Error code 1 > >Stop in /usr/ports/www/mod_php4. >*** Error code 1 > >Stop in /usr/ports/www/mod_php4. > > >I remember reading somewhere that apache (or php) needs gcc30. >So I try to download that. > ># cd /usr/ports/lang/gcc30 ># make >[and I get the following error] >cc: Internal compiler error: program cc1 got fatal signal 11 >gmake[2]: *** [c-decl.o] Error 1 >gmake[2]: Leaving directory `/usr/ports/lang/gcc30/work/build/gcc' >gmake[1]: *** [stage1_build] Error 2 >gmake[1]: Leaving directory `/usr/ports/lang/gcc30/work/build/gcc' >gmake: *** [bootstrap] Error 2 >*** Error code 2 > >Stop in /usr/ports/lang/gcc30. >*** Error code 1 > >Stop in /usr/ports/lang/gcc30. >*** Error code 1 > >Stop in /usr/ports/lang/gcc30. > >Going back and looking more closely at why mod_php4 failed, I see that >freetype2 failed. So, I install that and gd explicitly and retry mod_php4. >This time I get another failure point: > >[...stuff snipped..] >creating config.h >===> Building for ucd-snmp-4.2.1 >Segmentation fault - core dumped >*** Error code 139 > >Stop in /usr/ports/net/net-snmp. >*** Error code 1 > >Stop in /usr/ports/net/net-snmp. >*** Error code 1 > >Stop in /usr/ports/net/net-snmp. >*** Error code 1 > >Stop in /usr/ports/www/mod_php4. >*** Error code 1 > >Stop in /usr/ports/www/mod_php4. >*** Error code 1 > >Stop in /usr/ports/www/mod_php4. >*** Error code 1 > >Stop in /usr/ports/www/mod_php4. >*** Error code 1 > >Stop in /usr/ports/www/mod_php4. >*** Error code 1 > >Stop in /usr/ports/www/mod_php4. > > >I'm still trying things over here, but I sure could use >some help. As far as I can tell, I am doing what the manual says. > >Thanks for any help. > >Jim > > >========================================================= >Jim Freeze >jim@freeze.org >--------------------------------------------------------- >No comment at this time. >http://www.freeze.org >========================================================= > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message ------end of quote------ cynic@mail.cz ------------- And the eyes of them both were opened and they saw that their files were world readable and writable, so they chmoded 600 their files. - Book of Installation chapt 3 sec 7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 14:30:20 2001 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 11DD937B401 for ; Mon, 2 Jul 2001 14:30:16 -0700 (PDT) (envelope-from popov_hristo@yahoo.com) Message-ID: <20010702213015.65830.qmail@web10001.mail.yahoo.com> Received: from [212.50.29.37] by web10001.mail.yahoo.com; Mon, 02 Jul 2001 14:30:15 PDT Date: Mon, 2 Jul 2001 14:30:15 -0700 (PDT) From: Hristo Popov Subject: RE: error: linux-opera and linux-png 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 this problem. I move or remove mv /compat/linux/var/lib/rpm /compat/linux/var/lib/rpm1 Then I install linux_base from /usr/ports/emulators/linux_base with FORCE_PAKAGE_REGISTER=yes I no problem after this. Sorry for my English. Hristo Popov email:popov_hristo@yahoo.com ***** i'm trying to install linux-opera but i'm getting an error on libpng. i'm running 4.3-STABLE, and here's the error output: insomniac# uname -a FreeBSD insomniac.beastie.org 4.3-STABLE FreeBSD 4.3-STABLE #0: Fri May 4 18:07:01 MYT 2001 alvin@as5.kptn.org:/usr/obj/usr/src/sys/KERN5 i386 ================================================= insomniac# make install ===> Installing for linux-opera-5.0 ===> linux-opera-5.0 depends on file: /compat/linux/lib/ld.so - found ===> linux-opera-5.0 depends on file: /compat/linux/usr/lib/libpng.so.2 - not found ===> Verifying install for /compat/linux/usr/lib/libpng.so.2 in /usr/ports/graphics/linux-png ===> Installing for linux-png-1.0.3_1 ===> linux-png-1.0.3_1 depends on file: /compat/linux/etc/redhat-release - found libpng-1.0.3-4.i386.rpm *** Error code 1 Stop in /usr/ports/graphics/linux-png. *** Error code 1 Stop in /usr/ports/graphics/linux-png. *** Error code 1 Stop in /usr/ports/graphics/linux-png. *** Error code 1 Stop in /usr/ports/www/linux-opera. *** Error code 1 Stop in /usr/ports/www/linux-opera. *** Error code 1 Stop in /usr/ports/www/linux-opera. ================================================= so i tried installing linux-png. and here's the output: ================================================= insomniac# cd /usr/ports/graphics/linux-png insomniac# make install ===> Extracting for linux-png-1.0.3_1 >> Checksum OK for rpm/libpng-1.0.3-4.i386.rpm. ===> linux-png-1.0.3_1 depends on executable: rpm - found ===> Patching for linux-png-1.0.3_1 ===> Configuring for linux-png-1.0.3_1 ===> Installing for linux-png-1.0.3_1 ===> linux-png-1.0.3_1 depends on file: /compat/linux/etc/redhat-release - found libpng-1.0.3-4.i386.rpm old format database is present; use --rebuilddb to generate a new format database error: cannot open /compat/linux/var/lib/rpm/packages.rpm *** Error code 1 Stop in /usr/ports/graphics/linux-png. *** Error code 1 Stop in /usr/ports/graphics/linux-png. *** Error code 1 Stop in /usr/ports/graphics/linux-png. ================================================= i cd'd into /compat/linux/usr/lib and found that there _is_ no libpng.so.2 or any libpng for that matter. so... how about do i fix this error? what and where do i have to "make --rebuilddb", if thats even what it wants? thanks. -- Alvin bsd140870@yahoo.co.uk __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Mon Jul 2 14:32:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id AF51637B401; Mon, 2 Jul 2001 14:32:09 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f62LW0388848; Mon, 2 Jul 2001 17:32:00 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 17:31:59 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Cc: Subject: Is mod_php4 broken in ports? 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 have been trying all day to compile mod_php4 and the compile keeps failing. Does anyone know how to fix this? % uname -a FreeBSD eeyore1 4.3-RELEASE FreeBSD 4.3-RELEASE #0: Sat Apr 21 10:54:49 GMT 2001 jkh@narf.osd.bsdi.com:/usr/src/sys/compile/GENERIC i386 Here is the latest error: /usr/ports/www/mod_php4 12 -> make ===> Building for mod_php4-4.0.6_3 [snip] /bin/sh /usr/ports/www/mod_php4/work/php-4.0.6/libtool --silent --mode=compile cc -I. -I/usr/ports/www/mod_php4/work/php-4.0.6/ext/standard -I/usr/ports/www/mod_php4/work/php-4.0.6/main -I/usr/ports/www/mod_php4/work/php-4.0.6 -I/usr/local/include/apache -I/usr/ports/www/mod_php4/work/php-4.0.6/Zend -I/usr/local/include/freetype -I/usr/local/include/gd -I/usr/local/include/mysql -I/usr/ports/www/mod_php4/work/php-4.0.6/TSRM -DHARD_SERVER_LIMIT=512 -DDOCUMENT_LOCATION="/usr/local/www/data/" -DDEFAULT_PATH="/bin:/usr/bin:/usr/local/bin" -DACCEPT_FILTER_NAME="httpready" -DUSE_EXPAT -DSUPPORT_UTF8 -O -pipe -c scanf.c cc: Internal compiler error: program cc1 got fatal signal 11 *** Error code 1 Stop in /usr/ports/www/mod_php4/work/php-4.0.6/ext/standard. *** Error code 1 Stop in /usr/ports/www/mod_php4/work/php-4.0.6/ext/standard. *** Error code 1 Stop in /usr/ports/www/mod_php4/work/php-4.0.6/ext. *** Error code 1 Stop in /usr/ports/www/mod_php4/work/php-4.0.6. *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 14:33:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id 9801C37B409 for ; Mon, 2 Jul 2001 14:33:38 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f62LXQS88877; Mon, 2 Jul 2001 17:33:26 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 17:33:26 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Cynic Cc: Joe Clarke , Mike Meyer , Subject: Re: Does Anything work in ports??!! (Was: Re: php install and ./configure -with-mysql) In-Reply-To: <5.1.0.14.2.20010702233456.020bad60@mail.cz> 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, 2 Jul 2001, Cynic wrote: > neither Apache-1.3 nor PHP 4 require gcc-3.0 the coredumping > program is prolly gcc30 > Never got that far. gcc -v Using builtin specs. gcc version 2.95.3 [FreeBSD] 20010315 (release) ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 14:46:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from antares.gecadsoftware.com (antares.gecadsoftware.com [193.230.167.76]) by hub.freebsd.org (Postfix) with SMTP id 2AA3637B403 for ; Mon, 2 Jul 2001 14:46:24 -0700 (PDT) (envelope-from teo@gecadsoftware.com) Received: (qmail 91524 invoked from network); 2 Jul 2001 21:47:37 -0000 Received: from unknown (HELO taz.gecadsoftware.com) (193.230.245.17) by antares.gecadsoftware.com with SMTP; 2 Jul 2001 21:47:36 -0000 Received: from teo.gecadsoftware.com ([193.230.245.169]) by taz.gecadsoftware.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id N7KC0Y0R; Tue, 3 Jul 2001 00:44:20 +0300 Received: (qmail 14819 invoked by uid 500); 2 Jul 2001 21:44:02 -0000 Date: Tue, 3 Jul 2001 00:44:02 +0300 From: teo@gecadsoftware.com To: Subject: Re: Is mod_php4 broken in ports? Message-ID: <20010703004402.B14786@gecadsoftware.com> Reply-To: teo@gecadsoftware.com References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.15i In-Reply-To: ; from jim@freeze.org on Mon, Jul 02, 2001 at 05:31:59PM -0400 Organization: GeCAD Software Comment: Worry less, RAV is watching! X-Operating-System: Linux 2.2.16 i686 up 1 day, 5:35 Sender: owner-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 Jim! On Mon, 02 Jul 2001, Jim Freeze wrote: > Hi: > > I have been trying all day to compile mod_php4 and the compile > keeps failing. Does anyone know how to fix this? > > % uname -a > FreeBSD eeyore1 4.3-RELEASE FreeBSD 4.3-RELEASE #0: Sat Apr 21 10:54:49 > GMT 2001 jkh@narf.osd.bsdi.com:/usr/src/sys/compile/GENERIC i386 > > > Here is the latest error: > > /usr/ports/www/mod_php4 12 -> make > ===> Building for mod_php4-4.0.6_3 > [snip] > /bin/sh /usr/ports/www/mod_php4/work/php-4.0.6/libtool --silent > --mode=compile cc -I. > -I/usr/ports/www/mod_php4/work/php-4.0.6/ext/standard > -I/usr/ports/www/mod_php4/work/php-4.0.6/main > -I/usr/ports/www/mod_php4/work/php-4.0.6 -I/usr/local/include/apache > -I/usr/ports/www/mod_php4/work/php-4.0.6/Zend > -I/usr/local/include/freetype -I/usr/local/include/gd > -I/usr/local/include/mysql -I/usr/ports/www/mod_php4/work/php-4.0.6/TSRM > -DHARD_SERVER_LIMIT=512 -DDOCUMENT_LOCATION="/usr/local/www/data/" > -DDEFAULT_PATH="/bin:/usr/bin:/usr/local/bin" > -DACCEPT_FILTER_NAME="httpready" -DUSE_EXPAT -DSUPPORT_UTF8 -O -pipe -c > scanf.c > cc: Internal compiler error: program cc1 got fatal signal 11 this is one of those big and complex files of the Zend parser which eats up a lot of memory check how much { /tmp space u have, swap space u have} acording to your memory it may fail because of that. -- teodor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 14:54:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f193.law15.hotmail.com [64.4.23.193]) by hub.freebsd.org (Postfix) with ESMTP id D25E237B403 for ; Mon, 2 Jul 2001 14:54:48 -0700 (PDT) (envelope-from chrisquestions@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 2 Jul 2001 14:54:48 -0700 Received: from 216.229.105.23 by lw15fd.law15.hotmail.msn.com with HTTP; Mon, 02 Jul 2001 21:54:48 GMT X-Originating-IP: [216.229.105.23] From: "Chris Dritsas" To: freebsd-questions@freebsd.org Subject: mailing list archives Date: Mon, 02 Jul 2001 16:54:48 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 02 Jul 2001 21:54:48.0660 (UTC) FILETIME=[9D1A7940:01C10341] Sender: owner-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 Day, Is there any place that contains this mailing list archived? I wish search through it for some answers if something like that is available... --Chris _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 14:56:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from q.closedsrc.org (ip233.gte15.rb1.bel.nwlink.com [209.20.244.233]) by hub.freebsd.org (Postfix) with ESMTP id 3333837B406 for ; Mon, 2 Jul 2001 14:56:05 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id AD30055407; Mon, 2 Jul 2001 14:41:11 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id 9CE5F51610; Mon, 2 Jul 2001 14:41:11 -0700 (PDT) Date: Mon, 2 Jul 2001 14:41:11 -0700 (PDT) From: Linh Pham To: Chris Dritsas Cc: Subject: Re: mailing list archives 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 2001-07-02, Chris Dritsas scribbled: # Is there any place that contains this mailing list archived? I wish search # through it for some answers if something like that is available... Try: http://docs.freebsd.org/mail/ http://www.freebsd.org/search/search.html#mailinglists -- Linh Pham [lplist@closedsrc.org] // 404b - Brain not found To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 14:58:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from infofreebsd.org (dsl-64-193-145-21.telocity.com [64.193.145.21]) by hub.freebsd.org (Postfix) with ESMTP id 678EB37B401 for ; Mon, 2 Jul 2001 14:58:08 -0700 (PDT) (envelope-from herlan_b@infofreebsd.org) Received: from localhost (herlan_b@localhost) by infofreebsd.org (8.11.4/8.11.3) with ESMTP id f62Lw5H22184; Mon, 2 Jul 2001 17:58:06 -0400 (EDT) (envelope-from herlan_b@infofreebsd.org) Date: Mon, 2 Jul 2001 17:58:05 -0400 (EDT) From: herlan To: Chris Dritsas Cc: Subject: Re: mailing list archives In-Reply-To: Message-ID: <20010702175714.U22155-100000@infofreebsd.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://www.infofreebsd.org FreeBSD User Group in Indonesia On Mon, 2 Jul 2001, Chris Dritsas wrote: > Good Day, > > Is there any place that contains this mailing list archived? I wish search > through it for some answers if something like that is available... > http://docs.freebsd.org/mail/ herlan b http://www.infofreebsd.org FreeBSD User Group in Indonesia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 15: 2:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta1.snfc21.pbi.net (mta1.snfc21.pbi.net [206.13.28.122]) by hub.freebsd.org (Postfix) with ESMTP id 8178837B403 for ; Mon, 2 Jul 2001 15:02:10 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from mac ([64.166.86.37]) by mta1.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0GFV004YZ94L7V@mta1.snfc21.pbi.net> for freebsd-questions@freebsd.org; Mon, 2 Jul 2001 15:00:21 -0700 (PDT) Date: Mon, 02 Jul 2001 15:00:12 -0700 From: W Gerald Hicks Subject: Re: mailing list archives In-reply-to: To: freebsd-questions@freebsd.org Message-id: <0GFV004Z094L7V@mta1.snfc21.pbi.net> MIME-version: 1.0 (Apple Message framework v388) X-Mailer: Apple Mail (2.388) 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 FWIW, you can even make cvsup maintain local copies of the mailing lists for rapid searching with _very_ little effort. Cheers, W Gerald Hicks gehicks@pacbell.net On Monday, July 2, 2001, at 02:54 PM, Chris Dritsas wrote: > Good Day, > > Is there any place that contains this mailing list archived? I wish search > through it for some answers if something like that is available... > > --Chris > _________________________________________________________________ > Get your FREE download of MSN Explorer at http://explorer.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 Mon Jul 2 15: 5:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id 64DD437B401 for ; Mon, 2 Jul 2001 15:05:19 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f62M55L89366; Mon, 2 Jul 2001 18:05:05 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 18:05:04 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Cc: Subject: Re: Is mod_php4 broken in ports? In-Reply-To: <20010703004402.B14786@gecadsoftware.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 Tue, 3 Jul 2001 teo@gecadsoftware.com wrote: > Hi Jim! > > this is one of those big and complex files of the Zend parser which eats up > a lot of memory > check how much { /tmp space u have, swap space u have} acording to your memory > it may fail because of that. > Here is a snapshot of top right before it fails. Mem: 22M Active, 12M Inact, 14M Wired, 3760K Cache, 14M Buf, 7428K Free Swap: 500M Total, 1924K Used, 498M Free I only have 64MB RAM, but I have 500MB swap, which should be enough. Right now /tmp is on /. . du returns: Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s1a 496111 29142 427281 6% / /dev/ad0s1e 28099074 1778072 24073077 7% /usr procfs 4 4 0 100% /proc If I don't find a solution soon, I gonna be a full-time subscriber to the hair club for men. :) Cheers ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 15:23:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smithers.stomped.com (smithers.stomped.com [216.17.56.2]) by hub.freebsd.org (Postfix) with SMTP id 32FD537B401 for ; Mon, 2 Jul 2001 15:23:37 -0700 (PDT) (envelope-from malhavoc@stomped.com) Received: (qmail 29440 invoked by uid 1041); 2 Jul 2001 22:23:44 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 2 Jul 2001 22:23:44 -0000 Date: Mon, 2 Jul 2001 17:23:44 -0500 (CDT) From: Jason Nugent To: Jason Prosser Cc: Ryan Masse , FreeBSD-Questions Subject: Re: Stupid log file problems... 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 You might also want to try building logrotate from the ports collection (/usr/ports/sysutils/logrotate). You can set it up to look after a large number of different log files. I use it on a few machines and it works just great. HTH, Jason On Mon, 2 Jul 2001 at 5:22pm, Jason Prosser thought about > on 7/2/01 2:12 PM, Ryan Masse at mail@max-info.net wrote: > > > you may want to try; > > > > 1. delete, move, copy, gzip whatever /var/log/security > > 2. touch /var/log/security < creates a new empty file in that > > location > > 3. killall -HUP syslogd < restarts syslog > > 4. ipfw resetlog < resets and restarts the ipfw > > logging > > > > that should work.. > > > > Ryan > > Thank you... > > Worked like a charm. > > jp > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > ---------------------- Jason Nugent Aka MalHavoc Server Programmer and Administrator S T O M P E D . C O M For PGP public key: http://malhavoc.stomped.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 15:23:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from antares.gecadsoftware.com (antares.gecadsoftware.com [193.230.167.76]) by hub.freebsd.org (Postfix) with SMTP id A374537B405 for ; Mon, 2 Jul 2001 15:23:45 -0700 (PDT) (envelope-from teo@gecadsoftware.com) Received: (qmail 92421 invoked from network); 2 Jul 2001 22:24:59 -0000 Received: from unknown (HELO taz.gecadsoftware.com) (193.230.245.17) by antares.gecadsoftware.com with SMTP; 2 Jul 2001 22:24:58 -0000 Received: from teo.gecadsoftware.com ([193.230.245.169]) by taz.gecadsoftware.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id N7KC0ZBL; Tue, 3 Jul 2001 01:21:42 +0300 Received: (qmail 14997 invoked by uid 500); 2 Jul 2001 22:21:24 -0000 Date: Tue, 3 Jul 2001 01:21:24 +0300 From: teo@gecadsoftware.com To: Jim Freeze Cc: Subject: Re: Is mod_php4 broken in ports? Message-ID: <20010703012124.B14980@gecadsoftware.com> Reply-To: teo@gecadsoftware.com References: <20010703004402.B14786@gecadsoftware.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.15i In-Reply-To: ; from jim@freeze.org on Mon, Jul 02, 2001 at 06:05:04PM -0400 Organization: GeCAD Software Comment: Worry less, RAV is watching! X-Operating-System: Linux 2.2.16 i686 up 1 day, 6:14 Sender: owner-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 Jim! On Mon, 02 Jul 2001, Jim Freeze wrote: > On Tue, 3 Jul 2001 teo@gecadsoftware.com wrote: > > > Hi Jim! > > > > this is one of those big and complex files of the Zend parser which eats up > > a lot of memory > > check how much { /tmp space u have, swap space u have} acording to your memory > > it may fail because of that. > > > > Here is a snapshot of top right before it fails. > > Mem: 22M Active, 12M Inact, 14M Wired, 3760K Cache, 14M Buf, 7428K Free > Swap: 500M Total, 1924K Used, 498M Free > > I only have 64MB RAM, but I have 500MB swap, which should be enough. > > Right now /tmp is on /. . du returns: > > Filesystem 1K-blocks Used Avail Capacity Mounted on > /dev/ad0s1a 496111 29142 427281 6% / > /dev/ad0s1e 28099074 1778072 24073077 7% /usr > procfs 4 4 0 100% /proc > > If I don't find a solution soon, I gonna be a full-time subscriber to the > hair club for men. :) > :) well, weird, weird. once I had problems with cc1 friend, and guess what, it was because my CPU was overclocked. I gave it some room (back some Hz) and the problems went away. Also check the cooler, not to be stuck (because of too muck smoking arround? :) otherwise, just set core size to a non zero value and try to produce a core dump, or hmm, try to compile it on a different machine running FreeBSD. -- teodor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 15:35: 5 2001 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 DFFE437B405 for ; Mon, 2 Jul 2001 15:35:01 -0700 (PDT) (envelope-from akbeech@anchoragerescue.org) Received: from galaxy.anchoragerescue.org (galaxy.anchoragerescue.org [24.237.7.95]) by nebula.anchoragerescue.org (Postfix) with SMTP id 707F6183; Mon, 2 Jul 2001 14:35:00 -0800 (AKDT) Content-Type: text/plain; charset="iso-8859-1" From: Beech Rintoul To: Jim Freeze , Subject: Re: Is mod_php4 broken in ports? Date: Mon, 2 Jul 2001 14:35:00 -0800 X-Mailer: KMail [version 1.2] Cc: References: In-Reply-To: MIME-Version: 1.0 Message-Id: <01070214350000.12953@galaxy.anchoragerescue.org> 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 Monday 02 July 2001 14:05, Jim Freeze wrote: > On Tue, 3 Jul 2001 teo@gecadsoftware.com wrote: > > Hi Jim! > > > > this is one of those big and complex files of the Zend parser which eats > > up a lot of memory > > check how much { /tmp space u have, swap space u have} acording to your > > memory it may fail because of that. > > Here is a snapshot of top right before it fails. > > Mem: 22M Active, 12M Inact, 14M Wired, 3760K Cache, 14M Buf, 7428K Free > Swap: 500M Total, 1924K Used, 498M Free > > I only have 64MB RAM, but I have 500MB swap, which should be enough. > > Right now /tmp is on /. . du returns: > > Filesystem 1K-blocks Used Avail Capacity Mounted on > /dev/ad0s1a 496111 29142 427281 6% / > /dev/ad0s1e 28099074 1778072 24073077 7% /usr > procfs 4 4 0 100% /proc > > If I don't find a solution soon, I gonna be a full-time subscriber to the > hair club for men. :) > > Cheers > ========================================================= > Jim Freeze > jim@freeze.org > --------------------------------------------------------- > No comment at this time. > http://www.freeze.org > ========================================================= A sig 11 is also an indicator of possible hardware failure (usually RAM). You might check the archives, there's been a lot said about sig 11's. Beech Micro$oft: "Where can we make you go today?" ------------------------------------------------------------------- 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 Mon Jul 2 15:43:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from moutvdom00.kundenserver.de (moutvdom00.kundenserver.de [195.20.224.149]) by hub.freebsd.org (Postfix) with ESMTP id DF16837B401 for ; Mon, 2 Jul 2001 15:43:09 -0700 (PDT) (envelope-from m.schmitt@tarsius.org) Received: from [195.20.224.209] (helo=mrvdom02.schlund.de) by moutvdom00.kundenserver.de with esmtp (Exim 2.12 #2) id 15HCPM-0003z5-00 for freebsd-questions@freebsd.org; Tue, 3 Jul 2001 00:43:08 +0200 Received: from dip-01-052-3.misc.net ([195.64.107.52] helo=win2k) by mrvdom02.schlund.de with smtp (Exim 2.12 #2) id 15HCOz-0006Xx-00 for freebsd-questions@freebsd.org; Tue, 3 Jul 2001 00:42:45 +0200 From: "Moritz Schmitt" To: Subject: qmail startup Date: Tue, 3 Jul 2001 00:42:22 +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.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 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, I want to run qmail as my mail server. If I start qmail over the entry in inetd.conf, it's answering as soon as youconnect to the server on port 25. If I want to use the rc startup script it's starting (ps shows all the right processes) but it's not possible to talk to the server on the SMTP port (connection refused). Any ideas? -Moritz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 15:44: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from q.closedsrc.org (ip233.gte15.rb1.bel.nwlink.com [209.20.244.233]) by hub.freebsd.org (Postfix) with ESMTP id CF6C337B403 for ; Mon, 2 Jul 2001 15:44:02 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id 5151455407; Mon, 2 Jul 2001 15:29:08 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id 4179E51610; Mon, 2 Jul 2001 15:29:08 -0700 (PDT) Date: Mon, 2 Jul 2001 15:29:08 -0700 (PDT) From: Linh Pham To: Beech Rintoul Cc: Jim Freeze , , Subject: Re: Is mod_php4 broken in ports? In-Reply-To: <01070214350000.12953@galaxy.anchoragerescue.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 2001-07-02, Beech Rintoul scribbled: # A sig 11 is also an indicator of possible hardware failure (usually RAM). You # might check the archives, there's been a lot said about sig 11's. Other things that could cause SIG 11 errors include: overclocked processor, undercooled processors, failing or horribly mismatched RAM (or improper memory settings in the BIOS), overheated chipset, or flaky cooling and power. -- Linh Pham [lplist@closedsrc.org] // 404b - Brain not found To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 15:53:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from maybe.csap.af.mil (mudd.csap.af.mil [192.203.1.250]) by hub.freebsd.org (Postfix) with SMTP id 17D6937B403; Mon, 2 Jul 2001 15:53:05 -0700 (PDT) (envelope-from carlos.garcia@veridian.com) Received: from mailcenter.csap.af.mil(really [192.168.20.202]) by maybe.csap.af.mil via sendmail with smtp id for ; Mon, 2 Jul 2001 17:53:02 -0500 (CDT) (Smail-3.2 1996-Jul-4 #5 built 1999-Sep-4) Received: from veridian.com(really [192.168.50.250]) by mailcenter.csap.af.mil via sendmail with esmtp id for ; Mon, 2 Jul 2001 18:06:04 -0500 (CDT) (Smail-3.2 1996-Jul-4 #1 built 1999-Sep-8) Message-ID: <3B40F8C6.3435A871@veridian.com> Date: Mon, 02 Jul 2001 17:42:14 -0500 From: CRG X-Mailer: Mozilla 4.72 [en] (X11; I; SunOS 5.7 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org, freebsd-hackers@freebsd.org, maillist@coastsight.com, sven.huster@mailsurf.com Subject: Question on making a custom release 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 FreeBSD warriors: Steps I took to try to make a release. Followed the FreeBSD FAQ about making a custom release: -------------------------------------------- supfile looks like this: *default host=cvsup3.freebsd.org *default base=/usr *default prefix=/usr/local/cvstree *default release=cvs *default delete compress use-rel-suffix src-all -------------------------------------------- Next Ran this command: cvsup -g supfile Then I: setenv CVSROOT /usr/local/cvstree cd /usr/src make buildworld cd /usr/src/release make release BUILDNAME=4.3-CUSTOM CHROOTDIR=/usr/local/latest43/release CVSROOT=/usr/local/cvstree NOPORTS=1 NODOC=1 ---------------------------------------------- Builds for a couple of hours then I get this error: -------------------------------------------------------------- >>> Rebuilding man page indices -------------------------------------------------------------- cd /usr/src/share/man; make makedb makewhatis /usr/share/man makewhatis /usr/share/perl/man rm -rf /tmp/install.95817 -------------------------------------------------------------- >>> elf make world completed on Tue Jul 3 04:37:59 GMT 2001 (started Tue Jul 3 02:41:43 GMT 2001) -------------------------------------------------------------- + touch /tmp/.world_done + cd /usr/src/release/sysinstall cd: can't cd to /usr/src/release/sysinstall jett# *** Error code 2 Stop in /usr/src/release. I want to know which /usr/src/release/sysinstall? The one created in /usr/local/cvstree?, /usr/local/latest43/release?, or my /usr/src/release/sysinstall on my host machine. Note: My current kernel has the psuedo-device vn configure in and installed. I am root, but I did run cvsup as a user in the root's wheel group. So no /usr/local/latest43/release/R/ftp directory created. -Does anyone have any hints on what went wrong? -CRG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 15:59:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp015.mail.yahoo.com (smtp015.mail.yahoo.com [216.136.173.59]) by hub.freebsd.org (Postfix) with SMTP id 229CF37B401 for ; Mon, 2 Jul 2001 15:59:23 -0700 (PDT) (envelope-from dennywhite@yahoo.com) Received: from dhcp-134-29.bilcpe.cableone.net (HELO hal) (24.116.53.150) by smtp.mail.vip.sc5.yahoo.com with SMTP; 2 Jul 2001 22:59:22 -0000 X-Apparently-From: Message-ID: <000b01c1034a$7101ef60$6601a8c0@hal> From: "denny white" To: Subject: ipfw & pccard problems Date: Mon, 2 Jul 2001 17:57:22 -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 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 In the ruleset at the bottom, putting in 00301 thru 00401, I was able to ping ip's but had no dns resolution, so lines 000301 thru 00401 were added. Now, when the ruleset loads, ipfw warns that interface ed1 does not exist, yet immediately afterward, that's where dmesg lists it as being at ed1. The card is a Linksys Fast Ethernet 10/100 pc card, running on my laptop, a Toshiba PII 266 Satellite. Am new to this & was wondering if it's the load order that's causing it. That is, the ruleset being loaded before the card. If it is the problem, is there a way to reverse the load order? I thought that maybe I had to create the device, but it's always ran before now, & then I read that that's one device you don't make, that it's controlled from the kernel. For info sake, the only thing I've changed in my kernel is compiling sound & firewall support in, & afterward, running the standard "open" firewall, set in /etc/rc.conf, the pc card continued to work until I tried to use the new ruleset below. Before trying firewalls, I did one cvsup to learn how & got everything built & running okay, & then too, the pc card was working. Here's the ruleset I'm trying to use: 00100 0 0 allow ip from any to any via lo0 00200 0 0 deny ip from any to 127.0.0.0/8 00300 0 0 check-state 00301 0 0 deny tcp from any to any in established 00302 0 0 allow tcp from any to any keep-state setup 00400 0 0 allow udp from 24.116.0.81 53 to any in recv ed1 00401 0 0 allow udp from 24.226.0.201 53 to any in recv ed1 65535 30 2196 deny ip from any to any Thanks for all help I can get on this. _________________________________________________________ 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 Mon Jul 2 15:59:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from omsk.mushinsky.net (omsk.mushinsky.net [66.9.37.251]) by hub.freebsd.org (Postfix) with ESMTP id 151D237B405 for ; Mon, 2 Jul 2001 15:59:26 -0700 (PDT) (envelope-from imush@mail.ru) Received: from omsk.mushinsky.net (itz@localhost [127.0.0.1]) by omsk.mushinsky.net (8.11.3/8.11.1) with SMTP id f62MvQC17302; Mon, 2 Jul 2001 18:57:26 -0400 (EDT) (envelope-from imush@mail.ru) Content-Type: text/plain; charset="koi8-r" From: Isaac Mushinsky To: Jim Freeze , "freebsd-questions" Subject: Re: XFree86 4.0.3 Install problems Date: Mon, 2 Jul 2001 18:57:26 -0400 X-Mailer: KMail [version 1.2] References: In-Reply-To: MIME-Version: 1.0 Message-Id: <01070218572600.17213@omsk.mushinsky.net> 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 I didn't here of any special problems with it. It must be misconfigured. = Here=20 are some thing you may want to try. 1. Does this file home/jfreeze/.Xauthority exist? try removing it. 2. Try to go and recompile install wrapper from ports. (make deinstall &&= =20 make clean && make && make install) 3. Can root start the window manager? Can a user in wheel group? 4. Capture the outptut when you start X and send it here. On Monday 02 July 2001 08:42, you wrote: > On Mon, 2 Jul 2001, Isaac Mushinsky wrote: > > > When running startx I get a long pause, then > > > xauth: timeout in locking authority file /home/jfreeze/.Xauthority > > > xauth: timeout in locking authority file /home/jfreeze/.Xauthority > > > > Install wrapper from /usr/ports/x11, or have root start xdm. > > I saw that in the docs and attempted a pkg_add on the wrapper > but it said that the wrapper package was already added. > > > > Fatal server error: > > > Cannot open log file "/var/log/XFree86.0.log" > > > ... > > > > > > I am somewhat concerned about he config file, since > > > xf86config did not follow the sequence given in > > > the handbook and it did not link or write XF86Config > > > to /etc. > > > > The config file should be /etc/X11/XF86Config or /etc/X11/XF86Config-= 4 > > Yes, the config file instructions are outdated in the handbook. Look = at > > man XF86Config. > > Are there known problems with XFree86 4? > > Does someone have a step-by-step install of XFree86 4 online? > > Thanks > > =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=3D=3D=3D=3D=3D=3D > Jim Freeze > jim@freeze.org > --------------------------------------------------------- > No comment at this time. > http://www.freeze.org > =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=3D=3D=3D=3D=3D=3D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 16: 0:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id A0E0937B401 for ; Mon, 2 Jul 2001 16:00:08 -0700 (PDT) (envelope-from dima@unixfreak.org) Received: from hornet.unixfreak.org (hornet [63.198.170.140]) by bazooka.unixfreak.org (Postfix) with ESMTP id 339D13E28; Mon, 2 Jul 2001 16:00:07 -0700 (PDT) To: CRG Cc: freebsd-questions@freebsd.org Subject: Re: Question on making a custom release In-Reply-To: <3B40F8C6.3435A871@veridian.com>; from carlos.garcia@veridian.com on "Mon, 02 Jul 2001 17:42:14 -0500" Date: Mon, 02 Jul 2001 16:00:07 -0700 From: Dima Dorfman Message-Id: <20010702230007.339D13E28@bazooka.unixfreak.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 [ Please don't cross-post to so many lists! I'm dropping everything except -questions. ] CRG writes: > Then I: > setenv CVSROOT /usr/local/cvstree > cd /usr/src > make buildworld > cd /usr/src/release > make release BUILDNAME=4.3-CUSTOM CHROOTDIR=/usr/local/latest43/release > CVSROOT=/usr/local/cvstree NOPORTS=1 NODOC=1 You also need ``RELEASETAG=RELENG_4'' if you want a 4-STABLE release. If you were trying to build a -CURRENT release, you need to be doing that from a -CURRENT tree and on a -CURRENT host. From the looks of it, you wanted the former (a 4-STABLE release). > -------------------------------------------------------------- > >>> elf make world completed on Tue Jul 3 04:37:59 GMT 2001 > (started Tue Jul 3 02:41:43 GMT 2001) > -------------------------------------------------------------- > + touch /tmp/.world_done > + cd /usr/src/release/sysinstall > cd: can't cd to /usr/src/release/sysinstall > jett# > *** Error code 2 > > Stop in /usr/src/release. > > I want to know which /usr/src/release/sysinstall? > The one created in /usr/local/cvstree?, /usr/local/latest43/release?, or > my > /usr/src/release/sysinstall on my host machine. You don't provide enough context to tell, but I'm guessing it wants the one in your checked out copy. Fix the problem I mentioned above and it should work. Dima Dorfman dima@unixfreak.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 16: 4:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp013.mail.yahoo.com (smtp013.mail.yahoo.com [216.136.173.57]) by hub.freebsd.org (Postfix) with SMTP id 455F637B401 for ; Mon, 2 Jul 2001 16:04:24 -0700 (PDT) (envelope-from dennywhite@yahoo.com) Received: from dhcp-134-29.bilcpe.cableone.net (HELO hal) (24.116.53.150) by smtp.mail.vip.sc5.yahoo.com with SMTP; 2 Jul 2001 23:04:24 -0000 X-Apparently-From: Message-ID: <002301c1034b$24695d40$6601a8c0@hal> From: "denny white" To: "herlan" Cc: References: <20010630222340.D16650-100000@infofreebsd.org> Subject: Re: cvsup newbie problems Date: Mon, 2 Jul 2001 18:02:56 -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.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 .xinitrc & .xsession both have the same entries, exec startkde I know it's best to un xwindows from another user account rather than from root, but there had been no problem for weeks before this, after doing the initial install. There are no error messages. Xwindows just freezed up while trying to load & then the computer reboots. ----- Original Message ----- From: "herlan" To: "denny white" Sent: Saturday, June 30, 2001 9:26 PM Subject: Re: cvsup newbie problems > > try edit .xinitrc for root > > > http://www.infofreebsd.org > FreeBSD User Group in Indonesia > > On Sat, 30 Jun 2001, denny white wrote: > > > I installed freebsd without x & kde & got everything working > > right. Then I ran /stand/sysinstall & installed x & kde & setup > > the xserver. Everything ran great. What I failed to mention > > (my bad) was that I had created .xsession & .xinitrc for the > > other 2 users & now xwindows still runs fine for them. It's > > only logged in as root that xwindows crashes. It starts to > > load the gui & then freezes for a short while & then reboots. > > No error messages, not visible to me anyway. I'm sure there > > might be somewhere to find them afterward, but I don't know > > where to look. When it reboots, the system naturally goes > > through a lengthy check because of not shutting down right > > & then loads fine. I have some new extra files in /root now > > too that I didn't have before: > > MCOP-random-seed > > .gtkrc-kde > > .kxmlrpcd > > .mcoprc > > Please let me know if there's any other info I can provide. > > > > > > ----- Original Message ----- > > From: "herlan" > > To: "denny white" > > Cc: > > Sent: Saturday, June 30, 2001 9:48 AM > > Subject: Re: cvsup newbie problems > > > > > > > > > > > > > http://www.infofreebsd.org > > > FreeBSD User Group in Indonesia > > > > > > On Sat, 30 Jun 2001, denny white wrote: > > > > > > > Probably got in over my newbie head, trying to use cvsup, > > > > but had had so much success with freebsd, hated to stop > > > > trying to learn. Ran cvsup & went through the entire process, > > > > following the handbook & Annelise Anderson's online book. > > > > Everything looked like it was working great until I tried to run > > > > xwindows. I apparently broke something there. Just trying to > > > > find out the next step & it's probably in the documentation, > > > > but haven't found it yet. Is it best to just reinstall xwindows, > > > > kde, etc. from my cd 4.3 stable, or is there another course > > > > of action I can take to fix it? > > > > > > may be you can paste your error msg, so people can help you > > > > > > herlan b > > > > > > http://www.infofreebsd.org > > > FreeBSD User Group in Indonesia > > > > > > > > > > > > > > > > > ========================== > > > > Dance like no one is watching... > > > > Love like its never going to hurt... > > > > ========================== > > > > > > > > > > > > _________________________________________________________ > > > > 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 > > > > > > > > > > _________________________________________________________ > > Do You Yahoo!? > > Get your free @yahoo.com address at http://mail.yahoo.com > > > > _________________________________________________________ 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 Mon Jul 2 16:10: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from root.com (root.com [209.102.106.178]) by hub.freebsd.org (Postfix) with ESMTP id B707937B403 for ; Mon, 2 Jul 2001 16:10:02 -0700 (PDT) (envelope-from dg@root.com) Received: (from dg@localhost) by root.com (8.11.2/8.11.2) id f62MxfQ83614; Mon, 2 Jul 2001 15:59:41 -0700 (PDT) (envelope-from dg) Date: Mon, 2 Jul 2001 15:59:41 -0700 From: David Greenman To: Greg Quinlan Cc: freebsd-questions@freebsd.org Subject: Re: fxp NIC error! Message-ID: <20010702155941.A83552@nexus.root.com> References: <20010702210151.27633.qmail@web13305.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010702210151.27633.qmail@web13305.mail.yahoo.com>; from gwq_uk@yahoo.com on Mon, Jul 02, 2001 at 10:01:51PM +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 >Hi all, > >Does anyone know why I have one fxp type interface >that works but the other gives these errors. > >I have been told it is because Plug & Play OS is set >to yes? Why? Did setting it to NO fix the problem? The issue has to do with interrupt routing and other BIOS related stuff. -DG David Greenman Co-founder, The FreeBSD Project - http://www.freebsd.org President, TeraSolutions, Inc. - http://www.terasolutions.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 Mon Jul 2 16:21:55 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smithers.stomped.com (smithers.stomped.com [216.17.56.2]) by hub.freebsd.org (Postfix) with SMTP id 1B01D37B405 for ; Mon, 2 Jul 2001 16:21:51 -0700 (PDT) (envelope-from malhavoc@stomped.com) Received: (qmail 30957 invoked by uid 1041); 2 Jul 2001 23:22:02 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 2 Jul 2001 23:22:02 -0000 Date: Mon, 2 Jul 2001 18:22:02 -0500 (CDT) From: Jason Nugent To: Moritz Schmitt Cc: Subject: Re: qmail startup 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 If you run it from the rc startup script, does tcpserver start correctly? If it's not running from inetd, it would need to have tcpserver handle it's connections on port 25. HTH, Jason On Tue, 3 Jul 2001 at 6:19pm, Moritz Schmitt thought about > Hello, > > I want to run qmail as my mail server. If I start qmail over the entry in > inetd.conf, it's answering as soon as youconnect to the server on port 25. > If I want to use the rc startup script it's starting (ps shows all the right > processes) but it's not possible to talk to the server on the SMTP port > (connection refused). > > Any ideas? > > -Moritz > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > ---------------------- Jason Nugent Aka MalHavoc Server Programmer and Administrator S T O M P E D . C O M For PGP public key: http://malhavoc.stomped.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 16:29: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id D534137B403 for ; Mon, 2 Jul 2001 16:28:59 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f62NTX721691; Mon, 2 Jul 2001 19:29:33 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 2 Jul 2001 19:29:33 -0400 (EDT) From: Joe Clarke To: Jim Freeze Cc: Mike Meyer , Subject: Re: Does Anything work in ports??!! (Was: Re: php install and ./configure -with-mysql) In-Reply-To: Message-ID: <20010702192720.F21654-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 What version of FreeBSD are you using? I hate to say this, but if you're seeing random compiler failures, it usually menas you have some bad hardware somewhere. Last time I encountered this problem, I replaced all the RAM in my machine, and things started working again. I have suvvessfully built PHP 4.0.5 on FreeBSD 4.3-RELEASE. I have not yet built 4.0.6, but I should do that. I'll let you know how it goes. gcc30 is _not_ required for any of the ports that I'm aware of; certainly not Apache of PHP. Joe Clarke On Mon, 2 Jul 2001, Jim Freeze wrote: > Man, what a day, I have never had so many things not work. > > On Mon, 2 Jul 2001, Joe Clarke wrote: > > > If all you want to do is update your ports tree, try using the example in > > /usr/share/examples/cvsup/ports-supfile. It is designed to pull down the > > latest ports stubs from the -current branch (which is what you want). > > > > Thanks Joe. I took your advice and used the ports-supfile in > /usr/share/examples. It worked fine and I was able to update my ports. > While that worked great, all my attempts to compile php and apache seem to > end in failure. > > My original goal is to install apache 1.3.20 and php4.0.6. > > I started with: > # cd /usr/ports/www/mod_php4 > # make > [after some time it fails] > cc -c -O -pipe > -I/usr/ports/print/freetype2/work/freetype-2.0.3/builds/unix > -I/usr/ports/print/freetype2/work/freetype-2.0.3/include > -I/usr/ports/print/freetype2/work/freetype-2.0.3/src/autohint > /usr/ports/print/freetype2/work/freetype-2.0.3/src/autohint/autohint.c -o > /usr/ports/print/freetype2/work/freetype-2.0.3/objs/autohint.o >/dev/null > 2>&1 > gmake: *** > [/usr/ports/print/freetype2/work/freetype-2.0.3/objs/autohint.lo] Error 1 > *** Error code 2 > > Stop in /usr/ports/print/freetype2. > *** Error code 1 > > Stop in /usr/ports/print/freetype2. > *** Error code 1 > > Stop in /usr/ports/print/freetype2. > *** Error code 1 > > Stop in /usr/ports/print/freetype2. > *** Error code 1 > > Stop in /usr/ports/graphics/gd. > *** Error code 1 > > Stop in /usr/ports/graphics/gd. > *** Error code 1 > > Stop in /usr/ports/graphics/gd. > *** Error code 1 > > Stop in /usr/ports/graphics/gd. > *** Error code 1 > > Stop in /usr/ports/graphics/gd. > *** Error code 1 > > Stop in /usr/ports/graphics/gd. > *** Error code 1 > > Stop in /usr/ports/graphics/gd. > *** Error code 1 > > Stop in /usr/ports/www/mod_php4. > *** Error code 1 > > Stop in /usr/ports/www/mod_php4. > *** Error code 1 > > Stop in /usr/ports/www/mod_php4. > *** Error code 1 > > Stop in /usr/ports/www/mod_php4. > *** Error code 1 > > Stop in /usr/ports/www/mod_php4. > *** Error code 1 > > Stop in /usr/ports/www/mod_php4. > > > I remember reading somewhere that apache (or php) needs gcc30. > So I try to download that. > > # cd /usr/ports/lang/gcc30 > # make > [and I get the following error] > cc: Internal compiler error: program cc1 got fatal signal 11 > gmake[2]: *** [c-decl.o] Error 1 > gmake[2]: Leaving directory `/usr/ports/lang/gcc30/work/build/gcc' > gmake[1]: *** [stage1_build] Error 2 > gmake[1]: Leaving directory `/usr/ports/lang/gcc30/work/build/gcc' > gmake: *** [bootstrap] Error 2 > *** Error code 2 > > Stop in /usr/ports/lang/gcc30. > *** Error code 1 > > Stop in /usr/ports/lang/gcc30. > *** Error code 1 > > Stop in /usr/ports/lang/gcc30. > > Going back and looking more closely at why mod_php4 failed, I see that > freetype2 failed. So, I install that and gd explicitly and retry mod_php4. > This time I get another failure point: > > [...stuff snipped..] > creating config.h > ===> Building for ucd-snmp-4.2.1 > Segmentation fault - core dumped > *** Error code 139 > > Stop in /usr/ports/net/net-snmp. > *** Error code 1 > > Stop in /usr/ports/net/net-snmp. > *** Error code 1 > > Stop in /usr/ports/net/net-snmp. > *** Error code 1 > > Stop in /usr/ports/www/mod_php4. > *** Error code 1 > > Stop in /usr/ports/www/mod_php4. > *** Error code 1 > > Stop in /usr/ports/www/mod_php4. > *** Error code 1 > > Stop in /usr/ports/www/mod_php4. > *** Error code 1 > > Stop in /usr/ports/www/mod_php4. > *** Error code 1 > > Stop in /usr/ports/www/mod_php4. > > > I'm still trying things over here, but I sure could use > some help. As far as I can tell, I am doing what the manual says. > > Thanks for any help. > > Jim > > > ========================================================= > Jim Freeze > jim@freeze.org > --------------------------------------------------------- > No comment at this time. > http://www.freeze.org > ========================================================= > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 16:31:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta1.snfc21.pbi.net (mta1.snfc21.pbi.net [206.13.28.122]) by hub.freebsd.org (Postfix) with ESMTP id 164DE37B403 for ; Mon, 2 Jul 2001 16:31:01 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from mac ([64.166.86.37]) by mta1.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0GFV006ROD9B8K@mta1.snfc21.pbi.net> for freebsd-questions@freebsd.org; Mon, 2 Jul 2001 16:29:35 -0700 (PDT) Date: Mon, 02 Jul 2001 16:29:25 -0700 From: W Gerald Hicks Subject: Re: Question on making a custom release In-reply-to: <20010702230007.339D13E28@bazooka.unixfreak.org> To: CRG Cc: FreeBSD Question List Message-id: <0GFV006RQD9B8K@mta1.snfc21.pbi.net> MIME-version: 1.0 (Apple Message framework v388) X-Mailer: Apple Mail (2.388) 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 Also, be careful not to get too creative with the 'BUILDNAME'. That leading '4.3-' is important for uname and quite a few behaviors that depend on it. Learned the hard way ;-) Cheers, W Gerald Hicks gehicks@pacbell.net On Monday, July 2, 2001, at 04:00 PM, Dima Dorfman wrote: > [ Please don't cross-post to so many lists! I'm dropping everything > except -questions. ] > > CRG writes: >> Then I: >> setenv CVSROOT /usr/local/cvstree >> cd /usr/src >> make buildworld >> cd /usr/src/release >> make release BUILDNAME=4.3-CUSTOM CHROOTDIR=/usr/local/latest43/release >> CVSROOT=/usr/local/cvstree NOPORTS=1 NODOC=1 > > You also need ``RELEASETAG=RELENG_4'' if you want a 4-STABLE release. > If you were trying to build a -CURRENT release, you need to be doing > that from a -CURRENT tree and on a -CURRENT host. From the looks of > it, you wanted the former (a 4-STABLE release). > >> -------------------------------------------------------------- >>>>> elf make world completed on Tue Jul 3 04:37:59 GMT 2001 >> (started Tue Jul 3 02:41:43 GMT 2001) >> -------------------------------------------------------------- >> + touch /tmp/.world_done >> + cd /usr/src/release/sysinstall >> cd: can't cd to /usr/src/release/sysinstall >> jett# >> *** Error code 2 >> >> Stop in /usr/src/release. >> >> I want to know which /usr/src/release/sysinstall? >> The one created in /usr/local/cvstree?, /usr/local/latest43/release?, or >> my >> /usr/src/release/sysinstall on my host machine. > > You don't provide enough context to tell, but I'm guessing it wants > the one in your checked out copy. Fix the problem I mentioned above > and it should work. > > Dima Dorfman > dima@unixfreak.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 Jul 2 16:57: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id B2FB137B403 for ; Mon, 2 Jul 2001 16:56:58 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f62Nuf590941; Mon, 2 Jul 2001 19:56:41 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 19:56:41 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Linh Pham Cc: Beech Rintoul , , Subject: Re: Is mod_php4 broken in ports? 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 all: I swapped my RAM and tried to build the kernel. I used the GENERIC kernel unmodified. I figured that should compile. But it didn't. Any ideas? Results below: perl @/kern/makeops.pl -h @/dev/mii/miibus_if.m cc -O -pipe -D_KERNEL -Wall -Wredundant-decls -Wnested-externs -Wstrict-protot ypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extens ions -ansi -DKLD_MODULE -nostdinc -I- -I. -I@ -I@/../include -I/usr/include -m preferred-stack-boundary=2 -c /usr/src/sys/modules/kue/../../dev/usb/if_kue.c /usr/src/sys/modules/kue/../../dev/usb/if_kue.c: In function `kue_ioctl': /usr/src/sys/modules/kue/../../dev/usb/if_kue.c:956: `strubt' undeclared (first use in this function) /usr/src/sys/modules/kue/../../dev/usb/if_kue.c:956: (Each undeclared identifier is reported only once /usr/src/sys/modules/kue/../../dev/usb/if_kue.c:956: for each function it appear s in.) /usr/src/sys/modules/kue/../../dev/usb/if_kue.c:956: syntax error before `ifreq' *** Error code 1 Stop in /usr/src/sys/modules/kue. *** Error code 1 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/src/sys/compile/GENERIC. > # A sig 11 is also an indicator of possible hardware failure (usually RAM). You > # might check the archives, there's been a lot said about sig 11's. > > Other things that could cause SIG 11 errors include: overclocked > processor, undercooled processors, failing or horribly mismatched RAM > (or improper memory settings in the BIOS), overheated chipset, or flaky > cooling and power. > > -- > Linh Pham > [lplist@closedsrc.org] > > // 404b - Brain not found > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 17: 3:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta1.snfc21.pbi.net (mta1.snfc21.pbi.net [206.13.28.122]) by hub.freebsd.org (Postfix) with ESMTP id D7FA037B401 for ; Mon, 2 Jul 2001 17:03:07 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from mac ([64.166.86.37]) by mta1.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0GFV0041RERS7V@mta1.snfc21.pbi.net> for questions@FreeBSD.ORG; Mon, 2 Jul 2001 17:02:16 -0700 (PDT) Date: Mon, 02 Jul 2001 17:02:07 -0700 From: W Gerald Hicks Subject: Re: Is mod_php4 broken in ports? In-reply-to: To: jim@freeze.org Cc: questions@FreeBSD.ORG Message-id: <0GFV0041SERS7V@mta1.snfc21.pbi.net> MIME-version: 1.0 (Apple Message framework v388) X-Mailer: Apple Mail (2.388) 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 Look at that 'strubt' Hex code for 'b' = 98, 'c' = 99 (interesting that they're one bit different) Understand that strubt is not found anywhere in an exhaustive search of the CVS repo. You've got bit errors bud, whether it's ram or motherboard. Sorry. FreeBSD has some rough edges in some corners but nothing like the pain you are going through. Good Luck, W. Gerald Hicks gehicks@pacbell.net On Monday, July 2, 2001, at 04:56 PM, Jim Freeze wrote: > Hi all: > > I swapped my RAM and tried to build the kernel. > I used the GENERIC kernel unmodified. I figured that should compile. > But it didn't. Any ideas? > > > Results below: > > perl @/kern/makeops.pl -h @/dev/mii/miibus_if.m > cc -O -pipe -D_KERNEL -Wall -Wredundant-decls -Wnested-externs > -Wstrict-protot > ypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual > -fformat-extens > ions -ansi -DKLD_MODULE -nostdinc -I- -I. -I@ -I@/../include > -I/usr/include -m > preferred-stack-boundary=2 -c > /usr/src/sys/modules/kue/../../dev/usb/if_kue.c > /usr/src/sys/modules/kue/../../dev/usb/if_kue.c: In function `kue_ioctl': > /usr/src/sys/modules/kue/../../dev/usb/if_kue.c:956: `strubt' undeclared > (first > use in this function) > /usr/src/sys/modules/kue/../../dev/usb/if_kue.c:956: (Each undeclared > identifier > is reported only once > /usr/src/sys/modules/kue/../../dev/usb/if_kue.c:956: for each function it > appear > s in.) > /usr/src/sys/modules/kue/../../dev/usb/if_kue.c:956: syntax error before > `ifreq' > *** Error code 1 > Stop in /usr/src/sys/modules/kue. > *** Error code 1 > Stop in /usr/src/sys/modules. > *** Error code 1 > Stop in /usr/src/sys/compile/GENERIC. > > >> # A sig 11 is also an indicator of possible hardware failure (usually RAM) >> . You >> # might check the archives, there's been a lot said about sig 11's. >> >> Other things that could cause SIG 11 errors include: overclocked >> processor, undercooled processors, failing or horribly mismatched RAM >> (or improper memory settings in the BIOS), overheated chipset, or flaky >> cooling and power. >> >> -- >> Linh Pham >> [lplist@closedsrc.org] >> >> // 404b - Brain not found >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-questions" in the body of the message >> > > > ========================================================= > Jim Freeze > jim@freeze.org > --------------------------------------------------------- > No comment at this time. > http://www.freeze.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 Jul 2 17: 6:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from www.tntpro.com (159-63.suscom-maine.net [207.5.159.63]) by hub.freebsd.org (Postfix) with ESMTP id 0DDBB37B403 for ; Mon, 2 Jul 2001 17:06:10 -0700 (PDT) (envelope-from tony@tntpro.com) Received: from TONY (tony.tntpro.com [192.168.0.10]) by www.tntpro.com (8.11.4/8.11.3) with SMTP id f6305bv69041; Mon, 2 Jul 2001 20:05:38 -0400 (EDT) (envelope-from tony@tntpro.com) Message-ID: <002501c10353$b8c79120$0a00a8c0@TONY> From: "Tony" To: "Richard Smith" , "Michael Lucas" Cc: References: <20010701131531.A78357@blackhelicopters.org> <20010701200306.A282@gaia.home.rdls.net> Subject: Re: dummynet question Date: Mon, 2 Jul 2001 20:04:24 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 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 what type of modification would need to be made if I was running the rules on a firewall instead of the webserver itself? I have gone online and read all the reference material I can find and can't seem to find the solution. my firewall has two interfaces 192.168.0.1 and 207.5.xxx.xx, my webserver is on 192.168.0.100 I would love some help, I tried the rulse as micheal had them, but to no avail... root:~# ipfw -a list 00050 1124169 673224297 divert 8668 ip from any to any via ed0 00100 10012 1012606 allow ip from any to any via lo0 00200 0 0 deny ip from any to 127.0.0.0/8 00300 0 0 deny ip from 127.0.0.0/8 to any 00350 0 0 pipe 1 tcp from 192.168.1.100 to any out 65000 2266497 1348187861 allow ip from any to any 65535 3 452 deny ip from any to any root:~# ----- Original Message ----- From: "Richard Smith" To: "Michael Lucas" Cc: Sent: Sunday, July 01, 2001 3:03 PM Subject: Re: dummynet question > On Sun, Jul 01, 2001 at 01:15:31PM -0400, Michael Lucas wrote: > > Hello, > > > > I have several Web sites, with different IP addresses, on one server. > > I would like to limit each individual site to 128k of outbound traffic. > > > > ipfw add 00100 pipe 1 ip from a.b.c.d to any > > ipfw add 00200 pipe 2 ip from a.b.c.e to any > > .... > > > > ipfw pipe 1 config bw 128Kbit/s > > ipfw pipe 2 config bw 128Kbit/s > > ... > > > > Could I simplify this into pointing each IPFW rule into "pipe 1", > > throttling each to 128K? Or would they share the bandwidth, or would > > something else funky happen? > > No. They would all share the same 128K pipe. Your former approach > is the correct one. [I am assuming that the rules run on the web > server itself, otherwise they may need modification] > > Richard. > > -- > Richard Smith > Network Systems Director > Satamatics Ltd > Green Lane, Tewkesbury, GL20 8HD, United Kingdom > Tel: +44 1684 278610 > Fax: +44 1684 278611 > > 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 Jul 2 17: 7:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id 27D2437B403 for ; Mon, 2 Jul 2001 17:07:31 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f6307YQ21873; Mon, 2 Jul 2001 20:07:34 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 2 Jul 2001 20:07:34 -0400 (EDT) From: Joe Clarke To: Jim Freeze Cc: Linh Pham , Beech Rintoul , , Subject: Re: Is mod_php4 broken in ports? In-Reply-To: Message-ID: <20010702200549.R21654-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 Danger, Will Robinson! It looks bad. I think strubt should be struct. My line 956 is part of a switch block, so I can't be sure what it's doing there. However, if line 956 really says strubt when it should say struct, you can try fixing it, then recompiling. If it says struct, then you may have corrupt cache, disk, or a bad board. Joe Clarke On Mon, 2 Jul 2001, Jim Freeze wrote: > Hi all: > > I swapped my RAM and tried to build the kernel. > I used the GENERIC kernel unmodified. I figured that should compile. > But it didn't. Any ideas? > > > Results below: > > perl @/kern/makeops.pl -h @/dev/mii/miibus_if.m > cc -O -pipe -D_KERNEL -Wall -Wredundant-decls -Wnested-externs > -Wstrict-protot > ypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual > -fformat-extens > ions -ansi -DKLD_MODULE -nostdinc -I- -I. -I@ -I@/../include > -I/usr/include -m > preferred-stack-boundary=2 -c > /usr/src/sys/modules/kue/../../dev/usb/if_kue.c > /usr/src/sys/modules/kue/../../dev/usb/if_kue.c: In function `kue_ioctl': > /usr/src/sys/modules/kue/../../dev/usb/if_kue.c:956: `strubt' undeclared > (first > use in this function) > /usr/src/sys/modules/kue/../../dev/usb/if_kue.c:956: (Each undeclared > identifier > is reported only once > /usr/src/sys/modules/kue/../../dev/usb/if_kue.c:956: for each function it > appear > s in.) > /usr/src/sys/modules/kue/../../dev/usb/if_kue.c:956: syntax error before > `ifreq' > *** Error code 1 > Stop in /usr/src/sys/modules/kue. > *** Error code 1 > Stop in /usr/src/sys/modules. > *** Error code 1 > Stop in /usr/src/sys/compile/GENERIC. > > > > # A sig 11 is also an indicator of possible hardware failure (usually RAM). You > > # might check the archives, there's been a lot said about sig 11's. > > > > Other things that could cause SIG 11 errors include: overclocked > > processor, undercooled processors, failing or horribly mismatched RAM > > (or improper memory settings in the BIOS), overheated chipset, or flaky > > cooling and power. > > > > -- > > Linh Pham > > [lplist@closedsrc.org] > > > > // 404b - Brain not found > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > ========================================================= > Jim Freeze > jim@freeze.org > --------------------------------------------------------- > No comment at this time. > http://www.freeze.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 Jul 2 17:27:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id 5DE4A37B401 for ; Mon, 2 Jul 2001 17:27:23 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f630RCM91235; Mon, 2 Jul 2001 20:27:12 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 20:27:10 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Joe Clarke Cc: Linh Pham , Beech Rintoul , , Subject: Re: Is mod_php4 broken in ports? In-Reply-To: <20010702200549.R21654-100000@shumai.marcuscom.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 Mon, 2 Jul 2001, Joe Clarke wrote: > Danger, Will Robinson! It looks bad. I think strubt should be struct. Tell me about it! I just check the file. No strubt in site. (I wonder if the data could be lost in the cable from the HD to the controller?) A little history. This machine has been running FBSD3.4R just fine. I have been wanting to update it for a long time, so I finally bought a new drive (30G Maxtor) and started the upgrade. The system is a K6-2 450 (clocked at 400 to keep it cool) and an AOpen MB. Under that configuration it was rather stable. Do you think that 4.3 stresses the hardware more than 3.4? Well, it looks like I am going to have to upgrade. I can get a new 800MHz Duron and AOpen MB about $175.00. The MB has built in sound and video. The hardware compatability list doesn't list AOpen MB's as supporting onboard video and sound. I wonder if getting one of these is a smart move? Thanks for the help and your patience through my anguish. Jim ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 17:33:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta1.snfc21.pbi.net (mta1.snfc21.pbi.net [206.13.28.122]) by hub.freebsd.org (Postfix) with ESMTP id 8A5BB37B401 for ; Mon, 2 Jul 2001 17:33:42 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from mac ([64.166.86.37]) by mta1.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0GFV00EQSG7B4Z@mta1.snfc21.pbi.net> for questions@FreeBSD.ORG; Mon, 2 Jul 2001 17:33:12 -0700 (PDT) Date: Mon, 02 Jul 2001 17:33:02 -0700 From: W Gerald Hicks Subject: Re: Is mod_php4 broken in ports? In-reply-to: To: jim@freeze.org Cc: questions@FreeBSD.ORG Message-id: <0GFV00EQTG7B4Z@mta1.snfc21.pbi.net> MIME-version: 1.0 (Apple Message framework v388) X-Mailer: Apple Mail (2.388) 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 ESD while installing new disk one might venture... On Monday, July 2, 2001, at 05:27 PM, Jim Freeze wrote: > On Mon, 2 Jul 2001, Joe Clarke wrote: > >> Danger, Will Robinson! It looks bad. I think strubt should be struct. > > Tell me about it! > I just check the file. No strubt in site. > (I wonder if the data could be lost in the cable from > the HD to the controller?) > > A little history. > This machine has been running FBSD3.4R just fine. > I have been wanting to update it for a long time, so > I finally bought a new drive (30G Maxtor) and started > the upgrade. The system is a K6-2 450 (clocked at 400 > to keep it cool) and an AOpen MB. Under that configuration > it was rather stable. Do you think that 4.3 stresses > the hardware more than 3.4? > > Well, it looks like I am going to have to upgrade. > I can get a new 800MHz Duron and AOpen MB about $175.00. > The MB has built in sound and video. The hardware compatability > list doesn't list AOpen MB's as supporting onboard video and sound. > I wonder if getting one of these is a smart move? > > Thanks for the help and your patience through my anguish. > > Jim > > > ========================================================= > Jim Freeze > jim@freeze.org > --------------------------------------------------------- > No comment at this time. > http://www.freeze.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 Jul 2 17:41:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id EF89D37B401 for ; Mon, 2 Jul 2001 17:41:37 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f630eQt91405; Mon, 2 Jul 2001 20:40:26 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 20:40:26 -0400 (EDT) From: Jim Freeze X-X-Sender: To: W Gerald Hicks Cc: Subject: Re: Is mod_php4 broken in ports? In-Reply-To: <0GFV00EQTG7B4Z@mta1.snfc21.pbi.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, 2 Jul 2001, W Gerald Hicks wrote: > ESD while installing new disk one might venture... Well, I am now running back on the old disk, same computer, and things are running fine. I don't think ESD is the problem. The one big difference I between the two was that I tried soft-updates on the new drive. I'm thinking that that may be the problem. Whad'ya think? Jim ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 17:47: 7 2001 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 1209137B401 for ; Mon, 2 Jul 2001 17:47:05 -0700 (PDT) (envelope-from mwlucas@blackhelicopters.org) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id UAA83553 for questions@freebsd.org; Mon, 2 Jul 2001 20:47:04 -0400 (EDT) (envelope-from mwlucas) Date: Mon, 2 Jul 2001 20:47:04 -0400 From: Michael Lucas To: questions@freebsd.org Subject: netstat -nr flags Message-ID: <20010702204704.A83540@blackhelicopters.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.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 Hello, netstat -nr has a flags field. These flags are documented in some man page. Can anyone tell me where this is? I've read this before, and for the life of me cannot remember which page this is... Thanks, Michael -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 17:50: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from q.closedsrc.org (ip233.gte15.rb1.bel.nwlink.com [209.20.244.233]) by hub.freebsd.org (Postfix) with ESMTP id A578B37B403 for ; Mon, 2 Jul 2001 17:49:58 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id 5209F55407; Mon, 2 Jul 2001 17:35:00 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id 4068951610; Mon, 2 Jul 2001 17:35:00 -0700 (PDT) Date: Mon, 2 Jul 2001 17:35:00 -0700 (PDT) From: Linh Pham To: Michael Lucas Cc: Subject: Re: netstat -nr flags In-Reply-To: <20010702204704.A83540@blackhelicopters.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 2001-07-02, Michael Lucas scribbled: # netstat -nr has a flags field. These flags are documented in some man # page. Can anyone tell me where this is? # # I've read this before, and for the life of me cannot remember which # page this is... Looking for something like this: 1 RTF_PROTO1 Protocol specific routing flag #1 2 RTF_PROTO2 Protocol specific routing flag #2 3 RTF_PROTO3 Protocol specific routing flag #3 B RTF_BLACKHOLE Just discard pkts (during updates) b RTF_BROADCAST The route represents a broadcast address C RTF_CLONING Generate new routes on use c RTF_PRCLONING Protocol-specified generate new routes on use D RTF_DYNAMIC Created dynamically (by redirect) G RTF_GATEWAY Destination requires forwarding by intermediary H RTF_HOST Host entry (net otherwise) L RTF_LLINFO Valid protocol to link address translation M RTF_MODIFIED Modified dynamically (by redirect) R RTF_REJECT Host or net unreachable S RTF_STATIC Manually added U RTF_UP Route usable W RTF_WASCLONED Route was generated as a result of cloning X RTF_XRESOLVE External daemon translates proto to link address ??? -- Linh Pham [lplist@closedsrc.org] // 404b - Brain not found To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 17:53:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id E724937B406 for ; Mon, 2 Jul 2001 17:53:45 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f630rlw22022; Mon, 2 Jul 2001 20:53:47 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 2 Jul 2001 20:53:47 -0400 (EDT) From: Joe Clarke To: Jim Freeze Cc: Linh Pham , Beech Rintoul , , Subject: Re: Is mod_php4 broken in ports? In-Reply-To: Message-ID: <20010702205214.F21654-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 An upgrade sounds prudent...but may not be necessary. If you isolate the fault to the MB, then, yes, upgrade. I just bought a new Maxtor 7200 UDMA drive for my OpenBSD machine, and found things get screwy if you don't use the included DMA cable. I don't have any experience with the AOpen MB, so I wouldn't be able to tell you. However, the video card probably uses a well-known chipset (like ATI) which is supported. Joe Clarke On Mon, 2 Jul 2001, Jim Freeze wrote: > On Mon, 2 Jul 2001, Joe Clarke wrote: > > > Danger, Will Robinson! It looks bad. I think strubt should be struct. > > Tell me about it! > I just check the file. No strubt in site. > (I wonder if the data could be lost in the cable from > the HD to the controller?) > > A little history. > This machine has been running FBSD3.4R just fine. > I have been wanting to update it for a long time, so > I finally bought a new drive (30G Maxtor) and started > the upgrade. The system is a K6-2 450 (clocked at 400 > to keep it cool) and an AOpen MB. Under that configuration > it was rather stable. Do you think that 4.3 stresses > the hardware more than 3.4? > > Well, it looks like I am going to have to upgrade. > I can get a new 800MHz Duron and AOpen MB about $175.00. > The MB has built in sound and video. The hardware compatability > list doesn't list AOpen MB's as supporting onboard video and sound. > I wonder if getting one of these is a smart move? > > Thanks for the help and your patience through my anguish. > > Jim > > > ========================================================= > Jim Freeze > jim@freeze.org > --------------------------------------------------------- > No comment at this time. > http://www.freeze.org > ========================================================= > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 17:53:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta1.snfc21.pbi.net (mta1.snfc21.pbi.net [206.13.28.122]) by hub.freebsd.org (Postfix) with ESMTP id 1A57C37B405 for ; Mon, 2 Jul 2001 17:53:53 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from mac ([64.166.86.37]) by mta1.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0GFV00DWMGVQFM@mta1.snfc21.pbi.net> for questions@FreeBSD.ORG; Mon, 2 Jul 2001 17:47:50 -0700 (PDT) Date: Mon, 02 Jul 2001 17:47:41 -0700 From: W Gerald Hicks Subject: Re: Is mod_php4 broken in ports? In-reply-to: To: Jim Freeze Cc: questions@FreeBSD.ORG Message-id: <0GFV00DWNGVQFM@mta1.snfc21.pbi.net> MIME-version: 1.0 (Apple Message framework v388) X-Mailer: Apple Mail (2.388) 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 Doesn't seem likely with a single bit error that softupdates would be to blame; you'd probably see big hunks of data whacked if something were wrong there. I suppose the drive and/or cable might be the culprit but didn't you see Sig 11's too? Good Luck, jerry hicks On Monday, July 2, 2001, at 05:40 PM, Jim Freeze wrote: > On Mon, 2 Jul 2001, W Gerald Hicks wrote: > >> ESD while installing new disk one might venture... > > Well, I am now running back on the old disk, same computer, > and things are running fine. I don't think ESD is the problem. > > The one big difference I between the two was that > I tried soft-updates on the new drive. > I'm thinking that that may be the problem. > Whad'ya think? > > Jim > > > > ========================================================= > Jim Freeze > jim@freeze.org > --------------------------------------------------------- > No comment at this time. > http://www.freeze.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 Jul 2 17:57:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from q.closedsrc.org (ip233.gte15.rb1.bel.nwlink.com [209.20.244.233]) by hub.freebsd.org (Postfix) with ESMTP id 90B6537B403 for ; Mon, 2 Jul 2001 17:57:47 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id 4AB2E55407; Mon, 2 Jul 2001 17:42:53 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id 391AB51610; Mon, 2 Jul 2001 17:42:53 -0700 (PDT) Date: Mon, 2 Jul 2001 17:42:53 -0700 (PDT) From: Linh Pham To: W Gerald Hicks Cc: Jim Freeze , Subject: Re: Is mod_php4 broken in ports? In-Reply-To: <0GFV00DWNGVQFM@mta1.snfc21.pbi.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 2001-07-02, W Gerald Hicks scribbled: # Doesn't seem likely with a single bit error that softupdates would be to # blame; you'd probably see big hunks of data whacked if something were # wrong there. Some drives require you to force set them down from ATA66 or ATA100 to ATA33 if you are using a standard 40-pin cable or an ATA33 controller. You may need to check the hard drive manufacturer's website to see if you need to do that for your drive. # I suppose the drive and/or cable might be the culprit but didn't you see # Sig 11's too? In one of the earlier messages, there were some SIG 11's in the output. Not good :) -- Linh Pham [lplist@closedsrc.org] // 404b - Brain not found To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 17:58:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.urx.com (mail.urx.com [63.170.19.36]) by hub.freebsd.org (Postfix) with ESMTP id 5110C37B401 for ; Mon, 2 Jul 2001 17:58:12 -0700 (PDT) (envelope-from kstewart@urx.com) Received: from urx.com [206.159.132.160] by mail.urx.com with ESMTP (SMTPD32-6.06) id A8901C690288; Mon, 02 Jul 2001 17:57:52 -0700 Message-ID: <3B411890.2680C82E@urx.com> Date: Mon, 02 Jul 2001 17:57:52 -0700 From: Kent Stewart X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: Giuseppe Pagnoni Cc: freebsd-questions@FreeBSD.ORG Subject: Re: after upgrading to 4.3 can't su anymore References: <3B40D5D1.680C1530@emory.edu> 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 Giuseppe Pagnoni wrote: > > Hi > > I have just upgraded my box to 4-stable from 4.0 (from src) and though > everything seem to have gone well, I cannot su anymore though I am still > in the wheel group (as from the /etc/group file). The error message is: > > su: permission denied (shell). > > (by the way my shell is tcsh...) I would expect that you let mergemaster replace /etc/shells. It seems to only like /bin/sh and /bin/csh. There isn't any difference between csh and tcsh and you might as well use csh. > > And also, another unrelated question. When I do telnet now it appears > the following message: > Trying SRA secure login > > what does it mean? Is this useful? I still telnet as a user and su to root. It would probably keep someone from watching my login. There isn't anyone else on my network to do that and so it probably doesn't matter. Kent > > thanks for any suggestion! > > giuseppe > > 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://kstewart.urx.com/kstewart/index.html http://daily.daemonnews.org/ SETI (Search for Extraterrestrial Intelligence) @ Home http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 18: 0:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id 8AEF137B401 for ; Mon, 2 Jul 2001 18:00:44 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f63104b91679; Mon, 2 Jul 2001 21:00:04 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Mon, 2 Jul 2001 21:00:04 -0400 (EDT) From: Jim Freeze X-X-Sender: To: W Gerald Hicks Cc: Subject: Re: Is mod_php4 broken in ports? In-Reply-To: <0GFV00DWNGVQFM@mta1.snfc21.pbi.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, 2 Jul 2001, W Gerald Hicks wrote: > Doesn't seem likely with a single bit error that softupdates would be to > blame; you'd probably see big hunks of data whacked if something were > wrong there. > > I suppose the drive and/or cable might be the culprit but didn't you see > Sig 11's too? Yes, I say Sig 11's. I also remember something about asyncronous HD setup (I can't remember if that is related to soft-updates.) The problems only seem to occur when the HD is churning and that is the only new piece of hardware. I'm inclined to think that it is the asyncronous writes I setup. I know may luck is bad, but they do qa the drives pretty well, so I think the drive is ok. Jim > > Good Luck, > > jerry hicks > > On Monday, July 2, 2001, at 05:40 PM, Jim Freeze wrote: > > > On Mon, 2 Jul 2001, W Gerald Hicks wrote: > > > >> ESD while installing new disk one might venture... > > > > Well, I am now running back on the old disk, same computer, > > and things are running fine. I don't think ESD is the problem. > > > > The one big difference I between the two was that > > I tried soft-updates on the new drive. > > I'm thinking that that may be the problem. > > Whad'ya think? > > > > Jim > > > > > > > > ========================================================= > > Jim Freeze > > jim@freeze.org > > --------------------------------------------------------- > > No comment at this time. > > http://www.freeze.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 > ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 18:11:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-141-144.mmcable.com [24.27.141.144]) by hub.freebsd.org (Postfix) with SMTP id C0DA737B403 for ; Mon, 2 Jul 2001 18:11:26 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 50263 invoked by uid 100); 3 Jul 2001 01:11:25 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15169.7101.871112.570335@guru.mired.org> Date: Mon, 2 Jul 2001 20:11:25 -0500 To: Giuseppe Pagnoni Cc: questions@freebsd.org Subject: Re: after upgrading to 4.3 can't su anymore In-Reply-To: <80764653@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\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Giuseppe Pagnoni types: > I have just upgraded my box to 4-stable from 4.0 (from src) and though > everything seem to have gone well, I cannot su anymore though I am still > in the wheel group (as from the /etc/group file). The error message is: > > su: permission denied (shell). > > (by the way my shell is tcsh...) > > And also, another unrelated question. When I do telnet now it appears > the following message: > Trying SRA secure login > > what does it mean? Is this useful? If you haven't, try running mergemaster and updating all the files you haven't edited. There were some pam changes that need to be reflected in the config files, and you get symptoms like these if that isn't done. 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 Jul 2 18:28:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta4.srv.hcvlny.cv.net (mta4.srv.hcvlny.cv.net [167.206.5.10]) by hub.freebsd.org (Postfix) with ESMTP id 9628237B401 for ; Mon, 2 Jul 2001 18:28:34 -0700 (PDT) (envelope-from tlhingan@optonline.net) Received: from 34gh11v2 (ool-18ba1392.dyn.optonline.net [24.186.19.146]) by mta4.srv.hcvlny.cv.net (iPlanet Messaging Server 5.0 Patch 2 (built Dec 14 2000)) with SMTP id <0GFV0047SIRKNN@mta4.srv.hcvlny.cv.net> for freebsd-questions@FreeBSD.ORG; Mon, 02 Jul 2001 21:28:33 -0400 (EDT) Date: Mon, 02 Jul 2001 21:28:33 -0400 From: R Subject: 57% packet loss To: freebsd-questions@FreeBSD.ORG Message-id: <000701c1035f$795e8aa0$9213ba18@34gh11v2> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-Mailer: Microsoft Outlook Express 5.50.4522.1200 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT 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 hello all ok, first things first: I'm new, but not dumb :) Now that thats out of the way... I'm running 3.2-STABLE. I'm trying to configure my box to get on the net. I have a cable modem - not from "@home" - and a nic (xl0) which conects to it. I've been trying to do a few things at the same time, which has gotten me quite mixed up, since im learning from scratch each of the things im trying :) So, I'm gonna break my questions into the mailing list into VERY small pieces - the first of which is: What sort of things should i look for when trying to determine why I'm getting a 57% packet loss pinging hub.freebsd.org? I'm obviously getting online - so i guess my set-up isn't far off the mark - but i seem to drop/loose every other packet. for example, packets 0 and 1 get lost, but #2 malkes it. then #3 gets lost and 4 makes it. -R -------------------------------------------------------------- Do not believe in what you have heard; do not believe in traditions because they have been handed down for many generations; do not believe anything because it is rumored and spoken of by many; do not believe merely because the written statements of some old sage are produced; do not believe in conjectures; do not believe in that as a truth to which you have become attached by habit; do not believe merely on the authority of your teachers and elders. After observation and analysis, when it agrees with reason and is conducive to the good and benefit of one and all, then accept it and live up to it." Gautama Buddha (Spoken 2,600 years ago) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 18:29: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id 47FBB37B401 for ; Mon, 2 Jul 2001 18:29:03 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f631SKF22154; Mon, 2 Jul 2001 21:28:20 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 2 Jul 2001 21:28:20 -0400 (EDT) From: Joe Clarke To: Jim Freeze Cc: W Gerald Hicks , Subject: Re: Is mod_php4 broken in ports? In-Reply-To: Message-ID: <20010702212720.C21654-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 Ah! I saw similar problems when I enabled write caching on my controller on one of my new machines. It manifested itself in "file not found" errors when compiling. I now just use SOFTUPDATES with no write caching. Joe Clarke On Mon, 2 Jul 2001, Jim Freeze wrote: > On Mon, 2 Jul 2001, W Gerald Hicks wrote: > > > Doesn't seem likely with a single bit error that softupdates would be to > > blame; you'd probably see big hunks of data whacked if something were > > wrong there. > > > > I suppose the drive and/or cable might be the culprit but didn't you see > > Sig 11's too? > > Yes, I say Sig 11's. I also remember something about asyncronous > HD setup (I can't remember if that is related to soft-updates.) > > The problems only seem to occur when the HD is churning and that > is the only new piece of hardware. I'm inclined to think that > it is the asyncronous writes I setup. I know may luck is bad, > but they do qa the drives pretty well, so I think the drive is > ok. > > Jim > > > > > Good Luck, > > > > jerry hicks > > > > On Monday, July 2, 2001, at 05:40 PM, Jim Freeze wrote: > > > > > On Mon, 2 Jul 2001, W Gerald Hicks wrote: > > > > > >> ESD while installing new disk one might venture... > > > > > > Well, I am now running back on the old disk, same computer, > > > and things are running fine. I don't think ESD is the problem. > > > > > > The one big difference I between the two was that > > > I tried soft-updates on the new drive. > > > I'm thinking that that may be the problem. > > > Whad'ya think? > > > > > > Jim > > > > > > > > > > > > ========================================================= > > > Jim Freeze > > > jim@freeze.org > > > --------------------------------------------------------- > > > No comment at this time. > > > http://www.freeze.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 > > > > > ========================================================= > Jim Freeze > jim@freeze.org > --------------------------------------------------------- > No comment at this time. > http://www.freeze.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 Jul 2 18:39:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ann.skypoint.net (ann.skypoint.net [199.86.32.19]) by hub.freebsd.org (Postfix) with ESMTP id F2F1A37B405 for ; Mon, 2 Jul 2001 18:39:18 -0700 (PDT) (envelope-from rpj@fep.hirshfields.com) Received: (from uucp@localhost) by ann.skypoint.net (8.9.3/8.9.3) with UUCP id BAA07108 for freebsd-questions@freebsd.org; Tue, 3 Jul 2001 01:33:52 GMT Received: (from rpj@localhost) by fep.hirshfields.com (8.8.8/8.8.8) id TAA06950 for freebsd-questions@freebsd.org; Mon, 2 Jul 2001 19:10:05 -0500 (CDT) (envelope-from rpj) From: "Roger P. Johnson" Message-Id: <200107030010.TAA06950@fep.hirshfields.com> Subject: Re: Help on HP Netserver E 45 In-Reply-To: <9hpr6d+p2h7@eGroups.com> from "jessie@power-jessie.net" at "Jul 2, 1 12:58:53 pm" To: freebsd-questions@freebsd.org Date: Mon, 2 Jul 2001 19:10:05 -0500 (CDT) X-Mailer: ELM [version 2.4ME+ PL38 (25)] 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 The 'Read error' is the BIOS boot problem. You installed it correctly but there is a bug in the BIOS. If you use it in dedicated mode, then you can easily patch boot.s (I think it is) and install the patched boot code on the disk and the error will go away. e-mail me if you want a patch boot code. -Roger rjohnson@hirshfields.com > > Hello there! > > Anyone who have success installing FreeBSD > on HP Netserver E 45? I'm having a hard time > installing one. I have successfully installed > fBSD 4.2R but it doesn't boot, the error > message is 'Operating System not found' and > 'Read Error'? What is wrong? Can someone help me > please. Or point me to a site about this. > > I'm using 20G Seagate Barracuda SCSI harddisk. > > Need help asap. > > Thanks. > > jessie. > > > 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 Jul 2 18:39:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ann.skypoint.net (ann.skypoint.net [199.86.32.19]) by hub.freebsd.org (Postfix) with ESMTP id 994FC37B401 for ; Mon, 2 Jul 2001 18:39:16 -0700 (PDT) (envelope-from rpj@fep.hirshfields.com) Received: (from uucp@localhost) by ann.skypoint.net (8.9.3/8.9.3) with UUCP id BAA07083 for freebsd-questions@freebsd.org; Tue, 3 Jul 2001 01:33:44 GMT Received: (from rpj@localhost) by fep.hirshfields.com (8.8.8/8.8.8) id TAA06936 for freebsd-questions@freebsd.org; Mon, 2 Jul 2001 19:04:28 -0500 (CDT) (envelope-from rpj) From: "Roger P. Johnson" Message-Id: <200107030004.TAA06936@fep.hirshfields.com> Subject: Re: qmail startup In-Reply-To: from Jason Nugent at "Jul 2, 1 06:22:02 pm" To: freebsd-questions@freebsd.org Date: Mon, 2 Jul 2001 19:04:28 -0500 (CDT) X-Mailer: ELM [version 2.4ME+ PL38 (25)] 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 had the same problem on Solaris. I was following the INSTALL directions verbatim, killed sendmail, started qmail, telnet localhost 25 and got "connection refused". Rebooted the machine and qmail worked. I don't why I had to reboot. But it has worked ever since. BTW, I am starting qmail via inetd, and not using the tcpserver stuff. -Roger > > If you run it from the rc startup script, does tcpserver start correctly? > If it's not running from inetd, it would need to have tcpserver handle > it's connections on port 25. > > HTH, Jason > > On Tue, 3 Jul 2001 at 6:19pm, Moritz Schmitt thought about > > > Hello, > > > > I want to run qmail as my mail server. If I start qmail over the entry in > > inetd.conf, it's answering as soon as youconnect to the server on port 25. > > If I want to use the rc startup script it's starting (ps shows all the right > > processes) but it's not possible to talk to the server on the SMTP port > > (connection refused). > > > > Any ideas? > > > > -Moritz > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > ---------------------- > Jason Nugent > Aka MalHavoc > Server Programmer and Administrator > > S T O M P E D . C O M > > For PGP public key: http://malhavoc.stomped.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 Mon Jul 2 18:45:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id 9050437B405 for ; Mon, 2 Jul 2001 18:45:50 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f631kWL22224; Mon, 2 Jul 2001 21:46:32 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 2 Jul 2001 21:46:32 -0400 (EDT) From: Joe Clarke To: R Cc: Subject: Re: 57% packet loss In-Reply-To: <000701c1035f$795e8aa0$9213ba18@34gh11v2> Message-ID: <20010702214406.R21654-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 Performance problems are the trickiest to troubleshoot. They require a knowledge of what acceptible performance is. Since this is a new setup, you probably don't have that. I am able to ping through the hub.freebsd.org with 0% loss, meaning hub isn't the problem. I am on TW's cable network. Have you tried pinging other Internet hosts? How is your routing table setup (netstat -rn)? Do you have a firewall enabled? NAT? What does the traceroute look like for hub.freebsd.org? Joe Clarke On Mon, 2 Jul 2001, R wrote: > hello all > > ok, first things first: I'm new, but not dumb :) Now that thats out of the > way... > > I'm running 3.2-STABLE. I'm trying to configure my box to get on the net. > I have a cable modem - not from "@home" - and a nic (xl0) which conects to > it. > > I've been trying to do a few things at the same time, which has gotten me > quite mixed up, since im learning from scratch each of the things im trying > :) > > So, I'm gonna break my questions into the mailing list into VERY small > pieces - the first of which is: > > What sort of things should i look for when trying to determine why I'm > getting a 57% packet loss pinging hub.freebsd.org? > > I'm obviously getting online - so i guess my set-up isn't far off the mark - > but i seem to drop/loose every other packet. for example, packets 0 and 1 > get lost, but #2 malkes it. then #3 gets lost and 4 makes it. > > -R > > > -------------------------------------------------------------- > Do not believe in what you have heard; > do not believe in traditions because they have been handed down for many > generations; do not believe anything because it is rumored and spoken of > by many; do not believe merely because the written statements of some old > sage are produced; do not believe in conjectures; do not believe in that > as a truth to which you have become attached by habit; do not believe merely > on the authority of your teachers and elders. After observation and > analysis, > when it agrees with reason and is conducive to the good and benefit of > one and all, then accept it and live up to it." > > Gautama Buddha (Spoken 2,600 years ago) > > > > 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 Jul 2 19: 8: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.plug.cx (unix-gw.gihs.sa.edu.au [203.63.40.115]) by hub.freebsd.org (Postfix) with ESMTP id 71FE737B405 for ; Mon, 2 Jul 2001 19:07:56 -0700 (PDT) (envelope-from andrew.reid@plug.cx) Received: from percible.alfred.cx (firewall.gihs.sa.edu.au [192.168.1.1]) by mail.plug.cx (Postfix) with ESMTP id 9C9292B7EB for ; Tue, 3 Jul 2001 11:58:45 +0000 (GMT) Subject: System Crash during kernel installation From: Andrew Reid To: freebsd-questions@freebsd.org Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/0.10.99 (Preview Release) Date: 03 Jul 2001 11:28:45 +0930 Message-Id: <994125525.6460.4.camel@percible.alfred.cx> 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 Hello, I've just ran 'make install' on a FreeBSD machine sitting next to me to install my newly compiled kernel. I was running it from an SSH session. The monitor for the FreeBSD machine is sitting next to me, so I was able to see the following message when the system decided to hang: [ In white writing: ] Fatal trap 12: page fault while in kernel mode fault virtual address = 0x212 fault code = supervisor write, page not present instruction pointer = 0x8:0xc02c0c4c stack pointer = 0x10:0xc8b42228 frame pointer = 0x10;0xc8b4ee28 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 17042 (sh) interrupt mask = net tty bio cam trap number = 12 panic: page fault syncing disks... That happened whilst 'make install' was running. The last few lines of output from 'make install' seemed to be installing modules: ===> sound/driver/solo install -c -o root -g wheel -m 555 snd_solo.ko /modules ===> sound/driver/t4dwave install -c -o root -g wheel -m 555 snd_t4dwave.ko /modules ===> sound/driver/via82c686 install -c -o root -g wheel -m 555 snd_via82c686.ko /modules ===> sound/snd install -c -o root -g wheel -m 555 snd.ko /modules ===> ste install -c -o root -g wheel -m 555 if_ste.ko /modules ===> syscons ===> syscons/blank install -c -o root -g wheel -m 555 blank_saver.ko /modules ===> syscons/daemon install -c -o root -g wheel -m 555 daemon_saver.ko /modules ===> syscons/fade install -c -o root -g wheel -m 555 fade_saver.ko /modules Hmmm! What's happened? Is this a hardware fault (It's a relatively new PIII 866, 128MB RAM). - andrew -- void signature () { cout << "Andrew Reid -- andrew.reid@plug.cx" << endl ; cout << "Cell: +61 401 946 813" << endl; cout << "Quidquid latine dictum sit, altum viditur" << endl; } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 19:42: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dpdtech.com (110-174.bestdsl.net [216.162.110.174]) by hub.freebsd.org (Postfix) with ESMTP id 40A7E37B401 for ; Mon, 2 Jul 2001 19:42:03 -0700 (PDT) (envelope-from dpd@dpdtech.com) Received: from [192.168.22.203] (defiant.dpdtech.com [192.168.22.203]) by dpdtech.com (8.11.1/8.11.1) with ESMTP id f632fu660232 for ; Mon, 2 Jul 2001 21:41:58 -0500 (CDT) (envelope-from dpd@dpdtech.com) User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2022 Date: Mon, 02 Jul 2001 21:41:57 -0500 Subject: Re: qmail startup From: "David P. Discher" To: Message-ID: In-Reply-To: <200107030004.TAA06936@fep.hirshfields.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 The restart may have been needed in this cause because you where running it out of inetd. Have to SIGHUP that inetd before it reads the inetd.conf file again. # kill -HUP `cat /var/run/inetd.pid` In Mr. Schmitt's case, I'm not sure if this is the case, but this is probably what Mr. Johnson saw. I still use the pain-in-the-rear-end Sendmail, Got it working with SMTP Auth and SSL (well, wrapping it with stunnel is better because Outlook doesn't like the StartTLS ). on 7/2/01 7:04 PM, Roger P. Johnson at rpj@fep.hirshfields.com wrote: > I had the same problem on Solaris. I was following the INSTALL directions > verbatim, killed sendmail, started qmail, telnet localhost 25 and got > "connection refused". Rebooted the machine and qmail worked. I don't why > I had to reboot. But it has worked ever since. > > BTW, I am starting qmail via inetd, and not using the tcpserver stuff. > > -Roger > >> >> If you run it from the rc startup script, does tcpserver start correctly? >> If it's not running from inetd, it would need to have tcpserver handle >> it's connections on port 25. >> >> HTH, Jason >> >> On Tue, 3 Jul 2001 at 6:19pm, Moritz Schmitt thought about >> -- David P. Discher dpd2@cec.wustl.edu, dpd@dpdtech.com (314) 518-3795 http://dpd.dpdtech.com/ Founder/Owner of BigDumbGrin.COM To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 19:45:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from seed.pacific.net.sg (seed.pacific.net.sg [203.120.90.77]) by hub.freebsd.org (Postfix) with ESMTP id 7EC9737B407 for ; Mon, 2 Jul 2001 19:45:51 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop2.pacific.net.sg (pop2.pacific.net.sg [203.120.90.86]) by seed.pacific.net.sg with ESMTP id f632joY03036 for ; Tue, 3 Jul 2001 10:45:50 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop2.pacific.net.sg with ESMTP id KAA17255 for ; Tue, 3 Jul 2001 10:45:49 +0800 (SGT) Message-ID: <3B41332D.152DEA31@pacific.net.sg> Date: Tue, 03 Jul 2001 10:51:26 +0800 From: Kelvin Ng Chee Hoong X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: zh-TW,en MIME-Version: 1.0 To: "freebsd-questions@FreeBSD.ORG" Subject: Port Scanning Detection 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 ; Does anybody know what software available internet to detect port scanning ? I want the software which able to send email alert or SMS to network administor as soon it detected the action of port scanning takes place . Please advise To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 20: 0:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mark9.vladsempire.net (hutch-134.hutchtel.net [206.10.67.34]) by hub.freebsd.org (Postfix) with ESMTP id 160E837B405 for ; Mon, 2 Jul 2001 20:00:55 -0700 (PDT) (envelope-from jpaetzel@hutchtel.net) Received: from mark9.vladsempire.net (mark9.vladsempire.net [10.0.0.97]) by mark9.vladsempire.net (Postfix) with SMTP id 68A312E7; Mon, 2 Jul 2001 22:07:10 -0500 (CDT) Content-Type: text/plain; charset="iso-8859-1" From: Josh Paetzel To: Kelvin Ng Chee Hoong , "freebsd-questions@FreeBSD.ORG" Subject: Re: Port Scanning Detection Date: Mon, 2 Jul 2001 22:07:10 -0500 X-Mailer: KMail [version 1.2] References: <3B41332D.152DEA31@pacific.net.sg> In-Reply-To: <3B41332D.152DEA31@pacific.net.sg> MIME-Version: 1.0 Message-Id: <01070222071002.23507@mark9.vladsempire.net> 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 Monday 02 July 2001 21:51, Kelvin Ng Chee Hoong wrote: > Hi ; > Does anybody know what software available internet to detect port > scanning ? I want the software which able to send email alert or SMS to > network administor as soon it detected the action of port scanning takes > place . Please advise > > Take a look at Portsentry in the ports collection. Josh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 20:33:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from alchemistry.net (alchemistry.net [160.79.102.254]) by hub.freebsd.org (Postfix) with ESMTP id E7BB237B401 for ; Mon, 2 Jul 2001 20:33:44 -0700 (PDT) (envelope-from mail@krel.org) Received: from [192.168.0.1] (helo=ilya) by alchemistry.net with smtp (TLSv1:RC4-MD5:128) (Exim 3.22 #1) id 15HGwY-000NOg-00 for freebsd-questions@FreeBSD.ORG; Mon, 02 Jul 2001 23:33:42 -0400 Message-ID: <000b01c10371$1ad32ec0$0100a8c0@ilya> From: "Ilya" To: References: <3B41332D.152DEA31@pacific.net.sg> <01070222071002.23507@mark9.vladsempire.net> Subject: Lynksys combo pcmcia network card stopped working Date: Mon, 2 Jul 2001 23:34:42 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 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 I have a weird situation, a Lynsys 10mb nic stopped working in my laptop. I get device ed0 timeout. It still works fine in WIndows 2000. There are no firewalls. or any other walls. The weird thing is I can see ARP packets coming through my desktop Freebsd from laptop. and the response is being sent back, but seems that ed0 on laptop never receives it. Hardware is not in questions here, as in win2k everything works fine nic/cable/hub. I have tried cross-over - same result. ed0 just died on incoming traffic in freebsd. the activity light is on on both hub and the adapter for NIc. no special settings are set for nic. It used to work fien, i have not done any changes to laptop! Help!!!! 4.3 stable To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 20:52:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from spade.pacific.net.sg (spade.pacific.net.sg [203.120.90.71]) by hub.freebsd.org (Postfix) with ESMTP id DFB0C37B401 for ; Mon, 2 Jul 2001 20:52:22 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop1.pacific.net.sg (pop1.pacific.net.sg [203.120.90.85]) by spade.pacific.net.sg with ESMTP id f633qLm08520 for ; Tue, 3 Jul 2001 11:52:21 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop1.pacific.net.sg with ESMTP id LAA11482 for ; Tue, 3 Jul 2001 11:52:21 +0800 (SGT) Message-ID: <3B4142C5.1EC1CCE2@pacific.net.sg> Date: Tue, 03 Jul 2001 11:57:57 +0800 From: Kelvin Ng Chee Hoong X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: zh-TW,en MIME-Version: 1.0 To: "freebsd-questions@FreeBSD.ORG" Subject: Firewall 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 ; (Q1) I would like to use FBSD to act as firewall . It is adviseable ? (Q2) I want configure multi-homing , can I insert three ethernet card in FBSD machine ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 21:22:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.comset.net (mail.comset.net [213.172.7.103]) by hub.freebsd.org (Postfix) with ESMTP id 46E6A37B401 for ; Mon, 2 Jul 2001 21:22:13 -0700 (PDT) (envelope-from igor_pokrovsky@mail.ru) Received: from 3-076.dialup.comset.net (3-076.dialup.comset.net [213.172.3.76]) by mail.comset.net (8.11.3/8.11.3/MAIL/1.0.2 (quark@comset.net)) with ESMTP id f634MJ304140 for ; Tue, 3 Jul 2001 08:22:23 +0400 (MSD) Date: Tue, 3 Jul 2001 08:22:00 +0400 From: "I. Pokrovsky" X-Mailer: The Bat! (v1.47 Halloween Edition) Reply-To: "I. Pokrovsky" Organization: MGO X-Priority: 3 (Normal) Message-ID: <1636064947.20010703082200@mail.ru> To: freebsd-questions@FreeBSD.ORG Subject: Doom & Heretic ports 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 ported Doom and Heretic to FreeBSD + SVGA library. They are looks as nice as in DOS, but runs faster and have 16bit sound support. Please, tell me how my port could be taken to ports tree. Big thanks in advance. =============================================================== Tuesday, July 03, 2001, 8:19:43 AM I.Pokrovsky To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 21:28:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.knology.net (user-24-214-63-14.knology.net [24.214.63.14]) by hub.freebsd.org (Postfix) with SMTP id BB6DC37B405 for ; Mon, 2 Jul 2001 21:28:33 -0700 (PDT) (envelope-from dns@knology.net) Received: (qmail 32266 invoked from network); 3 Jul 2001 04:28:30 -0000 Received: from user-24-214-110-51.knology.net (HELO dns1) (24.214.110.51) by user-24-214-63-14.knology.net with SMTP; 3 Jul 2001 04:28:30 -0000 From: "David Caldwell" To: Subject: Certification Date: Mon, 2 Jul 2001 23:34:28 -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) 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 Is there a certification program for any of the BSD Unixes? I have seen them for Linux and for Sun Solaris, as well as the various other flavors of Unix. Will there be or is there one for BSD? David Caldwell dns at knology dot net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 21:37:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from netsrvr.ami.com.au (netsrvr.ami.com.au [203.55.31.38]) by hub.freebsd.org (Postfix) with ESMTP id 3EB0637B401 for ; Mon, 2 Jul 2001 21:37:42 -0700 (PDT) (envelope-from summer@os2.ami.com.au) Received: from dugite.os2.ami.com.au (IDENT:root@c0s29.ami.com.au [203.55.31.94]) by netsrvr.ami.com.au (8.9.3/8.9.3) with ESMTP id MAA18294 for ; Tue, 3 Jul 2001 12:37:29 +0800 Received: from possum.os2.ami.com.au (possum.os2.ami.com.au [192.168.1.6]) by dugite.os2.ami.com.au (8.10.0/8.10.0) with ESMTP id f634bQV29360 for ; Tue, 3 Jul 2001 12:37:27 +0800 Received: from possum.os2.ami.com.au (summer@localhost) by possum.os2.ami.com.au (8.11.2/8.11.2) with ESMTP id f634bP004382 for ; Tue, 3 Jul 2001 12:37:25 +0800 Message-Id: <200107030437.f634bP004382@possum.os2.ami.com.au> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: freebsd-questions@freebsd.org Subject: Re: Doom & Heretic ports In-Reply-To: Your message of "Tue, 03 Jul 2001 08:22:00 +0400." <1636064947.20010703082200@mail.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 03 Jul 2001 12:37:25 +0800 From: John Summerfield Sender: owner-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 ported Doom and Heretic to FreeBSD + SVGA library. They are > looks as nice as in DOS, but runs faster and have 16bit sound support. > Please, tell me how my port could be taken to ports tree. > The pedant steps in. I think that, if you check the manufacturer of your sound card, you will find it's '16 voices,' not '16 bits.' Here's an excerpt from the Creative website about my sound card: For professional music playback, the Creative synthesis engine provides 128-voices of wave-table sound. User selectable sample banks let you choose the quality level you want. Now every instrument sounds just like its real life counterpart, not a poor facsimile. Note the reference to 128 voices. -- Cheers John Summerfield Microsoft's most solid OS: http://www.geocities.com/rcwoolley/ Note: mail delivered to me is deemed to be intended for me, for my disposition. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 21:40:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from wombat.bytecraft.au.com (wombat.bytecraft.au.com [203.39.118.3]) by hub.freebsd.org (Postfix) with ESMTP id 1227C37B41E for ; Mon, 2 Jul 2001 21:40:10 -0700 (PDT) (envelope-from mtaylor@bytecraft.au.com) Received: from pc99101401.bytecraft.au.com (unknown [203.39.118.42]) by wombat.bytecraft.au.com (Postfix) with SMTP id D4AD13EA0 for ; Thu, 28 Jun 2001 15:03:04 +1000 (EST) Message-ID: <02d601c0ff8f$dd703b20$2a7627cb@pc99101401.bytecraft.au.com> From: "Murray Taylor" To: Subject: NIS hosts.byname error Date: Thu, 28 Jun 2001 15:04:52 +1000 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 I am establishing a NIS server and get this error when the slave is configured Transferring hosts.byname... ypxfr: master.mydomain.com: YPPROC_MATCH failed: RPC: Timed out The hosts.byaddr transfers ok .... I am wondering is there a 'correct' format for the hosts file that works.... currently it is w.x.y.z machine.mydomain.com machine a.b.c.d machine2.mydomain.com machine2 any ideas ?? Murray Taylor Bytecraft Systems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 21:40:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from wombat.bytecraft.au.com (wombat.bytecraft.au.com [203.39.118.3]) by hub.freebsd.org (Postfix) with ESMTP id 0CA2237B41C for ; Mon, 2 Jul 2001 21:40:10 -0700 (PDT) (envelope-from mtaylor@bytecraft.au.com) Received: from pc99101401.bytecraft.au.com (unknown [203.39.118.42]) by wombat.bytecraft.au.com (Postfix) with SMTP id 226783ECE for ; Thu, 28 Jun 2001 15:51:43 +1000 (EST) Message-ID: <032001c0ff96$a8a77d20$2a7627cb@pc99101401.bytecraft.au.com> From: "Murray Taylor" To: Subject: NIS error on hosts.byname Date: Thu, 28 Jun 2001 15:53:30 +1000 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 I am establishing a NIS server and get this error when the slave is configured Transferring hosts.byname... ypxfr: master.mydomain.com: YPPROC_MATCH failed: RPC: Timed out The hosts.byaddr transfers ok .... I am wondering is there a 'correct' format for the hosts file that works.... currently it is w.x.y.z machine.mydomain.com machine a.b.c.d machine2.mydomain.com machine2 any ideas ?? Murray Taylor Bytecraft Systems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 21:47:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.plug.cx (unix-gw.gihs.sa.edu.au [203.63.40.115]) by hub.freebsd.org (Postfix) with ESMTP id 6C12437B405 for ; Mon, 2 Jul 2001 21:47:54 -0700 (PDT) (envelope-from andrew.reid@plug.cx) Received: from percible.alfred.cx (firewall.gihs.sa.edu.au [192.168.1.1]) by mail.plug.cx (Postfix) with ESMTP id 728882B7EB for ; Tue, 3 Jul 2001 14:38:49 +0000 (GMT) Subject: Kernel installation error From: Andrew Reid To: freebsd-questions@freebsd.org Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/0.10.99 (Preview Release) Date: 03 Jul 2001 14:08:41 +0930 Message-Id: <994135122.6461.7.camel@percible.alfred.cx> 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 Eeek! I've just ran 'make install' (as root) and it's not letting me move the old kernel out of the way. matilda# make install chflags noschg /kernel chflags: /kernel: Operation not permitted *** Error code 1 (ignored) mv /kernel /kernel.old mv: rename /kernel to /kernel.old: Operation not permitted *** Error code 1 Stop in /usr/src/sys/compile/MYKERNEL. How should I go about getting around this? TIA! - andrew -- void signature () { cout << "Andrew Reid -- andrew.reid@plug.cx" << endl ; cout << "Cell: +61 401 946 813" << endl; cout << "Quidquid latine dictum sit, altum viditur" << endl; } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 22: 8:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from rannoch.demon.co.uk (rannoch.demon.co.uk [158.152.110.117]) by hub.freebsd.org (Postfix) with ESMTP id 25D4837B401 for ; Mon, 2 Jul 2001 22:08:35 -0700 (PDT) (envelope-from apbran@rannoch.demon.co.uk) Received: (from apb@localhost) by rannoch.demon.co.uk (8.11.4/8.10.1) id f63535X24251; Tue, 3 Jul 2001 06:03:05 +0100 (BST) Date: Tue, 3 Jul 2001 06:03:03 +0100 From: Paul Branston To: Andrew Reid Cc: freebsd-questions@freebsd.org Subject: Re: Kernel installation error Message-ID: <20010703060303.A19655@rannoch.demon.co.uk> References: <994135122.6461.7.camel@percible.alfred.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <994135122.6461.7.camel@percible.alfred.cx>; from andrew.reid@plug.cx on Tue, Jul 03, 2001 at 02:08:41PM +0930 Sender: owner-freebsd-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, Jul 03, 2001 at 02:08:41PM +0930, Andrew Reid wrote: > Eeek! > > I've just ran 'make install' (as root) and it's not letting me move the > old kernel out of the way. > > matilda# make install > chflags noschg /kernel > chflags: /kernel: Operation not permitted > *** Error code 1 (ignored) > mv /kernel /kernel.old > mv: rename /kernel to /kernel.old: Operation not permitted > *** Error code 1 > > Stop in /usr/src/sys/compile/MYKERNEL. > the security level won't let you clear the noschg flag. Try it is single user mode, or edit /etc/rc.conf to say kern_securelevel_enable="NO" reboot and try again. man securelevel man init man chflags To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 22:17:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from rhubarb.fwi.com (rhubarb.fwi.com [209.84.175.126]) by hub.freebsd.org (Postfix) with SMTP id 7F09437B401 for ; Mon, 2 Jul 2001 22:17:28 -0700 (PDT) (envelope-from peeter@pirns.net) Received: (qmail 862 invoked by uid 1000); 3 Jul 2001 05:18:00 -0000 Date: Tue, 3 Jul 2001 00:18:00 -0500 From: Peeter Pirn To: freebsd-questions@freebsd.org Subject: lpc start failure Message-ID: <20010703001800.A776@rhubarb.pirns.net> Reply-To: peeter@pirns.net Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.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 For the record: `man lpd' conflicts with reality on my 3.2-RELEASE machine. `man lpd' says: The daemon begins processing files after it has successfully set the lock for exclusive access (described a bit later), and scans the spool direc- tory for files beginning with cf. . . . Lpd uses flock(2) to provide exclusive access to the lock file and to prevent multiple daemons from becoming active simultaneously. If the daemon should be killed or die unexpectedly, the lock file need not be removed. On my machine, the lock file needs to be removed even after running `lpc stop', like a good boy: # lpc stop lp2 lp: printing disabled # lpc status lp2 lp: queuing is enabled printing is disabled no entries in spool area printer idle # lpc start lp2 lp: printing enabled daemon started # lpc status lp2 lp: queuing is enabled printing is disabled no entries in spool area printer idle # echo "Now delete the lock file and try again." Now delete the lock file and try again. # rm /var/spool/lpd/djet500-letter-auto-mono/lock # lpc start lp2 lp: daemon started # lpc status lp2 lp: queuing is enabled printing is enabled no entries in spool area printer idle -- Peeter Pirn - peeter@pirns.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 22:17:56 2001 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 0BF4637B403 for ; Mon, 2 Jul 2001 22:17:54 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.135.36.Dial1.SanJose1.Level3.net [209.245.135.36]) by albatross.prod.itd.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id WAA24438; Mon, 2 Jul 2001 22:17:48 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f635Hg801311; Mon, 2 Jul 2001 22:17:42 -0700 (PDT) (envelope-from cjc) Date: Mon, 2 Jul 2001 22:17:37 -0700 From: "Crist J. Clark" To: Kelvin Ng Chee Hoong Cc: "freebsd-questions@FreeBSD.ORG" Subject: Re: Firewall Message-ID: <20010702221737.E312@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <3B4142C5.1EC1CCE2@pacific.net.sg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B4142C5.1EC1CCE2@pacific.net.sg>; from nchee_hoong@pacific.net.sg on Tue, Jul 03, 2001 at 11:57:57AM +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, Jul 03, 2001 at 11:57:57AM +0800, Kelvin Ng Chee Hoong wrote: > Hi ; > (Q1) I would like to use FBSD to act as firewall . It is adviseable > ? Yes. FreeBSD using either ipfw(8) or ipf(8) makes a very economical, powerful, and (potentially) secure firewall device. > (Q2) I want configure multi-homing , can I insert three ethernet > card in FBSD machine ? Not a problem. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 22:18:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gull.mail.pas.earthlink.net (gull.mail.pas.earthlink.net [207.217.121.85]) by hub.freebsd.org (Postfix) with ESMTP id 7A79F37B407 for ; Mon, 2 Jul 2001 22:18:54 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.135.36.Dial1.SanJose1.Level3.net [209.245.135.36]) by gull.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id WAA11859; Mon, 2 Jul 2001 22:18:49 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f635IlQ01321; Mon, 2 Jul 2001 22:18:47 -0700 (PDT) (envelope-from cjc) Date: Mon, 2 Jul 2001 22:18:47 -0700 From: "Crist J. Clark" To: Kelvin Ng Chee Hoong Cc: "freebsd-questions@FreeBSD.ORG" Subject: Re: Port Scanning Detection Message-ID: <20010702221847.F312@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <3B41332D.152DEA31@pacific.net.sg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B41332D.152DEA31@pacific.net.sg>; from nchee_hoong@pacific.net.sg on Tue, Jul 03, 2001 at 10:51:26AM +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, Jul 03, 2001 at 10:51:26AM +0800, Kelvin Ng Chee Hoong wrote: > Hi ; > Does anybody know what software available internet to detect port > scanning ? I want the software which able to send email alert or SMS to > network administor as soon it detected the action of port scanning takes > place . Please advise /usr/ports/security/snort -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 22:25:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from swan.mail.pas.earthlink.net (swan.mail.pas.earthlink.net [207.217.120.123]) by hub.freebsd.org (Postfix) with ESMTP id 1E27837B403 for ; Mon, 2 Jul 2001 22:25:49 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.135.36.Dial1.SanJose1.Level3.net [209.245.135.36]) by swan.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id WAA07878; Mon, 2 Jul 2001 22:25:47 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f635PjJ01363; Mon, 2 Jul 2001 22:25:45 -0700 (PDT) (envelope-from cjc) Date: Mon, 2 Jul 2001 22:25:45 -0700 From: "Crist J. Clark" To: R Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 57% packet loss Message-ID: <20010702222545.G312@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <000701c1035f$795e8aa0$9213ba18@34gh11v2> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000701c1035f$795e8aa0$9213ba18@34gh11v2>; from tlhingan@optonline.net on Mon, Jul 02, 2001 at 09:28:33PM -0400 Sender: owner-freebsd-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, Jul 02, 2001 at 09:28:33PM -0400, R wrote: > hello all > > ok, first things first: I'm new, but not dumb :) Now that thats out of the > way... > > I'm running 3.2-STABLE. I'm trying to configure my box to get on the net. > I have a cable modem - not from "@home" - and a nic (xl0) which conects to > it. > > I've been trying to do a few things at the same time, which has gotten me > quite mixed up, since im learning from scratch each of the things im trying > :) > > So, I'm gonna break my questions into the mailing list into VERY small > pieces - the first of which is: > > What sort of things should i look for when trying to determine why I'm > getting a 57% packet loss pinging hub.freebsd.org? 1) Is this a local or remote problem. ping(1) your default router. Any problems? No? Probably nothing wrong with your setup and nothing you can do to improve performance short of calling up your ISP and whining or complaining about the backbone on Usenet or IRC. Yes? Good chance it's you. Check if you are trying to jam full-duplex traffic down a half-duplex (hate that term) wire. If that's not it... could be a lot of things. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 22:27:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gull.mail.pas.earthlink.net (gull.mail.pas.earthlink.net [207.217.121.85]) by hub.freebsd.org (Postfix) with ESMTP id CE4BF37B406 for ; Mon, 2 Jul 2001 22:27:10 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.135.36.Dial1.SanJose1.Level3.net [209.245.135.36]) by gull.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id WAA07033; Mon, 2 Jul 2001 22:27:08 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f635R7501394; Mon, 2 Jul 2001 22:27:07 -0700 (PDT) (envelope-from cjc) Date: Mon, 2 Jul 2001 22:27:07 -0700 From: "Crist J. Clark" To: Michael Lucas Cc: questions@FreeBSD.ORG Subject: Re: netstat -nr flags Message-ID: <20010702222707.H312@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20010702204704.A83540@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: <20010702204704.A83540@blackhelicopters.org>; from mwlucas@blackhelicopters.org on Mon, Jul 02, 2001 at 08:47:04PM -0400 Sender: owner-freebsd-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, Jul 02, 2001 at 08:47:04PM -0400, Michael Lucas wrote: > Hello, > > netstat -nr has a flags field. These flags are documented in some man > page. Can anyone tell me where this is? > > I've read this before, and for the life of me cannot remember which > page this is... Err... netstat(1)? 1 RTF_PROTO1 Protocol specific routing flag #1 2 RTF_PROTO2 Protocol specific routing flag #2 3 RTF_PROTO3 Protocol specific routing flag #3 B RTF_BLACKHOLE Just discard pkts (during updates) b RTF_BROADCAST The route represents a broadcast address C RTF_CLONING Generate new routes on use c RTF_PRCLONING Protocol-specified generate new routes on use D RTF_DYNAMIC Created dynamically (by redirect) G RTF_GATEWAY Destination requires forwarding by intermediary H RTF_HOST Host entry (net otherwise) L RTF_LLINFO Valid protocol to link address translation M RTF_MODIFIED Modified dynamically (by redirect) R RTF_REJECT Host or net unreachable S RTF_STATIC Manually added U RTF_UP Route usable W RTF_WASCLONED Route was generated as a result of cloning X RTF_XRESOLVE External daemon translates proto to link address -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 22:33: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hawk.mail.pas.earthlink.net (hawk.mail.pas.earthlink.net [207.217.120.22]) by hub.freebsd.org (Postfix) with ESMTP id 94E7237B401 for ; Mon, 2 Jul 2001 22:33:07 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.135.36.Dial1.SanJose1.Level3.net [209.245.135.36]) by hawk.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id WAA23512; Mon, 2 Jul 2001 22:32:59 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f635Whq01425; Mon, 2 Jul 2001 22:32:43 -0700 (PDT) (envelope-from cjc) Date: Mon, 2 Jul 2001 22:32:43 -0700 From: "Crist J. Clark" To: Tony Cc: Richard Smith , Michael Lucas , questions@FreeBSD.ORG Subject: Re: dummynet question Message-ID: <20010702223243.I312@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20010701131531.A78357@blackhelicopters.org> <20010701200306.A282@gaia.home.rdls.net> <002501c10353$b8c79120$0a00a8c0@TONY> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <002501c10353$b8c79120$0a00a8c0@TONY>; from tony@tntpro.com on Mon, Jul 02, 2001 at 08:04:24PM -0400 Sender: owner-freebsd-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, Jul 02, 2001 at 08:04:24PM -0400, Tony wrote: > what type of modification would need to be made if I was running the rules > on a firewall instead of the webserver itself? I have gone online and read > all the reference material I can find and can't seem to find the solution. > > my firewall has two interfaces 192.168.0.1 and 207.5.xxx.xx, my webserver is > on 192.168.0.100 I would love some help, I tried the rulse as micheal had > them, but to no avail... > > root:~# ipfw -a list > 00050 1124169 673224297 divert 8668 ip from any to any via ed0 > 00100 10012 1012606 allow ip from any to any via lo0 > 00200 0 0 deny ip from any to 127.0.0.0/8 > 00300 0 0 deny ip from 127.0.0.0/8 to any > 00350 0 0 pipe 1 tcp from 192.168.1.100 to any out ^^^^^^^^^^^^^ ^^^ I hope there aren't RFC1918 addresses leaving your network. See the problem? -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 22:35:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hawk.mail.pas.earthlink.net (hawk.mail.pas.earthlink.net [207.217.120.22]) by hub.freebsd.org (Postfix) with ESMTP id 3A69F37B401 for ; Mon, 2 Jul 2001 22:35:46 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.135.36.Dial1.SanJose1.Level3.net [209.245.135.36]) by hawk.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id WAA01179; Mon, 2 Jul 2001 22:35:44 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f635ZhP01455; Mon, 2 Jul 2001 22:35:43 -0700 (PDT) (envelope-from cjc) Date: Mon, 2 Jul 2001 22:35:43 -0700 From: "Crist J. Clark" To: Joe McGuckin Cc: questions@FreeBSD.ORG Subject: Re: default serial device settings ? Message-ID: <20010702223543.J312@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <200107022019.f62KJLH81637@monk.via.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200107022019.f62KJLH81637@monk.via.net>; from joe@monk.via.net on Mon, Jul 02, 2001 at 01:19:21PM -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, Jul 02, 2001 at 01:19:21PM -0700, Joe McGuckin wrote: > How do I configure the default baud rate, parity, etc for a tty device? For a console? See ttys(5). Or as are you going /out/ via this serial deivce (/dev/cuaa*)? See tip(1), cu(1), remote(5), ppp(8), depending on how you plan to use it. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 22:38:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from swan.mail.pas.earthlink.net (swan.mail.pas.earthlink.net [207.217.120.123]) by hub.freebsd.org (Postfix) with ESMTP id C6E0B37B405 for ; Mon, 2 Jul 2001 22:38:52 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.135.36.Dial1.SanJose1.Level3.net [209.245.135.36]) by swan.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id WAA13653; Mon, 2 Jul 2001 22:38:49 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f635clX01466; Mon, 2 Jul 2001 22:38:47 -0700 (PDT) (envelope-from cjc) Date: Mon, 2 Jul 2001 22:38:47 -0700 From: "Crist J. Clark" To: "Lavender, Ben" Cc: "'Terry Zink'" , "'freebsd-questions@freebsd.org'" Subject: Re: interface aliases and routing Message-ID: <20010702223847.K312@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <78202F9B9BB8D311846100805F577DFF274094@nctams01.nctldno.navy.mil> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <78202F9B9BB8D311846100805F577DFF274094@nctams01.nctldno.navy.mil>; from LavenderB@nctldno.navy.mil on Mon, Jul 02, 2001 at 10:28:44AM -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, Jul 02, 2001 at 10:28:44AM -0500, Lavender, Ben wrote: > Like this? > xl0: flags=8843 mtu 1500 > inet6 fe80::210:5aff:fe28:ca1f%xl0 prefixlen 64 scopeid 0x1 > inet 164.229.1.72 netmask 0xffffffc0 broadcast 164.229.1.127 > inet 164.229.1.74 netmask 0xffffffff broadcast 164.229.1.74 > ether 00:10:5a:28:ca:1f > media: autoselect (100baseTX ) status: active > supported media: autoselect 100baseTX 100baseTX > 10baseT/UTP 10baseT/UTP 100baseTX > > This didn't work. What does not work? In a setup like this, an outgoing connection will use the 164.229.1.72 address unless the application explicitly requests 164.229.1.74 as the source address. It should be able to use that address if it wants. Incoming connections to the machine should reply using whatever address the incoming packets came in on. What is not working? > > -----Original Message----- > > From: Terry Zink [mailto:tzink@metrocon.com] > > Sent: Monday, July 02, 2001 10:12 AM > > To: Lavender, Ben > > Cc: freebsd-questions@freebsd.org > > Subject: Re: interface aliases and routing > > > > > > Hrm. I believe if I;m not mistaken, that aliases on the nic > > need to have a > > netmask of 255.255.255.255 .. At least, that is what I need > > to do. Might > > wish to try that. > > > > > > On Monday 02 July 2001 10:42, you wrote: > > > I have a FreeBSD 4.2 box currently running. Im trying to > > get interface > > > aliases to work properly without much success. > > > > > > While I seemingly get the interface configured properly, I can't > > > communicate with different subnets. The interface and the > > alias can both > > > communicate with other machines on the same subnet, but > > only the 'primary' > > > address (in this case, 1.72) will talk with other subnets. > > > > > > any ideas/information required? > > > > > > ifconfig: > > > xl0: flags=8843 mtu 1500 > > > inet6 fe80::210:5aff:fe28:ca1f%xl0 prefixlen 64 scopeid 0x1 > > > inet 164.229.1.72 netmask 0xffffffc0 broadcast 164.229.1.127 > > > inet 164.229.1.74 netmask 0xffffffc0 broadcast 164.229.1.127 > > > ether 00:10:5a:28:ca:1f > > > media: autoselect (100baseTX ) status: active > > > supported media: autoselect 100baseTX 100baseTX > > > 10baseT/UTP 10baseT/UTP 100baseTX -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 22:45:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from swan.mail.pas.earthlink.net (swan.mail.pas.earthlink.net [207.217.120.123]) by hub.freebsd.org (Postfix) with ESMTP id A70B437B401 for ; Mon, 2 Jul 2001 22:45:07 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.135.36.Dial1.SanJose1.Level3.net [209.245.135.36]) by swan.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id WAA00752; Mon, 2 Jul 2001 22:45:04 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f635j2p01529; Mon, 2 Jul 2001 22:45:02 -0700 (PDT) (envelope-from cjc) Date: Mon, 2 Jul 2001 22:45:02 -0700 From: "Crist J. Clark" To: Terry Zink Cc: guardian@dark-rune.com, freebsd-questions@FreeBSD.ORG Subject: Re: Problems with SSH.. sometimes Message-ID: <20010702224502.L312@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <22247.203.31.48.3.994075041.squirrel@www.dark-rune.com> <01070209244701.22407@coldstone.metrocon.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <01070209244701.22407@coldstone.metrocon.com>; from tzink@metrocon.com on Mon, Jul 02, 2001 at 09:24:47AM -0400 Sender: owner-freebsd-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, Jul 02, 2001 at 09:24:47AM -0400, Terry Zink wrote: > Check to make sure its not enabled in /etc/rc.conf AND in /usr/local/etc/rc.d That will not make a difference. However, do you have an sshd startup script in, /usr/local/etc/rc.d/ Use either the startup in the distributed rc-files or that script, not both. > On Monday 02 July 2001 07:57, you wrote: > > Sometimes when my freebsd box is rebooted (*gasp*, yes! I reboot it, hasn't > > crashed yet :) ), I get this message: > > > > hd[257]: error: bind to port 22 on :: failed :: address already in use > > Jul 2 23:27:25 gordon sshd[257]:error: bind to port 22 on 0.0.0.0 failed > > access already in use. > > cannot bind to address. > > > > ------- > > > > Specifics: > > > > I have my FBSD 4.0 box networked to my Win98SE box. The win98SE dials > > up/has IC on. > > > > I am telneting/ssh'ing to my BSD box until such time as I can get the USB > > card to work :) (added it into the kernel, trying to get it to work now :) > > ) > > > > What I am wondering is: > > What does the above message mean exactly? And why does telnet/ssh only > > sometimes not work. It seems that if I reboot the box a couple of times... > > it works. > > > > Thanks for any help, > > > > Geoff > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > -- > Regards, > > Terry Zink > System Administrator > Metrocon Communications > Phone: (212) 661-6800 x 1553 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 22:47:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from rannoch.demon.co.uk (rannoch.demon.co.uk [158.152.110.117]) by hub.freebsd.org (Postfix) with ESMTP id C2C0637B40D for ; Mon, 2 Jul 2001 22:47:33 -0700 (PDT) (envelope-from apbran@rannoch.demon.co.uk) Received: (from apb@localhost) by rannoch.demon.co.uk (8.11.4/8.10.1) id f635g4H03330; Tue, 3 Jul 2001 06:42:04 +0100 (BST) Date: Tue, 3 Jul 2001 06:42:04 +0100 From: Paul Branston To: Andrew Reid Cc: freebsd-questions@freebsd.org Subject: Re: Kernel installation error Message-ID: <20010703064204.C19655@rannoch.demon.co.uk> References: <994135122.6461.7.camel@percible.alfred.cx> <20010703060303.A19655@rannoch.demon.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010703060303.A19655@rannoch.demon.co.uk>; from apbran@rannoch.demon.co.uk on Tue, Jul 03, 2001 at 06:03:03AM +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, Jul 03, 2001 at 06:03:03AM +0100, Paul Branston wrote: > On Tue, Jul 03, 2001 at 02:08:41PM +0930, Andrew Reid wrote: > > Eeek! > > > > I've just ran 'make install' (as root) and it's not letting me move the > > old kernel out of the way. > > > > matilda# make install > > chflags noschg /kernel > > chflags: /kernel: Operation not permitted > > *** Error code 1 (ignored) > > mv /kernel /kernel.old > > mv: rename /kernel to /kernel.old: Operation not permitted > > *** Error code 1 > > > > Stop in /usr/src/sys/compile/MYKERNEL. > > > > the security level won't let you clear the noschg flag. Try it is > single user mode, or edit /etc/rc.conf to say > kern_securelevel_enable="NO" > reboot and try again. > > man securelevel > man init > man chflags > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message oops can't type /security s/is/in w q To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 22:55:35 2001 Delivered-To: freebsd-questions@freebsd.org Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 2FE6B37B401 for ; Mon, 2 Jul 2001 22:55:30 -0700 (PDT) (envelope-from ust@cert.siemens.de) X-Envelope-Sender-Is: ust@cert.siemens.de (at relayer david.siemens.de) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by david.siemens.de (8.11.0/8.11.0) with ESMTP id f635tSc16259; Tue, 3 Jul 2001 07:55:28 +0200 (MET DST) Received: from mars.cert.siemens.de (ust.mchp.siemens.de [139.23.201.17]) by mail2.siemens.de (8.11.0/8.11.0) with ESMTP id f635tSC13530; Tue, 3 Jul 2001 07:55:28 +0200 (MET DST) Received: from reims.mchp.siemens.de (reims.mchp.siemens.de [139.23.202.134]) by mars.cert.siemens.de (8.11.4/8.11.4/Siemens CERT [ $Revision: 1.15 ]) with ESMTP id f635tS903711; Tue, 3 Jul 2001 07:55:28 +0200 (CEST) Received: (from ust@localhost) by reims.mchp.siemens.de (8.11.4/8.11.4/alaska [ $Revision: 1.7 ]) id f635tNc03522; Tue, 3 Jul 2001 05:55:23 GMT (envelope-from ust) Date: Tue, 3 Jul 2001 07:55:23 +0200 From: Udo Schweigert To: Jason Nugent Cc: Jason Prosser , Ryan Masse , FreeBSD-Questions Subject: Re: Stupid log file problems... Message-ID: <20010703075523.A3363@alaska.cert.siemens.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.19i X-Operating-System: FreeBSD 4.3-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 On Mon, Jul 02, 2001 at 17:23:44 -0500, Jason Nugent wrote: JN> JN> You might also want to try building logrotate from the ports collection JN> (/usr/ports/sysutils/logrotate). You can set it up to look after a large JN> number of different log files. I use it on a few machines and it works JN> just great. JN> The preferred way is to use the already builtin "newsyslog". Have a look at /etc/newsyslog.conf where you can tune the settings for /etc/security. Best regards -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 CT IC 3, Siemens CERT | Fax : +49 89 636 41166 D-81730 Muenchen / Germany | email : ust@cert.siemens.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 23:18:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from TYO202.gate.nec.co.jp (TYO202.gate.nec.co.jp [202.247.6.41]) by hub.freebsd.org (Postfix) with ESMTP id ABB2937B403 for ; Mon, 2 Jul 2001 23:18:14 -0700 (PDT) (envelope-from T.Anchalalai@thai.necl.nec.co.jp) Received: from mailgate4.nec.co.jp ([10.7.69.195]) by TYO202.gate.nec.co.jp (8.11.3/3.7W01041220) with ESMTP id f636ID614935 for ; Tue, 3 Jul 2001 15:18:13 +0900 (JST) Received: from mailsv.nec.co.jp (mailgate51.nec.co.jp [10.7.69.190]) by mailgate4.nec.co.jp (8.11.3/3.7W-MAILGATE-NEC) with ESMTP id f636I9a26004 for ; Tue, 3 Jul 2001 15:18:10 +0900 (JST) Received: from MT-NECLI6.kis.necl.nec.co.jp ([10.113.16.225]) by mailsv.nec.co.jp (8.11.3/3.7W-MAILSV-NEC) with ESMTP id f636I4t01023 for ; Tue, 3 Jul 2001 15:18:04 +0900 (JST) Received: from necl-t03.THAI.NECL.NEC.CO.JP ([172.16.58.246]) by MT-NECLI6.kis.necl.nec.co.jp (Post.Office MTA v3.5.3J release 223-101-J ID# 1001-70956U100L100S0V35J) with ESMTP id jp for ; Tue, 3 Jul 2001 15:12:34 +0900 Received: from edp3 ([172.16.58.83]) by necl-t03.THAI.NECL.NEC.CO.JP (Post.Office MTA v3.5.3 release 223 ID# 110-60190U100L100S0V35) with SMTP id JP for ; Tue, 3 Jul 2001 12:17:33 +0700 Message-ID: <005701c10381$a7671620$533a10ac@edp3> From: T.Anchalalai@thai.necl.nec.co.jp (ANCHALALAI TRONGTORSAK) To: Date: Tue, 3 Jul 2001 12:33:13 +0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0054_01C103BC.53A45C60" 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_0054_01C103BC.53A45C60 Content-Type: text/plain; charset="windows-874" Content-Transfer-Encoding: quoted-printable Good afternoon, I'd like to quest you about PYTHON 28388-XXX = SCSI tape drive as below :=20 1.What type of back up tape it's compatible for? 2.There are error message"There're unused media,please = choose another type of media",when I utilize DSS 90 Meter with it.Why?=20 Thanks so much ------=_NextPart_000_0054_01C103BC.53A45C60 Content-Type: text/html; charset="windows-874" Content-Transfer-Encoding: quoted-printable
        = Good=20 afternoon, I'd like to quest you about PYTHON 28388-XXX SCSI tape drive = as below=20 :
 
          &nbs= p; 1.What=20 type of back up tape it's compatible for?
          &nbs= p; 2.There=20 are error message"There're unused media,please choose another type = of=20 media",when I utilize DSS 90 Meter with it.Why?
 
 
Thanks so=20 much
------=_NextPart_000_0054_01C103BC.53A45C60-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 2 23:58:35 2001 Delivered-To: freebsd-questions@freebsd.org Received: from evilfry.dyndns.org (dyn15ppp2.qala.com.sg [210.193.15.2]) by hub.freebsd.org (Postfix) with ESMTP id 0872837B407 for ; Mon, 2 Jul 2001 23:58:33 -0700 (PDT) (envelope-from root@evilfry.dyndns.org) Received: by evilfry.dyndns.org (Postfix, from userid 0) id EA918183991; Tue, 3 Jul 2001 14:59:14 +0800 (SGT) Content-Type: text/plain; charset="iso-8859-1" From: James Lim Reply-To: evilfry@sg.freebsd.org To: Kelvin Ng Chee Hoong , "freebsd-questions@FreeBSD.ORG" Subject: Re: Port Scanning Detection Date: Tue, 3 Jul 2001 14:59:06 +0800 X-Mailer: KMail [version 1.2] References: <3B41332D.152DEA31@pacific.net.sg> In-Reply-To: <3B41332D.152DEA31@pacific.net.sg> MIME-Version: 1.0 Message-Id: <01070314590600.93709@evilfry.dyndns.org> 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 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi =09try portsentry in ports :) On the last episode Tuesday 03 July 2001 10:51, Kelvin Ng Chee Hoong=20 wrote: > Hi ; > Does anybody know what software available internet to detect=20 > port scanning ? I want the software which able to send email alert > or SMS to network administor as soon it detected the action of port > scanning takes place . Please advise > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message - --=20 Regards, James Lim http://sg.freebsd.org | http://www.bsd-geeks.org -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQA/AwUBO0FtPJpTakonTMbIEQIUIgCgzKK7eX8u3+pVL+oLjtLd+ROs+AYAn2yX EDA5ys+GOSqSPphP16dTb6oT =3DrZwf -----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 Tue Jul 3 0: 5:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id 7335C37B403 for ; Tue, 3 Jul 2001 00:05:43 -0700 (PDT) (envelope-from so@server.i-clue.de) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id JAA28084; Tue, 3 Jul 2001 09:14:46 +0200 Message-ID: <3B416F4D.1204A2A6@i-clue.de> Date: Tue, 03 Jul 2001 09:07:57 +0200 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: ANCHALALAI TRONGTORSAK Cc: freebsd-questions@FreeBSD.ORG Subject: Re: OT: PYTHON 28388 [Was: no subject] References: <005701c10381$a7671620$533a10ac@edp3> 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 [Providing a subject would help] [This mailing list does not consider HTML mail] [Is your questions related to FreeBSD?] > ANCHALALAI TRONGTORSAK schrieb: > > Good afternoon, I'd like to quest you about PYTHON 28388-XXX > SCSI tape drive as below : > > 1.What type of back up tape it's compatible for? Searching google for "PYTHON 28388" shows http://www.datman.com/tbul/dmtb_014.htm ... Conner Peripherals [...] return the version number of the firmware (how silly). The firmware names usually look like: 25501-XXX, 25501-008, 25947-XXX, 25588-???, 27871-XXX, 28388-XXX. For example, Python 28388-XXX can be either a 4322, a 4324, or a 4326 with different capabilities altogether. ... Thus, the XXX part specifies the tape type. Please refer to the URL above to learn more about your tapes HTH -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 0:18: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nw171.netaddress.usa.net (nw171.netaddress.usa.net [204.68.24.71]) by hub.freebsd.org (Postfix) with SMTP id 0805037B40A for ; Tue, 3 Jul 2001 00:17:58 -0700 (PDT) (envelope-from john_kernel@usa.net) Received: (qmail 9384 invoked by uid 60001); 3 Jul 2001 07:17:57 -0000 Message-ID: <20010703071757.9383.qmail@nw171.netaddress.usa.net> Received: from 204.68.24.71 by nw171 for [202.150.128.129] via web-mailer(34FM.0700.18.03B) on Tue Jul 3 07:17:57 GMT 2001 Date: 3 Jul 2001 01:17:57 MDT From: john kernel To: freebsd-questions@FreeBSD.ORG Subject: partition problem X-Mailer: USANET web-mailer (34FM.0700.18.03B) 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 Dear all FreeBSD user, this is the firt time i am using FreeBSD operating system, but while = the instalation, i have a problem in partition.The problem is i can't disting= uish between the partiiton.In my hard drive (20 GB) i have 4 partition, first = one for my Windows 98 (fat 16=3D1,5 GB)), second Win2000 Server (NTFS=3D3 GB)= ), third partiton 3 GB for FreeBSD , and forth 12 GB for data. While in FreeBSD M= enu Partition, only 2 partition showed in menu partition, they are 1,5 GB for= win98 and 18,5 GB for extended. For detail, i will describe the table: Offset Size(MB) End Name PType Desc Subtype 0 0 62 - 6 unused 0 63 1506 3084479 adOs1 2 at 6 3084480 7963 39873329 adOs2 4 extended 15 39873330 1 39876429 - 6 unused 0 My question is how can i make partition for FreeBSD (like root, swap, ho= me, var) without sacrifice(damage) my other partition? I have tried to using Partition Magis, but the results is nothing. I hope u can help me to solv= e my problem. thank u for all attention. regards = john = To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 0:26:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gscamnlm03.wr.usgs.gov (gscamnlm03.wr.usgs.gov [130.118.4.113]) by hub.freebsd.org (Postfix) with ESMTP id 4415937B401; Tue, 3 Jul 2001 00:26:42 -0700 (PDT) (envelope-from rsowders@usgs.gov) To: "Nadir@Attractive" Cc: freebsd-questions@freebsd.org, owner-freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 X-Mailer: Lotus Notes Release 5.0.7 March 21, 2001 Message-ID: From: "Robert L Sowders" Date: Tue, 3 Jul 2001 00:26:35 -0700 Subject: Re: Is it possible to get more power from a FreeBSD system running Apache/MySQL/PHP ? X-MIMETrack: Serialize by Router on gscamnlm03/SERVER/USGS/DOI(Release 5.0.7 |March 21, 2001) at 07/03/2001 12:26:40 AM Content-Type: multipart/mixed; boundary="=_mixed 00294A7488256A7E_=" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=_mixed 00294A7488256A7E_= Content-Type: text/plain; charset="us-ascii" Here is what somebody I know did to combat the "slashdot effect" of sudden overwhelming surges to his web server. They run the USGS Govs earthquake server and it has no load at all until there is an earthquake and then everyone in southern California wants info right now. Around 400 hits per second, his system handled it no sweat. Read the following. http://pasadena.wr.usgs.gov/office/stans/slashdot.html I see that you reported each instance of apache at 13MB? This is huge, are you doing that much dynamic? I'll look at your config file and get back to you, but something sure sounds peculiar. Are you forcing a parse of every file on the docroot, and looking for .htaccess in every tree? Or maybe your content is really that big. I guess you've had a look at the apache.org site for performance tips of dos and don'ts. Let me have a look at the config file, but I've got a feeling that you could off-load some of the content to other servers, and let your web server get back to serving pages while your other server deliver the content. "Nadir@Attractive" cc: Subject: Is it possible to get more power from a FreeBSD system running Apache/MySQL/PHP ? Hello all, I hope this is the first time anyone is asking such a question, but I couldn't find any help in the archives. We have a FreeBSD 4.2-STABLE server running mainly Apache, PHP and MySQL. It is a 933Mhz Intel Xeon-based server, equipped with 1GB memory and 4 SCSI LVD RAID-5 disks. The Apache's httpd.conf file is attached in my e-mail for your evaluation. Today we had a very HIGH surge of Web visitors to one of our hosted Web sites, and it seemed that the server has reached its limits. Each Apache's instance used nearly 13MB of memory and a sum of 150 instances were active, yielding approximately 2GB of memory usage! This has nearly paralized our server, and I couldn't do anything about it, at least that's what I think. I have few questions: 1. Anyone knows if Apache 2.0 can handle more visitors than Apache 1.3.x in the current configuration that we have? 2. Can I optimize the FreeBSD system that we currently have even further to get more power of the server? 3. The MAXUSERS configuration parameter is set to 256, and this is the kernel's setting now. If I set it to be larger, say 1024, will it yield better results? 4. Personally I think that this server can do MUCH better, and maybe the server's configuration is inaccurate, or insufficient. Any suggestions where to start? 5. If you need further analysis and information about the server's exact configuration, please let me know and I will provide them. Meanwhile, the burst of visitors have dropped and the server is back to its near "dead" state, where it serves pages quickly and do almost nothing. I would like it to serve pages as smoothly, though, when it's overloaded and have so many connections to handle. Please CC me on your replies. Thank you, Noor --=_mixed 00294A7488256A7E_= Content-Type: application/octet-stream; name="httpd.conf" Content-Disposition: attachment; filename="httpd.conf" Content-Transfer-Encoding: base64 U2VydmVyVHlwZSBzdGFuZGFsb25lDQpTZXJ2ZXJUb2tlbnMgUHJvZHVjdE9ubHkNClNlcnZlclJv b3QgIi93d3ciDQpEb2N1bWVudFJvb3QgIi93d3cvaHRtbC9CTEFOSy1WSE9TVCINClBvcnQgODAN ClNlcnZlckFkbWluIHdlYm1hc3RlckBkb21haW4uY29tDQpTZXJ2ZXJOYW1lIHd3dy5kb21haW4u Y29tDQoNClVzZXIgYXBhY2hlDQpHcm91cCBhcGFjaGUNCg0KTGlzdGVuIDE5Mi4xNjguMTAuMTA6 ODANCkxpc3RlbiAxOTIuMTY4LjEwLjEwOjQ0Mw0KTGlzdGVuIDE5Mi4xNjguMTAuMjA6ODANCkxp c3RlbiAxOTIuMTY4LjEwLjIwOjQ0Mw0KTGlzdGVuIDE5Mi4xNjguMTAuMzA6ODANCkxpc3RlbiAx OTIuMTY4LjEwLjMwOjQ0Mw0KTGlzdGVuIDE5Mi4xNjguMTAuNDA6ODANCkxpc3RlbiAxOTIuMTY4 LjEwLjQwOjQ0Mw0KDQpQaWRGaWxlIC93d3cvcnVuL2h0dHBkLnBpZA0KU2NvcmVCb2FyZEZpbGUg L3d3dy9ydW4vaHR0cGQuc2NvcmVib2FyZA0KUmVzb3VyY2VDb25maWcgZXRjL3NybS5jb25mDQpB Y2Nlc3NDb25maWcgZXRjL2FjY2Vzcy5jb25mDQoNClRpbWVvdXQgMjQwDQpLZWVwQWxpdmUgT24N Ck1heEtlZXBBbGl2ZVJlcXVlc3RzIDANCktlZXBBbGl2ZVRpbWVvdXQgMTANCg0KTWluU3BhcmVT ZXJ2ZXJzIDEwDQpNYXhTcGFyZVNlcnZlcnMgNDANClN0YXJ0U2VydmVycyAzMA0KDQpNYXhDbGll bnRzIDE1MA0KTWF4UmVxdWVzdHNQZXJDaGlsZCAwDQoNCjxJZkRlZmluZSBTU0w+DQpMaXN0ZW4g ODANCkxpc3RlbiA0NDMNCjwvSWZEZWZpbmU+DQoNCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCg0KQWNjZXNzRmls ZU5hbWUgLmh0YWNjZXNzDQpVc2VDYW5vbmljYWxOYW1lIE9uDQpIb3N0bmFtZUxvb2t1cHMgT24N CkV4dGVuZGVkU3RhdHVzIE9uDQpMb2dMZXZlbCBlbWVyZw0KU2VydmVyU2lnbmF0dXJlIEVNYWls DQpEZWZhdWx0VHlwZSB0ZXh0L3BsYWluDQoNCjxGaWxlcyB+ICJeXC5odCI+DQogICAgT3JkZXIg YWxsb3csZGVueQ0KICAgIERlbnkgZnJvbSBhbGwNCjwvRmlsZXM+DQoNCjxJZk1vZHVsZSBtb2Rf dXNlcmRpci5jPg0KICAgIFVzZXJEaXIgaHRtbA0KPC9JZk1vZHVsZT4NCg0KPElmTW9kdWxlIG1v ZF9kaXIuYz4NCiAgICBEaXJlY3RvcnlJbmRleCBpbmRleC5waHAgaW5kZXgucGhwMyBpbmRleC54 IGluZGV4LnBodG1sIGluZGV4LmFzcCBpbmRleC5odG1sIGluZGV4Lmh0bQ0KPC9JZk1vZHVsZT4N Cg0KPElmTW9kdWxlIG1vZF9taW1lLmM+DQogICAgVHlwZXNDb25maWcgL3d3dy9ldGMvbWltZS50 eXBlcw0KPC9JZk1vZHVsZT4NCg0KPElmTW9kdWxlIG1vZF9taW1lX21hZ2ljLmM+DQogICAgTUlN RU1hZ2ljRmlsZSAvd3d3L2V0Yy9tYWdpYw0KPC9JZk1vZHVsZT4NCg0KTG9nRm9ybWF0ICIlaCAl bCAldSAldCBcIiVyXCIgJT5zICViIFwiJXtSZWZlcmVyfWlcIiBcIiV7VXNlci1BZ2VudH1pXCIi IGNvbWJpbmVkDQpMb2dGb3JtYXQgIiVoICVsICV1ICV0IFwiJXJcIiAlPnMgJWIiIGNvbW1vbg0K TG9nRm9ybWF0ICIle1JlZmVyZXJ9aSAtPiAlVSIgcmVmZXJlcg0KTG9nRm9ybWF0ICIle1VzZXIt YWdlbnR9aSIgYWdlbnQNCg0KRXJyb3JMb2cgL3d3dy9sb2cvZXJyb3ItbG9nDQpDdXN0b21Mb2cg L3d3dy9sb2cvYWNjZXNzLWxvZyBjb21iaW5lZA0KDQo8RGlyZWN0b3J5IC8+DQogICAgT3B0aW9u cyBGb2xsb3dTeW1MaW5rcw0KICAgIEFsbG93T3ZlcnJpZGUgTm9uZQ0KPC9EaXJlY3Rvcnk+DQoN CjxEaXJlY3RvcnkgIi93d3cvaHRtbCI+DQogICAgT3B0aW9ucyBGb2xsb3dTeW1MaW5rcyBFeGVj Q0dJIE11bHRpVmlld3MNCiAgICBBbGxvd092ZXJyaWRlIEFsbA0KICAgIE9yZGVyIGFsbG93LGRl bnkNCiAgICBBbGxvdyBmcm9tIGFsbA0KPC9EaXJlY3Rvcnk+DQo= --=_mixed 00294A7488256A7E_=-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 0:28:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from entoo.connect.com.au (entoo.connect.com.au [192.189.54.8]) by hub.freebsd.org (Postfix) with ESMTP id C656537B403 for ; Tue, 3 Jul 2001 00:28:17 -0700 (PDT) (envelope-from dmk@worfie.net) Received: from stormcloud (qetesh.iteru.net [202.42.66.7]) by entoo.connect.com.au (Postfix) with SMTP id 3F003DD91C; Tue, 3 Jul 2001 17:25:08 +1000 (EST) Message-ID: <010e01c10391$a57f2900$190c0b0a@cairo.iteru.net> From: "Daniel Kirkwood" To: , , References: <200107030437.f634bP004382@possum.os2.ami.com.au> Subject: Re: Doom & Heretic ports Date: Tue, 3 Jul 2001 15:27:39 +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 ----- Original Message ----- From: "John Summerfield" To: Sent: Tuesday, July 03, 2001 12:37 PM Subject: Re: Doom & Heretic ports > > Hello. > > > > I have ported Doom and Heretic to FreeBSD + SVGA library. They are > > looks as nice as in DOS, but runs faster and have 16bit sound support. > > Please, tell me how my port could be taken to ports tree. > > > > The pedant steps in. I think that, if you check the manufacturer of > your sound card, you will find it's '16 voices,' not '16 bits.' The pedant's pedant steps in - 16 bit sound refers to waveform sampling... IE, the soundcard (and in this case, Mr Pokrovsky's software) supports 16 bit waveforms, as opposed to 8 bit waveforms as used by older sound hardware. "16 voice" or "128 voice", as the case may be, refers to the music synthesizer on your soundcard - which means it can produce sounds from 128 different sythesized or sampled instruments simultaneously. Igor, I haven't had much involvement with the ports collection, however you could check the FreeBSD Porter's Handbook at the address below, if you haven't done so already. http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/index.html Regards, Daniel. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 0:49:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from clientmail.realtime.co.uk (simian.realtime.co.uk [194.205.134.131]) by hub.freebsd.org (Postfix) with ESMTP id 4976937B408 for ; Tue, 3 Jul 2001 00:49:21 -0700 (PDT) (envelope-from waynep@pan.realtime.co.uk) Received: from [213.52.146.196] (helo=pan.realtime.co.uk) by clientmail.realtime.co.uk with esmtp (Exim 3.20 #1) id 15HKvv-00040E-01; Tue, 03 Jul 2001 08:49:19 +0100 Received: from waynep by pan.realtime.co.uk with local (Exim 3.22 #1) id 15HKvO-0000Gs-00; Tue, 03 Jul 2001 08:48:46 +0100 From: Wayne Pascoe To: "David Caldwell" Cc: Subject: Re: Certification References: Date: 03 Jul 2001 08:48:46 +0100 In-Reply-To: Message-ID: <86itha78rl.fsf@pan.ehsrealtime.com> 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 "David Caldwell" writes: > Is there a certification program for any of the BSD Unixes? > > I have seen them for Linux and for Sun Solaris, as well as the > various other flavors of Unix. Will there be or is there one for > BSD? Certification is all well and good, but I don't know how much store should be placed in it. I am an RHCE. I did it as an exam only candidate, and passed on my first outing. I can honestly say its the hardest exam I've ever sat. Having attained it, not a single thing in either my professional or my private life has been enriched. If I had to do it all again, I'd spend the GBP600 on something more fun... Like a bigger PC :) -- - Wayne Pascoe E-mail: wayne.pascoe@realtime.co.uk Phone : +44 (0) 20 7544 4668 Mobile: +44 (0) 788 431 1675 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 0:56:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from onsult-meyers.com (dialup-57-88.dplanet.ch [212.35.57.88]) by hub.freebsd.org (Postfix) with ESMTP id BA97337B405 for ; Tue, 3 Jul 2001 00:56:12 -0700 (PDT) (envelope-from a.l.meyers@consult-meyers.com) Received: from localhost (localhost [127.0.0.1]) by 0onsult-meyers.com (8.11.4/8.11.4) with ESMTP id f6383Gd03072; Tue, 3 Jul 2001 10:03:36 +0200 (CEST) (envelope-from a.l.meyers@consult-meyers.com) Date: Tue, 3 Jul 2001 10:03:15 +0200 (CEST) From: "A. L. Meyers" To: Kent Stewart Cc: Subject: Re: make installworld problem In-Reply-To: <3B3E0AA8.8DDBD928@urx.com> Message-ID: <20010703095920.I450-100000@consult-meyers> 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 Kent, Built a new custom kernel using the newest sources and deleted /usr/src/obj/src. Thanks to your help :-) the make installworld problems seem to have disappeared. Sendmail is back up and running. When I post again it will be on other items in a new thread. Thanks! Lucien To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 1: 1:20 2001 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 205C037B438 for ; Tue, 3 Jul 2001 01:01:07 -0700 (PDT) (envelope-from s9810048@mmu.edu.my) 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 PAA29923 for ; Tue, 3 Jul 2001 15:58:17 +0800 (MYT) Received: from Debug (venus [10.100.3.1]) by venus.cyber.mmu.edu.my (8.8.8+Sun/8.8.8) with SMTP id PAA03619 for ; Tue, 3 Jul 2001 15:58:11 +0800 (SGT) Message-Id: <200107030758.PAA03619@venus.cyber.mmu.edu.my> To: freebsd-questions@freebsd.org From: Sudirman Bin Hassan Subject: Ipfw+Squid+Caching Nameserver+PPP dialup on demand Date: Tue, 3 Jul 2001 15:58:11 Singapore X-Mailer: Professional Edition v3.0.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 Hi, I'm new to bsd but have about 2 years experience with Linux. I've currently try to shift my college firewall+gateway to use FreeBSD intead of Linux since I find that under certain situation, Linux crawl. Thus there where I come. I've succesfully enable the PPP dial on demand after reading the PPP primer book.. thanks to great doc. Everybody on LAN can connect to Internet. Now I want to set up firewall and enable transparent proxy by using Squid as well as caching nameserver. I've been following this mailing list quite a while and somebody said that i should use fwd instead of divert for trans.proxy. Can anybody give some example on the exact instruction. I want to force all connection to Internet from my LAN via squid. Squid is on port 3128. My internal NIC is ed0. where it should appear on my firewall rule.. before or after natd? What setting should I do for caching name server. Which bind is better? 8 or 9 to be use? We are using dial up connection thus it would be nice if the connection is disconnect whenever there is nobody going to the Internet. How can I do this? -dman This message was sent using MMU Webmail (Cyberjaya) - http://webmail.mmu.edu.my To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 1:14:35 2001 Delivered-To: freebsd-questions@freebsd.org Received: from seed.pacific.net.sg (seed.pacific.net.sg [203.120.90.77]) by hub.freebsd.org (Postfix) with ESMTP id A584C37B403 for ; Tue, 3 Jul 2001 01:14:31 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop1.pacific.net.sg (pop1.pacific.net.sg [203.120.90.85]) by seed.pacific.net.sg with ESMTP id f638EPY04383; Tue, 3 Jul 2001 16:14:25 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop1.pacific.net.sg with ESMTP id QAA27355; Tue, 3 Jul 2001 16:14:24 +0800 (SGT) Message-ID: <3B418031.152749A4@pacific.net.sg> Date: Tue, 03 Jul 2001 16:20:01 +0800 From: Kelvin Ng Chee Hoong X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: zh-TW,en MIME-Version: 1.0 To: cjclark@alum.mit.edu Cc: "freebsd-questions@FreeBSD.ORG" Subject: Re: Firewall References: <3B4142C5.1EC1CCE2@pacific.net.sg> <20010702221737.E312@blossom.cjclark.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 Dear Ling Ling and Crist . I've sucessfully bring up my FBSD machine as a firewall . It works now !! Anyway a lot thanks for your advise . "Crist J. Clark" wrote: > On Tue, Jul 03, 2001 at 11:57:57AM +0800, Kelvin Ng Chee Hoong wrote: > > Hi ; > > (Q1) I would like to use FBSD to act as firewall . It is adviseable > > ? > > Yes. FreeBSD using either ipfw(8) or ipf(8) makes a very economical, > powerful, and (potentially) secure firewall device. > > > (Q2) I want configure multi-homing , can I insert three ethernet > > card in FBSD machine ? > > Not a problem. > -- > Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 1:40:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailin1.bigpond.com (juicer13.bigpond.com [139.134.6.21]) by hub.freebsd.org (Postfix) with ESMTP id DD4B937B406 for ; Tue, 3 Jul 2001 01:40:53 -0700 (PDT) (envelope-from rking2@bigpond.net.au) Received: from ghostbox ([144.135.24.81]) by mailin1.bigpond.com (Netscape Messaging Server 4.15) with SMTP id GFW31E00.FE7 for ; Tue, 3 Jul 2001 18:46:26 +1000 Received: from CPE-61-9-145-25.vic.bigpond.net.au ([61.9.145.25]) by bwmam05.mailsvc.email.bigpond.com(MailRouter V2.9g 8335/5468936); 03 Jul 2001 18:46:26 Message-ID: <001801c1039b$df34d3c0$0200a8c0@ghostbox> From: "Matthew King" To: Subject: User Help Date: Tue, 3 Jul 2001 18:40:53 +1000 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0015_01C103EF.B0715910" 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 This is a multi-part message in MIME format. ------=_NextPart_000_0015_01C103EF.B0715910 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable HI, i was wondering if there was a way that you can make a user only look in his own home dir not being able to look into other peoples home dir's or my dir's if there is a way please e-mail me back Matthew King ------=_NextPart_000_0015_01C103EF.B0715910 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
HI,
i was wondering if there was a way that = you can=20 make a user only look
in his own home dir not being able to = look into=20 other peoples home dir's
or my dir's
 
if there is a way please e-mail me=20 back
 
Matthew=20 King
------=_NextPart_000_0015_01C103EF.B0715910-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 1:57:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pluto.cyco.nl (pluto.cyco.nl [193.78.170.194]) by hub.freebsd.org (Postfix) with ESMTP id 863F837B401 for ; Tue, 3 Jul 2001 01:57:29 -0700 (PDT) (envelope-from jorgen@cyco.nl) Received: from Titanium.cs.cyco.nl (titanium.cs.cyco.nl [193.78.170.197]) by pluto.cyco.nl (8.9.3/8.9.3/Debian 8.9.3-21) with SMTP id KAA27921 for ; Tue, 3 Jul 2001 10:57:23 +0200 Received: by Titanium.cs.cyco.nl(Lotus SMTP MTA v4.6.4 (830.2 3-23-1999)) id C1256A7E.00317D26 ; Tue, 3 Jul 2001 11:00:33 +0200 X-Lotus-FromDomain: CYCO From: jorgen@cyco.nl To: freebsd-questions@freebsd.org Message-ID: Date: Tue, 3 Jul 2001 11:00:30 +0200 Subject: Re: RAID problems on Compaq DLT380 (FreeBSD 4.3-RELEASE) Mime-Version: 1.0 Content-type: multipart/mixed; Boundary="0__=bOPqiiJUZdWXIm36m0sTmugWDBRQ4xEmewMrm8WKRbGRmjYP6J4MzVMl" 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 --0__=bOPqiiJUZdWXIm36m0sTmugWDBRQ4xEmewMrm8WKRbGRmjYP6J4MzVMl Content-type: text/plain; charset=us-ascii Content-Disposition: inline Indeed, I have to use the Compaq SmartStart CD to do the rebuilding _offline_ through the ACU utility Not exactly what i would expect... but it gets the job done :-) Thanks, Jorgen Maas Tony Wells on 07/02/2001 08:48:06 PM To: jorgen cc: freebsd-questions@FreeBSD.ORG(bcc: Jorgen Maas/Cyco Software/Cyco) Subject: Re: RAID problems on Compaq DLT380 (FreeBSD 4.3-RELEASE) I'm not familiar with that controller, but you may have to rebuild it through a BIOS utility offline. jorgen@cyco.nl wrote: > > Hello all, > > I've installed FreeBSD 4.3-RELEASE on my Compaq DLT380 with integrated raid > controller. > The kernel recognizes the controller just fine and the installation went OK. > > But now: > When I remove one disk from the Array (configured as raid 5) and plug it back > in > the rebuild process doesnt start. > I would expect this to work automagically.... > Am I missing something obvious here? Do I need additional software? > > Any help is very welcome! > > Thanks, > > Jorgen Maas > > 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 --0__=bOPqiiJUZdWXIm36m0sTmugWDBRQ4xEmewMrm8WKRbGRmjYP6J4MzVMl Content-type: application/octet-stream; name="att1.eml" Content-Disposition: attachment; filename="att1.eml" Content-transfer-encoding: base64 UmVjZWl2ZWQ6IGZyb20gcGx1dG8uY3ljby5ubCAoWzE5My43OC4xNzAuMTk0XSkgYnkgVGl0YW5p dW0uY3MuY3ljby5ubCAoTG90dXMgU01UUCBNVEEgdjQuNi40ICAoODMwLjIgMy0yMy0xOTk5KSkg d2l0aCBTTVRQIGlkIDQxMjU2QTdELjAwNjdDMzQ3OyBNb24sIDIgSnVsIDIwMDEgMjA6NTM6MjEg KzAyMDANClJlY2VpdmVkOiBmcm9tIG14Mi5mcmVlYnNkLm9yZyAobXgyLmZyZWVic2Qub3JnIFsy MTYuMTM2LjIwNC4xMTldKQ0KCWJ5IHBsdXRvLmN5Y28ubmwgKDguOS4zLzguOS4zL0RlYmlhbiA4 LjkuMy0yMSkgd2l0aCBFU01UUCBpZCBVQUEyNjAxOQ0KCWZvciA8am9yZ2VuQGN5Y28ubmw+OyBN b24sIDIgSnVsIDIwMDEgMjA6NDk6MzYgKzAyMDANClJlY2VpdmVkOiBmcm9tIGh1Yi5mcmVlYnNk Lm9yZyAoaHViLmZyZWVic2Qub3JnIFsyMTYuMTM2LjIwNC4xOF0pDQoJYnkgbXgyLmZyZWVic2Qu b3JnIChQb3N0Zml4KSB3aXRoIEVTTVRQDQoJaWQgNTUwOEU1NUEzQzsgTW9uLCAgMiBKdWwgMjAw MSAxMTo0OTozMCAtMDcwMCAoUERUKQ0KCShlbnZlbG9wZS1mcm9tIG93bmVyLWZyZWVic2QtcXVl c3Rpb25zQEZyZWVCU0QuT1JHKQ0KUmVjZWl2ZWQ6IGJ5IGh1Yi5mcmVlYnNkLm9yZyAoUG9zdGZp eCwgZnJvbSB1c2VyaWQgNTM4KQ0KCWlkIEVDRkY1MzdCNDA1OyBNb24sICAyIEp1bCAyMDAxIDEx OjQ5OjI2IC0wNzAwIChQRFQpDQpSZWNlaXZlZDogZnJvbSBsb2NhbGhvc3QgKGxvY2FsaG9zdCBb MTI3LjAuMC4xXSkNCglieSBodWIuZnJlZWJzZC5vcmcgKFBvc3RmaXgpIHdpdGggU01UUA0KCWlk IEM3NTg5MkU4MUNCOyBNb24sICAyIEp1bCAyMDAxIDExOjQ5OjI2IC0wNzAwIChQRFQpDQoJKGVu dmVsb3BlLWZyb20gb3duZXItZnJlZWJzZC1xdWVzdGlvbnMpDQpSZWNlaXZlZDogYnkgaHViLmZy ZWVic2Qub3JnIChidWxrX21haWxlciB2MS4xMik7IE1vbiwgMiBKdWwgMjAwMSAxMTo0OToyNiAt MDcwMA0KRGVsaXZlcmVkLVRvOiBmcmVlYnNkLXF1ZXN0aW9uc0BmcmVlYnNkLm9yZw0KUmVjZWl2 ZWQ6IGZyb20gY2FtZWwua2RzaS5uZXQgKGNhbWVsLmtkc2kubmV0IFsyMDYuMTAzLjExMy4yMThd KQ0KCWJ5IGh1Yi5mcmVlYnNkLm9yZyAoUG9zdGZpeCkgd2l0aCBFU01UUCBpZCBBMjcyMDM3QjQw Mw0KCWZvciA8ZnJlZWJzZC1xdWVzdGlvbnNARnJlZUJTRC5PUkc+OyBNb24sICAyIEp1bCAyMDAx IDExOjQ5OjI0IC0wNzAwIChQRFQpDQoJKGVudmVsb3BlLWZyb20gdG9ueUBjYW1lbC5rZHNpLm5l dCkNClJlY2VpdmVkOiBmcm9tIGNhbWVsLmtkc2kubmV0IChsZWVwY0MtMDg4LnN1Yi1jLmxlZS5u ZXQgWzIwOC4yMDUuMTI2Ljg4XSkNCgkoYXV0aGVudGljYXRlZCAoMCBiaXRzKSkNCglieSBjYW1l bC5rZHNpLm5ldCAoOC4xMi4wLkJldGExMC84LjEyLjAuQmV0YTEwKSB3aXRoIEVTTVRQIGlkIGY2 Mklwdkt2MDA4MjQwOw0KCU1vbiwgMiBKdWwgMjAwMSAxMzo1MTo1OCAtMDUwMCAoQ0RUKQ0KTWVz c2FnZS1JRDogPDNCNDBDMUU2LkVERTcyQTA5QGNhbWVsLmtkc2kubmV0Pg0KRGF0ZTogTW9uLCAw MiBKdWwgMjAwMSAxMzo0ODowNiAtMDUwMA0KRnJvbTogVG9ueSBXZWxscyA8dG9ueUBjYW1lbC5r ZHNpLm5ldD4NClgtTWFpbGVyOiBNb3ppbGxhIDQuNzcgW2VuXSAoWDExOyBVOyBMaW51eCAyLjIu MTIgaTM4NikNClgtQWNjZXB0LUxhbmd1YWdlOiBlbg0KTUlNRS1WZXJzaW9uOiAxLjANClRvOiBq b3JnZW5AY3ljby5ubA0KQ2M6IGZyZWVic2QtcXVlc3Rpb25zQEZyZWVCU0QuT1JHDQpTdWJqZWN0 OiBSZTogUkFJRCBwcm9ibGVtcyBvbiBDb21wYXEgRExUMzgwIChGcmVlQlNEIDQuMy1SRUxFQVNF KQ0KUmVmZXJlbmNlczogPDQxMjU2QTdELjAwM0U1MDE2LjAwQFRpdGFuaXVtLmNzLmN5Y28ubmw+ DQpDb250ZW50LVR5cGU6IHRleHQvcGxhaW47IGNoYXJzZXQ9dXMtYXNjaWkNCkNvbnRlbnQtVHJh bnNmZXItRW5jb2Rpbmc6IDdiaXQNClNlbmRlcjogb3duZXItZnJlZWJzZC1xdWVzdGlvbnNARnJl ZUJTRC5PUkcNCkxpc3QtSUQ6IDxmcmVlYnNkLXF1ZXN0aW9ucy5GcmVlQlNELk9SRz4NCkxpc3Qt QXJjaGl2ZTogPGh0dHA6Ly9kb2NzLmZyZWVic2Qub3JnL21haWwvPiAoV2ViIEFyY2hpdmUpDQpM aXN0LUhlbHA6IDxtYWlsdG86bWFqb3Jkb21vP3N1YmplY3Q9aGVscD4gKExpc3QgSW5zdHJ1Y3Rp b25zKQ0KTGlzdC1TdWJzY3JpYmU6IDxtYWlsdG86bWFqb3Jkb21vP3N1YmplY3Q9c3Vic2NyaWJl JTIwZnJlZWJzZC1xdWVzdGlvbnM+DQpMaXN0LVVuc3Vic2NyaWJlOiA8bWFpbHRvOm1ham9yZG9t bz9zdWJqZWN0PXVuc3Vic2NyaWJlJTIwZnJlZWJzZC1xdWVzdGlvbnM+DQpYLUxvb3A6IEZyZWVC U0QuT1JHDQpQcmVjZWRlbmNlOiBidWxrDQoNCg0KSSdtIG5vdCBmYW1pbGlhciB3aXRoIHRoYXQg Y29udHJvbGxlciwgYnV0IHlvdSBtYXkgaGF2ZSB0byByZWJ1aWxkIGl0DQp0aHJvdWdoIGEgQklP UyB1dGlsaXR5IG9mZmxpbmUuDQoNCmpvcmdlbkBjeWNvLm5sIHdyb3RlOg0KPiANCj4gSGVsbG8g YWxsLA0KPiANCj4gSSd2ZSBpbnN0YWxsZWQgRnJlZUJTRCA0LjMtUkVMRUFTRSBvbiBteSBDb21w YXEgRExUMzgwIHdpdGggaW50ZWdyYXRlZCByYWlkDQo+IGNvbnRyb2xsZXIuDQo+IFRoZSBrZXJu ZWwgcmVjb2duaXplcyB0aGUgY29udHJvbGxlciBqdXN0IGZpbmUgYW5kIHRoZSBpbnN0YWxsYXRp b24gd2VudCBPSy4NCj4gDQo+IEJ1dCBub3c6DQo+ICBXaGVuIEkgcmVtb3ZlIG9uZSBkaXNrIGZy b20gdGhlIEFycmF5IChjb25maWd1cmVkIGFzIHJhaWQgNSkgYW5kIHBsdWcgaXQgYmFjaw0KPiBp bg0KPiAgdGhlIHJlYnVpbGQgcHJvY2VzcyBkb2VzbnQgc3RhcnQuDQo+ICBJIHdvdWxkIGV4cGVj dCB0aGlzIHRvIHdvcmsgYXV0b21hZ2ljYWxseS4uLi4NCj4gIEFtIEkgbWlzc2luZyBzb21ldGhp bmcgb2J2aW91cyBoZXJlPyBEbyBJIG5lZWQgYWRkaXRpb25hbCBzb2Z0d2FyZT8NCj4gDQo+IEFu eSBoZWxwIGlzIHZlcnkgd2VsY29tZSENCj4gDQo+IFRoYW5rcywNCj4gDQo+IEpvcmdlbiBNYWFz DQo+IA0KPiBUbyBVbnN1YnNjcmliZTogc2VuZCBtYWlsIHRvIG1ham9yZG9tb0BGcmVlQlNELm9y Zw0KPiB3aXRoICJ1bnN1YnNjcmliZSBmcmVlYnNkLXF1ZXN0aW9ucyIgaW4gdGhlIGJvZHkgb2Yg dGhlIG1lc3NhZ2UNCg0KVG8gVW5zdWJzY3JpYmU6IHNlbmQgbWFpbCB0byBtYWpvcmRvbW9ARnJl ZUJTRC5vcmcNCndpdGggInVuc3Vic2NyaWJlIGZyZWVic2QtcXVlc3Rpb25zIiBpbiB0aGUgYm9k eSBvZiB0aGUgbWVzc2FnZQ0K --0__=bOPqiiJUZdWXIm36m0sTmugWDBRQ4xEmewMrm8WKRbGRmjYP6J4MzVMl-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 2: 3:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [206.29.169.15]) by hub.freebsd.org (Postfix) with ESMTP id 6E45437B403 for ; Tue, 3 Jul 2001 02:03:46 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Received: from tedm.placo.com (nat-rtr.freebsd-corp-net-guide.com [206.29.168.154]) by mail.freebsd-corp-net-guide.com (8.11.1/8.11.1) with SMTP id f6393hl31923; Tue, 3 Jul 2001 02:03:43 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: , Subject: RE: Realtek blues Date: Tue, 3 Jul 2001 02:03:42 -0700 Message-ID: <001d01c1039f$0f02a700$1401a8c0@tedm.placo.com> 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 8.5, Build 4.71.2173.0 In-Reply-To: <5e4701c102ea$fb928190$0814a8c0@netcabo.net> X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 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 you don't need to put the IP address into there, you can simply do "ifconfig rl0 media XXX" in your favorite local startup config file. Any of the ifconfig options can be passed independently of each other. Ted Mittelstaedt tedm@toybox.placo.com Author of: The FreeBSD Corporate Networker's Guide Book website: http://www.freebsd-corp-net-guide.com >-----Original Message----- >From: owner-freebsd-questions@FreeBSD.ORG >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of >lneves@netcabo.pt >Sent: Monday, July 02, 2001 4:35 AM >To: freebsd-questions@FreeBSD.ORG >Subject: Realtek blues > > > >Hello all, >I'm a newbie at FreeBSD and I'm having some trouble with my connections >speeds at home using FreeBSD 4.3 STABLE. >They are crawling ... with Linux I can get transfer speeds of about >85 Kbytes/sec, with FBSD I get about5 Kbytes/sec. >After searching the mailing list archive I track down the problem. >It seems to be related to the poor quality of my NIC. >The people who had this problem before me solved it by adding the following >line to rc.conf : > >ifconfig_rl0="inet netmask media 10baseT/UTP >mediaopt full-duplex up" > >This forces full-duplex and apparently it makes things works as they are >supposed to. >However my IP address is given to me by my ISP (trough DHCP) so it is >different each time I boot the PC. > >Is there some kind of workaround that I can do to solve this problem. > >Thanks in advance, > > >Luis Neves > >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 Jul 3 2:16:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by hub.freebsd.org (Postfix) with ESMTP id 9C87E37B401 for ; Tue, 3 Jul 2001 02:16:31 -0700 (PDT) (envelope-from sheldonh@starjuice.net) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.30 #1) id 15HMIi-0006Kl-00 for freebsd-questions@FreeBSD.org; Tue, 03 Jul 2001 11:16:56 +0200 From: Sheldon Hearn To: freebsd-questions@FreeBSD.org Subject: Tightening up ntpd Date: Tue, 03 Jul 2001 11:16:56 +0200 Message-ID: <24350.994151816@axl.seasidesoftware.co.za> Sender: owner-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, What do I do in /etc/ntp.conf to prevent hosts other than those I list with "server" from changing my time? I know how to do this with a firewall, but get the feeling from the ntp.conf(5) manual page that it could be done in there. To be honest, the ntp.conf(5) page overwhelms me a little. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 2:33:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web13305.mail.yahoo.com (web13305.mail.yahoo.com [216.136.175.41]) by hub.freebsd.org (Postfix) with SMTP id 1EAD437B401 for ; Tue, 3 Jul 2001 02:33:39 -0700 (PDT) (envelope-from gwq_uk@yahoo.com) Message-ID: <20010703093338.15409.qmail@web13305.mail.yahoo.com> Received: from [213.122.178.246] by web13305.mail.yahoo.com; Tue, 03 Jul 2001 10:33:38 BST Date: Tue, 3 Jul 2001 10:33:38 +0100 (BST) From: =?iso-8859-1?q?Greg=20Quinlan?= Reply-To: gwq_uk@yahoo.com Subject: Re: fxp NIC error! To: freebsd-questions@freebsd.org In-Reply-To: <20010702155941.A83552@nexus.root.com> 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 No! It did not fix the problem, for one of the cards. The card that it still not working is an older Intel NIC! GQ --- David Greenman wrote: > >Hi all, > > > >Does anyone know why I have one fxp type interface > >that works but the other gives these errors. > > > >I have been told it is because Plug & Play OS is > set > >to yes? Why? > > Did setting it to NO fix the problem? > The issue has to do with interrupt routing and > other BIOS related stuff. > > -DG > > David Greenman > Co-founder, The FreeBSD Project - > http://www.freebsd.org > President, TeraSolutions, Inc. - > http://www.terasolutions.com > Pave the road of life with opportunities. ____________________________________________________________ Do You Yahoo!? Get your free @yahoo.co.uk address at http://mail.yahoo.co.uk or your free @yahoo.ie address at http://mail.yahoo.ie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 2:37: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from clientmail.realtime.co.uk (simian.realtime.co.uk [194.205.134.131]) by hub.freebsd.org (Postfix) with ESMTP id 880C637B405 for ; Tue, 3 Jul 2001 02:37:02 -0700 (PDT) (envelope-from waynep@pan.realtime.co.uk) Received: from [213.52.146.196] (helo=pan.realtime.co.uk) by clientmail.realtime.co.uk with esmtp (Exim 3.20 #1) id 15HMc9-000487-01 for freebsd-questions@freebsd.org; Tue, 03 Jul 2001 10:37:01 +0100 Received: from waynep by pan.realtime.co.uk with local (Exim 3.22 #1) id 15HMbc-0000M9-00 for freebsd-questions@freebsd.org; Tue, 03 Jul 2001 10:36:28 +0100 From: Wayne Pascoe To: freebsd-questions@freebsd.org Subject: HP Autoloader Reply-To: wayne.pascoe@realtime.co.uk Date: 03 Jul 2001 10:36:27 +0100 Message-ID: <86y9q65p7o.fsf@pan.ehsrealtime.com> Lines: 36 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 Hi all, I've just installed an HP Autloader onto one of my machines and I have some questions... 1. Is there a piece of software under FreeBSD that will allow me to change tapes from the cartridge to the device ? 2. I am getting the following output at boot time : sa0 at ahc0 bus 0 target 5 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 40.000MB/s transfers (20.000MHz, offset 32, 16bit) pass1 at ahc0 bus 0 target 5 lun 1 pass1: Removable Changer SCSI-2 device pass1: 40.000MB/s transfers (20.000MHz, offset 32, 16bit) no devsw (majdev=0 bootdev=0xa0200000 I have done cd /dev sh MAKEDEV sa0 doing mt -f /dev/sa0 status gives me the following error : # mt -f /dev/sa0 status mt: /dev/sa0: Device not configured What else do I need to do to get the device to work? Thanks in advance. -- - Wayne Pascoe E-mail: wayne.pascoe@realtime.co.uk Phone : +44 (0) 20 7544 4668 Mobile: +44 (0) 788 431 1675 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 2:51: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [206.29.169.15]) by hub.freebsd.org (Postfix) with ESMTP id 61CCC37B405; Tue, 3 Jul 2001 02:50:58 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Received: from tedm.placo.com (nat-rtr.freebsd-corp-net-guide.com [206.29.168.154]) by mail.freebsd-corp-net-guide.com (8.11.1/8.11.1) with SMTP id f639oWl32037; Tue, 3 Jul 2001 02:50:32 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Alejandro A. Ramirez" , "Jonathan M. Slivko" , "Dimuthu Bandara" Cc: , "Soren Schmidt" , Subject: RE: IBM Netfinity 5000 Problem (ATA Driver Bug) Date: Tue, 3 Jul 2001 02:50:31 -0700 Message-ID: <002c01c103a5$990ae600$1401a8c0@tedm.placo.com> 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 8.5, Build 4.71.2173.0 In-Reply-To: <00c501c1031b$20b64120$d3620a0a@megared.net.mx> X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 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 You could always try reverting to the old "wd" IDE driver for your Netfinity cdrom once you get the server installed. Ted Mittelstaedt tedm@toybox.placo.com Author of: The FreeBSD Corporate Networker's Guide Book website: http://www.freebsd-corp-net-guide.com >-----Original Message----- >From: owner-freebsd-questions@FreeBSD.ORG >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Alejandro A. >Ramirez >Sent: Monday, July 02, 2001 10:19 AM >To: Jonathan M. Slivko; Dimuthu Bandara >Cc: freebsd-questions@FreeBSD.ORG; Soren Schmidt; >freebsd-bugs@FreeBSD.ORG >Subject: Re: IBM Netfinity 5000 Problem (ATA Driver Bug) > > > There is actually a bug in the ATA driver since 4.X branch came out, I >have been having this problem with 4.0, 4.1, 4.2, and 4.3, it always hangs >in there, and sometimes gives me a fatal trap, I have wrote >several times to >the author of the driver, sendeing him a boot -v, fatal traps, and all of >those things, he replied once to try a patch, but it didnt worked >and I have >never heard of him again (Im copying him in this mail). You cant use the >cdrom in the Netfinitys 5000´s, you will have to install the system with >floppy disks. > >Greetings... >Ales > >----- Original Message ----- >From: "Jonathan M. Slivko" >To: "Dimuthu Bandara" >Cc: >Sent: Saturday, June 30, 2001 6:00 PM >Subject: Re: IBM Netfinity 5000 Problem > > >> Did you burn the ISO from ftp.freebsd.org? You could have gotten a bad >> burn, thats what it looks like. -- Jonathan >> >> \|||/ >> (o o) >> /-----------------------------ooO-(_)-Ooo----------------------------\ >> | Jonathan M. Slivko E-Mail: jslivko@jslivko.org | >> | IRC Nick: optix` Backup: js43064n@pace.edu | >> | AIM/AOL: JMSNY2001 Web : http://www.jslivko.org | >> |--------------------------------------------------------------------| >> | "History teaches us that days like this are best spent in bed" | >> \--------------------------------------------------------------------/ >> >> >> On Sat, 30 Jun 2001, Dimuthu Bandara wrote: >> >> > Hi, >> > >> > I am trying to install FreeBSD 4.3 Release on IBM Netfinity 5000 >server. It >> > all went fine until the files system creation process >completes. Then it >> > gives me following error. I think it's something to do with >CD-ROM but I >> > tried with a another brand new CD-ROM drive but the result is >the same.. >> > Please help me on this matter.. >> > >> > Here is my error messages .. >> > >> > Blue screeen continues until "All Filessytems information written >> > successfully" and hangs. >> > screen 2 (alt f2) shows more information: >> > >> > Debug Generating /etc/fstab file >> > acd0:READ_TOC command timeout .. resetting >> > ata0:Resetting devices .. done >> > acd0:read data overrun 12/0 >> > acd0: READ_BIG command timeout .. resetting >> > ata0: reesetting devices .. done >> > >> > The last two messages repeat about 5 times and hangs. >> > >> > >> > >> > Could you please help me on this problem... >> > >> > Thanks a lot.. >> > >> > Dim >> > >_________________________________________________________________________ >> > Get Your Private, Free E-mail from MSN Hotmail at >http://www.hotmail.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 > > > >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 Jul 3 2:52:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from studict.student.utwente.nl (studict.student.utwente.nl [130.89.220.2]) by hub.freebsd.org (Postfix) with ESMTP id 3767E37B403 for ; Tue, 3 Jul 2001 02:52:34 -0700 (PDT) (envelope-from e.blok@ieee.org) Received: from hotrod (cal30b034.student.utwente.nl [130.89.229.21]) by studict.student.utwente.nl (8.9.3/MQT) with SMTP id LAA17283 for ; Tue, 3 Jul 2001 11:20:15 +0200 (METDST) Message-ID: <014601c103a1$80898a40$0215e50a@hotrod> From: "Eelke Blok" To: References: <20010703071757.9383.qmail@nw171.netaddress.usa.net> Subject: Re: partition problem Date: Tue, 3 Jul 2001 11:21:08 +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 From: "john kernel" > this is the firt time i am using FreeBSD operating system, but while the > instalation, i have a problem in partition.The problem is i can't distinguish > between the partiiton. [Hard drive partitioned as primary 1.5 GB Win 98, 18.5 GB Extended chopped up in NTFS 3 GB, 3 GB reserved for FreeBSD and 12 GB for data (leaving 0.5 GB unaccounted for - extended overhead?)] [...] > My question is how can i make partition for FreeBSD (like root, swap, home, > var) without sacrifice(damage) my other partition? I think the space for FreeBSD needs to be outside the extended partition. I think you should remove the space you allocated for FreeBSD from the Extended partition using Partition Magic, and leaving the space unused for that moment (*outside* the extended partition, or the FreeBSD disk partitioner won't be able to see). Then start the FreeBSD installation process and give the unused space on your hard drive to FreeBSD to play with. I think it doesn't matter where the free space is on your drive when using the latest version of FreeBSD. I'm not sure what you mean by "damaging" your other partition, but I'm pretty sure Partition Magic will allow you to remove a logical drive from the Extended partition and "shrink-wrap" the extended partion around the remaining space without affecting the data on them. Don't worry about the way the free space is divided among the various things FreeBSD puts in it, the standard settings are supposed to be pretty useful. Cheers, Eelke -- Eelke Blok, http://haywire.student.utwente.nl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 2:56:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [206.29.169.15]) by hub.freebsd.org (Postfix) with ESMTP id 4D3D937B403 for ; Tue, 3 Jul 2001 02:56:30 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Received: from tedm.placo.com (nat-rtr.freebsd-corp-net-guide.com [206.29.168.154]) by mail.freebsd-corp-net-guide.com (8.11.1/8.11.1) with SMTP id f639uSl32057; Tue, 3 Jul 2001 02:56:28 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: , Subject: RE: EnderUNIX QLDAPAdmin Date: Tue, 3 Jul 2001 02:56:27 -0700 Message-ID: <002d01c103a6$6d7abfa0$1401a8c0@tedm.placo.com> 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 8.5, Build 4.71.2173.0 In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 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 The site says they are an official mirror of FreeBSD so this statement in effect acknowledges the supremacy of the http://www.freebsd.org site. You have to give the mirrors some flexibility to make their own localization customizations. Ted Mittelstaedt tedm@toybox.placo.com Author of: The FreeBSD Corporate Networker's Guide Book website: http://www.freebsd-corp-net-guide.com >-----Original Message----- >From: owner-freebsd-questions@FreeBSD.ORG >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Otter >Sent: Monday, July 02, 2001 10:54 AM >To: freebsd-questions@FreeBSD.ORG >Subject: RE: EnderUNIX QLDAPAdmin > > >After looking at http://www.enderunix.org I felt a bit uneasy. I hope >for litigation's sake that the html for the FreeBSD web site is >released under the BSD license. >-Otter > > >> -----Original Message----- >> From: owner-freebsd-questions@FreeBSD.ORG >> [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of >> Ismail YENIGUL >> Sent: Monday, July 02, 2001 12:01 PM >> To: freebsd-questions@freebsd.org >> Subject: EnderUNIX QLDAPAdmin >> >> >> >> Hi folks, >> >> We have coded a collection of tools for manipulating LDAP >> databases that >> are used >> to hold account information for qmail users, in C++. >> >> Features: >> - create virtual domains >> - delete virtual domains >> - create virtual users >> - modify virtual users >> - change users' password, mailhost (for qmail clusters), mailquota, >> mail directory etc etc... >> - create alternate addresses for one maibox >> - create forwarding addresses for one mailbox >> - View users' information >> - Delete users from LDAP database >> - List all qmail domains >> - List all users of qmail domains >> >> >> The tools are run in command line. Here is the list of binaries: >> >> garib:~/qldapadmin-0.4.0beta# ls -l /usr/local/bin/q* >> -r-x------ 1 root wheel 31008 Jul 2 03:33 /usr/local/bin/qadddomain >> -r-x------ 1 root wheel 44154 Jul 2 03:33 /usr/local/bin/qadduser >> -r-x------ 1 root wheel 29334 Jul 2 03:33 /usr/local/bin/qdeldomain >> -r-x------ 1 root wheel 29773 Jul 2 03:33 /usr/local/bin/qdeluser >> -r-x------ 1 root wheel 26492 Jul 2 03:33 >> /usr/local/bin/qlistdomains >> -r-x------ 1 root wheel 28919 Jul 2 03:33 /usr/local/bin/qlistusers >> -r-x------ 1 root wheel 47624 Jul 2 03:33 /usr/local/bin/qmodifyuser >> -r-x------ 1 root wheel 30886 Jul 2 03:33 /usr/local/bin/qpasswd >> -r-x------ 1 root wheel 30507 Jul 2 03:33 >> /usr/local/bin/qsetmailhost >> -r-x------ 1 root wheel 30539 Jul 2 03:33 >> /usr/local/bin/qsetmsgstore >> >> QLDAPAdmin is tested on FreeBSD 4.3, Redhat Linux 7.1 , >> Solaris 8(sparc) >> >> >> You can download QLDAPAdmin from >> http://www.enderunix.org/qldapadmin/qldapadmin-0.4.0-BETA.tar.gz >> >> Web page about QLDAPAdmin is: >> http://www.enderunix.org/qldapadmin/ >> >> please send your feedback to roots@EnderUNIX.ORG >> >> bye >> >> >> Ismail YENIGUL >> http://www.enderunix.org >> http://yenigul.net >> >> >> >> >> >> 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 Tue Jul 3 2:59:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.13]) by hub.freebsd.org (Postfix) with SMTP id 341A537B401 for ; Tue, 3 Jul 2001 02:59:38 -0700 (PDT) (envelope-from roam@orbitel.bg) Received: (qmail 62592 invoked by uid 1000); 3 Jul 2001 10:04:12 -0000 Date: Tue, 3 Jul 2001 13:04:12 +0300 From: Peter Pentchev To: Ted Mittelstaedt Cc: "Alejandro A. Ramirez" , "Jonathan M. Slivko" , Dimuthu Bandara , freebsd-questions@FreeBSD.ORG, Soren Schmidt , freebsd-bugs@FreeBSD.ORG Subject: Re: IBM Netfinity 5000 Problem (ATA Driver Bug) Message-ID: <20010703130412.F28604@ringworld.oblivion.bg> Mail-Followup-To: Ted Mittelstaedt , "Alejandro A. Ramirez" , "Jonathan M. Slivko" , Dimuthu Bandara , freebsd-questions@FreeBSD.ORG, Soren Schmidt , freebsd-bugs@FreeBSD.ORG References: <00c501c1031b$20b64120$d3620a0a@megared.net.mx> <002c01c103a5$990ae600$1401a8c0@tedm.placo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <002c01c103a5$990ae600$1401a8c0@tedm.placo.com>; from tedm@toybox.placo.com on Tue, Jul 03, 2001 at 02:50:31AM -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 With 4.3-RELEASE, possibly. With 4.3-STABLE and 4.4-and-future releases, no - the 'wd' driver was discontinued. G'luck, Peter -- I had to translate this sentence into English because I could not read the original Sanskrit. On Tue, Jul 03, 2001 at 02:50:31AM -0700, Ted Mittelstaedt wrote: > You could always try reverting to the old "wd" IDE driver for your > Netfinity cdrom once you get the server installed. > > Ted Mittelstaedt tedm@toybox.placo.com > Author of: The FreeBSD Corporate Networker's Guide > Book website: http://www.freebsd-corp-net-guide.com > > > >-----Original Message----- > >From: owner-freebsd-questions@FreeBSD.ORG > >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Alejandro A. > >Ramirez > >Sent: Monday, July 02, 2001 10:19 AM > >To: Jonathan M. Slivko; Dimuthu Bandara > >Cc: freebsd-questions@FreeBSD.ORG; Soren Schmidt; > >freebsd-bugs@FreeBSD.ORG > >Subject: Re: IBM Netfinity 5000 Problem (ATA Driver Bug) > > > > > > There is actually a bug in the ATA driver since 4.X branch came out, I > >have been having this problem with 4.0, 4.1, 4.2, and 4.3, it always hangs > >in there, and sometimes gives me a fatal trap, I have wrote > >several times to > >the author of the driver, sendeing him a boot -v, fatal traps, and all of > >those things, he replied once to try a patch, but it didnt worked > >and I have > >never heard of him again (Im copying him in this mail). You cant use the > >cdrom in the Netfinitys 5000's, you will have to install the system with > >floppy disks. > > > >Greetings... > >Ales > > > >----- Original Message ----- > >From: "Jonathan M. Slivko" > >To: "Dimuthu Bandara" > >Cc: > >Sent: Saturday, June 30, 2001 6:00 PM > >Subject: Re: IBM Netfinity 5000 Problem > > > > > >> Did you burn the ISO from ftp.freebsd.org? You could have gotten a bad > >> burn, thats what it looks like. -- Jonathan > >> > >> \|||/ > >> (o o) > >> /-----------------------------ooO-(_)-Ooo----------------------------\ > >> | Jonathan M. Slivko E-Mail: jslivko@jslivko.org | > >> | IRC Nick: optix` Backup: js43064n@pace.edu | > >> | AIM/AOL: JMSNY2001 Web : http://www.jslivko.org | > >> |--------------------------------------------------------------------| > >> | "History teaches us that days like this are best spent in bed" | > >> \--------------------------------------------------------------------/ > >> > >> > >> On Sat, 30 Jun 2001, Dimuthu Bandara wrote: > >> > >> > Hi, > >> > > >> > I am trying to install FreeBSD 4.3 Release on IBM Netfinity 5000 > >server. It > >> > all went fine until the files system creation process > >completes. Then it > >> > gives me following error. I think it's something to do with > >CD-ROM but I > >> > tried with a another brand new CD-ROM drive but the result is > >the same.. > >> > Please help me on this matter.. > >> > > >> > Here is my error messages .. > >> > > >> > Blue screeen continues until "All Filessytems information written > >> > successfully" and hangs. > >> > screen 2 (alt f2) shows more information: > >> > > >> > Debug Generating /etc/fstab file > >> > acd0:READ_TOC command timeout .. resetting > >> > ata0:Resetting devices .. done > >> > acd0:read data overrun 12/0 > >> > acd0: READ_BIG command timeout .. resetting > >> > ata0: reesetting devices .. done > >> > > >> > The last two messages repeat about 5 times and hangs. > >> > > >> > > >> > > >> > Could you please help me on this problem... > >> > > >> > Thanks a lot.. > >> > > >> > Dim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 3:14:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [206.29.169.15]) by hub.freebsd.org (Postfix) with ESMTP id 4F72937B403 for ; Tue, 3 Jul 2001 03:14:15 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Received: from tedm.placo.com (nat-rtr.freebsd-corp-net-guide.com [206.29.168.154]) by mail.freebsd-corp-net-guide.com (8.11.1/8.11.1) with SMTP id f63ADnl32115; Tue, 3 Jul 2001 03:13:49 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "chen c.y." , "'FreeBSD Customer Relations'" Cc: , Subject: RE: Experience of buying FreeBSD CDs from Wind River Date: Tue, 3 Jul 2001 03:13:47 -0700 Message-ID: <003801c103a8$d91c8ac0$1401a8c0@tedm.placo.com> 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 8.5, Build 4.71.2173.0 In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 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 Not all systems will boot from a bootable cdrom disk, and not all systems that boot from bootable cdrom disks will boot from a FreeBSD bootable cdrom disk. This has been discussed on the mailing list before. Ted Mittelstaedt tedm@toybox.placo.com Author of: The FreeBSD Corporate Networker's Guide Book website: http://www.freebsd-corp-net-guide.com >-----Original Message----- >From: owner-freebsd-questions@FreeBSD.ORG >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of chen c.y. >Sent: Monday, July 02, 2001 1:37 PM >To: 'FreeBSD Customer Relations' >Cc: 'freebsd-questions@FreeBSD.ORG'; 'denise@osd.bsdi.com' >Subject: Experience of buying FreeBSD CDs from Wind River > > >Hi, > >I just want to share some experience of buying freeBSD from "Wind River". > >Last month, I purchased a set of freeBSD CD from them, and encounter some >installation problems due to the un-bootable CD. As we know, the first CD >should be bootable and lead the users through the installation once the PC >is able to be booted from CD-ROM. However, the version they provided to me >is not able to do that. I needed to make some boot floppy diskes >and did the >installation. Yes, it was successful. However, it was not what the >advertisement said!! I did complain to them and wait for 11 days so far. >However,they did not reply in term of this. > >For some new users, the bootable CD is very important and convenient for >them. > >Sorry to take your time. > >Regards, >Curtis > >P.S the following are the e-mails I sent to them. >--------------------------------------- >--------------------------------------- > >Dear Valentino > >Thank for the response! After another trial, the installation was >successful >after using bootable "floppies". However, it was not the purpose for us to >purchase the disks. We expected to have a bootable "CD", and it was printed >on the Disk 1. Somehow, we are not very satisfied, because the service we >obtain from you is not what we ordered. > >Dear Denise > >Don't you think the company should provide the right service which was >advertised? > >Regards, >Curtis > >-----Original Message----- >From: Valentino Vaschetto [mailto:logo@osd.bsdi.com] >Sent: 21 June 2001 21:41 >To: c.y.chen@bham.ac.uk >Cc: Denise Rivera >Subject: RE: BSDi/WCCDROM Order:Confirmed (fwd) > > >:1. The Disk 1 is not bootable. After trying to install on different >laptop >:and PCs, which I am sure are able to boot from the cd-rom drive, it is >:impossible to boot from Disk 1. > >This was done for a reason; because at the time of the snapshot, -CURRENT >(aka FreeBSD 5.0) was not stable and if my mind serves me correctly, it >wasn't even booting correctly. > >:2. I try the alternative way to install FreeBSD by making boot floppy >disks. >:However, the kern.flp and msfboot.flp stored in the directory /floppies >are >:of version 4.2. > >The floppies are the same, what's different is the installation packages >on the CD. > >:3. While I install the software, it even can not extract files. > >Explain more.. > >:I am not sure if the FreeBSD-5.0-current is stable. Therefore,I wonder if >:you can send me a replacement of FreeBSD-4.3-release, which was shown on >:your web site. Please help me to solve this out. The software is used for >:some ugent experiments. > >You should be able to install FreeBSD from the Toolkit. You are going to >have to contact Denise about getting that replacement (which I don't think >is possible). > >-val >WindRiver Systems; FreeBSD. > >-----Original Message----- >From: FreeBSD Customer Relations >[mailto:FreeBSDCustomerRelations@windriver.com] >Sent: 22 June 2001 09:38 >To: Curtis Chen >Subject: WindRiver/FreeBSD Transition Update > > >June 21, 2001 > >Dear Curtis Chen, > > In May 2001, Wind River, a leading provider of embedded software and > services, acquired BSDi's software business. We would like to take this > opportunity to introduce ourselves. Wind River software is used in > conjunction with the embedded, or hidden microprocessors that >make up over > 90% of all computer chips sold today. Embedded systems made up >of hardware > and software are found in numerous end products from laser printers to > automotive braking systems to aerospace applications. > > Wind River picked up two software product lines from BSDi: the >proprietary > BSD/OS and the open-source FreeBSD. By acquiring the proprietary BSD/OS, > Wind River broadened its line of commercial software solutions for the > embedded market. FreeBSD, on the other hand, is not owned by Wind River, > but managed by the open-source community. In the tradition of BSDi, and > Walnut Creek CDROM before it, Wind River intends to support the >efforts of > the FreeBSD community. > > Wind River will act as a channel for the distribution of FreeBSD >products. > This is not a commercial venture for Wind River, but rather a public > service for the community. Many of us at Wind River are or have been > FreeBSD users---notably Wind River founder and chairman Jerry >Fiddler, and > chief technical officer John Fogelin. Wind River is investing >resources to > develop and release FreeBSD products, operating retail and online sales > distribution channels, offering developer resources such as computer > hosting and infrastructure services, and providing public relations, > marketing, and events support for FreeBSD. > > In this transition, some customers have been experiencing delays and > confusion in the servicing of their orders for FreeBSD products. If you > are one of these customers, we sincerely apologize for any >frustration and > inconvenience this may have caused you. After acquiring BSDi, we have > found many problems with the old order processing system. We are >currently > working to put a new system in place. Still, this will take some time to > implement. We ask for your patience and continued support. As an interim > measure we have set up a special email address, >ordertracking@windriver.com. > Contacting us this way will ensure your question immediately reaches the > right person and will expedite a response. You can also reach us at > 1-925-691-2800 ext.3820 and from our web site at www.FreeBSDmall.com. > > Exciting new products are being developed for 2001. We look > forward to a long and satisfying relationship with the FreeBSD community. > > Sincerely, > Pauline Shulman > Senior Manager, eDevelopment > Wind River > >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 Jul 3 3:20: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from acstmp.bu.edu (acstmp.bu.edu [128.197.153.25]) by hub.freebsd.org (Postfix) with ESMTP id AB60B37B403 for ; Tue, 3 Jul 2001 03:20:02 -0700 (PDT) (envelope-from mgllghr@bu.edu) Received: from localhost (mgllghr@localhost) by acstmp.bu.edu ((8.9.3.buoit.v1.0.ACS)/) with ESMTP id GAA252640 for ; Tue, 3 Jul 2001 06:20:01 -0400 Date: Tue, 3 Jul 2001 06:20:01 -0400 (EDT) From: Gallagher To: freebsd-questions@FreeBSD.ORG Subject: RE: I Think I have a dead Athlon -Solved- In-Reply-To: <002f01c0f0b5$8cad7a60$1401a8c0@tedm.placo.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 Hey All, Well I appreciate everyone's help with this problem. I ended up purchasing an Asus K7M to replace the FIC SD11 that I had. That solved the problem. Machine runs great now. Thanks again for your help on this Off Topic subject. ~mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 3:26:31 2001 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 2629437B401 for ; Tue, 3 Jul 2001 03:26:28 -0700 (PDT) (envelope-from mwlucas@blackhelicopters.org) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id GAA85008; Tue, 3 Jul 2001 06:26:26 -0400 (EDT) (envelope-from mwlucas) Date: Tue, 3 Jul 2001 06:26:26 -0400 From: Michael Lucas To: cjclark@alum.mit.edu Cc: questions@FreeBSD.ORG Subject: Re: netstat -nr flags Message-ID: <20010703062626.A84988@blackhelicopters.org> References: <20010702204704.A83540@blackhelicopters.org> <20010702222707.H312@blossom.cjclark.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20010702222707.H312@blossom.cjclark.org>; from cristjc@earthlink.net on Mon, Jul 02, 2001 at 10:27:07PM -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 Yep, a flood of people pointed it out. I had read it a dozen times, just not seen it... in other words, "it's past your bedtime, mister" :) On Mon, Jul 02, 2001 at 10:27:07PM -0700, Crist J. Clark wrote: > On Mon, Jul 02, 2001 at 08:47:04PM -0400, Michael Lucas wrote: > > Hello, > > > > netstat -nr has a flags field. These flags are documented in some man > > page. Can anyone tell me where this is? > > > > I've read this before, and for the life of me cannot remember which > > page this is... > > Err... netstat(1)? > > 1 RTF_PROTO1 Protocol specific routing flag #1 > 2 RTF_PROTO2 Protocol specific routing flag #2 > 3 RTF_PROTO3 Protocol specific routing flag #3 > B RTF_BLACKHOLE Just discard pkts (during updates) > b RTF_BROADCAST The route represents a broadcast address > C RTF_CLONING Generate new routes on use > c RTF_PRCLONING Protocol-specified generate new routes on use > D RTF_DYNAMIC Created dynamically (by redirect) > G RTF_GATEWAY Destination requires forwarding by intermediary > H RTF_HOST Host entry (net otherwise) > L RTF_LLINFO Valid protocol to link address translation > M RTF_MODIFIED Modified dynamically (by redirect) > R RTF_REJECT Host or net unreachable > S RTF_STATIC Manually added > U RTF_UP Route usable > W RTF_WASCLONED Route was generated as a result of cloning > X RTF_XRESOLVE External daemon translates proto to link address > > -- > Crist J. Clark cjclark@alum.mit.edu -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 3:35:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailrelay2.lrz-muenchen.de (mailrelay2.lrz-muenchen.de [129.187.254.102]) by hub.freebsd.org (Postfix) with ESMTP id 15EE037B409 for ; Tue, 3 Jul 2001 03:35:54 -0700 (PDT) (envelope-from terhardt@ei.tum.de) Received: from [212.224.55.247] by mailout.lrz-muenchen.de with ESMTP for questions@FreeBSD.org; Tue, 3 Jul 2001 12:35:51 +0200 Message-Id: <3B41A115.B2821752@ei.tum.de> Date: Tue, 03 Jul 2001 12:40:21 +0200 From: Ernst Terhardt Organization: ET X-Mailer: Mozilla 4.7 [en] (X11; U; Linux 2.2.13 i686) X-Accept-Language: en MIME-Version: 1.0 To: questions@FreeBSD.org Subject: BUG report 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. Please excuse my misusing the 'questions' mail box for a bug report. I am new with FreeBSD and have not yet configured it for sending e-mail. This is what happened to me a few minutes ago when I was playing with FreeBSD: I put a RW CD of unknown contents into the drive and tried mount -t cd9660 /dev/acd0c /cdrom This had the dramatic effect of a fatal system crash (with a kernel message starting with a 'trap 12 ...' story), followed by an automatic reboot. Apparently, in the course of rebooting the root partition was somehow repaired (at least I hope so). As I had previously verified that mounting a CD with an iso9660 file system worked well, the conclusion was obvious that the effect depended on the contents of the particular CD. Indeed it turned out that it had been burnt as an audio CD. So it appears that the OS does not tolerate what I did, i.e., confusing audio and iso9660 CDs. The next thing to do would have been trying the same with a commercial audio CD. However, I refrained from that to avoid another crash possibly resulting in permanent damage of the file systems. Here comes a little information on my system: Computer: PC , 400 MHz Pentium II, SE440BX motherboard, 128 MB RAM, 2 Western Digital harddisks, 1 CDRW drive Traxdata 8432. No SCSI. The harddisks are master and slave on IDE 1, the CDRW drive is master on IDE 2. OS: FreeBSD 4.3-RELEASE, downloaded from the net. Sincerely, Ernst Terhardt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 3:46:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from relay.comm2000.it (mindseal.comm2000.it [194.133.0.6]) by hub.freebsd.org (Postfix) with ESMTP id 4F18837B403 for ; Tue, 3 Jul 2001 03:46:10 -0700 (PDT) (envelope-from massimo@datacode.it) Received: from purtroppo.local.lan ([212.97.62.126]) by relay.comm2000.it (8.11.2/MFAGMM-19990726) with ESMTP id f63Ak5P19077 for ; Tue, 3 Jul 2001 12:46:06 +0200 X-SMTP-Peer: [212.97.62.126] Received: (from nobody@localhost) by purtroppo.local.lan (8.11.4/8.11.3) id f63AhQ362490 for freebsd-questions@FreeBSD.ORG; Tue, 3 Jul 2001 12:43:26 +0200 (CEST) (envelope-from massimo@datacode.it) X-Authentication-Warning: purtroppo.local.lan: nobody set sender to massimo@datacode.it using -f To: freebsd-questions@FreeBSD.ORG Subject: SCSI bus timeout errors Message-ID: <994157006.3b41a1cee3e41@webapps.datacode.it> Date: Tue, 03 Jul 2001 12:43:26 +0200 (CEST) From: Massimo Lusetti 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 Sender: owner-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 having these kind of errors on a IBM x220 series server specially when i've a lot of disk accesses in a short time. The error are not 'fatal' cause the system don't crash nor the application, so i'm quite fine but i cannot understand what these messages are. I've tried to change the cable and termination but the messages still here. Any hint is appreciated. -------- SYS -------- 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-STABLE #0: Sat Jun 16 12:28:37 CEST 2001 root@purtroppo.local.lan:/usr/obj/usr/src/sys/X220BSD Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (799.62-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x686 Stepping = 6 Features=0x383fbff real memory = 268357632 (262068K bytes) config> di pcic0 No such device: pcic0 Invalid command or syntax. Type `?' for help. 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 = 258146304 (252096K bytes) Preloaded elf kernel "kernel" at 0xc0310000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc031009c. Preloaded elf module "splash_bmp.ko" at 0xc03100ec. Preloaded splash_image_data "/boot/splash.bmp" at 0xc0310190. Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: at 1.0 fxp0: port 0x2000-0x203f mem 0xfea00000- 0xfeafffff,0xfeb7f000-0xfeb7ffff irq 11 at device 2.0 on pci0 fxp0: Ethernet address 00:02:55:d4:0b:49 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto isab0: at device 15.0 on pci0 isa0: on isab0 atapci0: port 0x700-0x70f at device 15.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 pci0: at 15.2 irq 10 pcib1: on motherboard pci1: on pcib1 ahc0: port 0x2100-0x21ff mem 0xeffff000- 0xefffffff irq 9 at device 3.0 on pci1 aic7892: Wide Channel A, SCSI Id=7, 32/255 SCBs fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode lpt0: on ppbus0 lpt0: Interrupt-driven port acd0: CDROM at ata0-master using PIO4 Waiting 5 seconds for SCSI devices to settle Mounting root from ufs:/dev/da0s1a da0 at ahc0 bus 0 target 4 lun 0 da0: Fixed Direct Access SCSI-3 device da0: 160.000MB/s transfers (80.000MHz, offset 63, 16bit), Tagged Queueing Enabled da0: 17501MB (35843670 512 byte sectors: 255H 63S/T 2231C) da1 at ahc0 bus 0 target 5 lun 0 da1: Fixed Direct Access SCSI-3 device da1: 160.000MB/s transfers (80.000MHz, offset 63, 16bit), Tagged Queueing Enabled da1: 17501MB (35843670 512 byte sectors: 255H 63S/T 2231C) da2 at ahc0 bus 0 target 6 lun 0 da2: Fixed Direct Access SCSI-3 device da2: 160.000MB/s transfers (80.000MHz, offset 63, 16bit), Tagged Queueing Enabled da2: 17501MB (35843670 512 byte sectors: 255H 63S/T 2231C) -------- SYS END -------- -------- LOG -------- > (da1:ahc0:0:5:0): SCB 0x8a - timed out while idle, SEQADDR == 0x8 > STACK == 0x3, 0x17a, 0x164, 0x0 > SXFRCTL0 == 0x80 > ahc0: Dumping Card State at SEQADDR 0x8 > SCSISEQ = 0x12, SBLKCTL = 0xa, SSTAT0 0x0 > SCB count = 150 > Kernel NEXTQSCB = 124 > Card NEXTQSCB = 124 > QINFIFO entries: > Waiting Queue entries: > Disconnected Queue entries: 12:63 19:0 2:67 22:5 11:110 1:76 18:55 6:139 5:6 0:97 15:127 24:81 7:106 3:126 23:121 9:32 17:120 29:58 13:68 25:111 14:92 27:33 20:135 28:17 8:4 21:39 10:72 16:12 31:129 30:14 4:19 26:138 > QOUTFIFO entries: > Sequencer Free SCB List: > Pending list: 63 80 96 115 36 85 123 35 1 60 107 21 99 86 71 73 95 42 50 51 98 100 41 38 133 29 131 20 87 0 90 67 103 16 11 83 5 101 110 2 40 45 76 37 55 122 15 109 139 6 97 127 81 106 126 121 32 120 58 68 111 8 92 119 33 135 17 18 4 39 72 12 129 9 46 25 91 70 93 14 19 138 > Kernel Free SCB list: 108 53 130 137 113 78 114 84 116 117 44 74 82 148 22 13 64 69 66 149 10 134 52 102 56 61 62 112 65 94 48 118 104 26 24 31 43 54 132 27 57 47 105 3 23 125 75 136 77 79 7 34 59 30 88 49 28 128 89 147 146 145 144 143 142 141 140 > sg[0] - Addr 0x7c6a000 : Length 4096 > sg[1] - Addr 0x53ef000 : Length 4096 > (da1:ahc0:0:5:0): Queuing a BDR SCB > (da1:ahc0:0:5:0): Bus Device Reset Message Sent > (da1:ahc0:0:5:0): no longer in timeout, status = 34b > ahc0: Bus Device Reset on A:5. 57 SCBs aborted > (da0:ahc0:0:4:0): SCB 0x50 - timed out while idle, SEQADDR == 0x8 > STACK == 0x3, 0x10e, 0x164, 0xed > SXFRCTL0 == 0x80 > ahc0: Dumping Card State at SEQADDR 0x8 > SCSISEQ = 0x12, SBLKCTL = 0xa, SSTAT0 0x0 > SCB count = 150 > Kernel NEXTQSCB = 14 > Card NEXTQSCB = 14 > QINFIFO entries: > Waiting Queue entries: > Disconnected Queue entries: 0:21 7:90 29:103 5:92 25:71 15:139 6:121 9:126 16:91 23:23 3:17 27:25 12:16 26:113 30:73 10:42 28:6 20:72 14:138 19:0 22:5 11:110 1:76 18:55 > QOUTFIFO entries: > Sequencer Free SCB List: 24 2 8 21 13 31 17 4 > Pending list: 21 134 67 52 102 81 98 127 122 129 38 56 8 65 108 104 75 46 20 90 103 92 71 139 121 126 91 23 17 25 16 27 54 43 31 26 118 112 64 13 22 44 114 113 137 130 124 73 42 6 72 138 80 96 115 36 85 123 35 1 60 133 29 131 87 0 11 83 5 101 110 45 76 37 55 15 109 > Kernel Free SCB list: 40 66 149 47 97 119 62 2 33 135 68 3 120 50 18 58 19 95 93 24 10 125 69 94 57 4 105 61 12 82 53 74 111 39 132 51 116 78 70 100 32 106 9 41 148 117 84 63 107 99 48 86 136 77 79 7 34 59 30 88 49 28 128 89 147 146 145 144 143 142 141 140 > sg[0] - Addr 0xedcc000 : Length 4096 > sg[1] - Addr 0x676d000 : Length 4096 > (da0:ahc0:0:4:0): Queuing a BDR SCB > (da0:ahc0:0:4:0): Bus Device Reset Message Sent > (da0:ahc0:0:4:0): no longer in timeout, status = 34b > ahc0: Bus Device Reset on A:4. 77 SCBs aborted > (da1:ahc0:0:5:0): SCB 0x6a - timed out while idle, SEQADDR == 0x8 > STACK == 0x3, 0x10e, 0x164, 0xed > SXFRCTL0 == 0x80 > ahc0: Dumping Card State at SEQADDR 0x8 > SCSISEQ = 0x12, SBLKCTL = 0xa, SSTAT0 0x0 > SCB count = 150 > Kernel NEXTQSCB = 56 > Card NEXTQSCB = 56 > QINFIFO entries: > Waiting Queue entries: > Disconnected Queue entries: 5:16 7:69 14:78 25:36 17:61 16:123 12:96 6:109 3:76 24:6 21:13 29:148 10:125 23:14 26:136 20:114 22:108 31:134 18:40 11:74 19:139 0:106 > QOUTFIFO entries: > Sequencer Free SCB List: 9 15 30 1 28 27 4 2 13 8 > Pending list: 16 69 78 36 61 123 96 109 76 6 13 148 125 14 136 114 108 134 40 74 139 106 > Kernel Free SCB list: 23 131 115 122 92 62 70 11 103 66 2 35 9 71 117 126 32 93 137 118 95 87 38 97 113 90 37 80 60 100 149 112 1 25 132 41 43 42 84 55 15 85 44 110 47 65 81 135 67 26 24 27 20 127 99 12 46 98 116 33 58 39 91 86 119 72 50 83 111 4 19 8 129 63 22 31 102 82 51 75 3 54 130 45 124 101 64 68 48 5 94 105 133 53 107 52 0 10 73 120 21 29 121 18 104 57 17 138 77 79 7 34 59 30 88 49 28 128 89 147 146 145 144 143 142 141 140 > sg[0] - Addr 0xb467000 : Length 4096 > sg[1] - Addr 0x2cc8000 : Length 4096 > sg[2] - Addr 0x5129000 : Length 4096 > sg[3] - Addr 0x2a8a000 : Length 4096 > sg[4] - Addr 0xabcb000 : Length 4096 > sg[5] - Addr 0x422c000 : Length 4096 > sg[6] - Addr 0x4aad000 : Length 4096 > sg[7] - Addr 0x466e000 : Length 4096 > sg[8] - Addr 0x31ef000 : Length 4096 > sg[9] - Addr 0x3b30000 : Length 4096 > (da1:ahc0:0:5:0): Queuing a BDR SCB > (da1:ahc0:0:5:0): Bus Device Reset Message Sent > (da1:ahc0:0:5:0): no longer in timeout, status = 34b > ahc0: Bus Device Reset on A:5. 22 SCBs aborted > (da1:ahc0:0:5:0): SCB 0x9 - timed out while idle, SEQADDR == 0x8 > STACK == 0x3, 0x10e, 0x164, 0xed > SXFRCTL0 == 0x80 > ahc0: Dumping Card State at SEQADDR 0x8 > SCSISEQ = 0x12, SBLKCTL = 0xa, SSTAT0 0x0 > SCB count = 150 > Kernel NEXTQSCB = 123 > Card NEXTQSCB = 123 > QINFIFO entries: > Waiting Queue entries: > Disconnected Queue entries: 29:113 18:17 14:121 28:125 23:36 25:107 1:32 5:119 4:127 24:102 2:21 12:57 13:133 7:27 15:92 6:14 0:15 8:90 31:129 19:4 20:60 11:2 16:52 30:73 27:149 10:69 9:35 17:23 21:22 22:110 3:9 > QOUTFIFO entries: > Sequencer Free SCB List: 26 > Pending list: 111 93 113 124 17 85 47 65 126 31 24 99 41 131 56 100 117 83 120 136 81 42 1 45 64 115 105 72 40 33 134 37 74 44 109 16 5 13 118 67 50 18 121 125 36 137 107 32 62 55 119 8 95 82 53 127 102 21 57 133 27 92 14 15 90 46 116 122 98 96 91 129 4 60 2 52 73 149 69 35 23 22 110 9 > Kernel Free SCB list: 20 80 78 10 132 114 25 19 97 108 94 135 148 71 87 104 3 66 6 38 48 76 54 103 130 26 106 58 101 139 112 0 86 75 12 70 43 29 61 39 68 63 11 51 84 138 77 79 7 34 59 30 88 49 28 128 89 147 146 145 144 143 142 141 140 > sg[0] - Addr 0xaf28000 : Length 4096 > sg[1] - Addr 0x8531000 : Length 4096 > (da1:ahc0:0:5:0): Queuing a BDR SCB > (da1:ahc0:0:5:0): Bus Device Reset Message Sent > (da1:ahc0:0:5:0): no longer in timeout, status = 34b > ahc0: Bus Device Reset on A:5. 84 SCBs aborted > swap_pager: indefinite wait buffer: device: #da/0x20009, blkno: 480, size: 4096 > (da1:ahc0:0:5:0): SCB 0x5 - timed out while idle, SEQADDR == 0x8 > STACK == 0x3, 0x17a, 0x164, 0xed > SXFRCTL0 == 0x80 > ahc0: Dumping Card State at SEQADDR 0x8 > SCSISEQ = 0x12, SBLKCTL = 0xa, SSTAT0 0x0 > SCB count = 150 > Kernel NEXTQSCB = 139 > Card NEXTQSCB = 139 > QINFIFO entries: > Waiting Queue entries: > Disconnected Queue entries: 31:41 18:19 16:115 30:66 29:15 19:22 26:31 11:104 5:137 23:138 25:7 21:111 12:46 1:23 4:81 22:91 27:149 0:27 20:112 2:50 8:122 24:68 15:55 3:100 9:97 6:127 14:14 13:36 17:87 28:5 > QOUTFIFO entries: > Sequencer Free SCB List: 10 7 > Pending list: 41 19 53 126 54 129 95 114 79 32 135 94 73 44 71 113 120 99 101 40 65 80 116 39 115 66 15 22 31 104 137 35 63 98 43 121 106 82 138 130 10 7 83 70 111 110 48 26 86 78 75 107 46 23 81 91 149 27 112 50 37 90 29 118 122 77 136 13 62 52 76 60 148 6 45 109 119 124 12 96 25 9 74 68 55 100 97 127 14 36 87 5 > Kernel Free SCB list: 16 17 2 47 102 3 85 132 21 61 4 103 18 134 84 56 57 69 133 131 117 67 125 58 105 93 92 51 24 11 33 38 42 0 64 123 72 8 108 20 1 34 59 30 88 49 28 128 89 147 146 145 144 143 142 141 140 > sg[0] - Addr 0x80ec000 : Length 4096 > sg[1] - Addr 0x50d000 : Length 4096 > (da1:ahc0:0:5:0): Queuing a BDR SCB > (da1:ahc0:0:5:0): Bus Device Reset Message Sent > (da1:ahc0:0:5:0): no longer in timeout, status = 34b > ahc0: Bus Device Reset on A:5. 92 SCBs aborted > swap_pager: indefinite wait buffer: device: #da/0x20009, blkno: 480, size: 4096 -------- LOG END -------- Regards. ----- Massimo Lusetti Network Department Manager url: http://www.datacode.it email: info@datacode.it ----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 4:18:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from blueyonder.co.uk (pcow034o.blueyonder.co.uk [195.188.53.122]) by hub.freebsd.org (Postfix) with ESMTP id 2E05337B403 for ; Tue, 3 Jul 2001 04:18:19 -0700 (PDT) (envelope-from jfm@blueyonder.co.uk) Received: from lexx.my.domain ([62.31.194.122]) by blueyonder.co.uk with Microsoft SMTPSVC(5.5.1877.687.68); Tue, 3 Jul 2001 12:20:33 +0100 From: John Murphy To: R Cc: questions@FreeBSD.ORG Subject: Re: 57% packet loss Date: Tue, 03 Jul 2001 12:18:18 +0100 Organization: poor Reply-To: jfm@blueyonder.co.uk Message-ID: <1d93kts47g6dlgp6vklk6u31vlo56spk61@4ax.com> References: <000701c1035f$795e8aa0$9213ba18@34gh11v2> In-Reply-To: <000701c1035f$795e8aa0$9213ba18@34gh11v2> X-Mailer: Forte Agent 1.8/32.548 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 R wrote: >hello all > >ok, first things first: I'm new, but not dumb :) Now that thats out of = the >way... > >I'm running 3.2-STABLE. I'm trying to configure my box to get on the = net. >I have a cable modem - not from "@home" - and a nic (xl0) which conects = to >it. > >I've been trying to do a few things at the same time, which has gotten = me >quite mixed up, since im learning from scratch each of the things im = trying >:) > >So, I'm gonna break my questions into the mailing list into VERY small >pieces - the first of which is: > >What sort of things should i look for when trying to determine why I'm >getting a 57% packet loss pinging hub.freebsd.org? > >I'm obviously getting online - so i guess my set-up isn't far off the = mark - >but i seem to drop/loose every other packet. for example, packets 0 and = 1 >get lost, but #2 malkes it. then #3 gets lost and 4 makes it. Shudder.. Had the same trouble myself recently. The cable modem I use has a diagnostic web server built in. If yours is similar you can probably ping its IP and if you get no packet loss there then it's likely that the problem is beyond your control. Hopefully your ISP will fix it within a week or two if you complain enough. John. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 4:24:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.squidge.com (ns1.squidge.com [195.10.252.5]) by hub.freebsd.org (Postfix) with ESMTP id 907D237B401; Tue, 3 Jul 2001 04:23:36 -0700 (PDT) (envelope-from stewart@nameless-uk.com) Received: from apollo (host217-32-160-186.hg.mdip.bt.net [217.32.160.186]) (authenticated) by mail.squidge.com (8.11.3-MySQL/8.11.2) with ESMTP id f63BNQ937002 (using TLSv1/SSLv3 with cipher RC4-MD5 (128 bits) verified NO); Tue, 3 Jul 2001 12:23:32 +0100 (BST) (envelope-from stewart@nameless-uk.com) Reply-To: From: "Stewart Morgan" To: , Subject: PANIC in FFS -- Please HELP! Date: Tue, 3 Jul 2001 12:23:55 +0100 Organization: Nameless-UK Message-ID: <007501c103b2$a9379a20$0b01000a@apollo> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0076_01C103BB.0AFC0220" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2605 Importance: Normal 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 This is a multi-part message in MIME format. ------=_NextPart_000_0076_01C103BB.0AFC0220 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi, I mailed -stable a while back (see below), but have had no reply. I'm getting reproducible crashes (on my machine at least) in ffs_blkpref() when under heavy load. This machine is supposed to be a file server and, so far, I've not got any confidence in it! Any help would be very much appreciated! Stewart. ----8<--------8<--------8<---- Hi all, I'm running -stable, cvsup'd as of yesterday (14/06/01). I've just set up a RAID-5 array using vinum on 40GB IDE drives. All went well until I tried copying data to the drive from a sharity-light mount at which point, the system panic'd! I managed to get a dump (see below), but interestingly savecore'ing to a different drive (a SCSI Seagate drive) also panic'd the machine -- kernel.GENERIC has, so far, picked the dumps up no problem, but my custom kernel just gets oh-so-close :( I remember reading a past thread; I've got two fxp's and an on-board AIC-7895, so I wondered if this might have something to do with it? Of the dumps that I've managed to recover, all of them seem to falter at ffs_blkpref, hence the subject. Please find attached a trace, dmesg, and kernel config file. I have the vmcore file(s) available, but ask if there's anything else you need and I'll see what I can do... ------=_NextPart_000_0076_01C103BB.0AFC0220 Content-Type: text/plain; name="trace.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="trace.txt" GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-freebsd"... IdlePTD 5681152 initial pcb at 4036e0 panicstr: from debugger panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0x4a fault code = supervisor read, page not present instruction pointer = 0x8:0xc02ad93b stack pointer = 0x10:0xca2d0d14 frame pointer = 0x10:0xca2d0d34 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 356 (pax) interrupt mask = none panic: from debugger panic: from debugger Uptime: 4m55s dumping to dev #da/0x20001, offset 1310976 dump 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 10 3 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 0xc01ad42e in dumpsys () .gdbinit:4: Error in sourced command file: Attempt to extract a component of a value that is not a structure. (kgdb) bt #0 0xc01ad42e in dumpsys () #1 0xc01ad0b2 in boot () #2 0xc01ad5e9 in panic () #3 0xc01568f5 in db_panic () #4 0xc0156896 in db_command () #5 0xc015695a in db_command_loop () #6 0xc01598f3 in db_trap () #7 0xc03387dc in kdb_trap () #8 0xc0348548 in trap_fatal () #9 0xc0348209 in trap_pfault () #10 0xc0347d6f in trap () #11 0xc02ad93b in ffs_blkpref () #12 0xc02b09aa in ffs_balloc () #13 0xc02bc4f2 in ffs_write () #14 0xc01f0932 in vn_write () #15 0xc01c0688 in dofilewrite () #16 0xc01c0577 in write () #17 0xc034877a in syscall2 () #18 0xc0339245 in Xint0x80_syscall () #19 0x804c0b3 in ?? () #20 0x804abc9 in ?? () #21 0x8052d65 in ?? () #22 0x80481e2 in ?? () (kgdb) ------=_NextPart_000_0076_01C103BB.0AFC0220 Content-Type: application/octet-stream; name="LAXMI.dmesg" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="LAXMI.dmesg" Copyright (c) 1992-2001 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.3-STABLE #9: Fri Jun 15 11:30:25 GMT 2001=0A= root@laxmi.bristol.squidge.com:/usr/src/sys/compile/LAXMI=0A= Timecounter "i8254" frequency 1193077 Hz=0A= CPU: Pentium II/Pentium II Xeon/Celeron (400.87-MHz 686-class CPU)=0A= Origin =3D "GenuineIntel" Id =3D 0x665 Stepping =3D 5=0A= = Features=3D0x183fbff=0A= real memory =3D 134086656 (130944K bytes)=0A= sio0: gdb debugging port=0A= avail memory =3D 125460480 (122520K bytes)=0A= Preloaded elf kernel "kernel" at 0xc0431000.=0A= ccd0-3: Concatenated disk drivers=0A= VESA: v2.0, 4096k memory, flags:0x1, mode table:0xc03bcda2 (1000022)=0A= VESA: Cirrus Logic GD-546X VGA=0A= Pentium Pro MTRR support enabled=0A= apm0: on motherboard=0A= apm: found APM BIOS v1.2, connected at v1.2=0A= npx0: on motherboard=0A= npx0: INT 16 interface=0A= pcib0: on motherboard=0A= pci0: on pcib0=0A= pcib1: at device 1.0 on = pci0=0A= pci1: on pcib1=0A= pci1: at 0.0 irq 10=0A= isab0: at device 7.0 on pci0=0A= isa0: on isab0=0A= atapci0: port 0xffa0-0xffaf at device 7.1 = on pci0=0A= ata0: at 0x1f0 irq 14 on atapci0=0A= ata1: at 0x170 irq 15 on atapci0=0A= uhci0: at device 7.2 on pci0=0A= uhci0: Invalid irq 255=0A= uhci0: Please switch on USB support and switch PNP-OS to 'No' in BIOS=0A= device_probe_and_attach: uhci0 attach returned 6=0A= intpm0: port 0x440-0x44f irq = 9 at device 7.3 on pci0=0A= intpm0: I/O mapped 440=0A= intpm0: intr IRQ 9 enabled revision 0=0A= smbus0: on intsmb0=0A= smb0: on smbus0=0A= intpm0: PM I/O mapped 400 =0A= pcib2: at device 16.0 on pci0=0A= pci2: on pcib2=0A= fxp0: port 0xdf00-0xdf3f mem = 0xfe900000-0xfe9fffff,0xfeaff000-0xfeafffff irq 11 at device 5.0 on pci2=0A= fxp0: Ethernet address 00:02:b3:2a:1d:82=0A= inphy0: on miibus0=0A= inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto=0A= fxp1: port 0xdf80-0xdf9f mem = 0xfe700000-0xfe7fffff,0xff1ff000-0xff1fffff irq 9 at device 6.0 on pci2=0A= fxp1: Ethernet address 00:90:27:34:25:b1=0A= inphy1: on miibus1=0A= inphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto=0A= ahc0: port 0xe400-0xe4ff mem = 0xfebfe000-0xfebfefff irq 10 at device 18.0 on pci0=0A= aic7895C: Wide Channel A, SCSI Id=3D7, 32/255 SCBs=0A= ahc1: port 0xe800-0xe8ff mem = 0xfebff000-0xfebfffff irq 10 at device 18.1 on pci0=0A= aic7895C: Wide Channel B, SCSI Id=3D7, 32/255 SCBs=0A= fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0=0A= fdc0: FIFO enabled, 8 bytes threshold=0A= fd0: <1440-KB 3.5" drive> on fdc0 drive 0=0A= atkbdc0: at port 0x60,0x64 on isa0=0A= atkbd0: irq 1 on atkbdc0=0A= vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0=0A= sc0: at flags 0x80 on isa0=0A= sc0: VGA <16 virtual consoles, flags=3D0x280>=0A= sio0 at port 0x3f8-0x3ff irq 4 flags 0x91 on isa0=0A= sio0: type 16550A=0A= sio1 at port 0x2f8-0x2ff irq 3 on isa0=0A= sio1: type 16550A=0A= ppc0: at port 0x378-0x37f irq 7 on isa0=0A= ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode=0A= ppc0: FIFO with 16/16/8 bytes threshold=0A= lpt0: on ppbus0=0A= lpt0: Interrupt-driven port=0A= IPv6 packet filtering initialized, default to accept, logging limited to = 100 packets/entry=0A= IP packet filtering initialized, divert enabled, rule-based forwarding = enabled, default to accept, logging limited to 100 packets/entry by = default=0A= IPsec: Initialized Security Association Processing.=0A= IP Filter: v3.4.16 initialized. Default =3D pass all, Logging =3D = enabled=0A= ad0: 39266MB [79780/16/63] at ata0-master tagged UDMA33=0A= ad2: 39266MB [79780/16/63] at ata1-master tagged UDMA33=0A= ad3: 39266MB [79780/16/63] at ata1-slave tagged UDMA33=0A= Waiting 8 seconds for SCSI devices to settle=0A= sa0 at ahc0 bus 0 target 4 lun 0=0A= sa0: Removable Sequential Access SCSI-2 = device =0A= sa0: 5.000MB/s transfers (5.000MHz, offset 8)=0A= da0 at ahc0 bus 0 target 0 lun 0=0A= da0: Fixed Direct Access SCSI-2 device =0A= da0: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing = Enabled=0A= da0: 8683MB (17783240 512 byte sectors: 255H 63S/T 1106C)=0A= Mounting root from ufs:/dev/da0s1a=0A= ------=_NextPart_000_0076_01C103BB.0AFC0220 Content-Type: application/octet-stream; name="LAXMI.dat" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="LAXMI.dat" #########################################################################= ##############=0A= #########################################################################= ##############=0A= ## Configuration file for Apollo=0A= #########################################################################= ##############=0A= #########################################################################= ##############=0A= ident LAXMI=0A= =0A= =0A= #########################################################################= ##############=0A= # Generic options=0A= #########################################################################= ##############=0A= #=0A= options CLK_USE_I8254_CALIBRATION=0A= options CLK_USE_TSC_CALIBRATION=0A= options INCLUDE_CONFIG_FILE=0A= machine i386=0A= maxusers 128=0A= =0A= =0A= #########################################################################= ##############=0A= # Single CPU options=0A= #########################################################################= ##############=0A= #=0A= cpu I686_CPU=0A= =0A= =0A= #########################################################################= ##############=0A= # SMP options...=0A= #########################################################################= ##############=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= # Optionally these may need tweaked, (defaults shown):=0A= #options NCPU=3D2 # number of CPUs=0A= #options NBUS=3D4 # number of busses=0A= #options NAPIC=3D1 # number of IO APICs=0A= #options NINTR=3D24 # number of INTs=0A= =0A= =0A= #########################################################################= ##############=0A= # File system support...=0A= #########################################################################= ##############=0A= #=0A= options FFS #Berkeley Fast Filesystem=0A= options FFS_ROOT #FFS usable as root device [keep this!]=0A= options CD9660=0A= options MSDOSFS=0A= options PROCFS=0A= options NFS #Network Filesystem=0A= options SOFTUPDATES=0A= #options PQ_CACHESIZE=3D1024 # Cache colouring=0A= =0A= =0A= #########################################################################= ##############=0A= # Kernel config options=0A= #########################################################################= ##############=0A= #=0A= options USERCONFIG #boot -c editor=0A= options VISUAL_USERCONFIG #visual boot -c editor=0A= options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!]=0A= options COMPAT_LINUX=0A= options P1003_1B #Posix P1003_1B real-time extensions=0A= options _KPOSIX_PRIORITY_SCHEDULING=0A= options _KPOSIX_VERSION=3D199309L=0A= config kernel=0A= =0A= #########################################################################= ##############=0A= # Debugging options=0A= #########################################################################= ##############=0A= #=0A= makeoptions DEBUG=3D-g=0A= options DDB=0A= #options DDB_UNATTENDED=0A= =0A= #########################################################################= ##############=0A= # Buses...=0A= #########################################################################= ##############=0A= #=0A= options AUTO_EOI_1=0A= # EOI_2 KILLS MACHINE!=0A= device isa=0A= device pci=0A= =0A= =0A= #########################################################################= ##############=0A= # Floppy drive...=0A= #########################################################################= ##############=0A= #=0A= device fdc0 at isa? port IO_FD1 irq 6 drq 2=0A= device fd0 at fdc0 drive 0=0A= =0A= =0A= #########################################################################= ##############=0A= # IDE stuff...=0A= #########################################################################= ##############=0A= #=0A= options ATA_STATIC_ID=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= =0A= =0A= #########################################################################= ##############=0A= # SCSI stuff...=0A= #########################################################################= ##############=0A= #=0A= options SCSI_DELAY=3D8000 #Be pessimistic about Joe SCSI device=0A= options AHC_ALLOW_MEMIO=0A= device ahc=0A= device scbus=0A= device da=0A= device sa=0A= device cd=0A= device pass=0A= =0A= =0A= #########################################################################= ##############=0A= # Console etc...=0A= #########################################################################= ##############=0A= #=0A= makeoptions ATKBD_DFLT_KEYMAP=3Duk.iso.kbd=0A= options UCONSOLE=0A= options ATKBD_DFLT_KEYMAP=0A= options SC_NORM_ATTR=3D"(FG_YELLOW|BG_BLACK)"=0A= options SC_NORM_REV_ATTR=3D"(FG_BLACK|BG_LIGHTGREY)"=0A= options SC_KERNEL_CONS_ATTR=3D"(FG_LIGHTRED|BG_BLACK)"=0A= options SC_KERNEL_CONS_REV_ATTR=3D"(FG_BLACK|BG_RED)"=0A= options SC_NO_CUTPASTE=0A= options SC_NO_SYSMOUSE=0A= options SC_HISTORY_SIZE=3D4096=0A= #options SC_PIXEL_MODE=0A= options VESA=0A= options XSERVER # support for X server=0A= options MSGBUF_SIZE=3D40960=0A= =0A= device atkbdc0 at isa? port IO_KBD=0A= device atkbd0 at atkbdc? irq 1=0A= device psm0 at atkbdc? irq 12=0A= device vga0 at isa? port?=0A= device vga1 at isa? port?=0A= device sc0 at isa? flags 0x80=0A= device npx0 at nexus? port IO_NPX flags 0x0 irq 13=0A= pseudo-device splash=0A= =0A= =0A= #########################################################################= ##############=0A= # Power and system management...=0A= #########################################################################= ##############=0A= #=0A= device apm0 at nexus?=0A= device smb=0A= device smbus=0A= device iicbus=0A= device intpm=0A= device iicsmb=0A= device ichsmb=0A= =0A= =0A= #########################################################################= ##############=0A= # Serial ports for serial consoles...=0A= #########################################################################= ##############=0A= #=0A= options CONSPEED=3D9600=0A= device sio0 at isa? port "IO_COM1" flags 0x91 irq 4=0A= device sio1 at isa? port "IO_COM2" irq 3=0A= =0A= =0A= #########################################################################= ##############=0A= # Paralell ports...=0A= #########################################################################= ##############=0A= #=0A= device ppc0 at isa? port? irq 7=0A= device ppbus=0A= device lpt=0A= =0A= =0A= #########################################################################= ##############=0A= # USB devices...=0A= #########################################################################= ##############=0A= #=0A= device uhci=0A= device usb=0A= device uhid=0A= device ums=0A= device umass=0A= =0A= =0A= #########################################################################= ##############=0A= # Network card...=0A= #########################################################################= ##############=0A= #=0A= device miibus=0A= device fxp=0A= =0A= =0A= #########################################################################= ##############=0A= # Firewall stuff...=0A= #########################################################################= ##############=0A= #=0A= # IP Security and tweaks=0A= options IPSEC=0A= options IPSEC_ESP=0A= options PPP_BSDCOMP=0A= options PPP_DEFLATE=0A= options TCP_DROP_SYNFIN #drop TCP packets with SYN+FIN=0A= options ICMP_BANDLIM=0A= =0A= # IPv4=0A= options INET #InterNETworking=0A= options IPFIREWALL #firewall=0A= options IPFIREWALL_VERBOSE #print information about dropped packets=0A= options IPFIREWALL_FORWARD #enable transparent proxy support=0A= options IPFIREWALL_VERBOSE_LIMIT=3D100 #limit verbosity=0A= options IPFIREWALL_DEFAULT_TO_ACCEPT #allow everything by default=0A= =0A= # IPv6=0A= options INET6 #InterNETworking=0A= options IPV6FIREWALL #firewall=0A= options IPV6FIREWALL_VERBOSE #print information about dropped = packets=0A= options IPV6FIREWALL_VERBOSE_LIMIT=3D100 #limit verbosity=0A= options IPV6FIREWALL_DEFAULT_TO_ACCEPT #allow everything by default=0A= =0A= # Misc=0A= options IPDIVERT #divert sockets=0A= options IPFILTER #kernel ipfilter support=0A= options IPFILTER_LOG #ipfilter logging=0A= =0A= =0A= #########################################################################= ##############=0A= # Pseudo devices...=0A= #########################################################################= ##############=0A= #=0A= pseudo-device loop=0A= pseudo-device ether=0A= pseudo-device gzip=0A= pseudo-device bpf 4=0A= pseudo-device vn 4=0A= pseudo-device ccd 4=0A= pseudo-device ppp 1=0A= pseudo-device tun 1=0A= pseudo-device pty 64=0A= pseudo-device gif 4=0A= pseudo-device faith 1=0A= pseudo-device stf 1=0A= pseudo-device snp 2=0A= =0A= =0A= #########################################################################= ##############=0A= # Shared system resources...=0A= #########################################################################= ##############=0A= #=0A= options SYSVSHM=0A= options SYSVMSG=0A= options SYSVSEM=0A= ------=_NextPart_000_0076_01C103BB.0AFC0220-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 4:28:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dc.cis.okstate.edu (dc.cis.okstate.edu [139.78.100.219]) by hub.freebsd.org (Postfix) with ESMTP id 2B35A37B401 for ; Tue, 3 Jul 2001 04:28:44 -0700 (PDT) (envelope-from martin@dc.cis.okstate.edu) Received: from martin (helo=dc.cis.okstate.edu) by dc.cis.okstate.edu with local-esmtp (Exim 3.13 #1) id 15HOMC-0002uz-00 for freebsd-questions@freebsd.org; Tue, 03 Jul 2001 06:28:40 -0500 To: freebsd-questions@freebsd.org Subject: Remote Installations using CDROM Date: Tue, 03 Jul 2001 06:28:39 -0500 From: Martin McCormick 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 What might be the best way to initiate the FreeBSD installation process using a serial port? As a computer user who happens to be blind, I have two choices when installing FreeBSD or any other form of UNIX on a new system. I can either grab somebody and talk them through the steps and have them tell me what the console says or I can come up with a strategy to get a serial port working as soon as possible so I can then do it myself like anybody else. The second course of action is really best because we are all busy doing something and tagging someone to watch means they aren't doing their normal job for that time. Besides, if a server should fail on a weekend or at some odd time of night, one ends up being a one-man band. I am going to be installing FreeBSD on 4 IBM Netfinity servers over the next few weeks and would like to just plug in a cable and do that task via a VT100 that has the speech synthesizer in it. Actually, my remote terminal is a P.C. containing the appropriate drivers and hardware to make it talk and also a copy of Kermit to do the VT100 emulation. The question before the group is both a question and a suggestion. The Netfinity boxes have a bootable CDROM and no floppy drive so a virgin system has no way to get started other than the CDROM. Sun work stations used to go serial the instant you turned on the power to the system with the keyboard/mouse module disconnected. It would be good if it was possible to have the P.C. look for some trick key sequence in the very first phase of the boot from CDROM which, if encountered, would activate the first serial port at, say, 9600 N, 8 and 1. The other possible solution would be to burn a CDROM that gets just enough of a kernel going to enable a serial tty so that one can then remove that CD and put in the standard FreeBSD installation disk in order to start the scripts. If that technique was done, it might even be possible to make the starter disk configure tcp/ip and come up on dhcp and register itself so that one could find it with an already-working UNIX system and telnet or ssh in to it for the rest of the installation. What are your thoughts? By the way, I hope there is always going to be a non-GUI route to installation. The present methods need only to be redirected at the earliest possible stage to be fully accessible. Any UNIX that ever goes totally GUI will have greatly compounded system maintenance problems for anybody who needs a special setup. As one tiny bit of background, there is a special VGA replacement adapter produced by ConnectCanada called the Realweasel that sends VGA text data to a serial port on the card, but the Netfinities use a large console port that combines connections for keyboard, mouse and video so I don't think one can just pull the VGA card for a few minutes and stick in the Realweasel. That particular card, when it works, can sure get you through an installation on a normal mother board using a standard CDROM, but that isn't going to work this time. This problem I describe is certainly not unique to FreeBSD. It is actually tied to the fact that 9x% of all P.C. mother boards made have no alternative at boot time to output than bringing up whatever video card is designated in the CMOS as being the display. Martin McCormick WB5AGZ Stillwater, OK OSU Center for Computing and Information Services Data Communications Group To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 4:32:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nctams01.nctldno.navy.mil (nctams01.nctldno.navy.mil [164.229.13.13]) by hub.freebsd.org (Postfix) with ESMTP id 5E86B37B405 for ; Tue, 3 Jul 2001 04:32:01 -0700 (PDT) (envelope-from LavenderB@nctldno.navy.mil) Received: by nctams01.nctldno.navy.mil with Internet Mail Service (5.5.2232.9) id ; Tue, 3 Jul 2001 06:30:00 -0500 Message-ID: <78202F9B9BB8D311846100805F577DFF274096@nctams01.nctldno.navy.mil> From: "Lavender, Ben" To: "'cjclark@alum.mit.edu'" Cc: "'freebsd-questions@freebsd.org'" Subject: RE: interface aliases and routing Date: Tue, 3 Jul 2001 06:29:59 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2232.9) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C103B3.7E759930" Sender: owner-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_01C103B3.7E759930 Content-Type: text/plain; charset="windows-1252" > > On Mon, Jul 02, 2001 at 10:28:44AM -0500, Lavender, Ben wrote: > > Like this? > > xl0: flags=8843 mtu 1500 > > inet6 fe80::210:5aff:fe28:ca1f%xl0 prefixlen 64 scopeid 0x1 > > inet 164.229.1.72 netmask 0xffffffc0 broadcast 164.229.1.127 > > inet 164.229.1.74 netmask 0xffffffff broadcast 164.229.1.74 > > ether 00:10:5a:28:ca:1f > > media: autoselect (100baseTX ) status: active > > supported media: autoselect 100baseTX 100baseTX > > 10baseT/UTP 10baseT/UTP 100baseTX > > > > This didn't work. > > What does not work? In a setup like this, an outgoing connection will > use the 164.229.1.72 address unless the application explicitly > requests 164.229.1.74 as the source address. It should be able to use > that address if it wants. Incoming connections to the machine should > reply using whatever address the incoming packets came in on. > > What is not working? 164.229.1.74 does not have connectivity to machines outside the subnet. Using dig v9 to bind to the source address of 1.74 does not get me a response from a name server on another subnet. Pinging 164.229.1.74 from another subnet does not work, nor does any tcp service. However, connectivity to other machines on the same subnet (164.229.1.64-128) works just fine. Applications using a source address of 1.72 (most of them) have no problems. I can open connections, ping, do whatever I want to 1.72 without any problem I can see. Ive also got a sizeable portion of static routes to other gateways for other networks (speaking of which, I cant find how one might add a static route to rc.conf in /etc/defaults/rc.conf, I'm currently using a shell script. Any ideas on that one?). relevent rc.conf: network_interfaces="xl0 lo0" ifconfig_xl0="inet 164.229.1.72 up netmask 255.255.255.192" defaultrouter="164.229.1.66" ifconfig_xl0_alias0="inet 164.229.1.74 up netmask 255.255.255.192" > > > > -----Original Message----- > > > From: Terry Zink [mailto:tzink@metrocon.com] > > > Sent: Monday, July 02, 2001 10:12 AM > > > To: Lavender, Ben > > > Cc: freebsd-questions@freebsd.org > > > Subject: Re: interface aliases and routing > > > > > > > > > Hrm. I believe if I;m not mistaken, that aliases on the nic > > > need to have a > > > netmask of 255.255.255.255 .. At least, that is what I need > > > to do. Might > > > wish to try that. > > > > > > > > > On Monday 02 July 2001 10:42, you wrote: > > > > I have a FreeBSD 4.2 box currently running. Im trying to > > > get interface > > > > aliases to work properly without much success. > > > > > > > > While I seemingly get the interface configured properly, I can't > > > > communicate with different subnets. The interface and the > > > alias can both > > > > communicate with other machines on the same subnet, but > > > only the 'primary' > > > > address (in this case, 1.72) will talk with other subnets. > > > > > > > > any ideas/information required? > > > > > > > > ifconfig: > > > > xl0: flags=8843 mtu 1500 > > > > inet6 fe80::210:5aff:fe28:ca1f%xl0 prefixlen 64 > scopeid 0x1 > > > > inet 164.229.1.72 netmask 0xffffffc0 broadcast > 164.229.1.127 > > > > inet 164.229.1.74 netmask 0xffffffc0 broadcast > 164.229.1.127 > > > > ether 00:10:5a:28:ca:1f > > > > media: autoselect (100baseTX ) > status: active > > > > supported media: autoselect 100baseTX > 100baseTX > > > > 10baseT/UTP 10baseT/UTP 100baseTX > -- > Crist J. Clark cjclark@alum.mit.edu > ------_=_NextPart_001_01C103B3.7E759930 Content-Type: text/html; charset="windows-1252" Content-Transfer-Encoding: quoted-printable RE: interface aliases and routing

>
> On Mon, Jul 02, 2001 at 10:28:44AM -0500, = Lavender, Ben wrote:
> > Like this?
> > xl0: = flags=3D8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu = 1500
> >     inet6 = fe80::210:5aff:fe28:ca1f%xl0 prefixlen 64 scopeid 0x1
> >     inet 164.229.1.72 = netmask 0xffffffc0 broadcast 164.229.1.127
> >     inet 164.229.1.74 = netmask 0xffffffff broadcast 164.229.1.74
> >     ether 00:10:5a:28:ca:1f =
> >     media: autoselect = (100baseTX <full-duplex>) status: active
> >     supported media: = autoselect 100baseTX <full-duplex> 100baseTX
> > 10baseT/UTP <full-duplex> = 10baseT/UTP 100baseTX <hw-loopback>
> >
> > This didn't work.
>
> What does not work? In a setup like this, an = outgoing connection will
> use the 164.229.1.72 address unless the = application explicitly
> requests 164.229.1.74 as the source address. It = should be able to use
> that address if it wants. Incoming connections = to the machine should
> reply using whatever address the incoming = packets came in on.
>
> What is not working?

164.229.1.74 does not have connectivity to machines = outside the subnet.  Using dig v9 to bind to the source address of = 1.74 does not get me a response from a name server on another = subnet.  Pinging 164.229.1.74 from another subnet does not work, = nor does any tcp service.  However, connectivity to other machines = on the same subnet (164.229.1.64-128) works just fine.

Applications using a source address of 1.72 (most of = them) have no problems.  I can open connections, ping, do whatever = I want to 1.72 without any problem I can see. 

Ive also got a sizeable portion of static routes to = other gateways for other networks (speaking of which, I cant find how = one might add a static route to rc.conf in /etc/defaults/rc.conf, I'm = currently using a shell script.  Any ideas on that one?).  =

relevent rc.conf:
network_interfaces=3D"xl0 lo0"
ifconfig_xl0=3D"inet 164.229.1.72 up netmask = 255.255.255.192"
defaultrouter=3D"164.229.1.66"
ifconfig_xl0_alias0=3D"inet 164.229.1.74 up = netmask 255.255.255.192"


>
> > > -----Original Message-----
> > > From: Terry Zink [mailto:tzink@metrocon.com]=
> > > Sent: Monday, July 02, 2001 10:12 = AM
> > > To: Lavender, Ben
> > > Cc: = freebsd-questions@freebsd.org
> > > Subject: Re: interface aliases and = routing
> > >
> > >
> > > Hrm. I believe if I;m not mistaken, = that aliases on the nic
> > > need to have a
> > > netmask of 255.255.255.255 .. At = least, that is what I need
> > > to do.  Might
> > > wish to try that. 
> > >
> > >
> > > On Monday 02 July 2001 10:42, you = wrote:
> > > > I have a FreeBSD 4.2 box = currently running.  Im trying to
> > > get interface
> > > > aliases to work properly without = much success.
> > > >
> > > > While I seemingly get the = interface configured properly, I can't
> > > > communicate with different = subnets.  The interface and the
> > > alias can both
> > > > communicate with other machines = on the same subnet, but
> > > only the 'primary'
> > > > address (in this case, 1.72) = will talk with other subnets.
> > > >
> > > > any ideas/information = required?
> > > >
> > > > ifconfig:
> > > > xl0: = flags=3D8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu = 1500
> > > > =         inet6 = fe80::210:5aff:fe28:ca1f%xl0 prefixlen 64
> scopeid 0x1
> > > > =         inet 164.229.1.72 netmask = 0xffffffc0 broadcast
> 164.229.1.127
> > > > =         inet 164.229.1.74 netmask = 0xffffffc0 broadcast
> 164.229.1.127
> > > > =         ether = 00:10:5a:28:ca:1f
> > > > =         media: autoselect (100baseTX = <full-duplex>)
> status: active
> > > > =         supported media: autoselect = 100baseTX
> <full-duplex> 100baseTX
> > > > 10baseT/UTP <full-duplex> = 10baseT/UTP 100baseTX <hw-loopback>
> --
> Crist J. = Clark           &= nbsp;           &= nbsp;   cjclark@alum.mit.edu
>

------_=_NextPart_001_01C103B3.7E759930-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 4:49:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from miraculix.wu-wien.ac.at (miraculix.wu-wien.ac.at [137.208.3.43]) by hub.freebsd.org (Postfix) with ESMTP id 4AC7137B405 for ; Tue, 3 Jul 2001 04:49:15 -0700 (PDT) (envelope-from h9400395@miraculix.wu-wien.ac.at) Received: from localhost (h9400395@localhost) by miraculix.wu-wien.ac.at (8.8.7/8.8.7) with SMTP id NAA22326 for ; emf h9400395@miraculix.wu-wien.ac.at; Tue, 3 Jul 2001 13:49:12 +0200 Date: Tue, 3 Jul 2001 13:49:12 +0200 (MES) From: Nikolaus Hiebaum To: freebsd-questions@freebsd.org Subject: minmum installation 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! How do I achieve a minumum installtion not exceeding 100MB HDD space *including* X-Windows? Which "packages" do I need to choose? Thank you! CU L8er, Nick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 5:53:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from evilfry.dyndns.org (dyn15ppp2.qala.com.sg [210.193.15.2]) by hub.freebsd.org (Postfix) with ESMTP id 9E4B737B412 for ; Tue, 3 Jul 2001 05:53:15 -0700 (PDT) (envelope-from root@evilfry.dyndns.org) Received: by evilfry.dyndns.org (Postfix, from userid 0) id 0D73B1839DC; Tue, 3 Jul 2001 20:53:57 +0800 (SGT) Content-Type: text/plain; charset="iso-8859-1" From: James Lim Reply-To: evilfry@sg.freebsd.org To: freebsd-questions@freebsd.org Subject: Network grapher? Date: Tue, 3 Jul 2001 20:53:51 +0800 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <01070320535102.96055@evilfry.dyndns.org> 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 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi all, =09I remembered coming across a software that does a graphical map of a=20 network by doing traceroutes and pings , etc, in order to graph out a=20 whole network. Anyone have any idea which software is this for=20 FreeBSD? Thanks in advance! - --=20 Regards, James Lim http://sg.freebsd.org | http://www.bsd-geeks.org -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQA/AwUBO0HAX5pTakonTMbIEQKH9gCgoqh/NlTqwwZH8QnymUrBIekCKDwAoLwk +FWDiU7LvujhY8PgcBHvOMZZ =3D/SND -----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 Tue Jul 3 6: 4:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id A373337B403 for ; Tue, 3 Jul 2001 06:04:38 -0700 (PDT) (envelope-from so@server.i-clue.de) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id PAA31084; Tue, 3 Jul 2001 15:13:59 +0200 Message-ID: <3B41C37F.CD385AA5@i-clue.de> Date: Tue, 03 Jul 2001 15:07:11 +0200 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: Nikolaus Hiebaum Cc: freebsd-questions@FreeBSD.ORG Subject: Re: minmum installation 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 Nikolaus Hiebaum schrieb: > > Hi! > > How do I achieve a minumum installtion not exceeding 100MB HDD space > *including* X-Windows? Which "packages" do I need to choose? Having a 100MB X system is almost impossible. I'd recommend at least 64MB RAM for any X Server, and at least double that number for swap space. That's 128MB swap, without any binary. Buy another small disk. Disk space is cheap. HTH -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 6:18:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id 5989937B411 for ; Tue, 3 Jul 2001 06:18:21 -0700 (PDT) (envelope-from so@server.i-clue.de) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id PAA31217; Tue, 3 Jul 2001 15:27:42 +0200 Message-ID: <3B41C6B6.DFCD9F7A@i-clue.de> Date: Tue, 03 Jul 2001 15:20:54 +0200 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: Ernst Terhardt Cc: questions@FreeBSD.ORG Subject: Re: BUG report References: <3B41A115.B2821752@ei.tum.de> 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 Ernst Terhardt schrieb: > > Hello. Please excuse my misusing the 'questions' mail box for a bug > report. I am new with FreeBSD > and have not yet configured it for sending e-mail. This is what happened > to me a few minutes ago when > I was playing with FreeBSD: > > I put a RW CD of unknown contents into the drive and tried > > mount -t cd9660 /dev/acd0c /cdrom > > This had the dramatic effect of a fatal system crash (with a kernel > message starting with a 'trap 12 ...' > story), followed by an automatic reboot. Apparently, in the course of > rebooting the root partition was somehow repaired (at least I hope so). Me too. Checked with both scsi and atapi CD-ROMs. I just filed a problem report. I agree mounting an audio CD is a silly thing to do, but it should never, ever crash the system. Just my EUR.02 -Christoph Sold FYI: to file a problem report when e-mail is not yet configured, use the web interface at http://www.FreeBSD.org/send-pr.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 6:18:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from coconut.sycamorenet.com (coconut.sycamorenet.com [12.146.0.143]) by hub.freebsd.org (Postfix) with ESMTP id E065937B403 for ; Tue, 3 Jul 2001 06:18:40 -0700 (PDT) (envelope-from Michael.Pelletier@sycamorenet.com) Received: by coconut.sycamorenet.com with Internet Mail Service (5.5.2653.19) id ; Tue, 3 Jul 2001 09:15:12 -0400 Message-ID: <4993EB20A01FD411B22700D0B77CF68801D394DB@ash.sycamorenet.com> From: "Pelletier, Michael" To: "'questions@FreeBSD.org'" Subject: New install breaks on reboot with "Read error" Date: Tue, 3 Jul 2001 09:24:58 -0400 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 Hello, I recently built some FreeBSD machines on some Dells. Everything went well except on a older Dell (Pentium II). On my first reboot, it halted with an error of "Read error". Has anyone seen this before or know of a fix? Thanks in advance, Michael Pelletier To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 6:26:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id AEEEB37B401 for ; Tue, 3 Jul 2001 06:26:39 -0700 (PDT) (envelope-from so@server.i-clue.de) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id PAA31328; Tue, 3 Jul 2001 15:35:56 +0200 Message-ID: <3B41C8A4.C673BC15@i-clue.de> Date: Tue, 03 Jul 2001 15:29:08 +0200 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: Matthew King Cc: questions@FreeBSD.ORG Subject: Re: User Help References: <001801c1039b$df34d3c0$0200a8c0@ghostbox> 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 [Sending HTML mail is frowned upon in this mailing list.] > Matthew King schrieb: > > HI, > i was wondering if there was a way that you can make a user only look > in his own home dir not being able to look into other peoples home > dir's > or my dir's > > if there is a way please e-mail me back Have a look at chroot or jail. HTH -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 6:29:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id BA2D537B405 for ; Tue, 3 Jul 2001 06:29:45 -0700 (PDT) (envelope-from so@server.i-clue.de) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id PAA31353; Tue, 3 Jul 2001 15:39:04 +0200 Message-ID: <3B41C960.5F781C20@i-clue.de> Date: Tue, 03 Jul 2001 15:32:16 +0200 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: "Pelletier, Michael" Cc: "'questions@FreeBSD.org'" Subject: Re: New install breaks on reboot with "Read error" References: <4993EB20A01FD411B22700D0B77CF68801D394DB@ash.sycamorenet.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 "Pelletier, Michael" schrieb: > > Hello, > > I recently built some FreeBSD machines on some Dells. Everything > went well except on a older Dell (Pentium II). On my first reboot, it halted > with an error of "Read error". Has anyone seen this before or know of a fix? Happened to me once with a battered old P133. It's IDE hard disk was near death, and died in due course about a week later. Replaced the dead drive, box worked without problems for another year or so. HTH -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 6:31:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smithers.stomped.com (smithers.stomped.com [216.17.56.2]) by hub.freebsd.org (Postfix) with SMTP id 37A3837B401 for ; Tue, 3 Jul 2001 06:31:36 -0700 (PDT) (envelope-from malhavoc@stomped.com) Received: (qmail 49277 invoked by uid 1041); 3 Jul 2001 13:31:50 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 3 Jul 2001 13:31:50 -0000 Date: Tue, 3 Jul 2001 08:31:50 -0500 (CDT) From: Jason Nugent To: Subject: More on the NFS 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 Hi, folks, Yeap, I'm still fiddling with this. I've discovered even more interesting things. If you recall, I was having difficulty getting my NFS partitions to mount correctly after upgrading to the latest 4.3-STABLE. My latest experiment was to see if IPFW was causing problems, so I performed the following steps: 1. I re-cvsup'ped the latest 4.3-stable source, and created a new kernel config file called TEST that was essentially a direct copy of GENERIC. The only thing I changed was the IDENT and the MAXUSERS. 2. I did a new make buildworld and make buildkernel using my test kernel. I then performed a make installkernel with this new kernel. I did -not- perform a make installworld. 3. I rebooted the machine from my terminal server and watched, with a certain amount of glee, as it booted up with no errors. I shelled in, and made sure all my partitions were mounted. I was happy. 4. I found something quite interesting at that point. You see, I had left my old firewall rules in /etc/rc.firewall. I had also left my firewall_enable="yes" and firewall_type="client" config options in /etc/rc.conf. What surprised me, therefore, was that all my rules were loaded and active, and working (I tested my rules from various other machines, and used ipfw to add and remove them). But, I thought I had removed all IPFW support from my test kernel? It was a copy of GENERIC? So, my question is, why would my rules still be working? I realize that I had left things turned on in my config file, but I was expecting those options to cause errors since IPFW was turned off in my test kernel. Regards, Jason ---------------------- Jason Nugent Aka MalHavoc Server Programmer and Administrator S T O M P E D . C O M For PGP public key: http://malhavoc.stomped.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 6:32:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id CE57937B401 for ; Tue, 3 Jul 2001 06:32:19 -0700 (PDT) (envelope-from so@server.i-clue.de) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id PAA31375; Tue, 3 Jul 2001 15:41:17 +0200 Message-ID: <3B41C9E5.A319ADD@i-clue.de> Date: Tue, 03 Jul 2001 15:34:29 +0200 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: R Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 57% packet loss References: <000701c1035f$795e8aa0$9213ba18@34gh11v2> 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 R schrieb: > > hello all > > ok, first things first: I'm new, but not dumb :) Now that thats out of the > way... > > I'm running 3.2-STABLE. I'm trying to configure my box to get on the net. > I have a cable modem - not from "@home" - and a nic (xl0) which conects to > it. > > I've been trying to do a few things at the same time, which has gotten me > quite mixed up, since im learning from scratch each of the things im trying > :) > > So, I'm gonna break my questions into the mailing list into VERY small > pieces - the first of which is: > > What sort of things should i look for when trying to determine why I'm > getting a 57% packet loss pinging hub.freebsd.org? > > I'm obviously getting online - so i guess my set-up isn't far off the mark - > but i seem to drop/loose every other packet. for example, packets 0 and 1 > get lost, but #2 malkes it. then #3 gets lost and 4 makes it. Check your mediaopts match thos of your connection. Probably your NIC works in full duplex mode, while the cable modem expects half duplex. HTH -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 6:52:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f147.law10.hotmail.com [64.4.15.147]) by hub.freebsd.org (Postfix) with ESMTP id 6B25037B403 for ; Tue, 3 Jul 2001 06:52:57 -0700 (PDT) (envelope-from vladokorcek@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 3 Jul 2001 06:52:57 -0700 Received: from 194.138.158.164 by lw10fd.law10.hotmail.msn.com with HTTP; Tue, 03 Jul 2001 13:52:56 GMT X-Originating-IP: [194.138.158.164] From: "Vlado Korcek" To: freebsd-questions@FreeBSD.ORG Subject: DNS-client??? Date: Tue, 03 Jul 2001 13:52:56 -0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 03 Jul 2001 13:52:57.0229 (UTC) FILETIME=[76F5F3D0:01C103C7] Sender: owner-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, A have recently run a DNS Server (BIND). I've also read enough stuffs about DNS. But I've tried to find out wher are the sources of DNS-client (RESOLVER). What or where is DNS-Client? So, in which files (libraries)is the RESOLVER ??? I've already found some files, but I'm not sure that there are all files and whether those are right. So, for example : res_query.c, res_init.c, res_mkquery.c, res_send.c ... Could you help me to find out the DNS-Client files (or source code) Thanks ... with greeting Vladis _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at 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 Tue Jul 3 6:58:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.allyster.com (fw.allyster.com [194.202.29.33]) by hub.freebsd.org (Postfix) with SMTP id 452DF37B401 for ; Tue, 3 Jul 2001 06:58:30 -0700 (PDT) (envelope-from jslivko@jslivko.org) Received: (qmail 24798 invoked from network); 3 Jul 2001 14:00:56 -0000 Received: from mail.allyster.com (jslivko@194.202.29.35) by mail.allyster.com with SMTP; 3 Jul 2001 14:00:56 -0000 Date: Tue, 3 Jul 2001 15:00:56 +0100 (BST) From: "Jonathan M. Slivko" X-Sender: jslivko@localhost.localdomain To: freebsd-questions@freebsd.org Subject: difference between RELENG_4 and RELENG_4_3 in cvsup 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 had a quick question: What's the difference between RELENG_4 and RELENG_4_3? I currently have a 4.2-RELEASE system that I would like to bring up to 4.3-STABLE. How would I go about doing that with cvsup? TIA. -- Jonathan \|||/ (o o) /-----------------------------ooO-(_)-Ooo----------------------------\ | Jonathan M. Slivko E-Mail: jslivko@jslivko.org | | IRC Nick: optix` Backup: js43064n@pace.edu | | AIM/AOL: JMSNY2001 Web : http://www.jslivko.org | |--------------------------------------------------------------------| | "History teaches us that days like this are best spent in bed" | \--------------------------------------------------------------------/ =========================================================================== This email its contents and any files or images with it are intended solely for the addressee(s) and are confidential. If you have received this email in error you may not copy or use the contents, attachments or information in any way. Please destroy it and contact the sender on the number printed above, via the 4EverMail Hosting Solutions switchboard or via email return. DISCLAIMER Material contained in this email may be copyright material of 4EverMail Hosting Solutions or protected by other intellectual property rights. It may only be reproduced with the express permission of 4EverMail Hosting Solutions. 4EverMail Hosting Solutions does not accept responsibility for any changes made to this email by unauthorised parties after it was sent. Whilst 4EverMail Hosting Solutions runs antivirus software on all Internet emails it is not liable for any loss or damage caused by an infected email. The recipient is advised to run their own antivirus software. All information contained in this email has been prepared using information believed by the author to be reliable and accurate, but 4EverMail Hosting Solutions makes no warranty as to accuracy and completeness. Any opinions expressed in this email are those of the author and do not necessarily reflect the opinions of 4EverMail Hosting Solutions or its affiliates. =========================================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 7: 2: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from brisefer.cediti.be (brisefer.cediti.be [193.190.156.67]) by hub.freebsd.org (Postfix) with ESMTP id 92B5B37B405 for ; Tue, 3 Jul 2001 07:01:58 -0700 (PDT) (envelope-from Olivier.Cherrier@cediti.be) Received: by brisefer.cediti.be with Internet Mail Service (5.5.2650.21) id <3F8PL8BS>; Tue, 3 Jul 2001 16:01:07 +0200 Message-ID: From: Olivier Cherrier To: "'Jonathan M. Slivko'" , freebsd-questions@freebsd.org Subject: RE: difference between RELENG_4 and RELENG_4_3 in cvsup Date: Tue, 3 Jul 2001 16:01:06 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) 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 > >Hello, > >I had a quick question: What's the difference between RELENG_4 and >RELENG_4_3? I currently have a 4.2-RELEASE system that I would like to >bring up to 4.3-STABLE. How would I go about doing that with >cvsup? TIA. >-- Jonathan > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/anoncvs.html oc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 7: 4: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.allyster.com (fw.allyster.com [194.202.29.33]) by hub.freebsd.org (Postfix) with SMTP id D7F5437B403 for ; Tue, 3 Jul 2001 07:03:56 -0700 (PDT) (envelope-from jslivko@jslivko.org) Received: (qmail 24882 invoked from network); 3 Jul 2001 14:06:23 -0000 Received: from mail.allyster.com (jslivko@194.202.29.35) by mail.allyster.com with SMTP; 3 Jul 2001 14:06:23 -0000 Date: Tue, 3 Jul 2001 15:06:23 +0100 (BST) From: "Jonathan M. Slivko" X-Sender: jslivko@localhost.localdomain To: Olivier Cherrier Cc: freebsd-questions@freebsd.org Subject: RE: difference between RELENG_4 and RELENG_4_3 in cvsup 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 However, RELENG_4 The line of development for FreeBSD-4.X, also known as FreeBSD-STABLE. isn't very clear, what I wanted to know is can I go to 4.3-STABLE directly if I use RELENG_4 as the tree to download? -- Jonathan \|||/ (o o) /-----------------------------ooO-(_)-Ooo----------------------------\ | Jonathan M. Slivko E-Mail: jslivko@jslivko.org | | IRC Nick: optix` Backup: js43064n@pace.edu | | AIM/AOL: JMSNY2001 Web : http://www.jslivko.org | |--------------------------------------------------------------------| | "History teaches us that days like this are best spent in bed" | \--------------------------------------------------------------------/ =========================================================================== This email its contents and any files or images with it are intended solely for the addressee(s) and are confidential. If you have received this email in error you may not copy or use the contents, attachments or information in any way. Please destroy it and contact the sender on the number printed above, via the 4EverMail Hosting Solutions switchboard or via email return. DISCLAIMER Material contained in this email may be copyright material of 4EverMail Hosting Solutions or protected by other intellectual property rights. It may only be reproduced with the express permission of 4EverMail Hosting Solutions. 4EverMail Hosting Solutions does not accept responsibility for any changes made to this email by unauthorised parties after it was sent. Whilst 4EverMail Hosting Solutions runs antivirus software on all Internet emails it is not liable for any loss or damage caused by an infected email. The recipient is advised to run their own antivirus software. All information contained in this email has been prepared using information believed by the author to be reliable and accurate, but 4EverMail Hosting Solutions makes no warranty as to accuracy and completeness. Any opinions expressed in this email are those of the author and do not necessarily reflect the opinions of 4EverMail Hosting Solutions or its affiliates. =========================================================================== On Tue, 3 Jul 2001, Olivier Cherrier wrote: > > > >Hello, > > > >I had a quick question: What's the difference between RELENG_4 and > >RELENG_4_3? I currently have a 4.2-RELEASE system that I would like to > >bring up to 4.3-STABLE. How would I go about doing that with > >cvsup? TIA. > >-- Jonathan > > > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/anoncvs.html > > oc > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 7:13:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from miraculix.wu-wien.ac.at (miraculix.wu-wien.ac.at [137.208.3.43]) by hub.freebsd.org (Postfix) with ESMTP id 8F64437B409 for ; Tue, 3 Jul 2001 07:13:52 -0700 (PDT) (envelope-from h9400395@miraculix.wu-wien.ac.at) Received: from localhost (h9400395@localhost) by miraculix.wu-wien.ac.at (8.8.7/8.8.7) with SMTP id QAA466648emf h9400395@miraculix.wu-wien.ac.at; Tue, 3 Jul 2001 16:13:33 +0200 Date: Tue, 3 Jul 2001 16:13:33 +0200 (MES) From: Nikolaus Hiebaum To: Christoph Sold Cc: freebsd-questions@FreeBSD.ORG Subject: Re: minmum installation In-Reply-To: <3B41C37F.CD385AA5@i-clue.de> 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, 3 Jul 2001, Christoph Sold wrote: > > How do I achieve a minumum installtion not exceeding 100MB HDD space > > *including* X-Windows? Which "packages" do I need to choose? > > Having a 100MB X system is almost impossible. I'd recommend at least > 64MB RAM for any X Server, and at least double that number for swap > space. That's 128MB swap, without any binary. Buy another small disk. > Disk space is cheap. I have a 486, 8 MB RAM, 250 MB HDD Notebook. I managed to do an installation occupying around 70% of my HDD. Unfortunately, FreeBSD does not have a nifty de-installation manager for packages I added. Thus, how can I conventiently de-install anything I don't like anymore? CU L8er, Nick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 7:14: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from osiris.ipform.ru (osiris.ipform.ru [212.158.165.98]) by hub.freebsd.org (Postfix) with ESMTP id 176DF37B40B for ; Tue, 3 Jul 2001 07:13:59 -0700 (PDT) (envelope-from matrix@ipform.ru) Received: from wp2 (localhost.ipform.ru [127.0.0.1]) by osiris.ipform.ru (8.11.4/8.11.4) with SMTP id f63EDuv67895 for ; Tue, 3 Jul 2001 18:13:57 +0400 (MSD) (envelope-from matrix@ipform.ru) Message-ID: <004a01c103ca$662bace0$0c00a8c0@ipform.ru> From: "Artem Koutchine" To: Subject: Java development tools and environment (your experience) Date: Tue, 3 Jul 2001 18:13:50 +0400 Organization: IP Form 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.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 Hello! I got JDK1.1.8 docs and demos installed from the ports and they seem to run just fine. Now, I need to understand how to setup my development environment to start developing java applets. Also, i need all-in-one kind of doc for basic classes. I've seen such doc cut into pieces, but i'd rather have it in one big file with examples of usage. Also, i might need some kind of interface designer for applets (they are complex ones). Is there such thing? Anyway, if you are a seasoned java developer and you use FreeBSD (or other UNIX system) for java development, could you describe your development environment setup. Regards, Artem To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 7:14: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id 2EDE337B417 for ; Tue, 3 Jul 2001 07:14:01 -0700 (PDT) (envelope-from so@server.i-clue.de) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id QAA31790; Tue, 3 Jul 2001 16:22:22 +0200 Message-ID: <3B41D386.E8CB2961@i-clue.de> Date: Tue, 03 Jul 2001 16:15:34 +0200 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: "Jonathan M. Slivko" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: difference between RELENG_4 and RELENG_4_3 in cvsup 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 "Jonathan M. Slivko" schrieb: > > Hello, > > I had a quick question: What's the difference between RELENG_4 and > RELENG_4_3? I currently have a 4.2-RELEASE system that I would like to > bring up to 4.3-STABLE. RELENG_4: FreeBSD 4.3-Stable RELENG_4_3: FreeBSD 4.3-Release plus security bug fixes. > How would I go about doing that with cvsup? Either read the handbook (mentioned in an earlier reply). Short version: cd ~ cp /usr/share/examples/stable-supfile . vi stable-supfile :1,$s/CHANGE_THIS/cvsup./ ### e.g. cvsup2.de.freebsd.org :wq su Password: cvsup -g -L 2 stable-supfile HTH -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 7:21:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id 7095D37B401 for ; Tue, 3 Jul 2001 07:21:26 -0700 (PDT) (envelope-from so@server.i-clue.de) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id QAA31889; Tue, 3 Jul 2001 16:30:47 +0200 Message-ID: <3B41D57F.10077E8C@i-clue.de> Date: Tue, 03 Jul 2001 16:23:59 +0200 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: Nikolaus Hiebaum Cc: Christoph Sold , freebsd-questions@FreeBSD.ORG Subject: Re: minmum installation 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 Nikolaus Hiebaum schrieb: > > On Tue, 3 Jul 2001, Christoph Sold wrote: > > > > How do I achieve a minumum installtion not exceeding 100MB HDD space > > > *including* X-Windows? Which "packages" do I need to choose? > > > > Having a 100MB X system is almost impossible. I'd recommend at least > > 64MB RAM for any X Server, and at least double that number for swap > > space. That's 128MB swap, without any binary. Buy another small disk. > > Disk space is cheap. > > I have a 486, 8 MB RAM, 250 MB HDD Notebook. I managed to do an > installation occupying around 70% of my HDD. Unfortunately, FreeBSD does > not have a nifty de-installation manager for packages I added. Thus, how > can I conventiently de-install anything I don't like anymore? Um, don't expect this to work nicely. First, pkg_version -aI lists all installed packages. pkg_delete deletes the package. Distribution sets (from /stand/sysinstall) cannot be removed easily. I'd scan the file system for stuff you sure never want to see again. To locate space hogs, du -k / | sort -n , then decide which piece you never want to see again. HTH -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 7:24:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from 1upmc-msximc2.isdip.upmc.edu (1upmc-msximc2.isdip.upmc.edu [128.147.18.40]) by hub.freebsd.org (Postfix) with ESMTP id A9CD537B406 for ; Tue, 3 Jul 2001 07:24:31 -0700 (PDT) (envelope-from personrp@ccbh.com) Received: by 1UPMC-MSXIMC2 with Internet Mail Service (5.5.2653.19) id ; Tue, 3 Jul 2001 10:23:15 -0400 Message-ID: <46AEB8C1B628D511969200508B6FE42A668470@1upmc-msx6.isdip.upmc.edu> From: "Person, Roderick" To: questions@FreeBSD.ORG Subject: MPEG Video Conversion Tools Date: Tue, 3 Jul 2001 10:23:09 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C103CB.AF27F380" Sender: owner-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_01C103CB.AF27F380 Content-Type: text/plain; charset="koi8-r" I'm looking for a tool in Freebsd that will allow me to convert existing MPEG/AVI video file from the format to the correct format used with VCD (mpeg-2 video). for windows there is a tool called TMPGenc(http://www.tmpgenc.com) that is freeware. Anyone know of anything like this in the *nix world? Roderick P. Person Programmer II personrp@ccbh.com http://www.ccbh.com "Never anything to do in this town...... SET ME ON FIRE!" -Big Black, Kerosene ------_=_NextPart_001_01C103CB.AF27F380 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable MPEG Video Conversion Tools

I'm looking for a tool in Freebsd that will allow me = to convert existing MPEG/AVI video file from the format to the correct = format used with VCD (mpeg-2 video). for windows there is a tool called = TMPGenc(http://www.tmpgenc.com) that is freeware. Anyone = know of anything like this in the *nix world?

Roderick P. Person
Programmer II
personrp@ccbh.com
http://www.ccbh.com

"Never anything to do in this town......
 SET ME ON FIRE!"
     -Big Black, Kerosene



------_=_NextPart_001_01C103CB.AF27F380-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 7:27:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.metrocon.com (metrocon.com [198.143.64.100]) by hub.freebsd.org (Postfix) with ESMTP id D5F0E37B401 for ; Tue, 3 Jul 2001 07:27:21 -0700 (PDT) (envelope-from tzink@metrocon.com) Received: from coldstone.metrocon.com (access.metrocon.com [198.143.64.40]) by mail.metrocon.com (8.9.3/8.9.3) with SMTP id KAA01282; Tue, 3 Jul 2001 10:27:16 -0400 (EDT) (envelope-from tzink@metrocon.com) Content-Type: text/plain; charset="iso-8859-1" From: Terry Zink Organization: Metrocon Communications To: Jason Nugent Subject: Re: More on the NFS issue Date: Tue, 3 Jul 2001 10:27:18 -0400 X-Mailer: KMail [version 1.2] References: In-Reply-To: Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Message-Id: <01070310271807.22407@coldstone.metrocon.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 type kldstat Basically, the rc.conf loads a kernel module I believe. Thats all that firewall_enable entry does to my KNOWLEDGE. (ive never checked it though). On Tuesday 03 July 2001 09:31, you wrote: > Hi, folks, > > Yeap, I'm still fiddling with this. I've discovered even more interesting > things. > > If you recall, I was having difficulty getting my NFS partitions to mount > correctly after upgrading to the latest 4.3-STABLE. My latest experiment > was to see if IPFW was causing problems, so I performed the following > steps: > > 1. I re-cvsup'ped the latest 4.3-stable source, and created a new kernel > config file called TEST that was essentially a direct copy of GENERIC. > The only thing I changed was the IDENT and the MAXUSERS. > > 2. I did a new make buildworld and make buildkernel using my test kernel. > I then performed a make installkernel with this new kernel. I did -not- > perform a make installworld. > > 3. I rebooted the machine from my terminal server and watched, with a > certain amount of glee, as it booted up with no errors. I shelled in, and > made sure all my partitions were mounted. I was happy. > > 4. I found something quite interesting at that point. You see, I had > left my old firewall rules in /etc/rc.firewall. I had also left my > firewall_enable="yes" and firewall_type="client" config options in > /etc/rc.conf. What surprised me, therefore, was that all my rules were > loaded and active, and working (I tested my rules from various other > machines, and used ipfw to add and remove them). > > But, I thought I had removed all IPFW support from my test kernel? It was > a copy of GENERIC? > > So, my question is, why would my rules still be working? I realize > that I had left things turned on in my config file, but I was expecting > those options to cause errors since IPFW was turned off in my test kernel. > > Regards, > > Jason > > ---------------------- > Jason Nugent > Aka MalHavoc > Server Programmer and Administrator > > S T O M P E D . C O M > > For PGP public key: http://malhavoc.stomped.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Regards, Terry Zink System Administrator Metrocon Communications Phone: (212) 661-6800 x 1553 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 7:30:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smithers.stomped.com (smithers.stomped.com [216.17.56.2]) by hub.freebsd.org (Postfix) with SMTP id 27B2437B405 for ; Tue, 3 Jul 2001 07:30:53 -0700 (PDT) (envelope-from malhavoc@stomped.com) Received: (qmail 51108 invoked by uid 1041); 3 Jul 2001 14:31:07 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 3 Jul 2001 14:31:07 -0000 Date: Tue, 3 Jul 2001 09:31:07 -0500 (CDT) From: Jason Nugent To: Terry Zink Cc: Subject: Re: More on the NFS issue In-Reply-To: <01070310271807.22407@coldstone.metrocon.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 web1# kldstat Id Refs Address Size Name 1 1 0xc0100000 35af78 kernel I had thought that doing the make installkernel removes the old modules (moves it to modules.old) and installs new ones. Would the ipfw module get installed if it was removed from the kernel itself? Jason On Tue, 3 Jul 2001 at 9:29am, Terry Zink thought about > type kldstat > Basically, the rc.conf loads a kernel module I believe. > Thats all that firewall_enable entry does to my KNOWLEDGE. (ive never checked > it though). > > > > On Tuesday 03 July 2001 09:31, you wrote: > > Hi, folks, > > > > Yeap, I'm still fiddling with this. I've discovered even more interesting > > things. > > > > If you recall, I was having difficulty getting my NFS partitions to mount > > correctly after upgrading to the latest 4.3-STABLE. My latest experiment > > was to see if IPFW was causing problems, so I performed the following > > steps: > > > > 1. I re-cvsup'ped the latest 4.3-stable source, and created a new kernel > > config file called TEST that was essentially a direct copy of GENERIC. > > The only thing I changed was the IDENT and the MAXUSERS. > > > > 2. I did a new make buildworld and make buildkernel using my test kernel. > > I then performed a make installkernel with this new kernel. I did -not- > > perform a make installworld. > > > > 3. I rebooted the machine from my terminal server and watched, with a > > certain amount of glee, as it booted up with no errors. I shelled in, and > > made sure all my partitions were mounted. I was happy. > > > > 4. I found something quite interesting at that point. You see, I had > > left my old firewall rules in /etc/rc.firewall. I had also left my > > firewall_enable="yes" and firewall_type="client" config options in > > /etc/rc.conf. What surprised me, therefore, was that all my rules were > > loaded and active, and working (I tested my rules from various other > > machines, and used ipfw to add and remove them). > > > > But, I thought I had removed all IPFW support from my test kernel? It was > > a copy of GENERIC? > > > > So, my question is, why would my rules still be working? I realize > > that I had left things turned on in my config file, but I was expecting > > those options to cause errors since IPFW was turned off in my test kernel. > > > > Regards, > > > > Jason > > > > ---------------------- > > Jason Nugent > > Aka MalHavoc > > Server Programmer and Administrator > > > > S T O M P E D . C O M > > > > For PGP public key: http://malhavoc.stomped.com > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > -- > Regards, > > Terry Zink > System Administrator > Metrocon Communications > Phone: (212) 661-6800 x 1553 > ---------------------- Jason Nugent Aka MalHavoc Server Programmer and Administrator S T O M P E D . C O M For PGP public key: http://malhavoc.stomped.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 7:41: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailin9.bigpond.com (juicer34.bigpond.com [139.134.6.86]) by hub.freebsd.org (Postfix) with ESMTP id 74B3637B405 for ; Tue, 3 Jul 2001 07:40:56 -0700 (PDT) (envelope-from dannyho@bigpond.net.au) Received: from freebsd.freebsd.org ([139.134.4.52]) by mailin9.bigpond.com (Netscape Messaging Server 4.15) with SMTP id GFWJPP00.FR4; Wed, 4 Jul 2001 00:46:37 +1000 Received: from CPE-203-45-116-14.nsw.bigpond.net.au ([203.45.116.14]) by mail5.bigpond.com(MailRouter V2.9g 9/2388037); 04 Jul 2001 00:40:35 Content-Type: text/plain; charset="iso-8859-1" From: Danny To: Jim Freeze , Subject: Re: php install and ./configure -with-mysql Date: Wed, 4 Jul 2001 01:35:44 +0000 X-Mailer: KMail [version 1.2] References: In-Reply-To: MIME-Version: 1.0 Message-Id: <01070401354400.00441@freebsd.freebsd.org> 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 Why not install MySQL and Apache using the Ports. Checkout www.freebsd.org/ports/ for more details. On Monday 02 July 2001 15:38, Jim Freeze wrote: > Hi: > > I am following the article "Installing Apache and PHP" found in the > May/June issue of Daemon News - issue 4. In the article it says to > configure apache like so: > > ./configure -with-mysql -with-apache=../apache_1.3.20 > > I did this and received the following message at the end of the configure: > +--------------------------------------------------------------------+ > > | *** WARNING *** | > | > | You chose to compile PHP with the built-in MySQL support. If you | > | are compiling a server module, and intend to use other server | > | modules that also use MySQL (e.g, mod_auth_mysql, PHP 3.0, | > | mod_perl) you must NOT rely on PHP's built-in MySQL support, and | > | instead build it with your local MySQL support files, by adding | > | --with-mysql=/path/to/mysql to your configure line. | > > +--------------------------------------------------------------------+ > > > If I choose to use the --with-mysql=/path/to/mysql, what do I use as my > path? I installed mysql via pkg_add. Is the path the path to the > executable or header files or what? > > Thanks > > Jim > > > find /usr -name mysql\* > /usr/local/bin/mysql > /usr/local/bin/mysqladmin > /usr/local/bin/mysqldump > /usr/local/bin/mysqlimport > /usr/local/bin/mysqlshow > /usr/local/bin/mysqltest > /usr/local/bin/mysql_config > /usr/local/bin/mysql_convert_table_format > /usr/local/bin/mysql_find_rows > /usr/local/bin/mysql_fix_privilege_tables > /usr/local/bin/mysql_install_db > /usr/local/bin/mysql_setpermission > /usr/local/bin/mysql_zap > /usr/local/bin/mysqlaccess > /usr/local/bin/mysqlbinlog > /usr/local/bin/mysqlbug > /usr/local/bin/mysqld_multi > /usr/local/bin/mysqldumpslow > /usr/local/bin/mysqlhotcopy > /usr/local/etc/rc.d/mysql-server.sh > /usr/local/include/mysql > /usr/local/include/mysql/mysql.h > /usr/local/include/mysql/mysql_com.h > /usr/local/include/mysql/mysql_version.h > /usr/local/include/mysql/mysqld_error.h > /usr/local/info/mysql.info > /usr/local/lib/mysql > /usr/local/libexec/mysqld > > > > ========================================================= > Jim Freeze > jim@freeze.org > --------------------------------------------------------- > No comment at this time. > http://www.freeze.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 Tue Jul 3 7:47:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tethys.valhalla.net (tethys.valhalla.net [195.26.32.112]) by hub.freebsd.org (Postfix) with ESMTP id 7577B37B401 for ; Tue, 3 Jul 2001 07:47:44 -0700 (PDT) (envelope-from mark@tethys.valhalla.net) Received: by tethys.valhalla.net (Postfix, from userid 1001) id 445063379A; Tue, 3 Jul 2001 15:47:43 +0100 (BST) Date: Tue, 3 Jul 2001 15:47:43 +0100 From: Mark Drayton To: freebsd-questions@freebsd.org Subject: Screen, vim and backspace Message-ID: <20010703154743.A96802@tethys.valhalla.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.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 having a hard time getting screen, vim and the backspace key to work consistently. On the console all is fine. Backspace works in my shell (bash), in vim, and in bash and vim inside a screen session. When I ssh in using PuTTY with the backspace set to ^H, backspace works fine in bash but not in vim (it tries to delete text from the right of the cursor, windows 'delete' key style). Inside screen backspace works fine in bash and vim. When I ssh in using PuTTY with the backspace set to ^?, backspace wortks fine in bash and vim. Inside screen, backspace produces a ~ in bash (but manual ^H backspaces fine) and in vim it tries to delete text to the right of the cursor. My TERM is set to xterm-color when I ssh in. So at the moment backspace set to ^H is less broken, but it still doesn't quite work right. I don't care if I have to set backspace to ^H or ^?, I just want it to work consistently! Any ideas? Cheers, -- Mark Drayton 4th Wave Technologies To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 7:52:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id E45D037B403 for ; Tue, 3 Jul 2001 07:52:18 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f63Er0R27564; Tue, 3 Jul 2001 10:53:00 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Tue, 3 Jul 2001 10:53:00 -0400 (EDT) From: Joe Clarke To: Mark Drayton Cc: Subject: Re: Screen, vim and backspace In-Reply-To: <20010703154743.A96802@tethys.valhalla.net> Message-ID: <20010703105159.C27505-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 Try adding this to your ~/.vimrc: set t_kD=^V That fixed the backspace/delete problem I was having. Joe Clarke On Tue, 3 Jul 2001, Mark Drayton wrote: > Hi > > I'm having a hard time getting screen, vim and the backspace key to work > consistently. > > On the console all is fine. Backspace works in my shell (bash), in > vim, and in bash and vim inside a screen session. > > When I ssh in using PuTTY with the backspace set to ^H, backspace works > fine in bash but not in vim (it tries to delete text from the right of > the cursor, windows 'delete' key style). Inside screen backspace works > fine in bash and vim. > > When I ssh in using PuTTY with the backspace set to ^?, backspace wortks > fine in bash and vim. Inside screen, backspace produces a ~ in bash (but > manual ^H backspaces fine) and in vim it tries to delete text to the > right of the cursor. > > My TERM is set to xterm-color when I ssh in. > > So at the moment backspace set to ^H is less broken, but it still > doesn't quite work right. I don't care if I have to set backspace to ^H > or ^?, I just want it to work consistently! > > Any ideas? > > Cheers, > > -- > > Mark Drayton > 4th Wave Technologies > > 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 Jul 3 8:14:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tethys.valhalla.net (tethys.valhalla.net [195.26.32.112]) by hub.freebsd.org (Postfix) with ESMTP id 017D337B403 for ; Tue, 3 Jul 2001 08:14:33 -0700 (PDT) (envelope-from mark@tethys.valhalla.net) Received: by tethys.valhalla.net (Postfix, from userid 1001) id 27DB33379A; Tue, 3 Jul 2001 16:14:32 +0100 (BST) Date: Tue, 3 Jul 2001 16:14:32 +0100 From: Mark Drayton To: Joe Clarke Cc: freebsd-questions@freebsd.org Subject: Re: Screen, vim and backspace Message-ID: <20010703161431.A96921@tethys.valhalla.net> Mail-Followup-To: Joe Clarke , freebsd-questions@freebsd.org References: <20010703154743.A96802@tethys.valhalla.net> <20010703105159.C27505-100000@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010703105159.C27505-100000@shumai.marcuscom.com>; from marcus@marcuscom.com on Tue, Jul 03, 2001 at 10:53:00AM -0400 Sender: owner-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 Clarke (marcus@marcuscom.com) wrote: > Try adding this to your ~/.vimrc: > > set t_kD=^V > > That fixed the backspace/delete problem I was having. It worked! Thanks for the quick reply! -- Mark Drayton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 8:15: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sydney.worldwide.lemis.com (pixpat.austin.ibm.com [192.35.232.241]) by hub.freebsd.org (Postfix) with ESMTP id 4D8DC37B413 for ; Tue, 3 Jul 2001 08:14:52 -0700 (PDT) (envelope-from grog@sydney.worldwide.lemis.com) Received: (from grog@localhost) by sydney.worldwide.lemis.com (8.11.3/8.9.3) id f632B6H00359; Mon, 2 Jul 2001 21:11:06 -0500 (CDT) (envelope-from grog) Date: Mon, 2 Jul 2001 21:11:06 -0500 From: Greg Lehey To: Andrew Reid Cc: Chris Fedde , freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD and surviving unclean shutdowns Message-ID: <20010702211105.A325@sydney.worldwide.lemis.com> References: <200106260448.f5Q4m5O24533@fedde.littleton.co.us> <993530891.1187.0.camel@percible.alfred.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <993530891.1187.0.camel@percible.alfred.cx>; from andrew.reid@plug.cx on Tue, Jun 26, 2001 at 02:18:11PM +0930 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, 26 June 2001 at 14:18:11 +0930, Andrew Reid wrote: > On 25 Jun 2001 22:48:04 -0600, Chris Fedde wrote: > >> FreeBSD with softupdates turned on will usually recover well from >> a crash. Also on highly available critical systems I would not >> choose to run software raid. Better to have hardware raid running 0+1 if you >> need it or just buy big disks. With sendmail you can run multiqueue >> with symbolic links to "subqueues" on each disk. > > How 'bout Vinum? Vinum seems to outperform some hardware RAID cards. > Greg, is Vinum from a reliability point of view in high availability > servers? If you want a reply from me, please include me explicitly in the To: or Cc: headers; that will at the very least get a faster reply. Well, I don't quite understand that question. Yes, some RAID cards seem to have suboptimal performance. Vinum handles power failures quite well; Andrew and I share a power "provider", and it's had plenty of exercise. But the real issue here isn't Vinum, it's the file system. There are many areas where both FreeBSD and Linux people say "we're better than you". I don't think crash recovery is one of them. About a year ago, somebody in Germany told people at the German magazine c't that FreeBSD would always recover from an unplanned shutdown, so they went out to test it. We cringed when we read it: 180 power offs and reboots. But their verdict was, yes, FreeBSD really does survive unclean shutdowns. I suspect that they didn't check for data loss, just for metadata integrity, but that's still a far cry from what I've seen with Linux. >> Also as you know now it might be a good idea to invest in a sensaphone or >> some otherway of having your machine room tell you it is breaking > > Hmm.. I'm looking into SMS alerts now. You'll also need a generator. >> BTW I didn't realize that christmas island was 9.5 hours east. > > Christmas Island isn't, but South Australia is :-) In the winter. Greg -- 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 Jul 3 8:33:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dm3cnd.bell.ca (dm3cnd.bell.ca [198.235.69.146]) by hub.freebsd.org (Postfix) with SMTP id AA8A037B401 for ; Tue, 3 Jul 2001 08:33:13 -0700 (PDT) (envelope-from eric@ste-marie.ca) Received: from 142.117.3.162 by dm3cnd.bell.ca with SMTP (Tumbleweed MMS SMTP Relay (MMS v4.7)); Tue, 03 Jul 2001 11:33:12 -0400 X-Server-Uuid: b85f21a3-cfd1-11d3-8401-00104bf46ab7 Received: from ste-marie.ca ([142.117.85.91]) by blmc2w.qc.bell.ca ( Netscape Messaging Server 3.6) with ESMTP id AAA3908 for ; Tue, 3 Jul 2001 11:33:09 -0400 Message-ID: <3B41E645.FC740EFA@ste-marie.ca> Date: Tue, 03 Jul 2001 11:35:33 -0400 From: "Eric Ste-Marie" X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: IPSec phase1 problem X-WSS-ID: 175F3A3232576-01-01 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 WHen I try to initiate an IPSEc connection, I get the following in debug: (lifetime = 28800:28800) (lifebyte = 0:0) enctype = DES-CBC:DES-CBC (encklen = 0:0) hashtype = MD5:MD5 authmethod = pre-shared key:pre-shared key dh_group = 768-bit MODP group:768-bit MODP group acceptable proposal found. but then : ERROR: oakley.c:1150:oakley_validate_auth(): HASH mismatched Any idea where what the problem can be? Where can I get the source for oakley.c? Someone can explain to me why, since I use dh group1, oackley is used here? Is it because oakley and dh share the same groups? Note that the remote VPN is Nortel contivity agressive mode Thanks. -Eric To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 9: 1:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web9908.mail.yahoo.com (web9908.mail.yahoo.com [216.136.129.251]) by hub.freebsd.org (Postfix) with SMTP id A2CE237B401 for ; Tue, 3 Jul 2001 09:01:09 -0700 (PDT) (envelope-from jjorloff@yahoo.com) Message-ID: <20010703160109.20913.qmail@web9908.mail.yahoo.com> Received: from [206.163.153.6] by web9908.mail.yahoo.com; Tue, 03 Jul 2001 09:01:09 PDT Date: Tue, 3 Jul 2001 09:01:09 -0700 (PDT) From: Jason Orloff Subject: Install 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 purchased the 4.3 Power Pack. After a month of trying to install it, I have had no luck. I'm starting with a blank hard drive formatted in DOS. After going through the standard install and checking that my system is configured like it is in Windows, it hangs on installing newfs. Any suggestions? Jason J. Orloff __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Tue Jul 3 9:18: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pluto.cc.emory.edu (pluto.cc.emory.edu [170.140.1.23]) by hub.freebsd.org (Postfix) with ESMTP id 4B4E937B406 for ; Tue, 3 Jul 2001 09:18:02 -0700 (PDT) (envelope-from gpagnon@emory.edu) Received: from emory.edu ([170.140.25.235]) by pluto.cc.emory.edu (8.10.2/8.10.2) with ESMTP id f63GI1C24166 for ; Tue, 3 Jul 2001 12:18:01 -0400 (EDT) Message-ID: <3B41EF9D.A5ECA4A0@emory.edu> Date: Tue, 03 Jul 2001 12:15:26 -0400 From: Giuseppe Pagnoni Organization: Emory X-Mailer: Mozilla 4.7 [en] (X11; I; FreeBSD 4.3-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: staroffice 5.2 restarting setup 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 successfully managed (I think...) to install staroffice5.2 from the ports collection on freebsd4-stable box, but when I try to start the progra with the command soffice, the setup restarts again. There was a previous mail on the list on this issue, but the link it points for the solution is broken!! Any suggestions appreciated. thanks giuseppe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 9:23:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from 1upmc-msximc1.isdip.upmc.edu (1upmc-msximc1.isdip.upmc.edu [128.147.18.39]) by hub.freebsd.org (Postfix) with ESMTP id 0A6A137B401 for ; Tue, 3 Jul 2001 09:23:15 -0700 (PDT) (envelope-from personrp@ccbh.com) Received: by 1upmc-msximc1.isdip.upmc.edu with Internet Mail Service (5.5.2653.19) id ; Tue, 3 Jul 2001 12:21:58 -0400 Message-ID: <46AEB8C1B628D511969200508B6FE42A668474@1upmc-msx6.isdip.upmc.edu> From: "Person, Roderick" To: 'Giuseppe Pagnoni' , freebsd-questions@freebsd.org Subject: RE: staroffice 5.2 restarting setup Date: Tue, 3 Jul 2001 12:21:52 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C103DC.44C93510" Sender: owner-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_01C103DC.44C93510 Content-Type: text/plain; charset="iso-8859-1" Did you do the make install for the user? Roderick P. Person Programmer II Crystal Administrator personrp@ccbh.com "Get the thing straight once and for all. The policeman isn't there to create disorder. The policeman is there to perserve disorder." - Richard Daley, mayor of Chicago > -----Original Message----- > From: Giuseppe Pagnoni [mailto:gpagnon@emory.edu] > Sent: July 03, 2001 12:15 PM > To: freebsd-questions@freebsd.org > Subject: staroffice 5.2 restarting setup > > > Hi > I have successfully managed (I think...) to install staroffice5.2 from > the ports collection on freebsd4-stable box, but when I try to start > the progra with the command soffice, the setup restarts again. There > was a previous mail on the list on this issue, but the link it points > for the solution is broken!! Any suggestions appreciated. > > thanks > > giuseppe > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > ------_=_NextPart_001_01C103DC.44C93510 Content-Type: text/html; charset="iso-8859-1" RE: staroffice 5.2 restarting setup

Did you do the make install for the user?

Roderick P. Person
Programmer II
Crystal Administrator
personrp@ccbh.com

"Get the thing straight once and for all. The policeman isn't
there to create disorder. The policeman is there to perserve
disorder."
 - Richard Daley, mayor of Chicago




> -----Original Message-----
> From: Giuseppe Pagnoni [mailto:gpagnon@emory.edu]
> Sent: July 03, 2001 12:15 PM
> To: freebsd-questions@freebsd.org
> Subject: staroffice 5.2 restarting setup
>
>
> Hi
> I have successfully managed (I think...) to install staroffice5.2 from
> the ports collection on  freebsd4-stable box, but when I try to start
> the progra with the command soffice, the setup restarts again.  There
> was a previous mail on the list on this issue, but the link it points
> for the solution is broken!!  Any suggestions appreciated.
>
> thanks
>
>     giuseppe
>
>
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-questions" in the body of the message
>

------_=_NextPart_001_01C103DC.44C93510-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 9:35:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.allyster.com (fw.allyster.com [194.202.29.33]) by hub.freebsd.org (Postfix) with SMTP id D526737B401 for ; Tue, 3 Jul 2001 09:35:46 -0700 (PDT) (envelope-from jslivko@jslivko.org) Received: (qmail 461 invoked from network); 2 Jul 2001 18:51:33 -0000 Received: from mail.allyster.com (jslivko@194.202.29.35) by mail.allyster.com with SMTP; 2 Jul 2001 18:51:33 -0000 Date: Mon, 2 Jul 2001 19:51:33 +0100 (BST) From: "Jonathan M. Slivko" X-Sender: jslivko@localhost.localdomain To: Rick Sheade Cc: "'questions@FreeBSD.org'" Subject: Re: Your UK Telephone Number In-Reply-To: <8537B9D76E78D41191EB00A0C9A2B8BE0EB3BA@FSPROXY> 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 is a free product and all of the information is available at http://www.freebsd.org. Otherwise, just post your questions to the list. -- Jonathan \|||/ (o o) /-----------------------------ooO-(_)-Ooo----------------------------\ | Jonathan M. Slivko E-Mail: jslivko@jslivko.org | | IRC Nick: optix` Backup: js43064n@pace.edu | | AIM/AOL: JMSNY2001 Web : http://www.jslivko.org | |--------------------------------------------------------------------| | "History teaches us that days like this are best spent in bed" | \--------------------------------------------------------------------/ =========================================================================== This email its contents and any files or images with it are intended solely for the addressee(s) and are confidential. If you have received this email in error you may not copy or use the contents, attachments or information in any way. Please destroy it and contact the sender on the number printed above, via the 4EverMail Hosting Solutions switchboard or via email return. DISCLAIMER Material contained in this email may be copyright material of 4EverMail Hosting Solutions or protected by other intellectual property rights. It may only be reproduced with the express permission of 4EverMail Hosting Solutions. 4EverMail Hosting Solutions does not accept responsibility for any changes made to this email by unauthorised parties after it was sent. Whilst 4EverMail Hosting Solutions runs antivirus software on all Internet emails it is not liable for any loss or damage caused by an infected email. The recipient is advised to run their own antivirus software. All information contained in this email has been prepared using information believed by the author to be reliable and accurate, but 4EverMail Hosting Solutions makes no warranty as to accuracy and completeness. Any opinions expressed in this email are those of the author and do not necessarily reflect the opinions of 4EverMail Hosting Solutions or its affiliates. =========================================================================== On Mon, 2 Jul 2001, Rick Sheade wrote: > > > Hemini Complex - Stirling Way > Elstree / Borehamwood - Herts WD6 2BT > Tel : 0208 207 2000 - Fax : 0208 207 2222 > E-mail : rick.sheade@hemini.com - Web : > www.hemini.com > > _____ > > Do you have a UK Phone number we can contact to find our more abour the > Prices & availabity of your Products. Please either mail me a number so > that I can call back or if Someone can kindly call me on +44 020 8207 2000 ( > ask for Rick Sheade ) - This will be greatly appreciated > Regards > Rick > > > > > > _____ > > > This e-mail and its attachments are intended only for the use of the > individual or entity who is the intended recipient and may contain > information that is privileged, confidential and exempt from disclosure or > any type of use under applicable law. If the reader of this e-mail is not > the intended recipient, or the employee, agent or representative responsible > for delivering the e-mail to the intended recipient, you are hereby notified > that any dissemination, distribution, copying, or other use of this e-mail > is strictly prohibited. If you have received this e-mail in error, please > reply immediately to the sender and confirm of its error. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 9:42: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f257.law10.hotmail.com [64.4.14.132]) by hub.freebsd.org (Postfix) with ESMTP id 4358137B401 for ; Tue, 3 Jul 2001 09:42:06 -0700 (PDT) (envelope-from ex279@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 3 Jul 2001 09:42:06 -0700 Received: from 205.228.172.82 by lw10fd.law10.hotmail.msn.com with HTTP; Tue, 03 Jul 2001 16:42:05 GMT X-Originating-IP: [205.228.172.82] From: "EX 279" To: freebsd-questions@freebsd.org Cc: t_reed@neaclinic.com Subject: No Drives Found Date: Tue, 03 Jul 2001 11:42:05 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 03 Jul 2001 16:42:06.0120 (UTC) FILETIME=[182BD280:01C103DF] Sender: owner-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 trying to install FreeBSD on a Server running an ARO-1130U2 RAID controller. I can boot up with a DOS boot disk and it will see the virtual drive. I've FDISKed it and Formatted it and it works fine. However, when I go to install FreeBSD, it tells me that there are no drives found? Any clue as to what is going on? I am running 3 - 9G HDD SCSI HDD's in a RAID 5 config. Also, I'm having problems sending email from my registered list address. Todd Reed t_reed@neaclinic.com _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.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 Jul 3 10: 0: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id D611237B40A for ; Tue, 3 Jul 2001 09:59:55 -0700 (PDT) (envelope-from so@server.i-clue.de) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id TAA00417; Tue, 3 Jul 2001 19:09:13 +0200 Message-ID: <3B41FAA1.3F5558AC@i-clue.de> Date: Tue, 03 Jul 2001 19:02:25 +0200 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: EX 279 Cc: freebsd-questions@FreeBSD.ORG, t_reed@neaclinic.com Subject: Re: No Drives Found 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 EX 279 schrieb: > > I'm trying to install FreeBSD on a Server running an ARO-1130U2 RAID > controller. I can boot up with a DOS boot disk and it will see the virtual > drive. I've FDISKed it and Formatted it and it works fine. However, when I > go to install FreeBSD, it tells me that there are no drives found? Any clue > as to what is going on? I am running 3 - 9G HDD SCSI HDD's in a RAID 5 > config. DOS fdisk is the wrong type. You have to boot from the install CD, or the FreeBSD install disks. If the controller cannot be found after boot, you're out of luck. If you had mentioned which FreeBSD version you tried to install, I had looked up if your controller is supported. To look it up yourself, check http://www.freebsd.org/releases/4.3R/notes.html. Scroll down to section 2.1, Disk Controllers. > Also, I'm having problems sending email from my registered list address. Without an error message, detecting the cause would be witchcraft. HTH -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 10: 1: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id A0CCE37B408 for ; Tue, 3 Jul 2001 10:01:00 -0700 (PDT) (envelope-from jim@thehousleys.net) Received: (from root@localhost) by thehousleys.net (8.11.3/8.11.2) id f63H0q062277; Tue, 3 Jul 2001 13:00:52 -0400 (EDT) (envelope-from jim@thehousleys.net) Received: from thehousleys.net (baby.int.thehousleys.net [192.168.0.24]) (authenticated) by thehousleys.net (8.11.3/8.11.3) with ESMTP id f63H0np62264; Tue, 3 Jul 2001 13:00:49 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <3B41FA40.89A95F66@thehousleys.net> Date: Tue, 03 Jul 2001 13:00:48 -0400 From: James Housley X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Giuseppe Pagnoni Cc: freebsd-questions@freebsd.org Subject: Re: staroffice 5.2 restarting setup References: <3B41EF9D.A5ECA4A0@emory.edu> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------msA9D8E21241E4DEE29C9B7CE7" X-Virus-Scanned: by AMaViS perl-10 Sender: owner-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. --------------msA9D8E21241E4DEE29C9B7CE7 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Giuseppe Pagnoni wrote: > > Hi > I have successfully managed (I think...) to install staroffice5.2 from > the ports collection on freebsd4-stable box, but when I try to start > the progra with the command soffice, the setup restarts again. There > was a previous mail on the list on this issue, but the link it points > for the solution is broken!! Any suggestions appreciated. > > thanks > > giuseppe > After the install onto the system you have to do a short install of files and configuration into your directory. At the start it looks the same, but allow it to run. Jim -- /"\ ASCII Ribbon Campaign . \ / - NO HTML/RTF in e-mail . X - NO Word docs in e-mail . / \ ----------------------------------------------------------------- jeh@FreeBSD.org http://www.FreeBSD.org The Power to Serve jim@TheHousleys.Net http://www.TheHousleys.net --------------------------------------------------------------------- It's always a long day, 86400 doesn't fit into a short. --------------msA9D8E21241E4DEE29C9B7CE7 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 MIIIBwYJKoZIhvcNAQcCoIIH+DCCB/QCAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BdgwggK8MIICJaADAgECAgMDTCIwDQYJKoZIhvcNAQEEBQAwgZQxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxFDASBgNVBAcTC0R1cmJhbnZpbGxlMQ8wDQYDVQQKEwZU aGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25h bCBGcmVlbWFpbCBSU0EgMTk5OS45LjE2MB4XDTAwMDkyMTE1NDAyOVoXDTAxMDkyMTE1NDAy OVowXjEQMA4GA1UEBBMHSG91c2xleTEOMAwGA1UEKhMFSmFtZXMxFjAUBgNVBAMTDUphbWVz IEhvdXNsZXkxIjAgBgkqhkiG9w0BCQEWE2ppbUB0aGVob3VzbGV5cy5uZXQwgZ8wDQYJKoZI hvcNAQEBBQADgY0AMIGJAoGBAMvwiLzwK732uOEUqWh2yKZpO/Vz5Yfq1xn0uOxi7CZbxZRH RoNbMOOpjOKR8k8jsK9q92SERm/BQ7bpc9Hc6+n0/TpYMKBJWnpt95cm2yyHnycgHd3LJ9QP vUzvI8umjXhBMKDa32OPPEIcrqTpnf3cQTyyIjNtDJOda+cgmo4NAgMBAAGjUTBPMB4GA1Ud EQQXMBWBE2ppbUB0aGVob3VzbGV5cy5uZXQwDAYDVR0TAQH/BAIwADAfBgNVHSMEGDAWgBSI q/Fgg2ZV9ORYx0YdwGG9I9fDjDANBgkqhkiG9w0BAQQFAAOBgQBVuNZlfOrMlcz0XsGClvQu M/EusYBvbiVqwXu5HC0Gt/6JMxnK8jeYlXYTB0TO9KFreF4GvtlvOWic9gFzSUpUVssVrvZq scrmY0f9LsFq34RAftDQhqVVnCEpyLdLRRwLuisQUUtm/H/Ux89ur8m1ocwalf9CI4rlup3B owRvGTCCAxQwggJ9oAMCAQICAQswDQYJKoZIhvcNAQEEBQAwgdExCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEaMBgGA1UEChMRVGhh d3RlIENvbnN1bHRpbmcxKDAmBgNVBAsTH0NlcnRpZmljYXRpb24gU2VydmljZXMgRGl2aXNp b24xJDAiBgNVBAMTG1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBDQTErMCkGCSqGSIb3DQEJ ARYccGVyc29uYWwtZnJlZW1haWxAdGhhd3RlLmNvbTAeFw05OTA5MTYxNDAxNDBaFw0wMTA5 MTUxNDAxNDBaMIGUMQswCQYDVQQGEwJaQTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRQwEgYD VQQHEwtEdXJiYW52aWxsZTEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0 ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDE5OTkuOS4xNjCB nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAs2lal9TQFgt6tcVd6SGcI3LNEkxL937Px/vK ciT0QlKsV5Xje2F6F4Tn/XI5OJS06u1lp5IGXr3gZfYZu5R5dkw+uWhwdYQc9BF0ALwFLE8J AxcxzPRB1HLGpl3iiESwiy7ETfHw1oU+bPOVlHiRfkDpnNGNFVeOwnPlMN5G9U8CAwEAAaM3 MDUwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBRyScJzNMZV9At2coF+d/SH58ay DjANBgkqhkiG9w0BAQQFAAOBgQBrxlnpMfrptuyxA9jfcnL+kWBI6sZV3XvwZ47GYXDnbcKl N9idtxcoVgWL3Vx1b8aRkMZsZnET0BB8a5FvhuAhNi3B1+qyCa3PLW3Gg1Kb+7v+nIed/Lfp dJLkXJeu/H6syg1vcnpnLGtz9Yb5nfUAbvQdB86dnoJjKe+TCX5V3jGCAfcwggHzAgEBMIGc MIGUMQswCQYDVQQGEwJaQTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRQwEgYDVQQHEwtEdXJi YW52aWxsZTEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDE5OTkuOS4xNgIDA0wiMAkGBSsO AwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDEw NzAzMTcwMDQ5WjAjBgkqhkiG9w0BCQQxFgQUjZwSvA3jLIa8+DHap1Fr4DlkaMowUgYJKoZI hvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYFKw4DAgcwDQYIKoZI hvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYB98kDJZBJ8GS2Y8SrX UOyiilIjfZonsDVkJE3dDFLgcwVOXjpBSNjDptNpVIsjtJsYqmDslqgEH9xd9z6A8JKK3AeK 4wNp8cNKoUAbszSul7fmGVREYwbSykC9yNHXfj7kbnykkM5k9oA5ynbNQ1JByrS1j6ZWtLRD NUewnDdrAQ== --------------msA9D8E21241E4DEE29C9B7CE7-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 10:11:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f74.law9.hotmail.com [64.4.9.74]) by hub.freebsd.org (Postfix) with ESMTP id 3BBF037B405 for ; Tue, 3 Jul 2001 10:11:43 -0700 (PDT) (envelope-from justinbent@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 3 Jul 2001 10:11:42 -0700 Received: from 64.111.16.156 by lw9fd.law9.hotmail.msn.com with HTTP; Tue, 03 Jul 2001 17:11:42 GMT X-Originating-IP: [64.111.16.156] From: "Justin Bentley" To: freebsd-questions@FreeBSD.ORG Subject: Routing Internet Date: Tue, 03 Jul 2001 13:11:42 -0400 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 03 Jul 2001 17:11:42.0731 (UTC) FILETIME=[3B1D25B0:01C103E3] Sender: owner-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, The box has two NICs in it. One of them is connecting to the internet through a cable modem(ed0), the other one(ed1) i want to beable to route other computers on the network to the internet. I had found directions on the freeBSD site about changing something in the kernel config file, but I have no clue where that is or what i need to do once i get into it. Right now I have the computer able to get online and thats it, it wont route internet at all through the other one. I tried using: natd -interface ed0 But that didnt work. Before doing that I did: sysctl -w net.inet.ip.forwarding=1 Last thing, im trying to route Windows machines to the internet. If there any special software I need to do that, if so what is it. If not, what do i need to do to get this to work? -Justin Bentley _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.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 Jul 3 10:11:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from relay.unicyb.kiev.ua (neo.unicyb.kiev.ua [62.244.41.34]) by hub.freebsd.org (Postfix) with SMTP id 9C11537B403 for ; Tue, 3 Jul 2001 10:11:23 -0700 (PDT) (envelope-from to@butch.kiev.ua) Received: (qmail 50987 invoked by uid 0); 3 Jul 2001 17:34:08 -0000 Received: from unknown (HELO windoze) ([62.244.41.36]) (envelope-sender ) by 62.244.41.3 (qmail-ldap-1.03) with SMTP for ; 3 Jul 2001 17:34:08 -0000 Message-ID: <003e01bfe511$b8e78a90$2429f43e@windoze> From: "Slavik Butch" To: Subject: Penta@Net support Date: Mon, 3 Jul 2000 20:11:26 +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.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 Hello, dear FreeBSD support team! I'm an sysadmin at Kiev University Cybernetics faculty and soon we are going to buy satellite Internet access. Thus we'll have to buy a reciever and I've choosen your DVB card Pent@net. But I'm terribly disappointed, because as it appeared, this card isn't supported in FreeBSD. If You would be so kind, please let me know, if this card will be ever supported in a FreeBSD (version updates isn't a problem - I've allready instaled 4.3). Waiting for Your answer. Best regards. Slavik. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 10:12:50 2001 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 C934337B406 for ; Tue, 3 Jul 2001 10:12:48 -0700 (PDT) (envelope-from LConrad@Go2France.com) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 4D40116B6C for ; Tue, 3 Jul 2001 19:12:05 +0200 (CEST) Received: from IBM-HIRXKN66F0W.Go2France.com [195.115.185.184] by mail.Go2France.com with ESMTP (SMTPD32-6.06) id AEA47B30128; Tue, 03 Jul 2001 19:19:32 +0200 Message-Id: <5.1.0.14.0.20010703191232.00bc9de8@mail.Go2France.com> X-Sender: LConrad@Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Tue, 03 Jul 2001 19:12:51 +0200 To: freebsd-questions@freebsd.org From: Len Conrad Subject: is FreeBSD in this project? 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 http://www.internetweek.com/story/INW20010702S0004 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 Tue Jul 3 10:20:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns2.sysadmin-inc.com (ns2.sysadmin-inc.com [209.16.228.145]) by hub.freebsd.org (Postfix) with SMTP id 02CD337B401 for ; Tue, 3 Jul 2001 10:20:35 -0700 (PDT) (envelope-from peter@sysadmin-inc.com) Received: (qmail 49414 invoked by alias); 3 Jul 2001 17:20:34 -0000 Received: from unknown (HELO 98wkst) (10.10.1.70) by ns2.sysadmin-inc.com with SMTP; 3 Jul 2001 17:20:34 -0000 From: "Peter Brezny" To: Subject: asus a7v133 MB promis controller problem? Date: Tue, 3 Jul 2001 13:19:58 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.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 I'm experiencing _long_ delays in the boot process when the system get to detecting the onboard ata100 controller built into the asus a7v133 MB i'm using. are there known issues with this board and freebsd 4.3? Peter Brezny SysAdmin Services Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 10:27:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns2.sysadmin-inc.com (ns2.sysadmin-inc.com [209.16.228.145]) by hub.freebsd.org (Postfix) with SMTP id 9C1AA37B401 for ; Tue, 3 Jul 2001 10:27:29 -0700 (PDT) (envelope-from peter@sysadmin-inc.com) Received: (qmail 49518 invoked by alias); 3 Jul 2001 17:27:28 -0000 Received: from unknown (HELO 98wkst) (10.10.1.70) by ns2.sysadmin-inc.com with SMTP; 3 Jul 2001 17:27:28 -0000 From: "Peter Brezny" To: Subject: background jobs Date: Tue, 3 Jul 2001 13:26:52 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.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 I sent a job into the background, logged off from the machine, logged back in, and now typing fg or bg tells me there are no jobs in the background, yet, i know they are running since I can see them with top. How can I access those jobs again? TIA Peter Brezny SysAdmin Services Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 10:29:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smithers.stomped.com (smithers.stomped.com [216.17.56.2]) by hub.freebsd.org (Postfix) with SMTP id 0A98037B403 for ; Tue, 3 Jul 2001 10:29:26 -0700 (PDT) (envelope-from malhavoc@stomped.com) Received: (qmail 60688 invoked by uid 1041); 3 Jul 2001 17:29:37 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 3 Jul 2001 17:29:37 -0000 Date: Tue, 3 Jul 2001 12:29:37 -0500 (CDT) From: Jason Nugent To: Peter Brezny Cc: Subject: Re: background jobs 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 The short answer, is, you can't (I think). The job has lost it's controlling tty, and you can't get it back. When I want to run a job interactively and be able to log out, I usually just screen it in the background. Check out screen in the ports collection if you haven't played with it already. HTH, Jason On Tue, 3 Jul 2001 at 12:28pm, Peter Brezny thought about > I sent a job into the background, logged off from the machine, logged back > in, and now typing fg or bg tells me there are no jobs in the background, > yet, i know they are running since I can see them with top. > > How can I access those jobs again? > > TIA > > Peter Brezny > SysAdmin Services Inc. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > ---------------------- Jason Nugent Aka MalHavoc Server Programmer and Administrator S T O M P E D . C O M For PGP public key: http://malhavoc.stomped.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 10:44:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sh.stonehenge-net.com (dsl081-053-198.sfo1.dsl.speakeasy.net [64.81.53.198]) by hub.freebsd.org (Postfix) with ESMTP id CF2BC37B401 for ; Tue, 3 Jul 2001 10:44:20 -0700 (PDT) (envelope-from ben@stonehenge-net.com) Received: from stonehenge-net.com ([162.70.219.195]) by sh.stonehenge-net.com (8.9.3/8.8.7) with ESMTP id JAA21988 for ; Tue, 3 Jul 2001 09:44:55 -0400 Message-ID: <3B42045B.7030609@stonehenge-net.com> Date: Tue, 03 Jul 2001 10:43:55 -0700 From: ben User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.1+) Gecko/20010628 X-Accept-Language: en-us MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: make world without gcc 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 am building a firewall box, and would like to update it using the sourcetree i keep on my fileserver. it looks like i can turn off most of the things i dont want built (perl, etc) in make.conf, but is there any way to avoid having gcc installed? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 10:45: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id 0194B37B405 for ; Tue, 3 Jul 2001 10:45:01 -0700 (PDT) (envelope-from so@server.i-clue.de) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id TAA00646; Tue, 3 Jul 2001 19:54:18 +0200 Message-ID: <3B420532.AAAAD05@i-clue.de> Date: Tue, 03 Jul 2001 19:47:30 +0200 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: Peter Brezny Cc: freebsd-questions@FreeBSD.ORG Subject: Re: background jobs 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 Peter Brezny schrieb: > > I sent a job into the background, logged off from the machine, logged back > in, and now typing fg or bg tells me there are no jobs in the background, > yet, i know they are running since I can see them with top. > > How can I access those jobs again? You cannot. When you log out, _all_ jobs started from an interactive shell (i.e., by you) will be stopped and terminated. To have jobs run while logged out, either start them with the at command, or use the nohup command. screen (from the ports) is an utility which lets you remain logged in, but disconnect from the terminal and reconnect later. HTH -CHristoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 10:52:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id 1DD1937B401 for ; Tue, 3 Jul 2001 10:52:44 -0700 (PDT) (envelope-from so@server.i-clue.de) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id UAA00704 for ; Tue, 3 Jul 2001 20:02:07 +0200 Message-ID: <3B420707.2E7177D1@i-clue.de> Date: Tue, 03 Jul 2001 19:55:19 +0200 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: FreeBSD-Questions Subject: How to change the geometry for all virtual terminals at boot time? 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 List, I want to change the geometry of all virtual screens of syscons to VESA_90x43 at boot time. I read through /etc/defaults/rc.conf, the vidcontrol manpage, as well as the syscons manpage. I could not locate any hint (maybe it's too late). Please point me into the right direction, even an RTFM pointer would help ;) TIA -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 10:57:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.quidel.com (webmail.quidel.com [63.125.144.4]) by hub.freebsd.org (Postfix) with ESMTP id B9C0337B401 for ; Tue, 3 Jul 2001 10:57:38 -0700 (PDT) (envelope-from et@quidel.com) Received: by mail.quidel.com with Internet Mail Service (5.5.2653.19) id ; Tue, 3 Jul 2001 11:04:22 -0700 Message-ID: <9D4A4E19244ED4119BE90050DAD5DD47BC54F2@mail.quidel.com> From: Etienne de Bruin To: "'freebsd-questions@freebsd.org'" Subject: Disabling xdm/kdm Date: Tue, 3 Jul 2001 11:04:18 -0700 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 How can I disable xdm, i.e. how can get my console back? I typically need this to de install kdm so that i can re-install a newer version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 11: 5:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from jxmls04.se.mediaone.net (jxmls04.se.mediaone.net [24.129.0.51]) by hub.freebsd.org (Postfix) with ESMTP id 12F0F37B401 for ; Tue, 3 Jul 2001 11:05:29 -0700 (PDT) (envelope-from scott.nolde@mediaone.net) Received: from bsd (rr-163-52-193.atl.mediaone.net [24.163.52.193]) by jxmls04.se.mediaone.net (8.11.1/8.11.1) with ESMTP id f63I4RH14022 for ; Tue, 3 Jul 2001 14:04:27 -0400 (EDT) Date: Tue, 3 Jul 2001 14:05:27 -0400 (EDT) From: X-X-Sender: Reply-To: To: Subject: Using syslogd Message-ID: <20010703135844.N2342-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 I'm having a helluva time getting syslogd to log the syslog packets from a cisco router. Here's my setup: in /etc/rc.conf: syslogd_enable="YES" syslogd_flags="-a 192.168.1.249" in /etc/syslogd.conf: *.* /var/log/messages I'm receiving packets at the network interface and have made an ipfw rule to allow them specifically (even on an OPEN firewall): 63000 188 18944 allow udp from 192.168.1.249 to any 514 My loghost has ip address of 192.168.1.200, so the above *should* work according to the man pages. I've even verified the ability to log to a linux laptop, but not to my FreeBSD4.3-STABLE box. Can anyone provide a clue as to why it's not logging? Thanks, Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 11: 7:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from quarter.csl.sri.com (quarter.csl.sri.com [130.107.1.30]) by hub.freebsd.org (Postfix) with ESMTP id 90AAC37B405 for ; Tue, 3 Jul 2001 11:07:19 -0700 (PDT) (envelope-from michael.hogsett@sri.com) Received: from sri.com (glob.csl.sri.com [130.107.15.161]) by quarter.csl.sri.com (8.11.1/8.11.1) with ESMTP id f63I7EQ19334 for ; Tue, 3 Jul 2001 11:07:14 -0700 Message-ID: <3B4209D2.3074E89B@sri.com> Date: Tue, 03 Jul 2001 11:07:14 -0700 From: Mike Hogsett X-Mailer: Mozilla 4.7 [en] (X11; U; Linux 2.4.2-2 i686) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: 4.3 install floppy -- No "Dangerously Dedicated" partitioning ? 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 Why does there appear to be no "true" bsd partitioning available with the 4.3 install floppy? The "remain compatible / dangerously dedicated" dialog no longer appears when using the 4.3 install floppies (kern.flp/mfsroot.flp). Using the 4.2 install floppies the "remain compatible / dangerously dedicated" dialog DOES appear. I guess I will install 4.2 and upgrade to 4.3, bummer what a waste of time... - Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 11: 7:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from bcrail.com (ftp.bcrail.com [198.57.70.1]) by hub.freebsd.org (Postfix) with ESMTP id 8E59C37B403 for ; Tue, 3 Jul 2001 11:07:44 -0700 (PDT) (envelope-from ChildsC@bcrail.com) Received: by gatekeeper.bcrail.com id <119063>; Tue, 3 Jul 2001 11:05:38 -0700 Content-return: allowed Date: Tue, 03 Jul 2001 11:07:30 -0700 From: ChildsC@bcrail.com Subject: RE: How to change the geometry for all virtual terminals at boot time? To: so@server.i-clue.de, questions@FreeBSD.ORG Message-Id: <01Jul3.110538pdt.119063@gatekeeper.bcrail.com> 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 You have to insert the following line into /etc/rc.conf allscreens_flags="VESA_90x43" Chris Childs -----Original Message----- From: Christoph Sold [mailto:so@server.i-clue.de] Sent: Tuesday, July 03, 2001 10:55 AM To: FreeBSD-Questions Subject: How to change the geometry for all virtual terminals at boot time? Dear List, I want to change the geometry of all virtual screens of syscons to VESA_90x43 at boot time. I read through /etc/defaults/rc.conf, the vidcontrol manpage, as well as the syscons manpage. I could not locate any hint (maybe it's too late). Please point me into the right direction, even an RTFM pointer would help ;) TIA -Christoph Sold 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 Jul 3 11: 9:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id C9DCC37B401 for ; Tue, 3 Jul 2001 11:09:13 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f63I9rp88533; Tue, 3 Jul 2001 14:09:53 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Tue, 3 Jul 2001 14:09:53 -0400 (EDT) From: Joe Clarke To: Cc: Subject: Re: Using syslogd In-Reply-To: <20010703135844.N2342-100000@bsd.smnolde.com> Message-ID: <20010703140850.Y27505-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 Make sure /etc/syslog.conf does not contain any spaces. Everything should be TAB separated. If you use spaces, things will fail silently. You'll also want to confirm that 514/udp is being opened using netstat or sockstat. Looks like that should be okay, though. Joe Clarke On Tue, 3 Jul 2001 scott.nolde@mediaone.net wrote: > I'm having a helluva time getting syslogd to log the syslog packets from a > cisco router. Here's my setup: > > in /etc/rc.conf: > syslogd_enable="YES" > syslogd_flags="-a 192.168.1.249" > > in /etc/syslogd.conf: > *.* /var/log/messages > > I'm receiving packets at the network interface and have made an ipfw rule > to allow them specifically (even on an OPEN firewall): > 63000 188 18944 allow udp from 192.168.1.249 to any 514 > > My loghost has ip address of 192.168.1.200, so the above *should* work > according to the man pages. > > I've even verified the ability to log to a linux laptop, but not to my > FreeBSD4.3-STABLE box. > > Can anyone provide a clue as to why it's not logging? > > Thanks, > Scott > > > 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 Jul 3 11:25:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from leblanc.mirrorimage.net (leblanc.mirrorimage.net [209.192.210.146]) by hub.freebsd.org (Postfix) with ESMTP id 472E437B403 for ; Tue, 3 Jul 2001 11:25:31 -0700 (PDT) (envelope-from leblanc@leblanc.mirrorimage.net) Received: by leblanc.mirrorimage.net (Postfix, from userid 118) id D73C86BBF7; Tue, 3 Jul 2001 18:24:58 -0400 (EDT) Date: Tue, 3 Jul 2001 18:24:58 -0400 From: Louis LeBlanc To: freebsd-questions@FreeBSD.org Subject: Starting a daemon at boot Message-ID: <20010703182457.C6553@acadia.ne.mediaone.net> Reply-To: freebsd-questions@FreeBSD.org Mail-Followup-To: freebsd-questions@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.3.19i X-bright-idea: Lets abolish HTML mail! Sender: owner-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. Quick question. I have a daemon that I want started when FreeBSD comes up. On Linux, I would either put a control script in /etc/rc.d/init.d/ and link it to the /etc/rc.d/rc#.d/ directories to control when it comes up in relation to the other startup steps. What is the *correct* way to do this in FreeBSD? TIA Lou -- Louis LeBlanc Fully Funded Hobbyist, KeySlapper Extrordinaire :) leblanc@acadia.ne.mediaone.net http://acadia.ne.mediaone.net Ô¿Ô¬ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 11:28:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail4.txucom.net (mail4.txucom.net [207.70.175.17]) by hub.freebsd.org (Postfix) with SMTP id 5F3C337B406 for ; Tue, 3 Jul 2001 11:28:55 -0700 (PDT) (envelope-from robert@luftx.net) Received: (qmail 12468 invoked from network); 3 Jul 2001 18:28:54 -0000 Received: from lfkn-adsl-pwoodahec.txucom.net (HELO luftx.net) ([207.70.146.31]) (envelope-sender ) by mail4.txucom.net (qmail-ldap-1.03) with SMTP for ; 3 Jul 2001 18:28:54 -0000 Message-ID: <3B420F09.BB51C42E@luftx.net> Date: Tue, 03 Jul 2001 13:29:29 -0500 From: Robert Small X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: Justin Bentley Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Routing Internet 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 Justin Checkout www.mostgraveconcern/freebsd/ it has lots of tutorials to help you. Check out the one for setting up a dual homed host.. Justin Bentley wrote: > *This message was transferred with a trial version of CommuniGate(tm) Pro* > Ok, The box has two NICs in it. One of them is connecting to the internet > through a cable modem(ed0), the other one(ed1) i want to beable to route > other computers on the network to the internet. I had found directions on > the freeBSD site about changing something in the kernel config file, but I > have no clue where that is or what i need to do once i get into it. Right > now I have the computer able to get online and thats it, it wont route > internet at all through the other one. I tried using: natd -interface ed0 > But that didnt work. Before doing that I did: sysctl -w > net.inet.ip.forwarding=1 > > Last thing, im trying to route Windows machines to the internet. If there > any special software I need to do that, if so what is it. If not, what do i > need to do to get this to work? > > -Justin Bentley > _________________________________________________________________ > Get your FREE download of MSN Explorer at http://explorer.msn.com > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- ----------------------------------------------------------- The only difference between a rut and a grave is the depth. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 11:31:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail4.txucom.net (mail4.txucom.net [207.70.175.17]) by hub.freebsd.org (Postfix) with SMTP id 629F537B405 for ; Tue, 3 Jul 2001 11:31:25 -0700 (PDT) (envelope-from robert@luftx.net) Received: (qmail 13451 invoked from network); 3 Jul 2001 18:31:24 -0000 Received: from lfkn-adsl-pwoodahec.txucom.net (HELO luftx.net) ([207.70.146.31]) (envelope-sender ) by mail4.txucom.net (qmail-ldap-1.03) with SMTP for ; 3 Jul 2001 18:31:24 -0000 Message-ID: <3B420F9F.8CFE48E0@luftx.net> Date: Tue, 03 Jul 2001 13:31:59 -0500 From: Robert Small X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Subject: Re: Starting a daemon at boot References: <20010703182457.C6553@acadia.ne.mediaone.net> 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 Louis I may be not understanding your question, so I didn't reply to the list, but all of the startup/shutdown scripts go in /usr/local/etc/rc.d Is that what you're asking? Robert Louis LeBlanc wrote: > *This message was transferred with a trial version of CommuniGate(tm) Pro* > Hey all. Quick question. > I have a daemon that I want started when FreeBSD comes up. On Linux, > I would either put a control script in /etc/rc.d/init.d/ and link it > to the /etc/rc.d/rc#.d/ directories to control when it comes up in > relation to the other startup steps. > > What is the *correct* way to do this in FreeBSD? > > TIA > Lou > -- > Louis LeBlanc > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > leblanc@acadia.ne.mediaone.net > http://acadia.ne.mediaone.net Ô¿Ô¬ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- ----------------------------------------------------------- The only difference between a rut and a grave is the depth. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 11:33: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id C77CD37B405 for ; Tue, 3 Jul 2001 11:32:57 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f63IXBU88561; Tue, 3 Jul 2001 14:33:11 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Tue, 3 Jul 2001 14:33:11 -0400 (EDT) From: Joe Clarke To: Louis LeBlanc Cc: Subject: Re: Starting a daemon at boot In-Reply-To: <20010703182457.C6553@acadia.ne.mediaone.net> Message-ID: <20010703143230.K27505-100000@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN 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 I add startup scripts in /usr/local/etc/rc.d or /usr/X11R6/etc/rc.d which ever is appropriate. You can use some of the existing scripts (hopefully you have some) as examples. Joe Clarke On Tue, 3 Jul 2001, Louis LeBlanc wrote: > Hey all. Quick question. > I have a daemon that I want started when FreeBSD comes up. On Linux, > I would either put a control script in /etc/rc.d/init.d/ and link it > to the /etc/rc.d/rc#.d/ directories to control when it comes up in > relation to the other startup steps. > > What is the *correct* way to do this in FreeBSD? > > TIA > Lou > -- > Louis LeBlanc > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > leblanc@acadia.ne.mediaone.net > http://acadia.ne.mediaone.net =D4=BF=D4=AC > > 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 Jul 3 11:38:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc24.worldnet.att.net (mtiwmhc24.worldnet.att.net [204.127.131.49]) by hub.freebsd.org (Postfix) with ESMTP id 118C437B40C for ; Tue, 3 Jul 2001 11:38:28 -0700 (PDT) (envelope-from parv@worldnet.att.net) Received: from worldnet.att.net ([32.101.235.56]) by mtiwmhc24.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010703183821.PRMT3707.mtiwmhc24.worldnet.att.net@worldnet.att.net>; Tue, 3 Jul 2001 18:38:21 +0000 Received: by worldnet.att.net (Postfix, from userid 1001) id EB6F41943F; Tue, 3 Jul 2001 14:42:06 -0400 (EDT) Date: Tue, 3 Jul 2001 14:42:06 -0400 From: parv To: Jason Nugent Cc: f-q Subject: Re: cvsup list file & file status (c C F U D) Message-ID: <20010703144206.A18396@moo.holy.cow> Mail-Followup-To: Jason Nugent , f-q References: <20010702144937.A2168@moo.holy.cow> <20010702160818.A496@moo.holy.cow> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010702160818.A496@moo.holy.cow>; from parv_@yahoo.com on Mon, Jul 02, 2001 at 04:08:18PM -0400 Sender: owner-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, me shared this in my lifetime... > so, Jason Nugent shared this in my lifetime... > > > > Parv, > > > > There are a whole stack of CVSup files in your > > > > /usr/share/examples/cvsup/ > > > > directory. > > > > there is also quite a bit in the Handbook on CVSup. > > > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html > > > > > > Jason > > > > On Mon, 2 Jul 2001 at 1:52pm, parv thought about > > > > > does anybody know what above mentioned 5 one-letter tags mean in a > > > cvsup list file? i could find only those 5 tags for "src-all" for > ^^^^^^^^^^^^^^^ > > > "RELENG_4". > > > > > > also, does anybody know the complete format of a cvsup list file? > ^^^^^^^^^^^^^^^ > > > > > > manpage of cvsup doesn't have much to say under section "the list > > > file", or "see also". i have checked manpage for cvs too; is the > > > "commands" section, subsection "update" relevant here? web/usenet > > > searches offer nothing relevant... > > > > > no. that's not it. please re-read the previous message. > > i am not looking information for supfile or its format. i am looking > for information about _THE_LIST_FILE_, as cvsup manpage calls it. or, > a "status file" according to the handbook. > well, i found my answer -- only after learning that it's also called a "checkout file"[1] -- in the doc/(Checkouts|Protocol) after downloading the source. for closure, below are the meaning of the codes: The types of records are as follows: c Checked-out file that is dead C Checked-out file that is alive F File format version identifier U Go up out of a subdirectory D Go down into a subdirectory [1] according to doc/faq.html... ./doc/faq.html:800:

Confusingly, checkouts files are also sometimes referred to as ./doc/faq.html-801-"list" files. - parv To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 11:39:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from leblanc.mirrorimage.net (leblanc.mirrorimage.net [209.192.210.146]) by hub.freebsd.org (Postfix) with ESMTP id 534D937B405 for ; Tue, 3 Jul 2001 11:39:33 -0700 (PDT) (envelope-from leblanc@leblanc.mirrorimage.net) Received: by leblanc.mirrorimage.net (Postfix, from userid 118) id 937546BBF7; Tue, 3 Jul 2001 18:39:01 -0400 (EDT) Date: Tue, 3 Jul 2001 18:39:01 -0400 From: Louis LeBlanc To: freebsd-questions@FreeBSD.ORG, freebsd-questions@FreeBSD.org Subject: Re: Starting a daemon at boot Message-ID: <20010703183901.D6553@acadia.ne.mediaone.net> Reply-To: freebsd-questions@FreeBSD.org Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <20010703182457.C6553@acadia.ne.mediaone.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20010703182457.C6553@acadia.ne.mediaone.net> User-Agent: Mutt/1.3.19i X-bright-idea: Lets abolish HTML mail! Sender: owner-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 all. I guess that was a little too obvious for me. Now that I think about it, it makes sense that the system would not bother to start some things if /usr/local became unavailable. I'll get the hang of this OS yet :) Thanks again Lou On 07/03/01 06:24 PM, Louis LeBlanc sat at the `puter and typed: > Hey all. Quick question. > I have a daemon that I want started when FreeBSD comes up. On Linux, > I would either put a control script in /etc/rc.d/init.d/ and link it > to the /etc/rc.d/rc#.d/ directories to control when it comes up in > relation to the other startup steps. > > What is the *correct* way to do this in FreeBSD? > > TIA > Lou > -- > Louis LeBlanc > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > leblanc@acadia.ne.mediaone.net > http://acadia.ne.mediaone.net Ô¿Ô¬ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- Louis LeBlanc Fully Funded Hobbyist, KeySlapper Extrordinaire :) leblanc@acadia.ne.mediaone.net http://acadia.ne.mediaone.net Ô¿Ô¬ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 11:50:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-169-104-161.dsl.lsan03.pacbell.net [64.169.104.161]) by hub.freebsd.org (Postfix) with ESMTP id B873137B405 for ; Tue, 3 Jul 2001 11:50:14 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id E50AE67B9F; Tue, 3 Jul 2001 11:50:12 -0700 (PDT) Date: Tue, 3 Jul 2001 11:50:12 -0700 From: Kris Kennaway To: Christoph Sold Cc: Ernst Terhardt , questions@FreeBSD.ORG Subject: Re: BUG report Message-ID: <20010703115011.B27793@xor.obsecurity.org> References: <3B41A115.B2821752@ei.tum.de> <3B41C6B6.DFCD9F7A@i-clue.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="xHFwDpU9dbj6ez1V" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B41C6B6.DFCD9F7A@i-clue.de>; from so@server.i-clue.de on Tue, Jul 03, 2001 at 03:20:54PM +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 --xHFwDpU9dbj6ez1V Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jul 03, 2001 at 03:20:54PM +0200, Christoph Sold wrote: >=20 >=20 > Ernst Terhardt schrieb: > >=20 > > Hello. Please excuse my misusing the 'questions' mail box for a bug > > report. I am new with FreeBSD > > and have not yet configured it for sending e-mail. This is what happened > > to me a few minutes ago when > > I was playing with FreeBSD: > >=20 > > I put a RW CD of unknown contents into the drive and tried > >=20 > > mount -t cd9660 /dev/acd0c /cdrom > >=20 > > This had the dramatic effect of a fatal system crash (with a kernel > > message starting with a 'trap 12 ...' > > story), followed by an automatic reboot. Apparently, in the course of > > rebooting the root partition was somehow repaired (at least I hope so). >=20 > Me too. Checked with both scsi and atapi CD-ROMs. I just filed a problem > report. I agree mounting an audio CD is a silly thing to do, but it > should never, ever crash the system. I hope you remembered to include a kernel panic traceback (see the handbook section on kernel debugging) so the bug report is actually useful :-) Kris --xHFwDpU9dbj6ez1V 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 iD8DBQE7QhPjWry0BWjoQKURAkG3AJ96V1kxoWV+aeFNES6T9T//ilNigQCfcmz/ rWteElwB0Hou/7HtoQbp6LE= =uFw1 -----END PGP SIGNATURE----- --xHFwDpU9dbj6ez1V-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 11:51:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-169-104-161.dsl.lsan03.pacbell.net [64.169.104.161]) by hub.freebsd.org (Postfix) with ESMTP id D76E437B401 for ; Tue, 3 Jul 2001 11:51:45 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 0633867B9F; Tue, 3 Jul 2001 11:51:44 -0700 (PDT) Date: Tue, 3 Jul 2001 11:51:43 -0700 From: Kris Kennaway To: ben Cc: freebsd-questions@FreeBSD.ORG Subject: Re: make world without gcc Message-ID: <20010703115141.C27793@xor.obsecurity.org> References: <3B42045B.7030609@stonehenge-net.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="GID0FwUMdk1T2AWN" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B42045B.7030609@stonehenge-net.com>; from ben@stonehenge-net.com on Tue, Jul 03, 2001 at 10:43:55AM -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 --GID0FwUMdk1T2AWN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jul 03, 2001 at 10:43:55AM -0700, ben wrote: > am building a firewall box, and would like to update it using the=20 > sourcetree i keep on my fileserver. it looks like i can turn off most=20 > of the things i dont want built (perl, etc) in make.conf, but is there=20 > any way to avoid having gcc installed? =20 Nope. Kris --GID0FwUMdk1T2AWN 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 iD8DBQE7QhQ8Wry0BWjoQKURAjpMAJ9oJ2W3BqWZKsw7zrmsJ28lw68rMQCfR/dl YUufQTf+uVAiQ411a5zZYIw= =O61a -----END PGP SIGNATURE----- --GID0FwUMdk1T2AWN-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 12:18:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from flow.ukr.net (flow.ukr.net [212.42.64.15]) by hub.freebsd.org (Postfix) with ESMTP id 720D137B403 for ; Tue, 3 Jul 2001 12:18:15 -0700 (PDT) (envelope-from usov@ukr.net) Received: from fatlady.ukr.net (fatlady.ukr.net [212.42.64.8]) by flow.ukr.net (8.9.3/8.9.3) with ESMTP id WAA18952 for ; Tue, 3 Jul 2001 22:17:11 -0200 (GMT) Received: (from mail@localhost) by fatlady.ukr.net (8.9.3/8.9.3) id WAA28630 for questions@freebsd.org; Tue, 3 Jul 2001 22:16:52 +0300 (EEST) Date: Tue, 3 Jul 2001 22:16:52 +0300 (EEST) Message-Id: <200107031916.WAA28630@fatlady.ukr.net> Received: from [212.9.225.142] by freemail.ukr.net with HTTP; Tue, 03 Jul 2001 19:16:52 +0000 (GMT) From: "Usov Alexander" To: questions@freebsd.org Subject: Transparent HTTP cashing. Mime-Version: 1.0 X-Mailer: mPOP Web-Mail 2.19 X-Originating-IP: itv.iptelecom.net.ua [212.9.225.142] Reply-To: "Usov Alexander" Content-Type: multipart/mixed; boundary="----xAscWmR0-teKkQ4YlFBDMtHGm:994187812" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ------xAscWmR0-teKkQ4YlFBDMtHGm:994187812 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Hi! Some time ago I saw article about transparent HTTP caching with BSD/OS. Is it possible to do the same trick with FreeBSD? PS. Sorry for my english. ------xAscWmR0-teKkQ4YlFBDMtHGm:994187812 Content-Type: application/octet-stream; name="virus.jpg" Content-Disposition: attachment; filename="virus.jpg" Content-Transfer-Encoding: base64 LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS03ZDEyNWQyNWUwMjM4DQpDb250ZW50LURpc3Bv c2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9Im1lc3NhZ2UiDQoNCnhBc2NXbVIwDQotLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLTdkMTI1ZDI1ZTAyMzgNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZv cm0tZGF0YTsgbmFtZT0iVG8iDQoNCnF1ZXN0aW9uc0BmcmVlYnNkLm9yZw0KLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS03ZDEyNWQyNWUwMjM4DQpDb250ZW50LURpc3Bvc2l0aW9uOiBmb3Jt LWRhdGE7IG5hbWU9IkNDIg0KDQoNCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tN2QxMjVk MjVlMDIzOA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBuYW1lPSJCQ0MiDQoNCg0K LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS03ZDEyNWQyNWUwMjM4DQpDb250ZW50LURpc3Bv c2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9IlN1YmplY3QiDQoNClRyYW5zcGFyZW50IEhUVFAgY2Fz aGluZy4NCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tN2QxMjVkMjVlMDIzOA0KQ29udGVu dC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBuYW1lPSJCb2R5Ig0KDQpIaSENCg0KU29tZSB0aW1l IGFnbyBJIHNhdyBhcnRpY2xlIGFib3V0IHRyYW5zcGFyZW50IEhUVFAgY2FjaGluZyB3aXRoIEJT RC9PUy4NCklzIGl0IHBvc3NpYmxlIHRvIGRvIHRoZSBzYW1lIHRyaWNrIHdpdGggRnJlZUJTRD8N Cg0KUFMuDQpTb3JyeSBmb3IgbXkgZW5nbGlzaC4NCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tN2QxMjVkMjVlMDIzOA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBuYW1lPSJz ZW5kIg0KDQrwz9PMwdTYINPPz8Ldxc7JxQ0KLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS03 ZDEyNWQyNWUwMjM4DQpDb250ZW50LURpc3Bvc2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9IkZpbGUi OyBmaWxlbmFtZT0iIg0KQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi9vY3RldC1zdHJlYW0NCg0K DQotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLTdkMTI1ZDI1ZTAyMzgtLQ== ------xAscWmR0-teKkQ4YlFBDMtHGm:994187812-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 12:19:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from yuggoth.bc.hsia.telus.net (akgc4208y47zh.bc.hsia.telus.net [216.232.143.61]) by hub.freebsd.org (Postfix) with ESMTP id 8469C37B403 for ; Tue, 3 Jul 2001 12:19:17 -0700 (PDT) (envelope-from sdpullara@telus.net) Received: from telus.net (localhost [127.0.0.1]) by yuggoth.bc.hsia.telus.net (8.11.3/8.11.3) with ESMTP id f63JOT500382 for ; Tue, 3 Jul 2001 12:24:29 -0700 (PDT) (envelope-from sdpullara@telus.net) Message-Id: <200107031924.f63JOT500382@yuggoth.bc.hsia.telus.net> To: questions@freebsd.org Subject: Sound driver crashing OS? Date: Tue, 03 Jul 2001 12:24:29 -0700 From: "S. David Pullara" Sender: owner-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 having a problem with FreeBSD or X crashing on me, but I don't know which. At first I thought it was Windowmaker but I just had the same thing happen while using Blackbox. It seems to only happen if I'm running an mp3 player and has happend with both x11amp and gqmpeg. Sometimes it seems X or the window manager is trashed and I get a console screen. At that point I can ^Z and shut things down cleanly. Sometimes I get the entire system frozen, and I can't kill the X. Has anyone experienced something like this? I have never had FreeBSD crash on me before. Any help and/or advice would be greatly appreciated. Please reply via email since I don't subscribe to the list. (Just too high volume for me to keep up.) Thanks in advance david ------------------- brief details ------------------ FreeBSD 4.3 Release XFree86 3.3.6_9, SVGA driver Gravis Ultrasound PnP Pro from config file: device pcm, device gusc dmesg.boot and the config file used to build the kernel are below. (btw, if anyone knows why I'm getting all those config "No such device" errors at startup please let me know!) ------------------- dmesg.boot --------------------- 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 #1: Sun Jul 1 10:24:26 PDT 2001 sdpullara@yuggoth.bc.hsia.telus.net:/usr/src/sys/compile/YUGGOTH Timecounter "i8254" frequency 1193182 Hz CPU: AMD-K6tm w/ multimedia extensions (233.87-MHz 586-class CPU) Origin = "AuthenticAMD" Id = 0x562 Stepping = 2 Features=0x8001bf AMD Features=0x400<> real memory = 67108864 (65536K 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 aic0 No such device: aic0 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 = 62033920 (60580K bytes) Preloaded elf kernel "kernel" at 0xc0345000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc034509c. md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xf400-0xf40f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 chip1: at device 7.3 on pci0 dc0: port 0xf600-0xf6ff mem 0xe5040000-0xe50400ff irq 9 at device 8.0 on pci0 dc0: Ethernet address: 00:80:c6:f8:58:43 miibus0: on dc0 dcphy0: on miibus0 dcphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pci0: at 9.0 irq 9 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 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 sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 plip0: on ppbus0 gusc0: at port 0x220-0x22f,0x320-0x327,0x32c-0x32f irq 11 drq 5,7 on isa0 pcm0: on gusc0 gusc1: at port 0x388-0x389 irq 5 drq 1 on isa0 gusc2: at port 0x330-0x331 on isa0 ad0: 29311MB [59554/16/63] at ata0-master UDMA33 ad2: 4924MB [10672/15/63] at ata1-master UDMA33 acd0: CDROM at ata0-slave using PIO4 Mounting root from ufs:/dev/ad0s3a WARNING: / was not properly dismounted ------------------- config file -------------------- # # YUGGOTH -- Generic kernel configuration file for FreeBSD/i386 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.24 2001/04/05 17:23:10 sos Exp $ machine i386 cpu I586_CPU ident YUGGOTH 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=7000 #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 # deleted -- get again from GENERIC if you need them # 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 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. # 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 #get the rest of the NIC's from GENERIC or LINT if you need them # Pseudo devices - the number indicates how many units to allocate. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support #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 `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter # USB support # For PnP/PCI sound cards device pcm device gusc ------------------- END OF MSG --------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 12:20:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from flow.ukr.net (flow.ukr.net [212.42.64.15]) by hub.freebsd.org (Postfix) with ESMTP id 16C6337B403 for ; Tue, 3 Jul 2001 12:20:44 -0700 (PDT) (envelope-from usov@ukr.net) Received: from fatlady.ukr.net (fatlady.ukr.net [212.42.64.8]) by flow.ukr.net (8.9.3/8.9.3) with ESMTP id WAA19214 for ; Tue, 3 Jul 2001 22:19:46 -0200 (GMT) Received: (from mail@localhost) by fatlady.ukr.net (8.9.3/8.9.3) id WAA29686 for questions@freebsd.org; Tue, 3 Jul 2001 22:19:27 +0300 (EEST) Date: Tue, 3 Jul 2001 22:19:27 +0300 (EEST) Message-Id: <200107031919.WAA29686@fatlady.ukr.net> Received: from [212.9.225.142] by freemail.ukr.net with HTTP; Tue, 03 Jul 2001 19:19:27 +0000 (GMT) From: "Usov Alexander" To: questions@freebsd.org Subject: DNS caching. Mime-Version: 1.0 X-Mailer: mPOP Web-Mail 2.19 X-Originating-IP: itv.iptelecom.net.ua [212.9.225.142] Reply-To: "Usov Alexander" 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 Hi! Which software may cache DNS queries (except of BIND). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 12:24:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.cult.cu (mail.cult.cu [169.158.120.2]) by hub.freebsd.org (Postfix) with ESMTP id 5F20637B403 for ; Tue, 3 Jul 2001 12:23:56 -0700 (PDT) (envelope-from admin@atenas.cult.cu) Received: from mail by mail.cult.cu with local-bsmtp (Exim 3.03 #2) id 15HVm1-000Lse-00 for freebsd-questions@freebsd.org; Tue, 03 Jul 2001 15:23:49 -0400 Received: from [169.158.120.178] (helo=mail.atenas.cult.cu) by mail.cult.cu with esmtp (Exim 3.03 #2) id 15HVlt-000Lro-00 for freebsd-questions@freebsd.org; Tue, 03 Jul 2001 15:23:41 -0400 Received: from mail.atenas.cult.cu ([169.158.120.179] helo=proxy.atenas.cult.cu) by mail.atenas.cult.cu with smtp (Exim 3.22 #2) id 15HVnT-0000PL-00 for freebsd-questions@FreeBSD.org; Tue, 03 Jul 2001 15:25:19 -0400 From: Manolo Valdes To: freebsd-questions@FreeBSD.org Subject: Re: Starting a daemon at boot Date: Tue, 3 Jul 2001 15:19:51 -0400 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain; charset="iso-8859-1" References: <20010703182457.C6553@acadia.ne.mediaone.net> <20010703183901.D6553@acadia.ne.mediaone.net> In-Reply-To: <20010703183901.D6553@acadia.ne.mediaone.net> MIME-Version: 1.0 Message-Id: <01070315230800.00387@proxy.atenas.cult.cu> 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 see the /etc/rc script and you find all you need to know. all the scripts in /usr/local/etc/rc.d most be *.sh or the /etc/rc script wont execute it manolito On Tue, 03 Jul 2001, you wrote: > Thanks all. I guess that was a little too obvious for me. Now that I > think about it, it makes sense that the system would not bother to > start some things if /usr/local became unavailable. > > I'll get the hang of this OS yet :) > > Thanks again > Lou > > On 07/03/01 06:24 PM, Louis LeBlanc sat at the `puter and typed: > > Hey all. Quick question. > > I have a daemon that I want started when FreeBSD comes up. On Linux, > > I would either put a control script in /etc/rc.d/init.d/ and link it > > to the /etc/rc.d/rc#.d/ directories to control when it comes up in > > relation to the other startup steps. > > > > What is the *correct* way to do this in FreeBSD? > > > > TIA > > Lou > > -- > > Louis LeBlanc > > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > > leblanc@acadia.ne.mediaone.net > > http://acadia.ne.mediaone.net Ô¿Ô¬ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > -- > Louis LeBlanc > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > leblanc@acadia.ne.mediaone.net > http://acadia.ne.mediaone.net Ô¿Ô¬ > > 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 Jul 3 12:39:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp010.mail.yahoo.com (smtp010.mail.yahoo.com [216.136.173.30]) by hub.freebsd.org (Postfix) with SMTP id E71E837B406 for ; Tue, 3 Jul 2001 12:39:21 -0700 (PDT) (envelope-from robinsonpar@yahoo.com) Received: from unknown (HELO zz) (216.95.234.179) by smtp.mail.vip.sc5.yahoo.com with SMTP; 3 Jul 2001 19:39:21 -0000 X-Apparently-From: Message-ID: <00b301c10411$4fa12300$b3ea5fd8@mshome.net> From: "Robinson" To: Subject: Fw: hello Date: Tue, 3 Jul 2001 15:41:33 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_00B0_01C103D6.A2EE5EA0" 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_00B0_01C103D6.A2EE5EA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, I have SMC's 9000 ethernet adapter. I use sn driver in freebsd4.2. I remake kernel, then reboot system. But the system can not find it? Thanks Robinson ------=_NextPart_000_00B0_01C103D6.A2EE5EA0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

Hello,
 
I have SMC's 9000 ethernet adapter. I = use sn driver=20 in freebsd4.2.
 
I remake kernel, then reboot system. = But the system=20 can not find it?
 
Thanks
 
Robinson
 
------=_NextPart_000_00B0_01C103D6.A2EE5EA0-- _________________________________________________________ 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 Tue Jul 3 12:43:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from 100m.mpr200-2.esr.lvcm.net (100m.mpr200-2.esr.lvcm.net [24.234.0.81]) by hub.freebsd.org (Postfix) with ESMTP id 0779E37B406 for ; Tue, 3 Jul 2001 12:43:09 -0700 (PDT) (envelope-from george@ohanaholdings.com) Received: from elvis.omidyar.org (cm232.83.120.24.lvcm.com [24.120.83.232]) by 100m.mpr200-2.esr.lvcm.net (Mirapoint) with SMTP id AFV73026; Tue, 3 Jul 2001 12:43:07 -0700 (PDT) From: George Libor Date: Tue, 03 Jul 2001 19:43:05 GMT Message-ID: <20010703.19430500@elvis.omidyar.org> Subject: Java + SSL Browser To: freebsd-questions@freebsd.org X-Mailer: Mozilla/3.0 (compatible; StarOffice/5.2;Linux) X-Priority: 3 (Normal) 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 Can anyone suggest a good solution for a web browser that supports Java = applets and SSL for FreeBSD 4.3? Opera does SSL but not Java, and HotJav= a=20 does Java but not SSL. Thanks in advance for any advice! -glibor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 13:38:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.quidel.com (webmail.quidel.com [63.125.144.4]) by hub.freebsd.org (Postfix) with ESMTP id 291CD37B401 for ; Tue, 3 Jul 2001 13:38:52 -0700 (PDT) (envelope-from et@quidel.com) Received: by mail.quidel.com with Internet Mail Service (5.5.2653.19) id ; Tue, 3 Jul 2001 13:45:36 -0700 Message-ID: <9D4A4E19244ED4119BE90050DAD5DD47BC54F3@mail.quidel.com> From: Etienne de Bruin To: "'freebsd-questions@freebsd.org'" Subject: Disabling xdm/kdm - Got it! Date: Tue, 3 Jul 2001 13:45:29 -0700 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 All I had to do was comment out my local server in the Xservers file. -----Original Message----- From: Etienne de Bruin Sent: Tuesday, July 03, 2001 11:04 AM To: 'freebsd-questions@freebsd.org' Subject: Disabling xdm/kdm How can I disable xdm, i.e. how can get my console back? I typically need this to de install kdm so that i can re-install a newer version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 14:17:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smithers.stomped.com (smithers.stomped.com [216.17.56.2]) by hub.freebsd.org (Postfix) with SMTP id 9D53F37B401 for ; Tue, 3 Jul 2001 14:17:07 -0700 (PDT) (envelope-from malhavoc@stomped.com) Received: (qmail 66500 invoked by uid 1041); 3 Jul 2001 21:17:23 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 3 Jul 2001 21:17:23 -0000 Date: Tue, 3 Jul 2001 16:17:23 -0500 (CDT) From: Jason Nugent To: George Libor Cc: Subject: Re: Java + SSL Browser In-Reply-To: <20010703.19430500@elvis.omidyar.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 George, I use Netscape 6 under Linux Emulation. It supports Java via the Sun plugin, and does SSL as well. Jason On Tue, 3 Jul 2001 at 4:16pm, George Libor thought about > Can anyone suggest a good solution for a web browser that supports Java > applets and SSL for FreeBSD 4.3? Opera does SSL but not Java, and HotJava > does Java but not SSL. > > Thanks in advance for any advice! > > -glibor > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > ---------------------- Jason Nugent Aka MalHavoc Server Programmer and Administrator S T O M P E D . C O M For PGP public key: http://malhavoc.stomped.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 14:20:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sec-tools.corp.globalstar.com (gibraltar.globalstar.com [207.88.248.142]) by hub.freebsd.org (Postfix) with ESMTP id B2F5C37B401 for ; Tue, 3 Jul 2001 14:20:22 -0700 (PDT) (envelope-from cclark@globalstar.com) Received: (from cclark@localhost) by sec-tools.corp.globalstar.com (8.11.3/8.11.3) id f63LKKR55347; Tue, 3 Jul 2001 14:20:20 -0700 (PDT) (envelope-from cclark) Date: Tue, 3 Jul 2001 14:20:20 -0700 From: "Crist J. Clark" To: "Lavender, Ben" Cc: "'freebsd-questions@freebsd.org'" Subject: Re: interface aliases and routing Message-ID: <20010703142020.A55237@sec-tools.corp.globalstar.com> References: <78202F9B9BB8D311846100805F577DFF274096@nctams01.nctldno.navy.mil> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <78202F9B9BB8D311846100805F577DFF274096@nctams01.nctldno.navy.mil>; from LavenderB@nctldno.navy.mil on Tue, Jul 03, 2001 at 06:29:59AM -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 Tue, Jul 03, 2001 at 06:29:59AM -0500, Lavender, Ben wrote: > > On Mon, Jul 02, 2001 at 10:28:44AM -0500, Lavender, Ben wrote: > > > Like this? > > > xl0: flags=8843 mtu 1500 > > > inet6 fe80::210:5aff:fe28:ca1f%xl0 prefixlen 64 scopeid 0x1 > > > inet 164.229.1.72 netmask 0xffffffc0 broadcast 164.229.1.127 > > > inet 164.229.1.74 netmask 0xffffffff broadcast 164.229.1.74 > > > ether 00:10:5a:28:ca:1f > > > media: autoselect (100baseTX ) status: active > > > supported media: autoselect 100baseTX 100baseTX > > > 10baseT/UTP 10baseT/UTP 100baseTX > > > > > > This didn't work. > > > > What does not work? In a setup like this, an outgoing connection will > > use the 164.229.1.72 address unless the application explicitly > > requests 164.229.1.74 as the source address. It should be able to use > > that address if it wants. Incoming connections to the machine should > > reply using whatever address the incoming packets came in on. > > > > What is not working? > > 164.229.1.74 does not have connectivity to machines outside the subnet. > Using dig v9 to bind to the source address of 1.74 does not get me a > response from a name server on another subnet. Pinging 164.229.1.74 from > another subnet does not work, nor does any tcp service. However, > connectivity to other machines on the same subnet (164.229.1.64-128) works > just fine. Sounds like the problem might not be at this machine, but rather at the router. Run a, # tcpdump -nvv host 164.229.1.74 And try, $ telnet -s 164.229.1.74 $ ping -S 164.229.1.74 $ telnet -s 164.229.1.74 $ ping -S 164.229.1.74 Then try the reverse, that is, run the commands on the other hosts and going to 164.229.1.74. > Ive also got a sizeable portion of static routes to other gateways for other > networks (speaking of which, I cant find how one might add a static route to > rc.conf in /etc/defaults/rc.conf, I'm currently using a shell script. Any > ideas on that one?). man rc.conf Example: static_routes="route_1 route_2" # Use more meaningful names route_route_1="net 10.10.0.0/16 164.229.1.125" route_route_2="net 10.128.0.0/16 164.229.1.124" > relevent rc.conf: > network_interfaces="xl0 lo0" > ifconfig_xl0="inet 164.229.1.72 up netmask 255.255.255.192" > defaultrouter="164.229.1.66" > ifconfig_xl0_alias0="inet 164.229.1.74 up netmask 255.255.255.192" ^^^ Still need to fix that. -- Crist J. Clark Network Security Engineer crist.clark@globalstar.com Globalstar, L.P. (408) 933-4387 FAX: (408) 933-4926 The information contained in this e-mail message is confidential, intended only for the use of the individual or entity named above. If the reader of this e-mail is not the intended recipient, or the employee or agent responsible to deliver it to the intended recipient, you are hereby notified that any review, dissemination, distribution or copying of this communication is strictly prohibited. If you have received this e-mail in error, please contact postmaster@globalstar.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 14:31:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from amdext.amd.com (amdext.amd.com [139.95.251.1]) by hub.freebsd.org (Postfix) with ESMTP id A15CE37B401 for ; Tue, 3 Jul 2001 14:31:47 -0700 (PDT) (envelope-from fred.deocampo@amd.com) Received: from ssvlgs01.amd.com (ssvlgs01.amd.com [139.95.250.16]) by amdext.amd.com (8.9.3/8.9.3/AMD) with SMTP id OAA23573 for ; Tue, 3 Jul 2001 14:31:46 -0700 (PDT) From: fred.deocampo@amd.com Received: from 139.95.250.1 by ssvlgs01.amd.com with ESMTP (Tumbleweed MMS SMTP Relay (MMS v4.7)); Tue, 03 Jul 2001 14:31:45 -0700 X-Server-Uuid: 02753650-11b0-11d5-bbc5-00508bf987eb Received: from caexmta2.amd.com (caexmta2.amd.com [139.95.53.14]) by amdint.amd.com (8.9.3/8.9.3/AMD) with ESMTP id OAA11289 for ; Tue, 3 Jul 2001 14:31:45 -0700 (PDT) Received: by caexmta2.amd.com with Internet Mail Service (5.5.2653.19) id ; Tue, 3 Jul 2001 14:31:45 -0700 Message-ID: <584236E8AAC8D311822400805F9FD9D71D0426@caexmta2.amd.com> To: freebsd-questions@FreeBSD.ORG Subject: Problem accessing directory FreeBSD-stable Date: Tue, 3 Jul 2001 14:31:42 -0700 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) X-WSS-ID: 175CE64B58006-01-01 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, I'm having problems accessing the FreedBSD-stable directory at ftp://ftp.freebsd.org/pub/FreeBSD/. I'm using IE 5.5 in a Windows NT and 2000 and getting the following message. I can open other directories at this site without any problems but any directory with Symbolic link is not accessible for me. Any information to resolve this would be appreciated. Thanks, Fred <<...OLE_Obj...>> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 14:42:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc21.worldnet.att.net (mtiwmhc21.worldnet.att.net [204.127.131.46]) by hub.freebsd.org (Postfix) with ESMTP id E219637B401 for ; Tue, 3 Jul 2001 14:42:13 -0700 (PDT) (envelope-from parv@worldnet.att.net) Received: from worldnet.att.net ([32.101.235.161]) by mtiwmhc21.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010703214212.JLTM3208.mtiwmhc21.worldnet.att.net@worldnet.att.net> for ; Tue, 3 Jul 2001 21:42:12 +0000 Received: by worldnet.att.net (Postfix, from userid 1001) id 7E3931943F; Tue, 3 Jul 2001 17:46:03 -0400 (EDT) Date: Tue, 3 Jul 2001 17:46:03 -0400 From: parv To: f-q Subject: need help (un)installing things not installed by 'make install' in /usr/ports... Message-ID: <20010703174602.A61080@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 well, i just installed cvsup in hopes that the "doc" collection, included in tarred+gzipped file, would also be installed. guess what? only man pages were installed. now, i could just copy the documents somewhere in /usr/*/share, but i may not remember to uninstall/upgrade when/if i install cvsup again. i want to know what i need to know/do to hack so that pkg_delete will take care of removing the "doc". would updating /var/db/pkg/cvsup-16.1_1/+CONTENTS be sufficient? -- so, do you like word games or scrabble? - parv To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 14:47:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from clientmail.realtime.co.uk (simian.realtime.co.uk [194.205.134.131]) by hub.freebsd.org (Postfix) with ESMTP id 8C85337B405 for ; Tue, 3 Jul 2001 14:47:32 -0700 (PDT) (envelope-from waynep@pan.realtime.co.uk) Received: from [213.52.146.196] (helo=pan.realtime.co.uk) by clientmail.realtime.co.uk with esmtp (Exim 3.20 #1) id 15HY15-0005Hz-01 for freebsd-questions@freebsd.org; Tue, 03 Jul 2001 22:47:31 +0100 Received: from waynep by pan.realtime.co.uk with local (Exim 3.22 #1) id 15HY0Y-000CKX-00 for freebsd-questions@freebsd.org; Tue, 03 Jul 2001 22:46:58 +0100 From: Wayne Pascoe To: freebsd-questions@freebsd.org Subject: named error - Weird Reply-To: wayne.pascoe@realtime.co.uk Date: 03 Jul 2001 22:46:57 +0100 Message-ID: <86elrxsn1q.fsf@pan.ehsrealtime.com> Lines: 31 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 Hi all, I've just setup a new chrooted named server. I have the following section in my config file : allow-transfer { 127.0.0.0/8; 192.168.1.0; }; When I try and start named, I get the following error in /var/log/messages: /etc/named.conf:19: syntax error near allow-transfer Line 19 is where the above section starts. No matter where I put an allow-transfer line in the file, or an allow-query line, I get the same errors. named -v reports named 8.2.3-REL Tue Jul 3 21:15:05 BST 2001 root@mybox.mydomain.com:/usr/obj/usr/src/usr.sbin/named I really would like these directives to limit certain activities. Has anyone seen this before and solved it? TIA, -- - Wayne Pascoe E-mail: wayne.pascoe@realtime.co.uk Phone : +44 (0) 20 7544 4668 Mobile: +44 (0) 788 431 1675 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 14:47:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from aries.ai.net (aries.ai.net [205.134.163.4]) by hub.freebsd.org (Postfix) with ESMTP id 42C4F37B401 for ; Tue, 3 Jul 2001 14:47:50 -0700 (PDT) (envelope-from deepak@ai.net) Received: from blood (adsl-138-88-44-228.bellatlantic.net [138.88.44.228]) by aries.ai.net (8.9.3/8.9.3) with SMTP id RAA19110 for ; Tue, 3 Jul 2001 17:50:59 -0400 (EDT) (envelope-from deepak@ai.net) Reply-To: From: "Deepak Jain" To: Subject: RE: TX buffer in 4.3 Date: Tue, 3 Jul 2001 17:51:50 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 In-Reply-To: <20010703161057.O47870@elvis.mu.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 Bill's explanation here is very thorough, but unless you know what he means by the last comment, it won't necessarily help you. What he is suggesting is adding a line to your kernel config, options NMBCLUSTERS=2048 (for example) and loading the new kernel. This should solve your transmit issues on the server in question. The FreeBSD handbook probably tells you how to get the kernel sources if you don't have them and build the new kernel. If you already know how to do this, then I am just mentioning it for pedantic concerns. Deepak Jain AiNET -----Original Message----- From: owner-freebsd-hackers@FreeBSD.ORG [mailto:owner-freebsd-hackers@FreeBSD.ORG]On Behalf Of Bill Fumerola Sent: Tuesday, July 03, 2001 5:11 PM To: Randy -Harborside Internet Cc: freebsd-hackers@FreeBSD.ORG Subject: Re: TX buffer in 4.3 [ not -hackers material, moved to questions ] On Tue, Jul 03, 2001 at 01:53:43PM -0700, Randy -Harborside Internet wrote: > We are having a problem with our mail server. It recently got > upgraded to 4.3 from 4.2, and now it is having problems with the TX > buffer somehow on the network card. Every once in awhile it will shut > off all network traffic and give these errors: > no memory for tx listrl0 > Then in a few minutes (presumably when the buffer is flushed somehow) > the network device resumes normal operation. s#flushed#drained# > We have tried 3 different NICs, and all have had the same problem. > The three models were: > 1. Realtek RTL8139A 10/100TX rl(4): rl%d: no memory for tx list The driver failed to allocate an mbuf for the transmitter ring when allocating a pad buffer or collapsing an mbuf chain into a cluster. > 2. Intel chipset:82558B fxp(4): fxp%d: Failed to malloc memory There are not enough mbuf's available for allocation. > 3. 3Com somethingerather. I'll assume you mean the etherlink(3c905) chips... xl(4): xl%d: no memory for tx list The driver failed to allocate an mbuf for the transmitter ring when allocating a pad buffer or collapsing an mbuf chain into a cluster. > We are running with 512MB of RAM, and it usually has about 200 or > more megs free at the time of this occurance. Which doesn't matter if you don't allocate enough memory to the mbuf subsystem. See below. > Is this a problem with the network drivers in 4.3? Or something else > that can be corrected? (Manual way to flush the network card > buffers??) Flush the network card buffers? That really wouldn't help anything. > Here is the output of ulimit -a, just in case that helps. It doesn't. If you look at the output of 'netstat -m' you'll see you've run mbufs (well, mbuf clusters) and that is whats causing this problem. The "requests for memory" lines will show you how many times this has bitten you in the proverbial ass. options NMBCLUSTERS is your friend. -- Bill Fumerola - security yahoo / Yahoo! inc. - fumerola@yahoo-inc.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" 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 Jul 3 14:54:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from q.closedsrc.org (ip233.gte15.rb1.bel.nwlink.com [209.20.244.233]) by hub.freebsd.org (Postfix) with ESMTP id 68E6237B403 for ; Tue, 3 Jul 2001 14:54:04 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id 1D48B55407; Tue, 3 Jul 2001 14:39:02 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id 0DA2851610; Tue, 3 Jul 2001 14:39:02 -0700 (PDT) Date: Tue, 3 Jul 2001 14:39:02 -0700 (PDT) From: Linh Pham To: Wayne Pascoe Cc: Subject: Re: named error - Weird In-Reply-To: <86elrxsn1q.fsf@pan.ehsrealtime.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 2001-07-03, Wayne Pascoe scribbled: # allow-transfer { # 127.0.0.0/8; # 192.168.1.0; }; Have you tried "192.68.1.0/24; };" for the last line in that block? -- Linh Pham [lplist@closedsrc.org] // 404b - Brain not found To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 14:55:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smithers.stomped.com (smithers.stomped.com [216.17.56.2]) by hub.freebsd.org (Postfix) with SMTP id 98D2437B403 for ; Tue, 3 Jul 2001 14:55:14 -0700 (PDT) (envelope-from malhavoc@stomped.com) Received: (qmail 67547 invoked by uid 1041); 3 Jul 2001 21:55:31 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 3 Jul 2001 21:55:31 -0000 Date: Tue, 3 Jul 2001 16:55:31 -0500 (CDT) From: Jason Nugent To: Wayne Pascoe Cc: Subject: Re: named error - Weird In-Reply-To: <86elrxsn1q.fsf@pan.ehsrealtime.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 Wayne, Without seeing the rest of your named.conf file, it's a bit hard to track down syntax errors, but, I'd take a guess at a few things - is the allow-transfer block in your options { }; section? You might also want to try re-writing that last ip range like this: allow-transfer { 127.0.0/8 ; 192.168.1/24; }; See the section titled "ADDRESS MATCH LISTS" in named.conf(5). HTH, Jason On 3 Jul 2001 at 4:50pm, Wayne Pascoe thought about > Hi all, > > I've just setup a new chrooted named server. I have the following > section in my config file : > > allow-transfer { > 127.0.0.0/8; > 192.168.1.0; }; > > When I try and start named, I get the following error in > /var/log/messages: > /etc/named.conf:19: syntax error near allow-transfer > > Line 19 is where the above section starts. No matter where I put an > allow-transfer line in the file, or an allow-query line, I get the > same errors.> > named -v reports > named 8.2.3-REL Tue Jul 3 21:15:05 BST 2001 > root@mybox.mydomain.com:/usr/obj/usr/src/usr.sbin/named > > I really would like these directives to limit certain activities. Has > anyone seen this before and solved it? > > TIA, > > -- > - Wayne Pascoe > E-mail: wayne.pascoe@realtime.co.uk > Phone : +44 (0) 20 7544 4668 > Mobile: +44 (0) 788 431 1675 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > ---------------------- Jason Nugent Aka MalHavoc Server Programmer and Administrator S T O M P E D . C O M For PGP public key: http://malhavoc.stomped.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 15: 4:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from clientmail.realtime.co.uk (simian.realtime.co.uk [194.205.134.131]) by hub.freebsd.org (Postfix) with ESMTP id 57C7837B401 for ; Tue, 3 Jul 2001 15:04:08 -0700 (PDT) (envelope-from waynep@pan.realtime.co.uk) Received: from [213.52.146.196] (helo=pan.realtime.co.uk) by clientmail.realtime.co.uk with esmtp (Exim 3.20 #1) id 15HYH7-0005J0-01; Tue, 03 Jul 2001 23:04:05 +0100 Received: from waynep by pan.realtime.co.uk with local (Exim 3.22 #1) id 15HYGa-000CLb-00; Tue, 03 Jul 2001 23:03:32 +0100 From: Wayne Pascoe To: Jason Nugent Cc: Wayne Pascoe , Subject: SOLVED Re: named error - Weird References: Reply-To: wayne.pascoe@realtime.co.uk Date: 03 Jul 2001 23:03:32 +0100 In-Reply-To: Message-ID: <861ynxsma3.fsf@pan.ehsrealtime.com> Lines: 42 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 Jason Nugent writes: > On 3 Jul 2001 at 4:50pm, Wayne Pascoe thought about > > > Hi all, > > > > I've just setup a new chrooted named server. I have the following > > section in my config file : > > > > allow-transfer { > > 127.0.0.0/8; > > 192.168.1.0; }; > > > > When I try and start named, I get the following error in > > /var/log/messages: > > /etc/named.conf:19: syntax error near allow-transfer > > > > Line 19 is where the above section starts. No matter where I put an > > allow-transfer line in the file, or an allow-query line, I get the > > same errors.> > > named -v reports > > named 8.2.3-REL Tue Jul 3 21:15:05 BST 2001 > > root@mybox.mydomain.com:/usr/obj/usr/src/usr.sbin/named > > > > I really would like these directives to limit certain activities. Has > > anyone seen this before and solved it? Ok, Let's write this one up to 'Doh! I've been at work for too many hours'. There was an additional }; in my options block. Vim, shift-5 is my friend. Just wish I thought to use that before I posted :( Sorry all, -- - Wayne Pascoe E-mail: wayne.pascoe@realtime.co.uk Phone : +44 (0) 20 7544 4668 Mobile: +44 (0) 788 431 1675 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 15: 7:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.harborside.com (mail.harborside.com [12.45.56.18]) by hub.freebsd.org (Postfix) with SMTP id CC74237B403 for ; Tue, 3 Jul 2001 15:07:18 -0700 (PDT) (envelope-from randymb@harborside.com) Received: (qmail 17567 invoked from network); 3 Jul 2001 22:06:17 -0000 Received: from unknown (HELO frenzy) (12.45.56.3) by mail.harborside.com with SMTP; 3 Jul 2001 22:06:17 -0000 From: "Randy -Harborside Internet" To: Subject: RE: TX buffer in 4.3 Date: Tue, 3 Jul 2001 15:02:19 -0700 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 In-Reply-To: <20010703161057.O47870@elvis.mu.org> 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 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Thank you very much! We totally forgot about that option in 4.3! Randy McClelland-Bane @Harborside Internet 1.866.435.3394 ext 409 469.8844 ext 409 Mobile 541.290-8849 - -----Original Message----- From: owner-freebsd-hardware@FreeBSD.ORG [mailto:owner-freebsd-hardware@FreeBSD.ORG]On Behalf Of Bill Fumerola Sent: Tuesday, July 03, 2001 2:11 PM To: Randy -Harborside Internet Cc: freebsd-hackers@FreeBSD.org Subject: Re: TX buffer in 4.3 [ not -hackers material, moved to questions ] On Tue, Jul 03, 2001 at 01:53:43PM -0700, Randy -Harborside Internet wrote: > We are having a problem with our mail server. It recently got > upgraded to 4.3 from 4.2, and now it is having problems with the TX > buffer somehow on the network card. Every once in awhile it will > shut off all network traffic and give these errors: > no memory for tx listrl0 > Then in a few minutes (presumably when the buffer is flushed > somehow) the network device resumes normal operation. s#flushed#drained# > We have tried 3 different NICs, and all have had the same problem. > The three models were: > 1. Realtek RTL8139A 10/100TX rl(4): rl%d: no memory for tx list The driver failed to allocate an mbuf for the transmitter ring when allocating a pad buffer or collapsing an mbuf chain into a cluster. > 2. Intel chipset:82558B fxp(4): fxp%d: Failed to malloc memory There are not enough mbuf's available for allocation. > 3. 3Com somethingerather. I'll assume you mean the etherlink(3c905) chips... xl(4): xl%d: no memory for tx list The driver failed to allocate an mbuf for the transmitter ring when allocating a pad buffer or collapsing an mbuf chain into a cluster. > We are running with 512MB of RAM, and it usually has about 200 or > more megs free at the time of this occurance. Which doesn't matter if you don't allocate enough memory to the mbuf subsystem. See below. > Is this a problem with the network drivers in 4.3? Or something > else that can be corrected? (Manual way to flush the network card > buffers??) Flush the network card buffers? That really wouldn't help anything. > Here is the output of ulimit -a, just in case that helps. It doesn't. If you look at the output of 'netstat -m' you'll see you've run mbufs (well, mbuf clusters) and that is whats causing this problem. The "requests for memory" lines will show you how many times this has bitten you in the proverbial ass. options NMBCLUSTERS is your friend. - -- Bill Fumerola - security yahoo / Yahoo! inc. - fumerola@yahoo-inc.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 7.0.3 for non-commercial use iQA/AwUBO0JA6sXIY+0JvubyEQKK3gCfV3Q8eLsGIPMxmC+luVaW/gAmqicAnij9 P2Ejl8sb8/vKHrEFpb5XXAas =pCoP -----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 Tue Jul 3 15:21:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from 100m.mpr200-1.esr.lvcm.net (100m.mpr200-1.esr.lvcm.net [24.234.0.80]) by hub.freebsd.org (Postfix) with ESMTP id 104F837B403 for ; Tue, 3 Jul 2001 15:21:41 -0700 (PDT) (envelope-from george@ohanaholdings.com) Received: from elvis.omidyar.org (cm232.83.120.24.lvcm.com [24.120.83.232]) by 100m.mpr200-1.esr.lvcm.net (Mirapoint) with SMTP id AGS50158; Tue, 3 Jul 2001 15:21:37 -0700 (PDT) From: George Libor Date: Tue, 03 Jul 2001 22:21:36 GMT Message-ID: <20010703.22213600@elvis.omidyar.org> Subject: Re: Java + SSL Browser To: freebsd-questions@freebsd.org In-Reply-To: <9htcpa$odt$1@FreeBSD.csie.NCTU.edu.tw> References: <9htcpa$odt$1@FreeBSD.csie.NCTU.edu.tw> X-Mailer: Mozilla/3.0 (compatible; StarOffice/5.2;Linux) X-Priority: 3 (Normal) 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 On 7/3/01, 2:17:30 PM, malhavoc@stomped.com (Jason Nugent) wrote=20 regarding Re: Java + SSL Browser: > George, > I use Netscape 6 under Linux Emulation. It supports Java via the Sun > plugin, and does SSL as well. > Jason Thanks for the tip, I actually installed=20 /usr/ports/www/linux-netscape47-navigator and it works great! > On Tue, 3 Jul 2001 at 4:16pm, George Libor thought about > > Can anyone suggest a good solution for a web browser that supports J= ava > > applets and SSL for FreeBSD 4.3? Opera does SSL but not Java, and Ho= tJava > > does Java but not SSL. > > > > Thanks in advance for any advice! > > > > -glibor > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > ---------------------- > Jason Nugent > Aka MalHavoc > Server Programmer and Administrator > S T O M P E D . C O M > For PGP public key: http://malhavoc.stomped.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 Tue Jul 3 15:22:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.allyster.com (fw.allyster.com [194.202.29.33]) by hub.freebsd.org (Postfix) with SMTP id 587F637B409 for ; Tue, 3 Jul 2001 15:22:26 -0700 (PDT) (envelope-from jslivko@jslivko.org) Received: (qmail 27976 invoked from network); 3 Jul 2001 22:24:56 -0000 Received: from mail.allyster.com (jslivko@194.202.29.35) by mail.allyster.com with SMTP; 3 Jul 2001 22:24:56 -0000 Date: Tue, 3 Jul 2001 23:24:56 +0100 (BST) From: "Jonathan M. Slivko" X-Sender: jslivko@localhost.localdomain To: freebsd-stable@freebsd.org Cc: freebsd-questions@freebsd.org Subject: can't get packages in 4.3-STABLE 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, Now that I have successfully cvs'd to 4.3-STABLE from 4.2-RELEASE, I can't get anything from the packages site on freebsd.org or via /stand/sysinstall. Any ideas how to correct this? \|||/ (o o) /-----------------------------ooO-(_)-Ooo----------------------------\ | Jonathan M. Slivko E-Mail: jslivko@jslivko.org | | IRC Nick: optix` Backup: js43064n@pace.edu | | AIM/AOL: JMSNY2001 Web : http://www.jslivko.org | |--------------------------------------------------------------------| | "History teaches us that days like this are best spent in bed" | \--------------------------------------------------------------------/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 15:25:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp8.xs4all.nl (smtp8.xs4all.nl [194.109.127.134]) by hub.freebsd.org (Postfix) with ESMTP id 39C3837B406; Tue, 3 Jul 2001 15:25:11 -0700 (PDT) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp8.xs4all.nl (8.9.3/8.9.3) with ESMTP id AAA21694; Wed, 4 Jul 2001 00:25:09 +0200 (CEST) Received: (from wkb@localhost) by freebie.xs4all.nl (8.11.4/8.11.3) id f63MP9r01944; Wed, 4 Jul 2001 00:25:09 +0200 (CEST) (envelope-from wkb) Date: Wed, 4 Jul 2001 00:25:09 +0200 From: Wilko Bulte To: "Jonathan M. Slivko" Cc: freebsd-stable@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: can't get packages in 4.3-STABLE Message-ID: <20010704002509.A1924@freebie.xs4all.nl> 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 jslivko@jslivko.org on Tue, Jul 03, 2001 at 11:24:56PM +0100 X-OS: FreeBSD 4.3-STABLE X-PGP: finger wilko@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 Tue, Jul 03, 2001 at 11:24:56PM +0100, Jonathan M. Slivko wrote: > Hello, > > Now that I have successfully cvs'd to 4.3-STABLE from 4.2-RELEASE, I can't > get anything from the packages site on freebsd.org or via > /stand/sysinstall. Any ideas how to correct this? Go to 'Options' and change '4.3-STABLE' into '4.3-RELEASE' as those are the packages on the ftp server. -- | / o / / _ Arnhem, The Netherlands email: wilko@FreeBSD.org |/|/ / / /( (_) Bulte 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 Tue Jul 3 16:13: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from listproc.corp.loudcloud.com (olly.loudcloud.com [66.54.20.10]) by hub.freebsd.org (Postfix) with ESMTP id 6A54E37B408 for ; Tue, 3 Jul 2001 16:13:02 -0700 (PDT) (envelope-from seanp@loudcloud.com) Received: from loudcloud.com (grover.geek.loudcloud.com [192.168.0.253]) by listproc.corp.loudcloud.com (8.11.3/8.10.1) with ESMTP id f63NA3311016; Tue, 3 Jul 2001 16:10:03 -0700 (PDT) Message-ID: <3B4251A6.5A5A06D5@loudcloud.com> Date: Tue, 03 Jul 2001 16:13:42 -0700 From: Sean Peck X-Mailer: Mozilla 4.74 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Artem Koutchine Cc: questions@FreeBSD.ORG Subject: Re: Java development tools and environment (your experience) References: <004a01c103ca$662bace0$0c00a8c0@ipform.ru> 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 Artem, I use emacs and make. I am sure there are some GUI development tools out there for UNIX, but I don't use them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 16:16:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.san.yahoo.com (mail.san.yahoo.com [209.132.1.30]) by hub.freebsd.org (Postfix) with ESMTP id 422C937B401 for ; Tue, 3 Jul 2001 16:16:15 -0700 (PDT) (envelope-from kjkelly@kjkelly.com) Received: from ransom (205.238.159.130) by mail.san.yahoo.com (5.5.032) id 3B383026000E65F7 for freebsd-questions@freebsd.org; Tue, 3 Jul 2001 16:15:38 -0700 From: "Kevin J. Kelly" To: Subject: Problems Recognizing and Mounting a Toshiba XM-3801B SCSI CD-ROM Date: Tue, 3 Jul 2001 18:15:24 -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.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 I am having difficult getting a Toshiba XM-3801B SCSI CDROM (SCSI ID#5) to work in my machine. It is set up on a SCSI chain with a Plextor CDR (SCSI ID#6). The controller is an Adaptec 2940. The Plextor CDR is /dev/cd1c; the Toshiba CD is /dev/cd0c. cd1 is properly detected upon boot, but the following error always occurs for cd0: cd0: Attempted to query device size failed: NOT READY, Medium not present when there is a valid media in the drive (I know it's a valid media because I can read it when I mount it under cd1). cd1 seems to work perfectly well, although I haven't tried burning a CD from it yet; but it can be mounted and read just fine. If I try to mount_cd9660 /dev/cd0c /mnt/cd0, I receive a "device not configured error" typically with an occasional "input/output error". There are no other SCSI devices in the system. Does anyone have any tips on what I should look for or what could cause a problem like this? Thank you, Kevin J. Kelly To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 16:21:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imo-m01.mx.aol.com (imo-m01.mx.aol.com [64.12.136.4]) by hub.freebsd.org (Postfix) with ESMTP id 36B0037B403 for ; Tue, 3 Jul 2001 16:21:22 -0700 (PDT) (envelope-from Elliswond@aol.com) Received: from Elliswond@aol.com by imo-m01.mx.aol.com (mail_out_v30.22.) id n.ae.173df0b7 (3964) for ; Tue, 3 Jul 2001 19:21:18 -0400 (EDT) From: Elliswond@aol.com Message-ID: Date: Tue, 3 Jul 2001 19:21:18 EDT Subject: HELP To: questions@freebsd.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="part1_ae.173df0b7.2873ad6e_boundary" X-Mailer: AOL 6.0 for Windows US sub 10513 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --part1_ae.173df0b7.2873ad6e_boundary Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit i've stepped into a nightmare. I just started recently with this new company. The networking platform is freebsd server with windows98 workstations. The administrator has fallen off the face of the earth. I'm having all kinds of problems... i don't know what to do. I keep getting all these error messages from the workstations anytime we try to print or save to the network saying "not enough disk space" !!!???? There's two gigs of disk space....please help.... elliswond@aol.com josh riley --part1_ae.173df0b7.2873ad6e_boundary Content-Type: text/html; charset="US-ASCII" Content-Transfer-Encoding: 7bit i've stepped into a nightmare.  I just started recently with this new
company.  The networking platform is freebsd server with windows98
workstations.  The administrator has fallen off the face of the earth.  I'm
having all kinds of problems... i don't know what to do.   I keep getting all
these error messages from the workstations anytime we try to print or save to
the network saying "not enough disk space"  !!!????   There's two gigs of
disk space....please help....
elliswond@aol.com
josh riley
--part1_ae.173df0b7.2873ad6e_boundary-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 16:29:35 2001 Delivered-To: freebsd-questions@freebsd.org Received: from c007.snv.cp.net (c007-h000.c007.snv.cp.net [209.228.33.206]) by hub.freebsd.org (Postfix) with SMTP id 626B337B405 for ; Tue, 3 Jul 2001 16:29:31 -0700 (PDT) (envelope-from otterr@telocity.com) Received: (cpmta 24359 invoked from network); 3 Jul 2001 16:29:25 -0700 Received: from dsl-216-227-91-85.telocity.com (HELO zoso) (216.227.91.85) by smtp.telocity.com (209.228.33.206) with SMTP; 3 Jul 2001 16:29:25 -0700 X-Sent: 3 Jul 2001 23:29:25 GMT Reply-To: From: "Otter" To: , Subject: RE: HELP Date: Tue, 3 Jul 2001 19:27:44 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 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 A)Please format your email to this list in plain text, rather than HTML. b) ok.. so you have 2GB of disk space. Is it all free? and do you have plenty of free drive space in the area where you're trying to save/spool to? -Otter -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Elliswond@aol.com Sent: Tuesday, July 03, 2001 7:21 PM To: questions@freebsd.org Subject: HELP i've stepped into a nightmare. I just started recently with this new company. The networking platform is freebsd server with windows98 workstations. The administrator has fallen off the face of the earth. I'm having all kinds of problems... i don't know what to do. I keep getting all these error messages from the workstations anytime we try to print or save to the network saying "not enough disk space" !!!???? There's two gigs of disk space....please help.... elliswond@aol.com josh riley To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 16:50:28 2001 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 3836137B401 for ; Tue, 3 Jul 2001 16:50:25 -0700 (PDT) (envelope-from drosih@rpi.edu) 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 f63NoIV37868; Tue, 3 Jul 2001 19:50:18 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20010703001800.A776@rhubarb.pirns.net> References: <20010703001800.A776@rhubarb.pirns.net> Date: Tue, 3 Jul 2001 19:50:16 -0400 To: peeter@pirns.net, freebsd-questions@FreeBSD.ORG From: Garance A Drosihn Subject: Re: lpc start failure 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:18 AM -0500 7/3/01, Peeter Pirn wrote: >For the record: `man lpd' conflicts with reality on my >3.2-RELEASE machine. The problem is that you're running a very old snapshot of the operating system. It would be very good if you could update your machine to a newer version, even if it's just a more recent version of the release-3 branch. Release 3.2 is from about June of 1999. >On my machine, the lock file needs to be removed even after >running `lpc stop', like a good boy: > ># lpc stop lp2 >lp: > printing disabled ># lpc start lp2 >lp: > printing enabled > daemon started ># lpc status lp2 >lp: > queuing is enabled > printing is disabled > no entries in spool area > printer idle This is a bug in the 'lpc start' command, which was fixed on January 24th, 2000 (revision 1.12.2.2 of lpc/cmds.c). That's what went out with 3.5-RELEASE. (if this bug bothers you, and you don't want to update your entire operating system, you could just get that version of lpr/lpc and just compile and install that). -- 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 Tue Jul 3 16:59:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail8.sdc1.sfba.home.com (femail8.sdc1.sfba.home.com [24.0.95.88]) by hub.freebsd.org (Postfix) with ESMTP id AE74537B403 for ; Tue, 3 Jul 2001 16:59:08 -0700 (PDT) (envelope-from brad-watts@home.com) Received: from home.com ([24.101.88.59]) by femail8.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010703235908.GFRS17020.femail8.sdc1.sfba.home.com@home.com> for ; Tue, 3 Jul 2001 16:59:08 -0700 Message-ID: <3B425C75.6000CE7F@home.com> Date: Tue, 03 Jul 2001 19:59:49 -0400 From: Brad X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: How Does One Realease and/or Renew IP's in UNIX?? 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 In dos, one can implement the all too familiar: ipconfig /release_all ....and consequently: ipconfig /renew_all But, how can you do this in UNIX? Scanned through ifconfig man, tried shutting down the network interface. No go.. Anyone know? Thanks Brad To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 17:12: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sh.stonehenge-net.com (dsl081-053-198.sfo1.dsl.speakeasy.net [64.81.53.198]) by hub.freebsd.org (Postfix) with ESMTP id 9269037B405 for ; Tue, 3 Jul 2001 17:12:01 -0700 (PDT) (envelope-from ben@stonehenge-net.com) Received: from stonehenge-net.com ([162.70.219.195]) by sh.stonehenge-net.com (8.9.3/8.8.7) with ESMTP id QAA22778 for ; Tue, 3 Jul 2001 16:12:35 -0400 Message-ID: <3B425F33.6050804@stonehenge-net.com> Date: Tue, 03 Jul 2001 17:11:31 -0700 From: ben User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.2+) Gecko/20010703 X-Accept-Language: en-us MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: getting -stable without make world (was re: make world without gcc) 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 ok... is there some other way to get up to date? can i generate a -stable iso from my source tree then? Kris Kennaway wrote: > On Tue, Jul 03, 2001 at 10:43:55AM -0700, ben wrote: > >> am building a firewall box, and would like to update it using the >> sourcetree i keep on my fileserver. it looks like i can turn off >> most of the things i dont want built (perl, etc) in make.conf, but is >> there any way to avoid having gcc installed? > > > Nope. > > Kris > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 17:19:55 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kineo.bowdoin.edu (kineo.bowdoin.edu [139.140.14.35]) by hub.freebsd.org (Postfix) with ESMTP id 48F4D37B403 for ; Tue, 3 Jul 2001 17:19:52 -0700 (PDT) (envelope-from mcowger@bowdoin.edu) Received: from bowdoin.edu ([139.140.133.82]) by kineo.bowdoin.edu (Netscape Messaging Server 4.15) with ESMTP id GFXA9300.GIC; Tue, 3 Jul 2001 20:19:51 -0400 Message-ID: <3B426127.1050303@bowdoin.edu> Date: Tue, 03 Jul 2001 20:19:51 -0400 From: "Matthew K. Cowger" User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.1) Gecko/20010607 Netscape6/6.1b1 X-Accept-Language: en-us MIME-Version: 1.0 To: Brad Cc: freebsd-questions@FreeBSD.ORG Subject: Re: How Does One Realease and/or Renew IP's in UNIX?? References: <3B425C75.6000CE7F@home.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 if the interface is set for DHCP, ifconfig ep0 down, ifconfig ep0 up will do it. Brad wrote: >In dos, one can implement the all too familiar: > >ipconfig /release_all > >....and consequently: > >ipconfig /renew_all > >But, how can you do this in UNIX? Scanned through ifconfig man, tried >shutting down the network interface. No go.. Anyone know? > >Thanks > >Brad > > >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 Jul 3 17:28:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from h24-79-100-73.vc.shawcable.net (h24-79-100-73.vc.shawcable.net [24.79.100.73]) by hub.freebsd.org (Postfix) with ESMTP id 50CDB37B401 for ; Tue, 3 Jul 2001 17:28:10 -0700 (PDT) (envelope-from james@site-fx.net) Received: from [192.168.0.1] (kissyfur [192.168.0.1]) by h24-79-100-73.vc.shawcable.net (8.11.4/8.11.4) with ESMTP id f640YRo61676; Tue, 3 Jul 2001 17:34:28 -0700 (PDT) (envelope-from james@site-fx.net) User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2022 Date: Tue, 03 Jul 2001 17:27:24 -0700 Subject: Re: Transparent HTTP cashing. From: "James A. Peltier" To: Usov Alexander , Message-ID: In-Reply-To: <200107031916.WAA28630@fatlady.ukr.net> 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 Yup. i use squid with IPF to transparently route traffic to the squid box. Very good. - James > From: "Usov Alexander" > Reply-To: "Usov Alexander" > Date: Tue, 3 Jul 2001 22:16:52 +0300 (EEST) > To: questions@FreeBSD.ORG > Subject: Transparent HTTP cashing. > > Hi! > > Some time ago I saw article about transparent HTTP caching with BSD/OS. > Is it possible to do the same trick with FreeBSD? > > PS. > Sorry for 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 Jul 3 17:31: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost.lhr1.globix.com (mailhost.lhr1.globix.com [212.111.39.231]) by hub.freebsd.org (Postfix) with ESMTP id 8896737B405 for ; Tue, 3 Jul 2001 17:31:06 -0700 (PDT) (envelope-from nwarren@globix.com) Received: from LHR10038 ([212.111.34.7]) by mailhost.lhr1.globix.com (Netscape Messaging Server 4.15) with SMTP id GFXARS00.9EF for ; Wed, 4 Jul 2001 00:31:05 +0000 From: "Nathan Warren" To: Subject: What is the latest version ? Date: Wed, 4 Jul 2001 01:30:51 +0100 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 Hello... I have up until now been installing and using FreeBSD 4.1 which I brought from the Walnut Creek website. On the FreeBSD website I can see that the latest release is 4.3, however I have also seen references to a version 5.0. Which of these is the most up to date and what differences are there between the two. Many thanks for any help or advice anyone can offer Regards Nathan Warren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 17:36:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by hub.freebsd.org (Postfix) with ESMTP id 79DB037B403 for ; Tue, 3 Jul 2001 17:36:47 -0700 (PDT) (envelope-from natefox@pacbell.net) Received: from Nathan ([63.200.182.50]) by mta7.pltn13.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with SMTP id <0GFX00MX8B0HSA@mta7.pltn13.pbi.net> for freebsd-questions@FreeBSD.ORG; Tue, 03 Jul 2001 17:36:17 -0700 (PDT) Date: Tue, 03 Jul 2001 17:44:17 -0700 From: Nathan Subject: xdsl To: freebsd-questions@FreeBSD.ORG Message-id: MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8BIT 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 Greetings Does FreeBSD currently support digital modems for DSL connections? If so what digital modems does it support? Sincerely, Nathan Fox ____________________________________________ Network Administrator Learning Centers of Tehama County Phone: (530)527-0188 Fax: (530)527-0273 “If you know yourself and you know your enemy victory is not an option.” --Sun Tzu "The Art of War" -----BEGIN GEEK CODE BLOCK----- GIT/ED d+ s: a-- C++$ UB+$ 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 z- -----END GEEK CODE BLOCK----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 17:40:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from h24-79-100-73.vc.shawcable.net (h24-79-100-73.vc.shawcable.net [24.79.100.73]) by hub.freebsd.org (Postfix) with ESMTP id EFA3637B403 for ; Tue, 3 Jul 2001 17:40:12 -0700 (PDT) (envelope-from james@site-fx.net) Received: from [192.168.0.1] (kissyfur [192.168.0.1]) by h24-79-100-73.vc.shawcable.net (8.11.4/8.11.4) with ESMTP id f640kQo72326; Tue, 3 Jul 2001 17:46:27 -0700 (PDT) (envelope-from james@site-fx.net) User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2022 Date: Tue, 03 Jul 2001 17:39:22 -0700 Subject: Re: Network grapher? From: "James A. Peltier" To: , Message-ID: In-Reply-To: <01070320535102.96055@evilfry.dyndns.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 HP Openview will map an entire network for you (Not on FreeBSD). i do believe that you must have SNMP capable devices though. In any case you can use MRTG to graph traffic on your network by installing ucd-snmp and MRTG. - James > From: James Lim > Reply-To: evilfry@sg.freebsd.org > Date: Tue, 3 Jul 2001 20:53:51 +0800 > To: freebsd-questions@FreeBSD.ORG > Subject: Network grapher? > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi all, > > I remembered coming across a software that does a graphical map of a > network by doing traceroutes and pings , etc, in order to graph out a > whole network. Anyone have any idea which software is this for > FreeBSD? Thanks in advance! > > - -- > Regards, > James Lim > http://sg.freebsd.org | http://www.bsd-geeks.org > -----BEGIN PGP SIGNATURE----- > Version: PGP 6.5.8 > > iQA/AwUBO0HAX5pTakonTMbIEQKH9gCgoqh/NlTqwwZH8QnymUrBIekCKDwAoLwk > +FWDiU7LvujhY8PgcBHvOMZZ > =/SND > -----END PGP SIGNATURE----- > > 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 Jul 3 17:42:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns2.austclear.com.au (ns2.austclear.com.au [192.43.185.70]) by hub.freebsd.org (Postfix) with ESMTP id DD84137B401 for ; Tue, 3 Jul 2001 17:42:41 -0700 (PDT) (envelope-from ahl@austclear.com.au) Received: from tungsten.austclear.com.au (tungsten.austclear.com.au [192.168.70.1]) by ns2.austclear.com.au (8.11.2/8.11.3) with ESMTP id f640gZp04325; Wed, 4 Jul 2001 10:42:35 +1000 (EST) (envelope-from ahl@austclear.com.au) Received: from tungsten (tungsten [192.168.70.1]) by tungsten.austclear.com.au (8.9.3/8.9.3) with ESMTP id KAA21733; Wed, 4 Jul 2001 10:42:35 +1000 (EST) Message-Id: <200107040042.KAA21733@tungsten.austclear.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: Sheldon Hearn Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Tightening up ntpd In-Reply-To: Message from Sheldon Hearn of "Tue, 03 Jul 2001 11:16:56 +0200." <24350.994151816@axl.seasidesoftware.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 04 Jul 2001 10:42:34 +1000 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 sheldonh@starjuice.net said: > What do I do in /etc/ntp.conf to prevent hosts other than those I list > with "server" from changing my time? I know how to do this with a > firewall, but get the feeling from the ntp.conf(5) manual page that it > could be done in there. > To be honest, the ntp.conf(5) page overwhelms me a little. :-) There is some additional documentation at www.ntp.org. It's slightly better than the ntp.conf man page. Slightly... The section you want to look at in the ntp.conf man page is the one headed "Access Control Support". What you want to add to your ntp.conf is something like: # Change the default behaviour to ignore everything restrict 0.0.0.0 mask 0.0.0.0 ignore # If we want to use "ntpq", for example, we need some local access restrict 127.0.0.1 noserve notrap notrust # These are our two nameservers (provided by our ISP) # We query them, so they don't need much access to us... restrict 192.189.54.17 nomodify noquery notrap ntpport restrict 192.189.54.33 nomodify noquery notrap ntpport To find out exactly what the options are, you'll need to read the man page, but if you want to ask specific questions about what I understand them to do, send me e-mail. Of course, I'm not a definitive source of wisdom--for that you should go through the references at www.ntp.org 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 Tue Jul 3 17:45:35 2001 Delivered-To: freebsd-questions@freebsd.org Received: from bleys.tpgi.com.au (bleys.tpgi.com.au [203.12.160.38]) by hub.freebsd.org (Postfix) with ESMTP id 4AA7837B401 for ; Tue, 3 Jul 2001 17:45:32 -0700 (PDT) (envelope-from marcd@internode.on.net) Received: (from smtpd@localhost) by bleys.tpgi.com.au (8.11.2/8.11.2) id f640jUw15506 for ; Wed, 4 Jul 2001 10:45:30 +1000 Received: from adl2-56k-099.tpgi.com.au(203.29.136.99), claiming to be "zen" via SMTP by bleys.tpgi.com.au, id smtpd5XOcea; Wed Jul 4 10:45:18 2001 Message-ID: <001001c10423$690f2050$0210a8c0@dodsworth.com.au> From: "Marc Dodsworth" To: Subject: using fixit floppy/CD-ROM Date: Wed, 4 Jul 2001 10:21:03 +0930 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 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 Playing around with Windows 2000, I seem to have somehow changed my slice numbers and as a result FreeBSD no longer finds things where they should be. da0s2a is now da03a and so fourth (my Windows 2000 partition when from being slice 0 to slice 4) What's the best way to get in and edit my /etc/fstab file? My system is running 4.3 but my CD-ROMs are the 4.0 distribution. I boot usnig the live filesystem CD and use the fixit CD option I can't mount my drive - there are only slice entries in /dev but not for partitions and there is no makedev to create it. thankx in advance for any help Marc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 18: 0:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from wingerboy.sonic.net (fw.office.sonic.net [209.204.177.119]) by hub.freebsd.org (Postfix) with ESMTP id A355937B401 for ; Tue, 3 Jul 2001 18:00:17 -0700 (PDT) (envelope-from kgc@wingerboy.sonic.net) Date: Tue, 3 Jul 2001 17:59:31 -0700 From: Kelsey Cummings To: Nathan Cc: freebsd-questions@FreeBSD.ORG Subject: Re: xdsl Message-ID: <20010703175931.L64435@sonic.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: ; from natefox@pacbell.net on Tue, Jul 03, 2001 at 05:44:17PM -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, Jul 03, 2001 at 05:44:17PM -0700, Nathan wrote: > Greetings > > Does FreeBSD currently support digital modems for DSL connections? If so > what digital modems does it support? Typically, your DSL 'modem' is an ethernet bridge. In which case the more important question is, "does fbsd support my ethernet card" because the bridge is transparent to the OS. Noting your pacbell.net email address I'll assume that you're going to need to figure out how to get PPPoE up and running too. (Sorry, can't help you there.) > > Sincerely, > > Nathan Fox > ____________________________________________ > Network Administrator > Learning Centers of Tehama County > Phone: (530)527-0188 > Fax: (530)527-0273 > > “If you know yourself and you know your enemy victory is not an option.” > > --Sun Tzu "The Art of War" > -----BEGIN GEEK CODE BLOCK----- > GIT/ED d+ s: a-- C++$ UB+$ 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 z- > -----END GEEK CODE BLOCK----- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kelsey Cummings - kgc@sonic.net sonic.net System Administrator 300 B Street, Ste 101 707.522.1000 (Voice) Santa Rosa, CA 95404 707.547.2199 (Fax) http://www.sonic.net/ Fingerprint = 7F 59 43 1B 44 8A 0D 57 91 08 73 73 7A 48 90 C5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 18: 5:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from q.closedsrc.org (ip233.gte15.rb1.bel.nwlink.com [209.20.244.233]) by hub.freebsd.org (Postfix) with ESMTP id CB17137B405 for ; Tue, 3 Jul 2001 18:05:20 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id AF4AC55407; Tue, 3 Jul 2001 17:50:18 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id 9D9C551610; Tue, 3 Jul 2001 17:50:18 -0700 (PDT) Date: Tue, 3 Jul 2001 17:50:18 -0700 (PDT) From: Linh Pham To: Kelsey Cummings Cc: Nathan , Subject: Re: xdsl In-Reply-To: <20010703175931.L64435@sonic.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 2001-07-03, Kelsey Cummings scribbled: # Typically, your DSL 'modem' is an ethernet bridge. In which case the more # important question is, "does fbsd support my ethernet card" because the # bridge is transparent to the OS. Noting your pacbell.net email address # I'll assume that you're going to need to figure out how to get PPPoE # up and running too. # # (Sorry, can't help you there.) One thing you can look at is to get a DSL/Cable router that handles the PPPoE side of things... that way you can also have a small amount of protection if you decide to use as a mini-firewall. -- Linh Pham [lplist@closedsrc.org] // 404b - Brain not found To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 18:27:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.plug.cx (unix-gw.gihs.sa.edu.au [203.63.40.115]) by hub.freebsd.org (Postfix) with ESMTP id 3871137B410 for ; Tue, 3 Jul 2001 18:27:10 -0700 (PDT) (envelope-from andrew.reid@plug.cx) Received: from [172.16.1.1] (firewall.gihs.sa.edu.au [192.168.1.1]) by mail.plug.cx (Postfix) with ESMTP id 45BAD2B7DE for ; Wed, 4 Jul 2001 11:18:44 +0000 (GMT) Subject: Static NAT using natd From: Andrew Reid To: freebsd-questions@freebsd.org Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/0.10.99 (Preview Release) Date: 04 Jul 2001 10:47:32 +0930 Message-Id: <994209462.6462.14.camel@percible.alfred.cx> 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 Hello All, From the documentation that I've read, it's possible to do static NAT using natd. However, I have a /26 subnet that I need to run static NAT on. Ie, I want connections from my (internal) mail server to be run out through 1.2.3.1, and connections from my (internal) web server to be run out through 1.2.3.2. I know this is quite trivial using IPF (well, IPNAT), but it seems to be quite difficult to do (with natd) when there are 60-odd addresses, each with their own pathways. Have I missed something that can allow me to use natd to do what I've outlined above? If so, can anyone suggest any documentation that could help in this circumstance? If it's not really feasable, how are others doing it? Thanks in advance, - andrew -- void signature () { cout << "Andrew Reid -- andrew.reid@plug.cx" << endl ; cout << "Cell: +61 401 946 813" << endl; cout << "Quidquid latine dictum sit, altum viditur" << endl; } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 18:31:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from oddjob.adhesivemedia.com (oddjob.adhesivemedia.com [207.202.159.77]) by hub.freebsd.org (Postfix) with ESMTP id F325637B403 for ; Tue, 3 Jul 2001 18:31:33 -0700 (PDT) (envelope-from philip@adhesivemedia.com) Received: from localhost (philip@localhost) by oddjob.adhesivemedia.com (8.11.1/8.11.1) with ESMTP id f641XMb00351 for ; Tue, 3 Jul 2001 18:33:22 -0700 (PDT) (envelope-from philip@adhesivemedia.com) Date: Tue, 3 Jul 2001 18:33:22 -0700 (PDT) From: Philip Hallstrom To: Subject: urgent: Getting a lot of "parity error" messages in /var/log/messages!?!?!?! Message-ID: <20010703182933.C328-100000@oddjob.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 Hi - For the last week I've been getting quite a few of the below errors... the first one repeats a lot, then after awhile the last three happen. Twice now this has completely frozen the machine. The only change I've made is to add RAM, but this seems related to my SCSI disk... The machine is running 4.2-STABLE and has been fine for over a year... Can anyone shed some light one this? /kernel: (da0:ahc0:0:0:0): parity error detected in Data-in phase. SEQADDR(0x1ac) SCSIRATE(0x93) /kernel: (da0:ahc0:0:0:0): READ(10). CDB: 28 0 0 a8 b8 3f 0 0 2 0 /kernel: (da0:ahc0:0:0:0): ABORTED COMMAND asc:48,0 /kernel: (da0:ahc0:0:0:0): Initiator detected error message received Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 18:32:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.utexas.edu (wb2-a.mail.utexas.edu [128.83.126.136]) by hub.freebsd.org (Postfix) with SMTP id 3507837B403 for ; Tue, 3 Jul 2001 18:32:35 -0700 (PDT) (envelope-from oscars@mail.utexas.edu) Received: (qmail 16009 invoked by uid 0); 4 Jul 2001 01:32:31 -0000 Received: from dhcp-199-210.dsl.utexas.edu (HELO oscar.mail.utexas.edu) (128.83.199.210) by umbs-smtp-2 with SMTP; 4 Jul 2001 01:32:31 -0000 Message-Id: <5.1.0.14.2.20010703203403.00a6c7f0@mail.utexas.edu> X-Sender: oscars@mail.utexas.edu X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Tue, 03 Jul 2001 20:35:34 -0500 To: "Usov Alexander" From: Oscar Ricardo Silva Subject: Re: DNS caching. Cc: questions@freebsd.org In-Reply-To: <200107031919.WAA29686@fatlady.ukr.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 The dnscache portion of djbdns will do it. Look for it in the ports under: /usr/ports/net/djbdns Oscar At 10:19 PM 07/03/2001 +0300, Usov Alexander, you wrote: >Hi! > >Which software may cache DNS queries (except of BIND). > > > >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 Jul 3 18:57:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rz.uni-ulm.de (sirius-giga.rz.uni-ulm.de [134.60.246.36]) by hub.freebsd.org (Postfix) with ESMTP id A967037B403 for ; Tue, 3 Jul 2001 18:57:09 -0700 (PDT) (envelope-from Siegbert.Baude@gmx.de) Received: from lilith (lilith.wohnheim.uni-ulm.de [134.60.106.64]) by mail.rz.uni-ulm.de (8.9.3/8.9.3) with SMTP id DAA17408; Wed, 4 Jul 2001 03:57:05 +0200 (MEST) Message-ID: <00d601c1042c$a777c140$4011a8c0@wohnheim.uniulm.de> From: "Siegbert Baude" To: "Etienne de Bruin" Cc: References: <9D4A4E19244ED4119BE90050DAD5DD47BC54F3@mail.quidel.com> Subject: Re: Disabling xdm/kdm - Got it! Date: Wed, 4 Jul 2001 03:57:16 +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 Etienne, >> How can I disable xdm, i.e. how can get my console back? >> I typically need this to de install kdm so that i can re-install a newer >> version. > All I had to do was comment out my local server in the Xservers file. I think the normal way would be to to switch "on" to "off in the relevant line of /etc/ttys . Ciao Siegbert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 19:13:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cantvc.canterbury.ac.nz (cantvm.canterbury.ac.nz [132.181.2.36]) by hub.freebsd.org (Postfix) with ESMTP id 4908737B401 for ; Tue, 3 Jul 2001 19:13:24 -0700 (PDT) (envelope-from rbm49@rbm49.tacacs.canterbury.ac.nz) Received: from CONVERSION-DAEMON.it.canterbury.ac.nz by it.canterbury.ac.nz (PMDF V6.0-025 #45723) id <01K5JAZ1FN9C9N789Z@it.canterbury.ac.nz> for freebsd-questions@freebsd.org; Wed, 04 Jul 2001 14:13:22 +1200 (NEW ZEALAND STANDARD TIME) Received: from rbm49.tacacs.canterbury.ac.nz (rbm49.tacacs.canterbury.ac.nz [172.31.164.87]) by it.canterbury.ac.nz (PMDF V6.0-025 #45723) with ESMTP id <01K5JAZ0KRWA9N6YWK@it.canterbury.ac.nz> for freebsd-questions@freebsd.org; Wed, 04 Jul 2001 14:13:22 +1200 (NEW ZEALAND STANDARD TIME) Received: from rbm49 by rbm49.tacacs.canterbury.ac.nz with local (Exim 3.22 #1) id 15HcAC-0002cK-00 for freebsd-questions@FreeBSD.org; Wed, 04 Jul 2001 14:13:12 +1200 Date: Wed, 04 Jul 2001 14:13:11 +1200 From: Richard B Mahoney Subject: Intel OR840 Motherboard To: Subscribers to FreeBSD-Questions Reply-To: Richard B Mahoney Mail-Followup-To: Subscribers to FreeBSD-Questions Message-id: <20010704141311.A9156@csc.canterbury.ac.nz> MIME-version: 1.0 Content-type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary=tKW2IUtsqtDRztdT Content-disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.3-RELEASE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --tKW2IUtsqtDRztdT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Dear Readers, I've finally decided to get myself a new workstation. I want to continue with FreeBSD 4.3-RELEASE but have had no luck tracking down components on the compatability list at: http://www.freebsd.org/handbook/install-hw.html Have any readers had any issues with the following: Motherboard - Intel OR840 CPU - 2x Intel Pentium III 933MHz Slot 1 Physical Memory - Intel 128MB Rambus (256MB Rambus) Network Card - Integrated Intel 10/100 Network Card Any assistance would be gratefully received. Many regards, Richard Mahoney =20 --=20 +----------------------- Richard Mahoney -----------------------+ | 78 Jeffreys Rd +64-3-351-5831 | | Christchurch New Zealand | +-------------- mailto:rbm49@csc.canterbury.ac.nz --------------+ --tKW2IUtsqtDRztdT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 5.0i for non-commercial use MessageID: 73ddyIIZsmnwYBtDdUgEvzzlbzUm8ps1 iQA/AwUBO0J7tQn6GtkLihbYEQLQZQCfS3NP2v5QPQyo1SgR60MV+uNXn7sAn1m3 xdzX6OjDSfxZgI0eHEpiuK/5 =+clf -----END PGP SIGNATURE----- --tKW2IUtsqtDRztdT-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 19:29:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from spade.pacific.net.sg (spade.pacific.net.sg [203.120.90.71]) by hub.freebsd.org (Postfix) with ESMTP id 89B5437B401 for ; Tue, 3 Jul 2001 19:29:22 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop1.pacific.net.sg (pop1.pacific.net.sg [203.120.90.85]) by spade.pacific.net.sg with ESMTP id f642TLm03673 for ; Wed, 4 Jul 2001 10:29:21 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop1.pacific.net.sg with ESMTP id KAA16235 for ; Wed, 4 Jul 2001 10:29:21 +0800 (SGT) Message-ID: <3B4280D5.40A2AE59@pacific.net.sg> Date: Wed, 04 Jul 2001 10:35:01 +0800 From: Kelvin Ng Chee Hoong X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: zh-TW,en MIME-Version: 1.0 To: "freebsd-questions@FreeBSD.ORG" Subject: Restart rc.conf 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 ; After I have change the IP address of the erthernet card , how do I restart it to update the change without rebooting the system . I've tried type ". /etc/rc.conf" but seems like not work at all . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 19:35: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sunny.pacific.net.sg (sunny.pacific.net.sg [203.120.90.127]) by hub.freebsd.org (Postfix) with ESMTP id 09E5E37B408 for ; Tue, 3 Jul 2001 19:35:06 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop1.pacific.net.sg (pop1.pacific.net.sg [203.120.90.85]) by sunny.pacific.net.sg with ESMTP id f641fEr03530; Wed, 4 Jul 2001 09:41:14 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop1.pacific.net.sg with ESMTP id KAA01886; Wed, 4 Jul 2001 10:34:47 +0800 (SGT) Message-ID: <3B42821C.212CB782@pacific.net.sg> Date: Wed, 04 Jul 2001 10:40:28 +0800 From: Kelvin Ng Chee Hoong X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: zh-TW,en MIME-Version: 1.0 To: "Jonathan M. Slivko" Cc: "freebsd-questions@FreeBSD.ORG" Subject: Re: Restart rc.conf 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 HI Jonathan ; But when I type "ifconfig" , it shows me the affected ethernet card still holding old IP address. "Jonathan M. Slivko" wrote: > ifconfig will unbind and bind the new IP's without the need for a reboot, > AFAIK. -- Jonathan > > \|||/ > (o o) > /-----------------------------ooO-(_)-Ooo----------------------------\ > | Jonathan M. Slivko E-Mail: jslivko@jslivko.org | > | IRC Nick: optix` Backup: js43064n@pace.edu | > | AIM/AOL: JMSNY2001 Web : http://www.jslivko.org | > |--------------------------------------------------------------------| > | "History teaches us that days like this are best spent in bed" | > \--------------------------------------------------------------------/ > > On Wed, 4 Jul 2001, Kelvin Ng Chee Hoong wrote: > > > Hi ; > > After I have change the IP address of the erthernet card , how do I > > restart it to update the change without rebooting the system . > > I've tried type ". /etc/rc.conf" but seems like not work at all . > > > > > > 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 Jul 3 19:38:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kineo.bowdoin.edu (kineo.bowdoin.edu [139.140.14.35]) by hub.freebsd.org (Postfix) with ESMTP id 75BE337B401 for ; Tue, 3 Jul 2001 19:38:43 -0700 (PDT) (envelope-from mcowger@bowdoin.edu) Received: from bowdoin.edu ([127.0.0.1]) by kineo.bowdoin.edu (Netscape Messaging Server 4.15) with ESMTP id GFXGOI00.5JQ; Tue, 3 Jul 2001 22:38:42 -0400 From: "Matthew K. Cowger" To: Kelvin Ng Chee Hoong Cc: "Jonathan M. Slivko" , "freebsd-questions@FreeBSD.ORG" Message-ID: <3b55d93b5886.3b58863b55d9@bowdoin.edu> Date: Tue, 03 Jul 2001 22:38:42 -0400 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: Re: Restart rc.conf X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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 By design, a DHCP server will always give you the same address you had before if at all possible, this is part of the RFC for DHCP itself, and is normal behavior. Matt ----- Original Message ----- From: Kelvin Ng Chee Hoong Date: Tuesday, July 3, 2001 10:40 pm Subject: Re: Restart rc.conf > HI Jonathan ; > But when I type "ifconfig" , it shows me the affected ethernet > card still > holding old IP address. > > "Jonathan M. Slivko" wrote: > > > ifconfig will unbind and bind the new IP's without the need for > a reboot, > > AFAIK. -- Jonathan > > > > \|||/ > > (o o) > > /-----------------------------ooO-(_)-Ooo----------------------- > -----\ > > | Jonathan M. Slivko E-Mail: jslivko@jslivko.org > | > > | IRC Nick: optix` Backup: js43064n@pace.edu > | > > | AIhttp://www.jslivko.org | > > |--------------------------------------------------------------- > -----| > > | "History teaches us that days like this are best spent in > bed" | > > \--------------------------------------------------------------- > -----/ > > > > On Wed, 4 Jul 2001, Kelvin Ng Chee Hoong wrote: > > > > > Hi ; > > > After I have change the IP address of the erthernet card , > how do I > > > restart it to update the change without rebooting the system . > > > I've tried type ". /etc/rc.conf" but seems like not work > at all . > > > > > > > > > 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 Tue Jul 3 19:42:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sunny.pacific.net.sg (sunny.pacific.net.sg [203.120.90.127]) by hub.freebsd.org (Postfix) with ESMTP id 3D38337B409 for ; Tue, 3 Jul 2001 19:42:32 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop1.pacific.net.sg (pop1.pacific.net.sg [203.120.90.85]) by sunny.pacific.net.sg with ESMTP id f641mfr07086; Wed, 4 Jul 2001 09:48:41 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop1.pacific.net.sg with ESMTP id KAA23765; Wed, 4 Jul 2001 10:42:29 +0800 (SGT) Message-ID: <3B4283EA.58C66093@pacific.net.sg> Date: Wed, 04 Jul 2001 10:48:10 +0800 From: Kelvin Ng Chee Hoong X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: zh-TW,en MIME-Version: 1.0 To: "Matthew K. Cowger" Cc: "Jonathan M. Slivko" , "freebsd-questions@FreeBSD.ORG" Subject: Re: Restart rc.conf References: <3b55d93b5886.3b58863b55d9@bowdoin.edu> 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 even not run DHCP server as well . "Matthew K. Cowger" wrote: > By design, a DHCP server will always give you the same address you had > before if at all possible, this is part of the RFC for DHCP itself, and > is normal behavior. > > Matt > > ----- Original Message ----- > From: Kelvin Ng Chee Hoong > Date: Tuesday, July 3, 2001 10:40 pm > Subject: Re: Restart rc.conf > > > HI Jonathan ; > > But when I type "ifconfig" , it shows me the affected ethernet > > card still > > holding old IP address. > > > > "Jonathan M. Slivko" wrote: > > > > > ifconfig will unbind and bind the new IP's without the need for > > a reboot, > > > AFAIK. -- Jonathan > > > > > > \|||/ > > > (o o) > > > /-----------------------------ooO-(_)-Ooo----------------------- > > -----\ > > > | Jonathan M. Slivko E-Mail: jslivko@jslivko.org > > | > > > | IRC Nick: optix` Backup: js43064n@pace.edu > > | > > > | AIhttp://www.jslivko.org | > > > |--------------------------------------------------------------- > > -----| > > > | "History teaches us that days like this are best spent in > > bed" | > > > \--------------------------------------------------------------- > > -----/ > > > > > > On Wed, 4 Jul 2001, Kelvin Ng Chee Hoong wrote: > > > > > > > Hi ; > > > > After I have change the IP address of the erthernet card , > > how do I > > > > restart it to update the change without rebooting the system . > > > > I've tried type ". /etc/rc.conf" but seems like not work > > at all . > > > > > > > > > > > > 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 19:46:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web11505.mail.yahoo.com (web11505.mail.yahoo.com [216.136.172.37]) by hub.freebsd.org (Postfix) with SMTP id 528C537B403 for ; Tue, 3 Jul 2001 19:46:20 -0700 (PDT) (envelope-from lshawnaiken@yahoo.com) Message-ID: <20010704024620.47812.qmail@web11505.mail.yahoo.com> Received: from [207.136.47.253] by web11505.mail.yahoo.com; Tue, 03 Jul 2001 19:46:20 PDT Date: Tue, 3 Jul 2001 19:46:20 -0700 (PDT) From: Shawn Aiken Reply-To: lshawnaiken@yahoo.com Subject: Zoom PCI PnP Modem 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 just had an old isa modem fried in a t-storm and am trying to replace it. I purchased a Zoom 56K PCI PnP Modem, thinking it would be easy. It hasn't. I can't find any documentaion on how to set one up, except what appears to be old stuff about compiling the kernel for PnP support. what I get on bootup is: pci0 (vendor=0x11c1, dev=0x0442) at 100 irq 11 pnpinfo tells me there is no plug and play devices listed. Can anyone helpo r let me know of a resource to look at? Thnaks, Shawn ===== L. Shawn Aiken __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Tue Jul 3 19:54:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from www.tntpro.com (159-63.suscom-maine.net [207.5.159.63]) by hub.freebsd.org (Postfix) with ESMTP id E606037B401 for ; Tue, 3 Jul 2001 19:54:14 -0700 (PDT) (envelope-from tony@tntpro.com) Received: from TONY (tony.tntpro.com [192.168.0.10]) by www.tntpro.com (8.11.4/8.11.3) with SMTP id f642s1v85057; Tue, 3 Jul 2001 22:54:01 -0400 (EDT) (envelope-from tony@tntpro.com) Message-ID: <002d01c10434$949ca970$0a00a8c0@TONY> From: "Tony" To: "Kelvin Ng Chee Hoong" , "Matthew K. Cowger" Cc: "Jonathan M. Slivko" , References: <3b55d93b5886.3b58863b55d9@bowdoin.edu> <3B4283EA.58C66093@pacific.net.sg> Subject: Re: Restart rc.conf Date: Tue, 3 Jul 2001 22:54:01 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 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 if your using DHCP then killall -HUP dhclient if your not using DHCP the ifconfig xl0 192.168.0.10 replace xl0 with your device and 192.168.0.10 with the correct ip ----- Original Message ----- From: "Kelvin Ng Chee Hoong" To: "Matthew K. Cowger" Cc: "Jonathan M. Slivko" ; Sent: Tuesday, July 03, 2001 10:48 PM Subject: Re: Restart rc.conf > I even not run DHCP server as well . > > "Matthew K. Cowger" wrote: > > > By design, a DHCP server will always give you the same address you had > > before if at all possible, this is part of the RFC for DHCP itself, and > > is normal behavior. > > > > Matt > > > > ----- Original Message ----- > > From: Kelvin Ng Chee Hoong > > Date: Tuesday, July 3, 2001 10:40 pm > > Subject: Re: Restart rc.conf > > > > > HI Jonathan ; > > > But when I type "ifconfig" , it shows me the affected ethernet > > > card still > > > holding old IP address. > > > > > > "Jonathan M. Slivko" wrote: > > > > > > > ifconfig will unbind and bind the new IP's without the need for > > > a reboot, > > > > AFAIK. -- Jonathan > > > > > > > > \|||/ > > > > (o o) > > > > /-----------------------------ooO-(_)-Ooo----------------------- > > > -----\ > > > > | Jonathan M. Slivko E-Mail: jslivko@jslivko.org > > > | > > > > | IRC Nick: optix` Backup: js43064n@pace.edu > > > | > > > > | AIhttp://www.jslivko.org | > > > > |--------------------------------------------------------------- > > > -----| > > > > | "History teaches us that days like this are best spent in > > > bed" | > > > > \--------------------------------------------------------------- > > > -----/ > > > > > > > > On Wed, 4 Jul 2001, Kelvin Ng Chee Hoong wrote: > > > > > > > > > Hi ; > > > > > After I have change the IP address of the erthernet card , > > > how do I > > > > > restart it to update the change without rebooting the system . > > > > > I've tried type ". /etc/rc.conf" but seems like not work > > > at all . > > > > > > > > > > > > > > > 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 > > > 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 Jul 3 20: 5:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sunny.pacific.net.sg (sunny.pacific.net.sg [203.120.90.127]) by hub.freebsd.org (Postfix) with ESMTP id 767CF37B403 for ; Tue, 3 Jul 2001 20:05:45 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop1.pacific.net.sg (pop1.pacific.net.sg [203.120.90.85]) by sunny.pacific.net.sg with ESMTP id f642Brr17189 for ; Wed, 4 Jul 2001 10:11:53 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop1.pacific.net.sg with ESMTP id LAA01142 for ; Wed, 4 Jul 2001 11:05:42 +0800 (SGT) Message-ID: <3B42895B.DDDB2E13@pacific.net.sg> Date: Wed, 04 Jul 2001 11:11:23 +0800 From: Kelvin Ng Chee Hoong X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: zh-TW,en MIME-Version: 1.0 To: "freebsd-questions@FreeBSD.ORG" Subject: add new static route 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 ; Can somebody tell me how do I define static routes in /etc/rc.conf ? Please advise . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 3 20:14:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web11508.mail.yahoo.com (web11508.mail.yahoo.com [216.136.172.40]) by hub.freebsd.org (Postfix) with SMTP id 579E637B403 for ; Tue, 3 Jul 2001 20:14:22 -0700 (PDT) (envelope-from lshawnaiken@yahoo.com) Message-ID: <20010704031422.59178.qmail@web11508.mail.yahoo.com> Received: from [207.136.47.253] by web11508.mail.yahoo.com; Tue, 03 Jul 2001 20:14:22 PDT Date: Tue, 3 Jul 2001 20:14:22 -0700 (PDT) From: Shawn Aiken Reply-To: lshawnaiken@yahoo.com Subject: Re: Zoom PCI PnP Modem To: "Jonathan M. Slivko" Cc: 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 Johnathan, I havn't been watching modems tech in he last few years since my isa modem chugged along fine. Damn, winmodems you say? I checked the package for mention of 'winmodem' or 'controllerless.' Great. Zoom must have gone over to the dark side when I wasn't looking. Any known fixes, or am I off to exchange land? Shawn --- "Jonathan M. Slivko" wrote: > Aren't PnP modems generally Winmodems? --Jonathan > ===== L. Shawn Aiken __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Tue Jul 3 20:17:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (heorot.1nova.com [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id E35B737B403 for ; Tue, 3 Jul 2001 20:17:38 -0700 (PDT) (envelope-from hamellr@1nova.com) Received: by heorot.1nova.com (Postfix, from userid 1000) id AD93418DB; Tue, 3 Jul 2001 20:18:37 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 9C08018DA; Tue, 3 Jul 2001 20:18:37 -0700 (PDT) Date: Tue, 3 Jul 2001 20:18:37 -0700 (PDT) From: Rick Hamell To: Shawn Aiken Cc: "Jonathan M. Slivko" , freebsd-questions@FreeBSD.ORG Subject: Re: Zoom PCI PnP Modem In-Reply-To: <20010704031422.59178.qmail@web11508.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 > I havn't been watching modems tech in he last few > years since my isa modem chugged along fine. Damn, > winmodems you say? I checked the package for mention > of 'winmodem' or 'controllerless.' Great. Zoom must > have gone over to the dark side when I wasn't looking. Zoom still makes non-Winmodems... you just need to read the package REALLY carefully. Unluckily I don't remeber Model numbers anymore. :( Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***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 Tue Jul 3 20:18:11 2001 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 69B2B37B405; Tue, 3 Jul 2001 20:17:57 -0700 (PDT) (envelope-from james-list@ntlworld.com) Received: from eclipse.bloodflowers.org ([62.253.132.240]) by mta05-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with SMTP id <20010704031755.QYVU284.mta05-svc.ntlworld.com@eclipse.bloodflowers.org>; Wed, 4 Jul 2001 04:17:55 +0100 Date: Wed, 4 Jul 2001 04:17:55 +0100 From: James Greenhalgh To: "Hartmann, O." Cc: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: Re: HELP! Server crashes since last cvsupdate! Message-Id: <20010704041755.583fb511.james-list@ntlworld.com> In-Reply-To: References: X-Mailer: Sylpheed version 0.4.66 (GTK+ 1.2.10; i386--freebsd4.3) 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, 2 Jul 2001 10:54:43 +0200 (CEST) "Hartmann, O." wrote: > Hello. > > Since our last update Friday, 29th June, both SMP machines run > into a "stuck" condition after a while. This happened now two times > and I do not know what happens. > > The machines do not respond on console inputs, keyboards seem > to be dead. Over network, accessing the machines via ssh or telnet > results in a short message, then they hung after typing passowrd (ssh) or > trying to connect (telnet). Both machines have NFS running. > A third server attached to the same network node (behind a switch), an UP > machine, is still alive (acts also as a NFS server) and fully accessible. > > What's up with FreeBSD 4.2-STABLE? Has something important been changed in networking?Oliver Perhaps it's something else. My desktop machine (rebuilt yesterday and again tonight) is starting to hang in general use almost randomly. It was solid as a rock before this point, running a 4.3-stable from early last month. I had thought it was linux emu support or DRI causing it, but having eliminated both of those it proceeded to do it again in console mode. My nonupgraded remote server, similar hardware config but left at a month old setup is still happy. Again an SMP machine, here's the dmesg: ------- 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-STABLE #0: Wed Jul 4 03:16:56 BST 2001 root@eclipse.bloodflowers.org:/usr/obj/usr/src/sys/ECLIPSE Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Pentium II Xeon/Celeron (397.95-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x652 Stepping = 2 Features=0x183fbff real memory = 268369920 (262080K bytes) config> di pcic0 No such device: pcic0 Invalid command or syntax. Type `?' for help. 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 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> en ed0 config> po ed0 0x300 config> ir ed0 10 config> iom ed0 0xd8000 config> f ed0 0 config> q avail memory = 257310720 (251280K bytes) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 IOAPIC #0 intpin 16 -> irq 11 IOAPIC #0 intpin 17 -> irq 3 IOAPIC #0 intpin 18 -> irq 4 IOAPIC #0 intpin 19 -> irq 7 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 0, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 1, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xc03ec000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc03ec09c. Preloaded elf module "agp.ko" at 0xc03ec0ec. ccd0-3: Concatenated disk drivers VESA: v3.0, 16384k memory, flags:0x1, mode table:0xc036c977 (1000117) VESA: 3dfx Interactive, Inc. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 agp0: mem 0xe0000000-0xe3ffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: <3Dfx Voodoo 3 graphics accelerator> at 0.0 irq 11 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xf000-0xf00f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xd000-0xd01f irq 7 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 intpm0: port 0x5000-0x500f irq 9 at device 7.3 on pci0 intpm0: I/O mapped 5000 intpm0: intr IRQ 9 enabled revision 0 smbus0: on intsmb0 intpm0: PM I/O mapped 4000 amr0: port 0xd400-0xd47f irq 3 at device 9.0 on pci0 amr0: Firmware C.80, BIOS 1.51, 4MB RAM fxp0: port 0xd800-0xd83f mem 0xed000000-0xed01ffff,0xed023000-0xed023fff irq 4 at device 10.0 on pci0 fxp0: Ethernet address 00:02:b3:2e:57:18 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto bktr0: mem 0xed020000-0xed020fff irq 7 at device 11.0 on pci0 iicbb0: on bti2c0 iicbus0: on iicbb0 master-only smbus1: on bti2c0 bktr0: Hauppauge Model 44354 A321 bktr0: Detected a MSP3415D-B3 at 0x80 bktr0: Hauppauge WinCast/TV, Philips FR1216 PAL FM tuner, msp3400c stereo, remote control. pci0: (vendor=0x109e, dev=0x0878) at 11.1 irq 7 ahc0: port 0xdc00-0xdcff mem 0xed022000-0xed022fff irq 11 at device 12.0 on pci0 aic7895C: Wide Channel A, SCSI Id=7, 32/255 SCBs ahc1: port 0xe000-0xe0ff mem 0xed024000-0xed024fff irq 11 at device 12.1 on pci0 ahc1: Using left over BIOS settings aic7895C: Wide Channel B, SCSI Id=7, 32/255 SCBs isa0: too many dependant configs (8) isa0: unexpected small tag 14 orm0:

Click Here

--------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 6:33: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from skywalker.mis.boun.edu.tr (skywalker.mis.boun.edu.tr [193.140.205.219]) by hub.freebsd.org (Postfix) with ESMTP id 609FD37B403 for ; Wed, 4 Jul 2001 06:32:54 -0700 (PDT) (envelope-from murat@enderunix.org) Received: from localhost (murat@localhost) by skywalker.mis.boun.edu.tr (8.11.0/8.11.0) with ESMTP id f64DO4Z28365 for ; Wed, 4 Jul 2001 16:24:04 +0300 (EEST) X-Authentication-Warning: skywalker.mis.boun.edu.tr: murat owned process doing -bs Date: Wed, 4 Jul 2001 16:24:04 +0300 (EEST) From: Murat Balaban X-Sender: To: Subject: RE: EnderUNIX QLDAPADmin 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 About the web site... Our aim, in *stealing* the design, was emphasizing our love for FreeBSD. We thought it would be cute, for a mirror, as one of you just pointed out. Otherwise, there are tons of websites, out there, waiting to be *stolen* for a 'state of the art' design. Yeah, FreeBSD rocks, also the website! ;) Thank you guys. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 7:21:43 2001 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 930CE37B403 for ; Wed, 4 Jul 2001 07:21:41 -0700 (PDT) (envelope-from rj45@slacknet.com) Received: from rj45 (helo=localhost) by slacknet.slacknet.com with local-esmtp (Exim 3.12 #1 (Debian)) id 15HnXB-00016m-00 for ; Wed, 04 Jul 2001 08:21:41 -0600 Date: Wed, 4 Jul 2001 08:21:41 -0600 (MDT) From: RJ45 To: freebsd-questions@freebsd.org Subject: passwd: Permission denied 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 the permissions looks ok: -r-sr-xr-x 2 root wheel 46208 Apr 21 23:34 /usr/bin/passwd I do not know why it says to me passwd: Permission denied it works only from root there is some particular conf file to set up ? thanks Rick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 7:33:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from h24-67-61-12.lb.shawcable.net (h24-67-61-12.lb.shawcable.net [24.67.61.12]) by hub.freebsd.org (Postfix) with ESMTP id 4A7AB37B405 for ; Wed, 4 Jul 2001 07:33:22 -0700 (PDT) (envelope-from chris@home.com) Received: by h24-67-61-12.lb.shawcable.net (Postfix, from userid 1002) id 2A10066B065; Wed, 4 Jul 2001 08:25:35 -0600 (MDT) Date: Wed, 4 Jul 2001 08:25:35 -0600 From: Chris Moline To: questions@freebsd.org Subject: Re: helping Wietse help postfix on FreeBSD Message-ID: <20010704082535.A1825@h24-67-61-12.lb.shawcable.net> References: <20010703181912.M8059-100000@achilles.silby.com> <20010703194218.U66434-100000@idemnia.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010703194218.U66434-100000@idemnia.ath.cx>; from reel@sympatico.ca on Tue, Jul 03, 2001 at 07:42:57PM -0400 Sender: owner-freebsd-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, Jul 03, 2001 at 07:42:57PM -0400, Felix-Antoine Paradis wrote: > Is /etc/sysctl.conf what you are looking for? This file does not exist on my comp. Should it?? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 7:41:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from spielberg.vip.uk.com (spielberg.vip.uk.com [194.176.218.9]) by hub.freebsd.org (Postfix) with ESMTP id 2BFFF37B401 for ; Wed, 4 Jul 2001 07:41:20 -0700 (PDT) (envelope-from rob@robhulme.com) Received: from modem-3-77-60-62.vip.uk.com ([62.60.77.3] helo=hal9001) by spielberg.vip.uk.com with smtp (Exim 3.22 #1) id 15Hnq9-00060Y-00 for freebsd-questions@freebsd.org; Wed, 04 Jul 2001 15:41:17 +0100 From: "Rob" To: Subject: Install fail on Dell PowerEdge 1550 Date: Wed, 4 Jul 2001 15:24:10 +0100 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) Importance: Normal 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, I'm trying to install FreeBSD 4.3 from an ISO image I got from ftp.uk.freebsd.org on a Dell PowerEdge 1550 server. I can't seem to get it to work... I've tried several different options in the installation process, and everything installs 'ok', but then when it reboots it doesnt work. If I did an install using a standard MBR rather than the bootmanager I just get the message 'Missing Operating System', and it won't do anything... if I install using the boot manager I get this: F1 FreeBSD Default: F1 _ (the cursor) The cursor flashes, but if I press enter or F1 or anything like that it just beeps at me... I'm now trying each time with a minimal install, using all the other default options (I'm pressing A for 'all' the space when asked how much of the harddrive I want to use). Does anyone have *any* ideas? I was getting this problem with 4.1 so I've spent a considerable amount of time getting hold of the 4.3 ISO, and getting it burnt :0( Its really annoying because a year ago as a pet project (at work) I put together a box using standard plain jane hardware (IDE etc...) which worked really well, and impressed the pants of everyone - since then we're totally going the BSD / open source route on everything, but now I've come to put it on some more powerful hardware it isn't working :0( Its got to be something I'm doing wrong... Help please! -Rob -------------------------------- http://www.robhulme.com http://www.christianunion.org.uk "May the forks be with us." - Blue Raja (Mystery Men) Everything you've learned in school as "obvious" becomes less and less obvious as you begin to study the universe. For example, there are no solids in the universe. There's not even a suggestion of a solid. There are no absolute continuums. There are no surfaces. There are no straight lines. ---- R. Buckminster Fuller To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 7:44:55 2001 Delivered-To: freebsd-questions@freebsd.org Received: from spielberg.vip.uk.com (spielberg.vip.uk.com [194.176.218.9]) by hub.freebsd.org (Postfix) with ESMTP id EF4CD37B403 for ; Wed, 4 Jul 2001 07:44:52 -0700 (PDT) (envelope-from rob@robhulme.com) Received: from modem-3-77-60-62.vip.uk.com ([62.60.77.3] helo=hal9001) by spielberg.vip.uk.com with smtp (Exim 3.22 #1) id 15Hntb-00067O-00 for freebsd-questions@freebsd.org; Wed, 04 Jul 2001 15:44:51 +0100 From: "Rob" To: Subject: RE: Install fail on Dell PowerEdge 1550 Date: Wed, 4 Jul 2001 15:27:44 +0100 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) Importance: Normal In-Reply-To: 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 Sorry, I forgot to mention that at the end (of the last install) I went into the emergency holographic shell and checked to see if it had correctly installed on my HD... it had, everything was there that should be :0( -------------------------------- http://www.robhulme.com http://www.christianunion.org.uk "May the forks be with us." - Blue Raja (Mystery Men) Everything you've learned in school as "obvious" becomes less and less obvious as you begin to study the universe. For example, there are no solids in the universe. There's not even a suggestion of a solid. There are no absolute continuums. There are no surfaces. There are no straight lines. ---- R. Buckminster Fuller To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 7:45:34 2001 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 4EE1F37B401; Wed, 4 Jul 2001 07:45:14 -0700 (PDT) (envelope-from james-list@ntlworld.com) Received: from eclipse.bloodflowers.org ([62.253.132.240]) by mta02-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with SMTP id <20010704144511.OIUC294.mta02-svc.ntlworld.com@eclipse.bloodflowers.org>; Wed, 4 Jul 2001 15:45:11 +0100 Date: Wed, 4 Jul 2001 15:45:12 +0100 From: James Greenhalgh To: "Hartmann, O." Cc: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: Re: HELP! Server crashes since last cvsupdate! Message-Id: <20010704154512.094f0fbd.james-list@ntlworld.com> In-Reply-To: References: <20010704041755.583fb511.james-list@ntlworld.com> X-Mailer: Sylpheed version 0.4.66 (GTK+ 1.2.10; i386--freebsd4.3) 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 Yes - mine seems to be behaving now with SMP support disabled. Fortunately I've got a full system disk clone from a few weeks ago so I'll downgrade when I get the opportunity to do so - so I guess the current 4.x stable should be considered to be non-stable on (some?) SMP machines. james On Wed, 4 Jul 2001 10:46:29 +0200 (CEST) "Hartmann, O." wrote: > > As described below, I suspected the Linuxator (due the linproc changes > last week). But eleminating all did not solve the problem. > > I switched all systems yesterday morning to UP kernel - and they > are still up right now. A third SMP machine is up since 17 days with > the old sources, also SCSI and a lot of similar configs like the other both > crashing SMP systems. > > Has anyone tried Tor's patch? I can not elaborate this before weekend, > because all SMP systems are heavily in use until Friday. > > > :>On Mon, 2 Jul 2001 10:54:43 +0200 (CEST) > :>"Hartmann, O." wrote: > :> > :>> Hello. > :>> > :>> Since our last update Friday, 29th June, both SMP machines run > :>> into a "stuck" condition after a while. This happened now two times > :>> and I do not know what happens. > :>> > :>> The machines do not respond on console inputs, keyboards seem > :>> to be dead. Over network, accessing the machines via ssh or telnet > :>> results in a short message, then they hung after typing passowrd (ssh) or > :>> trying to connect (telnet). Both machines have NFS running. > :>> A third server attached to the same network node (behind a switch), an UP > :>> machine, is still alive (acts also as a NFS server) and fully accessible. > :>> > :>> What's up with FreeBSD 4.2-STABLE? Has something important been changed in > :>networking?Oliver > :> > :>Perhaps it's something else. My desktop machine (rebuilt yesterday and again > :>tonight) is starting to hang in general use almost randomly. It was solid as > :>a rock before this point, running a 4.3-stable from early last month. I had > :>thought it was linux emu support or DRI causing it, but having eliminated both > :>of those it proceeded to do it again in console mode. My nonupgraded remote > :>server, similar hardware config but left at a month old setup is still happy. > :>Again an SMP machine, here's the dmesg: > :> > :>------- > :> > :>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-STABLE #0: Wed Jul 4 03:16:56 BST 2001 > :> root@eclipse.bloodflowers.org:/usr/obj/usr/src/sys/ECLIPSE > :>Timecounter "i8254" frequency 1193182 Hz > :>CPU: Pentium II/Pentium II Xeon/Celeron (397.95-MHz 686-class CPU) > :> Origin = "GenuineIntel" Id = 0x652 Stepping = 2 > :> > :>Features=0x183fbff > :>real memory = 268369920 (262080K bytes) > :>config> di pcic0 > :>No such device: pcic0 > :>Invalid command or syntax. Type `?' for help. > :>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 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> en ed0 > :>config> po ed0 0x300 > :>config> ir ed0 10 > :>config> iom ed0 0xd8000 > :>config> f ed0 0 > :>config> q > :>avail memory = 257310720 (251280K bytes) > :>Programming 24 pins in IOAPIC #0 > :>IOAPIC #0 intpin 2 -> irq 0 > :>IOAPIC #0 intpin 16 -> irq 11 > :>IOAPIC #0 intpin 17 -> irq 3 > :>IOAPIC #0 intpin 18 -> irq 4 > :>IOAPIC #0 intpin 19 -> irq 7 > :>FreeBSD/SMP: Multiprocessor motherboard > :> cpu0 (BSP): apic id: 0, version: 0x00040011, at 0xfee00000 > :> cpu1 (AP): apic id: 1, version: 0x00040011, at 0xfee00000 > :> io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 > :>Preloaded elf kernel "kernel" at 0xc03ec000. > :>Preloaded userconfig_script "/boot/kernel.conf" at 0xc03ec09c. > :>Preloaded elf module "agp.ko" at 0xc03ec0ec. > :>ccd0-3: Concatenated disk drivers > :>VESA: v3.0, 16384k memory, flags:0x1, mode table:0xc036c977 (1000117) > :>VESA: 3dfx Interactive, Inc. > :>Pentium Pro MTRR support enabled > :>md0: Malloc disk > :>npx0: on motherboard > :>npx0: INT 16 interface > :>pcib0: on motherboard > :>pci0: on pcib0 > :>agp0: mem 0xe0000000-0xe3ffffff at > :>device 0.0 on pci0 > :>pcib1: at device 1.0 on pci0 > :>pci1: on pcib1 > :>pci1: <3Dfx Voodoo 3 graphics accelerator> at 0.0 irq 11 > :>isab0: at device 7.0 on pci0 > :>isa0: on isab0 > :>atapci0: port 0xf000-0xf00f at device 7.1 on > :>pci0 > :>ata0: at 0x1f0 irq 14 on atapci0 > :>ata1: at 0x170 irq 15 on atapci0 > :>uhci0: port 0xd000-0xd01f irq 7 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 > :>intpm0: port 0x5000-0x500f irq 9 > :>at device 7.3 on pci0 > :>intpm0: I/O mapped 5000 > :>intpm0: intr IRQ 9 enabled revision 0 > :>smbus0: on intsmb0 > :>intpm0: PM I/O mapped 4000 > :>amr0: port 0xd400-0xd47f irq 3 at device 9.0 on pci0 > :>amr0: Firmware C.80, BIOS 1.51, 4MB RAM > :>fxp0: port 0xd800-0xd83f mem > :>0xed000000-0xed01ffff,0xed023000-0xed023fff irq 4 at device 10.0 on pci0 > :>fxp0: Ethernet address 00:02:b3:2e:57:18 > :>inphy0: on miibus0 > :>inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > :>bktr0: mem 0xed020000-0xed020fff irq 7 at device 11.0 on pci0 > :>iicbb0: on bti2c0 > :>iicbus0: on iicbb0 master-only > :>smbus1: on bti2c0 > :>bktr0: Hauppauge Model 44354 A321 > :>bktr0: Detected a MSP3415D-B3 at 0x80 > :>bktr0: Hauppauge WinCast/TV, Philips FR1216 PAL FM tuner, msp3400c stereo, > :>remote control. > :>pci0: (vendor=0x109e, dev=0x0878) at 11.1 irq 7 > :>ahc0: port 0xdc00-0xdcff mem > :>0xed022000-0xed022fff irq 11 at device 12.0 on pci0 > :>aic7895C: Wide Channel A, SCSI Id=7, 32/255 SCBs > :>ahc1: port 0xe000-0xe0ff mem > :>0xed024000-0xed024fff irq 11 at device 12.1 on pci0 > :>ahc1: Using left over BIOS settings > :>aic7895C: Wide Channel B, SCSI Id=7, 32/255 SCBs > :>isa0: too many dependant configs (8) > :>isa0: unexpected small tag 14 > :>orm0: FTP stalls during install of 4.3 Howdy,

I've been trying to install 4.3-STABLE over the network for a couple of
days.  It generally gets going all right, sometimes even finishes dl'i= ng
bin, but it never fails to stall (though it doesn't report anything, it
just sits there).  I don't know much about ftp (I'm a pretty insecure<= BR> about it), so I don't know where the problem is.  What group should I<= BR> post this to?

Thanks,
-wml
(Will Leiserson)

---

"You can tune a file system, but you can't tune a fish..."
       --man tunefs (FreeBSD)

--MS_Mac_OE_3077105100_4223081_MIME_Part-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 12:27: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from clientmail.realtime.co.uk (simian.realtime.co.uk [194.205.134.131]) by hub.freebsd.org (Postfix) with ESMTP id 59A7B37B401 for ; Wed, 4 Jul 2001 12:27:03 -0700 (PDT) (envelope-from waynep@pan.realtime.co.uk) Received: from [213.52.146.196] (helo=pan.realtime.co.uk) by clientmail.realtime.co.uk with esmtp (Exim 3.20 #1) id 15HsIg-0002A8-01 for freebsd-questions@freebsd.org; Wed, 04 Jul 2001 20:27:02 +0100 Received: from waynep by pan.realtime.co.uk with local (Exim 3.22 #1) id 15HsI8-0001wy-00 for freebsd-questions@freebsd.org; Wed, 04 Jul 2001 20:26:28 +0100 From: Wayne Pascoe To: freebsd-questions@freebsd.org Subject: limit on username length ? Reply-To: wayne.pascoe@realtime.co.uk Date: 04 Jul 2001 20:26:27 +0100 Message-ID: <86vgl8sdgc.fsf@pan.ehsrealtime.com> Lines: 27 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 Hi there, We are migrating one of our last Linux boxen to freebsd. This one is the mail server. Our convention for usernames in the past has been username.domain eg. wayne.realtime.co.uk When I try and add this user on a FreeBSD machine with pw I just get a username too long error. When I try and add the user with useradd I get a message saying that the username is longer than 16 characters. Is there a way to overcome this length limit? I can't really get hold of everyone and tell them to change their usernames at this late stage in the game :) What other ways could I deal with this? Let users authenticate against some other kind of database for mail ? Thanks in advance :( -- - Wayne Pascoe E-mail: wayne.pascoe@realtime.co.uk Phone : +44 (0) 20 7544 4668 Mobile: +44 (0) 788 431 1675 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 12:29:55 2001 Delivered-To: freebsd-questions@freebsd.org Received: from swan.mail.pas.earthlink.net (swan.mail.pas.earthlink.net [207.217.120.123]) by hub.freebsd.org (Postfix) with ESMTP id 1665937B403 for ; Wed, 4 Jul 2001 12:29:53 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.134.19.Dial1.SanJose1.Level3.net [209.245.134.19]) by swan.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id MAA27344 for ; Wed, 4 Jul 2001 12:29:42 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f64JTf100930 for questions@FreeBSD.ORG; Wed, 4 Jul 2001 12:29:41 -0700 (PDT) (envelope-from cjc) Date: Wed, 4 Jul 2001 12:29:40 -0700 From: "Crist J. Clark" To: questions@FreeBSD.ORG Subject: Re: ipf -y 'ing using user ppp Message-ID: <20010704122940.A696@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20010704032241.A1895@moo.holy.cow> <20010704012400.H1476@blossom.cjclark.org> <20010704122746.A2642@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: <20010704122746.A2642@moo.holy.cow>; from parv_@yahoo.com on Wed, Jul 04, 2001 at 12:27:46PM -0400 Sender: owner-freebsd-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, Jul 04, 2001 at 12:27:46PM -0400, parv wrote: > so, Crist J. Clark shared this in my lifetime... [snip] > > That said, once I run ppp(8) once, I can bring the tun(4) interface up > > and down as much as I wish and I never need to touch ipf(8) or > > ipnat(8) again. No need for the '-y' option. > > well, i have to do syncing once after reboot. after then, i can play > w/ ppp, ifconfig, ipf as much i want w/o resyncing. > > just curious, are your ipf rules "default block" type? or, do you > first block all the traffic (going in or out), then selectively let > the traffic pass? Default block. My whole ruleset, # Pass everything out of tun0 block out all pass out quick on lo0 all pass out quick on dc0 all pass out quick on tun0 proto tcp all flags S/SA keep state keep frags pass out quick on tun0 proto udp all keep state keep frags pass out quick on tun0 proto icmp all keep state keep frags pass out quick on tun0 all # Pass lo0 and dc0, block the rest block in log all pass in quick on lo0 all pass in quick on dc0 all # These are noisy, but harmless block in quick on tun0 proto igmp from any to 224.0.0.1 > as i stated earlier, when the ipf rules weren't "default block", ppp > was making connection, but not afterwords ... not w/o a "ipf -y". > so, if your rules are not "default block", you may not have to > do the syncing. Default block. Always default block. IIRC, the problem was more with ipnat(8) than ipf(8). -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 12:31:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from comp1.mastery.ca (comp1.mastery.ca [209.202.88.60]) by hub.freebsd.org (Postfix) with ESMTP id 2209037B406 for ; Wed, 4 Jul 2001 12:31:25 -0700 (PDT) (envelope-from rmasse@mastery.ca) Received: from 78kw954 ([209.202.88.150]) (authenticated) by comp1.mastery.ca (8.11.3/8.11.1) with ESMTP id f64JVMQ22693 for ; Wed, 4 Jul 2001 15:31:23 -0400 (EDT) (envelope-from rmasse@mastery.ca) Message-ID: <016901c104bf$e52730a0$3200000a@Intranet> From: "Ryan Masse" To: "FreeBSD-Questions" Subject: nfs Date: Wed, 4 Jul 2001 15:31:16 -0400 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 is it possible to run nfs over an internet presence securely? would firewalling out everybody but the destination source be effective enough in securing the connection? i'm brainstorming ways of sending the output of an ifconfig statement from my home gateway to that of my webserver and being able to view the contents via a web browser. reason being is that for the life of me i can't get ddns to work and its a pain to discover my ip when i need information on my home lan. any other suggestions to helping my problem would be appreciated Ryan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 12:31:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id 65D7C37B405 for ; Wed, 4 Jul 2001 12:31:24 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f64JW3990873; Wed, 4 Jul 2001 15:32:04 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Wed, 4 Jul 2001 15:32:03 -0400 (EDT) From: Joe Clarke To: "r.w.h" Cc: Subject: Re: question to get back on the net. In-Reply-To: <3B4368C8.938BE011@home.com> Message-ID: <20010704153002.M90527-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 There is already a response to the DHCP aspect of the question... For the es1371, add the following to your kernel configuration, and recompile: device pcm This assumes a fairly recent 4.x system. You should see something like: pcm0: port 0x1440-0x147f irq 10 at device 15.0 on pci0 in your dmesg when you reboot. After the system is back up, run: cd /dev ; ./MAKEDEV snd0 And you should have sound. Joe Clarke On Wed, 4 Jul 2001, r.w.h wrote: > Hello > > here is my problem. > > iam on @home and have to pass a -h cb956302-a to the dhcpcd line. > but not knowing freebsd witch file is dhcpcd networking started in. > > also > > how to get my es1371 soundcard working with freebsd.. > > Thanks > > Rob Harris. > omgitsrob@home.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 Wed Jul 4 12:36:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id 2605E37B406 for ; Wed, 4 Jul 2001 12:36:08 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f64JapP90893; Wed, 4 Jul 2001 15:36:55 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Wed, 4 Jul 2001 15:36:51 -0400 (EDT) From: Joe Clarke To: Willtor Cc: Subject: Re: FTP stalls during install of 4.3 In-Reply-To: Message-ID: <20010704153225.N90527-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 Things to check might be network settings. How do you connect to the Internet? If you go through ethernet, you might have a duplex mis-match problem. This can lead to stalling file transfers. Also, if you go out over a T1 line, you might be experiencing a line code mismatch, timing problem, or repeater problem. You can test for these using extended pings with the -p option. Run with: -p 00 -p ff -p 40 -p aa -p 11 To test all problematic data patterns. Also, if you do an Alt+F2 while it's installing, do you see any errors or warnings on the screen? It could also be an overwhelmed FTP server. You may also want to try one of the mirrors. Joe Clarke On Wed, 4 Jul 2001, Willtor wrote: > Howdy, > > I've been trying to install 4.3-STABLE over the network for a couple of > days. It generally gets going all right, sometimes even finishes dl'ing > bin, but it never fails to stall (though it doesn't report anything, it > just sits there). I don't know much about ftp (I'm a pretty insecure > about it), so I don't know where the problem is. What group should I > post this to? > > Thanks, > -wml > (Will Leiserson) > > --- > > "You can tune a file system, but you can't tune a fish..." > --man tunefs (FreeBSD) > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 12:38:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id 3D70037B406 for ; Wed, 4 Jul 2001 12:38:11 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f64Jcbs90897; Wed, 4 Jul 2001 15:38:37 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Wed, 4 Jul 2001 15:38:37 -0400 (EDT) From: Joe Clarke To: Ryan Masse Cc: FreeBSD-Questions Subject: Re: nfs In-Reply-To: <016901c104bf$e52730a0$3200000a@Intranet> Message-ID: <20010704153741.P90527-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 You could scp or sftp the ifconfig output from your DDNS machine to your webserver. This would be TCP-based, and encrypted. Joe Clarke On Wed, 4 Jul 2001, Ryan Masse wrote: > is it possible to run nfs over an internet presence securely? would > firewalling out everybody but the destination source be effective enough in > securing the connection? i'm brainstorming ways of sending the output of an > ifconfig statement from my home gateway to that of my webserver and being > able to view the contents via a web browser. reason being is that for the > life of me i can't get ddns to work and its a pain to discover my ip when i > need information on my home lan. > > any other suggestions to helping my problem would be appreciated > > Ryan > > > > > > 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 Jul 4 12:48: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web13305.mail.yahoo.com (web13305.mail.yahoo.com [216.136.175.41]) by hub.freebsd.org (Postfix) with SMTP id 4D0A437B405 for ; Wed, 4 Jul 2001 12:48:03 -0700 (PDT) (envelope-from gwq_uk@yahoo.com) Message-ID: <20010704194803.81322.qmail@web13305.mail.yahoo.com> Received: from [213.122.38.97] by web13305.mail.yahoo.com; Wed, 04 Jul 2001 20:48:03 BST Date: Wed, 4 Jul 2001 20:48:03 +0100 (BST) From: =?iso-8859-1?q?Greg=20Quinlan?= Reply-To: gwq_uk@yahoo.com Subject: Re: fxp NIC error! To: David Greenman Cc: freebsd-questions@freebsd.org In-Reply-To: <20010704090512.A89686@nexus.root.com> 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, I once came across a problem in connecting two auto sensing interfaces using a X-over UTP cable. The resolution to the problem was to connect both pieces of equipment to a HUB. Or set one to a constant speed. (It was connecting a NIC in my server directly to a Cisco Router's NIC.) (I noticed that someone had a similar PR; Intel NIC's connecting to a Cisco router with a timeout error.) Unfortunately setting the interface to a constant speed did not get it working, but the Cisco router did detect the speed change! Should I get a different Intel NIC, do more current ones have the same problem? Regards Greg --- David Greenman wrote: > >Intel EtherExpress Pro 10/100 EEPROM contents: > > Station address 00:A0:C9:90:18:C6. > > Receiver lock-up bug exists. (The driver > work-around > ... > >I'm not quite sure what this means! It mentions > >something about a receiver lock-up bug??? > > > >Does anyone have any knowledge of this bug and if > 4.3S > >has the work around. > > Yes, I'm familiar with the bug, and yes, FreeBSD > does have the work-around > for it. It is not the cause of the problem that > you're reporting. > Have you tried setting the speed and duplex to > manual/forced settings? > > -DG > > David Greenman > Co-founder, The FreeBSD Project - > http://www.freebsd.org > President, TeraSolutions, Inc. - > http://www.terasolutions.com > Pave the road of life with opportunities. ____________________________________________________________ Do You Yahoo!? Get your free @yahoo.co.uk address at http://mail.yahoo.co.uk or your free @yahoo.ie address at http://mail.yahoo.ie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 12:55:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp03.mrf.mail.rcn.net (smtp03.mrf.mail.rcn.net [207.172.4.62]) by hub.freebsd.org (Postfix) with ESMTP id 977BC37B407 for ; Wed, 4 Jul 2001 12:55:18 -0700 (PDT) (envelope-from rjhalljr@starpower.net) Received: from 66-44-63-152.s406.tnt5.lnhva.md.dialup.rcn.com ([66.44.63.152]) by smtp03.mrf.mail.rcn.net with esmtp (Exim 3.30 #2) id 15Hsk1-0007iR-00 for freebsd-questions@FreeBSD.org; Wed, 04 Jul 2001 15:55:17 -0400 Mime-Version: 1.0 X-Sender: rjhalljr@pop.starpower.net Message-Id: In-Reply-To: <3B4331EF.5DBD4FF2@i-clue.de> References: <20010704085700.F48882-100000@x1-6-00-50-ba-de-36-33.kico1.on.home.com> <3B4331EF.5DBD4FF2@i-clue.de> Date: Wed, 4 Jul 2001 15:55:14 -0400 To: freebsd-questions@FreeBSD.org From: Bob Hall Subject: Re: Changing the domain name 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 >uname -a lists information about the kernel. The hostname displayed >within its output is the host and user who compiled that kernel. The >only way to change that name is to build another kernel on the machine >you want its name to appear. > >HTH >-Christoph Sold Thanks. You proved I was wrong. The output of uname has nothing to do with the problem. I've recompiled, uname doesn't mention my.domain, but named still only accepts my.domain. The following files contain no mention of my.domain. /etc/hosts /etc/resolv.conf /etc/namedb/named.conf named will accept only my.domain in the following file: /etc/namedb/localhost.rev The output of hostname is staunton.bodd_der.net The output of uname -a is FreeBSD staunton.bodd_der.net 4.3-RELEASE FreeBSD 4.3-RELEASE #1: Wed Jul 4 14:11:20 EDT 2001 root@staunton.bodd_der.net: /usr/src/sys/compile/STAUNTON i386 According to The Complete FreeBSD by Greg Leahy, I'm supposed to put my fully qualified domain name in localhost.rev. When I do that, I get the following error message after HUPing named: host name "staunton.bodd_der.net" (Owner "0.0.127.in-addr.arpa") IN (primary) is invalid This is followed by too many error messages to transfer via the ten-finger interface. Something seems to be mapping 127.0.0 to my.domain, and named won't accept anything else. Does anyone have any idea what file it might be? I've spent the last 24 hours, with about 6 hours off for sleep, searching in the documentation for the answer, and I can't find anything. Bob Hall Know thyself? Absurd direction! Bubbles bear no introspection. -Khushhal Khan Khatak MySQL list magic words: sql query database To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 12:55:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from falcon.mail.pas.earthlink.net (falcon.mail.pas.earthlink.net [207.217.120.74]) by hub.freebsd.org (Postfix) with ESMTP id DC73A37B403 for ; Wed, 4 Jul 2001 12:55:43 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (goose.mail.pas.earthlink.net [207.217.120.18]) by falcon.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id MAA24967; Wed, 4 Jul 2001 12:55:41 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f64JtdA01143; Wed, 4 Jul 2001 12:55:39 -0700 (PDT) (envelope-from cjc) Date: Wed, 4 Jul 2001 12:55:39 -0700 From: "Crist J. Clark" To: Andrey Simonenko Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Is it possible to access FreeBSD-CURRENT sources via WebCVS? Message-ID: <20010704125539.B696@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <019401c10466$cf9c8040$6d36120a@comsys.ntukpi.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <019401c10466$cf9c8040$6d36120a@comsys.ntukpi.kiev.ua>; from simon@comsys.ntu-kpi.kiev.ua on Wed, Jul 04, 2001 at 12:53:35PM +0400 Sender: owner-freebsd-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, Jul 04, 2001 at 12:53:35PM +0400, Andrey Simonenko wrote: > Hi All, > > Is it possible to access FreeBSD-CURRENT sources via WebCVS > (wich tag should I use on http://www.freebsd.org/cgi/cvsweb.cgi/src/)? > Please send CC of your answer on my e-mail. Tag "MAIN". -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 12:56: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-93.dsl.lsan03.pacbell.net [63.207.60.93]) by hub.freebsd.org (Postfix) with ESMTP id 3FAB037B408 for ; Wed, 4 Jul 2001 12:55:56 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C9503678A6; Wed, 4 Jul 2001 12:55:54 -0700 (PDT) Date: Wed, 4 Jul 2001 12:55:54 -0700 From: Kris Kennaway To: Andrey Simonenko Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Is it possible to access FreeBSD-CURRENT sources via WebCVS? Message-ID: <20010704125554.A10172@xor.obsecurity.org> References: <019401c10466$cf9c8040$6d36120a@comsys.ntukpi.kiev.ua> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="liOOAslEiF7prFVr" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <019401c10466$cf9c8040$6d36120a@comsys.ntukpi.kiev.ua>; from simon@comsys.ntu-kpi.kiev.ua on Wed, Jul 04, 2001 at 12:53:35PM +0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jul 04, 2001 at 12:53:35PM +0400, Andrey Simonenko wrote: > Hi All, >=20 > Is it possible to access FreeBSD-CURRENT sources via WebCVS > (wich tag should I use on http://www.freebsd.org/cgi/cvsweb.cgi/src/)? > Please send CC of your answer on my e-mail. Yes; these sources are untagged and are the "head" of the CVS tree.=20 Kris --liOOAslEiF7prFVr 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 iD8DBQE7Q3TJWry0BWjoQKURAjE2AJ4u59PWQvB3jEPDjz8fchr08XScLQCgimj0 kjA4aV3V0RPY0tBwhTxfJqo= =1gTJ -----END PGP SIGNATURE----- --liOOAslEiF7prFVr-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 13: 0:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-141-144.mmcable.com [24.27.141.144]) by hub.freebsd.org (Postfix) with SMTP id D949637B403 for ; Wed, 4 Jul 2001 13:00:27 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 6415 invoked by uid 100); 4 Jul 2001 20:00:27 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15171.30171.270918.253692@guru.mired.org> Date: Wed, 4 Jul 2001 15:00:27 -0500 To: Etienne de Bruin Cc: questions@freebsd.org Subject: Re: Disabling xdm/kdm In-Reply-To: <90134269@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\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Etienne de Bruin types: > How can I disable xdm, i.e. how can get my console back? > I typically need this to de install kdm so that i can re-install a newer > version. Do you have more than one vty set up? If so, then you can use Ctrl-Alt-F2 to go to the second one, and log in there. Thats' the default setup, anyway. 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 Wed Jul 4 13: 2:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from moutvdom00.kundenserver.de (moutvdom00.kundenserver.de [195.20.224.149]) by hub.freebsd.org (Postfix) with ESMTP id EEDBB37B401 for ; Wed, 4 Jul 2001 13:02:16 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.209] (helo=mrvdom02.schlund.de) by moutvdom00.kundenserver.de with esmtp (Exim 2.12 #2) id 15Hsqj-00035X-00; Wed, 4 Jul 2001 22:02:13 +0200 Received: from pd901722f.dip.t-dialin.net ([217.1.114.47]) by mrvdom02.schlund.de with esmtp (Exim 2.12 #2) id 15HsqN-0001st-00; Wed, 4 Jul 2001 22:01:51 +0200 Date: Wed, 4 Jul 2001 22:03:06 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: Ryan Masse Cc: FreeBSD-Questions Subject: Re: Certification In-Reply-To: <014301c104b3$8ad8b6c0$3200000a@Intranet> Message-ID: <20010704214626.R47622-100000@localhost.de> 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, 4 Jul 2001, Ryan Masse wrote: > Date: Wed, 4 Jul 2001 14:02:50 -0400 > From: Ryan Masse > To: "P. U. (Uli) Kruppa" > Cc: FreeBSD-Questions > Subject: Re: Certification > > sorry in advance if this message was received a second time. > > > > > Hi, > > > > it seems, I am writing from the other side of the ocean > > (Germany to be exact) and do not completely understand this > > discussion. But for professional reasons I am interested. > > > > So I would be happy if you answered these two questions: > > 1) Are there really any working online-courses for anything, > > which will give you a certification - > > if true: could you give me an example? > > 2) (still if true:) do they work completely automagically or > > are there human beings involved who control the stuff? > > > > Actually i work IT for a company who has a training platform (not html > based) which installs and runs over cd-rom,lan,intranet, and/or internet in > which it delivers interactive media accross one of the above methods of > delivery. I know everybody that has seen a cbt training package laughs at > its performance, design and over functionality but this package is truly > workable into any environment. It is totally customizable with builtin > testing, reporting and certificate assigning cababilities. Asside from the > sales pitch no intervention is needed and some form of this *could be used > to successfully deploy such a certification program. > > for more info on the above check out one of our websites; > http://www.masterycanada.com > http://www.masterytech.com Thanks for your hint, Ryan. In my opinion a good course should consist of different parts: (1) some sort of theoretical lecture (2) practical examples/exercises under supervision (3) self-controlled exercises (4) exchange of experiences (5) some sort of test to proof your advance (6) ...(? - one never knows) Now I can see an online-course as part (3) or (5) of a curriculum. A free and community-proven online-course would make every newbie happy and could be useful to any professional IT-Trainer as well. The latter would earn his money with (1), (2), (4) and (6). So only one question remains: Is there a market for FreeBSD-admins (remember I am writing from Germany)? Uli. > > > > > > > Date: Wed, 04 Jul 2001 11:46:54 -0500 > > > From: Bruce Pea > > > To: tedm@toybox.placo.com > > > Cc: freebsd-questions@FreeBSD.ORG > > > Subject: RE: Certification > > > > > > > > > < I apologize to everyone for the first copy of this post that > > > went out. I pulled the trigger before I hit spell check. > > > > > > > Ted, > > > > > > I have thought about the certification issue for a long time and > > > I think you raise some very good points. > > > > > > The reason I never took the time to get either Novell or > > > Microsoft's certifications was mainly because, after looking > > > over the material, I didn't think they were teaching me much of > > > anything new that I didn't already know. I couldn't see any > > > value in spending the money just to be able to say I had the > > > certification nor was my ego ever in the > > > need of those kinds of strokes... already have a bunch of > > > letters after my name (thanks mom and dad for paying tuition all > > > those years). > > > > > > However, I think a rigorous, well written, and carefully > > > prepared FBSD course would be very well received by FBSD users. > > > I've been setting up and administering networks for fourteen > > > years. Started out on Netware, migrated to NT, and finally found > > > my way to FreeBSD. I have several versions of Greg's book, a > > > copy of your book and a copy of the handbook that I devour and > > > pour over time and again not to mention the huge stack of > > > O'Reilly and other assorted books and manuals covering general > > > UNIX topics I find indispensable. I've been setting up and > > > administering FreeBSD long enough to feel quit confident and > > > capable of my skills yet I have this nagging feeling that there > > > is much to learn about UNIX... I don't think I'm in the 'zen > > > zone' yet and I'd like to get there. So, if someone created a > > > real 'meat and potatoes' FreeBSD course I'd be the first to > > > throw my money down and sign up. > > > > > > As far as accreditation goes perhaps there could be some sort of > > > 'open source accreditation'. What I mean by that is just as open > > > source code is subjected to the scrutiny of the world, why not > > > create a FBSD course and let the FBSD community bless it? > > > Perhaps we could create an accreditation 'core team' to review > > > and approve the curriculum. People who want to take the course > > > could pay a couple of hundred dollars for the training that > > > could be used to pay someone to administer the program. After > > > completing the course we could give them a certificate. > > > > > > It would be much more meaningful and significant to me to pass a > > > course that my fellow FreeBSD peers and sysadmins considered > > > valuable and credible than to take some other course that had > > > some other 'official accreditation' just to get another piece of > > > paper. I think a FreeBSD course is a great idea, but *really* > > > teach me something. Don't just do it to have a certification > > > program. > > > > > > Bruce Pea > > > > > > > > > > > > > > > > > > *********** REPLY SEPARATOR *********** > > > > > > On 7/3/2001 at 11:16 PM Ted Mittelstaedt wrote: > > > > > > >I'd like to start a discussion about this topic as I've been > > > >pondering a few questions related to this myself. > > > > > > > >To start with it's been my observation that certifications are > > > >desired for one of 3 general reasons: > > > > > > > >a) Employment: employers want people to have them to make it > > > easier to weed > > > >out > > > >a flood of applicants, candidates want them to be able to apply > > > for certain > > > >jobs. > > > > > > > >b) Personal Pride: people want the certification so they can > > > make their > > > >pedegree > > > >look bigger, have one more certificate on the wall, etc. > > > > > > > >c) Education: Students hope getting the certification will help > > > them learn > > > >about the thing they want to get certified on. > > > > > > > >Now, I would speculate that for BSD, reason number 1 is > > > nonexistent, and > > > >for > > > >reason number 2 the type of people that want another notch > > > aren't going to > > > >be the type that want it from BSD. That leaves reason number > > > 3, the > > > >education part. > > > > > > > >Now, there's some certification programs that do a fairly good > > > job of the > > > >education part, the Cisco CNE is probably one. Most though are > > > not aimed > > > >at > > > >educating, instead they are political. (note that this has > > > nothing to do > > > >with how "hard" the certification is to get) For example, the > > > MCSE from > > > >Microsoft is most definitely not about education (apologies to > > > the MCSE's > > > >in > > > >the crowd here) as the materials I've reviewed on MCSE's are > > > rather > > > >outdated > > > >when it comes to the networking part in particular. For > > > example they only > > > >even started discussing classless IP addressing last year in > > > the official > > > >MCSE curriculum. That certification is more about Microsoft > > > being able to > > > >use the fact that it has a certification as a marketing plus to > > > sell more > > > >Windows. I still do have respect for the folks that get it but > > > mainly > > > >respect at the fact that they went to the trouble and completed > > > it, not > > > >that > > > >I thought it was particularly hard for most of them to get. > > > Even the Cisco > > > >CNA is like this, it teaches little and is mainly there to > > > teach people > > > >what > > > >a router looks like, it's more about advertising the Cisco name > > > than > > > >anything else. > > > > > > > >With FreeBSD, there is no central company with an axe to grind > > > to see the > > > >world filled with CFE's (Certified FreeBSD Engineers? ;-)) so > > > your not > > > >going > > > >to see the funding from anyone for a "vanity" or "marketing" > > > CFE > > > >certification program. Instead, any certification program that > > > anyone puts > > > >together is going to have to be aimed at reason number 3 - the > > > education > > > >part. At least, that's the reasoning that I keep coming up > > > with. > > > > > > > >Now, once a CFE program DOES exist and has critical mass, why > > > then > > > >certainly > > > >it would be able to address reasons number 1 and 2 as well as > > > >marketing/political reasons. But to get there a certification > > > program > > > >would > > > >need to start out shooting for reason number 3. > > > > > > > >So, now we have kind of a "were we need to be at" premise, you > > > next need to > > > >address the issue of accreditation. All accreditation really > > > is, boiled > > > >down, is a blessing by someone who everyone agrees is _the_ > > > authority on > > > >the > > > >topic. > > > > > > > >An unaccredited certification program is worthless. You see > > > these all the > > > >time - for example our local community college has loads of > > > >"certifications" > > > >they will issue in Computer Information Technology but nothing > > > in that > > > >program is transferrable to anything else because none of it is > > > accredited. > > > >They ALSO have real, live CompSci courses that ARE accredited > > > and thus can > > > >be transferred. > > > > > > > >With the vendor-certifications, like the CNE and the MCSE, the > > > vendors > > > >themselves do the accreditation, or at least are supposed to. > > > > > > > >With FreeBSD, once again the lack of a single central authority > > > on the > > > >project means that a vendor of a FreeBSD certification program > > > is not going > > > >to be able to get accreditation on any kind of CFE program. In > > > short, > > > >_who_ > > > >out there is _the_ authority that can say whether some vendor's > > > FreeBSD > > > >certification program is good or not? > > > > > > > >There's lots of people out there, even myself, who could > > > _write_ a FreeBSD > > > >curriculum and certification program. But without a single > > > FreeBSD body to > > > >bless it, it seems to me that it's worthless. for example, if > > > New Horizons > > > >hired someone like me to write a FreeBSD certification program, > > > how would > > > >you as a student be able to trust that the information the > > > program is > > > >teaching is even correct? > > > > > > > > > > > >Ted Mittelstaedt tedm@toybox.placo.com > > > >Author of: The FreeBSD Corporate Networker's Guide > > > >Book website: http://www.freebsd-corp-net-guide.com > > > > > > > > > > > >>-----Original Message----- > > > >>From: owner-freebsd-questions@FreeBSD.ORG > > > >>[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of David > > > Caldwell > > > >>Sent: Monday, July 02, 2001 9:34 PM > > > >>To: freebsd-questions@FreeBSD.ORG > > > >>Subject: Certification > > > >> > > > >> > > > >>Is there a certification program for any of the BSD Unixes? > > > >> > > > >>I have seen them for Linux and for Sun Solaris, as well as the > > > >>various other > > > >>flavors of Unix. Will there be or is there one for BSD? > > > >> > > > >>David Caldwell > > > >>dns at knology dot net > > > >> > > > >> > > > >>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 > > > > > > > *--------------------------------------* > > | www.pukruppa.de www.2000d.de | > > | Wuppertal - Germany | > > *--------------------------------------* > > > > > > > > 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 > *--------------------------------------* | www.pukruppa.de www.2000d.de | | Wuppertal - Germany | *--------------------------------------* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 13: 3:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-141-144.mmcable.com [24.27.141.144]) by hub.freebsd.org (Postfix) with SMTP id 9C01437B406 for ; Wed, 4 Jul 2001 13:03:08 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 6522 invoked by uid 100); 4 Jul 2001 20:03:08 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15171.30332.22641.747791@guru.mired.org> Date: Wed, 4 Jul 2001 15:03:08 -0500 To: Mike Hogsett Cc: questions@freebsd.org Subject: Re: 4.3 install floppy -- No "Dangerously Dedicated" partitioning ? In-Reply-To: <77537033@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\ Sender: owner-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 Hogsett types: > Why does there appear to be no "true" bsd partitioning available with > the 4.3 install floppy? It's still there - it's just not documented, because it's causing more problems and needed less as time goes on. > The "remain compatible / dangerously dedicated" dialog > no longer appears when using the 4.3 install floppies > (kern.flp/mfsroot.flp). Right - the dialog no longer appears. You have to hit the F key to get to dangerously dedicated mode. 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 Wed Jul 4 13: 7: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from algonet.se (lennier.tninet.se [195.100.94.105]) by hub.freebsd.org (Postfix) with ESMTP id 195C337B405 for ; Wed, 4 Jul 2001 13:07:05 -0700 (PDT) (envelope-from gus@algonet.se) Received: from laptop (sdu116-237.ppp.algonet.se [195.163.237.116]) by lennier.tninet.se (BLUETAIL Mail Robustifier 2.2.2) with ESMTP id 546860.277220.994lennier-s1 for ; Wed, 04 Jul 2001 22:07:00 +0200 From: Gustaf Tham To: freebsd-questions@FreeBSD.org Subject: Subscriptions at WindRiver -- Where? Date: Wed, 04 Jul 2001 22:06:31 +0200 Message-ID: <1ot6kt8iic8c1fpacli5pris6qbhj9dqrk@4ax.com> X-Mailer: Forte Agent 1.8/32.548 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't find the "subscriptions" page on WindRiver any more. Surely you can still subscribe to the releases and to the toolkit? I also wonder when the next toolkit will be released. Thanks Gustaf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 13: 9:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from root.com (root.com [209.102.106.178]) by hub.freebsd.org (Postfix) with ESMTP id 817EC37B401 for ; Wed, 4 Jul 2001 13:09:36 -0700 (PDT) (envelope-from dg@root.com) Received: (from dg@localhost) by root.com (8.11.2/8.11.2) id f64JxHi97203; Wed, 4 Jul 2001 12:59:17 -0700 (PDT) (envelope-from dg) Date: Wed, 4 Jul 2001 12:59:17 -0700 From: David Greenman To: Greg Quinlan Cc: freebsd-questions@freebsd.org Subject: Re: fxp NIC error! Message-ID: <20010704125917.C89686@nexus.root.com> References: <20010704090512.A89686@nexus.root.com> <20010704194803.81322.qmail@web13305.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010704194803.81322.qmail@web13305.mail.yahoo.com>; from gwq_uk@yahoo.com on Wed, Jul 04, 2001 at 08:48:03PM +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 > >Hi All, > >I once came across a problem in connecting two auto >sensing interfaces using a X-over UTP cable. > >The resolution to the problem was to connect both >pieces of equipment to a HUB. Or set one to a constant >speed. (It was connecting a NIC in my server directly >to a Cisco Router's NIC.) > >(I noticed that someone had a similar PR; Intel NIC's >connecting to a Cisco router with a timeout error.) > >Unfortunately setting the interface to a constant >speed did not get it working, but the Cisco router did >detect the speed change! > >Should I get a different Intel NIC, do more current >ones have the same problem? Hmmm. Can you apply the attached patch and see if it has any effect on the problem? Thanks. -DG David Greenman Co-founder, The FreeBSD Project - http://www.freebsd.org President, TeraSolutions, Inc. - http://www.terasolutions.com Pave the road of life with opportunities. Index: if_fxp.c =================================================================== RCS file: /home/ncvs/src/sys/dev/fxp/if_fxp.c,v retrieving revision 1.110.2.4 diff -c -r1.110.2.4 if_fxp.c *** if_fxp.c 2001/06/08 20:36:57 1.110.2.4 --- if_fxp.c 2001/06/27 07:48:29 *************** *** 490,501 **** --- 490,503 ---- * If we are not a 82557 chip, we can enable extended features. */ if (sc->chip != FXP_CHIP_82557) { + #if 0 /* * If there is a valid cacheline size (8 or 16 dwords), * then turn on MWI. */ if (pci_read_config(dev, PCIR_CACHELNSZ, 1) != 0) sc->flags |= FXP_FLAG_MWI_ENABLE; + #endif /* turn on the extended TxCB feature */ sc->flags |= FXP_FLAG_EXT_TXCB; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 13: 9:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from falcon.mail.pas.earthlink.net (falcon.mail.pas.earthlink.net [207.217.120.74]) by hub.freebsd.org (Postfix) with ESMTP id A1BF337B408 for ; Wed, 4 Jul 2001 13:09:42 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.134.19.Dial1.SanJose1.Level3.net [209.245.134.19]) by falcon.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id NAA10405; Wed, 4 Jul 2001 13:09:40 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f64K9cb01214; Wed, 4 Jul 2001 13:09:38 -0700 (PDT) (envelope-from cjc) Date: Wed, 4 Jul 2001 13:09:38 -0700 From: "Crist J. Clark" To: Bob Hall Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Changing the domain name Message-ID: <20010704130938.C696@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20010704085700.F48882-100000@x1-6-00-50-ba-de-36-33.kico1.on.home.com> <3B4331EF.5DBD4FF2@i-clue.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from rjhalljr@starpower.net on Wed, Jul 04, 2001 at 03:55:14PM -0400 Sender: owner-freebsd-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, Jul 04, 2001 at 03:55:14PM -0400, Bob Hall wrote: [snip] > According to The Complete FreeBSD by Greg Leahy, I'm supposed to put my > fully qualified domain name in localhost.rev. When I do that, I get > the following error message after HUPing named: > host name "staunton.bodd_der.net" (Owner "0.0.127.in-addr.arpa") > IN (primary) > is invalid Underscores, '_', are not valid characters in domain names. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 13:10: 9 2001 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 F41CF37B405 for ; Wed, 4 Jul 2001 13:10:03 -0700 (PDT) (envelope-from scott@gerhardt-it.com) Received: from gerhardt-it.com (IDENT:root@h24-71-179-40.ss.shawcable.net [24.71.179.40]) by indigo.quadrant.net (8.9.1/8.9.1) with ESMTP id OAA25312 for ; Wed, 4 Jul 2001 14:10:01 -0600 (CST) Message-ID: <3B43799D.CFB9779C@gerhardt-it.com> Date: Wed, 04 Jul 2001 14:16:29 -0600 From: Scott Gerhardt Reply-To: scott@gerhardt-it.com Organization: Gerhardt Information Technologies X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.19-7.0.1 i686) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Hard Disk Errors 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, Running 4.3-RELEASE I was doing a CVSup ports and kept getting the following error during the ports update. What exactly does the following error mean? It looks like my hard drive or the IDE cable is faulty. Thankfully this just a test box, but the error concerns me just the same. Thanks, - Scott [SNIP: /var/log/messages] Jul 4 13:13:09 h24-71-125-163 /kernel: ad0: DMA problem fallback to PIO mode Jul 4 13:13:09 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) status=51 error=04 Jul 4 13:13:39 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) status=51 error=04 Jul 4 13:13:39 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) status=51 error=04 Jul 4 13:13:39 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) status=51 error=04 Jul 4 13:14:09 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) status=51 error=04 Jul 4 13:14:09 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) status=51 error=04 Jul 4 13:14:09 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) status=51 error=04 Jul 4 13:14:39 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) status=51 error=04 [SNIP: /var/log/messages] Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) status=51 error=04 Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) status=51 error=04 Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) status=51 error=04 Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) status=51 error=04 Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) status=51 error=04 Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) status=51 error=04 Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) status=51 error=04 Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) status=51 error=04 Jul 4 13:32:56 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) status=51 error=04 Jul 4 13:33:26 [SNIP: /var/log/messages] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 13:15:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gull.mail.pas.earthlink.net (gull.mail.pas.earthlink.net [207.217.121.85]) by hub.freebsd.org (Postfix) with ESMTP id 7D3D637B405 for ; Wed, 4 Jul 2001 13:15:14 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.134.19.Dial1.SanJose1.Level3.net [209.245.134.19]) by gull.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id NAA06583; Wed, 4 Jul 2001 13:15:10 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f64KF8L01269; Wed, 4 Jul 2001 13:15:08 -0700 (PDT) (envelope-from cjc) Date: Wed, 4 Jul 2001 13:15:07 -0700 From: "Crist J. Clark" To: Wayne Pascoe Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Bind question - LONG Message-ID: <20010704131507.D696@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <863d8cy7pl.fsf@pan.ehsrealtime.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <863d8cy7pl.fsf@pan.ehsrealtime.com>; from wayne.pascoe@realtime.co.uk on Wed, Jul 04, 2001 at 05:33:58PM +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, Jul 04, 2001 at 05:33:58PM +0100, Wayne Pascoe wrote: > Hi there, > > I seem to hit this problem every time I install bind. I have a couple > of workarounds, but I don't like ANY of them. > > This should probably be a FAQ by now. Once I sort this out, I'll write > one and submit it for addition into the handbook. > > The only thing I have changed in this example is my machines IP > range and my domain. All other data is accurate :) > > Here is what happens: I do an nslookup from the machine as follows: > nslookup - 192.168.1.170 and I get the following output: > > *** Can't find server name for address 192.168.1.170: Timed out > *** Default servers are not available First, DO NOT USE nslookup(8). It does some really annoying things, like insist on doing a reverse-lookup on the server IP you give it. nslookup(8) is considered depricated and you should try to use host(1) and dig(1) instead. See what happens with those so we can get some reliable results for debugging. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 13:17:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.mail.pas.earthlink.net (avocet.mail.pas.earthlink.net [207.217.121.50]) by hub.freebsd.org (Postfix) with ESMTP id 4B77937B401 for ; Wed, 4 Jul 2001 13:17:24 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.134.19.Dial1.SanJose1.Level3.net [209.245.134.19]) by avocet.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id NAA24363; Wed, 4 Jul 2001 13:17:22 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f64KHLL01305; Wed, 4 Jul 2001 13:17:21 -0700 (PDT) (envelope-from cjc) Date: Wed, 4 Jul 2001 13:17:21 -0700 From: "Crist J. Clark" To: Andrey Simonenko Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Is it possible to access FreeBSD-CURRENT sources via WebCVS? Message-ID: <20010704131721.E696@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <019401c10466$cf9c8040$6d36120a@comsys.ntukpi.kiev.ua> <20010704125539.B696@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: <20010704125539.B696@blossom.cjclark.org>; from cristjc@earthlink.net on Wed, Jul 04, 2001 at 12:55:39PM -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 Wed, Jul 04, 2001 at 12:55:39PM -0700, Crist J. Clark wrote: > On Wed, Jul 04, 2001 at 12:53:35PM +0400, Andrey Simonenko wrote: > > Hi All, > > > > Is it possible to access FreeBSD-CURRENT sources via WebCVS > > (wich tag should I use on http://www.freebsd.org/cgi/cvsweb.cgi/src/)? > > Please send CC of your answer on my e-mail. > > Tag "MAIN". Duh. Sorry, Tag "HEAD" Branch "MAIN" -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 13:45:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from comp1.mastery.ca (comp1.mastery.ca [209.202.88.60]) by hub.freebsd.org (Postfix) with ESMTP id 4D89437B405 for ; Wed, 4 Jul 2001 13:45:46 -0700 (PDT) (envelope-from rmasse@mastery.ca) Received: from 78kw954 ([209.202.88.150]) (authenticated) by comp1.mastery.ca (8.11.3/8.11.1) with ESMTP id f64KjhQ22824; Wed, 4 Jul 2001 16:45:43 -0400 (EDT) (envelope-from rmasse@mastery.ca) Message-ID: <01bb01c104ca$477d8d80$3200000a@Intranet> From: "Ryan Masse" To: "P. U. (Uli) Kruppa" Cc: "FreeBSD-Questions" References: <20010704214626.R47622-100000@localhost.de> Subject: Re: Certification Date: Wed, 4 Jul 2001 16:45:36 -0400 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, > > > > > > it seems, I am writing from the other side of the ocean > > > (Germany to be exact) and do not completely understand this > > > discussion. But for professional reasons I am interested. > > > > > > So I would be happy if you answered these two questions: > > > 1) Are there really any working online-courses for anything, > > > which will give you a certification - > > > if true: could you give me an example? > > > 2) (still if true:) do they work completely automagically or > > > are there human beings involved who control the stuff? > > > > > > > Actually i work IT for a company who has a training platform (not html > > based) which installs and runs over cd-rom,lan,intranet, and/or internet in > > which it delivers interactive media accross one of the above methods of > > delivery. I know everybody that has seen a cbt training package laughs at > > its performance, design and over functionality but this package is truly > > workable into any environment. It is totally customizable with builtin > > testing, reporting and certificate assigning cababilities. Asside from the > > sales pitch no intervention is needed and some form of this *could be used > > to successfully deploy such a certification program. > > > > for more info on the above check out one of our websites; > > http://www.masterycanada.com > > http://www.masterytech.com > Thanks for your hint, Ryan. > In my opinion a good course should consist of different > parts: > (1) some sort of theoretical lecture > (2) practical examples/exercises under supervision > (3) self-controlled exercises > (4) exchange of experiences > (5) some sort of test to proof your advance > (6) ...(? - one never knows) > Now I can see an online-course as part (3) or (5) of a > curriculum. A free and community-proven online-course would > make every newbie happy and could be useful to any > professional IT-Trainer as well. The latter would earn his > money with (1), (2), (4) and (6). > > So only one question remains: > Is there a market for FreeBSD-admins (remember I am > writing from Germany)? > The only challenge i could foresee is #3. What would prevent a user from picking up his O'Reilly book and referencing the correct answer for each of our questions then successfully passing the course and obtaining a cert? As for #5 we would simply need to come up with terminal and enabling learning objectives pertaining to the information we wish to teach. ex. Terminal objective. Understand the common components of a UNIX box. Enabling objective. Describe steps needed to be taken to successfully clean your system.. YADA YADA Once the objectives of each lesson are obtained it becomes rather simple to 1. design questions to test user 2. link questions with appropriate learning objective 3. be able to produce statistics and minimize any liability pertaining to the course. ie. Joe logs on, answers 17 of 20 questions right the system goes back and re-teaches the user the 3 question he got wrong and keeps him in the system until he gets all 20 questions right. That way the administrator can say Joe knows this stuff because he answered this question correct which then satisfied the learning objective that he understands the common components of a Unix box. Long winded but complete :) Ryan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 13:52:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dumbo.geko.net.au (CPE-61-9-145-96.vic.bigpond.net.au [61.9.145.96]) by hub.freebsd.org (Postfix) with SMTP id 5817E37B406 for ; Wed, 4 Jul 2001 13:52:09 -0700 (PDT) (envelope-from renail@ausisp.net) Received: (qmail 29581 invoked from network); 4 Jul 2001 02:05:04 -0000 Received: from nm1.geko.net.au (HELO linuxbox) ([203.2.239.20]) (envelope-sender ) by dumbo.geko.net.au (qmail-ldap-1.03) with SMTP for ; 4 Jul 2001 02:05:04 -0000 Content-Type: text/plain; charset="iso-8859-1" From: Renai LeMay Organization: ISP Limited To: Subject: /dev/nrsa0 problem Date: Wed, 4 Jul 2001 12:09:40 +1000 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <01070412094008.00195@linuxbox> 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, when trying to write to our tape drive, /dev/nrsa0, which was normally working fine, I get the following error: tar: can't write to /dev/nrsa0 : Input/output error Mode Density Blocksize bpi Compression Current: 0x24:DDS-2 variable 61000 DCLZ ---------available modes--------- 0: 0x24:DDS-2 variable 61000 DCLZ 1: 0x24:DDS-2 variable 61000 DCLZ 2: 0x24:DDS-2 variable 61000 DCLZ 3: 0x24:DDS-2 variable 61000 DCLZ --------------------------------- Current Driver State: at rest. --------------------------------- File Number: 0 Record Number: 0 what does this error ususally signify? I was attempting to write to the tape with a normal tar cvf /dev/nrsa0 dirname command. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 14:37: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp03.mrf.mail.rcn.net (smtp03.mrf.mail.rcn.net [207.172.4.62]) by hub.freebsd.org (Postfix) with ESMTP id 166EE37B401 for ; Wed, 4 Jul 2001 14:37:06 -0700 (PDT) (envelope-from rjhalljr@starpower.net) Received: from 66-44-63-152.s406.tnt5.lnhva.md.dialup.rcn.com ([66.44.63.152]) by smtp03.mrf.mail.rcn.net with esmtp (Exim 3.30 #2) id 15HuKW-0007CA-00 ; Wed, 04 Jul 2001 17:37:05 -0400 Mime-Version: 1.0 X-Sender: rjhalljr@pop.starpower.net Message-Id: In-Reply-To: <20010704130938.C696@blossom.cjclark.org> References: <20010704085700.F48882-100000@x1-6-00-50-ba-de-36-33.kico1.on.home.com> <3B4331EF.5DBD4FF2@i-clue.de> <20010704130938.C696@blossom.cjclark.org> Date: Wed, 4 Jul 2001 17:37:01 -0400 To: freebsd-questions@FreeBSD.ORG From: Bob Hall Subject: Re: Changing the domain name Cc: cjclark@alum.mit.edu 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 >On Wed, Jul 04, 2001 at 03:55:14PM -0400, Bob Hall wrote: > >[snip] > > > According to The Complete FreeBSD by Greg Leahy, I'm supposed to put my > > fully qualified domain name in localhost.rev. When I do that, I get > > the following error message after HUPing named: > > host name "staunton.bodd_der.net" (Owner "0.0.127.in-addr.arpa") > > IN (primary) > > is invalid > >Underscores, '_', are not valid characters in domain names. >-- >Crist J. Clark cjclark@alum.mit.edu AHA! It works! And now, on to the hermetic mysteries of installing ports ... Bob Hall Know thyself? Absurd direction! Bubbles bear no introspection. -Khushhal Khan Khatak MySQL list magic words: sql query database To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 14:50:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.gmx.net (pop.gmx.net [194.221.183.20]) by hub.freebsd.org (Postfix) with SMTP id ECA2C37B403 for ; Wed, 4 Jul 2001 14:50:13 -0700 (PDT) (envelope-from j_trzaska@gmx.net) Received: (qmail 13756 invoked by uid 0); 4 Jul 2001 21:50:12 -0000 Received: from pd4b9f213.dip.t-dialin.net (HELO gmx.net) (212.185.242.19) by mail.gmx.net (mp004-rz3) with SMTP; 4 Jul 2001 21:50:12 -0000 Message-ID: <3B438F44.2EDCCFA5@gmx.net> Date: Wed, 04 Jul 2001 23:48:52 +0200 From: Jens Trzaska X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Manolo Valdes Cc: freebsd-questions@freebsd.org Subject: Re: transparent proxy problem References: <01070408472700.01695@proxy.atenas.cult.cu> 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! Manolo Valdes wrote: > > Hi > I'm trying to run squid as a transparent proxy but nothing works fine. > > there is the squid.conf file: > _____________________________________________ > #Squid Transparent proxy settings > httpd_accel_host virtual > httpd_accel_port 80 > httpd_accel_with_proxy on > httpd_accel_uses_host_header on > > #Defaults: > > acl all src 0.0.0.0/0.0.0.0 > acl manager proto cache_object > acl localhost src 127.0.0.1/255.255.255.255 > acl SSL_ports port 443 563 > acl Safe_ports port 80 21 443 563 70 210 1025-65535 > acl Safe_ports port 280 # http-mgmt > acl Safe_ports port 488 # gss-http > acl Safe_ports port 591 # filemaker > acl Safe_ports port 777 # multiling http > acl CONNECT method CONNECT > > # My acls > acl This_One src 169.158.120.179/255.255.255.255 > acl LAN src 192.168.1.1/255.255.255.0 > #Default configuration: > > http_access allow manager localhost > http_access deny manager > http_access deny !Safe_ports > > http_access allow This_One > http_access allow LAN > http_access deny all > ____________________________________________________ > > and there is the ipfw rules > > 00050 fwd 169.158.120.179,3128 tcp from 192.168.1.0/24 80 to any shouldn't that be: 00050 fwd 169.158.120.179,3128 tcp from 192.168.1.0/24 to any 80 80 is the destination port... > 00100 allow ip from any to any via lo0 > 00200 deny ip from any to 127.0.0.0/8 > 65000 allow ip from any to any > 65535 deny ip from any to any > > My kernel have been compiled whith > ________________________________________________ > options IPFIREWALL > options IPFIREWALL_VERBOSE > options IPFIREWALL_FORWARD > options IPDIVERT > _________________________________________________ > > so i think everything is ok, but nothing works. > i was wondering if the squid that cames with FreeBSD-4.2 distributions is > compiled for transparent proxy? if that doesn't work ask me again. I have that constellation working over here. Works really fine. Regards Jens Trzaska To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 14:59:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from yonge.cs.toronto.edu (yonge.cs.toronto.edu [128.100.1.8]) by hub.freebsd.org (Postfix) with SMTP id 4298037B401; Wed, 4 Jul 2001 14:59:22 -0700 (PDT) (envelope-from khui@cs.toronto.edu) Received: from jane.cs.toronto.edu ([128.100.2.31]) by yonge.cs.toronto.edu with SMTP id <33977-24778>; Wed, 4 Jul 2001 17:59:15 -0400 Received: from gardiner.cs.toronto.edu by jane.cs.toronto.edu id <453139-28524>; Wed, 4 Jul 2001 17:59:07 -0400 Date: Wed, 4 Jul 2001 17:58:58 -0400 From: Kevin Hui X-Sender: khui@gardiner.cs To: freebsd-questions@freebsd.org, freebsd-hackers@freebsd.org Subject: Raw disk access in userland 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 all, I'm wondering if *BSD have any support for user programs to access raw disk devices, unbuffered. Such support is available under Linux: http://www.kernel.org/LDP/HOWTO/SCSI-2.4-HOWTO/rawdev.html http://www2.linuxjournal.com/cgi-bin/linux/man.cgi?mode=search&comm=raw§=1 Any information regarding this would be appreciated. Regards, -Kevin. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 15:37:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.2win.com (ns1.2win.com [206.40.35.1]) by hub.freebsd.org (Postfix) with ESMTP id D161137B401; Wed, 4 Jul 2001 15:36:56 -0700 (PDT) (envelope-from alee@2win.com) Received: from ns1.2win.com (ns1.2win.com [206.40.35.1]) by ns1.2win.com (8.9.3/8.9.3) with ESMTP id PAA70430; Wed, 4 Jul 2001 15:36:52 -0700 (PDT) (envelope-from alee@2win.com) Date: Wed, 4 Jul 2001 15:36:52 -0700 (PDT) From: Alex Lee To: freebsd-questions@freebsd.org Cc: freebsd-stable@freebsd.org Subject: upgrade from 3.5 stable to 4.0 stable 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 finally decided to upgrade the server from 3.5 stable to 4.0. I tried to following the procedure in UPDATING. But when I do "make buildworld -DNOPERL", I got the following messages: c++ -I/usr/obj/usr/src/i386/usr/include/g++ -O -pipe -I/usr/obj/usr/src/i386/ usr/include -I/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/lib -I/usr/src/g nu/usr.bin/gperf -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc:80: warning: `catch ', `throw', and `try' are all C++ reserved words /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc: In function `void operator delete(void *)': /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc:82: declaration of `operator delete(void *)' throws different exceptions... :82: ...from previous declaration here *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Any help is great appreciated. Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 15:45:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from fw.vindaloo.com (ool-182dd047.dyn.optonline.net [24.45.208.71]) by hub.freebsd.org (Postfix) with ESMTP id 1A2B037B401 for ; Wed, 4 Jul 2001 15:45:38 -0700 (PDT) (envelope-from chris@vindaloo.com) Received: (from uucp@localhost) by fw.vindaloo.com (8.10.1/8.10.1) id f64Mjba04810; Wed, 4 Jul 2001 18:45:37 -0400 (EDT) Received: from andale.vindaloo.com(192.168.133.3) via SMTP by fw.vindaloo.com, id smtpdZE6412; Wed Jul 4 18:45:27 2001 Received: by andale.vindaloo.com (Postfix, from userid 1000) id 3D2334383; Wed, 4 Jul 2001 17:45:20 -0500 (EST) Date: Wed, 4 Jul 2001 18:45:20 -0400 From: Christopher Sean Hilton To: Ryan Masse Cc: FreeBSD-Questions Subject: Re: nfs Message-ID: <20010704184520.A22620@andale.vindaloo.com> References: <016901c104bf$e52730a0$3200000a@Intranet> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <016901c104bf$e52730a0$3200000a@Intranet>; from rmasse@mastery.ca on Wed, Jul 04, 2001 at 03:31:16PM -0400 Sender: owner-freebsd-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, Jul 04, 2001 at 03:31:16PM -0400, Ryan Masse wrote: If you must run NFS over the internet you should consider setting up an IPSEC tunnel between the nfs client and server. On the other hand if you are trying to update a remote machine when the IP address of your home LAN has changed you should consider using ssh and some scripting like: #! /bin/sh my_address=$(/sbin/ifconfig le0 | awk '/inet / { print $2; }') echo "My IP Address is: ${my_address}" Combine this with ssh and you could update a remote DNS server or do whatever you need. Chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 16: 8:58 2001 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 D565F37B403; Wed, 4 Jul 2001 16:08:53 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id RAA47136; Wed, 4 Jul 2001 17:08:44 -0600 (MDT) (envelope-from ken) Date: Wed, 4 Jul 2001 17:08:44 -0600 From: "Kenneth D. Merry" To: Kevin Hui Cc: freebsd-questions@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: Raw disk access in userland Message-ID: <20010704170844.A47113@panzer.kdm.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from khui@cs.toronto.edu on Wed, Jul 04, 2001 at 05:58:58PM -0400 Sender: owner-freebsd-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, Jul 04, 2001 at 17:58:58 -0400, Kevin Hui wrote: > Hi all, > > I'm wondering if *BSD have any support for user programs to access raw > disk devices, unbuffered. Such support is available under Linux: > > http://www.kernel.org/LDP/HOWTO/SCSI-2.4-HOWTO/rawdev.html > http://www2.linuxjournal.com/cgi-bin/linux/man.cgi?mode=search&comm=raw§=1 > > Any information regarding this would be appreciated. There are no block (i.e. buffered) devices in FreeBSD, only character devices. So you can access raw devices without having to go through all the hoops described above. 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 Wed Jul 4 17:19:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from yonge.cs.toronto.edu (yonge.cs.toronto.edu [128.100.1.8]) by hub.freebsd.org (Postfix) with SMTP id 0969D37B403; Wed, 4 Jul 2001 17:19:22 -0700 (PDT) (envelope-from khui@cs.toronto.edu) Received: from jane.cs.toronto.edu ([128.100.2.31]) by yonge.cs.toronto.edu with SMTP id <33977-24778>; Wed, 4 Jul 2001 20:19:05 -0400 Received: from gardiner.cs.toronto.edu by jane.cs.toronto.edu id <453139-28524>; Wed, 4 Jul 2001 20:19:01 -0400 Date: Wed, 4 Jul 2001 20:18:51 -0400 From: Kevin Hui X-Sender: khui@gardiner.cs To: "Kenneth D. Merry" Cc: freebsd-questions@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: Raw disk access in userland In-Reply-To: <20010704170844.A47113@panzer.kdm.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 Then the question is whether the kernel is copying data between userspace and kernelspace or whether it just DMAs the data straight in/out of the user program's address space. In Linux raw-io, given that it is a block device and you are doing page-aligned block I/Os on it, is smart and does zero copies. While it may seem to be jumping through hoops, maybe it does have a performance advantage? Regards, -Kevin. On Wed, 4 Jul 2001, Kenneth D. Merry wrote: > On Wed, Jul 04, 2001 at 17:58:58 -0400, Kevin Hui wrote: > > Hi all, > > > > I'm wondering if *BSD have any support for user programs to access raw > > disk devices, unbuffered. Such support is available under Linux: > > > > http://www.kernel.org/LDP/HOWTO/SCSI-2.4-HOWTO/rawdev.html > > http://www2.linuxjournal.com/cgi-bin/linux/man.cgi?mode=search&comm=raw§=1 > > > > Any information regarding this would be appreciated. > > There are no block (i.e. buffered) devices in FreeBSD, only character > devices. > > So you can access raw devices without having to go through all the hoops > described above. > > 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 Wed Jul 4 17:28:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from bryden.apana.org.au (bryden.apana.org.au [203.3.126.129]) by hub.freebsd.org (Postfix) with ESMTP id 0A37637B401 for ; Wed, 4 Jul 2001 17:28:32 -0700 (PDT) (envelope-from dougy@brizzie.org) Received: from dougy (oracle.apana.org.au [203.3.126.130]) by bryden.apana.org.au (8.9.3/8.9.3) with SMTP id KAA14314 for ; Thu, 5 Jul 2001 10:26:17 +1000 (EST) (envelope-from dougy@brizzie.org) Message-ID: <012f01c104ea$99731900$827e03cb@apana.org.au> From: "Doug Young" To: Subject: ipf / ipfw config questions Date: Thu, 5 Jul 2001 10:36:57 +1000 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.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 I need to configure a firewall with the following functions (a) redirect incoming traffic (eg port 80 / http) to a LAN machine with private range IP (b) selectively route traffic from particular LAN machines via one of two different gateways Machines using the ADSL gateway must use natted private IPs Machines using the modem gateway can use either public IPs or natted private IPs It appears that IPF may be easier to configure for the former & IPFW easier to configure for the latter .... can anyone advise pro's & con's ?? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 4 17:38:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web13302.mail.yahoo.com (web13302.mail.yahoo.com [216.136.175.38]) by hub.freebsd.org (Postfix) with SMTP id 6295337B403 for ; Wed, 4 Jul 2001 17:38:23 -0700 (PDT) (envelope-from gwq_uk@yahoo.com) Message-ID: <20010705003823.13833.qmail@web13302.mail.yahoo.com> Received: from [213.122.160.168] by web13302.mail.yahoo.com; Thu, 05 Jul 2001 01:38:23 BST Date: Thu, 5 Jul 2001 01:38:23 +0100 (BST) From: =?iso-8859-1?q?Greg=20Quinlan?= Reply-To: gwq_uk@yahoo.com Subject: Re: fxp NIC error! To: David Greenman Cc: freebsd-questions@freebsd.org In-Reply-To: <20010704125917.C89686@nexus.root.com> 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, I loaded the patch, rebuilt the kernel but the error still persists: fxp1: SCB timeout: 0x1, 0x0, 0x80 0x0 fxp1: device timeout fxp1: DMA timeout fxp1: DMA timeout fxp1: SCB timeout: 0x10, 0x0, 0x80 0x0 fxp1: SCB timeout: 0x10, 0x0, 0x80 0x0 fxp1: command queue timeout fxp1: SCB timeout: 0x1, 0x0, 0x80 0x0 fxp1: device timeout fxp1: DMA timeout fxp1: DMA timeout fxp1: SCB timeout: 0x10, 0x0, 0x80 0x0 fxp1: SCB timeout: 0x10, 0x0, 0x80 0x0 fxp1: command queue timeout The other thing I have noted is that both Intel NIC's have the same chip set - i82555. One works, that is fxp0, but fxp1 does not, it gives the above error but won't communicate (fxp1 is an out of the box NIC). If it also makes any difference, I have a 3com (xl) NIC installed aswell. (see the dmesg attached) Anything else I can try? Greg DMESG: 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-STABLE #8: Thu Jul 5 09:54:15 EST 2001 greg@vpn.macquarrie.com.au:/usr/src/sys/compile/server Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 533393619 Hz CPU: Pentium II/Pentium II Xeon/Celeron (533.39-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x665 Stepping = 5 Features=0x183f9ff real memory = 65011712 (63488K bytes) avail memory = 60055552 (58648K bytes) Preloaded elf kernel "kernel" at 0xc030c000. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 atapci0: port 0x4000-0x400f,0x374-0x377,0x170-0x177, 0x3f4-0x3f7,0x1f0-0x1f7 irq 14 at device 0.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 isab0: at device 1.0 on pci0 isa0: on isab0 pci0: (vendor=0x1039, dev=0x0009) at 1.1 pcib2: at device 2.0 on pci0 pci1: on pcib2 pci1: at 0.0 fxp0: port 0xd000-0xd03f mem 0xe7800000-0xe78f ffff,0xe7b01000-0xe7b01fff irq 11 at device 11.0 on pci0 fxp0: Ethernet address 00:d0:b7:85:65:b1 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto xl0: <3Com 3c900-TPO Etherlink XL> port 0xd400-0xd43f irq 10 at device 13.0 on p ci0 xl0: Ethernet address: 00:60:08:34:70:50 xl0: selecting 10baseT transceiver, half duplex pci0: (vendor=0x125d, dev=0x1969) at 15.0 irq 5 fxp1: port 0xec00-0xec1f mem 0xe7900000-0xe79f ffff,0xe7b00000-0xe7b00fff irq 10 at device 17.0 on pci0 fxp1: Ethernet address 00:a0:c9:90:18:c6 inphy1: on miibus1 inphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pcib1: on motherboard pci2: on pcib1 orm0:




93236 --------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 0:36:35 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web11001.mail.yahoo.com (web11001.mail.yahoo.com [216.136.131.51]) by hub.freebsd.org (Postfix) with SMTP id 05FA637B401 for ; Thu, 5 Jul 2001 00:36:33 -0700 (PDT) (envelope-from fasi_74@yahoo.com) Message-ID: <20010705073632.85552.qmail@web11001.mail.yahoo.com> Received: from [203.135.48.14] by web11001.mail.yahoo.com; Thu, 05 Jul 2001 00:36:32 PDT Date: Thu, 5 Jul 2001 00:36:32 -0700 (PDT) From: faisal gillani Subject: script help ... 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 there can any one help me in making a small script all i want is that my system runs itself in single user mode , then run fsck on / , then return to normal mode... i know the commands 1, init 1 2, fsck / 3, init 6 i am stuck in how can i give the answers to the command automatically ... is it possible ? thanks Faisal __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Thu Jul 5 0:49:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from router.darlow.co.uk (pc1-bigg2-0-cust221.lut.cable.ntl.com [62.255.179.221]) by hub.freebsd.org (Postfix) with ESMTP id 5A61137B401 for ; Thu, 5 Jul 2001 00:49:14 -0700 (PDT) (envelope-from neil@darlow.co.uk) Received: (from neil@localhost) by router.darlow.co.uk (8.11.1/8.11.1) id f657nCa17484 for freebsd-questions@freebsd.org; Thu, 5 Jul 2001 08:49:12 +0100 (BST) (envelope-from neil@darlow.co.uk) Date: Thu, 5 Jul 2001 08:49:11 +0100 From: Neil Darlow To: freebsd-questions@freebsd.org Subject: Help with screen port Message-ID: <20010705084911.A17471@router.darlow.co.uk> 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 All, I am using screen-3.9.9 quite successfully having installed it's termcap entry. The problem I have is that when using zile, the Home key does what's expected, i.e. moves to beginning of line, but the End key is echoed by zile as \377. I usually ssh to my FreeBSD system with TERM=xterm-color before screen is run and once in screen, echo $TERM returns "screen". Is there a modification to screen's termcap that I can apply to fix this behaviour? Any help appreciated. Regards, Neil Darlow. -- 1024D/531F9048 1999-09-11 Neil Darlow GPG Fingerprint = 359D B8FF 6273 6C32 BEAA 43F9 E579 E24A 531F 9048 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 0:50:10 2001 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 7431937B406 for ; Thu, 5 Jul 2001 00:50:00 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-a015.otenet.gr [212.205.215.15]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f657npo03585; Thu, 5 Jul 2001 10:49:52 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.3) id f657hq102313; Thu, 5 Jul 2001 10:43:52 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Thu, 5 Jul 2001 10:43:51 +0300 From: Giorgos Keramidas To: ftrk Cc: freebsd-questions@FreeBSD.ORG Subject: Re: which *BSD to choose? Message-ID: <20010705104351.B2044@hades.hell.gr> References: <3B41F171@webmail.uaf.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B41F171@webmail.uaf.edu>; from ftrk@uaf.edu on Wed, Jul 04, 2001 at 10:28:24PM -0800 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-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 Raj, On Wed, Jul 04, 2001 at 10:28:24PM -0800, ftrk wrote: > Dear all, > I haven't used *BSD at all, but been using UNIX(Solaris) and LINUX > for awhile. Linux is ok, Solaris is also nice but it's not free in the manner of Open Source operating systems like Linux or the BSD's. It's a nice thing that you are thinking of 'trying BSD'. You should go ahead and try it :) Who knows, you might like it better than something else that you have seen until now. > I would like to play with it on my laptop which is kinda old, but I > was wondering about drivers for display chipsets etc: > Intel PIII Processor > ATi Rage 128 display chipset(14" SXGA display) > Xircom 10/100 cardbus PCMCIA card > Internal Lucent Gold v50 modem( I am sure this wouldn't be supported:( ) Since, you have posted this on a FreeBSD list, I'm assuming here that you are thinking of trying FreeBSD on that laptop. o Intel PIII Processor The processor you have is supported, yes. o ATi Rage 128 display chipset (14" SVGA display) The default FreeBSD environment (unless you install some version of X11, to provide you with a graphical interface) uses an 80x25 text-mode console. This is supported by ALL modern VGA-compatible display adapters, so you should not worry if FreeBSD will be able to 'display' its default console mode. When it comes to X11 and GUI programs, I think that ATi Rage is supported by X11, but since I'm not sure I will not say 'yes' or 'no'. Read the XFree86 documentation and release notes at www.xfree86.org to see is Rage128 is supported by some version of X11 and which version is that. o Ximrom 10/100 cardbus PCMCIA card I don't know :-/ o Internal Lucent Gold v50 modem This is a Winmodem IIRC. It will not work with FreeBSD, if that is true. Sorry 'bout that. You'll probably have to find some other modem to use with FreeBSD. > I would definitely like to use and support FreeBSD. However I am > unable to make up my mind as to which one will suit me and an > assessment of the three flavours. The BSD operating systems are not `FreeBSD flavors'. Therefore there are not many 'flavours'. There is only one FreeBSD, with that wonderful and fulfilling cocoa-bean-wrapped-in-chocolate taste, that makes it our favorite for years and years. Seriously now, you can check all of them and see which you like best. They all (they referring to FreeBSD, OpenBSD and NetBSD) have their advantages and good points, their disadvantages and limitations, their beautiful and ugly parts, etc. For me, when I chose which one to install one of the BSD's, it was ease of installation that made me decide to stick with FreeBSD. For you, it might be the way packages are organized. For somebody else, it is the security consiousness of the developers. The ultimate choise is upon you. Just try them all > and see which one fits your style/taste/personality. > Would you have any pointers as to where I can find some info? The web sites of all BSD operating systems usually include lots of documentation. You will find the articles, tutorials, and books available at www.freebsd.org to be very helpful, if you are looking for information on what FreeBSD can do for you, and how things can be done. A visit at www.netbsd.org and www.openbsd.org will also give you a chance to see what the other BSD Unixes support, what programs are available for each one of them, what platforms (hardware) they run on, how to obtain and/or install them, etc. > I am also interested in knowing the packages, like compilers(like > gcc, g77, perl) etc. FreeBSD comes bundled with source for everything (well, almost everything). Among the programs installed are: o BIND, the name-server software that dominates the Internet. o Sendmail, the popular MTA (mail transfer agent). o GZIP and BZIP2, compression tools. o CVS, the concurrent version system. o The GNU C Compiler. o IPFW and IPFILTER firewalls. o Support for DHCP with isc-dhcp/ o Perl version 5 o Lots of other programs and tools that I forgot to mention. From the Ports system, whose files are in /usr/ports, you can install more than 5,000 other software packages. You can read more about ports, at . Lots of other useful documents can be found at www.freebsd.org explaining a lot of things. See the site for details. > Also does this come with any crypto software? Yes, FreeBSD has support for various ways to use cryptography and related tools. What is it that you are specifically interested in? > Pardon my ignorance, I tried to look around, but couldn't find info > on compilers etc.. Well, look at the site. You'll find lots and lots of documentation to get you started and going a long way, there. Ciao, I hope I've helped a bit. -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 1:11:36 2001 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 4CB7D37B407 for ; Thu, 5 Jul 2001 01:11:33 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-b084.otenet.gr [195.167.121.212]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f658BMo08948; Thu, 5 Jul 2001 11:11:23 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.3) id f658ABm02744; Thu, 5 Jul 2001 11:10:11 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Thu, 5 Jul 2001 11:10:11 +0300 From: Giorgos Keramidas To: Neil Darlow Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Help with screen port Message-ID: <20010705111010.A2709@hades.hell.gr> References: <20010705084911.A17471@router.darlow.co.uk> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="AhhlLboLdkugWU4S" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010705084911.A17471@router.darlow.co.uk>; from neil@darlow.co.uk on Thu, Jul 05, 2001 at 08:49:11AM +0100 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --AhhlLboLdkugWU4S Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Jul 05, 2001 at 08:49:11AM +0100, Neil Darlow wrote: > Hi All, > > I am using screen-3.9.9 quite successfully having installed it's > termcap entry. > > The problem I have is that when using zile, the Home key does what's > expected, i.e. moves to beginning of line, but the End key is echoed > by zile as \377. Try applying the attached patch to /usr/src/share/termcap/termcap.src and rebuilding termcap from the sources. # cd /usr/src/share/termcap # patch -p0 < termcap.diff # make # make install Then, tell us if this works correctly for you :-) -giorgos --AhhlLboLdkugWU4S Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="termcap.diff" --- termcap.src.orig Thu Jul 5 11:08:11 2001 +++ termcap.src Thu Jul 5 11:08:22 2001 @@ -2555,7 +2555,7 @@ :ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:kb=^H:\ :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\E[15~:k6=\E[17~:\ :k7=\E[18~:k8=\E[19~:k9=\E[20~:k;=\E[21~:F1=\E[23~:F2=\E[24~:\ - :kh=\E[1~:kI=\E[2~:kD=\E[3~:kH=\E[4~:kP=\E[5~:kN=\E[6~:\ + :kh=\E[1~:kI=\E[2~:kD=\E[3~:@7=\E[4~:kP=\E[5~:kN=\E[6~:\ :eA=\E(B\E)0:as=^N:ae=^O:\ :vi=\E[?25l:ve=\E[34h\E[?25h:vs=\E[34l:\ :Co#8:pa#64:AF=\E[3%dm:AB=\E[4%dm:op=\E[39;49m:AX:\ --AhhlLboLdkugWU4S-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 1:29:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from harrier.mail.pas.earthlink.net (harrier.mail.pas.earthlink.net [207.217.121.12]) by hub.freebsd.org (Postfix) with ESMTP id 1DE1137B401 for ; Thu, 5 Jul 2001 01:29:24 -0700 (PDT) (envelope-from rjhansen@inav.net) Received: from inav.net (goose.mail.pas.earthlink.net [207.217.120.18]) by harrier.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id BAA11308 for ; Thu, 5 Jul 2001 01:29:22 -0700 (PDT) Message-ID: <3B4425FA.2000305@inav.net> Date: Thu, 05 Jul 2001 01:31:54 -0700 From: "Robert J. Hansen" User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.2) Gecko/20010701 X-Accept-Language: en-us MIME-Version: 1.0 To: questions@FreeBSD.org Subject: Newbie: Q regarding /dev entries 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 Howdy there. I'm new to FreeBSD, but have been using That Other Free UNIX-alike for the last few years and am pretty comfortable with it, although I'm certainly no guru. Recently, in an attempt to broaden my UNIX horizons, I've attempted to install FreeBSD (I happened to have 4.0 CDs lying around--forgot where I picked them up from). The install was relatively painless, and the command-line environment seems reasonably familiar. First thing I went about doing was attempting to mount a CD so I could install bash (as opposed to sh). This is where I ran into my first problem. Whereas Linux has /dev/hdX entries that make a degree of sense (/dev/hda is my main HD, /dev/hdb is a Zip, /dev/hdc is my CD-ROM), the plethora of entries in FreeBSD-4.0's /dev/ hierarchy is confusing the living daylights out of me. Attempting to mount_cd9660 /dev/cd0 and /dev/cd0a (the two most likely candidates, I thought) were fruitless. I tried several others which I thought were likely, and struck out on those as well. Thus, my first question: given that in Linux my setup is: /dev/hda --> IDE HD /dev/hdb --> IDE Zip /dev/hdc --> IDE CDROM ... can anyone give me a pointer on which /dev entries those correspond to in FreeBSD? ========== Second question. I'd like to get EMACS rewired to accept the backspace key, instead of throwing a fit at the fact that I'm not using delete. Now, I can just hack out a short EMACS LISP definition to remap the key, but I was hoping there was a more elegant solution. ========== If these questions have already been answered in a FAQ somewhere, please point me to it--I searched through the docs on FreeBSD.org, and couldn't find answers to these questions. However, I'm not ruling out the possibility I missed one. 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 Thu Jul 5 1:47:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from moutvdom01.kundenserver.de (moutvdom01.kundenserver.de [195.20.224.200]) by hub.freebsd.org (Postfix) with ESMTP id 052BF37B403 for ; Thu, 5 Jul 2001 01:47:28 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.209] (helo=mrvdom02.schlund.de) by moutvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 15I4nE-0000U6-00; Thu, 5 Jul 2001 10:47:24 +0200 Received: from pd901722f.dip.t-dialin.net ([217.1.114.47]) by mrvdom02.schlund.de with esmtp (Exim 2.12 #2) id 15I4nC-0008TQ-00; Thu, 5 Jul 2001 10:47:22 +0200 Date: Thu, 5 Jul 2001 10:48:41 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: "Robert J. Hansen" Cc: Subject: Re: Newbie: Q regarding /dev entries In-Reply-To: <3B4425FA.2000305@inav.net> Message-ID: <20010705104444.I58995-100000@localhost.de> 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, 5 Jul 2001, Robert J. Hansen wrote: > Date: Thu, 05 Jul 2001 01:31:54 -0700 > From: Robert J. Hansen > To: questions@FreeBSD.ORG > Subject: Newbie: Q regarding /dev entries > > Howdy there. I'm new to FreeBSD, but have been using That Other Free > UNIX-alike for the last few years and am pretty comfortable with it, > although I'm certainly no guru. Recently, in an attempt to broaden my > UNIX horizons, I've attempted to install FreeBSD (I happened to have 4.0 > CDs lying around--forgot where I picked them up from). > > The install was relatively painless, and the command-line environment > seems reasonably familiar. First thing I went about doing was > attempting to mount a CD so I could install bash (as opposed to sh). > This is where I ran into my first problem. > > Whereas Linux has /dev/hdX entries that make a degree of sense (/dev/hda > is my main HD, /dev/hdb is a Zip, /dev/hdc is my CD-ROM), the plethora > of entries in FreeBSD-4.0's /dev/ hierarchy is confusing the living > daylights out of me. > > Attempting to mount_cd9660 /dev/cd0 and /dev/cd0a (the two most likely > candidates, I thought) were fruitless. I tried several others which I > thought were likely, and struck out on those as well. > > Thus, my first question: given that in Linux my setup is: > > /dev/hda --> IDE HD -> /dev/ad0 > /dev/hdb --> IDE Zip do not know > /dev/hdc --> IDE CDROM /dev/acd0c I hope this will help for the start. Uli. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 1:54:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from rannoch.demon.co.uk (rannoch.demon.co.uk [158.152.110.117]) by hub.freebsd.org (Postfix) with ESMTP id 7FB2037B403 for ; Thu, 5 Jul 2001 01:54:25 -0700 (PDT) (envelope-from apbran@rannoch.demon.co.uk) Received: (from apb@localhost) by rannoch.demon.co.uk (8.11.4/8.10.1) id f658rkE03893; Thu, 5 Jul 2001 09:53:46 +0100 (BST) Date: Thu, 5 Jul 2001 09:53:45 +0100 From: Paul Branston To: ftrk Cc: freebsd-questions@freebsd.org Subject: Re: which *BSD to choose? Message-ID: <20010705095345.A30523@rannoch.demon.co.uk> References: <3B41F171@webmail.uaf.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B41F171@webmail.uaf.edu>; from ftrk@uaf.edu on Wed, Jul 04, 2001 at 10:28:24PM -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, Jul 04, 2001 at 10:28:24PM -0800, ftrk wrote: > Dear all, > I haven't used *BSD at all, but been using UNIX(Solaris) and LINUX for awhile. > However I have recently been reading lot about the *BSD's and even downloaded > Kevin Lai's paper from USENIX about the comparison of SOLARIS, LINUX and > FreeBSD. I would like to play with it on my laptop which is kinda old, but I > was wondering about drivers for display chipsets etc: > Intel PIII Processor > ATi Rage 128 display chipset(14" SXGA display) I run OpenBSD on this laptop, (Dell Inspiron). If your ATI Rage is the same as mine its not supported in XFree 3.3 but it is in XFree 4, OpenBSD 2.9 supports this out of the box, previously I had to install XFree 4 myself. I believe that FreeBSD 4.3 installs XFree 3 something and you'll have to upgrade XFree for your graphics. So for X purposes OpenBSD 2.9 might be easier. > Xircom 10/100 cardbus PCMCIA card you'll get a more accurate answer from the freebsd-mobile list but I think that the cardbus support is being worked on but not in the default install as yet. I have a 3Com 10/100 card which works fine (3Com 3c575C-TX Ethernet) and a Psion Gold modem card. > Internal Lucent Gold v50 modem( I am sure this wouldn't be supported:( ) > > I would definitely like to use and support FreeBSD. However I am unable to > make up my mind as to which one will suit me and an assessment of the three > flavours. Would you have any pointers as to where I can find some info? I am > currently running a dualboot, with winme(only because the internal modem is > not supported:(and I can't afford a external modem card right now ) and > linux(redhat 7 which I don't wanna use anymore since I have found things which > I don't like in it anymore). I am also interested in knowing the packages, > like compilers(like gcc, g77, perl) etc. Also does this come with any crypto > software? Pardon my ignorance, I tried to look around, but couldn't find info There are more tools and compilers available for any of these platforms than you could shake a stick at. FreeBSD has far more ports and has support for ISDN integrated whereas OpenBSD has no ISDN support integrated and a reduced number of ports. As for the ethos of the developers; OpenBSD aims to be the most secure, support only single processors. FreeBSD aims to be solid and stable and supports multi processors. NetBSD (not tried this myself) aims to run on more hardware flavours. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 1:58:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from router.darlow.co.uk (pc1-bigg2-0-cust221.lut.cable.ntl.com [62.255.179.221]) by hub.freebsd.org (Postfix) with ESMTP id 4C9CC37B403 for ; Thu, 5 Jul 2001 01:58:07 -0700 (PDT) (envelope-from neil@darlow.co.uk) Received: from ideal.darlow.co.uk (neil@ideal.darlow.co.uk [192.168.0.3]) by router.darlow.co.uk (8.11.1/8.11.1) with SMTP id f658vkA17744; Thu, 5 Jul 2001 09:57:47 +0100 (BST) (envelope-from neil@darlow.co.uk) From: Neil Darlow Date: Thu, 05 Jul 2001 08:57:46 GMT Message-ID: <20010705.8574600@ideal.darlow.co.uk> Subject: Re: Help with screen port To: Giorgos Keramidas Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <20010705111010.A2709@hades.hell.gr> References: <20010705084911.A17471@router.darlow.co.uk> <20010705111010.A2709@hades.hell.gr> X-Mailer: Mozilla/3.0 (compatible; StarOffice/5.2;Linux) X-Priority: 3 (Normal) 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 Hi Giorgos, Thank you for the patch. I checked the patch contents against my screen termcap entry. The @7=3D\E[4~ entry was already present. This is probably an indication that the problem lies with zile and not screen. Is there a list anywhere of VT100 keycodes that will help me in determining what \E[4~ represents? Regards, Neil Darlow. -- 1024D/531F9048 1999-09-11 Neil Darlow GPG fingerprint =3D 359D B8FF 6273 6C32 BEAA 43F9 E579 E24A 531F 9048 On 7/5/01, 9:10:11 AM, Giorgos Keramidas wrote: > Try applying the attached patch to /usr/src/share/termcap/termcap.src > and rebuilding termcap from the sources. > Then, tell us if this works correctly for you :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 2: 2:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [206.29.169.15]) by hub.freebsd.org (Postfix) with ESMTP id 1BF8237B401 for ; Thu, 5 Jul 2001 02:02:15 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Received: from tedm.placo.com (nat-rtr.freebsd-corp-net-guide.com [206.29.168.154]) by mail.freebsd-corp-net-guide.com (8.11.1/8.11.1) with SMTP id f6591hl38200; Thu, 5 Jul 2001 02:01:43 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Ryan Masse" , "P. U. (Uli) Kruppa" Cc: "FreeBSD-Questions" Subject: RE: Certification Date: Thu, 5 Jul 2001 02:01:42 -0700 Message-ID: <005401c10531$1c4c8dc0$1401a8c0@tedm.placo.com> 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 8.5, Build 4.71.2173.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 In-Reply-To: <01bb01c104ca$477d8d80$3200000a@Intranet> 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 >-----Original Message----- >From: owner-freebsd-questions@FreeBSD.ORG >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Ryan Masse > >The only challenge i could foresee is #3. What would prevent a user from >picking up his O'Reilly book and referencing the correct answer for each of >our questions then successfully passing the course and obtaining a cert? You have to ask questions that aren't in the book. ;-) Seriously, you can phrase the question in such a way as the answer will most likely NEVER be in any book. For example, you could ask a question like this: "The following kernel configuration file has an error in it. Identify what the error is and tell whether or not this error would prevent the kernel from being compiled, and if it doesen't prevent it from being compiled, state what problems the error in the file will cause when the kernel is loaded, if any" Ted Mittelstaedt tedm@toybox.placo.com Author of: The FreeBSD Corporate Networker's Guide Book website: http://www.freebsd-corp-net-guide.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 2:30:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from spade.pacific.net.sg (spade.pacific.net.sg [203.120.90.71]) by hub.freebsd.org (Postfix) with ESMTP id 01ACA37B405 for ; Thu, 5 Jul 2001 02:30:18 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop2.pacific.net.sg (pop2.pacific.net.sg [203.120.90.86]) by spade.pacific.net.sg with ESMTP id f659UGm09516 for ; Thu, 5 Jul 2001 17:30:16 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop2.pacific.net.sg with ESMTP id RAA11944 for ; Thu, 5 Jul 2001 17:30:16 +0800 (SGT) Message-ID: <3B443503.8D21D3D8@pacific.net.sg> Date: Thu, 05 Jul 2001 17:36:03 +0800 From: Kelvin Ng Chee Hoong X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: zh-TW,en MIME-Version: 1.0 To: "freebsd-questions@FreeBSD.ORG" Subject: Webadmin 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 would to use web interface to adminstrate and do house keeping of my FBSD . Does FBSD has feature of webadmin ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 2:35:55 2001 Delivered-To: freebsd-questions@freebsd.org Received: from webmail2.iinet.net.au (webmail2.iinet.net.au [203.59.24.54]) by hub.freebsd.org (Postfix) with ESMTP id 2B58B37B405 for ; Thu, 5 Jul 2001 02:35:48 -0700 (PDT) (envelope-from nigelt@iinet.net.au) Received: (from web@localhost) by webmail2.iinet.net.au (8.9.3/8.9.3) id RAA23636; Thu, 5 Jul 2001 17:36:09 +0800 Date: Thu, 5 Jul 2001 17:36:09 +0800 From: nigelt@iinet.net.au Message-Id: <200107050936.RAA23636@webmail2.iinet.net.au> X-Authentication-Warning: webmail2.iinet.net.au: web set sender to nigelt@iinet.net.au using -f Content-Type: text/plain Content-Disposition: inline Mime-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Reply-To: nigelt@iinet.net.au Subject: Xwindows X-Mailer: iiNet WebMail v2 Sender: owner-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 I am trying to get .xsession into my user account, but the only thing i get is .xsession-errors and in there is says _IceTransmkdir: Owner of /tm/.ICE-unix should be set to root ok i fixed that then i get in the terminal taylor : unable ro dispatch function can anyone help me please Thank you To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 3: 1:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gwdu60.gwdg.de (gwdu60.gwdg.de [134.76.98.60]) by hub.freebsd.org (Postfix) with ESMTP id DD32A37B401 for ; Thu, 5 Jul 2001 03:01:11 -0700 (PDT) (envelope-from kheuer@gwdu60.gwdg.de) Received: from localhost (kheuer@localhost) by gwdu60.gwdg.de (8.11.3/8.9.3) with ESMTP id f65A18401762; Thu, 5 Jul 2001 12:01:09 +0200 (CEST) (envelope-from kheuer@gwdu60.gwdg.de) Date: Thu, 5 Jul 2001 12:01:08 +0200 (CEST) From: Konrad Heuer To: "Robert J. Hansen" Cc: Subject: Re: Newbie: Q regarding /dev entries In-Reply-To: <3B4425FA.2000305@inav.net> Message-ID: <20010705114537.S1408-100000@gwdu60.gwdg.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN 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 On Thu, 5 Jul 2001, Robert J. Hansen wrote: > /dev/hda --> IDE HD > /dev/hdb --> IDE Zip > /dev/hdc --> IDE CDROM > > ... can anyone give me a pointer on which /dev entries those correspond > to in FreeBSD? Well, FreeBSD uses the following names: IDE (Atapi) devices: -------------------- Device type=09=09Block device=09=09Raw Device Disk 1=09=09=09/dev/ad0=09=09/dev/rad0 =09=09=09/dev/ad0s1=09=09/dev/rad0s1 =09=09=09/dev/ad0s1a=09=09/dev/rad0s1a =09=09=09/dev/ad0a=09=09/dev/rad0a =09=09=09...=09=09=09... Disk 2=09=09=09/dev/ad1=09=09/dev/rad1 =09=09=09...=09=09=09... CDROM=09=09=09/dev/acd0a=09=09/dev/racd0a =09=09=09/dev/acd0c=09=09/dev/racd0c SCSI-Devices: ------------- Similar, but da instead of ad for disks, and cd0a etc. instead of acd0a etc. In general, block device nodes are used for mounting (e.g.), raw device nodes for formatting (e.g.). The disk slices (partitions) are numbered s1, s2 and so on; the BSD-specific partitions (disklabel partitions) are numbered a, b, c, d, ..., h. The letter a ist used for the root partition, b for swap, c for the whole disk, and the rest for additional partitions. If you want to play an audio cd, you'd have to use /dev/racd0c, if you want to mount a CD containing a filesystem, you'd have to use /dev/acd0c. Hope that helps. > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > Second question. I'd like to get EMACS rewired to accept the backspace > key, instead of throwing a fit at the fact that I'm not using delete. > Now, I can just hack out a short EMACS LISP definition to remap the key, > but I was hoping there was a more elegant solution. Sorry, I can't help here. Regards Konrad Heuer Personal Bookmarks: Gesellschaft f=FCr wissenschaftliche Datenverarbeitung mbH G=D6ttingen http://www.freebsd.org Am Fa=DFberg, D-37077 G=D6ttingen http://www.daemonnews.o= rg Deutschland (Germany) kheuer@gwdu60.gwdg.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 3:19:44 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mime5.datastream.com (mime5.datastream.com [159.104.154.29]) by hub.freebsd.org (Postfix) with ESMTP id 57F5637B401 for ; Thu, 5 Jul 2001 03:19:16 -0700 (PDT) (envelope-from Rob.Craig@tfeurope.com) Received: from pmkgbbrmhs3.datastream.com (pmkgbbrmhs3.datastream.com) by mime5.datastream.com (Content Technologies SMTPRS 4.2.1) with ESMTP id for ; Thu, 5 Jul 2001 11:16:50 +0100 Received: by pmkgbbrmhs3.datastream.com with Internet Mail Service (5.5.2653.19) id <3JNSBQ4B>; Thu, 5 Jul 2001 11:13:22 +0100 Message-ID: From: "Craig, Rob" To: "'questions@FreeBSD.org'" Subject: !! Does FreeBSD run on a Dell Notebook !! Date: Thu, 5 Jul 2001 11:13:30 +0100 Importance: high X-Priority: 1 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative ; boundary="----_=_NextPart_001_01C1053B.23A54E90" Sender: owner-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_01C1053B.23A54E90 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Afternoon, =20 I would like to switch from Redhat Linux to FreeBSD. Linux is giving my grief. I have an old notebook I would like to install it on. Can you tell me if anyone has tested it or it runs fine? =20 Dell Latitude XPi P133ST NeoMagic 2070 Graphics Card 1Mb Panasonic KXL-DL40 SCSI external CDROM (PCMCIA) 3Com 3CCFE575CD-D PCMCIA Network Card =20 Notebooks are troublesome with anything but I am not sure if Free BSD has all the drivers? =20 Thanks, =20 ROB =20 =20 Rob Craig Spain & Portugal Technical=20 =20 Thomson Financial Calle Maldonado 31, 1B 28006 Madrid, Espa=F1a. =20 Tel : +34 91 745 2028 Fax: +34 91 745 2021 Email: rob.craig@tfeurope.com .oOo.oOo.oOo.oOo.oOo.oOo.oOo.oOo.oOo. =20 =20 "This communication is intended solely for the addressee and is confidentia= l and not for third party unauthorised distribution." ------_=_NextPart_001_01C1053B.23A54E90 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

Afternoon,

 <= /span>

I would like to switch from Redhat Linux to FreeBSD. Linux is giving= my grief. I have an old notebook I would like to install it on. Can you tell m= e if anyone has tested it or it runs fine?

 <= /span>

Dell Latitude XPi P133ST

NeoMagic 2070 Graphics Card 1Mb

Panasonic KXL-DL40 SCSI external CDROM (PCMCIA)

3Com 3CCFE575CD-D PCMCIA Network Card

 <= /span>

Notebooks are troublesome with anything but I am not sure if Free BSD has all the drivers?

 <= /span>

Thanks,

 <= /span>

ROB

 <= /span>

 <= /span>

Rob Craig

= Spain & Portugal Technical

 

= Thomson Financial

Calle Maldonado 31, 1B

28006 Madrid, Espa=F1a.<= /font>

 =

Tel :           &nbs= p; +34 91 745 2028

Fax:           &nbs= p; +34 91 745 2021

Email:          rob.craig@tfeurope.com

= .oOo.oOo.oOo.oOo.oO= o.oOo.oOo.oOo.oOo.

 

 <= ![endif]>



"This communication is intended solely for the addressee and is confidentia= l and not for third party unauthorised distribution."
------_=_NextPart_001_01C1053B.23A54E90-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 4:16:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailcc.infostrada.it (mailcc.infostrada.it [151.17.58.15]) by hub.freebsd.org (Postfix) with ESMTP id 86DCE37B401 for ; Thu, 5 Jul 2001 04:16:49 -0700 (PDT) (envelope-from Elisa.Pavesi@infostrada.it) Received: by mailcc.infostrada.it with Internet Mail Service (5.5.2650.21) id ; Thu, 5 Jul 2001 13:13:12 +0200 Message-ID: <37E658ECD816D511AE7D00A0C9E32F462B1030@postami05.infostrada.it> From: Pavesi Elisa To: "'freebsd-questions@FreeBSD.ORG'" Subject: important! Date: Thu, 5 Jul 2001 13:15:44 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) 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! I would like to know if freebsd is compatible with agent omniback. Thanks a lot! Elisa Pavesi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 4:31: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nctams01.nctldno.navy.mil (nctams01.nctldno.navy.mil [164.229.13.13]) by hub.freebsd.org (Postfix) with ESMTP id A243437B405 for ; Thu, 5 Jul 2001 04:30:53 -0700 (PDT) (envelope-from LavenderB@nctldno.navy.mil) Received: by nctams01.nctldno.navy.mil with Internet Mail Service (5.5.2232.9) id ; Thu, 5 Jul 2001 06:28:41 -0500 Message-ID: <78202F9B9BB8D311846100805F577DFF274099@nctams01.nctldno.navy.mil> From: "Lavender, Ben" To: "'Crist J. Clark'" Cc: "'freebsd-questions@freebsd.org'" Subject: RE: interface aliases and routing Date: Thu, 5 Jul 2001 06:28:36 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2232.9) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C10545.A3EB2124" Sender: owner-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_01C10545.A3EB2124 Content-Type: text/plain; charset="windows-1252" > Sounds like the problem might not be at this machine, but rather at > the router. Run a, > > # tcpdump -nvv host 164.229.1.74 > > And try, > > $ telnet -s 164.229.1.74 > $ ping -S 164.229.1.74 > $ telnet -s 164.229.1.74 > $ ping -S 164.229.1.74 > > Then try the reverse, that is, run the commands on the other hosts > and going to 164.229.1.74. While it would appear that my Lucent L3 switch wants to know 1.74's mac address when I send it traffic from afar, it doesnt care to forward packets to it. With many thanks to you, I now take my quest elsewhere. Many thanks for the rc.conf routing info, as well! :) ben > > > Ive also got a sizeable portion of static routes to other > gateways for other > > networks (speaking of which, I cant find how one might add > a static route to > > rc.conf in /etc/defaults/rc.conf, I'm currently using a > shell script. Any > > ideas on that one?). > > man rc.conf > > Example: > > static_routes="route_1 route_2" # Use more meaningful names > route_route_1="net 10.10.0.0/16 164.229.1.125" > route_route_2="net 10.128.0.0/16 164.229.1.124" > > > > relevent rc.conf: > > network_interfaces="xl0 lo0" > > ifconfig_xl0="inet 164.229.1.72 up netmask 255.255.255.192" > > defaultrouter="164.229.1.66" > > ifconfig_xl0_alias0="inet 164.229.1.74 up netmask 255.255.255.192" > ^^^ > Still need to fix that. > -- > Crist J. Clark Network > Security Engineer > crist.clark@globalstar.com Globalstar, L.P. > (408) 933-4387 FAX: (408) 933-4926 > > The information contained in this e-mail message is confidential, > intended only for the use of the individual or entity named above. If > the reader of this e-mail is not the intended recipient, or > the employee > or agent responsible to deliver it to the intended recipient, you are > hereby notified that any review, dissemination, distribution > or copying > of this communication is strictly prohibited. If you have > received this > e-mail in error, please contact postmaster@globalstar.com > ------_=_NextPart_001_01C10545.A3EB2124 Content-Type: text/html; charset="windows-1252" Content-Transfer-Encoding: quoted-printable RE: interface aliases and routing

> Sounds like the problem might not be at this = machine, but rather at
> the router. Run a,
>
>   # tcpdump -nvv host = 164.229.1.74
>
> And try,
>
>   $ telnet -s 164.229.1.74 <host = on LAN>
>   $ ping -S 164.229.1.74 <host on = LAN>
>   $ telnet -s 164.229.1.74 <host = not on LAN>
>   $ ping -S 164.229.1.74 <host not = on LAN>
>
> Then try the reverse, that is, run the commands = on the other hosts
> and going to 164.229.1.74.

While it would appear that my Lucent L3 switch wants = to know 1.74's mac address when I send it traffic from afar, it doesnt = care to forward packets to it.  With many thanks to you, I now = take my quest elsewhere.

Many thanks for the rc.conf routing info, as well! = :)

ben



>
> > Ive also got a sizeable portion of static = routes to other
> gateways for other
> > networks (speaking of which, I cant find = how one might add
> a static route to
> > rc.conf in /etc/defaults/rc.conf, I'm = currently using a
> shell script.  Any
> > ideas on that one?). 
>
> man rc.conf
>
> Example:
>
>   static_routes=3D"route_1 = route_2"     # Use more meaningful = names
>   route_route_1=3D"net = 10.10.0.0/16 164.229.1.125"
>   route_route_2=3D"net = 10.128.0.0/16 164.229.1.124"
>
>
> > relevent rc.conf:
> > network_interfaces=3D"xl0 = lo0"
> > ifconfig_xl0=3D"inet 164.229.1.72 up = netmask 255.255.255.192"
> > = defaultrouter=3D"164.229.1.66"
> > ifconfig_xl0_alias0=3D"inet = 164.229.1.74 up netmask 255.255.255.192"
>          = ;            = ;            = ;            = ;            = ;       ^^^
> Still need to fix that.
> --
> Crist J. = Clark           &= nbsp;           &= nbsp;        Network
> Security Engineer
> = crist.clark@globalstar.com       &nbs= p;            = Globalstar, L.P.
> (408) = 933-4387          &nbs= p;           &nbs= p;         FAX: (408) = 933-4926
>
> The information contained in this e-mail = message is confidential,
> intended only for the use of the individual or = entity named above.  If
> the reader of this e-mail is not the intended = recipient, or
> the employee
> or agent responsible to deliver it to the = intended recipient, you are
> hereby notified that any review, dissemination, = distribution
> or copying
> of this communication is strictly = prohibited.  If you have
> received this
> e-mail in error, please contact = postmaster@globalstar.com
>

------_=_NextPart_001_01C10545.A3EB2124-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 4:33:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from fisher.vip.uk.com (fisher.vip.uk.com [194.176.218.14]) by hub.freebsd.org (Postfix) with ESMTP id 1637437B407 for ; Thu, 5 Jul 2001 04:33:17 -0700 (PDT) (envelope-from rob@robhulme.com) Received: from modem-123-52-60-62.vip.uk.com ([62.60.52.123] helo=hal9001) by fisher.vip.uk.com with smtp (Exim 3.22 #1) id 15I7Nj-0006OS-00 for freebsd-questions@freebsd.org; Thu, 05 Jul 2001 12:33:15 +0100 From: "Rob" To: "Freebsd-Questions@Freebsd. Org" Subject: Is my FTP hacked? Date: Thu, 5 Jul 2001 12:35:07 +0100 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) Importance: Normal 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 I think someone may have hacked into my ftp... I've got this line in my /var/log/messages "Jul 5 10:03:50 www ftpd[8728]: /etc/pwd.db: No such file or directory"... is there any way I can see what account they logged in as and so on? or has something else happened? I've disabled FTP for the moment.... -------------------------------- http://www.robhulme.com http://www.christianunion.org.uk "May the forks be with us." - Blue Raja (Mystery Men) Everything you've learned in school as "obvious" becomes less and less obvious as you begin to study the universe. For example, there are no solids in the universe. There's not even a suggestion of a solid. There are no absolute continuums. There are no surfaces. There are no straight lines. ---- R. Buckminster Fuller To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 4:39:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns3.tstt.net.tt (ns3.tstt.net.tt [196.3.132.3]) by hub.freebsd.org (Postfix) with SMTP id DE2D337B403 for ; Thu, 5 Jul 2001 04:39:38 -0700 (PDT) (envelope-from dchulhan@uwi.tt) Received: (qmail 101054 invoked from network); 5 Jul 2001 11:39:15 -0000 Received: from unknown (HELO openaccess03) (209.94.207.20) by ns3.tstt.net.tt with SMTP; 5 Jul 2001 11:39:15 -0000 Message-ID: <000b01c10547$481b7360$0b01a8c0@openaccess03> From: "Dale Chulhan - Work" To: "Andrew Gould" , References: <20010704150852.32167.qmail@web13402.mail.yahoo.com> Subject: Re: modem at sio4? Date: Thu, 5 Jul 2001 07:40:24 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 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 Hello I had similar problems accessing my internal modem that was also auto detected at sio4 ( 5th COM port ). I had asked and what no one told me was that is I had enabled sio(0-3) in my kernel and through using 'boot -c' that the computer would see them as already occupied and assign the next 'available one'. So I yanked sio2 & sio3 out of my kernel and out of my boot time config, lo and behold it detected my modem at sio2 and everything worked fine from there .... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 4:45:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from fisher.vip.uk.com (fisher.vip.uk.com [194.176.218.14]) by hub.freebsd.org (Postfix) with ESMTP id 8AC1D37B403 for ; Thu, 5 Jul 2001 04:45:55 -0700 (PDT) (envelope-from rob@robhulme.com) Received: from modem-123-52-60-62.vip.uk.com ([62.60.52.123] helo=hal9001) by fisher.vip.uk.com with smtp (Exim 3.22 #1) id 15I7Zx-00077y-00 for freebsd-questions@FreeBSD.ORG; Thu, 05 Jul 2001 12:45:53 +0100 From: "Rob" To: "Freebsd-Questions@Freebsd. Org" Subject: RE: Is my FTP hacked? Date: Thu, 5 Jul 2001 12:47:45 +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.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 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 think someone may have hacked into my ftp... I've got this line in my > /var/log/messages > > "Jul 5 10:03:50 www ftpd[8728]: /etc/pwd.db: No such file or > directory"... > > is there any way I can see what account they logged in as and so > on? or has > something else happened? > > I've disabled FTP for the moment.... OK - false alarm it seems... I used 'last' to track down who the user was at 10:03... I've talked to him and he said he was just uploading some files (for one of our websites)... I trust him, so I guess we weren't trying to be hacked - but what happened to cause this error? If I look at passwd.db with pico /etc/pwd.db it has what looks like a load of garbage on the first line... then: # # 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 /nonexistent then the last line looks like a load of the usernames on the system followed by a *lot* of ÿÿÿÿÿÿÿÿÿÿÿ symbols... What is going on ? :) -Rob -------------------------------- http://www.robhulme.com http://www.christianunion.org.uk "May the forks be with us." - Blue Raja (Mystery Men) Everything you've learned in school as "obvious" becomes less and less obvious as you begin to study the universe. For example, there are no solids in the universe. There's not even a suggestion of a solid. There are no absolute continuums. There are no surfaces. There are no straight lines. ---- R. Buckminster Fuller To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 5: 1:51 2001 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 28D2137B401 for ; Thu, 5 Jul 2001 05:01:48 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-b094.otenet.gr [195.167.121.222]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f65C1go16136; Thu, 5 Jul 2001 15:01:42 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.3) id f65C1dR05100; Thu, 5 Jul 2001 15:01:40 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Thu, 5 Jul 2001 15:01:37 +0300 From: Giorgos Keramidas To: David Leimbach Cc: questions@freebsd.org Subject: Re: which *BSD to choose? Message-ID: <20010705150135.A5069@hades.hell.gr> References: <3B41F171@webmail.uaf.edu> <20010705104351.B2044@hades.hell.gr> <20010705061852.A457@mutt.home.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010705061852.A457@mutt.home.net>; from leimbacd@bellsouth.net on Thu, Jul 05, 2001 at 06:18:52AM -0500 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-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, Jul 05, 2001 at 06:18:52AM -0500, David Leimbach wrote: > > o Internal Lucent Gold v50 modem > > It is a winmodem and there IS a driver for these for FreeBSD. I don't > remember where but a google.com search should yield the correct results. > Its a .ko module and it has been ported from the excelent Lucent winmodem > driver that I use on my linux laptop. I assume there are certain winmodems > that do not work with this particular driver. The driver is specifically for > Lucent winmodems however. > > Most likely it should work if this driver is any good. In that case, tis my pleasure to stand corrected. I didn't know there was *any* kind of support for Lucent modems on FreeBSD. Very good news :) -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 5: 6:56 2001 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 9B5AD37B407 for ; Thu, 5 Jul 2001 05:06:51 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-b094.otenet.gr [195.167.121.222]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f65C6eo24222; Thu, 5 Jul 2001 15:06:40 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.3) id f65C6bN05153; Thu, 5 Jul 2001 15:06:38 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Thu, 5 Jul 2001 15:06:35 +0300 From: Giorgos Keramidas To: Neil Darlow Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Help with screen port Message-ID: <20010705150633.A5113@hades.hell.gr> References: <20010705084911.A17471@router.darlow.co.uk> <20010705111010.A2709@hades.hell.gr> <20010705.8574600@ideal.darlow.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010705.8574600@ideal.darlow.co.uk>; from neil@darlow.co.uk on Thu, Jul 05, 2001 at 08:57:46AM +0000 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-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, Jul 05, 2001 at 08:57:46AM +0000, Neil Darlow wrote: > Hi Giorgos, > > Thank you for the patch. I checked the patch contents against my > screen termcap entry. The @7=\E[4~ entry was already present. > > This is probably an indication that the problem lies with zile and > not screen. Is there a list anywhere of VT100 keycodes that will help > me in determining what \E[4~ represents? In that case it's probably zile trying to do it's own keyboard handling, which fails to recognize \E[4~ as the `end key' sequence. I am not sure how zile will let you customize the key mapping, but this looks very familiar. The `joe' editor also uses its own terminal escape sequence parsing, and that is configurable through /usr/local/lib/joerc. Check if zile has some similar scheme of handling escape sequences. If that is the case, you can probably fix it by editing the proper config and/or startup file. -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 5:13:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.cult.cu (mail.cult.cu [169.158.120.2]) by hub.freebsd.org (Postfix) with ESMTP id 992B637B407 for ; Thu, 5 Jul 2001 05:13:04 -0700 (PDT) (envelope-from admin@atenas.cult.cu) Received: from mail by mail.cult.cu with local-bsmtp (Exim 3.03 #2) id 15I7zu-0004xN-00; Thu, 05 Jul 2001 08:12:42 -0400 Received: from [169.158.120.178] (helo=mail.atenas.cult.cu) by mail.cult.cu with esmtp (Exim 3.03 #2) id 15I7zn-0004wz-00; Thu, 05 Jul 2001 08:12:35 -0400 Received: from mail.atenas.cult.cu ([169.158.120.179] helo=proxy.atenas.cult.cu) by mail.atenas.cult.cu with smtp (Exim 3.22 #2) id 15I81j-0000q9-00; Thu, 05 Jul 2001 08:14:35 -0400 From: Manolo Valdes To: Jens Trzaska , freebsd-questions@freebsd.org Subject: Re: transparent proxy problem Date: Thu, 5 Jul 2001 08:10:50 -0400 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain; charset="us-ascii" References: <01070408472700.01695@proxy.atenas.cult.cu> <3B438F44.2EDCCFA5@gmx.net> In-Reply-To: <3B438F44.2EDCCFA5@gmx.net> MIME-Version: 1.0 Message-Id: <01070508120800.01583@proxy.atenas.cult.cu> 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 yes its runing already the problem was in the ipfw command thanks Manolito On Wed, 04 Jul 2001, you wrote: > Hello! > > Manolo Valdes wrote: > > > > Hi > > I'm trying to run squid as a transparent proxy but nothing works fine. > > > > there is the squid.conf file: > > _____________________________________________ > > #Squid Transparent proxy settings > > httpd_accel_host virtual > > httpd_accel_port 80 > > httpd_accel_with_proxy on > > httpd_accel_uses_host_header on > > > > #Defaults: > > > > acl all src 0.0.0.0/0.0.0.0 > > acl manager proto cache_object > > acl localhost src 127.0.0.1/255.255.255.255 > > acl SSL_ports port 443 563 > > acl Safe_ports port 80 21 443 563 70 210 1025-65535 > > acl Safe_ports port 280 # http-mgmt > > acl Safe_ports port 488 # gss-http > > acl Safe_ports port 591 # filemaker > > acl Safe_ports port 777 # multiling http > > acl CONNECT method CONNECT > > > > # My acls > > acl This_One src 169.158.120.179/255.255.255.255 > > acl LAN src 192.168.1.1/255.255.255.0 > > #Default configuration: > > > > http_access allow manager localhost > > http_access deny manager > > http_access deny !Safe_ports > > > > http_access allow This_One > > http_access allow LAN > > http_access deny all > > ____________________________________________________ > > > > and there is the ipfw rules > > > > 00050 fwd 169.158.120.179,3128 tcp from 192.168.1.0/24 80 to any > > shouldn't that be: > > 00050 fwd 169.158.120.179,3128 tcp from 192.168.1.0/24 to any 80 > > 80 is the destination port... > > > 00100 allow ip from any to any via lo0 > > 00200 deny ip from any to 127.0.0.0/8 > > 65000 allow ip from any to any > > 65535 deny ip from any to any > > > > My kernel have been compiled whith > > ________________________________________________ > > options IPFIREWALL > > options IPFIREWALL_VERBOSE > > options IPFIREWALL_FORWARD > > options IPDIVERT > > _________________________________________________ > > > > so i think everything is ok, but nothing works. > > i was wondering if the squid that cames with FreeBSD-4.2 distributions is > > compiled for transparent proxy? > > if that doesn't work ask me again. I have that constellation working > over here. Works really fine. > > Regards Jens Trzaska > > 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 Jul 5 5:16:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailin7.bigpond.com (juicer38.bigpond.com [139.134.6.95]) by hub.freebsd.org (Postfix) with ESMTP id BB70C37B401 for ; Thu, 5 Jul 2001 05:16:37 -0700 (PDT) (envelope-from rking2@bigpond.net.au) Received: from ghostbox ([144.135.24.69]) by mailin7.bigpond.com (Netscape Messaging Server 4.15) with SMTP id GG02D800.5IV for ; Thu, 5 Jul 2001 22:22:20 +1000 Received: from CPE-61-9-146-144.vic.bigpond.net.au ([61.9.146.144]) by bwmam01.mailsvc.email.bigpond.com(MailRouter V2.9g 8311/7590892); 05 Jul 2001 22:22:20 Message-ID: <001301c1054c$62eff170$0200a8c0@ghostbox> From: "Matthew King" To: Subject: User Help Date: Thu, 5 Jul 2001 22:16:57 +1000 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000E_01C105A0.345BC420" 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 This is a multi-part message in MIME format. ------=_NextPart_000_000E_01C105A0.345BC420 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, i am wondering if there is a way to lock a user in his own home dir so that he cant look through other peoples home dirs. But i can use this way cd /home chmod 755 * because i run homepages in some people's home dir's is there anouther way? Matthew King ------=_NextPart_000_000E_01C105A0.345BC420 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi,
i am wondering if there is a way to = lock a user in=20 his own home dir
so that he cant look through other = peoples home=20 dirs.
But i can use this way
cd /home
chmod 755 *
 
because i run homepages in some = people's home=20 dir's
 
is there anouther way?
 
Matthew King
------=_NextPart_000_000E_01C105A0.345BC420-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 5:25:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from router.darlow.co.uk (pc1-bigg2-0-cust221.lut.cable.ntl.com [62.255.179.221]) by hub.freebsd.org (Postfix) with ESMTP id 06C5337B403 for ; Thu, 5 Jul 2001 05:25:16 -0700 (PDT) (envelope-from neil@darlow.co.uk) Received: from ideal.darlow.co.uk (neil@ideal.darlow.co.uk [192.168.0.3]) by router.darlow.co.uk (8.11.1/8.11.1) with SMTP id f65CP9A18244; Thu, 5 Jul 2001 13:25:10 +0100 (BST) (envelope-from neil@darlow.co.uk) From: Neil Darlow Date: Thu, 05 Jul 2001 12:25:09 GMT Message-ID: <20010705.12250900@ideal.darlow.co.uk> Subject: Re: Help with screen port To: Giorgos Keramidas Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <20010705150633.A5113@hades.hell.gr> References: <20010705084911.A17471@router.darlow.co.uk> <20010705111010.A2709@hades.hell.gr> <20010705.8574600@ideal.darlow.co.uk> <20010705150633.A5113@hades.hell.gr> X-Mailer: Mozilla/3.0 (compatible; StarOffice/5.2;Linux) X-Priority: 3 (Normal) 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 Hi Giorgos, Looking into this some more, I get the impression that xterm and VT100 don't have escapes to position at end-of-line. Someone please correct me if I'm wrong in this. As zile is based on ncurses, I guess the author isn't interested in the specifics of particular terminal types. He'll just use a standard call to locate the cursor and the library will do what's necessary. I've posted zile's author on this problem. Let's hope he can advise. Regards, Neil Darlow. -- 1024D/531F9048 1999-09-11 Neil Darlow GPG fingerprint =3D 359D B8FF 6273 6C32 BEAA 43F9 E579 E24A 531F 9048 On 7/5/01, 1:06:35 PM, Giorgos Keramidas wrote: > In that case it's probably zile trying to do it's own keyboard handlin= g, > which fails to recognize \E[4~ as the `end key' sequence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 5:37: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.snet.net (smtp.snet.net [204.60.6.55]) by hub.freebsd.org (Postfix) with ESMTP id D74E637B403 for ; Thu, 5 Jul 2001 05:36:57 -0700 (PDT) (envelope-from j.carlson@snet.net) Received: from enkil ([204.60.229.241]) by smtp.snet.net (8.11.1/8.11.1/SNET-mx-1.4/D-1.10/O-1.7) with SMTP id f65CauC01784 for ; Thu, 5 Jul 2001 08:36:56 -0400 (EDT) Message-ID: <005501c10554$40382e60$030aa8c0@my.net> From: "Jae Carlson" To: "freebsd-questions" Subject: Formating Hard drive Date: Thu, 5 Jul 2001 09:13:14 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 Disposition-Notification-To: "Jae Carlson" 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 Greetings all, This may seem like a silly question but I am wondering how do I format a hard drive? I knoiw under Linux it is mke2fs Also how do I create the swap partition? I know when I first set FreeBSD it created one but I added a hard drive which I made another swap partition on. Thank you in advance, Jae To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 6:16:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from rannoch.demon.co.uk (rannoch.demon.co.uk [158.152.110.117]) by hub.freebsd.org (Postfix) with ESMTP id 824B237B405 for ; Thu, 5 Jul 2001 06:16:25 -0700 (PDT) (envelope-from apbran@rannoch.demon.co.uk) Received: (from apb@localhost) by rannoch.demon.co.uk (8.11.4/8.10.1) id f65DGFh06003; Thu, 5 Jul 2001 14:16:15 +0100 (BST) Date: Thu, 5 Jul 2001 14:16:14 +0100 From: Paul Branston To: Jae Carlson Cc: freebsd-questions Subject: Re: Formating Hard drive Message-ID: <20010705141614.A12948@rannoch.demon.co.uk> References: <005501c10554$40382e60$030aa8c0@my.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <005501c10554$40382e60$030aa8c0@my.net>; from j.carlson@snet.net on Thu, Jul 05, 2001 at 09:13:14AM -0400 Sender: owner-freebsd-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, Jul 05, 2001 at 09:13:14AM -0400, Jae Carlson wrote: > Greetings all, > This may seem like a silly question but I am wondering how do I format a > hard drive? I knoiw under Linux it is mke2fs Also how do I create > the swap partition? I know when I first set FreeBSD it created one but I > added a hard drive which I made another swap partition on. > Thank you in advance, > Jae try "man newfs" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 6:28:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from c-b.com (c-b.com [4.22.148.5]) by hub.freebsd.org (Postfix) with SMTP id 1BDCD37B401 for ; Thu, 5 Jul 2001 06:28:26 -0700 (PDT) (envelope-from GameiroWA@c-b.com) Received: from Carbur-Message_Server by c-b.com with Novell_GroupWise; Thu, 05 Jul 2001 08:28:29 -0500 Message-Id: X-Mailer: Novell GroupWise Internet Agent 5.5.3.1 Date: Thu, 05 Jul 2001 08:27:41 -0500 From: "Walter A Gameiro" To: Subject: .Net Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable 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 This CNET article claims that Microsoft and Corel are working on a version = of C# and .Net's Common Language Infrastructure for FreeBSD to be released = sometime in 2002. Can anyone confirm or deny? Does anyone have any knowledge of this? Does anyone know where to sign up for a Beta trial? Thank you in advance, Walter Gameiro To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 6:28:48 2001 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 8C1ED37B401 for ; Thu, 5 Jul 2001 06:28:43 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-b113.otenet.gr [195.167.121.241]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f65DSco07088; Thu, 5 Jul 2001 16:28:38 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.3) id f65DSag06020; Thu, 5 Jul 2001 16:28:36 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Thu, 5 Jul 2001 16:28:36 +0300 From: Giorgos Keramidas To: Jae Carlson Cc: freebsd-questions Subject: Re: Formating Hard drive Message-ID: <20010705162835.A5972@hades.hell.gr> References: <005501c10554$40382e60$030aa8c0@my.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <005501c10554$40382e60$030aa8c0@my.net>; from j.carlson@snet.net on Thu, Jul 05, 2001 at 09:13:14AM -0400 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-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: Jae Carlson Sent: Thu, Jul 05, 2001 at 09:13:14AM -0400 Subject: Formating Hard drive > Greetings all, > This may seem like a silly question but I am wondering how do I format a > hard drive? I knoiw under Linux it is mke2fs Also how do I create > the swap partition? I know when I first set FreeBSD it created one but I > added a hard drive which I made another swap partition on. There's an excellent article online at www.freebsd.org which explains how to format media in FreeBSD. Enjoy reading it at: http://www.freebsd.org/doc/en_US.ISO8859-1/articles/formatting-media/index.html -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 6:34:12 2001 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 4D0D937B403 for ; Thu, 5 Jul 2001 06:34:09 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-b113.otenet.gr [195.167.121.241]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f65DY5o16444; Thu, 5 Jul 2001 16:34:06 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.3) id f65DY5N06088; Thu, 5 Jul 2001 16:34:05 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Thu, 5 Jul 2001 16:34:04 +0300 From: Giorgos Keramidas To: Walter A Gameiro Cc: freebsd-questions@FreeBSD.ORG Subject: Re: .Net Message-ID: <20010705163404.A6039@hades.hell.gr> 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 GameiroWA@c-b.com on Thu, Jul 05, 2001 at 08:27:41AM -0500 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-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: Walter A Gameiro Sent: Thu, Jul 05, 2001 at 08:27:41AM -0500 Subject: .Net > This CNET article claims that Microsoft and Corel are working on a > version of C# and .Net's Common Language Infrastructure for FreeBSD > to be released sometime in 2002. Yes, this has been discussed extensively on freebsd-chat and freebsd-advocacy a few days/weeks back. Take a peek at the archives for some very interesting opinions on this topic :) > Can anyone confirm or deny? I guess, that until Microsoft confirms or denies something, makes something available, or drops the whole idea, the rest of us can only speculate on what is actually going to happen. > Does anyone have any knowledge of this? > Does anyone know where to sign up for a Beta trial? I'm pretty confident that if and when Microsoft has something ready for beta testers, they will make it available through their own channels. The -questions list is probably not the best place to ask such questions :-/ -giorgos PS: Please try to wrap your posts at 70-75 characters or so. They look much better that way :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 6:41:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from buffnet4.buffnet.net (buffnet4.buffnet.net [205.246.19.13]) by hub.freebsd.org (Postfix) with ESMTP id 1FF6437B401 for ; Thu, 5 Jul 2001 06:41:29 -0700 (PDT) (envelope-from shovey@buffnet.net) Received: from buffnet11.buffnet.net (buffnet11.buffnet.net [205.246.19.55]) by buffnet4.buffnet.net (8.9.3/8.8.7) with ESMTP id JAA85530; Thu, 5 Jul 2001 09:50:12 -0400 (EDT) (envelope-from shovey@buffnet.net) Date: Thu, 5 Jul 2001 09:41:13 -0400 (EDT) From: Stephen Hovey To: Rob Cc: "Freebsd-Questions@Freebsd. Org" Subject: RE: Is my FTP hacked? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN 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 Looks to my like pwd.db got corrupted. Recreate it - (or it will recreate itself next time you edit the password stuff with vipw) On Thu, 5 Jul 2001, Rob wrote: >=20 > > I think someone may have hacked into my ftp... I've got this line in my > > /var/log/messages > > > > "Jul 5 10:03:50 www ftpd[8728]: /etc/pwd.db: No such file or > > directory"... > > > > is there any way I can see what account they logged in as and so > > on? or has > > something else happened? > > > > I've disabled FTP for the moment.... > OK - false alarm it seems... I used 'last' to track down who the user was= at > 10:03... I've talked to him and he said he was just uploading some files > (for one of our websites)... I trust him, so I guess we weren't trying to= be > hacked - but what happened to cause this error? >=20 > If I look at passwd.db with pico /etc/pwd.db it has what looks like a loa= d > of garbage on the first line... > then: >=20 > # > # List of acceptable shells for chpass(1). > # Ftpd will not allow users to connect who are not using > # one of these shells. >=20 > /bin/sh > /bin/csh > /nonexistent >=20 > then the last line looks like a load of the usernames on the system follo= wed > by a *lot* of =FF=FF=FF=FF=FF=FF=FF=FF=FF=FF=FF symbols... >=20 > What is going on ? :) >=20 > -Rob >=20 > -------------------------------- > http://www.robhulme.com > http://www.christianunion.org.uk >=20 > "May the forks be with us." - Blue Raja (Mystery Men) >=20 > Everything you've learned in school as "obvious" becomes less and less > obvious as you begin to study the universe. > For example, there are no solids in the universe. > There's not even a suggestion of a solid. There are no absolute > continuums. > There are no surfaces. There are no straight lines. > ---- R. Buckminster Fuller >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message >=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 6:43:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freyr.cba.ualr.edu (freyr.cba.ualr.edu [144.167.120.20]) by hub.freebsd.org (Postfix) with ESMTP id 2FCB237B406 for ; Thu, 5 Jul 2001 06:43:18 -0700 (PDT) (envelope-from jeroyce@freyr.cba.ualr.edu) Received: by freyr.cba.ualr.edu (Postfix, from userid 1003) id 331E71CA3; Thu, 5 Jul 2001 08:42:01 -0500 (CDT) Date: Thu, 5 Jul 2001 08:42:01 -0500 From: "Joseph E. Royce" To: Scott Gerhardt Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Hard Disk Errors Message-ID: <20010705084201.A70040@freyr.cba.ualr.edu> References: <3B43799D.CFB9779C@gerhardt-it.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B43799D.CFB9779C@gerhardt-it.com>; from scott@gerhardt-it.com on Wed, Jul 04, 2001 at 02:16: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 Wed, Jul 04, 2001 at 02:16:29PM -0600, Scott Gerhardt wrote: > Hello All, > > Running 4.3-RELEASE > > I was doing a CVSup ports and kept getting the following error during > the ports update. What exactly does the following error mean? It looks > like my hard drive or the IDE cable is faulty. > Thankfully this just a test box, but the error concerns me just the > same. > > Thanks, > > - Scott > Hi Scott, It means that your hard drive is on it's way to failing. The best thing to do is backup everything inportant and replace the drive. -Joe > [SNIP: /var/log/messages] > Jul 4 13:13:09 h24-71-125-163 /kernel: ad0: DMA problem fallback to PIO > mode > Jul 4 13:13:09 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) > status=51 error=04 > Jul 4 13:13:39 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) > status=51 error=04 > Jul 4 13:13:39 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) > status=51 error=04 > Jul 4 13:13:39 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) > status=51 error=04 > Jul 4 13:14:09 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) > status=51 error=04 > Jul 4 13:14:09 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) > status=51 error=04 > Jul 4 13:14:09 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) > status=51 error=04 > Jul 4 13:14:39 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 8257039 of 3477168-3477247 (ad0s1 bn 8257039; cn 513 tn 249 sn 7) > status=51 error=04 > > [SNIP: /var/log/messages] > > Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) > status=51 error=04 > Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) > status=51 error=04 > Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) > status=51 error=04 > Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) > status=51 error=04 > Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) > status=51 error=04 > Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) > status=51 error=04 > Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) > status=51 error=04 > Jul 4 13:32:26 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) > status=51 error=04 > Jul 4 13:32:56 h24-71-125-163 /kernel: ad0s1f: hard error writing fsbn > 7075571 of 2886466-2886467 (ad0s1 bn 7075571; cn 440 tn 110 sn 41) > status=51 error=04 > Jul 4 13:33:26 > [SNIP: /var/log/messages] > > 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 Jul 5 7:27:29 2001 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 C406437B408 for ; Thu, 5 Jul 2001 07:27:19 -0700 (PDT) (envelope-from culverk@wam.umd.edu) Received: from rac5.wam.umd.edu (IDENT:root@rac5.wam.umd.edu [128.8.10.145]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id KAA07814; Thu, 5 Jul 2001 10:27:11 -0400 (EDT) Received: from rac5.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac5.wam.umd.edu (8.9.3/8.9.3) with SMTP id KAA01672; Thu, 5 Jul 2001 10:27:10 -0400 (EDT) Received: from localhost (culverk@localhost) by rac5.wam.umd.edu (8.9.3/8.9.3) with ESMTP id KAA01668; Thu, 5 Jul 2001 10:27:10 -0400 (EDT) X-Authentication-Warning: rac5.wam.umd.edu: culverk owned process doing -bs Date: Thu, 5 Jul 2001 10:27:10 -0400 (EDT) From: Kenneth Wayne Culver To: Giorgos Keramidas Cc: ftrk , freebsd-questions@FreeBSD.ORG Subject: Re: which *BSD to choose? In-Reply-To: <20010705104351.B2044@hades.hell.gr> 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 The ethernet card isn't supported by FreeBSD-STABLE... no cardbus cards are. Ken On Thu, 5 Jul 2001, Giorgos Keramidas wrote: > Hello Raj, > > On Wed, Jul 04, 2001 at 10:28:24PM -0800, ftrk wrote: > > Dear all, > > > I haven't used *BSD at all, but been using UNIX(Solaris) and LINUX > > for awhile. > > Linux is ok, Solaris is also nice but it's not free in the manner of > Open Source operating systems like Linux or the BSD's. It's a nice > thing that you are thinking of 'trying BSD'. You should go ahead and > try it :) Who knows, you might like it better than something else > that you have seen until now. > > > I would like to play with it on my laptop which is kinda old, but I > > was wondering about drivers for display chipsets etc: > > Intel PIII Processor > > ATi Rage 128 display chipset(14" SXGA display) > > Xircom 10/100 cardbus PCMCIA card > > Internal Lucent Gold v50 modem( I am sure this wouldn't be supported:( ) > > Since, you have posted this on a FreeBSD list, I'm assuming here that > you are thinking of trying FreeBSD on that laptop. > > o Intel PIII Processor > > The processor you have is supported, yes. > > o ATi Rage 128 display chipset (14" SVGA display) > > The default FreeBSD environment (unless you install some version > of X11, to provide you with a graphical interface) uses an 80x25 > text-mode console. This is supported by ALL modern VGA-compatible > display adapters, so you should not worry if FreeBSD will be able > to 'display' its default console mode. > > When it comes to X11 and GUI programs, I think that ATi Rage is > supported by X11, but since I'm not sure I will not say 'yes' or > 'no'. Read the XFree86 documentation and release notes at > www.xfree86.org to see is Rage128 is supported by some version of > X11 and which version is that. > > o Ximrom 10/100 cardbus PCMCIA card > > I don't know :-/ > > o Internal Lucent Gold v50 modem > > This is a Winmodem IIRC. It will not work with FreeBSD, if that > is true. Sorry 'bout that. You'll probably have to find some > other modem to use with FreeBSD. > > > I would definitely like to use and support FreeBSD. However I am > > unable to make up my mind as to which one will suit me and an > > assessment of the three flavours. > > The BSD operating systems are not `FreeBSD flavors'. Therefore there > are not many 'flavours'. There is only one FreeBSD, with that > wonderful and fulfilling cocoa-bean-wrapped-in-chocolate taste, that > makes it our favorite for years and years. > > Seriously now, you can check all of them and see which you like best. > They all (they referring to FreeBSD, OpenBSD and NetBSD) have their > advantages and good points, their disadvantages and limitations, their > beautiful and ugly parts, etc. For me, when I chose which one to > install one of the BSD's, it was ease of installation that made me > decide to stick with FreeBSD. For you, it might be the way packages > are organized. For somebody else, it is the security consiousness of > the developers. The ultimate choise is upon you. Just try them all > > and see which one fits your style/taste/personality. > > > Would you have any pointers as to where I can find some info? > > The web sites of all BSD operating systems usually include lots of > documentation. You will find the articles, tutorials, and books > available at www.freebsd.org to be very helpful, if you are looking > for information on what FreeBSD can do for you, and how things can be > done. A visit at www.netbsd.org and www.openbsd.org will also give > you a chance to see what the other BSD Unixes support, what programs > are available for each one of them, what platforms (hardware) they run > on, how to obtain and/or install them, etc. > > > I am also interested in knowing the packages, like compilers(like > > gcc, g77, perl) etc. > > FreeBSD comes bundled with source for everything (well, almost > everything). Among the programs installed are: > > o BIND, the name-server software that dominates the Internet. > > o Sendmail, the popular MTA (mail transfer agent). > > o GZIP and BZIP2, compression tools. > > o CVS, the concurrent version system. > > o The GNU C Compiler. > > o IPFW and IPFILTER firewalls. > > o Support for DHCP with isc-dhcp/ > > o Perl version 5 > > o Lots of other programs and tools that I forgot to mention. > > >From the Ports system, whose files are in /usr/ports, you can install > more than 5,000 other software packages. You can read more about > ports, at . > > Lots of other useful documents can be found at www.freebsd.org > explaining a lot of things. See the site for details. > > > Also does this come with any crypto software? > > Yes, FreeBSD has support for various ways to use cryptography and > related tools. What is it that you are specifically interested in? > > > Pardon my ignorance, I tried to look around, but couldn't find info > > on compilers etc.. > > Well, look at the site. > You'll find lots and lots of documentation to get you started and > going a long way, there. > > Ciao, > > I hope I've helped a bit. > > -giorgos > > 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 Jul 5 7:35:20 2001 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 4A8BD37B405 for ; Thu, 5 Jul 2001 07:35:18 -0700 (PDT) (envelope-from freymann@scaryg.shacknet.nu) Received: from phantom (staff.eagle.ca [209.167.16.15]) by marlo.eagle.ca (8.11.3/8.11.0) with SMTP id f65EYMv59400; Thu, 5 Jul 2001 10:34:22 -0400 (EDT) (envelope-from freymann@scaryg.shacknet.nu) Message-ID: <01a501c1055f$b348a8c0$0f01a8c0@phantom> From: "Gerald T. Freymann" To: "Kelvin Ng Chee Hoong" , References: <3B443503.8D21D3D8@pacific.net.sg> Subject: Re: Webadmin Date: Thu, 5 Jul 2001 10:35:12 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 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 > I would to use web interface to adminstrate and do house keeping of > my FBSD . Does FBSD has feature of webadmin ? Try this one: /usr/ports # make search key=webmin Port: webmin-0.87_1 Path: /usr/ports/sysutils/webmin Info: Web-based interface for system administration for Unix Maint: olgeni@FreeBSD.org Index: sysutils B-deps: p5-Net-SSLeay-1.07 R-deps: -gf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 7:35:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from euphoria.confusion.net (dementia.confusion.net [205.166.119.16]) by hub.freebsd.org (Postfix) with ESMTP id 62DE537B411 for ; Thu, 5 Jul 2001 07:35:46 -0700 (PDT) (envelope-from stuyman@euphoria.confusion.net) Received: from localhost (localhost [127.0.0.1]) by euphoria.confusion.net (8.11.2/8.11.2) with SMTP id f65EXeZ00439; Thu, 5 Jul 2001 07:33:40 -0700 (PDT) Date: Thu, 5 Jul 2001 07:33:39 -0700 (PDT) From: Laurence Berland To: Kenneth Wayne Culver Cc: Giorgos Keramidas , ftrk , freebsd-questions@FreeBSD.ORG Subject: Re: which *BSD to choose? 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 In case that isn't implied by Kenneth's message, it should be noted that -current has cardbus, and a 5.0 isn't all that far off afaicr. L: http://www.isp.northwestern.edu/~laurence On Thu, 5 Jul 2001, Kenneth Wayne Culver wrote: > The ethernet card isn't supported by FreeBSD-STABLE... no cardbus cards > are. > > Ken > > On Thu, 5 Jul 2001, Giorgos Keramidas wrote: > > > Hello Raj, > > > > On Wed, Jul 04, 2001 at 10:28:24PM -0800, ftrk wrote: > > > Dear all, > > > > > I haven't used *BSD at all, but been using UNIX(Solaris) and LINUX > > > for awhile. > > > > Linux is ok, Solaris is also nice but it's not free in the manner of > > Open Source operating systems like Linux or the BSD's. It's a nice > > thing that you are thinking of 'trying BSD'. You should go ahead and > > try it :) Who knows, you might like it better than something else > > that you have seen until now. > > > > > I would like to play with it on my laptop which is kinda old, but I > > > was wondering about drivers for display chipsets etc: > > > Intel PIII Processor > > > ATi Rage 128 display chipset(14" SXGA display) > > > Xircom 10/100 cardbus PCMCIA card > > > Internal Lucent Gold v50 modem( I am sure this wouldn't be supported:( ) > > > > Since, you have posted this on a FreeBSD list, I'm assuming here that > > you are thinking of trying FreeBSD on that laptop. > > > > o Intel PIII Processor > > > > The processor you have is supported, yes. > > > > o ATi Rage 128 display chipset (14" SVGA display) > > > > The default FreeBSD environment (unless you install some version > > of X11, to provide you with a graphical interface) uses an 80x25 > > text-mode console. This is supported by ALL modern VGA-compatible > > display adapters, so you should not worry if FreeBSD will be able > > to 'display' its default console mode. > > > > When it comes to X11 and GUI programs, I think that ATi Rage is > > supported by X11, but since I'm not sure I will not say 'yes' or > > 'no'. Read the XFree86 documentation and release notes at > > www.xfree86.org to see is Rage128 is supported by some version of > > X11 and which version is that. > > > > o Ximrom 10/100 cardbus PCMCIA card > > > > I don't know :-/ > > > > o Internal Lucent Gold v50 modem > > > > This is a Winmodem IIRC. It will not work with FreeBSD, if that > > is true. Sorry 'bout that. You'll probably have to find some > > other modem to use with FreeBSD. > > > > > I would definitely like to use and support FreeBSD. However I am > > > unable to make up my mind as to which one will suit me and an > > > assessment of the three flavours. > > > > The BSD operating systems are not `FreeBSD flavors'. Therefore there > > are not many 'flavours'. There is only one FreeBSD, with that > > wonderful and fulfilling cocoa-bean-wrapped-in-chocolate taste, that > > makes it our favorite for years and years. > > > > Seriously now, you can check all of them and see which you like best. > > They all (they referring to FreeBSD, OpenBSD and NetBSD) have their > > advantages and good points, their disadvantages and limitations, their > > beautiful and ugly parts, etc. For me, when I chose which one to > > install one of the BSD's, it was ease of installation that made me > > decide to stick with FreeBSD. For you, it might be the way packages > > are organized. For somebody else, it is the security consiousness of > > the developers. The ultimate choise is upon you. Just try them all > > > and see which one fits your style/taste/personality. > > > > > Would you have any pointers as to where I can find some info? > > > > The web sites of all BSD operating systems usually include lots of > > documentation. You will find the articles, tutorials, and books > > available at www.freebsd.org to be very helpful, if you are looking > > for information on what FreeBSD can do for you, and how things can be > > done. A visit at www.netbsd.org and www.openbsd.org will also give > > you a chance to see what the other BSD Unixes support, what programs > > are available for each one of them, what platforms (hardware) they run > > on, how to obtain and/or install them, etc. > > > > > I am also interested in knowing the packages, like compilers(like > > > gcc, g77, perl) etc. > > > > FreeBSD comes bundled with source for everything (well, almost > > everything). Among the programs installed are: > > > > o BIND, the name-server software that dominates the Internet. > > > > o Sendmail, the popular MTA (mail transfer agent). > > > > o GZIP and BZIP2, compression tools. > > > > o CVS, the concurrent version system. > > > > o The GNU C Compiler. > > > > o IPFW and IPFILTER firewalls. > > > > o Support for DHCP with isc-dhcp/ > > > > o Perl version 5 > > > > o Lots of other programs and tools that I forgot to mention. > > > > >From the Ports system, whose files are in /usr/ports, you can install > > more than 5,000 other software packages. You can read more about > > ports, at . > > > > Lots of other useful documents can be found at www.freebsd.org > > explaining a lot of things. See the site for details. > > > > > Also does this come with any crypto software? > > > > Yes, FreeBSD has support for various ways to use cryptography and > > related tools. What is it that you are specifically interested in? > > > > > Pardon my ignorance, I tried to look around, but couldn't find info > > > on compilers etc.. > > > > Well, look at the site. > > You'll find lots and lots of documentation to get you started and > > going a long way, there. > > > > Ciao, > > > > I hope I've helped a bit. > > > > -giorgos > > > > 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 Thu Jul 5 7:47:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from camel.kdsi.net (camel.kdsi.net [206.103.113.218]) by hub.freebsd.org (Postfix) with ESMTP id 98DB137B407 for ; Thu, 5 Jul 2001 07:47:12 -0700 (PDT) (envelope-from tony@camel.kdsi.net) Received: from camel.kdsi.net (leepcD-075.sub-d.lee.net [208.205.127.75]) (authenticated (0 bits)) by camel.kdsi.net (8.12.0.Beta10/8.12.0.Beta10) with ESMTP id f65EndKv015166; Thu, 5 Jul 2001 09:49:42 -0500 (CDT) Message-ID: <3B447D96.630698AA@camel.kdsi.net> Date: Thu, 05 Jul 2001 09:45:42 -0500 From: Tony Wells X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Rob Cc: "Freebsd-Questions@Freebsd. Org" Subject: Re: Is my FTP hacked? References: 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 Your pwd.db file should look like garbage when you look at it with an editor; that is because it is a hash file and not just ASCII text. Try 'file /etc/pwd.db' to learn more about what the format of the file is. Rob wrote: > > > I think someone may have hacked into my ftp... I've got this line in my > > /var/log/messages > > > > "Jul 5 10:03:50 www ftpd[8728]: /etc/pwd.db: No such file or > > directory"... > > > > is there any way I can see what account they logged in as and so > > on? or has > > something else happened? > > > > I've disabled FTP for the moment.... > OK - false alarm it seems... I used 'last' to track down who the user was at > 10:03... I've talked to him and he said he was just uploading some files > (for one of our websites)... I trust him, so I guess we weren't trying to be > hacked - but what happened to cause this error? > > If I look at passwd.db with pico /etc/pwd.db it has what looks like a load > of garbage on the first line... > then: > > # > # 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 > /nonexistent > > then the last line looks like a load of the usernames on the system followed > by a *lot* of ÿÿÿÿÿÿÿÿÿÿÿ symbols... > > What is going on ? :) > > -Rob > > -------------------------------- > http://www.robhulme.com > http://www.christianunion.org.uk > > "May the forks be with us." - Blue Raja (Mystery Men) > > Everything you've learned in school as "obvious" becomes less and less > obvious as you begin to study the universe. > For example, there are no solids in the universe. > There's not even a suggestion of a solid. There are no absolute > continuums. > There are no surfaces. There are no straight lines. > ---- R. Buckminster Fuller > > 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 Jul 5 8:11:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 7BA3F37B406 for ; Thu, 5 Jul 2001 08:11:39 -0700 (PDT) (envelope-from doug@safeport.com) Received: from localhost (doug@localhost) by fledge.watson.org (8.11.3/8.11.3) with SMTP id f65FAki29951; Thu, 5 Jul 2001 11:10:46 -0400 (EDT) (envelope-from doug@safeport.com) X-Authentication-Warning: fledge.watson.org: doug owned process doing -bs Date: Thu, 5 Jul 2001 11:10:45 -0400 (EDT) From: Doug Denault X-Sender: doug@fledge.watson.org To: thisis@awesome.com Cc: questions@estateplancenter.com, questions@freebsd.org, questions@legaldivorce.com, Questions@LimnosCharters.com, questions@mellencamp.com Subject: Re: No more boredom! 499 In-Reply-To: <200107050730.CAA09059@pinemtn.cpinternet.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 Thu, 5 Jul 2001 thisis@awesome.com wrote: > Below is the result of your feedback form. It was submitted by > (thisis@awesome.com) on Thursday, July 5, 2001 at 02:30:40 > --------------------------------------------------------------------------- > > : Looking for new people to talk to? Find someone to share your interests with online or in person. Better yet find your soul mate! Stop being bored online. Click Here!! >
>
>
>
>
> > 93236 > > --------------------------------------------------------------------------- > > > 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 Jul 5 8:11:49 2001 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 9AF9C37B409 for ; Thu, 5 Jul 2001 08:11:43 -0700 (PDT) (envelope-from wmoran@iowna.com) Received: (qmail 84542 invoked from network); 5 Jul 2001 15:20:23 -0000 Received: from unknown (HELO iowna.com) (151.201.71.193) by mail.the-i-pa.com with SMTP; 5 Jul 2001 15:20:23 -0000 Message-ID: <3B4482DC.C3CF1B6C@iowna.com> Date: Thu, 05 Jul 2001 11:08:12 -0400 From: Bill Moran X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Dale Hagglund Cc: freebsd-questions@freebsd.org, dnelson@emsphone.com Subject: Re: SCSI bad block remapping References: <3B327713.46173EC5@iowna.com> <863d8curun.fsf@ponoka.battleriver.com> <20010704205514.A13653@dan.emsphone.com> <86pubfubp7.fsf@ponoka.battleriver.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 Dale Hagglund wrote: > > Dan Nelson writes: > > > In the last episode (Jul 04), Dale Hagglund said: > > > > (a) the disk might do remapping in fairly large chunks, even > > > up to a track in size, and > > > ... The couple drives I've looked at map single blocks. ... > > > > (b) after remapping, the data in the remapped region is > > > undefined. > > > I am extremely skeptical of this. If the data can be remapped, it > > is remapped correctly (that's what all the ECC stuff is for). If it > > cannot be remapped, an error is returned. > > Since this piqued my interest, I tracked down the horse's mouth. > According to the the SCSI-3 Block Commands specification, when a > REASSIGN BLOCKS command is issued the data contained in blocks being > remapped may be modified. Also, the command can fail because it needs > to remap a larger region than the one specified. However, from the > documentation of AWRE and ARRE, it appears that blocks are reassigned > automatically only if the drive firmware can recover the data. > > It looks like the upshot is that you can, as you suggested, turn on > automatic sector remapping without fear of silent data loss. This is good to know. Thank you for taking the time to look into the specs for us, Dan. Now that I know that it is safe to turn on sector remapping, I still don't know _how_ to do it. I'm also still curious about what's going on with a drive that crashes because of bad sectors one day, and then (once reformatted) runs with no problems for over a week (and still running ...) Thanks so far, Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 8:28: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from q.closedsrc.org (ip233.gte15.rb1.bel.nwlink.com [209.20.244.233]) by hub.freebsd.org (Postfix) with ESMTP id 08ED437B403 for ; Thu, 5 Jul 2001 08:28:04 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id 750DB55407; Thu, 5 Jul 2001 08:12:49 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id 6576E51610; Thu, 5 Jul 2001 08:12:49 -0700 (PDT) Date: Thu, 5 Jul 2001 08:12:49 -0700 (PDT) From: Linh Pham To: Kelvin Ng Chee Hoong Cc: "freebsd-questions@FreeBSD.ORG" Subject: Re: Webadmin In-Reply-To: <3B443503.8D21D3D8@pacific.net.sg> 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 2001-07-05, Kelvin Ng Chee Hoong scribbled: # Hi ; # I would to use web interface to adminstrate and do house keeping of # my FBSD . Does FBSD has feature of webadmin ? There is a web-based tool called Webmin that allows you to manage and maintain FreeBSD and many other services (ie: Sendmail, Postfix, BIND, NFS, etc.). More information can be found at http://www.webmin.com/webmin A review of Webmin can be found at http://ezine.daemonnews.org/200105/webmin.html The Webmin ports is found under /usr/ports/sysutils/webmin and the latest version is 0.87. -- Linh Pham [lplist@closedsrc.org] // 404b - Brain not found To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 8:41:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id DB0B737B405 for ; Thu, 5 Jul 2001 08:41:15 -0700 (PDT) (envelope-from doug@safeport.com) Received: from localhost (doug@localhost) by fledge.watson.org (8.11.3/8.11.3) with SMTP id f65Fegs30417; Thu, 5 Jul 2001 11:40:48 -0400 (EDT) (envelope-from doug@safeport.com) X-Authentication-Warning: fledge.watson.org: doug owned process doing -bs Date: Thu, 5 Jul 2001 11:40:28 -0400 (EDT) From: Doug Denault X-Sender: doug@fledge.watson.org To: "Craig, Rob" Cc: "'questions@FreeBSD.org'" Subject: Re: !! Does FreeBSD run on a Dell Notebook !! 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 The short answer is probably. I use a Dell Inspiron 7500 and two VERY old Latitude LM's with no problems. But you should check out the archives for the hardware mailing list, the handbook (URL below), and then post this question to freebsd-hardware@FreeBSD.ORG if you still have questions. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-hw.html A try-it solution would be to boot the CD (if the XPi can do that) or make a floppy and see if sysinstall will recognize all the hardware. I had the most problems with X windows rather than FreeBSD. On Thu, 5 Jul 2001, Craig, Rob wrote: > Afternoon, > > I would like to switch from Redhat Linux to FreeBSD. Linux is giving my > grief. I have an old notebook I would like to install it on. Can you tell me > if anyone has tested it or it runs fine? > > Dell Latitude XPi P133ST > NeoMagic 2070 Graphics Card 1Mb > Panasonic KXL-DL40 SCSI external CDROM (PCMCIA) > 3Com 3CCFE575CD-D PCMCIA Network Card > > Notebooks are troublesome with anything but I am not sure if Free BSD has > all the drivers? > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 8:47:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from euphoria.confusion.net (dementia.confusion.net [205.166.119.16]) by hub.freebsd.org (Postfix) with ESMTP id 511B737B40A for ; Thu, 5 Jul 2001 08:47:16 -0700 (PDT) (envelope-from stuyman@euphoria.confusion.net) Received: from localhost (localhost [127.0.0.1]) by euphoria.confusion.net (8.11.2/8.11.2) with SMTP id f65FkJZ00740; Thu, 5 Jul 2001 08:46:20 -0700 (PDT) Date: Thu, 5 Jul 2001 08:46:19 -0700 (PDT) From: Laurence Berland To: Doug Denault Cc: "Craig, Rob" , "'questions@FreeBSD.org'" Subject: Re: !! Does FreeBSD run on a Dell Notebook !! 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 THough it has a sad tendency to run windows, I've had success with my Inspiron 5000 and hear the 5000e is just as reasonable. Two caveats 1) No cardbus on -stable...use -current or get non-cardbus pc cards 2) Winmodem :( On Thu, 5 Jul 2001, Doug Denault wrote: > The short answer is probably. I use a Dell Inspiron 7500 and two VERY old > Latitude LM's with no problems. But you should check out the archives for > the hardware mailing list, the handbook (URL below), and then post this > question to freebsd-hardware@FreeBSD.ORG if you still have questions. > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-hw.html > > A try-it solution would be to boot the CD (if the XPi can do that) or make > a floppy and see if sysinstall will recognize all the hardware. > > I had the most problems with X windows rather than FreeBSD. > > > > On Thu, 5 Jul 2001, Craig, Rob wrote: > > > Afternoon, > > > > I would like to switch from Redhat Linux to FreeBSD. Linux is giving my > > grief. I have an old notebook I would like to install it on. Can you tell me > > if anyone has tested it or it runs fine? > > > > Dell Latitude XPi P133ST > > NeoMagic 2070 Graphics Card 1Mb > > Panasonic KXL-DL40 SCSI external CDROM (PCMCIA) > > 3Com 3CCFE575CD-D PCMCIA Network Card > > > > Notebooks are troublesome with anything but I am not sure if Free BSD has > > all the drivers? > > > > > 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 Jul 5 8:49:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gatekeeper.orem.verio.net (gatekeeper.orem.verio.net [192.41.0.8]) by hub.freebsd.org (Postfix) with ESMTP id 429E037B405 for ; Thu, 5 Jul 2001 08:49:08 -0700 (PDT) (envelope-from fclift@verio.net) Received: from mx.dmz.orem.verio.net (mx.dmz.orem.verio.net [10.1.1.10]) by gatekeeper.orem.verio.net (Postfix) with ESMTP id C67C53BF10F for ; Thu, 5 Jul 2001 09:49:07 -0600 (MDT) Received: from vespa.dmz.orem.verio.net (vespa.dmz.orem.verio.net [10.1.1.59]) by mx.dmz.orem.verio.net (8.11.1/8.11.1) with ESMTP id f65Fn7T64071 for ; Thu, 5 Jul 2001 09:49:07 -0600 (MDT) (envelope-from fclift@verio.net) Date: Thu, 5 Jul 2001 10:25:27 -0600 (MDT) From: Fred Clift X-Sender: fred@vespa.dmz.orem.verio.net To: freebsd-questions@freebsd.org Subject: 'joining' two com ports... 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 Quick question - I've got some hardware that allows 'serial console redirection' to either com1 or com2 (Intel ISP2150 2u server with LB440GX+ mb). I've got a lot of these in use (hundreds). I'm looking to start replacing some of these with Intel STL 2100 based 2u systems that also allow 'serial console redirection'. The problem is that the STL 2100 boards only allow redirection to com2, and every box we currently have is set up to use serial bios/comconsole on com1. The problem being that if I want to use the same os config and binaries for both older and newer boxes, I either use two serial ports (com2 for bios access, com1 for freebsd loader/kernel comconsole) which isn't really an option, or I loose access to either comconsole or to serial bios. Is there some way to configure the comconsole stuff to work with 'both' simutaenously or rather to 'autodetect' which com port I have wires plugged in? I realize that in general, with rs232 that you dont know if there is something on the line or not till it speaks to you. I'm not sure if this is doable with the software as it is, but perhaps I could make it happen the 'right way'. I see some comments in /usr/src/sys/boot/common/console.c like * XXX Add logic for multiple console support. and * XXX Note that the console system design allows for some extension * here (eg. multiple consoles, input/output only, etc.) Should I be looking somewhere else? Anyone with better knowlege of this part of the code want some help from me? I'm not aware of what the future plans for this part of the code hold -- anyone? Fred -- Fred Clift - fclift@verio.net -- Remember: If brute force doesn't work, you're just not using enough. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 8:49:29 2001 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 A551137B403 for ; Thu, 5 Jul 2001 08:49:22 -0700 (PDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.11.3/8.11.3) id f65FnIa08300; Thu, 5 Jul 2001 10:49:18 -0500 (CDT) (envelope-from dan) Date: Thu, 5 Jul 2001 10:49:17 -0500 From: Dan Nelson To: Bill Moran Cc: Dale Hagglund , freebsd-questions@freebsd.org Subject: Re: SCSI bad block remapping Message-ID: <20010705104917.A6471@dan.emsphone.com> References: <3B327713.46173EC5@iowna.com> <863d8curun.fsf@ponoka.battleriver.com> <20010704205514.A13653@dan.emsphone.com> <86pubfubp7.fsf@ponoka.battleriver.com> <3B4482DC.C3CF1B6C@iowna.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ikeVEW9yuYc//A+q" Content-Disposition: inline In-Reply-To: <3B4482DC.C3CF1B6C@iowna.com> User-Agent: Mutt/1.3.19i X-OS: FreeBSD 5.0-CURRENT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --ikeVEW9yuYc//A+q Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In the last episode (Jul 05), Bill Moran said: > Dale Hagglund wrote: > > Since this piqued my interest, I tracked down the horse's mouth. > > According to the the SCSI-3 Block Commands specification, when a > > REASSIGN BLOCKS command is issued the data contained in blocks > > being remapped may be modified. Also, the command can fail because > > it needs to remap a larger region than the one specified. However, > > from the documentation of AWRE and ARRE, it appears that blocks are > > reassigned automatically only if the drive firmware can recover the > > data. > > > > It looks like the upshot is that you can, as you suggested, turn on > > automatic sector remapping without fear of silent data loss. > > This is good to know. Thank you for taking the time to look into the > specs for us, Dan. Now that I know that it is safe to turn on sector (Dale?) > remapping, I still don't know _how_ to do it. I'm also still curious > about what's going on with a drive that crashes because of bad > sectors one day, and then (once reformatted) runs with no problems > for over a week (and still running ...) A couple years ago, I wrote a script to check the WCE bit of SCSI drives. Here's the same script modified a bit to check ARRE and AWRE, plus the original for good measure :) -- Dan Nelson dnelson@emsphone.com --ikeVEW9yuYc//A+q Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=awrecheck #! /bin/sh echo Checking SCSI drives for auto reallocation: numbad=0 # get a list of direct-access devices known to the system units=$(camcontrol devlist | sed -n -e "/,da[0-9]*/s/.*,da\(.*\))/\1/p") for i in $units do result="$(camcontrol modepage da$i -m 1 -P 3 2> /dev/null | grep '^A.RE .*: 0' )" if [ "$result" != "" ] ; then camcontrol devlist | grep ",da${i})" echo "$result" echo numbad=$(($numbad + 1)) fi done if [ $numbad -gt 0 ] ; then s= [ $numbad -ne 1 ] && s=s echo "\ $numbad device$s with ARRE or AWRE unset. To reset, run \"camcontrol modepage -e -P 3 -m 1\" where is the disk (i.e. da0), and set AWRE and ARRE to 1." else echo "All drives are OK" fi --ikeVEW9yuYc//A+q Content-Type: message/rfc822 Content-Disposition: inline Date: Wed, 14 Oct 1998 23:19:26 -0500 From: Dan Nelson To: Julian Elischer , "Justin T. Gibbs" Cc: Terry Lambert , Don.Lewis@tsc.tdk.com, freebsd-fs@FreeBSD.ORG, freebsd-scsi@FreeBSD.ORG Subject: Re: filesystem safety and SCSI disk write caching Message-ID: <19981014231925.A18446@emsphone.com> References: <199810140518.XAA15040@pluto.plutotech.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=HlL+5n6rz5pIUxbD X-Mailer: Mutt 0.94.3i In-Reply-To: ; from "Julian Elischer" on Wed Oct 14 11:08:05 GMT 1998 X-OS: FreeBSD 2.2.7-STABLE X-Keywords: X-UID: 1962 --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii In the last episode (Oct 14), Julian Elischer said: > Hey everybody.. > look, we're in violent agreement here but haven't noticed it.... > > 7/ to allow for this to be achieved easily, there should be an easy > way to ensure that the write cache is turned off. Possibly as simple > as a good example in camctl.8 . I humbly submit the following script, to be added to /etc/security, or periodic/weekly, /etc/rc, or wherever. It's dependant on the exact output of "camcontrol inquiry" and "camcontrol modepage", but does the job. -Dan Nelson dnelson@emsphone.com --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=cachecheck #! /bin/sh echo Checking SCSI drives for write-cache: numbad=0 # get a list of direct-access devices known to the system units=$(camcontrol devlist | sed -n -e "/,da[0-9]*/s/.*,da\(.*\))/\1/p") for i in $units do result=$(camcontrol modepage -m 8 -P 3 -u $i 2> /dev/null | grep WCE) if [ "$result" = "WCE: 1 " ] ; then camcontrol devlist | grep ",da${i})" numbad=$(($numbad + 1)) fi done if [ $numbad -gt 0 ] ; then s= [ $numbad -ne 1 ] && s=s echo " $numbad device$s with WCE set. To reset, run \"camcontrol modepage -e -P 3 -m 8 -u \" where is the disk number (i.e. da0 is unit #0), and set WCE to 0." fi echo --HlL+5n6rz5pIUxbD-- --ikeVEW9yuYc//A+q-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 9: 1:26 2001 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 E7D0F37B406 for ; Thu, 5 Jul 2001 09:01:21 -0700 (PDT) (envelope-from oberman@ptavv.es.net) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (8.10.1/8.10.1) with ESMTP id f65G1Kc13384; Thu, 5 Jul 2001 09:01:20 -0700 (PDT) Message-Id: <200107051601.f65G1Kc13384@ptavv.es.net> To: ftrk Cc: freebsd-questions@FreeBSD.ORG Subject: Re: which *BSD to choose? In-reply-to: Your message of "Wed, 04 Jul 2001 22:28:24 -0800." <3B41F171@webmail.uaf.edu> Date: Thu, 05 Jul 2001 09:01:20 -0700 From: "Kevin Oberman" Sender: owner-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, 4 Jul 2001 22:28:24 -0800 > From: ftrk > Sender: owner-freebsd-questions@FreeBSD.ORG > > I haven't used *BSD at all, but been using UNIX(Solaris) and LINUX > for awhile. However I have recently been reading lot about the > *BSD's and even downloaded Kevin Lai's paper from USENIX about the > comparison of SOLARIS, LINUX and FreeBSD. I would like to play with > it on my laptop which is kinda old, but I was wondering about > drivers for display chipsets etc: > Intel PIII Processor Most any x86 family chip or the AMD chips will work fine. Cyrix chips work, but seem to have a lot of problems and I would suggest you avoid them. > ATi Rage 128 display chipset(14" SXGA display) This works fine with XFree86 V4 (All BSDs and Linux use the common XFree86 for X windows support.) But the FreeBSD install procedure will install XFree86 V3.3.6 which does not support this, so skip the X windows installation section and install the XFree86 package under that portion of the installation procedure. Also install the user environment (Gnome, KDE or none) and window manager of your choice. > Xircom 10/100 cardbus PCMCIA card Bad news. FreeBSD V4 does not support CardBus PCcards. These cards are supported in the development version of FreeBSD and will be supported in V5.0 which may be out late this year. The maintainer is working on back-porting the support to V4, but there are no promises as to when/if this will be completed. If you need immediate support for this card, you might look at NetBSD. I'm pretty sure that it is supported there. > Internal Lucent Gold v50 modem( I am sure this wouldn't be supported:( ) Not officially supported at this time, although inclusion of the required software is being worked on and I expect it to show up fairly soon. If you check out the archives of questions, you will find a pointer to the FreeBSD code and I have seen several people report that it works, but this is not "official" support. > I would definitely like to use and support FreeBSD. However I am > unable to make up my mind as to which one will suit me and an > assessment of the three flavours. Would you have any pointers as to > where I can find some info? I am currently running a dualboot, with > winme(only because the internal modem is not supported:(and I can't > afford a external modem card right now ) and linux(redhat 7 which I > don't wanna use anymore since I have found things which I don't like > in it anymore). I am also interested in knowing the packages, like > compilers(like gcc, g77, perl) etc. Also does this come with any > crypto software? Pardon my ignorance, I tried to look around, but > couldn't find info on compilers etc.. See http://www.freebsd.org for a great deal of information. Especially, see the Handbook. Certainly gcc, g77 and Perl are part of FreeBSD. FreeBSD has a huge number of external tools, utilities, and games available in the "ports". This is the thing that makes FreeBSD stand out from the crowd. For any of the thousands of ports, installation is usually as easy as a cd to the port directory followed by 'make install'. FreeBSD is currently based on gcc 2.95.3. gcc v3.0 should be added to the ports tree soon. FreeBSD includes OpenSSL and OpenSSH in the base system. Many other crypto tools are also available. 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 Jul 5 9:15:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from email.orgus.ru (email.orgus.ru [213.242.43.2]) by hub.freebsd.org (Postfix) with ESMTP id DD9A737B401 for ; Thu, 5 Jul 2001 09:15:39 -0700 (PDT) (envelope-from vit@email.orgus.ru) Received: from localhost (vit@localhost) by email.orgus.ru (8.11.1/8.11.1) with ESMTP id f65GL9Q32491 for ; Thu, 5 Jul 2001 22:21:10 +0600 (YEKST) Date: Thu, 5 Jul 2001 22:21:09 +0600 (YEKST) From: Victor M To: questions@freebsd.org Subject: natd 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 a FreeBSD box working as a terminal server for the dialup users and proxy for my internal network at the same time. Dialer users use the real IP addresses while LAN users have the imaginary IP addresses and use natd to access outside. By default natd maps everything going through to the real IP address of the output interface, say ppp0 in my case. How can I configure natd to map only addresses of the imaginary network while the dialers keep using the real ones. Thank You. Victor. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 9:24: 8 2001 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 1C57437B401 for ; Thu, 5 Jul 2001 09:24:06 -0700 (PDT) (envelope-from pepsikid83@yahoo.com) Message-ID: <20010705162405.67213.qmail@web13002.mail.yahoo.com> Received: from [206.78.5.164] by web13002.mail.yahoo.com; Thu, 05 Jul 2001 09:24:05 PDT Date: Thu, 5 Jul 2001 09:24:05 -0700 (PDT) From: "Zac M. Speidel" Subject: Thanks. FreeBSD 4.0-Release problem fixed 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 Good Morning guys, A few days ago I emailed the list with a problem with my Dell machine. I could not get boot easy to function (when I hit F2 for freebsd all I would get was a beep). To play around some more I resized the windows to a smaller partition. That way freebsd was read within the first 1024 cyl and was about to boot fine.. Thanks to all of you that offered good advice.. Now I need to cvsup fbsd 4.3... Have a great week, Zac Speidel __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Thu Jul 5 9:29:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from osiris.ipform.ru (osiris.ipform.ru [212.158.165.98]) by hub.freebsd.org (Postfix) with ESMTP id AEB9137B406 for ; Thu, 5 Jul 2001 09:29:35 -0700 (PDT) (envelope-from matrix@ipform.ru) Received: from wp2 (localhost.ipform.ru [127.0.0.1]) by osiris.ipform.ru (8.11.4/8.11.4) with SMTP id f65GSuv95979; Thu, 5 Jul 2001 20:29:00 +0400 (MSD) (envelope-from matrix@ipform.ru) Message-ID: <010c01c1056f$9a21ce20$0c00a8c0@ipform.ru> From: "Artem Koutchine" To: "Linh Pham" , "Kelvin Ng Chee Hoong" Cc: References: Subject: Re: Webadmin Date: Thu, 5 Jul 2001 20:28:52 +0400 Organization: IP Form 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 Um.. of course, your wish is your command, but IHMO adminning a unix system using web is a perversion and needs medical attetion. Why not just use ssh2 to do the job and besides, you'll know what you are doing much better and save a lot of bandwidth. BTW, what is format of some daemon config file changes? What are you gonna do? Wait for a new version of that web admin tool? YOU HAVE GOT TO BE KIDDING! Best regards, Artem ----- Original Message ----- From: "Linh Pham" To: "Kelvin Ng Chee Hoong" Cc: Sent: Thursday, July 05, 2001 7:12 PM Subject: Re: Webadmin > On 2001-07-05, Kelvin Ng Chee Hoong scribbled: > > # Hi ; > # I would to use web interface to adminstrate and do house keeping of > # my FBSD . Does FBSD has feature of webadmin ? > > There is a web-based tool called Webmin that allows you to manage and > maintain FreeBSD and many other services (ie: Sendmail, Postfix, BIND, > NFS, etc.). > > More information can be found at http://www.webmin.com/webmin > > A review of Webmin can be found at > http://ezine.daemonnews.org/200105/webmin.html > > The Webmin ports is found under /usr/ports/sysutils/webmin and the > latest version is 0.87. > > -- > Linh Pham > [lplist@closedsrc.org] > > // 404b - Brain not found > > > 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 Jul 5 9:38:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from oddjob.adhesivemedia.com (oddjob.adhesivemedia.com [207.202.159.77]) by hub.freebsd.org (Postfix) with ESMTP id C4F8A37B401 for ; Thu, 5 Jul 2001 09:38:29 -0700 (PDT) (envelope-from philip@adhesivemedia.com) Received: from localhost (philip@localhost) by oddjob.adhesivemedia.com (8.11.1/8.11.1) with ESMTP id f65GeGl00456; Thu, 5 Jul 2001 09:40:17 -0700 (PDT) (envelope-from philip@adhesivemedia.com) Date: Thu, 5 Jul 2001 09:40:16 -0700 (PDT) From: Philip Hallstrom To: David Greenman Cc: Subject: Re: urgent: Getting a lot of "parity error" messages in /var/log/messages!?!?!?! In-Reply-To: <20010703220340.B83552@nexus.root.com> Message-ID: <20010705093840.Q423-100000@oddjob.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 Thanks! I double checked everything... and there is a very good chance I bumped cables when installing the ram... Is there any chance it's the new ram that's causing these errors? Or would I be seeing all kinds of other oddities as well? Thanks again. -philip On Tue, 3 Jul 2001, David Greenman wrote: > >Hi - > > For the last week I've been getting quite a few of the below > >errors... the first one repeats a lot, then after awhile the last three > >happen. Twice now this has completely frozen the machine. The only change > >I've made is to add RAM, but this seems related to my SCSI disk... > > > >The machine is running 4.2-STABLE and has been fine for over a year... > > > >Can anyone shed some light one this? > > > >/kernel: (da0:ahc0:0:0:0): parity error detected in Data-in phase. SEQADDR(0x1ac) SCSIRATE(0x93) > >/kernel: (da0:ahc0:0:0:0): READ(10). CDB: 28 0 0 a8 b8 3f 0 0 2 0 > >/kernel: (da0:ahc0:0:0:0): ABORTED COMMAND asc:48,0 > >/kernel: (da0:ahc0:0:0:0): Initiator detected error message received > > Your SCSI bus is very unhappy. I would check to make sure that all of the > connectors are plugged in securely and that the bus is properly terminated. > You may also have a defective SCSI cable. > > -DG > > David Greenman > Co-founder, The FreeBSD Project - http://www.freebsd.org > President, TeraSolutions, Inc. - http://www.terasolutions.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 Jul 5 9:46:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from q.closedsrc.org (ip233.gte15.rb1.bel.nwlink.com [209.20.244.233]) by hub.freebsd.org (Postfix) with ESMTP id B452B37B403 for ; Thu, 5 Jul 2001 09:46:43 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id 890E455407; Thu, 5 Jul 2001 09:31:28 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id 778CA51610; Thu, 5 Jul 2001 09:31:28 -0700 (PDT) Date: Thu, 5 Jul 2001 09:31:28 -0700 (PDT) From: Linh Pham To: Artem Koutchine Cc: Kelvin Ng Chee Hoong , Subject: Re: Webadmin In-Reply-To: <010c01c1056f$9a21ce20$0c00a8c0@ipform.ru> 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 2001-07-05, Artem Koutchine scribbled: # Um.. of course, your wish is your command, but IHMO # adminning a unix system using web is a perversion and # needs medical attetion. I do most of my administration via SSH and hacking through conf files. There are times where I have no access to SSH (and no Telnet since the first thing I do to a machine is disable the Telnet server) and just need to check up on something (of course, I setup Webmin to do basic SSL encryption...) # Why not just use ssh2 to do the job and besides, # you'll know what you are doing much better and # save a lot of bandwidth. BTW, what is format of some # daemon config file changes? What are you gonna do? # Wait for a new version of that web admin tool? As I just said, I do most of my conf through SSH and the command line. For some people who are just learning or don't want to deal with Sendmail's cryptic conf files, web-based management tools are a nice step to start with. Not every UNIX admin can de-crypt some of the most cryptic conf files out there. Modules are independent from the main Webmin package... so if there is an update to a module, you can update it through it's module configuration tool. The biggest break in conf file format is from BIND 4 to BIND 8... of course that was done before Webmin became 'popular' or noticed. If there is a large (or even small) change to a conf file format, the old commands should be left the same and provide the same effect, but also notify the admin that the command is to be deprecated. It's foolish to make a huge change to the conf file format and leave a lot of people without any options and with broken daemons. # YOU HAVE GOT TO BE KIDDING! I'll take this as a flame... and no, I am not kidding. -- Linh Pham [lplist@closedsrc.org] // 404b - Brain not found To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 9:52: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from root.com (root.com [209.102.106.178]) by hub.freebsd.org (Postfix) with ESMTP id 787C637B401 for ; Thu, 5 Jul 2001 09:51:59 -0700 (PDT) (envelope-from dg@root.com) Received: (from dg@localhost) by root.com (8.11.2/8.11.2) id f65GfUr04113; Thu, 5 Jul 2001 09:41:30 -0700 (PDT) (envelope-from dg) Date: Thu, 5 Jul 2001 09:41:29 -0700 From: David Greenman To: Philip Hallstrom Cc: freebsd-questions@freebsd.org Subject: Re: urgent: Getting a lot of "parity error" messages in /var/log/messages!?!?!?! Message-ID: <20010705094129.G89686@nexus.root.com> References: <20010703220340.B83552@nexus.root.com> <20010705093840.Q423-100000@oddjob.adhesivemedia.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010705093840.Q423-100000@oddjob.adhesivemedia.com>; from philip@adhesivemedia.com on Thu, Jul 05, 2001 at 09:40:16AM -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 >Thanks! > >I double checked everything... and there is a very good chance I bumped >cables when installing the ram... > >Is there any chance it's the new ram that's causing these errors? Or >would I be seeing all kinds of other oddities as well? > >Thanks again. No, bad RAM won't cause that type of error. -DG David Greenman Co-founder, The FreeBSD Project - http://www.freebsd.org President, TeraSolutions, Inc. - http://www.terasolutions.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 Jul 5 10: 8:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from iconweb.iconllc.com (infuturoweb.infuturo.net [12.10.83.130]) by hub.freebsd.org (Postfix) with ESMTP id 1F40237B405 for ; Thu, 5 Jul 2001 10:08:22 -0700 (PDT) (envelope-from MSeligman@Infuturo.net) Received: by ICONWEB with Internet Mail Service (5.5.2650.21) id ; Thu, 5 Jul 2001 12:08:10 -0500 Message-ID: From: Mona Seligman To: "'freebsd-questions@FreeBSD.ORG'" Subject: BackUP Options Date: Thu, 5 Jul 2001 12:08:09 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) 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 Which tape backup software packages support the backup of free BSD?? Thanks, Mona Seligman mseligman@infuturotech.com Infuturo Technologies 6211 Shelby Oaks Drive, Suite 200 Memphis, TN 38134 voice (901) 260-2633 fax (901) 260-2601 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 10:16:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id 466E537B406 for ; Thu, 5 Jul 2001 10:16:15 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f65HG1q38420; Thu, 5 Jul 2001 13:16:01 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Thu, 5 Jul 2001 13:15:57 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Subject: Which motherboard for Duron? 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 have had a very unfortunate experience with some 'cheap' motherboards lately. I have talked around and it seems that Asus makes a solid mb for a reasonable price (yes, price is still a concern, but no more cheapo mb's for me.) I plan on buying a ~800MHz Duron. What is a good mb? I am particularly interested in hearing from people who have actual experience with the hardware they may recommend. If you rebuild your kernel and do make world type work on a FreeBSD 4.3 system and have a solid hardware setup I would like to know what it is. (I am tired of the misery my hardware has put me through.) BTW, I found this mb listed on the net, does anyone know if it is any good? MBA ASUS A7SVM (5P,2D) Aud+Video+Lan SIS M/ATX (RET) I know there are a ton to choose from, but I have relatively little experience with mb's. Please excuse my naivete. Thanks much. ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 10:38: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f105.law10.hotmail.com [64.4.15.105]) by hub.freebsd.org (Postfix) with ESMTP id 94E8537B401 for ; Thu, 5 Jul 2001 10:38:06 -0700 (PDT) (envelope-from ex279@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 5 Jul 2001 10:38:06 -0700 Received: from 205.228.172.82 by lw10fd.law10.hotmail.msn.com with HTTP; Thu, 05 Jul 2001 17:38:06 GMT X-Originating-IP: [205.228.172.82] From: "EX 279" To: questions@FreeBSD.org Subject: RAID Controllers Date: Thu, 05 Jul 2001 12:38:06 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 05 Jul 2001 17:38:06.0476 (UTC) FILETIME=[3FECF4C0:01C10579] Sender: owner-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 Toshiba Magnia 3030 which has an Adaptec AIC 7896N onboard controller. The motherboard also has a RAID-port III expansion slot for an Adaptec ARO1130U2 card. Without the ARO Card, FreeBSD isntalls just fine. But if I install the card and create the RAID array, FreeBSD doesn't see the virtual drive. DOS boot disks recoginize the drives. The card came with drivers for SCO Unixware. Is there anyway to get FreeBSD to recoginze the RAID array? Or is there an alternative way I can have HDD redundancy through FreeBSD? I'm trying to install FreeBSD 4.3. Thanks, Todd _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 10:40:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from forrie.net (forrie.net [216.67.14.69]) by hub.freebsd.org (Postfix) with ESMTP id 5788837B401 for ; Thu, 5 Jul 2001 10:40:48 -0700 (PDT) (envelope-from forrie@forrie.com) Received: from boom.forrie.com (forrie.ne.mediaone.net [24.147.132.133]) by forrie.net with id f65HelH30650 for ; Thu, 5 Jul 2001 13:40:47 -0400 (EDT) Message-Id: <5.1.0.14.2.20010705133958.02856cc0@216.67.14.69> X-Sender: forrie@216.67.14.69 X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Thu, 05 Jul 2001 13:40:44 -0400 To: freebsd-questions@freebsd.org From: Forrest Aldrich Subject: TreeList failed (cvsup) 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 running cvsup as: cvsup -g -L2 -Pm /etc/cvsupfile as I've always done, but now I'm getting this error today: Retrying Connecting to cvsup.FreeBSD.org Connected to cvsup.FreeBSD.org Server software version: REL_16_1 Negotiating file attribute support Exchanging collection information Establishing multiplexed-mode data connection Running Updating collection src-all/cvs Updating collection ports-all/cvs TreeList failed: Network write failure: Connection closed Is there something external going on? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 11:29: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f100.law10.hotmail.com [64.4.15.100]) by hub.freebsd.org (Postfix) with ESMTP id 56CF137B406 for ; Thu, 5 Jul 2001 11:29:05 -0700 (PDT) (envelope-from g_et1@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 5 Jul 2001 11:29:05 -0700 Received: from 63.221.138.130 by lw10fd.law10.hotmail.msn.com with HTTP; Thu, 05 Jul 2001 18:29:04 GMT X-Originating-IP: [63.221.138.130] From: "andy t" To: questions@freebsd.org Subject: how to check email? Date: Thu, 05 Jul 2001 18:29:04 -0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 05 Jul 2001 18:29:05.0188 (UTC) FILETIME=[5F0F5E40:01C10580] Sender: owner-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, does somebody know how to check email on freebsd4.3 using my browser ? is there any document that can help me ? Thank you. _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 11:36:44 2001 Delivered-To: freebsd-questions@freebsd.org Received: from panda.freebsdsystems.com (panda.freebsdsystems.com [216.126.95.28]) by hub.freebsd.org (Postfix) with SMTP id CB63A37B415 for ; Thu, 5 Jul 2001 11:36:37 -0700 (PDT) (envelope-from lnb@freebsdsystems.com) Received: (qmail 37873 invoked by uid 89); 5 Jul 2001 18:36:36 -0000 Message-ID: <20010705183636.37872.qmail@panda.freebsdsystems.com> References: In-Reply-To: From: "Lanny Baron" To: Victor M Cc: questions@freebsd.org Subject: Re: natd Date: Thu, 05 Jul 2001 18:36:36 GMT Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Sender: lnb@freebsdsystems.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 Hello Victor, Lets assume your public NIC is fxp0. In /etc/rc.conf you would have: firewall_enable=YES firewall_script="/etc/rc.firewall" firewall_type="OPEN" natd_enable="YES" natd_interface="fxp0" natd_flags="-unregistered_only -use_sockets -same_ports" gateway_enable=YES The above firewall type is open, meaning you don't have much in the way of firewall rules. This is just for straight 'n' easy natd. As well you would have ipdivert and firewall loaded. and your kernel would have: options IPFIREWALL options IPDIVERT In your /etc/rc.firewall you would have lines near the top like: /sbin/ipfw -f flush /sbin/ipfw add divert natd all from any to any via fxp0 /sbin/ipfw add pass all from any to any --Lanny Victor M writes: > I have a FreeBSD box working as a terminal server for the dialup users and > proxy for my internal network at the same time. > Dialer users use the real IP addresses while LAN users have the imaginary > IP addresses and use natd to access outside. > By default natd maps everything going through to the real IP address of > the output interface, say ppp0 in my case. > How can I configure natd to map only addresses of the imaginary network > while the dialers keep using the real ones. > > Thank You. > Victor. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~= Lanny Baron And he said, Let there be light, and FreeBSD was created and he saw it was GOOD. He said, Hey Kids Rock 'N' Roll FreeBSD! servers with the power to Serve http://www.FreeBSDsystems.com 1.877.963.1900 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 11:37: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hemi.metrotv.com (hemi.metrotv.com [209.98.153.2]) by hub.freebsd.org (Postfix) with SMTP id 53A7F37B401 for ; Thu, 5 Jul 2001 11:37:04 -0700 (PDT) (envelope-from eric@metrotv.com) Received: (qmail 32109 invoked by uid 1009); 5 Jul 2001 18:39:51 -0000 Received: from remoteaccess-3.metrotv.com (HELO ?209.98.153.49?) (209.98.153.49) by hemi.metrotv.com with SMTP; 5 Jul 2001 18:39:51 -0000 User-Agent: Microsoft-Entourage/9.0.1.3108 Date: Thu, 05 Jul 2001 13:37:23 -0500 Subject: Gateway not working between fxp1 and eth0 From: Eric Long To: Message-ID: 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'm running FreeBSD 4.3-RELEASE on a machine that has two ethernet cards, fxp0 and fxp1, and an Emerging Technologies card (eth0) that functions as a router for a T1 line. I'm running natd and ipfw, with gateway enabled. Part of my rc.conf config to prove that things are configure correctly: --- ifconfig_fxp1="inet 192.168.1.1 netmask 255.255.255.0" gateway_enable="YES" firewall_enable="YES" firewall_type="open" natd_enable="YES" natd_interface="eth0" natd_flags="-f /etc/natd.conf" --- Machines connected on the LAN via fxp1 cannot see the internet. The FreeBSD box can see the internet, I can ping anything, it binds 192.168.1.1 correctly, it binds the public ip's assigned from Qwest correctly, and it binds the IP address for the router correctly. Machines on the network are correctly assinged ip's via dhcpd, and I'm using 192.168.1.1 as the router/gateway on LAN machines. They aren't able to reach the internet. This was not a problem when I setup this configuration with just two ethernet cards (to test dhcpd and natd). With the introduction of the eth0 Emerging Technologies device, the setup does not work. It's like fxp1 and eth0 are not talking to each other. How should I go about fixing it? -Eric To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 12:15:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from jezebel.demon.co.uk (jezebel.demon.co.uk [158.152.38.143]) by hub.freebsd.org (Postfix) with ESMTP id 4699437B403 for ; Thu, 5 Jul 2001 12:15:41 -0700 (PDT) (envelope-from rdls@jezebel.demon.co.uk) Received: (from rdls@localhost) by jezebel.demon.co.uk (8.11.1/8.11.1) id f65JBEt01634; Thu, 5 Jul 2001 20:11:14 +0100 (BST) (envelope-from rdls) Date: Thu, 5 Jul 2001 20:11:13 +0100 From: Richard Smith To: Tony Cc: Michael Lucas , questions@freebsd.org Subject: Re: dummynet question Message-ID: <20010705201113.A1596@gaia.home.rdls.net> References: <20010701131531.A78357@blackhelicopters.org> <20010701200306.A282@gaia.home.rdls.net> <002501c10353$b8c79120$0a00a8c0@TONY> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <002501c10353$b8c79120$0a00a8c0@TONY>; from tony@tntpro.com on Mon, Jul 02, 2001 at 08:04:24PM -0400 Sender: owner-freebsd-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, Jul 02, 2001 at 08:04:24PM -0400, Tony wrote: > > On Sun, Jul 01, 2001 at 01:15:31PM -0400, Michael Lucas wrote: > > > Hello, > > > > > > I have several Web sites, with different IP addresses, on one server. > > > I would like to limit each individual site to 128k of outbound traffic. > > > > > > ipfw add 00100 pipe 1 ip from a.b.c.d to any > > > ipfw add 00200 pipe 2 ip from a.b.c.e to any > > > .... > > > > > > ipfw pipe 1 config bw 128Kbit/s > > > ipfw pipe 2 config bw 128Kbit/s > > > ... > > > > > > Could I simplify this into pointing each IPFW rule into "pipe 1", > > > throttling each to 128K? Or would they share the bandwidth, or would > > > something else funky happen? > > > > No. They would all share the same 128K pipe. Your former approach > > is the correct one. [I am assuming that the rules run on the web > > server itself, otherwise they may need modification] > > > what type of modification would need to be made if I was running the rules > on a firewall instead of the webserver itself? I have gone online and read > all the reference material I can find and can't seem to find the solution. Unless you have configured the kernel to the contrary, ipfw rules are invoked as a packet passes through each interface. So on a firewall each packet will pass through your rules twice. To ensure that the pipe is used only once you could add an interface-spec to the rule (in/out/via). > my firewall has two interfaces 192.168.0.1 and 207.5.xxx.xx, my webserver is > on 192.168.0.100 I would love some help, I tried the rulse as micheal had > them, but to no avail... You probably need to run natd as well to hide your RFC1918 addresses behind your firewall public IP address. Richard. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 12:27:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gandalf.vi.bravenet.com (gandalf.bravenet.com [139.142.105.50]) by hub.freebsd.org (Postfix) with SMTP id A990D37B407 for ; Thu, 5 Jul 2001 12:27:15 -0700 (PDT) (envelope-from graham@bravenet.com) Received: (qmail 62690 invoked from network); 5 Jul 2001 19:30:37 -0000 Received: from unknown (HELO grahamwork) (192.168.30.9) by 0 with SMTP; 5 Jul 2001 19:30:37 -0000 From: "Graham White" To: "FreeBSD-questions" Subject: Cron Date: Thu, 5 Jul 2001 12:30:56 -0700 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 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 Thanks for your replies guys but still no luck: Here is the crontab entry: SHELL=/bin/bash 30 10 * * * /usr/local/adminscpts/update And the Script itself: #!/bin/bash #This script will automatically update a users home directory. PATH=/usr/local/bin:/usr/bin:/bin:/usr/bin/mail:/usr/local/adminscpts /usr/bin/su - user -c '/usr/bin/cvs update -d' | /usr/bin/mail graham@bravenet.com This was all set up as root. Thanks for helping out a newbie guys. Original message: Greetings, I am trying to set up a script file to be automatically run by cron every morning. The script works when I manually execute it. The path and time variables for the script file are correct but when the time comes for it to run nothing happens. If I set up the crontab file with the command(that I have in the script file) itself rather than the path to the script file it works! I've tried different permission settings but no luck. Any suggestions? GW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 13: 3:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from klima.physik.uni-mainz.de (klima.Physik.Uni-Mainz.DE [134.93.180.162]) by hub.freebsd.org (Postfix) with ESMTP id BB54D37B406; Thu, 5 Jul 2001 13:03:26 -0700 (PDT) (envelope-from ohartman@klima.physik.uni-mainz.de) Received: from klima.Physik.Uni-Mainz.DE (Sturm@klima.Physik.Uni-Mainz.DE [134.93.180.162]) by klima.physik.uni-mainz.de (8.11.4/8.11.4) with ESMTP id f65K3PU00928; Thu, 5 Jul 2001 22:03:25 +0200 (CEST) (envelope-from ohartman@klima.physik.uni-mainz.de) Date: Thu, 5 Jul 2001 22:03:25 +0200 (CEST) From: "Hartmann, O." To: Cc: Subject: Linuxulator on SMP systems broken? 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. Within the last week we rushed into a seriuos SMP problem with our SMP servers due a bug in the FBSD 4.2-STABLE code. Since then we have also on all SMP systems a problem with several Linux applications, which work perfect on UP systems with the same installation and installation date (as cvsupdated today). It is very important to have NCAR graphics 4.2.1 working here and it did before the 1. June. The phenomenon is, that an application called IDT (a visualization tool under NCARG) works perfect under all UP systems and suddenly not under our SMP machines. When applying a 'truss idt' I receive a "SIG 20" whenever I try to push a button. Does anyone else have problems with the Linuxulator after the horrible SMP problems? Maybe this problem is not related to the SMP problem, but it is very suspicous that it occured after this problem occured due the fact we did not change any kind of configuration ... -- MfG O. Hartmann ohartman@klima.physik.uni-mainz.de ---------------------------------------------------------------- IT-Administration des Institut fuer Physik der Atmosphaere (IPA) ---------------------------------------------------------------- Johannes Gutenberg Universitaet Mainz Becherweg 21 55099 Mainz Tel: +496131/3924662 (Maschinenraum) Tel: +496131/3924144 FAX: +496131/3923532 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 13:16:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from priv-edtnes10-hme0.telusplanet.net (mtaout.telus.net [199.185.220.235]) by hub.freebsd.org (Postfix) with ESMTP id 068ED37B403 for ; Thu, 5 Jul 2001 13:16:19 -0700 (PDT) (envelope-from aaron@alsopproductions.com) Received: from [161.184.134.245] by priv-edtnes10-hme0.telusplanet.net (InterMail vM.4.01.03.10 201-229-121-110) with SMTP id <20010705201618.GZVN1601.priv-edtnes10-hme0.telusplanet.net@[161.184.134.245]> for ; Thu, 5 Jul 2001 14:16:18 -0600 Message-ID: <001c01c1058f$af423ae0$30004bac@www.circ.ca> From: "Aaron K. Alsop" To: Received: from no.name.available by [161.184.134.245] via smtpd (for smtp.telusplanet.net [199.185.220.249]) with SMTP; 5 Jul 2001 20:16:57 UT Subject: Date: Thu, 5 Jul 2001 14:18:41 -0600 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0019_01C1055D.647E9800" 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_0019_01C1055D.647E9800 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable ------=_NextPart_000_0019_01C1055D.647E9800 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
------=_NextPart_000_0019_01C1055D.647E9800-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 13:19:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pope.teraglobal.com (mail.teraglobal.com [216.143.27.144]) by hub.freebsd.org (Postfix) with ESMTP id 13DDA37B401 for ; Thu, 5 Jul 2001 13:19:29 -0700 (PDT) (envelope-from jprosser@teraglobal.com) Received: from [10.2.0.127] ([10.2.0.127]) by pope.teraglobal.com (Netscape Messaging Server 4.15) with ESMTP id GG0OQM00.69N; Thu, 5 Jul 2001 13:25:34 -0700 User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2022 Date: Thu, 05 Jul 2001 14:19:20 -0600 Subject: Re: Certification From: "Jason Prosser" To: Ted Mittelstaedt Cc: Message-ID: In-Reply-To: <005401c10531$1c4c8dc0$1401a8c0@tedm.placo.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 Commenting from a newbie side... I have tried several certifications and dropped out long before I got them, because I didn't learn anything. (Yes I wouldn't mind all the pretty letters after my name, making me more marketable... ) I would like to suggest that there are several levels of certification. (Or area's of study.) Basic - How to get around in the system.. How to run programs, and Install packages. (Standard configuration would fall under this too.) Intermediate- Advanced configurations for networking ... Specialization configurations Trouble shooting Advanced - ? (Don't know enough to suggest here...) I like the question that was suggested though... Not only do I have to know what is going on, but it's real world. Yes I have a copy of the handbook, Ted's book, using the man pages, and getting vary familiar with the web pages available... (And I still have problems finding the information that I need, once I can figure out the questions to ask... ) Just my .02 JP To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 13:47:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-141-144.mmcable.com [24.27.141.144]) by hub.freebsd.org (Postfix) with SMTP id CE69E37B401 for ; Thu, 5 Jul 2001 13:47:47 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 37570 invoked by uid 100); 5 Jul 2001 20:47:45 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15172.53873.183658.68976@guru.mired.org> Date: Thu, 5 Jul 2001 15:47:45 -0500 To: faisal gillani Cc: questions@freebsd.org Subject: Re: script help ... In-Reply-To: <32368534@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\ Sender: owner-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 gillani types: > hello there > > can any one help me in making a small script all i > want is that my system > runs itself in single user mode , then run fsck on / , > then return to normal > mode... > > i know the commands > > 1, init 1 > 2, fsck / > 3, init 6 > > i am stuck in how can i give the answers to the > command automatically ... is > it possible ? Not in a single script. Shutting down to single user mode requires killing the script, so you have to stop. If you could tell us what you're trying to accomplish, we might be able to help with 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 Thu Jul 5 13:51:36 2001 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 210BE37B401; Thu, 5 Jul 2001 13:51:27 -0700 (PDT) (envelope-from james-list@ntlworld.com) Received: from eclipse.bloodflowers.org ([62.253.132.240]) by mta01-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with SMTP id <20010705205123.XHAH351.mta01-svc.ntlworld.com@eclipse.bloodflowers.org>; Thu, 5 Jul 2001 21:51:23 +0100 Date: Thu, 5 Jul 2001 21:51:23 +0100 From: James Greenhalgh To: "Hartmann, O." Cc: freebsd-questions@freebsd.org, freebsd-stable@freebsd.org Subject: Re: Linuxulator on SMP systems broken? Message-Id: <20010705215123.50d2fccc.james-list@ntlworld.com> In-Reply-To: References: X-Mailer: Sylpheed version 0.4.66 (GTK+ 1.2.10; i386--freebsd4.3) 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 My machine is still suffering these problems when SMP support is enabled, and it should be noted that it hangs very much more quickly when using linuxemu (in my case opera, but also netscape). I only had 2 system hangs when in console mode, but closer to 20 with linuxemu running. These are _total_ system hangs, requiring power cycle. james On Thu, 5 Jul 2001 22:03:25 +0200 (CEST) "Hartmann, O." wrote: > Hello. > > Within the last week we rushed into a seriuos SMP problem with our SMP servers > due a bug in the FBSD 4.2-STABLE code. Since then we have also on all SMP systems > a problem with several Linux applications, which work perfect on UP systems with the > same installation and installation date (as cvsupdated today). > > It is very important to have NCAR graphics 4.2.1 working here and it did before > the 1. June. > > The phenomenon is, that an application called IDT (a visualization tool under > NCARG) works perfect under all UP systems and suddenly not under our SMP machines. > When applying a 'truss idt' I receive a "SIG 20" whenever I try to push a button. > > Does anyone else have problems with the Linuxulator after the horrible SMP problems? > Maybe this problem is not related to the SMP problem, but it is very suspicous that > it occured after this problem occured due the fact we did not change any kind of > configuration ... > > -- > MfG > O. Hartmann > > ohartman@klima.physik.uni-mainz.de > ---------------------------------------------------------------- > IT-Administration des Institut fuer Physik der Atmosphaere (IPA) > ---------------------------------------------------------------- > Johannes Gutenberg Universitaet Mainz > Becherweg 21 > 55099 Mainz > > Tel: +496131/3924662 (Maschinenraum) > Tel: +496131/3924144 > FAX: +496131/3923532 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- find great crazy-mad out-of-head experience from japan. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 13:59: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-141-144.mmcable.com [24.27.141.144]) by hub.freebsd.org (Postfix) with SMTP id 7B0E037B403 for ; Thu, 5 Jul 2001 13:58:58 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 37851 invoked by uid 100); 5 Jul 2001 20:58:32 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15172.54520.193647.547146@guru.mired.org> Date: Thu, 5 Jul 2001 15:58:32 -0500 To: "Robert J. Hansen" Cc: questions@freebsd.org Subject: Re: Newbie: Q regarding /dev entries In-Reply-To: <53920410@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\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Robert J. Hansen types: > Howdy there. I'm new to FreeBSD, but have been using That Other Free > UNIX-alike for the last few years and am pretty comfortable with it, > although I'm certainly no guru. Recently, in an attempt to broaden my > UNIX horizons, I've attempted to install FreeBSD (I happened to have 4.0 > CDs lying around--forgot where I picked them up from). > > The install was relatively painless, and the command-line environment > seems reasonably familiar. First thing I went about doing was > attempting to mount a CD so I could install bash (as opposed to sh). > This is where I ran into my first problem. > > Whereas Linux has /dev/hdX entries that make a degree of sense (/dev/hda > is my main HD, /dev/hdb is a Zip, /dev/hdc is my CD-ROM), the plethora > of entries in FreeBSD-4.0's /dev/ hierarchy is confusing the living > daylights out of me. > > Attempting to mount_cd9660 /dev/cd0 and /dev/cd0a (the two most likely > candidates, I thought) were fruitless. I tried several others which I > thought were likely, and struck out on those as well. > > Thus, my first question: given that in Linux my setup is: > > /dev/hda --> IDE HD > /dev/hdb --> IDE Zip > /dev/hdc --> IDE CDROM > > ... can anyone give me a pointer on which /dev entries those correspond > to in FreeBSD? BSD devices on the same driver are done with numbers instead of letters. The letters indicate the driver: "ad" for "ata disk", "da" for "direct access SCSI disks", "cd" for "CDROM - SCSI", "acd" for "Atapi CD", etc.. Then comes the drive number: 0, 1, 2 and so on. The default for IDE is that 0 is primary master, 1 is primary slave, 2 is secondary master and 3 is secondary slave (I hope I've got that right - I don't have a lot of IDE stuff). You can build a custom kernel with ATA_STATIC_ID disabled, and get 0 as the first disk, 1 as the second disk, and so on. I'm not sure which way Linux does it. So for your question, /dev/hdc is /dev/acd0. Assuming the other two are on the primary IDE controller - or you don't have ATA_STATIC_ID - /dev/hda is /dev/ad0 and /dev/hdb is /dev/ad1. If that's not the case, then they could be any pair of ad0, ad1 and ad2. You can also check for /var/run/dmesg.boot for the ad devices to see what they are. > Second question. I'd like to get EMACS rewired to accept the backspace > key, instead of throwing a fit at the fact that I'm not using delete. > Now, I can just hack out a short EMACS LISP definition to remap the key, > but I was hoping there was a more elegant solution. Hmm - it works fine for me, and I didn't do anything special about it. I am using xemacs instead of emacs, 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 Thu Jul 5 14: 4: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-141-144.mmcable.com [24.27.141.144]) by hub.freebsd.org (Postfix) with SMTP id 6E39637B401 for ; Thu, 5 Jul 2001 14:04:03 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 37987 invoked by uid 100); 5 Jul 2001 21:04:02 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15172.54850.915555.810142@guru.mired.org> Date: Thu, 5 Jul 2001 16:04:02 -0500 To: Dan Larsson Cc: questions@freebsd.org Subject: Re: A question about FreeBSD swapping In-Reply-To: <120599299@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\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dan Larsson types: > During some heavy compilations my 4.3-STABLE box used some of its > swapspace. However now long after the program is compiled the swapspace > is still used (according to pstat -T, swapinfo and top). > > Why doesn't the box release this swapspace? Because it hasn't needed it for anything else? One of the things I've noticed that FBSD does differently from other eunices is that it tends to not deallocate/free/delete things until it needs to. If it never needs to, or better yet can reuse the things in that state, it'll save time. 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 Jul 5 14:13:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from onsult-meyers.com (dialup-61-100.dplanet.ch [212.35.61.100]) by hub.freebsd.org (Postfix) with ESMTP id 5809D37B401 for ; Thu, 5 Jul 2001 14:13:36 -0700 (PDT) (envelope-from a.l.meyers@consult-meyers.com) Received: from localhost (localhost [127.0.0.1]) by 0onsult-meyers.com (8.11.4/8.11.4) with ESMTP id f65LKuY00406 for ; Thu, 5 Jul 2001 23:21:07 +0200 (CEST) (envelope-from a.l.meyers@consult-meyers.com) Date: Thu, 5 Jul 2001 23:20:55 +0200 (CEST) From: "A. L. Meyers" To: Subject: console problems Message-ID: <20010705231601.R390-100000@consult-meyers.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 Dear FreeBSD, Found by trial and error following solution to the question: 1. How do I define 80x50 in /etc/rc.conf? add line allscreens_flags="VGA_80x50 green black" which also sets foreground to green and background to black. Still cannot get apps like ee to grok cons2511 instead of cons25. Any suggestions? Greetings, Lucien To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 14:14:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from soda.csua.berkeley.edu (soda.CSUA.Berkeley.EDU [128.32.43.52]) by hub.freebsd.org (Postfix) with ESMTP id E7E3A37B405 for ; Thu, 5 Jul 2001 14:14:46 -0700 (PDT) (envelope-from joup@mail.com) Received: from localhost (mjm@localhost) by soda.csua.berkeley.edu (8.11.1/8.11.1) with ESMTP id f65LEkp28541 for ; Thu, 5 Jul 2001 14:14:46 -0700 (PDT) (envelope-from joup@mail.com) X-Authentication-Warning: soda.csua.berkeley.edu: mjm owned process doing -bs Date: Thu, 5 Jul 2001 14:14:46 -0700 (PDT) From: X-X-Sender: To: Subject: Adding anti-aliased fonts for use w/ KDE 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 recently figured out how to use AA fonts with KDE, but I'm finding the number of fonts available to be somewhat limiting. Is there a collection of AA fonts I can install (perhaps via ports?) that will broaden the selection a bit? How do I make these visible to X/KDE? Thanks Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 14:25: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from lucy.tbscom.com (mail2.tbscom.com [205.215.40.5]) by hub.freebsd.org (Postfix) with ESMTP id 8D96637B401 for ; Thu, 5 Jul 2001 14:25:04 -0700 (PDT) (envelope-from jsmith@coolbluei.com) Received: from coolblueinteractive.net (coolblueinteractive.net [205.215.40.48]) by coolblueinteractive.net (8.10.2/8.10.2) with ESMTP id f65LP2v25144 for ; Thu, 5 Jul 2001 17:25:02 -0400 Date: Thu, 5 Jul 2001 17:25:02 -0400 (EDT) From: Jacob Smith X-Sender: jsmith@lucy.tbscom.com To: freebsd-questions@FreeBSD.ORG Subject: newbie help with rc 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 was hoping to get a little help with startup items. I was really looking for a way to startup mysql and maybe check it before it starts up along with apache. But I didnt know which file to edit. Thanks for any help or explanations, Jake Smith To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 14:25:41 2001 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 632EA37B406 for ; Thu, 5 Jul 2001 14:25:38 -0700 (PDT) (envelope-from hawk@fac13.ds.psu.edu) Received: from fac13.ds.psu.edu (localhost.ds.psu.edu [127.0.0.1]) by fac13.ds.psu.edu (8.11.4/8.11.3) with ESMTP id f65KmvG54986 for ; Thu, 5 Jul 2001 16:48:57 -0400 (EDT) (envelope-from hawk@fac13.ds.psu.edu) Message-Id: <200107052048.f65KmvG54986@fac13.ds.psu.edu> X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: freebsd-questions@FreeBSD.ORG Subject: linux emulation gone mad From: "Richard E. Hawkins" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 05 Jul 2001 16:48:57 -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Linux emulation seems to have just plain stopped working, which seems to be the source of my staroffice problems. linux netscape no longer works, nor does vmware--but both did. Also, netscape does not give a failure message; it just flashes onto the screen and quits. I deinstalled linux_base, but on reinstalation I'm getting: libtermcap-2.0.8-18.i386.rpm bash-1.14.7-16.i386.rpm /bin/sh: error in loading shared libraries: libtermcap.so.2: cannot open shared object file: No such file or directory execution of bash-1.14.7-16 script failed, exit status 127 prior to deinstalltion, installing staroffice failed by first reporting finding glibc (while still in a freebsd script?), but then failing to find the same file (once into the linux staroffice script?) I've done a make update and am buildworlding as we speak, but that's going to be another couple of hours. Any suggestions? hawk -- Prof. Richard E. Hawkins, Esq. /"\ 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 Thu Jul 5 15: 1:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.pelennor.net (mrench.tcinternet.net [209.98.159.250]) by hub.freebsd.org (Postfix) with ESMTP id 5C84437B406 for ; Thu, 5 Jul 2001 15:01:19 -0700 (PDT) (envelope-from jasapp@pelennor.net) Received: by mail.pelennor.net (Mail, from userid 1003) id DD56C6AE; Thu, 5 Jul 2001 17:01:18 -0500 (CDT) Date: Thu, 5 Jul 2001 17:01:18 -0500 From: Jeff Sapp To: freebsd-questions@freebsd.org Subject: rebuilding a compaq smart array Message-ID: <20010705170118.C28259@pelennor.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 Here's my situation. We just purchased a DL380, and it has an integrated RAID controller. We're using 4.3 stable, and the computer is configured with RAID 1. If a drive fails, the only way I can find to rebuild the array is to boot of the Compaq Smart Start CD. Does anyone know if there is software to rebuild a compaq smart array from FreeBSD? Jeff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 15: 3:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.ca.inter.net (smtp.ca.inter.net [38.210.35.210]) by hub.freebsd.org (Postfix) with ESMTP id 78A2637B401 for ; Thu, 5 Jul 2001 15:03:30 -0700 (PDT) (envelope-from cckok00@hotmail.com) Received: from ip8.toronto103.dialup.canada.psi.net ([154.20.97.8] helo=hotmail.com) by smtp.ca.inter.net with esmtp (Exim 3.22 #1) id 15IHDi-0004NM-00; Thu, 05 Jul 2001 18:03:35 -0400 Message-ID: <3B44E45D.4C2D5FA2@hotmail.com> Date: Thu, 05 Jul 2001 18:04:14 -0400 From: Peter Kok X-Mailer: Mozilla 4.74 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Linh Pham Cc: Kelvin Ng Chee Hoong , "freebsd-questions@FreeBSD.ORG" Subject: Re: Webadmin 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 Hi all Sorry to interrupt. How abt the security? does it need the https instead of http Tks regards Peter Linh Pham wrote: > On 2001-07-05, Kelvin Ng Chee Hoong scribbled: > > # Hi ; > # I would to use web interface to adminstrate and do house keeping of > # my FBSD . Does FBSD has feature of webadmin ? > > There is a web-based tool called Webmin that allows you to manage and > maintain FreeBSD and many other services (ie: Sendmail, Postfix, BIND, > NFS, etc.). > > More information can be found at http://www.webmin.com/webmin > > A review of Webmin can be found at > http://ezine.daemonnews.org/200105/webmin.html > > The Webmin ports is found under /usr/ports/sysutils/webmin and the > latest version is 0.87. > > -- > Linh Pham > [lplist@closedsrc.org] > > // 404b - Brain not found > > 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 Jul 5 15: 6:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hawk-systems.com (hawk-systems.com [161.58.152.235]) by hub.freebsd.org (Postfix) with ESMTP id 5736437B408 for ; Thu, 5 Jul 2001 15:06:27 -0700 (PDT) (envelope-from dave@hawk-systems.com) Received: from WS1 (du-pl-142.nexusinternetsolutions.net [204.50.158.142]) by hawk-systems.com (8.11.2) id f65M6Oo30709 for ; Thu, 5 Jul 2001 16:06:25 -0600 (MDT) From: "Dave VanAuken" To: Subject: NIC suffering intermittant connection problems Date: Thu, 5 Jul 2001 18:10:39 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 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 an Intel NIC on a FreeBSD 4.3 box (actuallly 3 boxes with same setup - cards and all) other two boxes are fine... third is intermittant. Works fine on botup, but will occasionally fall asleep and not respond to requests. initiating requests from the machine seems to wake things up and then other machines pick it up again (best way to explain it) Am all but ready to blame it on the NIC and try replacing it. Just recently switched IP blocks though (changed class C) so could have missed something in the changeover that is causing this. ideas? TIA Dave >>>>> ifconfig <<<<< fxp0: flags=8843 mtu 1500 inet 204.50.158.12 netmask 0xffffff00 broadcast 204.50.158.255 inet6 fe80::2d0:b7ff:feb2:5f7f%fxp0 prefixlen 64 scopeid 0x1 ether 00:d0:b7:b2:5f:7f media: autoselect (100baseTX ) status: active supported media: autoselect 100baseTX 100baseTX 10baseT/UT P 10baseT/UTP lp0: flags=8810 mtu 1500 faith0: flags=8000 mtu 1500 gif0: flags=8010 mtu 1280 gif1: flags=8010 mtu 1280 gif2: flags=8010 mtu 1280 gif3: flags=8010 mtu 1280 lo0: flags=8049 mtu 16384 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x8 inet6 ::1 prefixlen 128 inet 127.0.0.1 netmask 0xff000000 inet 204.50.158.12 netmask 0xffffff00 ppp0: flags=8010 mtu 1500 sl0: flags=c010 mtu 552 >>>>> netstat -r <<<<< Internet: Destination Gateway Flags Refs Use Netif Expire default rtr0 UGSc 0 0 fxp0 localhost localhost UH 0 0 lo0 204.50.158 link#1 UC 0 0 fxp0 => web1 web1 UH 0 0 lo0 Internet6: Destination Gateway Flags Netif Expire ::1 ::1 UH lo0 fe80::%fxp0 link#1 UC fxp0 fe80::%lo0 fe80::1%lo0 Uc lo0 ff01:: ::1 U lo0 ff02::%fxp0 link#1 UC fxp0 ff02::%lo0 fe80::1%lo0 UC lo0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 15:10:33 2001 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 6D8E837B407 for ; Thu, 5 Jul 2001 15:10:31 -0700 (PDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.11.3/8.11.3) id f65MATl28212; Thu, 5 Jul 2001 17:10:29 -0500 (CDT) (envelope-from dan) Date: Thu, 5 Jul 2001 17:10:29 -0500 From: Dan Nelson To: Jeff Sapp Cc: freebsd-questions@FreeBSD.ORG Subject: Re: rebuilding a compaq smart array Message-ID: <20010705171029.A17633@dan.emsphone.com> References: <20010705170118.C28259@pelennor.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010705170118.C28259@pelennor.net> User-Agent: Mutt/1.3.19i X-OS: FreeBSD 5.0-CURRENT Sender: owner-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 (Jul 05), Jeff Sapp said: > Here's my situation. We just purchased a DL380, and it has an > integrated RAID controller. We're using 4.3 stable, and the computer > is configured with RAID 1. If a drive fails, the only way I can find > to rebuild the array is to boot of the Compaq Smart Start CD. You mean it doesn't rebuild automatically onto a hot spare (or rebuild automatically once you swap the bad drive with a good one, if you have no hot spares)? > Does anyone know if there is software to rebuild a compaq smart array > from FreeBSD? I don't see any on Compaq's site; I don't see anything on there for Linux, either, so you can't even use that under emulation. Actually, you shouldn't have to boot the Smart Start CD if you created a Diagnostic Partition before you installed FreeBSD. You can just boot into that. -- Dan Nelson dnelson@emsphone.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 15:17: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from q.closedsrc.org (ip233.gte15.rb1.bel.nwlink.com [209.20.244.233]) by hub.freebsd.org (Postfix) with ESMTP id CE53237B406 for ; Thu, 5 Jul 2001 15:16:59 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id E91BF55407; Thu, 5 Jul 2001 15:01:40 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id D787C51610; Thu, 5 Jul 2001 15:01:40 -0700 (PDT) Date: Thu, 5 Jul 2001 15:01:40 -0700 (PDT) From: Linh Pham To: Peter Kok Cc: Kelvin Ng Chee Hoong , "freebsd-questions@FreeBSD.ORG" Subject: Re: Webadmin In-Reply-To: <3B44E45D.4C2D5FA2@hotmail.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 2001-07-05, Peter Kok scribbled: # Sorry to interrupt. How abt the security? # does it need the https instead of http You can have Webmin work with or without SSL (there is an option in the install script asking you if you want to use SSL or not... requires SSLeay or OpenSSL... forgot which). -- Linh Pham [lplist@closedsrc.org] // 404b - Brain not found To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 15:24: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cqos1.cqos.com (ppp-64-160-241-125.cqos.com [64.160.241.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D24F37B403 for ; Thu, 5 Jul 2001 15:24:05 -0700 (PDT) (envelope-from Sknox@CQOS.COM) Received: by CQOS1 with Internet Mail Service (5.5.2653.19) id ; Thu, 5 Jul 2001 15:24:05 -0700 Message-ID: <550B4D6FA776D3118D1D00902799170C60884E@CQOS1> From: Sean Knox To: "FreeBSD Questions (E-mail)" Subject: Exim won't start suddenly. Date: Thu, 5 Jul 2001 15:24:04 -0700 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 have been running Exim 3.22 smoothly for several weeks. I needed to restart Exim to send some thawed messages and now whenever I attempt to start Exim, I receive this error: /usr/libexec/ld-elf.so.1: Shared object "liblber.so.1" not found What does this mean and how do i fix it? Sean To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 15:25:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.pelennor.net (mrench.tcinternet.net [209.98.159.250]) by hub.freebsd.org (Postfix) with ESMTP id 16F0737B401 for ; Thu, 5 Jul 2001 15:25:40 -0700 (PDT) (envelope-from jasapp@pelennor.net) Received: by mail.pelennor.net (Mail, from userid 1003) id 91A4D6AE; Thu, 5 Jul 2001 17:25:39 -0500 (CDT) Date: Thu, 5 Jul 2001 17:25:39 -0500 From: Jeff Sapp To: Dan Nelson Cc: freebsd-questions@FreeBSD.ORG Subject: Re: rebuilding a compaq smart array Message-ID: <20010705172539.A28330@pelennor.net> References: <20010705170118.C28259@pelennor.net> <20010705171029.A17633@dan.emsphone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010705171029.A17633@dan.emsphone.com>; from dnelson@emsphone.com on Thu, Jul 05, 2001 at 05:10: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 On Thu, Jul 05, 2001 at 05:10:29PM -0500, Dan Nelson wrote: > You mean it doesn't rebuild automatically onto a hot spare (or rebuild > automatically once you swap the bad drive with a good one, if you have > no hot spares)? No, it doesn't. We have two 9.1 gig drives (no hot spare). After pulling a drive out, the computer printed a bunch of "ida soft error". I put it back in and a little green light started blinking on the front of the drive. At this point, I thought it was rebuilding, so I let it set for a long time (like 5 hours). After booting to the cd, it took maybe 5 or 10 minutes with bright red lights flashing on both hard drives. I dunno, maybe it only works if the drive actually fails? Jeff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 15:33:33 2001 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 C849B37B403 for ; Thu, 5 Jul 2001 15:33:29 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-a239.otenet.gr [212.205.215.239]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f65MXPo17592; Fri, 6 Jul 2001 01:33:27 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.3) id f65MXOs04104; Fri, 6 Jul 2001 01:33:24 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Fri, 6 Jul 2001 01:33:24 +0300 From: Giorgos Keramidas To: Jacob Smith Cc: freebsd-questions@FreeBSD.ORG Subject: Re: newbie help with rc Message-ID: <20010706013324.A3993@hades.hell.gr> 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 jsmith@coolbluei.com on Thu, Jul 05, 2001 at 05:25:02PM -0400 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-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: Jacob Smith Sent: Thu, Jul 05, 2001 at 05:25:02PM -0400 Subject: newbie help with rc > I was hoping to get a little help with startup items. I was really > looking for a way to startup mysql and maybe check it before it starts up > along with apache. But I didnt know which file to edit. > > Thanks for any help or explanations, Put your mysql.sh script in /usr/local/etc/rc.d/mysql.sh and make sure it's name ends in *.sh and it is executable. The startup scripts will call it with 'start' at boot time and 'stop' at shutdown time. -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 15:40:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hawk-systems.com (hawk-systems.com [161.58.152.235]) by hub.freebsd.org (Postfix) with ESMTP id 89CC237B407 for ; Thu, 5 Jul 2001 15:40:50 -0700 (PDT) (envelope-from dave@hawk-systems.com) Received: from WS1 (du-pl-142.nexusinternetsolutions.net [204.50.158.142]) by hawk-systems.com (8.11.2) id f65MemW35116 for ; Thu, 5 Jul 2001 16:40:48 -0600 (MDT) From: dave@hawk-systems.com (Dave) To: Subject: RE: NIC suffering intermittant connection problems Date: Thu, 5 Jul 2001 18:45:03 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 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 Further to my last. again had it non-responsive to other machines... ran "netstat -r" ... pause ... then finally listed the status after which other machines could happily interact with it for a short time. NIC is an Intel Pro 10/100B/100+ Dave >have an Intel NIC on a FreeBSD 4.3 box (actuallly 3 boxes with same >setup - cards and all) > >other two boxes are fine... third is intermittant. > >Works fine on botup, but will occasionally fall asleep and To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 15:41: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from klima.physik.uni-mainz.de (klima.Physik.Uni-Mainz.DE [134.93.180.162]) by hub.freebsd.org (Postfix) with ESMTP id 2FD2937B409; Thu, 5 Jul 2001 15:40:54 -0700 (PDT) (envelope-from ohartman@klima.physik.uni-mainz.de) Received: from klima.Physik.Uni-Mainz.DE (Sturm@klima.Physik.Uni-Mainz.DE [134.93.180.162]) by klima.physik.uni-mainz.de (8.11.4/8.11.4) with ESMTP id f65MeqU05406; Fri, 6 Jul 2001 00:40:52 +0200 (CEST) (envelope-from ohartman@klima.physik.uni-mainz.de) Date: Fri, 6 Jul 2001 00:40:52 +0200 (CEST) From: "Hartmann, O." To: James Greenhalgh Cc: , Subject: Re: Linuxulator on SMP systems broken? In-Reply-To: <20010705215123.50d2fccc.james-list@ntlworld.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 Thu, 5 Jul 2001, James Greenhalgh wrote: Since three hours both servers run with SMP kernel, but the Linuxulator problem is still present. What the hell is that? Am I the only one with this specific problems? Every thursday we have a course in theoretical meteorology and therefore several small Fortran programs are written by the students, producing output by NCARG via IDT tool. The malfunction occured today, when the students tried to show their results - last week, before this big catastrophy, all things run well and nothing has been changed in the Linuxulator config or in binaries. Today, only those machines running with a single CPU are capable using IDT! All SMP machines, either with or without SMP activated, fail in running IDT with a SIG 20. :>My machine is still suffering these problems when SMP support is enabled, and :>it should be noted that it hangs very much more quickly when using linuxemu :>(in my case opera, but also netscape). I only had 2 system hangs when in :>console mode, but closer to 20 with linuxemu running. These are _total_ :>system hangs, requiring power cycle. :> :>james :> :>On Thu, 5 Jul 2001 22:03:25 +0200 (CEST) :>"Hartmann, O." wrote: :> :>> Hello. :>> :>> Within the last week we rushed into a seriuos SMP problem with our SMP :>servers :>> due a bug in the FBSD 4.2-STABLE code. Since then we have also on all SMP :>systems :>> a problem with several Linux applications, which work perfect on UP systems :>with the :>> same installation and installation date (as cvsupdated today). :>> :>> It is very important to have NCAR graphics 4.2.1 working here and it did :>before :>> the 1. June. :>> :>> The phenomenon is, that an application called IDT (a visualization tool :>under :>> NCARG) works perfect under all UP systems and suddenly not under our SMP :>machines. :>> When applying a 'truss idt' I receive a "SIG 20" whenever I try to push a :>button. :>> :>> Does anyone else have problems with the Linuxulator after the horrible SMP :>problems? :>> Maybe this problem is not related to the SMP problem, but it is very :>suspicous that :>> it occured after this problem occured due the fact we did not change any :>kind of :>> configuration ... :>> :>> -- :>> MfG :>> O. Hartmann :>> :>> ohartman@klima.physik.uni-mainz.de :>> ---------------------------------------------------------------- :>> IT-Administration des Institut fuer Physik der Atmosphaere (IPA) :>> ---------------------------------------------------------------- :>> Johannes Gutenberg Universitaet Mainz :>> Becherweg 21 :>> 55099 Mainz :>> :>> Tel: +496131/3924662 (Maschinenraum) :>> Tel: +496131/3924144 :>> FAX: +496131/3923532 :>> :>> :>> To Unsubscribe: send mail to majordomo@FreeBSD.org :>> with "unsubscribe freebsd-questions" in the body of the message :> :> :>-- :> :>find great crazy-mad out-of-head experience from japan. :> -- MfG O. Hartmann ohartman@klima.physik.uni-mainz.de ---------------------------------------------------------------- IT-Administration des Institut fuer Physik der Atmosphaere (IPA) ---------------------------------------------------------------- Johannes Gutenberg Universitaet Mainz Becherweg 21 55099 Mainz Tel: +496131/3924662 (Maschinenraum) Tel: +496131/3924144 FAX: +496131/3923532 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 15:45:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from onsult-meyers.com (dialup-61-109.dplanet.ch [212.35.61.109]) by hub.freebsd.org (Postfix) with ESMTP id AC2DE37B401 for ; Thu, 5 Jul 2001 15:45:50 -0700 (PDT) (envelope-from a.l.meyers@consult-meyers.com) Received: from localhost (localhost [127.0.0.1]) by 0onsult-meyers.com (8.11.4/8.11.4) with ESMTP id f65MrUY01770 for ; Fri, 6 Jul 2001 00:53:31 +0200 (CEST) (envelope-from a.l.meyers@consult-meyers.com) Date: Fri, 6 Jul 2001 00:53:29 +0200 (CEST) From: "A. L. Meyers" To: Subject: Euro currency symbol Message-ID: <20010706005208.B1768-100000@consult-meyers.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! How do you get the Euro currency symbol on the console and in X? Cheers! Lucien To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 15:50:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp4ve.mailsrvcs.net (smtp4vepub.gte.net [206.46.170.25]) by hub.freebsd.org (Postfix) with ESMTP id 560B737B407 for ; Thu, 5 Jul 2001 15:50:30 -0700 (PDT) (envelope-from skip.ford@verizon.net) Received: from Skip (adsl-141-150-211-77.delval.adsl.bellatlantic.net [141.150.211.77]) by smtp4ve.mailsrvcs.net (8.9.1/8.9.1) with ESMTP id WAA50242453 for ; Thu, 5 Jul 2001 22:50:28 GMT Message-Id: <200107052250.WAA50242453@smtp4ve.mailsrvcs.net> Date: Thu, 5 Jul 2001 18:54:28 -0400 From: Skip To: freebsd-questions@freebsd.org Subject: Re: Newbie: Q regarding /dev entries Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qcHopEYAB45HaUaB" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from rjhansen@inav.net on Thu, Jul 05, 2001 at 01:31:54AM -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 --qcHopEYAB45HaUaB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Robert J. Hansen wrote: > attempting to mount a CD so I could install bash (as opposed to sh).=20 > This is where I ran into my first problem. >=20 Well, on my machine, '/stand/sysinstall' mounts the cd on it's own. Just put the disk in first. I think it'll even tell you the dev entry as it mounts it. --=20 Skip ID: 0x7EDDDB0A --qcHopEYAB45HaUaB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iEYEARECAAYFAjtE8CIACgkQBMKxVH7d2wrIuwCcDRPdSvFU/E24YE8DqG9Hq4kH jOMAoPJ+ewdLISZ6DADgFeMWxI6KI6Ji =kUGP -----END PGP SIGNATURE----- --qcHopEYAB45HaUaB-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 15:56: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from wicket.ctc.com (wicket.ctc.com [147.160.99.44]) by hub.freebsd.org (Postfix) with ESMTP id 2BA5937B408 for ; Thu, 5 Jul 2001 15:56:02 -0700 (PDT) (envelope-from cameron@ctc.com) Received: from server3.ctc.com (server3.ctc.com [147.160.1.6]) by wicket.ctc.com (Switch-2.1.0/Switch-2.1.0) with ESMTP id f65Mtug06461; Thu, 5 Jul 2001 18:55:56 -0400 Received: from ctcjst-mail1.ctc.com (ctcjst-mail1.ctc.com [147.160.34.14]) by server3.ctc.com (Switch-2.1.1/Switch-2.1.0) with ESMTP id f65MtuN26334; Thu, 5 Jul 2001 18:55:56 -0400 Received: by ctcjst-mail1.ctc.com with Internet Mail Service (5.5.2653.19) id ; Thu, 5 Jul 2001 19:03:24 -0400 Message-ID: <08FC7735666C234FA73DCA654748D865B3C538@ctcjst-mail1.ctc.com> From: "Cameron, Frank" To: "'Terje.Fallmyr@hibo.no'" Cc: freebsd-questions@FreeBSD.ORG Subject: RE: NDS eDirectory on FreeBSD Date: Thu, 5 Jul 2001 19:03:12 -0400 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 haven't tried anything else since then. At the time I was able to run eDirectory on a FreeBSD 4.2-STABLE box under Linux emulation. Unfortunately, after a few hours the system would crash ('no more process ids'). -frank > -----Original Message----- > From: Terje Fallmyr [mailto:Terje.Fallmyr@hibo.no] > Sent: Thursday, July 05, 2001 5:22 AM > To: cameron@ctc.com; cdillon@wolves.k12.mo.us > Cc: freebsd-questions@FreeBSD.ORG > Subject: NDS eDirectory on FreeBSD > > > > I saw your postings in February about NDS on FreeBSD, so I > just wanter if > you or anyone in the FreeBSD community know whether NDS > eDirectory (which > runs on Linux) also runs on FreeBSD. > > Thanks, > > > /Terje > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 15:58:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mark9.vladsempire.net (hutch-392.hutchtel.net [206.10.68.92]) by hub.freebsd.org (Postfix) with ESMTP id 79ADF37B406 for ; Thu, 5 Jul 2001 15:58:35 -0700 (PDT) (envelope-from jpaetzel@hutchtel.net) Received: from mark9.vladsempire.net (mark9.vladsempire.net [10.0.0.97]) by mark9.vladsempire.net (Postfix) with SMTP id 9E5302E9; Thu, 5 Jul 2001 18:04:58 -0500 (CDT) Content-Type: text/plain; charset="iso-8859-1" From: Josh Paetzel To: dave@hawk-systems.com (Dave), Subject: Re: NIC suffering intermittant connection problems Date: Thu, 5 Jul 2001 18:04:58 -0500 X-Mailer: KMail [version 1.2] References: In-Reply-To: MIME-Version: 1.0 Message-Id: <01070518045801.02164@mark9.vladsempire.net> 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 05 July 2001 17:45, Dave wrote: > Further to my last. > > again had it non-responsive to other machines... > ran "netstat -r" ... pause ... then finally listed the status after > which other machines could happily interact with it for a short time. > > NIC is an Intel Pro 10/100B/100+ > > Dave Just throwing ideas out, but could the netmask be wrong? Josh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 15:59:53 2001 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 5ED1937B403; Thu, 5 Jul 2001 15:59:39 -0700 (PDT) (envelope-from james-list@ntlworld.com) Received: from eclipse.bloodflowers.org ([62.253.132.240]) by mta01-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with SMTP id <20010705225935.ZTWI351.mta01-svc.ntlworld.com@eclipse.bloodflowers.org>; Thu, 5 Jul 2001 23:59:35 +0100 Date: Thu, 5 Jul 2001 23:59:36 +0100 From: James Greenhalgh To: "Hartmann, O." Cc: freebsd-questions@freebsd.org, freebsd-stable@freebsd.org Subject: Re: Linuxulator on SMP systems broken? Message-Id: <20010705235936.5430925d.james-list@ntlworld.com> In-Reply-To: References: <20010705215123.50d2fccc.james-list@ntlworld.com> X-Mailer: Sylpheed version 0.4.66 (GTK+ 1.2.10; i386--freebsd4.3) 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 Oh well - somewhere along the line SMP and/or linux emu has been broken certainly in the past month. I'll be downgrading my machine to a backup tomorrow, I'd recommend you do the same if they're important machines. james On Fri, 6 Jul 2001 00:40:52 +0200 (CEST) "Hartmann, O." wrote: > On Thu, 5 Jul 2001, James Greenhalgh wrote: > > Since three hours both servers run with SMP kernel, but the Linuxulator problem > is still present. What the hell is that? Am I the only one with this specific > problems? > > Every thursday we have a course in theoretical meteorology and therefore several > small Fortran programs are written by the students, producing output by NCARG via > IDT tool. The malfunction occured today, when the students tried to show their > results - last week, before this big catastrophy, all things run well and nothing has > been changed in the Linuxulator config or in binaries. Today, only those machines > running with a single CPU are capable using IDT! All SMP machines, either with or > without SMP activated, fail in running IDT with a SIG 20. > > > :>My machine is still suffering these problems when SMP support is enabled, and > :>it should be noted that it hangs very much more quickly when using linuxemu > :>(in my case opera, but also netscape). I only had 2 system hangs when in > :>console mode, but closer to 20 with linuxemu running. These are _total_ > :>system hangs, requiring power cycle. > :> > :>james > :> > :>On Thu, 5 Jul 2001 22:03:25 +0200 (CEST) > :>"Hartmann, O." wrote: > :> > :>> Hello. > :>> > :>> Within the last week we rushed into a seriuos SMP problem with our SMP > :>servers > :>> due a bug in the FBSD 4.2-STABLE code. Since then we have also on all SMP > :>systems > :>> a problem with several Linux applications, which work perfect on UP systems > :>with the > :>> same installation and installation date (as cvsupdated today). > :>> > :>> It is very important to have NCAR graphics 4.2.1 working here and it did > :>before > :>> the 1. June. > :>> > :>> The phenomenon is, that an application called IDT (a visualization tool > :>under > :>> NCARG) works perfect under all UP systems and suddenly not under our SMP > :>machines. > :>> When applying a 'truss idt' I receive a "SIG 20" whenever I try to push a > :>button. > :>> > :>> Does anyone else have problems with the Linuxulator after the horrible SMP > :>problems? > :>> Maybe this problem is not related to the SMP problem, but it is very > :>suspicous that > :>> it occured after this problem occured due the fact we did not change any > :>kind of > :>> configuration ... > :>> > :>> -- > :>> MfG > :>> O. Hartmann > :>> > :>> ohartman@klima.physik.uni-mainz.de > :>> ---------------------------------------------------------------- > :>> IT-Administration des Institut fuer Physik der Atmosphaere (IPA) > :>> ---------------------------------------------------------------- > :>> Johannes Gutenberg Universitaet Mainz > :>> Becherweg 21 > :>> 55099 Mainz > :>> > :>> Tel: +496131/3924662 (Maschinenraum) > :>> Tel: +496131/3924144 > :>> FAX: +496131/3923532 > :>> > :>> > :>> To Unsubscribe: send mail to majordomo@FreeBSD.org > :>> with "unsubscribe freebsd-questions" in the body of the message > :> > :> > :>-- > :> > :>find great crazy-mad out-of-head experience from japan. > :> > > -- > MfG > O. Hartmann > > ohartman@klima.physik.uni-mainz.de > ---------------------------------------------------------------- > IT-Administration des Institut fuer Physik der Atmosphaere (IPA) > ---------------------------------------------------------------- > Johannes Gutenberg Universitaet Mainz > Becherweg 21 > 55099 Mainz > > Tel: +496131/3924662 (Maschinenraum) > Tel: +496131/3924144 > FAX: +496131/3923532 > -- find great crazy-mad out-of-head experience from japan. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 16: 8:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hawk-systems.com (hawk-systems.com [161.58.152.235]) by hub.freebsd.org (Postfix) with ESMTP id 92EBF37B40A for ; Thu, 5 Jul 2001 16:08:13 -0700 (PDT) (envelope-from dave@hawk-systems.com) Received: from WS1 (du-pl-151.nexusinternetsolutions.net [204.50.158.151]) by hawk-systems.com (8.11.2) id f65N89H38538 for ; Thu, 5 Jul 2001 17:08:09 -0600 (MDT) From: dave@hawk-systems.com (Dave) To: Subject: RE: NIC suffering intermittant connection problems Date: Thu, 5 Jul 2001 19:12:24 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 In-Reply-To: <01070518045801.02164@mark9.vladsempire.net> 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 nope, unless you are of the 255.255.255.255 mindset the entire class C is ours, thus all netmasks are set to 255.255.255.0 Dave >-----Original Message----- >From: owner-freebsd-questions@FreeBSD.ORG >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Josh Paetzel >Sent: Thursday, July 05, 2001 7:05 PM >To: Dave; freebsd-questions@FreeBSD.ORG >Subject: Re: NIC suffering intermittant connection problems > > >On Thursday 05 July 2001 17:45, Dave wrote: >> Further to my last. >> >> again had it non-responsive to other machines... >> ran "netstat -r" ... pause ... then finally listed the >status after >> which other machines could happily interact with it for a >short time. >> >> NIC is an Intel Pro 10/100B/100+ >> >> Dave > > >Just throwing ideas out, but could the netmask be wrong? > >Josh > >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 Jul 5 16:16:13 2001 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 96AF437B407 for ; Thu, 5 Jul 2001 16:16:07 -0700 (PDT) (envelope-from ahl@austclear.com.au) Received: from tungsten.austclear.com.au (tungsten.austclear.com.au [192.168.70.1]) by ns1.austclear.com.au (8.11.2/8.11.3) with ESMTP id f65NG6e79340; Fri, 6 Jul 2001 09:16:06 +1000 (EST) (envelope-from ahl@austclear.com.au) Received: from tungsten (tungsten [192.168.70.1]) by tungsten.austclear.com.au (8.9.3/8.9.3) with ESMTP id JAA01518; Fri, 6 Jul 2001 09:16:06 +1000 (EST) Message-Id: <200107052316.JAA01518@tungsten.austclear.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: dave@hawk-systems.com (Dave) Cc: freebsd-questions@FreeBSD.ORG Subject: Re: NIC suffering intermittant connection problems In-Reply-To: Message from dave@hawk-systems.com (Dave) of "Thu, 05 Jul 2001 19:12:24 -0400." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 06 Jul 2001 09:16:06 +1000 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 Is DNS working properly on the machine? Running "netstat -r" requires name resolution for all the entries (which is why I tend to run "netstat -rn"). Perhaps most of the problems are to do with name resolution, and running "netstat -r" refills the cache, or something stupid. We've been running a fair number of Intel Pro in our firewalls for quite a while. There was one occasion over a year ago where one port of a dual-port card appeared to have gone to sleep and wouldn't wake up (until we rebooted) on FreeBSD 3.2, but apart from that they've been very good. Of course all manufacturing processes are subject to random variation--you may just be "lucky". 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 Thu Jul 5 17: 8:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns3.tstt.net.tt (ns3.tstt.net.tt [196.3.132.3]) by hub.freebsd.org (Postfix) with SMTP id C93A937B401 for ; Thu, 5 Jul 2001 17:08:44 -0700 (PDT) (envelope-from dchulhan@uwi.tt) Received: (qmail 59130 invoked from network); 6 Jul 2001 00:08:22 -0000 Received: from unknown (HELO uwi.tt) (209.94.221.146) by ns3.tstt.net.tt with SMTP; 6 Jul 2001 00:08:22 -0000 Message-ID: <3B45018A.39ABB7C9@uwi.tt> Date: Thu, 05 Jul 2001 20:08:42 -0400 From: Dale Chulhan - Home Organization: COSTAATT X-Mailer: Mozilla 4.76 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: [OT] Configuring A RAS 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 am desperate for some help here.... Someone told me that you could configure a RAS using a CISCO 2506 and some serial modems. I need to know what kind of modems they would have to be because I thought that they could be plain old external type modems like a 3COM or something. Thank you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 17:32:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.plug.cx (unix-gw.gihs.sa.edu.au [203.63.40.115]) by hub.freebsd.org (Postfix) with ESMTP id 65DA337B405 for ; Thu, 5 Jul 2001 17:32:25 -0700 (PDT) (envelope-from andrew.reid@plug.cx) Received: from percible.alfred.cx (firewall.gihs.sa.edu.au [192.168.1.1]) by mail.plug.cx (Postfix) with ESMTP id 098A82B7DE; Fri, 6 Jul 2001 10:25:26 +0000 (GMT) Subject: RE: NDS eDirectory on FreeBSD From: Andrew Reid To: "Cameron, Frank" Cc: "'Terje.Fallmyr@hibo.no'" , freebsd-questions@FreeBSD.ORG In-Reply-To: <08FC7735666C234FA73DCA654748D865B3C538@ctcjst-mail1.ctc.com> References: <08FC7735666C234FA73DCA654748D865B3C538@ctcjst-mail1.ctc.com> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/0.10.99 (Preview Release) Date: 06 Jul 2001 10:01:39 +0930 Message-Id: <994379499.13378.0.camel@percible.alfred.cx> 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 05 Jul 2001 19:03:12 -0400, Cameron, Frank wrote: > I haven't tried anything else since then. At the time I was able to run > eDirectory on a FreeBSD 4.2-STABLE box under Linux emulation. > Unfortunately, after a few hours the system would crash ('no more process > ids'). We've written a PAM module (under Linux) that authenticates against NDS (using an NLM that we've also written). The source is available to anyone that wants it. It doesn't compile properly under FreeBSD, but a bit of hacking should fix it. I've not had the time to look at it properly, but I'm willing to work with anyone (and provide shell access if necessary) that would like to work towards a FreeBSD port. - andrew -- void signature () { cout << "Andrew Reid -- andrew.reid@plug.cx" << endl ; cout << "Cell: +61 401 946 813" << endl; cout << "Quidquid latine dictum sit, altum viditur" << endl; } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 17:50:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from forrie.net (forrie.net [216.67.14.69]) by hub.freebsd.org (Postfix) with ESMTP id 5CA6637B401 for ; Thu, 5 Jul 2001 17:50:32 -0700 (PDT) (envelope-from forrie@forrie.com) Received: from boom.forrie.com (forrie.ne.mediaone.net [24.147.132.133]) by forrie.net with id f660oUH31393 for ; Thu, 5 Jul 2001 20:50:30 -0400 (EDT) Message-Id: <5.1.0.14.2.20010705204953.02263ec0@216.67.14.69> X-Sender: forrie@216.67.14.69 X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Thu, 05 Jul 2001 20:50:28 -0400 To: freebsd-questions@freebsd.org From: Forrest Aldrich Subject: TreeList failed (cvsup) Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=====================_39065965==_.ALT" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=====================_39065965==_.ALT Content-Type: text/plain; charset="us-ascii"; format=flowed In follow-up to my own post, this is FreeBSD-4.3-STABLE, rebuilt (Cvsup'd) last week. So, this is beginning to sound like it might be a network code buglet somewhere... ? _F I'm running cvsup as: cvsup -g -L2 -Pm /etc/cvsupfile as I've always done, but now I'm getting this error today: Retrying Connecting to cvsup.FreeBSD.org Connected to cvsup.FreeBSD.org Server software version: REL_16_1 Negotiating file attribute support Exchanging collection information Establishing multiplexed-mode data connection Running Updating collection src-all/cvs Updating collection ports-all/cvs TreeList failed: Network write failure: Connection closed Is there something external going on? --=====================_39065965==_.ALT Content-Type: text/html; charset="us-ascii" In follow-up to my own post, this is FreeBSD-4.3-STABLE, rebuilt (Cvsup'd) last week.   So, this is beginning to sound like it might be a network code buglet somewhere... ?



_F



I'm running cvsup as:

cvsup -g -L2 -Pm /etc/cvsupfile

as I've always done, but now I'm getting this error today:

Retrying
Connecting to cvsup.FreeBSD.org
Connected to cvsup.FreeBSD.org
Server software version: REL_16_1
Negotiating file attribute support
Exchanging collection information
Establishing multiplexed-mode data connection
Running
Updating collection src-all/cvs
Updating collection ports-all/cvs
TreeList failed: Network write failure: Connection closed


Is there something external going on?


--=====================_39065965==_.ALT-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 17:54:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from irwanhadi.dorms.usu.edu (irwanhadi.dorms.usu.edu [129.123.230.12]) by hub.freebsd.org (Postfix) with ESMTP id 6303B37B408 for ; Thu, 5 Jul 2001 17:54:42 -0700 (PDT) (envelope-from phxby@phxby.com) Received: by irwanhadi.dorms.usu.edu (Postfix, from userid 501) id 421FCB3B15; Thu, 5 Jul 2001 18:58:09 -0600 (MDT) Date: Thu, 5 Jul 2001 18:57:06 -0600 From: Irwan Hadi To: Gustaf Tham Cc: freebsd-questions@freebsd.org Subject: Re: Subscriptions at WindRiver -- Where? Message-ID: <20010705185706.A8742@phxby.com> References: <1ot6kt8iic8c1fpacli5pris6qbhj9dqrk@4ax.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <1ot6kt8iic8c1fpacli5pris6qbhj9dqrk@4ax.com>; from gus@algonet.se on Wed, Jul 04, 2001 at 09:17:10PM -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, Jul 04, 2001 at 09:17:10PM -0600, Gustaf Tham wrote: > I can't find the "subscriptions" page on WindRiver any more. > Surely you can still subscribe to the releases and to the toolkit? Hmm I couldn't find it either, but my experience with wccdrom freebsd subscribptions was very bad. In the first week of may 2001 I pre-ordered freebsd 4.3 with subscriptions. Until the third or fourth week of may2001, I still didn't receive the cds. Later I emailed them asking about my order. They did reply my email, but I don't know whats going wrong, because later I'm billed for two cds. Although I got two copies, but it's kinna annoying because I just ordered one. A week after that I emailed them again, asking why I'm billed twice, because I just ordered for one CD. It took 1 1/2 week just for them to reply to my email asking "what is your order number or customer number". After I gave them my order number and customer number, until now (already > 3 weeks), there is still no any answer. Does anybody else have the same bad experience buying from wccdrom too ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 18: 4: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web13305.mail.yahoo.com (web13305.mail.yahoo.com [216.136.175.41]) by hub.freebsd.org (Postfix) with SMTP id E7FAB37B406 for ; Thu, 5 Jul 2001 18:04:04 -0700 (PDT) (envelope-from ad1na@yahoo.com) Message-ID: <20010706010404.96144.qmail@web13305.mail.yahoo.com> Received: from [203.106.241.163] by web13305.mail.yahoo.com via HTTP; Thu, 05 Jul 2001 18:04:04 PDT Date: Thu, 5 Jul 2001 18:04:04 -0700 (PDT) From: ADiNA Subject: /home symlink 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, newbie question, i can't move the /home symlink to somewhere else; any pointers on how to do it? please cc, i'm not subscribed thanks __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Thu Jul 5 18: 8:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web9303.mail.yahoo.com (web9303.mail.yahoo.com [216.136.129.52]) by hub.freebsd.org (Postfix) with SMTP id 3CFB937B403 for ; Thu, 5 Jul 2001 18:08:27 -0700 (PDT) (envelope-from radhika_narendran@yahoo.com) Message-ID: <20010706010826.26110.qmail@web9303.mail.yahoo.com> Received: from [64.111.0.48] by web9303.mail.yahoo.com via HTTP; Thu, 05 Jul 2001 18:08:26 PDT Date: Thu, 5 Jul 2001 18:08:26 -0700 (PDT) From: Radhika Sambamurti Subject: gnome-applets not working with freebsd 4.3 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 currently running Freebsd version 4.3. None of my monitor applets work eg: CPU/MEMUSAGE, DISKusage etc. From pkg_info I see that the version of gnome-applets I have is gnomeapplets-1.2.4. Applets components for the Gnome Desktop Environment. The error message tells me that I have to reload and for some applets nothing happens. Any idea as to why this is happening? Thanks, rs. ===== It's all a matter of perspective. You can choose your view by choosing where to stand. --Larry Wall __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Thu Jul 5 18:38: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from arena.delfi.lv (mail.parks.lv [195.2.96.15]) by hub.freebsd.org (Postfix) with ESMTP id D216037B407 for ; Thu, 5 Jul 2001 18:38:00 -0700 (PDT) (envelope-from uwi@delfi.lv) Received: from vvarior (rev-166.PLV01.delfi.lv [195.114.47.166] (may be forged)) by arena.delfi.lv (8.9.3/8.9.1/OL.cf-3.1) with SMTP id EAA13710 for ; Fri, 6 Jul 2001 04:37:58 +0300 Message-ID: <000801c105bc$5e9fb540$a62f72c3@vvarior> From: "uwi mAn" To: Subject: Date: Fri, 6 Jul 2001 04:38:31 +0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C105D5.82294440" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2501.0001 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2501.0001 Sender: owner-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_01C105D5.82294440 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable what's the difference between SVR and Solaris? thanks ------=_NextPart_000_0005_01C105D5.82294440 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable
what's the = difference=20 between SVR and  Solaris?
 
 
 
thanks
------=_NextPart_000_0005_01C105D5.82294440-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 18:46:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mx2.snet.net (mx2.snet.net [204.60.3.114]) by hub.freebsd.org (Postfix) with ESMTP id 940D837B408 for ; Thu, 5 Jul 2001 18:46:45 -0700 (PDT) (envelope-from j.carlson@snet.net) Received: from ENKIL (brpt-sh3-port59.snet.net [204.60.24.59]) by mx2.snet.net (8.11.1/8.11.1/SNET-mx-1.4/D-1.10/O-1.7) with SMTP id f661kWq12973 for ; Thu, 5 Jul 2001 21:46:35 -0400 (EDT) Message-ID: <005c01c105bd$8145fd10$020aa8c0@ENKIL> From: "Jae Carlson" To: "freebsd-questions" References: <000801c105bc$5e9fb540$a62f72c3@vvarior> Subject: Re: Date: Thu, 5 Jul 2001 21:46:21 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2505.0000 Disposition-Notification-To: "Jae Carlson" X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2505.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 price? ----- Original Message ----- From: uwi mAn To: questions@FreeBSD.ORG Sent: Thursday, July 05, 2001 9:38 PM what's the difference between SVR and Solaris? thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 18:51:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from q.closedsrc.org (ip233.gte15.rb1.bel.nwlink.com [209.20.244.233]) by hub.freebsd.org (Postfix) with ESMTP id C76B737B406 for ; Thu, 5 Jul 2001 18:51:41 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id 049D155407; Thu, 5 Jul 2001 18:36:23 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id E74B651610; Thu, 5 Jul 2001 18:36:23 -0700 (PDT) Date: Thu, 5 Jul 2001 18:36:23 -0700 (PDT) From: Linh Pham To: uwi mAn Cc: Subject: Re: your mail In-Reply-To: <000801c105bc$5e9fb540$a62f72c3@vvarior> 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 2001-07-06, uwi mAn scribbled: # what's the difference between SVR and Solaris? SVR standard for System V Release and is a way of saying (what used to be) AT&T Unix. Solaris (which came from the BSD background and at that time was called SunOS) is a System V implementation of UNIX. UNIX comes in two major flavors: System V and BSD. Current UNIX operating systems are either based on System V or BSD... but many include features from the other implementation (like Digital UNIX... now Compaq Tru64 Unix). Correct me if I messed up or am flat out wrong ;-) -- Linh Pham [lplist@closedsrc.org] // 404b - Brain not found To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 19:13:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dell.nexicom.net (dell.nexicom.net [216.168.96.13]) by hub.freebsd.org (Postfix) with ESMTP id 2A86A37B401 for ; Thu, 5 Jul 2001 19:13:49 -0700 (PDT) (envelope-from north1@nexicom.com) Received: (from root@localhost) by dell.nexicom.net (8.11.1/8.11.1) id f6629mT07621 for freebsd-questions@freebsd.org; Thu, 5 Jul 2001 22:09:48 -0400 Received: from mail.nexicom.net (mail.nexicom.net [216.168.96.10]) by dell.nexicom.net (8.11.3/8.11.1) with ESMTP id f6629ko07529 for ; Thu, 5 Jul 2001 22:09:46 -0400 Received: from north1i8zn1udc ([216.168.105.203]) by mail.nexicom.net (8.11.1/8.11.1) with SMTP id f662Djv00213 for ; Thu, 5 Jul 2001 22:13:45 -0400 (EDT) Message-ID: <000701c105c2$1e837310$0101a8c0@north1i8zn1udc> From: "Dave" To: Subject: raid1 disk mirroring Date: Thu, 5 Jul 2001 22:19:39 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Nexicom: scanned by Inflex 1.0.6 - (http://pldaniels.com/inflex/) Sender: owner-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 never setup ide raid1 disk mirroring. What i would like to know, is what ide, raid1 disk crontrollers are supported, brand name(s)? pci controller card. Is there any documentation or other related subjects i can find, such as what if a master drive fails, what steps to take. Lots of qustions.. :) thank you Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 19:23:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from edwin.mounet.com (edwin.mounet.com [216.145.76.8]) by hub.freebsd.org (Postfix) with SMTP id 1B58C37B409 for ; Thu, 5 Jul 2001 19:23:15 -0700 (PDT) (envelope-from hornback@wireco.net) Received: (qmail 11084 invoked by uid 0); 6 Jul 2001 02:20:50 -0000 Received: from unknown (HELO tomcat) (216.145.85.248) by mounet.com with SMTP; 6 Jul 2001 02:20:50 -0000 From: "Andrew C. Hornback" To: "Jeff Sapp" , Subject: RE: rebuilding a compaq smart array Date: Thu, 5 Jul 2001 22:21:28 -0400 Message-ID: <003f01c105c2$5cf15a40$0e00000a@tomcat> 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 8.5, Build 4.71.2173.0 In-Reply-To: <20010705170118.C28259@pelennor.net> X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 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 Jeff, That should have come with your machine. If not, call your salesperson and have them send you what they left out of the box (I've had this happen before on machines that I've gotten from a Compaq reseller). Rebuilding it from FreeBSD? Not that I know of. The controller should perform an automatic rebuild once a replacement drive is inserted into the array. Might want to check the settings on the controller configuration to see if this option has been disabled by accident. My ProLiant 1500 with the Smart2/P controller rebuilds on the fly, no matter what OS that I'm using. --- andy > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Jeff Sapp > Sent: Thursday, July 05, 2001 6:01 PM > To: freebsd-questions@freebsd.org > Subject: rebuilding a compaq smart array > > > Here's my situation. We just purchased a DL380, and it has an integrated > RAID controller. We're using 4.3 stable, and the computer is configured > with RAID 1. If a drive fails, the only way I can find to rebuild the > array is to boot of the Compaq Smart Start CD. > > Does anyone know if there is software to rebuild a compaq smart array from > FreeBSD? > > Jeff > > 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 Jul 5 20: 1:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.pelennor.net (mrench.tcinternet.net [209.98.159.250]) by hub.freebsd.org (Postfix) with ESMTP id 6A9EC37B408 for ; Thu, 5 Jul 2001 20:01:11 -0700 (PDT) (envelope-from jasapp@pelennor.net) Received: by mail.pelennor.net (Mail, from userid 1003) id E80036AE; Thu, 5 Jul 2001 22:01:10 -0500 (CDT) Date: Thu, 5 Jul 2001 22:01:10 -0500 From: Jeff Sapp To: "Andrew C. Hornback" Cc: freebsd-questions@freebsd.org Subject: Re: rebuilding a compaq smart array Message-ID: <20010705220110.A29418@pelennor.net> References: <20010705170118.C28259@pelennor.net> <003f01c105c2$5cf15a40$0e00000a@tomcat> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <003f01c105c2$5cf15a40$0e00000a@tomcat>; from hornback@wireco.net on Thu, Jul 05, 2001 at 10:21:28PM -0400 Sender: owner-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 should have come with your machine. If not, call your salesperson > and have them send you what they left out of the box (I've had this happen > before on machines that I've gotten from a Compaq reseller). Sorry for my ignorance, but what is "That"? I did recieve all the compaq software (as far as I know anyway). And I did use the software to setup up the two hard drives for RAID 1. My problem is the array not rebuilding itself while I'm running FreeBSD once I plug in a new drive. I have to use one of the compaq utitlies. One of my co-workers spent about three hours on the phone with compaq today trying to get it worked out, but no luck. They really want me to install Windows NT on it for some reason. > Rebuilding it from FreeBSD? Not that I know of. The controller should > perform an automatic rebuild once a replacement drive is inserted into the > array. Might want to check the settings on the controller configuration to > see if this option has been disabled by accident. Does it rebuild the replacement drive while the operating system is running? That's where I'm running into trouble. Jeff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 20: 5:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.plug.cx (unix-gw.gihs.sa.edu.au [203.63.40.115]) by hub.freebsd.org (Postfix) with ESMTP id ADCFB37B403 for ; Thu, 5 Jul 2001 20:05:42 -0700 (PDT) (envelope-from andrew.reid@plug.cx) Received: from percible.alfred.cx (firewall.gihs.sa.edu.au [192.168.1.1]) by mail.plug.cx (Postfix) with ESMTP id BBC872B7DE for ; Fri, 6 Jul 2001 12:58:50 +0000 (GMT) Subject: Installation Configuration File From: Andrew Reid To: freebsd-questions@freebsd.org Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/0.10.99 (Preview Release) Date: 06 Jul 2001 12:34:52 +0930 Message-Id: <994388693.13378.8.camel@percible.alfred.cx> 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 Hello All, I've got a project which involves the creation of an "Emergency Recovery" CD (or similar) for one of the servers here. I noticed that the installation (FreeBSD 4.3) has an option which allows a configuration file to be read from an MSDOS/UFS formatted floppy disk. I've had a look around, but cannot seem to find anything on the subject of these configuration files and their syntax. Can anyone point me to some documentation that suggests methods in which this can be used? I'd love to be able to get this job finished ASAP :-) Thanks in Advance, - andrew -- void signature () { cout << "Andrew Reid -- andrew.reid@plug.cx" << endl ; cout << "Cell: +61 401 946 813" << endl; cout << "Quidquid latine dictum sit, altum viditur" << endl; } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 20:13:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from irwanhadi.dorms.usu.edu (irwanhadi.dorms.usu.edu [129.123.230.12]) by hub.freebsd.org (Postfix) with ESMTP id 73DBF37B403 for ; Thu, 5 Jul 2001 20:13:25 -0700 (PDT) (envelope-from irwanhadi@phxby.com) Received: by irwanhadi.dorms.usu.edu (Postfix, from userid 501) id DFA8BB3B15; Thu, 5 Jul 2001 21:16:51 -0600 (MDT) Date: Thu, 5 Jul 2001 21:16:51 -0600 From: Irwan Hadi To: freebsd-questions@freebsd.org Subject: Re: raid1 disk mirroring Message-ID: <20010705211651.A13252@phxby.com> Mail-Followup-To: freebsd-questions@freebsd.org References: <000701c105c2$1e837310$0101a8c0@north1i8zn1udc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000701c105c2$1e837310$0101a8c0@north1i8zn1udc>; from north1@nexicom.com on Thu, Jul 05, 2001 at 08:17:28PM -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, Jul 05, 2001 at 08:17:28PM -0600, Dave wrote: > > I have never setup ide raid1 disk mirroring. > What i would like to know, is what ide, raid1 > disk crontrollers are supported, brand name(s)? > pci controller card. Is there any documentation > or other related subjects i can find, such as what if > a master drive fails, what steps to take. > > Lots of qustions.. :) I would suggest you to use either Adaptec ATA RAID 1200 A or Adaptec ATA RAID 2400 A. They both are a real hardware RAID card, and not a "half" hardware RAID card in which "half" hardware RAID card use your CPU to calculate the XOR calculations, and this could burdened your CPU. Anyway you can look ATA RAID Cards review at http://www.anandtech.com/storage/showdoc.html?i=1491 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 20:17:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from edwin.mounet.com (edwin.mounet.com [216.145.76.8]) by hub.freebsd.org (Postfix) with SMTP id A380537B406 for ; Thu, 5 Jul 2001 20:17:28 -0700 (PDT) (envelope-from hornback@wireco.net) Received: (qmail 20020 invoked by uid 0); 6 Jul 2001 03:15:04 -0000 Received: from unknown (HELO tomcat) (216.145.86.34) by mounet.com with SMTP; 6 Jul 2001 03:15:04 -0000 From: "Andrew C. Hornback" To: "Jeff Sapp" Cc: Subject: RE: rebuilding a compaq smart array Date: Thu, 5 Jul 2001 23:15:40 -0400 Message-ID: <004601c105c9$ef9884c0$0e00000a@tomcat> 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 8.5, Build 4.71.2173.0 In-Reply-To: <20010705220110.A29418@pelennor.net> X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 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 > -----Original Message----- > From: Jeff Sapp [mailto:jasapp@pelennor.net] > Sent: Thursday, July 05, 2001 11:01 PM > To: Andrew C. Hornback > Cc: freebsd-questions@freebsd.org > Subject: Re: rebuilding a compaq smart array > > > > That should have come with your machine. If not, call your > salesperson > > and have them send you what they left out of the box (I've had > this happen > > before on machines that I've gotten from a Compaq reseller). > > Sorry for my ignorance, but what is "That"? I did recieve all the compaq > software (as far as I know anyway). And I did use the software to setup > up the two hard drives for RAID 1. My problem is the array not rebuilding > itself while I'm running FreeBSD once I plug in a new drive. I have to > use one of the compaq utitlies. Sorry about that, I was thinking faster than I was typing... hate it when that happens. There should be software that allows you to set up the array, as you've done. Check while you're in that software for settings as far as automatic rebuild. My ProLiant 1500's RAID Controller's software has this option. > One of my co-workers spent about three hours on the phone with compaq > today trying to get it worked out, but no luck. They really want me to > install Windows NT on it for some reason. From personal experience, Compaq really doesn't know what to do with anything aside from one of their OS products or a Microsoft OS. If you're serious about running FreeBSD on that box, you've come to the right place. *grins* > > Rebuilding it from FreeBSD? Not that I know of. The > controller should > > perform an automatic rebuild once a replacement drive is > inserted into the > > array. Might want to check the settings on the controller > configuration to > > see if this option has been disabled by accident. > > Does it rebuild the replacement drive while the operating system is > running? That's where I'm running into trouble. It does. I'm running a RAID 5 setup with 3 drives. Strangest thing I'd ever seen the first time I saw it... server is sitting there running, just reach in and pull out a drive and put it back in and watch it rebuild. Later on, the Consulting firm that I worked for used this machine to show clients how RAID benefits their server design. Very effective tool, too. Machine paid for itself by doing those demonstrations alone. *grins* Seems that small business owners love the idea of being able to have a drive die and still be able to get work done, as opposed to being down, waiting for a tech, then waiting for parts, etc. Less hassle to replace a dead drive than it is to have to rebuild an entire server from tape. --- Andy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 20:42:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-server2.tampabay.rr.com (smtp-server2.cfl.rr.com [65.32.2.69]) by hub.freebsd.org (Postfix) with ESMTP id 551ED37B401 for ; Thu, 5 Jul 2001 20:42:03 -0700 (PDT) (envelope-from acmyers@cfl.rr.com) Received: from heineken (hidden-user@ubr-27.205.200.unionpark.cfl.rr.com [24.27.205.200]) by smtp-server2.tampabay.rr.com (8.11.2/8.11.2) with SMTP id f663g2p24395 for ; Thu, 5 Jul 2001 23:42:02 -0400 (EDT) Message-ID: <002f01c105cd$9338c3d0$15fea8c0@acmyers.com> From: "Andy Myers" To: Subject: Problems with setting up Samba. Date: Thu, 5 Jul 2001 23:41:43 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.3018.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.3018.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 Hello all. I'm hoping someone would have some insight into my Samba problems. I cannot connect to my samba server from my win2kpro box. I cannot see it in the workgroup, but can find it if I search. When I try to connect, I am asked for username and password, but nothing will work. Do I have to specify a new u/p just for Samba? Below is my smb.conf. Any help is appreciated. Thanks much. # This is the main Samba configuration file. You should read the # smb.conf(5) manual page in order to understand the options listed # here. Samba has a huge number of configurable options (perhaps too # many!) most of which are not shown in this example # # Any line which starts with a ; (semi-colon) or a # (hash) # is a comment and is ignored. In this example we will use a # # for commentry and a ; for parts of the config file that you # may wish to enable # # NOTE: Whenever you modify this file you should run the command "testparm" # to check that you have not many any basic syntactic errors. # #======================= Global Settings ===================================== [global] # workgroup = NT-Domain-Name or Workgroup-Name, eg: REDHAT4 workgroup = WORKGROUP # server string is the equivalent of the NT Description field server string = Mackeson Samba Server # This option is important for security. It allows you to restrict # connections to machines which are on your local network. The # following example restricts access to two C class networks and # the "loopback" interface. For more examples of the syntax see # the smb.conf man page ; hosts allow = 192.168.1. 192.168.2. 127. # If you want to automatically load your printer list rather # than setting them up individually then you'll need this load printers = yes # you may wish to override the location of the printcap file ; printcap name = /etc/printcap # on SystemV system setting printcap name to lpstat should allow # you to automatically obtain a printer list from the SystemV spool # system ; printcap name = lpstat # It should not be necessary to specify the print system type unless # it is non-standard. Currently supported print systems include: # bsd, sysv, plp, lprng, aix, hpux, qnx ; printing = bsd # Uncomment this if you want a guest account, you must add this to /etc/passwd # otherwise the user "nobody" is used guest account = pcguest # this tells Samba to use a separate log file for each machine # that connects log file = /var/log/sambalog.%m # Put a capping on the size of the log files (in Kb). max log size = 50 # Security mode. Most people will want user level security. See # security_level.txt for details. security = user # Use password server option only with security = server ; password server = # You may wish to use password encryption. Please read # ENCRYPTION.txt, Win95.txt and WinNT.txt in the Samba documentation. # Do not enable this option unless you have read those documents encrypt passwords = yes # Using the following line enables you to customise your configuration # on a per machine basis. The %m gets replaced with the netbios name # of the machine that is connecting ; include = /usr/local/etc/smb.conf.%m # Most people will find that this option gives better performance. # See speed.txt and the manual pages for details socket options = TCP_NODELAY # Configure Samba to use multiple interfaces # If you have multiple network interfaces then you must list them # here. See the man page for details. ; interfaces = 192.168.12.2/24 192.168.13.2/24 # Browser Control Options: # set local master to no if you don't want Samba to become a master # browser on your network. Otherwise the normal election rules apply ; local master = no # OS Level determines the precedence of this server in master browser # elections. The default value should be reasonable ; os level = 33 # Domain Master specifies Samba to be the Domain Master Browser. This # allows Samba to collate browse lists between subnets. Don't use this # if you already have a Windows NT domain controller doing this job ; domain master = yes # Preferred Master causes Samba to force a local browser election on startup # and gives it a slightly higher chance of winning the election ; preferred master = yes # Use only if you have an NT server on your network that has been # configured at install time to be a primary domain controller. ; domain controller = # Enable this if you want Samba to be a domain logon server for # Windows95 workstations. ; domain logons = yes # if you enable domain logons then you may want a per-machine or # per user logon script # run a specific logon batch file per workstation (machine) ; logon script = %m.bat # run a specific logon batch file per username ; logon script = %U.bat # Where to store roving profiles (only for Win95 and WinNT) # %L substitutes for this servers netbios name, %U is username # You must uncomment the [Profiles] share below ; logon path = \\%L\Profiles\%U # Windows Internet Name Serving Support Section: # WINS Support - Tells the NMBD component of Samba to enable it's WINS Server ; wins support = yes # WINS Server - Tells the NMBD components of Samba to be a WINS Client # Note: Samba can be either a WINS Server, or a WINS Client, but NOT both ; wins server = w.x.y.z # WINS Proxy - Tells Samba to answer name resolution queries on # behalf of a non WINS capable client, for this to work there must be # at least one WINS Server on the network. The default is NO. ; wins proxy = yes # DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names # via DNS nslookups. The built-in default for versions 1.9.17 is yes, # this has been changed in version 1.9.18 to no. dns proxy = no # Client codepage settings # for Greek users ; client code page=737 # for European users (Latin 1) ; client code page=850 # for European users (Latin 2) ; client code page=852 # for Icelandic users ; client code page=861 # for Cyrillic users ; client code page=866 # for Japanese Users ; client code page=932 ; coding system=cap # for Simplified Chinese Users ; client code page=936 ; coding system=cap # for Korean Users ; client code page=949 ; coding system=cap # for Traditional Chinese Users ; client code page=950 ; coding system=cap #============================ Share Definitions ============================== [homes] comment = Home Directories valid users = andy browseable = yes writeable = yes # Un-comment the following and create the netlogon directory for Domain Logons ; [netlogon] ; comment = Network Logon Service ; path = /usr/local/samba/lib/netlogon ; guest ok = yes ; writeable = no ; share modes = no # Un-comment the following to provide a specific roving profile share # the default is to use the user's home directory ;[Profiles] ; path = /usr/local/samba/profiles ; browseable = no ; guest ok = yes # NOTE: If you have a BSD-style print system there is no need to # specifically define each individual printer [printers] comment = All Printers path = /var/spool/samba browseable = no # Set public = yes to allow user 'guest account' to print guest ok = no writeable = no printable = yes # This one is useful for people to share files [tmp] comment = Temporary file space path = /tmp read only = no public = yes # A publicly accessible directory, but read only, except for people in # the "staff" group ;[public] ; comment = Public Stuff ; path = /home/samba ; public = yes ; writeable = yes ; printable = no ; write list = @staff # Other examples. # # A private printer, usable only by fred. Spool data will be placed in fred's # home directory. Note that fred must have write access to the spool directory, # wherever it is. ;[fredsprn] ; comment = Fred's Printer ; valid users = fred ; path = /homes/fred ; printer = freds_printer ; public = no ; writeable = no ; printable = yes # A private directory, usable only by fred. Note that fred requires write # access to the directory. ;[fredsdir] ; comment = Fred's Service ; path = /usr/somewhere/private ; valid users = fred ; public = no ; writeable = yes ; printable = no # a service which has a different directory for each machine that connects # this allows you to tailor configurations to incoming machines. You could # also use the %U option to tailor it by user name. # The %m gets replaced with the machine name that is connecting. ;[pchome] ; comment = PC Directories ; path = /usr/pc/%m ; public = no ; writeable = yes # A publicly accessible directory, read/write to all users. Note that all files # created in the directory by users will be owned by the default user, so # any user with access can delete any other user's files. Obviously this # directory must be writeable by the default user. Another user could of course # be specified, in which case all files would be owned by that user instead. ;[public] ; path = /usr/somewhere/else/public ; public = yes ; only guest = yes ; writeable = yes ; printable = no # The following two entries demonstrate how to share a directory so that two # users can place files there that will be owned by the specific users. In this # setup, the directory should be writeable by both users and should have the # sticky bit set on it to prevent abuse. Obviously this could be extended to # as many users as required. ;[myshare] ; comment = Mary's and Fred's stuff ; path = /usr/somewhere/shared ; valid users = mary fred ; public = no ; writeable = yes ; printable = no ; create mask = 0765 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 21:27:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f212.law9.hotmail.com [64.4.9.212]) by hub.freebsd.org (Postfix) with ESMTP id E878837B401 for ; Thu, 5 Jul 2001 21:27:25 -0700 (PDT) (envelope-from thierryblack@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 5 Jul 2001 21:27:25 -0700 Received: from 207.195.92.134 by lw9fd.law9.hotmail.msn.com with HTTP; Fri, 06 Jul 2001 04:27:25 GMT X-Originating-IP: [207.195.92.134] From: "Thierry Black" To: freebsd-questions@freebsd.org Subject: printing to logs (logging to printer) Date: Thu, 05 Jul 2001 22:27:25 -0600 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 06 Jul 2001 04:27:25.0902 (UTC) FILETIME=[F58D96E0:01C105D3] Sender: owner-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 set up to send a copy of some sys logs to a printer for security and archives. Can I use tee to branch the log output to printer and file? I want the entrys to print one at a time in realtime. for that I think a dotmatrix printer is the answer, but I couldn't find any new dotmatrix printers for under $200. It doesn't have to be fast or print really sharp. i plan on printing about 2000 lines (40 pages?) per day. Any one have recommendations? thank you - thierry _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at 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 Jul 5 21:36:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id DE48237B403 for ; Thu, 5 Jul 2001 21:36:35 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f664bRk63526; Fri, 6 Jul 2001 00:37:27 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Fri, 6 Jul 2001 00:37:27 -0400 (EDT) From: Joe Clarke To: Andy Myers Cc: Subject: Re: Problems with setting up Samba. In-Reply-To: <002f01c105cd$9338c3d0$15fea8c0@acmyers.com> Message-ID: <20010706003654.S62801-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 You need to setup users and passwords using the smbpasswd command. You will first need to add the users, then give them a password. Checkout the manpage for smbpasswd. Joe Clarke On Thu, 5 Jul 2001, Andy Myers wrote: > Hello all. > > I'm hoping someone would have some insight into my Samba problems. I cannot > connect to my samba server from my win2kpro box. I cannot see it in the > workgroup, but can find it if I search. When I try to connect, I am asked > for username and password, but nothing will work. Do I have to specify a > new u/p just for Samba? > > Below is my smb.conf. Any help is appreciated. > > Thanks much. > > > > > # This is the main Samba configuration file. You should read the > # smb.conf(5) manual page in order to understand the options listed > # here. Samba has a huge number of configurable options (perhaps too > # many!) most of which are not shown in this example > # > # Any line which starts with a ; (semi-colon) or a # (hash) > # is a comment and is ignored. In this example we will use a # > # for commentry and a ; for parts of the config file that you > # may wish to enable > # > # NOTE: Whenever you modify this file you should run the command "testparm" > # to check that you have not many any basic syntactic errors. > # > #======================= Global Settings > ===================================== > [global] > > # workgroup = NT-Domain-Name or Workgroup-Name, eg: REDHAT4 > workgroup = WORKGROUP > > # server string is the equivalent of the NT Description field > server string = Mackeson Samba Server > > # This option is important for security. It allows you to restrict > # connections to machines which are on your local network. The > # following example restricts access to two C class networks and > # the "loopback" interface. For more examples of the syntax see > # the smb.conf man page > ; hosts allow = 192.168.1. 192.168.2. 127. > > # If you want to automatically load your printer list rather > # than setting them up individually then you'll need this > load printers = yes > > # you may wish to override the location of the printcap file > ; printcap name = /etc/printcap > > # on SystemV system setting printcap name to lpstat should allow > # you to automatically obtain a printer list from the SystemV spool > # system > ; printcap name = lpstat > > # It should not be necessary to specify the print system type unless > # it is non-standard. Currently supported print systems include: > # bsd, sysv, plp, lprng, aix, hpux, qnx > ; printing = bsd > > # Uncomment this if you want a guest account, you must add this to > /etc/passwd > # otherwise the user "nobody" is used > guest account = pcguest > > # this tells Samba to use a separate log file for each machine > # that connects > log file = /var/log/sambalog.%m > > # Put a capping on the size of the log files (in Kb). > max log size = 50 > > # Security mode. Most people will want user level security. See > # security_level.txt for details. > security = user > # Use password server option only with security = server > ; password server = > > # You may wish to use password encryption. Please read > # ENCRYPTION.txt, Win95.txt and WinNT.txt in the Samba documentation. > # Do not enable this option unless you have read those documents > encrypt passwords = yes > > # Using the following line enables you to customise your configuration > # on a per machine basis. The %m gets replaced with the netbios name > # of the machine that is connecting > ; include = /usr/local/etc/smb.conf.%m > > # Most people will find that this option gives better performance. > # See speed.txt and the manual pages for details > socket options = TCP_NODELAY > > # Configure Samba to use multiple interfaces > # If you have multiple network interfaces then you must list them > # here. See the man page for details. > ; interfaces = 192.168.12.2/24 192.168.13.2/24 > > # Browser Control Options: > # set local master to no if you don't want Samba to become a master > # browser on your network. Otherwise the normal election rules apply > ; local master = no > > # OS Level determines the precedence of this server in master browser > # elections. The default value should be reasonable > ; os level = 33 > > # Domain Master specifies Samba to be the Domain Master Browser. This > # allows Samba to collate browse lists between subnets. Don't use this > # if you already have a Windows NT domain controller doing this job > ; domain master = yes > > # Preferred Master causes Samba to force a local browser election on startup > # and gives it a slightly higher chance of winning the election > ; preferred master = yes > > # Use only if you have an NT server on your network that has been > # configured at install time to be a primary domain controller. > ; domain controller = > > # Enable this if you want Samba to be a domain logon server for > # Windows95 workstations. > ; domain logons = yes > > # if you enable domain logons then you may want a per-machine or > # per user logon script > # run a specific logon batch file per workstation (machine) > ; logon script = %m.bat > # run a specific logon batch file per username > ; logon script = %U.bat > > # Where to store roving profiles (only for Win95 and WinNT) > # %L substitutes for this servers netbios name, %U is username > # You must uncomment the [Profiles] share below > ; logon path = \\%L\Profiles\%U > > # Windows Internet Name Serving Support Section: > # WINS Support - Tells the NMBD component of Samba to enable it's WINS > Server > ; wins support = yes > > # WINS Server - Tells the NMBD components of Samba to be a WINS Client > # Note: Samba can be either a WINS Server, or a WINS Client, but NOT > both > ; wins server = w.x.y.z > > # WINS Proxy - Tells Samba to answer name resolution queries on > # behalf of a non WINS capable client, for this to work there must be > # at least one WINS Server on the network. The default is NO. > ; wins proxy = yes > > # DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names > # via DNS nslookups. The built-in default for versions 1.9.17 is yes, > # this has been changed in version 1.9.18 to no. > dns proxy = no > > # Client codepage settings > > # for Greek users > ; client code page=737 > > # for European users (Latin 1) > ; client code page=850 > > # for European users (Latin 2) > ; client code page=852 > > # for Icelandic users > ; client code page=861 > > # for Cyrillic users > ; client code page=866 > > # for Japanese Users > ; client code page=932 > ; coding system=cap > > # for Simplified Chinese Users > ; client code page=936 > ; coding system=cap > > # for Korean Users > ; client code page=949 > ; coding system=cap > > # for Traditional Chinese Users > ; client code page=950 > ; coding system=cap > > #============================ Share Definitions > ============================== > [homes] > comment = Home Directories > valid users = andy > browseable = yes > writeable = yes > > # Un-comment the following and create the netlogon directory for Domain > Logons > ; [netlogon] > ; comment = Network Logon Service > ; path = /usr/local/samba/lib/netlogon > ; guest ok = yes > ; writeable = no > ; share modes = no > > > # Un-comment the following to provide a specific roving profile share > # the default is to use the user's home directory > ;[Profiles] > ; path = /usr/local/samba/profiles > ; browseable = no > ; guest ok = yes > > > # NOTE: If you have a BSD-style print system there is no need to > # specifically define each individual printer > [printers] > comment = All Printers > path = /var/spool/samba > browseable = no > # Set public = yes to allow user 'guest account' to print > guest ok = no > writeable = no > printable = yes > > # This one is useful for people to share files > [tmp] > comment = Temporary file space > path = /tmp > read only = no > public = yes > > # A publicly accessible directory, but read only, except for people in > # the "staff" group > ;[public] > ; comment = Public Stuff > ; path = /home/samba > ; public = yes > ; writeable = yes > ; printable = no > ; write list = @staff > > # Other examples. > # > # A private printer, usable only by fred. Spool data will be placed in > fred's > # home directory. Note that fred must have write access to the spool > directory, > # wherever it is. > ;[fredsprn] > ; comment = Fred's Printer > ; valid users = fred > ; path = /homes/fred > ; printer = freds_printer > ; public = no > ; writeable = no > ; printable = yes > > # A private directory, usable only by fred. Note that fred requires write > # access to the directory. > ;[fredsdir] > ; comment = Fred's Service > ; path = /usr/somewhere/private > ; valid users = fred > ; public = no > ; writeable = yes > ; printable = no > > # a service which has a different directory for each machine that connects > # this allows you to tailor configurations to incoming machines. You could > # also use the %U option to tailor it by user name. > # The %m gets replaced with the machine name that is connecting. > ;[pchome] > ; comment = PC Directories > ; path = /usr/pc/%m > ; public = no > ; writeable = yes > > # A publicly accessible directory, read/write to all users. Note that all > files > # created in the directory by users will be owned by the default user, so > # any user with access can delete any other user's files. Obviously this > # directory must be writeable by the default user. Another user could of > course > # be specified, in which case all files would be owned by that user instead. > ;[public] > ; path = /usr/somewhere/else/public > ; public = yes > ; only guest = yes > ; writeable = yes > ; printable = no > > # The following two entries demonstrate how to share a directory so that two > # users can place files there that will be owned by the specific users. In > this > # setup, the directory should be writeable by both users and should have the > # sticky bit set on it to prevent abuse. Obviously this could be extended to > # as many users as required. > ;[myshare] > ; comment = Mary's and Fred's stuff > ; path = /usr/somewhere/shared > ; valid users = mary fred > ; public = no > ; writeable = yes > ; printable = no > ; create mask = 0765 > > > 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 Jul 5 21:58:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f52.law8.hotmail.com [216.33.241.52]) by hub.freebsd.org (Postfix) with ESMTP id 93BE437B403 for ; Thu, 5 Jul 2001 21:58:26 -0700 (PDT) (envelope-from yasir_faiz@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 5 Jul 2001 21:58:26 -0700 Received: from 210.56.11.78 by lw8fd.law8.hotmail.msn.com with HTTP; Fri, 06 Jul 2001 04:58:26 GMT X-Originating-IP: [210.56.11.78] From: "yasir faiz" To: freebsd-questions@FreeBSD.ORG Subject: participation in projects Date: Fri, 06 Jul 2001 04:58:26 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 06 Jul 2001 04:58:26.0396 (UTC) FILETIME=[4A7E71C0:01C105D8] Sender: owner-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 Sir, What is the way of getting formally involved in the FreeBSD development projects.I am a software Engineer and i am willing to work in a Networking or Middleware related project. I will be looking forward for your reply. yasir _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at 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 Jul 5 23:14: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.mail.pas.earthlink.net (avocet.mail.pas.earthlink.net [207.217.121.50]) by hub.freebsd.org (Postfix) with ESMTP id 1375D37B403 for ; Thu, 5 Jul 2001 23:14:07 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.130.102.Dial1.SanJose1.Level3.net [209.245.130.102]) by avocet.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id XAA21619; Thu, 5 Jul 2001 23:13:54 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f666Dp202358; Thu, 5 Jul 2001 23:13:51 -0700 (PDT) (envelope-from cjc) Date: Thu, 5 Jul 2001 23:13:51 -0700 From: "Crist J. Clark" To: "A. L. Meyers" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: console problems Message-ID: <20010705231351.D308@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20010705231601.R390-100000@consult-meyers.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010705231601.R390-100000@consult-meyers.com>; from a.l.meyers@consult-meyers.com on Thu, Jul 05, 2001 at 11:20:55PM +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 Thu, Jul 05, 2001 at 11:20:55PM +0200, A. L. Meyers wrote: > Dear FreeBSD, > > Found by trial and error following solution to the question: > > 1. How do I define 80x50 in /etc/rc.conf? > > add line > > allscreens_flags="VGA_80x50 green black" > > which also sets foreground to green and background to black. Before you start adding options to "allscreens_flags," log on to a syscons and use the vidcontrol(1) command interactively to make sure you find a combination that works first. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 5 23:22:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f261.law8.hotmail.com [216.33.240.136]) by hub.freebsd.org (Postfix) with ESMTP id 97E4737B406 for ; Thu, 5 Jul 2001 23:22:35 -0700 (PDT) (envelope-from cva70@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 5 Jul 2001 23:22:35 -0700 Received: from 203.199.225.187 by lw8fd.law8.hotmail.msn.com with HTTP; Fri, 06 Jul 2001 06:22:35 GMT X-Originating-IP: [203.199.225.187] From: "siva kumar" To: freebsd-questions@FreeBSD.ORG Subject: Doubt in installation Date: Fri, 06 Jul 2001 06:22:35 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 06 Jul 2001 06:22:35.0403 (UTC) FILETIME=[0BEFC5B0:01C105E4] Sender: owner-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 Sir/Madam, I have FreeBSD 4.2 cds(4-cd's pack). I try to install in my system(unix as OS).It shows some error. So, i need some installation doc for FreeBSD 4.2. Can u please send me the documentation for that as soon as possible? Thanks and regards, sivakumar.n _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at 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 Jul 5 23:23:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from harrier.mail.pas.earthlink.net (harrier.mail.pas.earthlink.net [207.217.121.12]) by hub.freebsd.org (Postfix) with ESMTP id 1332D37B411 for ; Thu, 5 Jul 2001 23:23:28 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.130.102.Dial1.SanJose1.Level3.net [209.245.130.102]) by harrier.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id XAA24898; Thu, 5 Jul 2001 23:23:26 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f666NLm02390; Thu, 5 Jul 2001 23:23:21 -0700 (PDT) (envelope-from cjc) Date: Thu, 5 Jul 2001 23:23:21 -0700 From: "Crist J. Clark" To: Ryan Bonner Cc: questions@FreeBSD.ORG Subject: Re: Redirecting Ports Message-ID: <20010705232321.E308@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <000701c104f0$daf47300$bb4ff818@epotlnd1.or.home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000701c104f0$daf47300$bb4ff818@epotlnd1.or.home.com>; from disoriented2bsd@home.com on Wed, Jul 04, 2001 at 06:21:45PM -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 Wed, Jul 04, 2001 at 06:21:45PM -0700, Ryan Bonner wrote: > I have a gateway machine setup crosscabled over to a windows machine they > can talk fine and using natd windows can send packets out onto the internet > but cannot recieve packets back because i'm having problems redirecting my > ports. in rc.conf I have this for my natd_flags="-redirect_port > 192.168.0.2:80 80 > with my understanding of it that should allow the windows machine to access > the internet through a browser according to the handbook and if the :80 80 > was a :6667 6667 i would be able to use the irc port i've tried both and > neither worked am I setting up the redirect command wrong that's what I feel > I am doing thanks Ryan For your NAT'ed Windows machine to communicate to the Internet, you do not need any redirect_port options for natd(8). What does your rc.conf look like and rc.firewall if you have modified it. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 0:25:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from osiris.ipform.ru (osiris.ipform.ru [212.158.165.98]) by hub.freebsd.org (Postfix) with ESMTP id DA05C37B403 for ; Fri, 6 Jul 2001 00:25:19 -0700 (PDT) (envelope-from matrix@ipform.ru) Received: from wp2 (localhost.ipform.ru [127.0.0.1]) by osiris.ipform.ru (8.11.4/8.11.4) with SMTP id f667PIv03171 for ; Fri, 6 Jul 2001 11:25:18 +0400 (MSD) (envelope-from matrix@ipform.ru) Message-ID: <004d01c105ec$cf2ae480$0c00a8c0@ipform.ru> From: "Artem Koutchine" To: Subject: UDP client behind a nat. How? Date: Fri, 6 Jul 2001 11:22:48 +0400 Organization: IP Form 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.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 don't undertstand how ICQ works behind natl? How does server send data to the client, which is behind a NAT firewall? As far as i know iCQ uses UDP and does not keep connection open, so, no soket associated with the ICQ on NAT or ICQ SERVER. ICQ client cannot be accessed directly. Then HOW does a message appear in ICQ when server gets it? I need to know it because i need to do the same thing. Thanks, Artem To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 0:53: 3 2001 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 27F8A37B403 for ; Fri, 6 Jul 2001 00:52:58 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-b102.otenet.gr [195.167.121.230]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f667qLH05332; Fri, 6 Jul 2001 10:52:27 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.3) id f667pXK08386; Fri, 6 Jul 2001 10:51:33 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Fri, 6 Jul 2001 10:51:33 +0300 From: Giorgos Keramidas To: yasir faiz Cc: freebsd-questions@FreeBSD.ORG Subject: Re: participation in projects Message-ID: <20010706105133.D6349@hades.hell.gr> 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 yasir_faiz@hotmail.com on Fri, Jul 06, 2001 at 04:58:26AM +0000 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-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: yasir faiz Subject: participation in projects Date: Fri, Jul 06, 2001 at 04:58:26AM +0000 > Dear Sir, > What is the way of getting formally involved in the FreeBSD > development projects.I am a software Engineer and i am willing to work in a > Networking or Middleware related project. This is described in the Handbook. See the URL: http://www.freebsd.org/handbook/contrib.html -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 1: 7:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kermit.netivity.nl (wc-68.r-195-85-144.essentkabel.com [195.85.144.68]) by hub.freebsd.org (Postfix) with ESMTP id B2B3337B407 for ; Fri, 6 Jul 2001 01:07:37 -0700 (PDT) (envelope-from enriko.groen@netivity.nl) Received: by KERMIT with Internet Mail Service (5.5.2650.21) id <32P3X1XK>; Fri, 6 Jul 2001 09:52:22 +0200 Message-ID: <510EAC2065C0D311929200A0247252622F7959@NETIVITY-FS> From: Enriko Groen To: 'Artem Koutchine' , questions@FreeBSD.ORG Subject: RE: UDP client behind a nat. How? Date: Fri, 6 Jul 2001 09:52:22 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="koi8-r" Sender: owner-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: Artem Koutchine [mailto:matrix@ipform.ru] > I don't undertstand how ICQ works behind > natl? How does server send data to > the client, which is behind a NAT firewall? > As far as i know iCQ uses UDP and does not > keep connection open, so, no soket associated > with the ICQ on NAT or ICQ SERVER. ICQ client > cannot be accessed directly. Then HOW does > a message appear in ICQ when server gets it? > I need to know it because i need to do the same > thing. You confuse two things: Yes, ICQ uses UDP and UDP is connectionless... however it does use a socket/port. So you'll need to open the ICQ port on your firewall. I think it is 4000, but I'm not that sure. -- Enriko Groen, Hosting manager -------------------------------------------------------- netivity bv www.netivity.nl enriko.groen@netivity.nl 038 - 850 1000 van nagellstraat 4 8011 eb zwolle -------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 1: 7:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kermit.netivity.nl (wc-68.r-195-85-144.essentkabel.com [195.85.144.68]) by hub.freebsd.org (Postfix) with ESMTP id BB3F937B403 for ; Fri, 6 Jul 2001 01:07:44 -0700 (PDT) (envelope-from enriko.groen@netivity.nl) Received: by KERMIT with Internet Mail Service (5.5.2650.21) id <32P3X126>; Thu, 5 Jul 2001 14:49:28 +0200 Message-ID: <510EAC2065C0D311929200A0247252622F794C@NETIVITY-FS> From: Enriko Groen To: "'freebsd-questions@freebsd.org'" Subject: Replacing Exchange Date: Thu, 5 Jul 2001 14:49:28 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) 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, Although I realise that this is not really a FreeBSD specific question, I think this is the best place for me to drop it. I'm just wondering if any one here has experience with replacing a Microsoft Exchange server with a FreeBSD based system. My company (at this moment about 15 people) has started off using MS products (MS Office, Exchange, IIS). I'm slowly (to my feeling) introducing FreeBSD based machines/servers. The one that bugs me most is the Outlook + Exchange duo. Outlook is a beast and possibly the worst MUA around (preaching to the converted here). However, we are quite used to some Outlook functions like calendar, contacts, public folders and hotsync'ing with Palm/Psion. I think we will stick with Windows as a desktop platform but we are willing to take a look at for instance StarOffice. Any suggestions? Links? Experiences? Anything is welcome... -- Enriko Groen, Hosting manager -------------------------------------------------------- netivity bv www.netivity.nl enriko.groen@netivity.nl 038 - 850 1000 van nagellstraat 4 8011 eb zwolle -------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 1:38:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from osiris.ipform.ru (osiris.ipform.ru [212.158.165.98]) by hub.freebsd.org (Postfix) with ESMTP id 53BB437B401 for ; Fri, 6 Jul 2001 01:38:33 -0700 (PDT) (envelope-from matrix@ipform.ru) Received: from wp2 (localhost.ipform.ru [127.0.0.1]) by osiris.ipform.ru (8.11.4/8.11.4) with SMTP id f668cDv03780; Fri, 6 Jul 2001 12:38:15 +0400 (MSD) (envelope-from matrix@ipform.ru) Message-ID: <00a201c105f7$017b3fc0$0c00a8c0@ipform.ru> From: "Artem Koutchine" To: "Enriko Groen" , References: <510EAC2065C0D311929200A0247252622F7959@NETIVITY-FS> Subject: Re: UDP client behind a nat. How? Date: Fri, 6 Jul 2001 12:32:27 +0400 Organization: IP Form 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.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 Let me clear it up. There is a client with address: 192.168.0.2 There is a gateway with nat: local interface: 192.168.0.1 internet interface: a.b.c.d ICQ SERVER: W.X.Y.Z Now, how does ICQ server send data to the icq client which is on 192.168.0.2 via NAT? ----- Original Message ----- From: "Enriko Groen" To: "'Artem Koutchine'" ; Sent: Friday, July 06, 2001 11:52 AM Subject: RE: UDP client behind a nat. How? > > -----Original Message----- > > From: Artem Koutchine [mailto:matrix@ipform.ru] > > > I don't undertstand how ICQ works behind > > natl? How does server send data to > > the client, which is behind a NAT firewall? > > As far as i know iCQ uses UDP and does not > > keep connection open, so, no soket associated > > with the ICQ on NAT or ICQ SERVER. ICQ client > > cannot be accessed directly. Then HOW does > > a message appear in ICQ when server gets it? > > I need to know it because i need to do the same > > thing. > > You confuse two things: > > Yes, ICQ uses UDP and UDP is connectionless... however it does use a > socket/port. > So you'll need to open the ICQ port on your firewall. I think it is 4000, > but I'm not that sure. > > -- > Enriko Groen, Hosting manager > -------------------------------------------------------- > netivity bv www.netivity.nl enriko.groen@netivity.nl > 038 - 850 1000 van nagellstraat 4 8011 eb zwolle > -------------------------------------------------------- > > > 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 Jul 6 1:45:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from panda.freebsdsystems.com (panda.freebsdsystems.com [216.126.95.28]) by hub.freebsd.org (Postfix) with SMTP id ADF3B37B408 for ; Fri, 6 Jul 2001 01:45:08 -0700 (PDT) (envelope-from lnb@freebsdsystems.com) Received: (qmail 40411 invoked by uid 89); 6 Jul 2001 08:45:07 -0000 Message-ID: <20010706084507.40410.qmail@panda.freebsdsystems.com> References: <002f01c105cd$9338c3d0$15fea8c0@acmyers.com> In-Reply-To: <002f01c105cd$9338c3d0$15fea8c0@acmyers.com> From: "Lanny Baron" To: "Andy Myers" Cc: freebsd-questions@freebsd.org Subject: Re: Problems with setting up Samba. Date: Fri, 06 Jul 2001 08:45:07 GMT Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Sender: lnb@freebsdsystems.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 Hello, My assumption in helping you is that you have installed Samba and that it lives in /usr/local/samba. If you have it installed elsewhere, substitute your dir's for any commands below. There is a small program called mksmbpasswd.sh you should have. I have it in /usr/local/samba/bin. The following assumes you have that program and it is in your path. Do the following as root: cat /etc/passwd | mksmbpasswd.sh > /usr/local/samba/private/smbpasswd (make sure wherever you have the dir of private, its mods are 0700 and smbpasswd is 0600) Make sure you have a pcguest in /etc/passwd (I have one in both /etc/passwd and /etc/master.passwd and when i did the adduser for pcguest, it was added as: pcguest:*:1001:1001::0:0:Samba Guest Acount:/nonexistent/pcguest:/nonexistent Let's assume your login to your Doze box is andy and your password to your FreeBSD box is gumpy. #smbpasswd -a andy (asked for passwd) gumpy (again) gumpy You have a fair amount of useful smb parameters commented out. You should read some of the documents on a mirror site. Hope that will help you out. Regards, Lanny Andy Myers writes: > Hello all. > > I'm hoping someone would have some insight into my Samba problems. I cannot > connect to my samba server from my win2kpro box. I cannot see it in the > workgroup, but can find it if I search. When I try to connect, I am asked > for username and password, but nothing will work. Do I have to specify a > new u/p just for Samba? > > Below is my smb.conf. Any help is appreciated. > > Thanks much. > > > > > # This is the main Samba configuration file. You should read the > # smb.conf(5) manual page in order to understand the options listed > # here. Samba has a huge number of configurable options (perhaps too > # many!) most of which are not shown in this example > # > # Any line which starts with a ; (semi-colon) or a # (hash) > # is a comment and is ignored. In this example we will use a # > # for commentry and a ; for parts of the config file that you > # may wish to enable > # > # NOTE: Whenever you modify this file you should run the command "testparm" > # to check that you have not many any basic syntactic errors. > # > #======================= Global Settings > ===================================== > [global] > > # workgroup = NT-Domain-Name or Workgroup-Name, eg: REDHAT4 > workgroup = WORKGROUP > > # server string is the equivalent of the NT Description field > server string = Mackeson Samba Server > > # This option is important for security. It allows you to restrict > # connections to machines which are on your local network. The > # following example restricts access to two C class networks and > # the "loopback" interface. For more examples of the syntax see > # the smb.conf man page > ; hosts allow = 192.168.1. 192.168.2. 127. > > # If you want to automatically load your printer list rather > # than setting them up individually then you'll need this > load printers = yes > > # you may wish to override the location of the printcap file > ; printcap name = /etc/printcap > > # on SystemV system setting printcap name to lpstat should allow > # you to automatically obtain a printer list from the SystemV spool > # system > ; printcap name = lpstat > > # It should not be necessary to specify the print system type unless > # it is non-standard. Currently supported print systems include: > # bsd, sysv, plp, lprng, aix, hpux, qnx > ; printing = bsd > > # Uncomment this if you want a guest account, you must add this to > /etc/passwd > # otherwise the user "nobody" is used > guest account = pcguest > > # this tells Samba to use a separate log file for each machine > # that connects > log file = /var/log/sambalog.%m > > # Put a capping on the size of the log files (in Kb). > max log size = 50 > > # Security mode. Most people will want user level security. See > # security_level.txt for details. > security = user > # Use password server option only with security = server > ; password server = > > # You may wish to use password encryption. Please read > # ENCRYPTION.txt, Win95.txt and WinNT.txt in the Samba documentation. > # Do not enable this option unless you have read those documents > encrypt passwords = yes > > # Using the following line enables you to customise your configuration > # on a per machine basis. The %m gets replaced with the netbios name > # of the machine that is connecting > ; include = /usr/local/etc/smb.conf.%m > > # Most people will find that this option gives better performance. > # See speed.txt and the manual pages for details > socket options = TCP_NODELAY > > # Configure Samba to use multiple interfaces > # If you have multiple network interfaces then you must list them > # here. See the man page for details. > ; interfaces = 192.168.12.2/24 192.168.13.2/24 > > # Browser Control Options: > # set local master to no if you don't want Samba to become a master > # browser on your network. Otherwise the normal election rules apply > ; local master = no > > # OS Level determines the precedence of this server in master browser > # elections. The default value should be reasonable > ; os level = 33 > > # Domain Master specifies Samba to be the Domain Master Browser. This > # allows Samba to collate browse lists between subnets. Don't use this > # if you already have a Windows NT domain controller doing this job > ; domain master = yes > > # Preferred Master causes Samba to force a local browser election on startup > # and gives it a slightly higher chance of winning the election > ; preferred master = yes > > # Use only if you have an NT server on your network that has been > # configured at install time to be a primary domain controller. > ; domain controller = > > # Enable this if you want Samba to be a domain logon server for > # Windows95 workstations. > ; domain logons = yes > > # if you enable domain logons then you may want a per-machine or > # per user logon script > # run a specific logon batch file per workstation (machine) > ; logon script = %m.bat > # run a specific logon batch file per username > ; logon script = %U.bat > > # Where to store roving profiles (only for Win95 and WinNT) > # %L substitutes for this servers netbios name, %U is username > # You must uncomment the [Profiles] share below > ; logon path = \\%L\Profiles\%U > > # Windows Internet Name Serving Support Section: > # WINS Support - Tells the NMBD component of Samba to enable it's WINS > Server > ; wins support = yes > > # WINS Server - Tells the NMBD components of Samba to be a WINS Client > # Note: Samba can be either a WINS Server, or a WINS Client, but NOT > both > ; wins server = w.x.y.z > > # WINS Proxy - Tells Samba to answer name resolution queries on > # behalf of a non WINS capable client, for this to work there must be > # at least one WINS Server on the network. The default is NO. > ; wins proxy = yes > > # DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names > # via DNS nslookups. The built-in default for versions 1.9.17 is yes, > # this has been changed in version 1.9.18 to no. > dns proxy = no > > # Client codepage settings > > # for Greek users > ; client code page=737 > > # for European users (Latin 1) > ; client code page=850 > > # for European users (Latin 2) > ; client code page=852 > > # for Icelandic users > ; client code page=861 > > # for Cyrillic users > ; client code page=866 > > # for Japanese Users > ; client code page=932 > ; coding system=cap > > # for Simplified Chinese Users > ; client code page=936 > ; coding system=cap > > # for Korean Users > ; client code page=949 > ; coding system=cap > > # for Traditional Chinese Users > ; client code page=950 > ; coding system=cap > > #============================ Share Definitions > ============================== > [homes] > comment = Home Directories > valid users = andy > browseable = yes > writeable = yes > > # Un-comment the following and create the netlogon directory for Domain > Logons > ; [netlogon] > ; comment = Network Logon Service > ; path = /usr/local/samba/lib/netlogon > ; guest ok = yes > ; writeable = no > ; share modes = no > > > # Un-comment the following to provide a specific roving profile share > # the default is to use the user's home directory > ;[Profiles] > ; path = /usr/local/samba/profiles > ; browseable = no > ; guest ok = yes > > > # NOTE: If you have a BSD-style print system there is no need to > # specifically define each individual printer > [printers] > comment = All Printers > path = /var/spool/samba > browseable = no > # Set public = yes to allow user 'guest account' to print > guest ok = no > writeable = no > printable = yes > > # This one is useful for people to share files > [tmp] > comment = Temporary file space > path = /tmp > read only = no > public = yes > > # A publicly accessible directory, but read only, except for people in > # the "staff" group > ;[public] > ; comment = Public Stuff > ; path = /home/samba > ; public = yes > ; writeable = yes > ; printable = no > ; write list = @staff > > # Other examples. > # > # A private printer, usable only by fred. Spool data will be placed in > fred's > # home directory. Note that fred must have write access to the spool > directory, > # wherever it is. > ;[fredsprn] > ; comment = Fred's Printer > ; valid users = fred > ; path = /homes/fred > ; printer = freds_printer > ; public = no > ; writeable = no > ; printable = yes > > # A private directory, usable only by fred. Note that fred requires write > # access to the directory. > ;[fredsdir] > ; comment = Fred's Service > ; path = /usr/somewhere/private > ; valid users = fred > ; public = no > ; writeable = yes > ; printable = no > > # a service which has a different directory for each machine that connects > # this allows you to tailor configurations to incoming machines. You could > # also use the %U option to tailor it by user name. > # The %m gets replaced with the machine name that is connecting. > ;[pchome] > ; comment = PC Directories > ; path = /usr/pc/%m > ; public = no > ; writeable = yes > > # A publicly accessible directory, read/write to all users. Note that all > files > # created in the directory by users will be owned by the default user, so > # any user with access can delete any other user's files. Obviously this > # directory must be writeable by the default user. Another user could of > course > # be specified, in which case all files would be owned by that user instead. > ;[public] > ; path = /usr/somewhere/else/public > ; public = yes > ; only guest = yes > ; writeable = yes > ; printable = no > > # The following two entries demonstrate how to share a directory so that two > # users can place files there that will be owned by the specific users. In > this > # setup, the directory should be writeable by both users and should have the > # sticky bit set on it to prevent abuse. Obviously this could be extended to > # as many users as required. > ;[myshare] > ; comment = Mary's and Fred's stuff > ; path = /usr/somewhere/shared > ; valid users = mary fred > ; public = no > ; writeable = yes > ; printable = no > ; create mask = 0765 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~= Lanny Baron And he said, Let there be light, and FreeBSD was created and he saw it was GOOD. He said, Hey Kids Rock 'N' Roll FreeBSD! servers with the power to Serve http://www.FreeBSDsystems.com 1.877.963.1900 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 1:46:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gate.ldn.swissbank.com (gate.ldn.ubswarburg.com [193.82.179.18]) by hub.freebsd.org (Postfix) with ESMTP id 46DED37B403 for ; Fri, 6 Jul 2001 01:46:18 -0700 (PDT) (envelope-from Khalil.Haddad@ubs.com) Received: (from smap@localhost) by gate.ldn.swissbank.com (8.8.8/8.8.8) id JAA20498 for ; Fri, 6 Jul 2001 09:46:11 +0100 (BST) From: Khalil.Haddad@ubs.com Received: from (twelve.ubswarburg.com [192.168.0.6]) by gate via smap (V2.0) id xma018019; Fri, 6 Jul 2001 09:45:46 +0100 Received: from ln4p1013pos.ldn.swissbank.com (virscan3 [192.168.0.6]) by virscan3.swissbank.com (8.8.8/8.8.8) with ESMTP id IAA02986 for ; Fri, 6 Jul 2001 08:45:47 GMT Received: from ln4p1528.ldn.swissbank.com (ln4p1528.ldn.swissbank.com [172.16.232.54]) by ln4p1013pos.ldn.swissbank.com (8.8.8/8.8.8) with ESMTP id JAA21676 for ; Fri, 6 Jul 2001 09:45:43 +0100 (BST) Received: from ps3p84.par.swissbank.com (ps3p84.par.swissbank.com [155.145.25.41]) by ln4p1528.ldn.swissbank.com (8.8.6 (PHNE_14041)/8.8.6/WDR gamma evision: 1.4 $) with ESMTP id JAA27082 for ; Fri, 6 Jul 2001 09:45:42 +0100 (BST) Received: from localhost (root@localhost) by ps3p84.par.swissbank.com (8.8.6 (PHNE_14041)/8.8.6/WDR gamma evision: 1.4 $) with ESMTP id KAA23876 for ; Fri, 6 Jul 2001 10:45:41 +0200 (METDST) X-OpenMail-Hops: 1 Date: Fri, 6 Jul 2001 10:45:40 +0200 Message-Id: Subject: RE: Re: UDP client behind a nat. How? MIME-Version: 1.0 To: questions@FreeBSD.ORG Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline; filename="BDY.TXT" ;Creation-Date="Fri, 6 Jul 2001 10:45:40 +0200" 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 **think** that icq when connection to the icq server establishes a connection and thus makes an entry in the NAT which can then reroute the incoming packets to the internal machines of your network. A more experienced user should confirm that. -----Original Message----- From: matrix [mailto:matrix@ipform.ru] Sent: 06 July 2001 10:32 To: enriko.groen; questions Cc: matrix Subject: Re: UDP client behind a nat. How? Let me clear it up. There is a client with address: 192.168.0.2 There is a gateway with nat: local interface: 192.168.0.1 internet interface: a.b.c.d ICQ SERVER: W.X.Y.Z Now, how does ICQ server send data to the icq client which is on 192.168.0.2 via NAT? ----- Original Message ----- From: "Enriko Groen" To: "'Artem Koutchine'" ; Sent: Friday, July 06, 2001 11:52 AM Subject: RE: UDP client behind a nat. How? > > -----Original Message----- > > From: Artem Koutchine [mailto:matrix@ipform.ru] > > > I don't undertstand how ICQ works behind > > natl? How does server send data to > > the client, which is behind a NAT firewall? > > As far as i know iCQ uses UDP and does not > > keep connection open, so, no soket associated > > with the ICQ on NAT or ICQ SERVER. ICQ client > > cannot be accessed directly. Then HOW does > > a message appear in ICQ when server gets it? > > I need to know it because i need to do the same > > thing. > > You confuse two things: > > Yes, ICQ uses UDP and UDP is connectionless... however it does use a > socket/port. > So you'll need to open the ICQ port on your firewall. I think it is 4000, > but I'm not that sure. > > -- > Enriko Groen, Hosting manager > -------------------------------------------------------- > netivity bv www.netivity.nl enriko.groen@netivity.nl > 038 - 850 1000 van nagellstraat 4 8011 eb zwolle > -------------------------------------------------------- > > > 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 Fri Jul 6 1:48:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gdmckee.local (pc-62-30-209-11-so.blueyonder.co.uk [62.30.209.11]) by hub.freebsd.org (Postfix) with ESMTP id 0738E37B403 for ; Fri, 6 Jul 2001 01:48:06 -0700 (PDT) (envelope-from freebsd@gdmckee.com) Received: from [192.168.0.10] (helo=p300) by gdmckee.local with smtp (Exim 3.31 #1) id 15IRHK-0008EH-00; Fri, 06 Jul 2001 09:47:58 +0100 Message-ID: <000901c105f8$5d0f5a00$0a00a8c0@gdmckee.local> From: "G D McKee" To: , References: Subject: Re: Re: UDP client behind a nat. How? Date: Fri, 6 Jul 2001 09:48:01 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 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 Why don't you just route ICQ through a socks5 proxy. I do this and it works fine. Gordon ----- Original Message ----- From: To: Sent: Friday, July 06, 2001 9:45 AM Subject: RE: Re: UDP client behind a nat. How? > > i **think** that icq when connection to the icq server establishes a > connection and thus makes an entry in the NAT which can then reroute > the incoming packets to the internal machines of your network. > A more experienced user should confirm that. > > > -----Original Message----- > From: matrix [mailto:matrix@ipform.ru] > Sent: 06 July 2001 10:32 > To: enriko.groen; questions > Cc: matrix > Subject: Re: UDP client behind a nat. How? > > > Let me clear it up. > > There is a client with address: 192.168.0.2 > There is a gateway with nat: local interface: 192.168.0.1 > internet interface: a.b.c.d > ICQ SERVER: W.X.Y.Z > Now, how does ICQ server send data to the icq > client which is on 192.168.0.2 via NAT? > > > ----- Original Message ----- > From: "Enriko Groen" > To: "'Artem Koutchine'" ; > Sent: Friday, July 06, 2001 11:52 AM > Subject: RE: UDP client behind a nat. How? > > > > > -----Original Message----- > > > From: Artem Koutchine [mailto:matrix@ipform.ru] > > > > > I don't undertstand how ICQ works behind > > > natl? How does server send data to > > > the client, which is behind a NAT firewall? > > > As far as i know iCQ uses UDP and does not > > > keep connection open, so, no soket associated > > > with the ICQ on NAT or ICQ SERVER. ICQ client > > > cannot be accessed directly. Then HOW does > > > a message appear in ICQ when server gets it? > > > I need to know it because i need to do the same > > > thing. > > > > You confuse two things: > > > > Yes, ICQ uses UDP and UDP is connectionless... however it does use a > > socket/port. > > So you'll need to open the ICQ port on your firewall. I think it is > 4000, > > but I'm not that sure. > > > > -- > > Enriko Groen, Hosting manager > > -------------------------------------------------------- > > netivity bv www.netivity.nl enriko.groen@netivity.nl > > 038 - 850 1000 van nagellstraat 4 8011 eb zwolle > > -------------------------------------------------------- > > > > > > 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 > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 2:20:40 2001 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 81A7837B403 for ; Fri, 6 Jul 2001 02:20:34 -0700 (PDT) (envelope-from simon@comsys.ntu-kpi.kiev.ua) 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 B77EE2EEB4; Fri, 6 Jul 2001 12:20:29 +0300 (EEST) Received: from pm5149 (pm514-9.comsys.ntu-kpi.kiev.ua [10.18.54.109]) by comsys.ntu-kpi.kiev.ua (8.11.3/8.11.3) with SMTP id f669KGc02968; Fri, 6 Jul 2001 12:20:16 +0300 (EEST) Message-ID: <016801c105f4$0fe96e40$6d36120a@comsys.ntukpi.kiev.ua> From: "Andrey Simonenko" To: "Artem Koutchine" Cc: References: <004d01c105ec$cf2ae480$0c00a8c0@ipform.ru> Subject: Re: UDP client behind a nat. How? Date: Fri, 6 Jul 2001 12:17:13 +0400 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: Artem Koutchine Newsgroups: lucky.freebsd.questions Sent: Friday, July 06, 2001 11:25 AM Subject: UDP client behind a nat. How? > Hi! > > I don't undertstand how ICQ works behind > natl? How does server send data to > the client, which is behind a NAT firewall? > As far as i know iCQ uses UDP and does not > keep connection open, so, no soket associated > with the ICQ on NAT or ICQ SERVER. ICQ client > cannot be accessed directly. Then HOW does > a message appear in ICQ when server gets it? > I need to know it because i need to do the same > thing. > Run natd in foreground regime, run tcpdump and check if ICQ works as you described. Also ipfw log can help to understand it. Also netstat command run on client machine tells you if there are any TCP connections with ICQ server. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 2:24:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web11001.mail.yahoo.com (web11001.mail.yahoo.com [216.136.131.51]) by hub.freebsd.org (Postfix) with SMTP id 63DCB37B401 for ; Fri, 6 Jul 2001 02:24:55 -0700 (PDT) (envelope-from fasi_74@yahoo.com) Message-ID: <20010706092455.89995.qmail@web11001.mail.yahoo.com> Received: from [203.135.48.14] by web11001.mail.yahoo.com via HTTP; Fri, 06 Jul 2001 02:24:55 PDT Date: Fri, 6 Jul 2001 02:24:55 -0700 (PDT) From: faisal gillani Subject: script help thanks !!! To: questions@FreeBSD.ORG Cc: mwm@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 well friend i am a newbie .. i wanted a script that runs in a non busy hour on my server & automatically runs fsck on my files systems .. before that turn itself into single user mode thanks for the answers everyone Faisal ----- Original Message ----- From: "Mike Meyer" To: "faisal gillani" Cc: Sent: Thursday, July 05, 2001 1:47 PM Subject: Re: script help ... > faisal gillani types: > > hello there > > > > can any one help me in making a small script all i > > want is that my system > > runs itself in single user mode , then run fsck on / , > > then return to normal > > mode... > > > > i know the commands > > > > 1, init 1 > > 2, fsck / > > 3, init 6 > > > > i am stuck in how can i give the answers to the > > command automatically ... is > > it possible ? > > Not in a single script. Shutting down to single user mode requires > killing the script, so you have to stop. > > If you could tell us what you're trying to accomplish, we might be > able to help with that. > > -- > Mike Meyer http://www.mired.org/home/mwm/ > Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Fri Jul 6 2:25:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from seed.pacific.net.sg (seed.pacific.net.sg [203.120.90.77]) by hub.freebsd.org (Postfix) with ESMTP id B73E037B407 for ; Fri, 6 Jul 2001 02:25:07 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop2.pacific.net.sg (pop2.pacific.net.sg [203.120.90.86]) by seed.pacific.net.sg with ESMTP id f669P1Y02043 for ; Fri, 6 Jul 2001 17:25:06 +0800 (SGT) Received: from sam ([203.208.143.54]) by pop2.pacific.net.sg with SMTP id RAA01703 for ; Fri, 6 Jul 2001 17:25:01 +0800 (SGT) Message-ID: <001101c105fe$918180a0$368fd0cb@pinnz.com> From: "Kelvin Ng Chee Hoong" To: Subject: Unable to kern.flp from floppy Date: Fri, 6 Jul 2001 17:32:25 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000E_01C10641.9F400B60" 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_000E_01C10641.9F400B60 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi ; I am installing freebsd-4.3 to industrial PC but not successful . = Therefore , I need some advise from your . When I inserted floppy disk = which contains "kern.flp" to floppy drive and reboot , the system seems = does not able to read "kern.flp" . It always prompt me this error = messages ..... elf_loadexec : archsw.readin.failed=20 can't load module '/kernel' : input/output error=20 What goes wrong ? What does it mean ?=20 When I insert the same floppy disk to another machine and reboot , = it never prompt me this error messages . So , I'm very sure that my = floppy disk is fine .=20 Can somebody tell me how to resolv this problem ? ------=_NextPart_000_000E_01C10641.9F400B60 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi ;
    I am installing = freebsd-4.3 to=20 industrial PC but not successful . Therefore , I need some advise from = your .=20 When I inserted floppy disk which contains "kern.flp" to = floppy drive and=20 reboot , the system seems does not able to read "kern.flp" . It always = prompt me=20 this error messages .....
   elf_loadexec : = archsw.readin.failed=20
   can't load module = '/kernel'=20 :
   input/output error =
 
What goes wrong ? What does it mean ? =
    When I insert the = same floppy=20 disk to another machine and reboot , it never prompt me this error = messages . So=20 , I'm very sure that my floppy disk is fine .
   Can somebody tell me how = to resolv=20 this problem ?
 
 
 
------=_NextPart_000_000E_01C10641.9F400B60-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 2:27:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from xstream.dk (www2.xstream.dk [195.184.98.105]) by hub.freebsd.org (Postfix) with ESMTP id B337A37B408 for ; Fri, 6 Jul 2001 02:27:22 -0700 (PDT) (envelope-from jonas@xstream.dk) Received: from snabel (unknown [195.184.103.41]) by xstream.dk (Postfix) with SMTP id A76A616820 for ; Fri, 6 Jul 2001 11:27:17 +0200 (CEST) From: "Jonas Dabelsteen" To: Subject: G4 Date: Fri, 6 Jul 2001 11:26:52 +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.2910.0) Importance: Normal 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 Hello Just wondering if FreeBSD will run on a G4 ? Venlig hilsen / Best Regards Jonas Dabelsteen Tech. Xstream Aarhusgade 88, 4 2100 Copenhagen Denmark Phone : +45 35 55 65 65 Fax : +45 35 55 65 37 Danish Version - http://www.xstream.dk English Version - http://www2.xstream.dk One Unix to rule them all, One Resolver to find them, One IP to bring them all and in the zone to bind them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 2:32:27 2001 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 699A337B401 for ; Fri, 6 Jul 2001 02:32:21 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-b081.otenet.gr [195.167.121.209]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f669WEH08922; Fri, 6 Jul 2001 12:32:15 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.3) id f669QUp26318; Fri, 6 Jul 2001 12:26:31 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Fri, 6 Jul 2001 12:26:29 +0300 From: Giorgos Keramidas To: Enriko Groen Cc: questions@freebsd.org Subject: Re: Replacing Exchange Message-ID: <20010706122628.A8858@hades.hell.gr> References: <510EAC2065C0D311929200A0247252622F794C@NETIVITY-FS> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <510EAC2065C0D311929200A0247252622F794C@NETIVITY-FS>; from enriko.groen@netivity.nl on Thu, Jul 05, 2001 at 02:49:28PM +0200 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-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: Enriko Groen Subject: Replacing Exchange Date: Thu, Jul 05, 2001 at 02:49:28PM +0200 > Hi, > > Although I realise that this is not really a FreeBSD specific > question, I think this is the best place for me to drop it. > > I'm just wondering if any one here has experience with replacing a > Microsoft Exchange server with a FreeBSD based system. No, this is the right place to ask questions like this. You are thinking of using a FreeBSD system to replace Exchange. Therefore, you rang the correct door bell :) > The one that bugs me most is the Outlook + Exchange duo. Outlook is > a beast and possibly the worst MUA around (preaching to the > converted here). Well, these two (Exchange and Outlook) interoperate nicely. At least, they're supposed to; when bugs dont stop them from doing so. I don't know about the 'worst' MUA, but Outlook (Express or not) is terrible in some of it's limitations. Still, for a lot of people it is all they need, or at least that's what they believe. > However, we are quite used to some Outlook functions like calendar, > contacts, public folders and hotsync'ing with Palm/Psion. The shared calendar, contacts, and folders of Outlook are implemented on the client-side. What I mean by this is that, as long as you still use Outlook as your MUA, it makes absolutely no difference which MTA software you use. In a company I was working until February 2001, the main SMTP server was a Solaris box running Qmail. When two users, say A and B, wanted to share their calendars, they would use the normal 'Share calendar' menus of their Outlook clients. When A wants to share his calendar (or a folder, or her contacts) with B, then A selects 'share' and a MIME-encoded message is automatically composed from A's Outlook. When B's Outlook receives this special message, it opens it, and asks user B if he accepts the sharing thing. If B accepts, another message is composed from B's Outlook this time that is sent back to A, informing him that the sharing has successfully finished. From that moment, all updates that are made to the shared entity by any user that has write-access, is delivered to the owner of the entity (in this case A) by sending special MIME-encoded messages and letting user A (the owner) relay the messages that will update the shared instances of that entity to all the interested users. > Any suggestions? Links? Experiences? Anything is welcome... I am writing all this, in case you want to show it to management people, asking if this is going to work. The answer is 'yes, it does work'. The only features of Exchange/Outlook combination that do not seem to work properly with other SMTP servers (hell, Exchange in it's default installation doesn't even use SMTP to communicate with Outlook) are those that involve persistent objects that are stored in the Exchange server. For most of them I could find no good use, or they were not used anyway, for various reasons. For instance, you cannot save your Outlook password to the Qmail server, as many users tend to do in their Outlook clients. From a convenience point of view, this is a feature that was lost. From a security standpoint, storing passwords in one place is good (since they are not stored in the client machine, when the user selects 'Remember password' in their Outlook). However it is also stupid to store the password in the server and have Outlook automatically authenticate itself, when it fires up. Then anyone with access to the workstation can open Outlook, and read the mail of that user without being asked for a password. Another feature that does not work with some MTA other than Exchange is the shared `group folders' that Outlook can read from an Exchange server. This is very similar to USENET newsgroups in functionality, and I usually prefer to install a local News server instead of depending on Exchange to do that work for me. Anyway, this is getting too long a message. I hope it does help a bit. Don't worry. Outlook works fine with any MTA you want to use. Plus, a properly configured FreeBSD mail server will be more stable than any Exchange 5, Exchange 2000, or Exchange-anything server you install. Ciao, -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 2:35:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from exchange.twowaytv.co.uk (exchange.twowaytv.co.uk [194.6.2.173]) by hub.freebsd.org (Postfix) with ESMTP id 41E5B37B403 for ; Fri, 6 Jul 2001 02:35:11 -0700 (PDT) (envelope-from ADyas@twowaytv.com) Received: by exchange.twowaytv.co.uk with Internet Mail Service (5.5.2653.19) id ; Fri, 6 Jul 2001 10:31:42 +0100 Message-ID: <911D8F660DF6D411B61F00500462BA01BE4EAE@exchange.twowaytv.co.uk> From: Alex Dyas To: Jonas Dabelsteen , freebsd-questions@FreeBSD.ORG Subject: RE: G4 Date: Fri, 6 Jul 2001 10:31:40 +0100 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 Probably not, but I'm sure there is a port of NetBSD that does : http://www.netbsd.org/ alex.. > -----Original Message----- > From: Jonas Dabelsteen [mailto:jonas@xstream.dk] > Sent: 06 July 2001 10:27 > To: freebsd-questions@FreeBSD.ORG > Subject: G4 > > > Hello > > Just wondering if FreeBSD will run on a G4 ? > > > Venlig hilsen / Best Regards > > Jonas Dabelsteen > Tech. > Xstream > Aarhusgade 88, 4 > 2100 Copenhagen > Denmark > Phone : +45 35 55 65 65 > Fax : +45 35 55 65 37 > Danish Version - http://www.xstream.dk > English Version - http://www2.xstream.dk > > One Unix to rule them all, One Resolver to find them, > One IP to bring them all and in the zone to bind them. > > > 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 Jul 6 2:35:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from new-smtp2.ihug.com.au (new-smtp2.ihug.com.au [203.109.250.28]) by hub.freebsd.org (Postfix) with ESMTP id 3F54437B405 for ; Fri, 6 Jul 2001 02:35:10 -0700 (PDT) (envelope-from john@jmv.com.au) Received: from [203.173.153.246] (p54-max21.syd.ihug.com.au [203.173.153.246]) by new-smtp2.ihug.com.au (8.9.3/8.9.3) with ESMTP id TAA05160 for ; Fri, 6 Jul 2001 19:35:05 +1000 X-Authentication-Warning: new-smtp2.ihug.com.au: Host p54-max21.syd.ihug.com.au [203.173.153.246] claimed to be [203.173.153.246] X-Sender: john/jmv@mail.webtapestry.net Message-Id: In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Fri, 6 Jul 2001 19:39:59 +1000 To: freebsd-questions@FreeBSD.ORG From: John Vender Subject: Re: G4 Sender: owner-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 have VPC to emulate x86, it will, a friend has it running on his TiBook :) Cheers...John >Hello > >Just wondering if FreeBSD will run on a G4 ? > > >Venlig hilsen / Best Regards > >Jonas Dabelsteen >Tech. >Xstream >Aarhusgade 88, 4 >2100 Copenhagen >Denmark >Phone : +45 35 55 65 65 >Fax : +45 35 55 65 37 >Danish Version - http://www.xstream.dk >English Version - http://www2.xstream.dk > >One Unix to rule them all, One Resolver to find them, >One IP to bring them all and in the zone to bind them. > > >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 Jul 6 2:54:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kermit.netivity.nl (wc-68.r-195-85-144.essentkabel.com [195.85.144.68]) by hub.freebsd.org (Postfix) with ESMTP id C7E5C37B401 for ; Fri, 6 Jul 2001 02:54:49 -0700 (PDT) (envelope-from enriko.groen@netivity.nl) Received: by KERMIT with Internet Mail Service (5.5.2650.21) id <32P3X15B>; Fri, 6 Jul 2001 11:39:21 +0200 Message-ID: <510EAC2065C0D311929200A0247252622F7968@NETIVITY-FS> From: Enriko Groen To: 'Jonas Dabelsteen' , freebsd-questions@FreeBSD.ORG Subject: RE: G4 Date: Fri, 6 Jul 2001 11:39:20 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) 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 > -----Original Message----- > From: Jonas Dabelsteen [mailto:jonas@xstream.dk] > Sent: Friday, July 06, 2001 11:27 > To: freebsd-questions@FreeBSD.ORG > Subject: G4 > > Just wondering if FreeBSD will run on a G4 ? Well, Mac OS X has BSD as it's base... It's still there for you to operate although it's a bit hidden (not to scare off the original Mac users to much). You could also go for NetBSD or emulation as suggested... -- Enriko Groen, Hosting manager -------------------------------------------------------- netivity bv www.netivity.nl enriko.groen@netivity.nl 038 - 850 1000 van nagellstraat 4 8011 eb zwolle -------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 2:59:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from seed.pacific.net.sg (seed.pacific.net.sg [203.120.90.77]) by hub.freebsd.org (Postfix) with ESMTP id F1A6837B401 for ; Fri, 6 Jul 2001 02:59:08 -0700 (PDT) (envelope-from nchee_hoong@pacific.net.sg) Received: from pop1.pacific.net.sg (pop1.pacific.net.sg [203.120.90.85]) by seed.pacific.net.sg with ESMTP id f669x7Y24471 for ; Fri, 6 Jul 2001 17:59:07 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop1.pacific.net.sg with ESMTP id RAA10648 for ; Fri, 6 Jul 2001 17:59:06 +0800 (SGT) Message-ID: <3B458D3A.9D847566@pacific.net.sg> Date: Fri, 06 Jul 2001 18:04:42 +0800 From: Kelvin Ng Chee Hoong X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: zh-TW,en MIME-Version: 1.0 To: "freebsd-questions@FreeBSD.ORG" Subject: FreeBSD , OpenBSD and NetBSD 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 confusing for the above-mentioned different versions of UNIX . Among of them ,which one is the most stable and reliable ? I'm currently do a research to find out what type of UNIX which offer tightly in security . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 3: 2:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from rose.man.poznan.pl (rose.man.poznan.pl [150.254.173.3]) by hub.freebsd.org (Postfix) with ESMTP id 8407837B403 for ; Fri, 6 Jul 2001 03:02:29 -0700 (PDT) (envelope-from wiku@man.poznan.pl) Received: from rose (rose [150.254.173.3]) by rose.man.poznan.pl (8.11.0/8.11.0) with ESMTP id f66A2Rm29045 for ; Fri, 6 Jul 2001 12:02:27 +0200 (MET DST) Date: Fri, 6 Jul 2001 12:02:27 +0200 (MET DST) From: Wiktor Procyk To: freebsd-questions@FreeBSD.ORG Subject: FORE PCA200E + IPv6 PVC 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 Dear Sirs, how to create PVC for native IPv6 traffic? I use FreeBSD 4.3 and Fore PCA200E ATM NIC. I have no problem if I create PVC for IPv4 traffic (using atm command). Best regards, Wiktor Procyk --------------------------------------------------------- Wiktor Procyk - Management Systems Administrator Poznan Supercomputing and Networking Center phone: +48 61 8582015 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 3:14:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from rannoch.demon.co.uk (rannoch.demon.co.uk [158.152.110.117]) by hub.freebsd.org (Postfix) with ESMTP id BEAAB37B406 for ; Fri, 6 Jul 2001 03:14:23 -0700 (PDT) (envelope-from apbran@rannoch.demon.co.uk) Received: (from apb@localhost) by rannoch.demon.co.uk (8.11.4/8.10.1) id f66AE3j16279; Fri, 6 Jul 2001 11:14:03 +0100 (BST) Date: Fri, 6 Jul 2001 11:14:03 +0100 From: Paul Branston To: Kelvin Ng Chee Hoong Cc: "freebsd-questions@FreeBSD.ORG" Subject: Re: FreeBSD , OpenBSD and NetBSD Message-ID: <20010706111403.C21224@rannoch.demon.co.uk> References: <3B458D3A.9D847566@pacific.net.sg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B458D3A.9D847566@pacific.net.sg>; from nchee_hoong@pacific.net.sg on Fri, Jul 06, 2001 at 06:04:42PM +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, Jul 06, 2001 at 06:04:42PM +0800, Kelvin Ng Chee Hoong wrote: > Hi ; > I'm confusing for the above-mentioned different versions of UNIX . > Among of them ,which one is the most stable and reliable ? I'm currently > do a research to find out what type of UNIX which offer tightly in > security . > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message take a look at the web sites. http://www.netbsd.org/ Aims to run on more hardware. http://www.FreeBSD.org/ Aims for performance and stability. http://www.openbsd.com/ Aims for security. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 3:22:32 2001 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 797CB37B401 for ; Fri, 6 Jul 2001 03:22:30 -0700 (PDT) (envelope-from john.toon@btinternet.com) Received: from [213.122.71.35] (helo=Dionysus) by carbon.btinternet.com with smtp (Exim 3.22 #9) id 15ISkl-00026i-00 for freebsd-questions@freebsd.org; Fri, 06 Jul 2001 11:22:28 +0100 Content-Type: text/plain; charset="us-ascii" From: John Toon To: freebsd-questions@freebsd.org Subject: Make World Problem -- missing rpcgen? Date: Fri, 6 Jul 2001 11:22:35 +0000 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <01070611123205.40767@Dionysus> 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 seem to be missing a program called "rpcgen" and it is causing my build of make world to bail out. I couldn't find rpcgen in the ports collection - which port do I need to install to get it? Thanks, John. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 3:25:12 2001 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 ED76337B631 for ; Fri, 6 Jul 2001 03:25:02 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-b119.otenet.gr [195.167.121.247]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f66AOWh23319; Fri, 6 Jul 2001 13:24:33 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.3) id f669fx627970; Fri, 6 Jul 2001 12:41:59 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Fri, 6 Jul 2001 12:41:58 +0300 From: Giorgos Keramidas To: faisal gillani Cc: questions@FreeBSD.ORG, mwm@mired.org Subject: Re: script help thanks !!! Message-ID: <20010706124158.A27819@hades.hell.gr> References: <20010706092455.89995.qmail@web11001.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: <20010706092455.89995.qmail@web11001.mail.yahoo.com>; from fasi_74@yahoo.com on Fri, Jul 06, 2001 at 02:24:55AM -0700 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-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: faisal gillani Subject: script help thanks !!! Date: Fri, Jul 06, 2001 at 02:24:55AM -0700 > well friend > > i am a newbie .. i wanted a script that runs in a non > busy hour on my server > & automatically runs fsck on my files systems .. > before that turn itself > into single user mode What is the point of fsck'ing regularly a filesystem that is working fine until that moment? More importantly, why bring a working server to single user mode on a regular basis, possibly interrupting some work it's doing? How are you going to find out *when* the right time will be, to shut down everything? No, what you are asking can't be done in a single script; and I don't see a reason why one would like to do it. -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 3:30:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from 0z0ne.com (www.0z0ne.com [194.143.192.23]) by hub.freebsd.org (Postfix) with SMTP id B698E37B403 for ; Fri, 6 Jul 2001 03:30:52 -0700 (PDT) (envelope-from admin@pasapues.com) Received: (qmail 86303 invoked by uid 1005); 6 Jul 2001 11:14:32 -0000 Received: from 96.41.terra.es (HELO correo6) (195.235.96.41) by www.0z0ne.com with SMTP; 6 Jul 2001 11:14:32 -0000 From: =?iso-8859-1?Q?Jes=FAs_Arn=E1iz?= To: "FreeBSD Questions" Subject: Ports Date: Fri, 6 Jul 2001 12:31:26 +0200 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.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 Hi! I want to install a new version of BIND DNS server. I use FreeBSD 4.2, but I want bind9 or a newer version that appear in my ports collection, is there any way to install a new directory of ports, or something in order to reach this. (I know i can download source code, but I prefer ports if it is possible). Thanks in advance. -- Jesús Arnáiz 0z0ne Inc I+D/IT Manager http://www.0z0ne.com mailto:jesus@0z0ne.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 3:35:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from internethelp.ru (wh.internethelp.ru [212.113.112.145]) by hub.freebsd.org (Postfix) with ESMTP id 6ECA937B429 for ; Fri, 6 Jul 2001 03:35:24 -0700 (PDT) (envelope-from nkritsky@internethelp.ru) Received: from ibmka (ibmka.internethelp.ru. [192.168.0.6]) by internethelp.ru (8.9.3/8.9.3) with SMTP id OAA73844 for ; Fri, 6 Jul 2001 14:35:23 +0400 (MSD) Message-ID: <01aa01c10607$5c4f8ea0$0600a8c0@ibmka.internethelp.ru> From: "Nickolay A. Kritsky" To: Subject: tftpd does not start :( Date: Fri, 6 Jul 2001 14:35:22 +0400 MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" 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 Hi, all! Subject. When starting, it says nothing, but in /var/log/messages I see following record: tftpd[73667]: recvfrom: Socket operation on non-socket What could be the reason for such behaviour? Thank you for any help. NKritsky PS: please cc: me your reply, because i am not subscribed to the list. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 3:37:44 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns.bilch.com (ns.bilch.com [62.145.29.125]) by hub.freebsd.org (Postfix) with ESMTP id 2787837B401 for ; Fri, 6 Jul 2001 03:37:38 -0700 (PDT) (envelope-from heiner@bilch.com) Received: from hasel.schlaf.Bilch.COM (hasel.schlaf.bilch.com [10.0.0.3]) by ns.bilch.com (8.9.3/8.9.3) with ESMTP id MAA34877 for ; Fri, 6 Jul 2001 12:37:37 +0200 (CEST) (envelope-from heiner@bilch.com) Received: from bilch.com (localhost.schlaf.bilch.com [127.0.0.1]) by hasel.schlaf.Bilch.COM (8.11.1/8.11.0) with ESMTP id f66AbVI33055 for ; Fri, 6 Jul 2001 12:37:32 +0200 (CEST) (envelope-from heiner@bilch.com) Message-ID: <3B4594EA.9C19EC8A@bilch.com> Date: Fri, 06 Jul 2001 12:37:31 +0200 From: Heiner Strauss X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-RELEASE i386) X-Accept-Language: de-DE, en MIME-Version: 1.0 To: "freebsd-questions@FreeBSD.ORG" Subject: Zope and module new problem (Zope doesn't start) 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 Problem with Zope. The makefile is: # New ports collection makefile for: Zope # Date created: Sat 21 Aug 1999 # Whom: Peter Cornelius # # $FreeBSD: ports/www/zope/Makefile,v 1.28 2001/07/04 20:52:41 olgeni Exp $ # PORTNAME= zope PORTVERSION= 2.3.3 ... When I want to start I get this: ns $ ./start -w 9080 -f 9021 ------ 2001-07-06T10:25:54 PANIC(300) z2 Startup exception Traceback (innermost last): File /usr/local/www-test/Zope/z2.py, line 566, in ? File , line 1, in ? File /usr/local/www-test/Zope/lib/python/Zope/__init__.py, line 95, in ? File /usr/local/www-test/Zope/lib/python/OFS/Application.py, line 91, in ? File /usr/local/www-test/Zope/lib/python/App/Product.py, line 111, in ? File /usr/local/www-test/Zope/lib/python/ZClasses/__init__.py, line 20, in ? File /usr/local/www-test/Zope/lib/python/ZClasses/ZClass.py, line 88, in ? File /usr/local/www-test/Zope/lib/python/ZClasses/Method.py, line 97, in ? File /usr/local/www-test/Zope/lib/python/Products/PythonScripts/__init__.py, line 89, in ? File /usr/local/www-test/Zope/lib/python/Products/PythonScripts/PythonScript.py, line 96, in ? File /usr/local/www-test/Zope/lib/python/Products/PythonScripts/Guarded.py, line 88, in ? File /usr/local/www-test/Zope/lib/python/Products/PythonScripts/zbytecodehacks/VSExec.py, line 42, in ? File /usr/local/www-test/Zope/lib/python/Products/PythonScripts/zbytecodehacks/ops.py, line 5, in ? File /usr/local/www-test/Zope/lib/python/Products/PythonScripts/zbytecodehacks/opbases.py, line 1, in ? ImportError: No module named new Where can I find the module new ? Greetings Heiner -- Heiner Strauss heiner@bilch.com Bilch International Consulting www.bilch.com (under construction) Hamburg Markusstrasse 4 20355 Hamburg Tel:. 49 40 3480667 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 3:45: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from itworks.com.au (CPE-61-9-137-174.vic.bigpond.net.au [61.9.137.174]) by hub.freebsd.org (Postfix) with SMTP id 6520337B40A for ; Fri, 6 Jul 2001 03:44:58 -0700 (PDT) (envelope-from gavin@itworks.com.au) Received: (qmail 64554 invoked from network); 5 Jul 2001 09:44:54 -0000 Received: from unknown (HELO gavin) (192.168.1.100) by chip.gav.itworks.com.au with SMTP; 5 Jul 2001 09:44:54 -0000 Message-ID: <019501c10537$68ac3160$6401a8c0@itworks.com.au> From: "Gavin Cameron" To: "Kelvin Ng Chee Hoong" , References: <3B443503.8D21D3D8@pacific.net.sg> Subject: Re: Webadmin Date: Thu, 5 Jul 2001 19:46:47 +1000 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.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 Are you talking about webmin? If yes, it's in the ports collection (in /usr/ports/sysutils/webmin) Cheers Gavin ----- Original Message ----- From: "Kelvin Ng Chee Hoong" To: Sent: Thursday, 5 July 2001 19:36 Subject: Webadmin > Hi ; > I would to use web interface to adminstrate and do house keeping of > my FBSD . Does FBSD has feature of webadmin ? > > > 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 Jul 6 4: 2:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (dav35.law15.hotmail.com [64.4.22.92]) by hub.freebsd.org (Postfix) with ESMTP id 3F0BD37B406 for ; Fri, 6 Jul 2001 04:02:31 -0700 (PDT) (envelope-from want_2_learn_freebsd@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 6 Jul 2001 04:02:31 -0700 X-Originating-IP: [24.50.66.73] From: To: "FreeBSD Questions" References: Subject: Re: Ports Date: Fri, 6 Jul 2001 04:02:43 -0700 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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Message-ID: X-OriginalArrivalTime: 06 Jul 2001 11:02:31.0119 (UTC) FILETIME=[26F6A5F0:01C1060B] Sender: owner-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 simply installed the package on top of bind8 in 4.2 release - no problems: ftp://ftp5.freebsd.org/pub/FreeBSD/ports/i386/packages-4.3-stable/All/bind-9 .1.3rc1.tgz Just do a pkg_add, or my preferred way though webmin | software packages. ----- Original Message ----- From: "Jesús Arnáiz" To: "FreeBSD Questions" Sent: Friday, July 06, 2001 3:31 AM Subject: Ports > Hi! > > I want to install a new version of BIND DNS server. I use FreeBSD 4.2, but I > want bind9 or a newer version that appear in my ports collection, is there any > way to install a new directory of ports, or something in order to reach this. (I > know i can download source code, but I prefer ports if it is possible). > > Thanks in advance. > > > -- > Jesús Arnáiz > 0z0ne Inc I+D/IT Manager > http://www.0z0ne.com > mailto:jesus@0z0ne.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 Fri Jul 6 4:22: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.azerin.com (mail01.azerin.com [212.47.128.22]) by hub.freebsd.org (Postfix) with SMTP id 2099F37B406 for ; Fri, 6 Jul 2001 04:21:59 -0700 (PDT) (envelope-from azeru@mailru.com) Received: (qmail 56578 invoked from network); 5 Jul 2001 13:35:30 -0000 Received: from unknown (HELO training) (212.47.129.73) by mail.azerin.com with SMTP; 5 Jul 2001 13:35:30 -0000 Message-ID: <001b01c1055f$a24afd20$ea00a8c0@training> From: "Azer Yusifov" To: Subject: Date: Thu, 5 Jul 2001 18:34:36 +0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0018_01C10581.24793D90" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Disposition-Notification-To: "Azer Yusifov" 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_0018_01C10581.24793D90 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable help ------=_NextPart_000_0018_01C10581.24793D90 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable
help
------=_NextPart_000_0018_01C10581.24793D90-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 4:38: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tethys.valhalla.net (tethys.valhalla.net [195.26.32.112]) by hub.freebsd.org (Postfix) with ESMTP id 6075A37B401 for ; Fri, 6 Jul 2001 04:37:58 -0700 (PDT) (envelope-from mark@tethys.valhalla.net) Received: by tethys.valhalla.net (Postfix, from userid 1001) id C65EC3379E; Fri, 6 Jul 2001 12:37:56 +0100 (BST) Date: Fri, 6 Jul 2001 12:37:56 +0100 From: Mark Drayton To: freebsd-questions@freebsd.org Subject: Re: Replacing Exchange Message-ID: <20010706123756.A35166@tethys.valhalla.net> Mail-Followup-To: freebsd-questions@freebsd.org References: <510EAC2065C0D311929200A0247252622F794C@NETIVITY-FS> <20010706122628.A8858@hades.hell.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010706122628.A8858@hades.hell.gr>; from keramida@ceid.upatras.gr on Fri, Jul 06, 2001 at 12:26:29PM +0300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Giorgos Keramidas (keramida@ceid.upatras.gr) wrote: > Another feature that does not work with some MTA other than Exchange > is the shared `group folders' that Outlook can read from an Exchange > server. This is very similar to USENET newsgroups in functionality, > and I usually prefer to install a local News server instead of > depending on Exchange to do that work for me. You can implement shared folder/bulletin boards/whatever you call them with the cyrus imapd (ports/mail/cyrus-imapd). These folders have to be setup by the administrator (unless the users want to get personal with 'man cryadm') although it would be quite trivial to make a web based configuration utility for the users to do it themselves. The access control is very granular -- you could allow users B and C to read one of user A's mailboxes but only B to post to that box. Cyrus has a fairly steep learning curve (I'm learning now) but all reports say it's worth the initial headache. It's very scalable and flexible enough for almost every situation. Hope this helps, -- 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 Jul 6 4:38:44 2001 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 C322437B401 for ; Fri, 6 Jul 2001 04:38:39 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-a165.otenet.gr [212.205.215.165]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f66BcYh25418; Fri, 6 Jul 2001 14:38:35 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.3) id f66Auxl34968; Fri, 6 Jul 2001 13:56:59 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Fri, 6 Jul 2001 13:56:58 +0300 From: Giorgos Keramidas To: Jesus Arnaiz Cc: FreeBSD Questions Subject: Re: Ports Message-ID: <20010706135658.A33959@hades.hell.gr> 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 admin@pasapues.com on Fri, Jul 06, 2001 at 12:31:26PM +0200 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-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 Jesus, -----Original Message----- From: Jesus Arnaiz Subject: Ports Date: Fri, Jul 06, 2001 at 12:31:26PM +0200 > I want to install a new version of BIND DNS server. I use FreeBSD 4.2, but I > want bind9 or a newer version that appear in my ports collection, is there any > way to install a new directory of ports, or something in order to reach this. (I > know i can download source code, but I prefer ports if it is possible). Yes, one option is to download the source and build it yourself. But it is a lot better if you update your ports collection with CVSup and then install bind9 from the ports. For instructions on how to update the ports (and your source tree) with CVSup, consult the relevant handbook section at: http://www.freebsd.org/handbook/cvsup.html When you update your /usr/ports tree, installing bind9 should be as easy as running: # cd /usr/ports/net/bind9 # make install Then you will need to do some changes to your `/etc/rc.conf' to make sure than the boot scripts don't start bind8 that is installed in your 4.2 FreeBSD system. The variables that you might be interested in changing are: % grep named_ /etc/defaults/rc.conf named_enable="NO" # Run named, the DNS server (or NO). named_program="named" # path to named, if you want a different one. named_flags="" # Flags for named #named_flags="-u bind -g bind" # Flags for named You might also find it handy to change in /etc/make.conf the variable NO_BIND. The comments from /etc/defaults/make.conf are rather explanatory of why you would want to do this. % grep BIND /etc/defaults/make.conf #NO_BIND= true # do not build BIND This way, when you buildworld again, the build procedure will not build and install BIND from /usr/src/contrib and it will save you some cycles and time from the build process. For the real paranoid, you might also want to remove any traces of BIND from /usr that were installed by installworld, but that's not really necessary. -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 4:41:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-93.dsl.lsan03.pacbell.net [63.207.60.93]) by hub.freebsd.org (Postfix) with ESMTP id 41C1937B405 for ; Fri, 6 Jul 2001 04:41:53 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 4471D66C4D; Fri, 6 Jul 2001 04:41:51 -0700 (PDT) Date: Fri, 6 Jul 2001 04:41:50 -0700 From: Kris Kennaway To: want_2_learn_freebsd@hotmail.com Cc: FreeBSD Questions Subject: Re: Ports Message-ID: <20010706044150.A52813@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="Nq2Wo0NMKNjxTN9z" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from want_2_learn_freebsd@hotmail.com on Fri, Jul 06, 2001 at 04:02:43AM -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 --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 06, 2001 at 04:02:43AM -0700, want_2_learn_freebsd@hotmail.com = wrote: > Hi, >=20 > I simply installed the package on top of bind8 in 4.2 release - no proble= ms: > ftp://ftp5.freebsd.org/pub/FreeBSD/ports/i386/packages-4.3-stable/All/bin= d-9 > .1.3rc1.tgz Just do a pkg_add, or my preferred way though webmin | softw= are > packages. That's not guaranteed to work, although it probably will in most cases. The greater the distance between the two versions the less likely it is. Kris --Nq2Wo0NMKNjxTN9z 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 iD8DBQE7RaP+Wry0BWjoQKURAio5AKDZlaYGftc5sjG0zO9GPXA6QEuB6gCfdY5V cWQCrniRmKQAYf22GpxTuYc= =zVBH -----END PGP SIGNATURE----- --Nq2Wo0NMKNjxTN9z-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 4:42:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-93.dsl.lsan03.pacbell.net [63.207.60.93]) by hub.freebsd.org (Postfix) with ESMTP id 7573437B406 for ; Fri, 6 Jul 2001 04:42:18 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 28CD466C4D; Fri, 6 Jul 2001 04:42:16 -0700 (PDT) Date: Fri, 6 Jul 2001 04:42:16 -0700 From: Kris Kennaway To: John Toon Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Make World Problem -- missing rpcgen? Message-ID: <20010706044215.B52813@xor.obsecurity.org> References: <01070611123205.40767@Dionysus> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="DKU6Jbt7q3WqK7+M" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <01070611123205.40767@Dionysus>; from john.toon@btinternet.com on Fri, Jul 06, 2001 at 11:22:35AM +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 --DKU6Jbt7q3WqK7+M Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 06, 2001 at 11:22:35AM +0000, John Toon wrote: > Hi, >=20 > I seem to be missing a program called "rpcgen" and it is causing my=20 > build of make world to bail out. I couldn't find rpcgen in the ports=20 > collection - which port do I need to install to get it? It's part of the base system; there's something else wrong on your system. Kris --DKU6Jbt7q3WqK7+M 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 iD8DBQE7RaQXWry0BWjoQKURAghzAJ9s+ydBnbc3EZA+WOw4bl5ck0kVpACgijkJ E9J3LxTTMTcLIaxr7jxsuQU= =seA8 -----END PGP SIGNATURE----- --DKU6Jbt7q3WqK7+M-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 4:49:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kermit.netivity.nl (wc-68.r-195-85-144.essentkabel.com [195.85.144.68]) by hub.freebsd.org (Postfix) with ESMTP id 5A44F37B407 for ; Fri, 6 Jul 2001 04:49:37 -0700 (PDT) (envelope-from enriko.groen@netivity.nl) Received: by KERMIT with Internet Mail Service (5.5.2650.21) id <32P3X156>; Fri, 6 Jul 2001 12:03:40 +0200 Message-ID: <510EAC2065C0D311929200A0247252622F796E@NETIVITY-FS> From: Enriko Groen To: 'Kelvin Ng Chee Hoong' , freebsd-questions@FreeBSD.ORG Subject: RE: FreeBSD , OpenBSD and NetBSD Date: Fri, 6 Jul 2001 12:03:40 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) 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 > -----Original Message----- > From: Kelvin Ng Chee Hoong [mailto:nchee_hoong@pacific.net.sg] > I'm confusing for the above-mentioned different versions of UNIX . > Among of them ,which one is the most stable and reliable ? > I'm currently > do a research to find out what type of UNIX which offer tightly in > security . FreeBSD - the original free BSD OS NetBSD - tries to be available to as many hardware platforms as possible OpenBSD - has a focus on security The later two are spin-offs of FreeBSD. -- Enriko Groen, Hosting manager -------------------------------------------------------- netivity bv www.netivity.nl enriko.groen@netivity.nl 038 - 850 1000 van nagellstraat 4 8011 eb zwolle -------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 4:56:44 2001 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 4757C37B401 for ; Fri, 6 Jul 2001 04:56:41 -0700 (PDT) (envelope-from john.toon@btinternet.com) Received: from [213.122.165.136] (helo=Dionysus) by gadolinium.btinternet.com with smtp (Exim 3.22 #9) id 15IUDv-0004jq-00 for freebsd-questions@FreeBSD.ORG; Fri, 06 Jul 2001 12:56:40 +0100 Content-Type: text/plain; charset="iso-8859-1" From: John Toon To: freebsd-questions@FreeBSD.ORG Subject: Re: Make World Problem -- missing rpcgen? Date: Fri, 6 Jul 2001 12:56:47 +0000 X-Mailer: KMail [version 1.2] References: <01070611123205.40767@Dionysus> <20010706044215.B52813@xor.obsecurity.org> In-Reply-To: <20010706044215.B52813@xor.obsecurity.org> MIME-Version: 1.0 Message-Id: <01070612510601.77156@Dionysus> 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 06 July 2001 11:42 am, Kris Kennaway wrote: > > I seem to be missing a program called "rpcgen" and it is causing my > > build of make world to bail out. I couldn't find rpcgen in the > > ports collection - which port do I need to install to get it? > > It's part of the base system; there's something else wrong on your > system. > > Kris Okay.... So have you got any suggestions as to how I should fix this? John. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 4:57:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-93.dsl.lsan03.pacbell.net [63.207.60.93]) by hub.freebsd.org (Postfix) with ESMTP id 640E437B405 for ; Fri, 6 Jul 2001 04:57:26 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 5822766C4D; Fri, 6 Jul 2001 04:57:24 -0700 (PDT) Date: Fri, 6 Jul 2001 04:57:23 -0700 From: Kris Kennaway To: John Toon Cc: Kris Kennaway , freebsd-questions@FreeBSD.ORG Subject: Re: Make World Problem -- missing rpcgen? Message-ID: <20010706045723.A53173@xor.obsecurity.org> References: <01070611123205.40767@Dionysus> <20010706044215.B52813@xor.obsecurity.org> <01070612510601.77156@Dionysus> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="zYM0uCDKw75PZbzx" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <01070612510601.77156@Dionysus>; from john.toon@btinternet.com on Fri, Jul 06, 2001 at 12:51:06PM +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 --zYM0uCDKw75PZbzx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 06, 2001 at 12:51:06PM +0000, John Toon wrote: > On Friday 06 July 2001 11:42 am, Kris Kennaway wrote: >=20 > > > I seem to be missing a program called "rpcgen" and it is causing my > > > build of make world to bail out. I couldn't find rpcgen in the > > > ports collection - which port do I need to install to get it? > > > > It's part of the base system; there's something else wrong on your > > system. > > > > Kris >=20 > Okay.... So have you got any suggestions as to how I should fix this?=20 Look for some reason why your source tree may be corrupt or incomplete; perhaps you haven't cvsupped the entire tree or something. Kris --zYM0uCDKw75PZbzx 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 iD8DBQE7RaeiWry0BWjoQKURApmVAKC0amsdmHyPM+Nh+AEmvb2FfgZeJQCeNS9L On8QgnHzTnUAmMZHB9LLZvw= =NWaM -----END PGP SIGNATURE----- --zYM0uCDKw75PZbzx-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 5:30:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailb.telia.com (mailb.telia.com [194.22.194.6]) by hub.freebsd.org (Postfix) with ESMTP id 70C2937B405 for ; Fri, 6 Jul 2001 05:30:12 -0700 (PDT) (envelope-from watchman@ludd.luth.se) Received: from d1o907.telia.com (d1o907.telia.com [195.252.38.241]) by mailb.telia.com (8.9.3/8.9.3) with ESMTP id OAA15489 for ; Fri, 6 Jul 2001 14:30:11 +0200 (CEST) Received: from ludd.luth.se (h55n1fls21o907.telia.com [212.181.140.55]) by d1o907.telia.com (8.8.8/8.8.8) with ESMTP id OAA24601 for ; Fri, 6 Jul 2001 14:30:10 +0200 (CEST) Message-ID: <3B45AF4D.CFDC15ED@ludd.luth.se> Date: Fri, 06 Jul 2001 14:30:05 +0200 From: Joachim =?iso-8859-1?Q?Str=F6mbergson?= Organization: Acne X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-STABLE i386) X-Accept-Language: en-US MIME-Version: 1.0 To: "questions@FreeBSD.ORG" Subject: Floating point exception in Netscape on FreeBSD 4.3 Release, Xfree86 4.1.0 and Athlon 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 Aloha! I've just completed a new install of a system on a system comprising of: + Athlon 1200 MHZ on Abit KT7A motherboard. + FreeBSD 4.3-Release (straight off the cd). User + compat22 and Linux 6.1 support + Remade kernel. Only changes to GENERIC are removal of apm and addition of Soundblaster support. + Xfree86 4.1.0 using the FreeBSD binaries I've installed Netscape 4.76 Communicator[1]. When I try to run it though it fails with "floating point exception (core dumped)". Does anybody have any (more or less) wild ideas why this is happening and any possible cures for it.[2]. Any hints, help, suggestions would be highly appreciated. Thanks! [1] Yes, I know it's broken. But, the Linux 4.77 version fails in the address book, which is a requirement from the users. (yes they use Messenger for mail). [2] No, switching to another browser and mail program is just about a non-acceptable solution. These people really like that application. .-) -- Med vänlig hälsning, Cheers! Joachim Strömbergson ============================================================================ Joachim Strömbergson - ASIC designer, nice to *cute* animals. snail: phone: mail & web: Sävenäsgatan 5A +46 31 - 27 98 47 watchman@ludd.luth.se 416 72 Göteborg +46 733 75 97 02 www.ludd.luth.se/~watchman ============================================================================ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 5:40:55 2001 Delivered-To: freebsd-questions@freebsd.org Received: from relay.wplus.net (relay.wplus.net [195.131.52.179]) by hub.freebsd.org (Postfix) with ESMTP id 78A0E37B403 for ; Fri, 6 Jul 2001 05:40:52 -0700 (PDT) (envelope-from ricsLtd@hotmail.com) Received: from relay1.wplus.net (smtp.wplus.net [195.131.52.143]) by relay.wplus.net (8.9.1/8.9.1/wplus.2) with ESMTP id QAA39478 for ; Fri, 6 Jul 2001 16:40:51 +0400 (MSD) From: ricsLtd@hotmail.com X-Real-To: Received: from Olga (ip94-78.dialup.wplus.net [195.131.94.78]) by relay1.wplus.net (8.9.1/8.9.1/wplus.2) with SMTP id QAA71277 for ; Fri, 6 Jul 2001 16:40:50 +0400 (MSD) Date: Fri, 6 Jul 2001 16:40:50 +0400 (MSD) Message-Id: <200107061240.QAA71277@relay1.wplus.net> To: X-Mailer: PersMail 3.1 Mime-Version: 1.0 Content-Type: text/plain; charset=Windows-1251 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Looking for the contract or permanent IT staff? We can recruit Russian IT professionals for you? Have a look at www.ricsltd.co.uk. We have a lot to offer! You will be impressed with our services, low fees as well as quality of programmers. If you have any questions please do not hesitate to contact us: info@ricsltd.co.uk Regards, Andrei Nikonorov ________________________________ Sent by "PersMail 3.1" (freeware) ÇÀÎ "ÀÑÓ-Èìïóëüñ": Áèçíåñ-ñïðàâî÷íèêè è áàçû äàííûõ "Ýëåêòðîííàÿ áèáëèîòåêà õóäîæåñòâåííîé ëèòåðàòóðû" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 5:41: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from relay.wplus.net (relay.wplus.net [195.131.52.179]) by hub.freebsd.org (Postfix) with ESMTP id 756CD37B407 for ; Fri, 6 Jul 2001 05:41:03 -0700 (PDT) (envelope-from ricsLtd@hotmail.com) Received: from relay1.wplus.net (smtp.wplus.net [195.131.52.143]) by relay.wplus.net (8.9.1/8.9.1/wplus.2) with ESMTP id QAA39554 for ; Fri, 6 Jul 2001 16:41:02 +0400 (MSD) From: ricsLtd@hotmail.com X-Real-To: Received: from Olga (ip94-78.dialup.wplus.net [195.131.94.78]) by relay1.wplus.net (8.9.1/8.9.1/wplus.2) with SMTP id QAA71307 for ; Fri, 6 Jul 2001 16:40:58 +0400 (MSD) Date: Fri, 6 Jul 2001 16:40:58 +0400 (MSD) Message-Id: <200107061240.QAA71307@relay1.wplus.net> To: X-Mailer: PersMail 3.1 Mime-Version: 1.0 Content-Type: text/plain; charset=Windows-1251 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Looking for the contract or permanent IT staff? We can recruit Russian IT professionals for you? Have a look at www.ricsltd.co.uk. We have a lot to offer! You will be impressed with our services, low fees as well as quality of programmers. If you have any questions please do not hesitate to contact us: info@ricsltd.co.uk Regards, Andrei Nikonorov ________________________________ Sent by "PersMail 3.1" (freeware) ÇÀÎ "ÀÑÓ-Èìïóëüñ": Áèçíåñ-ñïðàâî÷íèêè è áàçû äàííûõ "Ýëåêòðîííàÿ áèáëèîòåêà õóäîæåñòâåííîé ëèòåðàòóðû" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 6: 3:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from fw.vindaloo.com (ool-182dd047.dyn.optonline.net [24.45.208.71]) by hub.freebsd.org (Postfix) with ESMTP id 6401237B40F for ; Fri, 6 Jul 2001 06:03:18 -0700 (PDT) (envelope-from chris@vindaloo.com) Received: (from uucp@localhost) by fw.vindaloo.com (8.10.1/8.10.1) id f66D3HF16861; Fri, 6 Jul 2001 09:03:17 -0400 (EDT) Received: from andale.vindaloo.com(192.168.133.3) via SMTP by fw.vindaloo.com, id smtpdR25998; Fri Jul 6 09:03:15 2001 Received: by andale.vindaloo.com (Postfix, from userid 1000) id 9CBF84383; Fri, 6 Jul 2001 08:03:08 -0500 (EST) Date: Fri, 6 Jul 2001 09:03:07 -0400 From: Christopher Sean Hilton To: Mark Drayton Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Replacing Exchange Message-ID: <20010706090307.A23835@andale.vindaloo.com> References: <510EAC2065C0D311929200A0247252622F794C@NETIVITY-FS> <20010706122628.A8858@hades.hell.gr> <20010706123756.A35166@tethys.valhalla.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010706123756.A35166@tethys.valhalla.net>; from mark.drayton@izr.com on Fri, Jul 06, 2001 at 12:37: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 Fri, Jul 06, 2001 at 12:37:56PM +0100, Mark Drayton wrote: > Giorgos Keramidas (keramida@ceid.upatras.gr) wrote: > > Another feature that does not work with some MTA other than Exchange > > is the shared `group folders' that Outlook can read from an Exchange > > server. This is very similar to USENET newsgroups in functionality, > > and I usually prefer to install a local News server instead of > > depending on Exchange to do that work for me. > > You can implement shared folder/bulletin boards/whatever you call them > with the cyrus imapd (ports/mail/cyrus-imapd). These folders have to be > setup by the administrator (unless the users want to get personal with > 'man cryadm') although it would be quite trivial to make a web based > configuration utility for the users to do it themselves. The access > control is very granular -- you could allow users B and C to read one of > user A's mailboxes but only B to post to that box. > > Cyrus has a fairly steep learning curve (I'm learning now) but all > reports say it's worth the initial headache. It's very scalable and > flexible enough for almost every situation. > I'm interested in this too. In the process of investigation I've found that you need a few pieces to replace Exchange: An IMAP Server An LDAP Server for the Company Address Book I got most of this from skimming the Exchange Server Replacement How-to: http://www.moongroup.com/docs/exchange-replacement-howto/ I'd be interested in doing this but I have to say that Cyrus Imapd left a really bad taste in my mouth. Bad enough that I used Courier instead. Still the Idea of having a secure IMAP server that I could put in a DMZ would be cool. -- Chris Hilton chilton-at-vindaloo-dot-com ------------------------------------------------------------------------ "All I was doing was trying to get home from work!" -- Rosa Parks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 6:27:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ra.upan.org (ra.upan.org [204.107.76.19]) by hub.freebsd.org (Postfix) with ESMTP id C9EBA37B403 for ; Fri, 6 Jul 2001 06:27:38 -0700 (PDT) (envelope-from mikel@ocsinternet.com) Received: from thoth.upan.org (thoth.upan.org [204.107.76.16]) by ra.upan.org (8.11.1/8.11.1) with SMTP id f66DSwI56098; Fri, 6 Jul 2001 09:28:58 -0400 (EDT) (envelope-from mikel@ocsinternet.com) From: MIkel King Date: Fri, 06 Jul 2001 13:43:09 GMT Message-ID: <20010706.13430900@thoth.upan.org> Subject: Re: Replacing Exchange To: Enriko Groen Cc: "'freebsd-questions@freebsd.org'" In-Reply-To: <510EAC2065C0D311929200A0247252622F794C@NETIVITY-FS> References: <510EAC2065C0D311929200A0247252622F794C@NETIVITY-FS> X-Mailer: Mozilla/3.0 (compatible; StarOffice/5.2;Linux) X-Priority: 3 (Normal) 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 Enriko, I would suggest that you consider StarOffice, as it has many of the=20 features that you wish, however; I am quite certain that there will be=20 some additional administrative overhead geeting everything setup and=20 working exactly like ex. You will most likely want to setup either qmail or postfix...and=20 definitely you will need an IMAP4 server. I am not exectly sure how well= =20 SO52 handles calendaring but it looks pretty simple, it's something=20 definitely worth playing with though... --=20 Ok I must go and fsck my brain for a bit, it's been a rather long day..= . Cheers, MIkel=20 >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< On 7/5/01, 8:49:28 AM, Enriko Groen wrote=20 regarding Replacing Exchange: > Hi, > Although I realise that this is not really a FreeBSD specific question= , I > think this is the best place for me to drop it. > I'm just wondering if any one here has experience with replacing a=20 Microsoft > Exchange server with a FreeBSD based system. > My company (at this moment about 15 people) has started off using MS > products (MS Office, Exchange, IIS). I'm slowly (to my feeling)=20 introducing > FreeBSD based machines/servers. > The one that bugs me most is the Outlook + Exchange duo. Outlook is a = beast > and possibly the worst MUA around (preaching to the converted here). > However, we are quite used to some Outlook functions like calendar, > contacts, public folders and hotsync'ing with Palm/Psion. > I think we will stick with Windows as a desktop platform but we are=20 willing > to take a look at for instance StarOffice. > Any suggestions? Links? Experiences? Anything is welcome... > -- > Enriko Groen, Hosting manager > -------------------------------------------------------- > netivity bv www.netivity.nl enriko.groen@netivity.nl > 038 - 850 1000 van nagellstraat 4 8011 eb zwolle > -------------------------------------------------------- > 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 Jul 6 6:52:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id B6B8137B401 for ; Fri, 6 Jul 2001 06:52:24 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f66DqDw57429; Fri, 6 Jul 2001 09:52:13 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Fri, 6 Jul 2001 09:52:13 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Subject: What is significance of security check output In-Reply-To: <200107060559.BAA02884@CI590846-B.lxintn1.ky.home.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 Hi: Keep receiving messages similar to the one below. I've looked up these ports but can't find anything significant. Are these messages benign? > eeyore1 denied packets: > > 04600 6 7561 deny icmp from any to any > > > eeyore1 kernel log messages: > > ipfw: 37 Accept TCP 217.80.181.154:3918 24.9.218.175:21 in via vx0 > > ipfw: 40 Accept TCP 157.95.47.65:33634 24.9.218.175:22 in via vx0 > > ipfw: 40 Accept TCP 157.95.47.65:33635 24.9.218.175:22 in via vx0 > > ipfw: 37 Accept TCP 166.114.64.200:1704 24.9.218.175:21 in via vx0 > > ipfw: 40 Accept TCP 157.95.47.65:34066 24.9.218.175:22 in via vx0 > > ipfw: 37 Accept TCP 193.252.62.145:3200 24.9.218.175:21 in via vx0 > > ipfw: 37 Accept TCP 202.98.123.85:2666 24.9.218.175:21 in via vx0 > > ipfw: 37 Accept TCP 202.98.123.85:4994 24.9.218.175:21 in via vx0 > Thanks Jim ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 7:12:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from camel.kdsi.net (camel.kdsi.net [206.103.113.218]) by hub.freebsd.org (Postfix) with ESMTP id A5BA437B401 for ; Fri, 6 Jul 2001 07:12:29 -0700 (PDT) (envelope-from tony@camel.kdsi.net) Received: from camel.kdsi.net (leepcD-070.sub-d.lee.net [208.205.127.70]) (authenticated (0 bits)) by camel.kdsi.net (8.12.0.Beta10/8.12.0.Beta10) with ESMTP id f66EEtKv017456; Fri, 6 Jul 2001 09:14:56 -0500 (CDT) Message-ID: <3B45C6F2.77EBFD76@camel.kdsi.net> Date: Fri, 06 Jul 2001 09:10:58 -0500 From: Tony Wells X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Dave VanAuken Cc: freebsd-questions@FreeBSD.ORG Subject: Re: NIC suffering intermittant connection problems 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 You might want to visually inspect the connector on the NIC to make sure all of the contacts are in good shape. If one got bent, and is making less than ideal contact, you can experience a world of fruity problems. Dave VanAuken wrote: > > have an Intel NIC on a FreeBSD 4.3 box (actuallly 3 boxes with same > setup - cards and all) > > other two boxes are fine... third is intermittant. > > Works fine on botup, but will occasionally fall asleep and not respond > to requests. > initiating requests from the machine seems to wake things up and then > other machines pick it up again (best way to explain it) > > Am all but ready to blame it on the NIC and try replacing it. Just > recently switched IP blocks though (changed class C) so could have > missed something in the changeover that is causing this. > > ideas? > > TIA > > Dave > > >>>>> ifconfig <<<<< > fxp0: flags=8843 mtu 1500 > inet 204.50.158.12 netmask 0xffffff00 broadcast 204.50.158.255 > inet6 fe80::2d0:b7ff:feb2:5f7f%fxp0 prefixlen 64 scopeid 0x1 > ether 00:d0:b7:b2:5f:7f > media: autoselect (100baseTX ) status: active > supported media: autoselect 100baseTX 100baseTX > 10baseT/UT > P 10baseT/UTP > lp0: flags=8810 mtu 1500 > faith0: flags=8000 mtu 1500 > gif0: flags=8010 mtu 1280 > gif1: flags=8010 mtu 1280 > gif2: flags=8010 mtu 1280 > gif3: flags=8010 mtu 1280 > lo0: flags=8049 mtu 16384 > inet6 fe80::1%lo0 prefixlen 64 scopeid 0x8 > inet6 ::1 prefixlen 128 > inet 127.0.0.1 netmask 0xff000000 > inet 204.50.158.12 netmask 0xffffff00 > ppp0: flags=8010 mtu 1500 > sl0: flags=c010 mtu 552 > > >>>>> netstat -r <<<<< > Internet: > Destination Gateway Flags Refs Use Netif > Expire > default rtr0 UGSc 0 0 fxp0 > localhost localhost UH 0 0 lo0 > 204.50.158 link#1 UC 0 0 fxp0 > => > web1 web1 UH 0 0 lo0 > > Internet6: > Destination Gateway Flags Netif Expire > ::1 ::1 UH lo0 > fe80::%fxp0 link#1 UC fxp0 > fe80::%lo0 fe80::1%lo0 Uc lo0 > ff01:: ::1 U lo0 > ff02::%fxp0 link#1 UC fxp0 > ff02::%lo0 fe80::1%lo0 UC lo0 > > 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 Jul 6 7:26:35 2001 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 A63C337B405; Fri, 6 Jul 2001 07:26:31 -0700 (PDT) (envelope-from tinguely@web.cs.ndsu.NoDak.edu) Received: (from tinguely@localhost) by web.cs.ndsu.NoDak.edu (8.11.1/8.11.1) id f66EQUe02809; Fri, 6 Jul 2001 09:26:30 -0500 (CDT) (envelope-from tinguely) Date: Fri, 6 Jul 2001 09:26:30 -0500 (CDT) From: mark tinguely Message-Id: <200107061426.f66EQUe02809@web.cs.ndsu.NoDak.edu> To: freebsd-questions@freebsd.org, wiku@man.poznan.pl Subject: Re: FORE PCA200E + IPv6 PVC Cc: freebsd-atm@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 > how to create PVC for native IPv6 traffic? I use FreeBSD 4.3 and Fore > PCA200E ATM NIC. I have no problem if I create PVC for IPv4 traffic (using > atm command). FreeBSD uses the HARP ATM stack. HARP implements the IETF's Classical IP over ATM. This implementation is IPv4 only. I have not read the RFC lately and I do not recall IPv6 extensions to Classical IP over ATM. No one has implememented LANE on FreeBSD which would be protocol transparent. By the way, ATM questions are better answered on the freebsd-atm mailing list. I forwarded this reply to that group. --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 Jul 6 7:35:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns.online-turk.com (ns.online-turk.com [66.33.25.163]) by hub.freebsd.org (Postfix) with ESMTP id 0D8AE37B403 for ; Fri, 6 Jul 2001 07:35:07 -0700 (PDT) (envelope-from ssafak@vrturk.com) Received: from ttnet (ist-usr-919.adsl.ttnet.net.tr [212.156.199.152]) by ns.online-turk.com (8.9.3/8.9.3) with SMTP id KAA21327 for ; Fri, 6 Jul 2001 10:17:55 -0400 Message-ID: <001f01c10628$ebb5c020$0700a8c0@net.tr> From: "S.SAFAK" To: Subject: DNS problem Date: Fri, 6 Jul 2001 17:35:32 +0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_001C_01C10642.0EC0A940" 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 This is a multi-part message in MIME format. ------=_NextPart_000_001C_01C10642.0EC0A940 Content-Type: text/plain; charset="windows-1254" Content-Transfer-Encoding: quoted-printable online-turk INTERACTIVE vs. 2.0 Hi, I couldn't configure DNS on FreeBSD4.3 version. Besides I want to change = my static ip address.=20 interturk# tail -15 /var/log/messages Jul 6 09:21:50 interturk named[158]: 209.16.107:3: Database error near = () Jul 6 09:21:50 interturk named[158]: 209.16.107:4: Database error near = () Jul 6 09:21:50 interturk named[158]: 209.16.107:5: Database error near = () Jul 6 09:21:50 interturk named[158]: 209.16.107:6: Database error near = () Jul 6 09:21:50 interturk named[158]: 209.16.107:7: Database error near = ()) Jul 6 09:21:50 interturk named[158]: Zone "107.16.209.IN-ADDR.ARPA" = (file 209.1 6.107): no SOA RR found Jul 6 09:21:50 interturk named[158]: master zone = "107.16.209.IN-ADDR.ARPA" (IN) rejected due to errors (serial 0) Jul 6 09:21:50 interturk named[158]: /etc/namedb/named.conf:129: cannot = redefin e zone '0.0.127.IN-ADDR.ARPA' class IN Jul 6 09:21:50 interturk named[159]: Ready to answer queries. Jul 6 09:22:33 interturk /kernel: arplookup 209.16.96.1 failed: host is = not on local network Jul 6 09:25:48 interturk /kernel: arplookup 209.16.96.1 failed: host is = not on local network Jul 6 09:26:18 interturk /kernel: arplookup 209.16.96.1 failed: host is = not on local network Jul 6 09:27:48 interturk /kernel: arplookup 209.16.96.1 failed: host is = not on local network Jul 6 09:28:45 interturk su: admin to root on /dev/ttyp2 Jul 6 09:28:48 interturk /kernel: arplookup 209.16.96.1 failed: host is = not on local network =20 What am I doing wrong. ------=_NextPart_000_001C_01C10642.0EC0A940 Content-Type: text/html; charset="windows-1254" Content-Transfer-Encoding: quoted-printable online-turk INTERACTIVE vs. 2.0
   =20 Hi,
I = couldn't configure=20 DNS on FreeBSD4.3 version. Besides I want to change my static ip = address.=20
 
interturk# tail -15 = /var/log/messages
Jul  6=20 09:21:50 interturk named[158]: 209.16.107:3: Database error near = ()
Jul =20 6 09:21:50 interturk named[158]: 209.16.107:4: Database error near=20 ()
Jul  6 09:21:50 interturk named[158]: 209.16.107:5: Database = error=20 near ()
Jul  6 09:21:50 interturk named[158]: 209.16.107:6: = Database=20 error near ()
Jul  6 09:21:50 interturk named[158]: = 209.16.107:7:=20 Database error near ())
Jul  6 09:21:50 interturk named[158]: = Zone=20 "107.16.209.IN-ADDR.ARPA" (file 209.1
6.107): no SOA RR = found
Jul  6=20 09:21:50 interturk named[158]: master zone "107.16.209.IN-ADDR.ARPA"=20 (IN)
 rejected due to errors (serial 0)
Jul  6 09:21:50=20 interturk named[158]: /etc/namedb/named.conf:129: cannot redefin
e = zone=20 '0.0.127.IN-ADDR.ARPA' class IN
Jul  6 09:21:50 interturk = named[159]:=20 Ready to answer queries.
Jul  6 09:22:33 interturk /kernel: = arplookup=20 209.16.96.1 failed: host is not on
local network
Jul  6 = 09:25:48=20 interturk /kernel: arplookup 209.16.96.1 failed: host is not on
local = network
Jul  6 09:26:18 interturk /kernel: arplookup 209.16.96.1 = failed:=20 host is not on
local network
Jul  6 09:27:48 interturk = /kernel:=20 arplookup 209.16.96.1 failed: host is not on
local = network
Jul  6=20 09:28:45 interturk su: admin to root on /dev/ttyp2
Jul  6 = 09:28:48=20 interturk /kernel: arplookup 209.16.96.1 failed: host is not on
local = network           =             &= nbsp;           =20
 
What am I doing = wrong.
------=_NextPart_000_001C_01C10642.0EC0A940-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 7:40:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from jxmls04.se.mediaone.net (jxmls04.se.mediaone.net [24.129.0.51]) by hub.freebsd.org (Postfix) with ESMTP id AEEBC37B401 for ; Fri, 6 Jul 2001 07:40:25 -0700 (PDT) (envelope-from scott.nolde@mediaone.net) Received: from bsd (rr-163-52-193.atl.mediaone.net [24.163.52.193]) by jxmls04.se.mediaone.net (8.11.1/8.11.1) with ESMTP id f66EdDH19858 for ; Fri, 6 Jul 2001 10:39:13 -0400 (EDT) Date: Fri, 6 Jul 2001 10:40:15 -0400 (EDT) From: X-X-Sender: Reply-To: To: Subject: Syslogd on FreeBSD-4.3 Message-ID: <20010706103447.F5246-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 I'm trying to log syslog messages from a cisco 3640 router onto a FreeBSD-4.3-STABLE box and am not having much success. I see the udp packets arriving at the nic interface, but syslogd is not logging at all. My syslog is enable in /etc/rc.conf adn the command line for syslogd is: syslogd -a 192.168.10.100:* And in /etc/syslog.conf to catch everything I have: *.* /var/log/all Someone mentioned an alternative program in ports for syslog earlier, but I lost the email in a system recovery and the answer was not copied back to -questions. Which alternative port can I use to log syslog messages from the router? Thanks, Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 7:50:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from camel.kdsi.net (camel.kdsi.net [206.103.113.218]) by hub.freebsd.org (Postfix) with ESMTP id 5BF7437B405 for ; Fri, 6 Jul 2001 07:50:30 -0700 (PDT) (envelope-from tony@camel.kdsi.net) Received: from camel.kdsi.net (leepcD-070.sub-d.lee.net [208.205.127.70]) (authenticated (0 bits)) by camel.kdsi.net (8.12.0.Beta10/8.12.0.Beta10) with ESMTP id f66Er3Kv017515 for ; Fri, 6 Jul 2001 09:53:04 -0500 (CDT) Message-ID: <3B45CFE3.59303523@camel.kdsi.net> Date: Fri, 06 Jul 2001 09:49:07 -0500 From: Tony Wells X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Rolling logs for IPFW 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 all, I want to roll my /var/log/security log daily, but I'm wondering what the behavior of IPFW is when you move the log. Has anyone done this? I'm just wondering what happens when you "steal" the logfile to move it to a new name, and I can't experiment since the box is live. TIA, Tony Wells To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 7:52: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web9604.mail.yahoo.com (web9604.mail.yahoo.com [216.136.129.183]) by hub.freebsd.org (Postfix) with SMTP id 026CA37B40B for ; Fri, 6 Jul 2001 07:52:03 -0700 (PDT) (envelope-from cjalmond@yahoo.com) Message-ID: <20010706145202.4858.qmail@web9604.mail.yahoo.com> Received: from [66.25.47.101] by web9604.mail.yahoo.com via HTTP; Fri, 06 Jul 2001 07:52:02 PDT Date: Fri, 6 Jul 2001 07:52:02 -0700 (PDT) From: The Almonds Subject: Newbie:Tar Help! 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 All, Trying to uncompress a .tar file downloaded form www.soliddata.com/products/readme.txt named iotest31.tar. I have tried tar –xv iotest31.tar with my TAPE environment set to the /usr partition (/dev/ad0s2f) I get the error tar: iotest31.tar not found in archive. Any help would be great on this. Also, I need to create many large files. I remember you could create a file with a specified file size with SunOS. Does anyone know that command? Thanks, Curtis __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Fri Jul 6 7:56:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mx2.snet.net (mx2.snet.net [204.60.3.114]) by hub.freebsd.org (Postfix) with ESMTP id A890737B403 for ; Fri, 6 Jul 2001 07:56:33 -0700 (PDT) (envelope-from j.carlson@snet.net) Received: from ENKIL (brpt-sh3-port59.snet.net [204.60.24.59]) by mx2.snet.net (8.11.1/8.11.1/SNET-mx-1.4/D-1.10/O-1.7) with SMTP id f66EuWq23869 for ; Fri, 6 Jul 2001 10:56:32 -0400 (EDT) Message-ID: <013b01c1062b$daa06670$020aa8c0@ENKIL> From: "Jae Carlson" To: "freebsd-questions" Subject: SSH Date: Fri, 6 Jul 2001 10:56:34 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2505.0000 Disposition-Notification-To: "Jae Carlson" X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2505.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 Greetings all, I have putty installed on my windows box and it is networked to the FreeBSD box. What I am trying to do is using putty to ssh into the FBSD box is to login as root but I can't seem to get in as root but it will let my user in, enkil, is there a way to allow root to ssh in as long as it is from the network? Thank you in advance, Jae To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 7:57:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kermit.netivity.nl (wc-68.r-195-85-144.essentkabel.com [195.85.144.68]) by hub.freebsd.org (Postfix) with ESMTP id 5982D37B409 for ; Fri, 6 Jul 2001 07:57:27 -0700 (PDT) (envelope-from enriko.groen@netivity.nl) Received: by KERMIT with Internet Mail Service (5.5.2650.21) id <32P3XFAT>; Fri, 6 Jul 2001 16:57:21 +0200 Message-ID: <510EAC2065C0D311929200A0247252622F7986@NETIVITY-FS> From: Enriko Groen To: 'The Almonds' , freebsd-questions@freebsd.org Subject: RE: Newbie:Tar Help! Date: Fri, 6 Jul 2001 16:57:20 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) 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 > -----Original Message----- > From: The Almonds [mailto:cjalmond@yahoo.com] > Trying to uncompress a .tar file downloaded form > www.soliddata.com/products/readme.txt named > iotest31.tar. I have tried tar -xv iotest31.tar with > my TAPE environment set to the /usr partition > (/dev/ad0s2f) I get the error tar: iotest31.tar not > found in archive. Any help would be great on this. try tar -xvf TAR was made to archive data to tape... It's natural behaviour is to use a tapedrive. The '-f' option is to force it to use a file. > Also, I need to create many large files. I remember > you could create a file with a specified file size > with SunOS. Does anyone know that command? Is this still related to tar files... tar files of a certain size? man tar knows the answer -- Enriko Groen, Hosting manager -------------------------------------------------------- netivity bv www.netivity.nl enriko.groen@netivity.nl 038 - 850 1000 van nagellstraat 4 8011 eb zwolle -------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 7:57:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kermit.netivity.nl (wc-68.r-195-85-144.essentkabel.com [195.85.144.68]) by hub.freebsd.org (Postfix) with ESMTP id 1C8CD37B401 for ; Fri, 6 Jul 2001 07:57:34 -0700 (PDT) (envelope-from enriko.groen@netivity.nl) Received: by KERMIT with Internet Mail Service (5.5.2650.21) id <32P3X10T>; Fri, 6 Jul 2001 16:03:04 +0200 Message-ID: <510EAC2065C0D311929200A0247252622F7983@NETIVITY-FS> From: Enriko Groen To: 'Jim Freeze' , questions@freebsd.org Subject: RE: What is significance of security check output Date: Fri, 6 Jul 2001 16:03:03 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) 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 > -----Original Message----- > From: Jim Freeze [mailto:jim@freeze.org] > Keep receiving messages similar to the one below. I've looked > up these ports but can't find anything significant. > > Are these messages benign? > > > eeyore1 denied packets: > > > 04600 6 7561 deny icmp from any to any This is just the denial of any ICMP packets... probably ping requests... > > eeyore1 kernel log messages: > > > ipfw: 37 Accept TCP 217.80.181.154:3918 24.9.218.175:21 in via vx0 > > > ipfw: 40 Accept TCP 157.95.47.65:33634 24.9.218.175:22 in via vx0 these are ftp (21) and ssh (22) connections coming in to your system via the vx0 interface. Are you expecting the mentioned ip-adresses to connect to your machine via ftp or ssh? -- Enriko Groen, Hosting manager -------------------------------------------------------- netivity bv www.netivity.nl enriko.groen@netivity.nl 038 - 850 1000 van nagellstraat 4 8011 eb zwolle -------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 7:59: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from www.suntop-cn.com (www.suntop-cn.com [61.140.76.155]) by hub.freebsd.org (Postfix) with ESMTP id 6570337B403 for ; Fri, 6 Jul 2001 07:58:51 -0700 (PDT) (envelope-from slack@www.suntop-cn.com) Received: (from slack@localhost) by www.suntop-cn.com (8.11.3/8.11.3) id f66EwIp96598 for freebsd-questions@freebsd.org; Fri, 6 Jul 2001 22:58:18 +0800 (CST) (envelope-from slack) Date: Fri, 6 Jul 2001 22:58:18 +0800 (CST) From: edwin chan Message-Id: <200107061458.f66EwIp96598@www.suntop-cn.com> To: freebsd-questions@freebsd.org Subject: why I can't found loopback device for mount iso files Sender: owner-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 use linux, I can mount iso files. But at Freebsd, I can't find loopback device for mount iso files as a filesystem in system. have any advice ? notice: please cc to me, I not subscribute to this maillist. thanks. edwin chan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 8:11: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from calypso.egreta.gr (calypso.egreta.gr [213.170.192.14]) by hub.freebsd.org (Postfix) with ESMTP id 0A3DD37B408 for ; Fri, 6 Jul 2001 08:10:58 -0700 (PDT) (envelope-from pskoul@egreta.gr) Received: from egreta.gr (ntnms.egreta.gr [213.170.192.68]) by calypso.egreta.gr (8.9.2/8.9.1) with ESMTP id SAA14518 for ; Fri, 6 Jul 2001 18:07:29 +0300 (EET DST) Message-ID: <3B45D6DE.563BA161@egreta.gr> Date: Fri, 06 Jul 2001 18:18:54 +0300 From: Panagiotis Skoulikaritis X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: en,el MIME-Version: 1.0 To: FreeBSD Questions Subject: need help with postfix Content-Type: text/plain; charset=iso-8859-7 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 installed postfix from the ports and I replaced sendmail which was runninf fine for months. Now every time I try to run postfix I get the error "/kernel: pid 780 (qmgr), uid 1005: exited on signal 11" someone told me it could be a memory problem I replaced all the memory sims and the problem still exists. Can someone tell me what the problem might be. Thanks Panagiotis To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 8:14:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web5502.mail.yahoo.com (web5502.mail.yahoo.com [216.115.106.185]) by hub.freebsd.org (Postfix) with SMTP id 3C56A37B405 for ; Fri, 6 Jul 2001 08:14:32 -0700 (PDT) (envelope-from marik_hobbit@yahoo.com) Message-ID: <20010706151428.9549.qmail@web5502.mail.yahoo.com> Received: from [64.12.103.41] by web5502.mail.yahoo.com via HTTP; Fri, 06 Jul 2001 08:14:28 PDT Date: Fri, 6 Jul 2001 08:14:28 -0700 (PDT) From: powers s Subject: cdburner 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 purchased an external(parallel port) cdburner for my laptop. i am unable to locate the correct device to add to the fstab file as well as to be compiled into the kernel. any help would be great. i am running 4.1 FreeBSD, on a pentium laptop. i have removed all scsi devices from the kernel, and added sound support. i have also removed the ethernet devices taht i didnt have. thank you for your time scott __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Fri Jul 6 8:25:21 2001 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 B2DBA37B40B for ; Fri, 6 Jul 2001 08:25:10 -0700 (PDT) (envelope-from fgleiser@cactus.fi.uba.ar) Received: from cactus.fi.uba.ar (cactus.fi.uba.ar [157.92.49.108]) by cactus.fi.uba.ar (8.11.3/8.9.3) with ESMTP id f66FN3M14228; Fri, 6 Jul 2001 12:23:05 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Fri, 6 Jul 2001 12:23:03 -0300 (ART) From: Fernando Gleiser To: edwin chan Cc: Subject: Re: why I can't found loopback device for mount iso files In-Reply-To: <200107061458.f66EwIp96598@www.suntop-cn.com> Message-ID: <20010706121938.E13087-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 You need to use the vn device: # vnconfig /dev/vn0 # mount /dev/vn0 /mnt when you are done, umount /mnt and then "vnconfig -u /dev/vn0" man vnconfig for details. Fer On Fri, 6 Jul 2001, edwin chan wrote: > hi, When I use linux, I can mount iso files. But at Freebsd, I can't find > loopback device for mount iso files as a filesystem in system. > have any advice ? > notice: please cc to me, I not subscribute to this maillist. > thanks. > > edwin chan > > 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 Jul 6 8:36:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id 2FB4C37B401 for ; Fri, 6 Jul 2001 08:36:34 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f66FbRQ64739; Fri, 6 Jul 2001 11:37:27 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Fri, 6 Jul 2001 11:37:27 -0400 (EDT) From: Joe Clarke To: Jae Carlson Cc: freebsd-questions Subject: Re: SSH In-Reply-To: <013b01c1062b$daa06670$020aa8c0@ENKIL> Message-ID: <20010706113704.R64705-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 Go to /etc/ssh, and look at sshd_config. What do you have setup for PermitRootLogin? Joe Clarke On Fri, 6 Jul 2001, Jae Carlson wrote: > Greetings all, > I have putty installed on my windows box and it is networked to the FreeBSD > box. What I am trying to do is using putty to ssh into the FBSD box is to > login as root but I can't seem to get in as root but it will let my user in, > enkil, is there a way to allow root to ssh in as long as it is from the > network? > Thank you in advance, > Jae > > > > 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 Jul 6 8:46:55 2001 Delivered-To: freebsd-questions@freebsd.org Received: from www.suntop-cn.com (www.suntop-cn.com [61.140.76.155]) by hub.freebsd.org (Postfix) with ESMTP id 053B737B405 for ; Fri, 6 Jul 2001 08:46:48 -0700 (PDT) (envelope-from slack@www.suntop-cn.com) Received: (from slack@localhost) by www.suntop-cn.com (8.11.3/8.11.3) id f66FjSv03083; Fri, 6 Jul 2001 23:45:28 +0800 (CST) (envelope-from slack) Date: Fri, 6 Jul 2001 23:45:28 +0800 (CST) From: edwin chan Message-Id: <200107061545.f66FjSv03083@www.suntop-cn.com> To: fgleiser@cactus.fi.uba.ar, slack@www.suntop-cn.com Subject: Re: why I can't found loopback device for mount iso files Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <20010706121938.E13087-100000@cactus.fi.uba.ar> Sender: owner-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, thanks. It's worked. edwin chan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 8:53:55 2001 Delivered-To: freebsd-questions@freebsd.org Received: from rannoch.demon.co.uk (rannoch.demon.co.uk [158.152.110.117]) by hub.freebsd.org (Postfix) with ESMTP id EBD6137B406 for ; Fri, 6 Jul 2001 08:53:51 -0700 (PDT) (envelope-from apbran@rannoch.demon.co.uk) Received: (from apb@localhost) by rannoch.demon.co.uk (8.11.4/8.10.1) id f66FrXf21122; Fri, 6 Jul 2001 16:53:33 +0100 (BST) Date: Fri, 6 Jul 2001 16:53:33 +0100 From: Paul Branston To: Enriko Groen Cc: "'The Almonds'" , freebsd-questions@freebsd.org Subject: Re: Newbie:Tar Help! Message-ID: <20010706165333.J21224@rannoch.demon.co.uk> References: <510EAC2065C0D311929200A0247252622F7986@NETIVITY-FS> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <510EAC2065C0D311929200A0247252622F7986@NETIVITY-FS>; from enriko.groen@netivity.nl on Fri, Jul 06, 2001 at 04:57:20PM +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 Fri, Jul 06, 2001 at 04:57:20PM +0200, Enriko Groen wrote: > > -----Original Message----- > > From: The Almonds [mailto:cjalmond@yahoo.com] > > > Trying to uncompress a .tar file downloaded form > > www.soliddata.com/products/readme.txt named > > iotest31.tar. I have tried tar -xv iotest31.tar with > > my TAPE environment set to the /usr partition > > (/dev/ad0s2f) I get the error tar: iotest31.tar not > > found in archive. Any help would be great on this. > > try > > tar -xvf > > TAR was made to archive data to tape... It's natural behaviour is to use a > tapedrive. The '-f' option is to force it to use a file. > > > Also, I need to create many large files. I remember > > you could create a file with a specified file size > > with SunOS. Does anyone know that command? > you can use dd dd if=/dev/zero of=newfile bs=1024 count=100 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 8:54: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kermit.netivity.nl (wc-68.r-195-85-144.essentkabel.com [195.85.144.68]) by hub.freebsd.org (Postfix) with ESMTP id 06B9837B401 for ; Fri, 6 Jul 2001 08:54:00 -0700 (PDT) (envelope-from enriko.groen@netivity.nl) Received: by KERMIT with Internet Mail Service (5.5.2650.21) id <32P3XFBN>; Fri, 6 Jul 2001 17:38:32 +0200 Message-ID: <510EAC2065C0D311929200A0247252622F798E@NETIVITY-FS> From: Enriko Groen To: 'Joe Clarke' , Jae Carlson Cc: freebsd-questions Subject: RE: SSH Date: Fri, 6 Jul 2001 17:38:31 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) 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 > -----Original Message----- > From: Joe Clarke [mailto:marcus@marcuscom.com] > > Go to /etc/ssh, and look at sshd_config. What do you have setup for > PermitRootLogin? An other option is making a user in the 'wheel' group. These are allowed to 'su' to root. -- Enriko Groen, Hosting manager -------------------------------------------------------- netivity bv www.netivity.nl enriko.groen@netivity.nl 038 - 850 1000 van nagellstraat 4 8011 eb zwolle -------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 8:57:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.hn1.net (mail.netsys.hn [200.41.53.45]) by hub.freebsd.org (Postfix) with ESMTP id BC7DB37B401 for ; Fri, 6 Jul 2001 08:57:48 -0700 (PDT) (envelope-from admin@netsys.hn) Received: from netsys.hn (admin.netsys.hn [200.41.53.61]) by mail.hn1.net (Postfix) with ESMTP id 08F74B1 for ; Fri, 6 Jul 2001 09:58:25 -0600 (CST) Message-ID: <3B45DFA0.DB3CDD2D@netsys.hn> Date: Fri, 06 Jul 2001 09:56:16 -0600 From: Quin Taylor Organization: The NetSys Company of Honduras X-Mailer: Mozilla 4.7 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: PostFix problem 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 asking anyone familar with POSTFIX to tell me if it is possible to 1.) Reject certain email addresses from being accepted by the entire domain. 2.) Set configuration so that when a mailbox or folder for a certain user is full it rejects incoming mail and returns to sender. Please reply to admin@netsys.hn thankyou Quin Taylor NetSys of Honduras To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 9: 1: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from exchange.twowaytv.co.uk (exchange.twowaytv.co.uk [194.6.2.173]) by hub.freebsd.org (Postfix) with ESMTP id 06A9637B403 for ; Fri, 6 Jul 2001 09:00:59 -0700 (PDT) (envelope-from ADyas@twowaytv.com) Received: by exchange.twowaytv.co.uk with Internet Mail Service (5.5.2653.19) id ; Fri, 6 Jul 2001 16:57:30 +0100 Message-ID: <911D8F660DF6D411B61F00500462BA01BE5180@exchange.twowaytv.co.uk> From: Alex Dyas To: freebsd-questions@FreeBSD.ORG Subject: Clipboard sharing Date: Fri, 6 Jul 2001 16:57:28 +0100 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 Hi, I've always wondered if this was possible but never really done anything about finding out. I run two machines here at work, one NT (for outlook, office, windows specific tools etc) and one FBSD 4.2 Release for everything else. Inevitably there is stuff that needs to be copied from one machine to the other, so I was wondering if there was anything that would share clipboards between NT and X windows across the two machines? alex.. -= Alex Dyas - Webmaster - Broadcast Ops - TwoWayTV =- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 9: 4:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from camel.kdsi.net (camel.kdsi.net [206.103.113.218]) by hub.freebsd.org (Postfix) with ESMTP id 7813537B403 for ; Fri, 6 Jul 2001 09:04:18 -0700 (PDT) (envelope-from tony@camel.kdsi.net) Received: from camel.kdsi.net (leepcD-070.sub-d.lee.net [208.205.127.70]) (authenticated (0 bits)) by camel.kdsi.net (8.12.0.Beta10/8.12.0.Beta10) with ESMTP id f66G6pKv017728 for ; Fri, 6 Jul 2001 11:06:52 -0500 (CDT) Message-ID: <3B45E12F.DD1C55EF@camel.kdsi.net> Date: Fri, 06 Jul 2001 11:02:55 -0500 From: Tony Wells X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Re: Rolling logs for IPFW References: <3B45CFE3.59303523@camel.kdsi.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 Nevermind. /etc/newsyslog.conf Tony Wells wrote: > > Hi all, > > I want to roll my /var/log/security log daily, but I'm wondering what > the behavior of IPFW is when you move the log. > > Has anyone done this? I'm just wondering what happens when you "steal" > the logfile to move it to a new name, and I can't experiment since the > box is live. > > TIA, > Tony Wells > > 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 Jul 6 9: 7:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mark9.vladsempire.net (hutch-1087.hutchtel.net [206.10.69.87]) by hub.freebsd.org (Postfix) with ESMTP id 192C537B407 for ; Fri, 6 Jul 2001 09:07:43 -0700 (PDT) (envelope-from jpaetzel@hutchtel.net) Received: from mark9.vladsempire.net (mark9.vladsempire.net [10.0.0.97]) by mark9.vladsempire.net (Postfix) with SMTP id 924AA1C7; Fri, 6 Jul 2001 11:14:02 -0500 (CDT) Content-Type: text/plain; charset="iso-8859-1" From: Josh Paetzel To: "Nickolay A. Kritsky" , Subject: Re: tftpd does not start :( Date: Fri, 6 Jul 2001 11:14:02 -0500 X-Mailer: KMail [version 1.2] References: <01aa01c10607$5c4f8ea0$0600a8c0@ibmka.internethelp.ru> In-Reply-To: <01aa01c10607$5c4f8ea0$0600a8c0@ibmka.internethelp.ru> MIME-Version: 1.0 Message-Id: <01070611140203.00348@mark9.vladsempire.net> 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 06 July 2001 05:35, Nickolay A. Kritsky wrote: > Hi, all! > Subject. When starting, it says nothing, but in /var/log/messages I see > following record: > > tftpd[73667]: recvfrom: Socket operation on non-socket > > What could be the reason for such behaviour? > > Thank you for any help. > NKritsky > PS: please cc: me your reply, because i am not subscribed to the list. I think I've seen that one before. IIRC it was because there is a flag you have to set in order to start it in daemon mode, as opposed to being started by inetd. Josh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 9: 9:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.lanset.com (mail.lanset.com [208.187.165.9]) by hub.freebsd.org (Postfix) with ESMTP id 5DF9737B403 for ; Fri, 6 Jul 2001 09:09:20 -0700 (PDT) (envelope-from damon@lanset.com) Received: from dynamic245-65.lanset.com (unverified [208.187.245.65]) by mail2.lanset.com (Vircom SMTPRS 4.0.179) with ESMTP id for ; Fri, 6 Jul 2001 09:02:41 -0700 Date: Fri, 6 Jul 2001 09:08:50 -0700 (PDT) From: damon blom X-Sender: damon@ To: questions@freebsd.org Subject: Joystick 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 added to kernel device joy0 at isa? port "IO_GAME" DMESG joy0 at port 0x201 on isa0 /dev ./MAKEDEV joy0 joy0 - no such device name XF86Config Section "InputDevice" Identifer "Joystick" driver "xf86Jstk.so" Option "Device" "/dev/joy0" Option "Minx" "100" Option "MaxX" "1300" Option "Miny" "100" Option "Maxy" "1100" Option "Delta" "20" EndSection Thank's so much Newbie freebsd 4.3 stable XF86 Release 4.1 NEC pc dial-up monitor: NEC C770 800x600 32 bpp 85Hz V-freq 53.6 H-freq non-int video: ati Rage Pro joystick: raider pro performance p-210 cannot do dynamic load of "xf86Jstk.so" - header missing or something To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 9:10:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mark9.vladsempire.net (hutch-1087.hutchtel.net [206.10.69.87]) by hub.freebsd.org (Postfix) with ESMTP id D219837B405 for ; Fri, 6 Jul 2001 09:10:43 -0700 (PDT) (envelope-from jpaetzel@hutchtel.net) Received: from mark9.vladsempire.net (mark9.vladsempire.net [10.0.0.97]) by mark9.vladsempire.net (Postfix) with SMTP id 0B0E61C7; Fri, 6 Jul 2001 11:17:04 -0500 (CDT) Content-Type: text/plain; charset="iso-8859-1" From: Josh Paetzel To: "S.SAFAK" , Subject: Re: DNS problem Date: Fri, 6 Jul 2001 11:17:04 -0500 X-Mailer: KMail [version 1.2] References: <001f01c10628$ebb5c020$0700a8c0@net.tr> In-Reply-To: <001f01c10628$ebb5c020$0700a8c0@net.tr> MIME-Version: 1.0 Message-Id: <01070611170404.00348@mark9.vladsempire.net> 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 06 July 2001 09:35, S.SAFAK wrote: > online-turk INTERACTIVE vs. 2.0 Hi, > I couldn't configure DNS on FreeBSD4.3 version. Besides I want to change my > static ip address. > > interturk# tail -15 /var/log/messages > Jul 6 09:21:50 interturk named[158]: 209.16.107:3: Database error near () > Jul 6 09:21:50 interturk named[158]: 209.16.107:4: Database error near () > Jul 6 09:21:50 interturk named[158]: 209.16.107:5: Database error near () > Jul 6 09:21:50 interturk named[158]: 209.16.107:6: Database error near () > Jul 6 09:21:50 interturk named[158]: 209.16.107:7: Database error near ()) > Jul 6 09:21:50 interturk named[158]: Zone "107.16.209.IN-ADDR.ARPA" (file > 209.1 6.107): no SOA RR found > Jul 6 09:21:50 interturk named[158]: master zone "107.16.209.IN-ADDR.ARPA" > (IN) rejected due to errors (serial 0) > Jul 6 09:21:50 interturk named[158]: /etc/namedb/named.conf:129: cannot > redefin e zone '0.0.127.IN-ADDR.ARPA' class IN > Jul 6 09:21:50 interturk named[159]: Ready to answer queries. > Jul 6 09:22:33 interturk /kernel: arplookup 209.16.96.1 failed: host is > not on local network > Jul 6 09:25:48 interturk /kernel: arplookup 209.16.96.1 failed: host is > not on local network > Jul 6 09:26:18 interturk /kernel: arplookup 209.16.96.1 failed: host is > not on local network > Jul 6 09:27:48 interturk /kernel: arplookup 209.16.96.1 failed: host is > not on local network > Jul 6 09:28:45 interturk su: admin to root on /dev/ttyp2 > Jul 6 09:28:48 interturk /kernel: arplookup 209.16.96.1 failed: host is > not on local network > > What am I doing wrong. Looks like lots of different things. Why don't you attach your config files and I'll take a look. Josh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 9:16:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id 40EA937B40A for ; Fri, 6 Jul 2001 09:16:15 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f66GGNc64784; Fri, 6 Jul 2001 12:16:23 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Fri, 6 Jul 2001 12:16:23 -0400 (EDT) From: Joe Clarke To: Josh Paetzel Cc: "Nickolay A. Kritsky" , Subject: Re: tftpd does not start :( In-Reply-To: <01070611140203.00348@mark9.vladsempire.net> Message-ID: <20010706121514.R64705-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 I don't know of any flag for tftpd that does this. However, comment out any tftp lines in /etc/inetd.conf, then killall -HUP inetd. After that, run /usr/libexec/tftpd. It starts just fine. Joe Clarke On Fri, 6 Jul 2001, Josh Paetzel wrote: > On Friday 06 July 2001 05:35, Nickolay A. Kritsky wrote: > > Hi, all! > > Subject. When starting, it says nothing, but in /var/log/messages I see > > following record: > > > > tftpd[73667]: recvfrom: Socket operation on non-socket > > > > What could be the reason for such behaviour? > > > > Thank you for any help. > > NKritsky > > PS: please cc: me your reply, because i am not subscribed to the list. > > I think I've seen that one before. IIRC it was because there is a flag you > have to set in order to start it in daemon mode, as opposed to being started > by inetd. > > Josh > > 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 Jul 6 9:18:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id CF07C37B409 for ; Fri, 6 Jul 2001 09:18:32 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f66GIru64788; Fri, 6 Jul 2001 12:18:53 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Fri, 6 Jul 2001 12:18:53 -0400 (EDT) From: Joe Clarke To: Josh Paetzel Cc: "Nickolay A. Kritsky" , Subject: Re: tftpd does not start :( In-Reply-To: <01070611140203.00348@mark9.vladsempire.net> Message-ID: <20010706121803.Y64705-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 Sorry, I forgot I'm using a customer TFTP implementation on this server. I get the same error, and the default tftpd's manpage doesn't list any special flag to get tftpd to start as a standalone daemon. Joe Clarke On Fri, 6 Jul 2001, Josh Paetzel wrote: > On Friday 06 July 2001 05:35, Nickolay A. Kritsky wrote: > > Hi, all! > > Subject. When starting, it says nothing, but in /var/log/messages I see > > following record: > > > > tftpd[73667]: recvfrom: Socket operation on non-socket > > > > What could be the reason for such behaviour? > > > > Thank you for any help. > > NKritsky > > PS: please cc: me your reply, because i am not subscribed to the list. > > I think I've seen that one before. IIRC it was because there is a flag you > have to set in order to start it in daemon mode, as opposed to being started > by inetd. > > Josh > > 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 Jul 6 9:24: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from Exchange2000.com-con.ag (exchange2000.com-con.net [212.6.164.8]) by hub.freebsd.org (Postfix) with ESMTP id DFE5F37B407 for ; Fri, 6 Jul 2001 09:24:00 -0700 (PDT) (envelope-from rh@com-con.net) Content-Class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1254" Content-Transfer-Encoding: quoted-printable Subject: AW: DNS problem X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 Date: Fri, 6 Jul 2001 18:23:59 +0100 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: DNS problem Thread-Index: AcEGOYAspjf28WpAT7WZ1sDjEtVVtwABsBrA From: "Heimes, Rene" To: "S.SAFAK" Cc: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG change your ip address like this: ifconfig inet man ifconfig should help anyway hth ren=E9 -----Urspr=FCngliche Nachricht----- Von: S.SAFAK [mailto:ssafak@vrturk.com] Gesendet: Freitag, 6. Juli 2001 16:31 An: Heimes, Rene Betreff: Re: DNS problem Hi, I couldn't configure DNS on FreeBSD4.3 version. Besides I want to change my static ip address. interturk# tail -15 /var/log/messages Jul 6 09:21:50 interturk named[158]: 209.16.107:3: Database error near () Jul 6 09:21:50 interturk named[158]: 209.16.107:4: Database error near () Jul 6 09:21:50 interturk named[158]: 209.16.107:5: Database error near () Jul 6 09:21:50 interturk named[158]: 209.16.107:6: Database error near () Jul 6 09:21:50 interturk named[158]: 209.16.107:7: Database error near ()) Jul 6 09:21:50 interturk named[158]: Zone "107.16.209.IN-ADDR.ARPA" (file 209.1 6.107): no SOA RR found Jul 6 09:21:50 interturk named[158]: master zone "107.16.209.IN-ADDR.ARPA" (IN) rejected due to errors (serial 0) Jul 6 09:21:50 interturk named[158]: /etc/namedb/named.conf:129: cannot redefin e zone '0.0.127.IN-ADDR.ARPA' class IN Jul 6 09:21:50 interturk named[159]: Ready to answer queries. Jul 6 09:22:33 interturk /kernel: arplookup 209.16.96.1 failed: host is not on local network Jul 6 09:25:48 interturk /kernel: arplookup 209.16.96.1 failed: host is not on local network Jul 6 09:26:18 interturk /kernel: arplookup 209.16.96.1 failed: host is not on local network Jul 6 09:27:48 interturk /kernel: arplookup 209.16.96.1 failed: host is not on local network Jul 6 09:28:45 interturk su: admin to root on /dev/ttyp2 Jul 6 09:28:48 interturk /kernel: arplookup 209.16.96.1 failed: host is not on local network What am I doing wrong. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 9:32:21 2001 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 5BF6637B403 for ; Fri, 6 Jul 2001 09:32:15 -0700 (PDT) (envelope-from tom@eborcom.com) Received: from eborcom.com ([62.253.91.252]) by mta06-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with SMTP id <20010706163212.PMQU295.mta06-svc.ntlworld.com@eborcom.com> for ; Fri, 6 Jul 2001 17:32:12 +0100 Received: (qmail 35840 invoked by uid 1001); 6 Jul 2001 16:32:04 -0000 Date: Fri, 6 Jul 2001 17:32:04 +0100 From: Tom Hukins To: Vadim Plessky Cc: doc@FreeBSD.org, questions@FreeBSD.org Subject: Re: dead link in documentation - FONTS -> ttf2pf.ps Message-ID: <20010706173204.C35333@eborcom.com> Mail-Followup-To: Tom Hukins , Vadim Plessky , doc@FreeBSD.org, questions@FreeBSD.org References: <200106192247.f5JMlJX21322@post.cnt.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200106192247.f5JMlJX21322@post.cnt.ru>; from lucy-ples@mtu-net.ru on Wed, Jun 20, 2001 at 02:48:20AM +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 Wed, Jun 20, 2001 at 02:48:20AM +0000, Vadim Plessky wrote: > Hello, > > I was searching for TrueType to PostScript conversion program, and found link > on this page: > http://www.freebsd.org/tutorials/fonts/article.html > > I want to download "ttf2pf.ps" file. > Unfortunately, at link pointing to it: > http://sunsite.icm.edu.pl/pub/GUST/contrib/BachoTeX98/ttf2pf > is dead This link is still working for me. Could you try again, please? > After some searching, I found new location for it, or it's available on > SourceForge: > http://ttf2pt1.sourceforge.net This seems to be a different project to me. Maybe it would be worth linking to both in the tutorial? If you've had a good look at them both and would like to send in some text, I'll be happy to modify the tutorial. Regards, Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 9:39:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from Exchange2000.com-con.ag (exchange2000.com-con.net [212.6.164.8]) by hub.freebsd.org (Postfix) with ESMTP id C44E837B403 for ; Fri, 6 Jul 2001 09:39:19 -0700 (PDT) (envelope-from rh@com-con.net) Content-Class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: ATM STM-1/ OC-3 singlemode NIC for FreeBSD X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 Date: Fri, 6 Jul 2001 18:39:18 +0100 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: ATM STM-1/ OC-3 singlemode NIC for FreeBSD Thread-Index: AcEGQpVGYRFrarwAR8OnsyAeqGkgkQ== From: "Heimes, Rene" 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 hello! does anyone know a reliable atm stm-1/oc-3 singlemode network interface card that is supported by freebsd? and, also important, where to get it from? (vendor/distributor) thanks in advance! ren=E9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 9:47:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from lucy.tbscom.com (mail2.tbscom.com [205.215.40.5]) by hub.freebsd.org (Postfix) with ESMTP id 86DC137B411 for ; Fri, 6 Jul 2001 09:47:06 -0700 (PDT) (envelope-from jake@coolbluei.com) Received: from localhost (adsl-20-72-88.asm.bellsouth.net [66.20.72.88]) by coolblueinteractive.net (8.10.2/8.10.2) with ESMTP id f66Gl4T23374 for ; Fri, 6 Jul 2001 12:47:04 -0400 Message-Id: <200107061647.f66Gl4T23374@lucy.tbscom.com> Date: Fri, 6 Jul 2001 12:47:03 -0400 Content-Type: text/plain; format=flowed; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v388) From: jake@coolbluei.com To: freebsd-questions@FreeBSD.ORG X-Mailer: Apple Mail (2.388) Content-Transfer-Encoding: 7bit Subject: valinux boxes Sender: owner-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 just curious if anyone had installed freeBSD on a Valinux 2230? I dont believe that there is anything that it would have problems with, I was just hoping for some reassurance if at all possible. By the way they are having some smoking deals, Jake Smith To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 9:53:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from Exchange2000.com-con.ag (exchange2000.com-con.net [212.6.164.8]) by hub.freebsd.org (Postfix) with ESMTP id 93B1237B401 for ; Fri, 6 Jul 2001 09:53:31 -0700 (PDT) (envelope-from rh@com-con.net) Content-Class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: PS: ATM STM-1/ OC-3 singlemode NIC for FreeBSD X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 Date: Fri, 6 Jul 2001 18:53:30 +0100 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: ATM STM-1/ OC-3 singlemode NIC for FreeBSD Thread-Index: AcEGQpVGYRFrarwAR8OnsyAeqGkgkQ== From: "Heimes, Rene" 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 to be more exact - i plan to use a bsd box as a router witch atm capabilities. are there any hints or are there certain difficulties i am going to face? (just in case feeBSD can=B4t handle) is there any other bsd/ unix that can handle atm well? -------- hello! does anyone know a reliable atm stm-1/oc-3 singlemode network interface card that is supported by freebsd? and, also important, where to get it from? (vendor/distributor) thanks in advance! ren=E9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 10: 1: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from lucy.tbscom.com (mail2.tbscom.com [205.215.40.5]) by hub.freebsd.org (Postfix) with ESMTP id A55E037B406 for ; Fri, 6 Jul 2001 10:00:58 -0700 (PDT) (envelope-from jake@coolbluei.com) Received: from localhost (adsl-20-72-88.asm.bellsouth.net [66.20.72.88]) by coolblueinteractive.net (8.10.2/8.10.2) with ESMTP id f66H0uT24163 for ; Fri, 6 Jul 2001 13:00:56 -0400 Message-Id: <200107061700.f66H0uT24163@lucy.tbscom.com> Date: Fri, 6 Jul 2001 13:00:54 -0400 Content-Type: text/plain; format=flowed; charset=us-ascii X-Mailer: Apple Mail (2.388) From: Jacob Smith To: freebsd-questions@FreeBSD.ORG Mime-Version: 1.0 (Apple Message framework v388) In-Reply-To: <007901c1063b$8ea68780$0e00000a@tomcat> Subject: Re: valinux boxes 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 >> > > Those "smoking" deals are because they're leaving the hardware > business. > Hope you're not expecting to get support for that box after you buy it. > > --- Andy > Well they are leaving hardware to focus on service and support, they intend to hold up on their warranty. Although I guess I have never had good luck with any vendor giving support that I feel was helpful in the least. So if the company folded tomorrow and I had my server I don't really think it would be that different from any other vendor except I wouldn't be able to buy replacement parts at 4 times what they should be. jake To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 10: 9:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from post.cnt.ru (post.cnt.ru [212.15.122.243]) by hub.freebsd.org (Postfix) with ESMTP id C19DF37B401; Fri, 6 Jul 2001 10:09:20 -0700 (PDT) (envelope-from lucy-ples@mtu-net.ru) Received: from there (ppp1-116.dial-up.cnt.ru [212.15.118.116]) by post.cnt.ru (8.11.3/8.11.1) with SMTP id f66H9H404485; Fri, 6 Jul 2001 21:09:17 +0400 Message-Id: <200107061709.f66H9H404485@post.cnt.ru> Content-Type: text/plain; charset="iso-8859-1" From: Vadim Plessky Reply-To: Vadim Plessky To: Tom Hukins Subject: Re: dead link in documentation - FONTS -> ttf2pf.ps Date: Fri, 6 Jul 2001 21:04:56 +0000 X-Mailer: KMail [version 1.2.2] References: <200106192247.f5JMlJX21322@post.cnt.ru> <20010706171902.B35333@eborcom.com> In-Reply-To: <20010706171902.B35333@eborcom.com> Cc: doc@FreeBSD.org, questions@FreeBSD.org 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 On Friday 06 July 2001 16:19, Tom Hukins wrote: | On Wed, Jun 20, 2001 at 02:48:20AM +0000, Vadim Plessky wrote: | > http://www.freebsd.org/tutorials/fonts/article.html | > | > I want to download "ttf2pf.ps" file. | > Unfortunately, at link pointing to it: | > http://sunsite.icm.edu.pl/pub/GUST/contrib/BachoTeX98/ttf2pf | > is dead | | This link is still working for me. Could you try again, please? ok, I will try once more :-) | | > After some searching, I found new location for it, or it's availabl= e on | > SourceForge: | > http://ttf2pt1.sourceforge.net | | This seems to be a different project to me. yes, I found later one that project is different. | | Maybe it would be worth linking to both in the tutorial? If you've | had a good look at them both and would like to send in some text, I'l= l | be happy to modify the tutorial. I am now rather familiar with this program, and it works very well, IMO. Quality of TTF fonts converted by it to TrueType, is very good. I was looking for TrueType to PostScript Type1 font convertor, and this=20 program suits my needs (ok, it has some bugs/glitches, but it is still un= der=20 development, and last version was released just in June 2001) Developers plan to add Flex hint and FamilyBlues to future versions, so i= t=20 can immprove general quality of generated fonts. What's also quite interesting is the fact that: *GhostScript can handle=20 TrueType fonts*. Here are some answers I received just today on gs-devel = list: -------------- Yes, TrueType is supported natively in GhostScript. The current renderer does not interpret the hints in the TrueType font (solely because of patent problems). For printing at resolutions of 600dpi and higher, the difference is subtle. You'll need to embed the font as a "Type 42" font. This is described on pages 346-348 of the PostScript Language Reference Manual, 3rd ed. Note that this is a "LanguageLevel 3" feature, so it won't work with older laser printers. Ghostscript has supported these since version 3.66, over five years ago. -------------- Just wanted to add a note to Raph's that if you have TT fonts in a folder identified to Ghostscript with the GS_FONTPATH environment variable, or via the -sFONTPATH=3D command line switch, then GS will automatically scan the folder for any valid fonts, Type 1 or TT and add these to the Fontmap. The scan is done when GS is asked to find a font that does not have an existing entry in the Fontmap. There is no need to convert the TT fonts to Type 42.=20 -------------- I haven't tried both proposed solutions, but they look like quite promisi= ng. May be, you will want to add these tips to documentation as well.=20 | | Regards, | Tom --=20 Best Regards, Vadim Plessky http://kde2.newmail.ru (English) 33 Window Decorations and 6 Widget Styles for KDE http://kde2.newmail.ru/kde_themes.html Do you have Arial font installed? Just test it! http://kde2.newmail.ru/font_test_arial.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 10:49:14 2001 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 8563037B406 for ; Fri, 6 Jul 2001 10:49:11 -0700 (PDT) (envelope-from oberman@ptavv.es.net) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (8.10.1/8.10.1) with ESMTP id f66Hn0c29170; Fri, 6 Jul 2001 10:49:00 -0700 (PDT) Message-Id: <200107061749.f66Hn0c29170@ptavv.es.net> To: Linh Pham Cc: uwi mAn , questions@FreeBSD.ORG Subject: Re: your mail In-reply-to: Your message of "Thu, 05 Jul 2001 18:36:23 PDT." Date: Fri, 06 Jul 2001 10:49:00 -0700 From: "Kevin Oberman" Sender: owner-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, 5 Jul 2001 18:36:23 -0700 (PDT) > From: Linh Pham > Sender: owner-freebsd-questions@FreeBSD.ORG > > On 2001-07-06, uwi mAn scribbled: > > # what's the difference between SVR and Solaris? > > SVR standard for System V Release and is a way of saying (what used to > be) AT&T Unix. Solaris (which came from the BSD background and at that > time was called SunOS) is a System V implementation of UNIX. > > UNIX comes in two major flavors: System V and BSD. Current UNIX > operating systems are either based on System V or BSD... but many > include features from the other implementation (like Digital UNIX... now > Compaq Tru64 Unix). > > Correct me if I messed up or am flat out wrong ;-) I guess I should not correct you as you are not flat-out wrong, but there are a number of Unix/Unix-like kernels out there with a variety of environments that are BSD-like, SysV line, and flat out weird. The example you mention of Tru64 UNIX is not BSD or SysV. It is based on OSF/1 which was, in turn, based on mach. It was designed to look like either BSD or SysV, depending on what you preferred, although to get a real SysV flavor you need to add the SysV licensed products package to get things like sar. But I've been told that with this package, it is almost indistinguishable from SysV. Darwin and MacOS X are also based on a Mach kernel, but have only a BSD environment around the kernel. 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 Fri Jul 6 10:55:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.usermail.com (www.usermail.com [208.239.240.90]) by hub.freebsd.org (Postfix) with ESMTP id 8787F37B405 for ; Fri, 6 Jul 2001 10:55:43 -0700 (PDT) (envelope-from kobes@usermail.com) Received: from terrapin (nic-41-c89-114.mn.mediaone.net [66.41.89.114]) by mail.usermail.com (8.9.3/8.9.3) with SMTP id MAA06999 for ; Fri, 6 Jul 2001 12:58:03 -0400 Message-ID: <004001c10645$64f25e00$0201a8c0@goldenrod.net> From: "Mark Kobussen" To: Subject: IPFW/NATD or Cable Modem Trouble?? Date: Fri, 6 Jul 2001 12:59:25 -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.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 I'm having some problems with my cable modem service, and I have yet to figure out whether it is caused by my incompetence with UNIX, or questionable service. Here's the Problem: My cable service dies probably every 30 minutes of internet usage. Up until this point, the remedy is usually to cycle the power to the cable modem, at which time I'm able to access the internet again. The one thing that confuses me, is that at the same time the cable modem stops responding, I can no longer telnet into the FreeBSD box - it just won't respond. The FreeBSD machine just runs the whole time, without any error messages whatsoever. I will mention that as I was writing this, I could no longer access the FreeBSD machine. Approximately 5-10 minutes later it began responding again, without me power cycling the cable modem. Here's the information: Cable Modem: 3com Sharkfin FreeBSD 4.3, using NATD/IPFW for gateway functions 2 LinkSys Ether16 ISA 10BaseT NIC's ed1 is connected to the hub ed2 is connected to the cable modem ----- Pertinent rc.conf Information gateway_enable="YES" hostname="marlborough " ifconfig_ed1="inet 192.168.1.1 netmask 255.255.255.0" ifconfig_ed2="DHCP" inetd_enable="YES" kern_securelevel_enable="NO" linux_enable="YES" moused_enable="YES" sendmail_enable="YES" gateway_enable="YES" sshd_enable="YES" portmap_enable="YES" firewall_enable="YES" firewall_script="/etc/firewall/fwrules" natd_enable="YES" natd_flags="-dynamic" natd_interface="ed2" ----- Now follows is /etc/firewall/fwrules /sbin/ipfw -f flush /sbin/ipfw add 1000 pass all from 127.0.0.1 to 127.0.0.1 /sbin/ipfw add 2000 divert natd all from any to any via ed2 /sbin/ipfw add 6500 pass all from any to any ----- Important ifconfig information; ed2 inet address has been changed ed1: flags=8843 mtu 1500 inet 192.168.1.1 netmask 0xffffff00 broadcast 192.168.1.255 inet6 fe80::240:5ff:fe6f:b0d4%ed1 prefixlen 64 scopeid 0x2 ether 00:40:05:6f:b0:d4 ed2: flags=8843 mtu 1500 inet6 fe80::240:5ff:fe6e:4ded%ed2 prefixlen 64 scopeid 0x3 inet 11.22.33.114 netmask 0xfffff800 broadcast 255.255.255.255 ether 00:40:05:6e:4d:ed ----- Crucial netstat -nr; some names changed to protect the innocent Internet: Destination Gateway Flags Refs Use Netif Expire default 11.22.33.1 UGSc 4 30356 ed2 11.22.33/21 link#3 UC 0 0 ed2 => 127.0.0.1 127.0.0.1 UH 0 0 lo0 192.168.1 link#2 UC 0 0 ed1 => ----- Finally, ipfw -at list 01000 0 0 allow ip from 127.0.0.1 to 127.0.0.1 02000 36196 21882514 Thu Jul 5 23:24:33 2001 divert 8668 ip from any to any via ed2 06500 80257 46277217 Thu Jul 5 23:26:37 2001 allow ip from any to any 65535 1 345 Thu Jul 5 17:14:47 2001 deny ip from any to any To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 11: 0:30 2001 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 36BE637B406 for ; Fri, 6 Jul 2001 11:00:28 -0700 (PDT) (envelope-from john.toon@btinternet.com) Received: from [213.122.171.101] (helo=Dionysus) by gadolinium.btinternet.com with smtp (Exim 3.22 #9) id 15IZtx-0004zi-00 for freebsd-questions@freebsd.org; Fri, 06 Jul 2001 19:00:26 +0100 Content-Type: text/plain; charset="us-ascii" From: John Toon To: freebsd-questions@freebsd.org Subject: Installworld failure! Date: Fri, 6 Jul 2001 18:59:32 +0000 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <01070618590800.00255@Dionysus> 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, Ack, make installworld failed! The Makefile seems broken: Dionysus# make installworld mkdir -p /tmp/install.281 for prog in [ awk cat chflags chmod chown date echo egrep find grep install ln make makewhatis mtree mv perl rm sed sh sysctl test true uname wc zic; do cp `which $prog` /tmp/install.281; done 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/src. *** Error code 1 Stop in /usr/src. The cp command is being called incorrectly... Anyone got any suggestions? John. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 11: 9: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from jordan.llnl.gov (jordan.llnl.gov [128.115.36.14]) by hub.freebsd.org (Postfix) with ESMTP id BC2CF37B403 for ; Fri, 6 Jul 2001 11:08:59 -0700 (PDT) (envelope-from alley1@llnl.gov) Received: (from wea@localhost) by jordan.llnl.gov (8.11.4/8.11.4) id f66I8w102447 for freebsd-questions@freebsd.org; Fri, 6 Jul 2001 11:08:58 -0700 (PDT) Date: Fri, 6 Jul 2001 11:08:58 -0700 (PDT) From: Ed Alley Message-Id: <200107061808.f66I8w102447@jordan.llnl.gov> To: freebsd-questions@freebsd.org Subject: XView question Sender: owner-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 relatively new to FreeBSD (since 3.2) and I have a question about textedit (yes, textedit). I have been working in the UNIX environment since the mid 80's (starting with Sun OS running Openwindows) so my attachment to textedit is genuine. :) Anyway I have been able to successfully install textedit on previous UNIX systems except FreeBSD4.3. Something is different about how 4.3 handles the X windowing system. (I've noticed that some of the directories have moved since 4.2, is this due to the distribution of XFree86? I am running XFree86-3.3.6 that came with the 4.3 distribution disk. I have downloaded the /usr/ports/xview and /usr/ports/textedit sources and successfully compiled them on 4.3, however, textedit will not run using the installed X server on the 4.3 system. I get: XView error: Cannot open connection to window server: jordan.llnl.gov:0.0 (Server package) However, textedit will run over a network and successfully uses the X-server on the remote client box. It just crashes when it tries to use the X-server that came with the 4.3 distribution. Any hints or suggestions would be greatly appreciated. I know that textedit is old, but I'm productive with it and would like to continue with it if I can. Ed Alley wea@llnl.gov P.S. Although I am a member of some of the digest groups (freebsd-questions-digest for one) I am not a member of freebsd-questions so please cc your response to me rather than directly to freebsd-questions as I wouldn't get the answer until the digest comes out. :-) Thanks Ed :wq To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 11:13:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id 2BDB737B406 for ; Fri, 6 Jul 2001 11:13:45 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f66IE9r64891; Fri, 6 Jul 2001 14:14:09 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Fri, 6 Jul 2001 14:14:09 -0400 (EDT) From: Joe Clarke To: Mark Kobussen Cc: Subject: Re: IPFW/NATD or Cable Modem Trouble?? In-Reply-To: <004001c10645$64f25e00$0201a8c0@goldenrod.net> Message-ID: <20010706141305.Q64705-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 This looks good to me. This is pretty much _exactly_ what I'm doing, and it works fine. It could be questionable service, but you might want some more eyes looking at this. Joe Clarke On Fri, 6 Jul 2001, Mark Kobussen wrote: > I'm having some problems with my cable modem service, and I have yet to > figure out whether it is caused by my incompetence with UNIX, or > questionable service. > > Here's the Problem: > My cable service dies probably every 30 minutes of internet usage. Up until > this point, the remedy is usually to cycle the power to the cable modem, at > which time I'm able to access the internet again. The one thing that > confuses me, is that at the same time the cable modem stops responding, I > can no longer telnet into the FreeBSD box - it just won't respond. The > FreeBSD machine just runs the whole time, without any error messages > whatsoever. > > I will mention that as I was writing this, I could no longer access the > FreeBSD machine. Approximately 5-10 minutes later it began responding again, > without me power cycling the cable modem. > > Here's the information: > > Cable Modem: 3com Sharkfin > > FreeBSD 4.3, using NATD/IPFW for gateway functions > 2 LinkSys Ether16 ISA 10BaseT NIC's > > ed1 is connected to the hub > ed2 is connected to the cable modem > > ----- Pertinent rc.conf Information > gateway_enable="YES" > hostname="marlborough " > ifconfig_ed1="inet 192.168.1.1 netmask 255.255.255.0" > ifconfig_ed2="DHCP" > inetd_enable="YES" > kern_securelevel_enable="NO" > linux_enable="YES" > moused_enable="YES" > sendmail_enable="YES" > gateway_enable="YES" > sshd_enable="YES" > portmap_enable="YES" > firewall_enable="YES" > firewall_script="/etc/firewall/fwrules" > natd_enable="YES" > natd_flags="-dynamic" > natd_interface="ed2" > > ----- Now follows is /etc/firewall/fwrules > /sbin/ipfw -f flush > /sbin/ipfw add 1000 pass all from 127.0.0.1 to 127.0.0.1 > /sbin/ipfw add 2000 divert natd all from any to any via ed2 > /sbin/ipfw add 6500 pass all from any to any > > ----- Important ifconfig information; ed2 inet address has been changed > ed1: flags=8843 mtu 1500 > inet 192.168.1.1 netmask 0xffffff00 broadcast 192.168.1.255 > inet6 fe80::240:5ff:fe6f:b0d4%ed1 prefixlen 64 scopeid 0x2 > ether 00:40:05:6f:b0:d4 > ed2: flags=8843 mtu 1500 > inet6 fe80::240:5ff:fe6e:4ded%ed2 prefixlen 64 scopeid 0x3 > inet 11.22.33.114 netmask 0xfffff800 broadcast 255.255.255.255 > ether 00:40:05:6e:4d:ed > > ----- Crucial netstat -nr; some names changed to protect the innocent > Internet: > Destination Gateway Flags Refs Use > Netif Expire > default 11.22.33.1 UGSc 4 30356 > ed2 > 11.22.33/21 link#3 UC 0 0 > ed2 => > 127.0.0.1 127.0.0.1 UH 0 0 > lo0 > 192.168.1 link#2 UC 0 0 > ed1 => > > ----- Finally, ipfw -at list > 01000 0 0 allow ip from 127.0.0.1 to 127.0.0.1 > 02000 36196 21882514 Thu Jul 5 23:24:33 2001 divert 8668 ip from any to any > via ed2 > 06500 80257 46277217 Thu Jul 5 23:26:37 2001 allow ip from any to any > 65535 1 345 Thu Jul 5 17:14:47 2001 deny ip from any to any > > > 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 Jul 6 11:14:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id 1FD8037B405 for ; Fri, 6 Jul 2001 11:14:53 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f66IEa264362; Fri, 6 Jul 2001 14:14:36 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Fri, 6 Jul 2001 14:14:35 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Mark Kobussen Cc: Subject: Re: IPFW/NATD or Cable Modem Trouble?? In-Reply-To: <004001c10645$64f25e00$0201a8c0@goldenrod.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 Fri, 6 Jul 2001, Mark Kobussen wrote: When I first got my cable modem, the service was sporatic, but has been stable for months now. I have a similar setup to yours, with a few differences: > ed1 is connected to the hub > ed2 is connected to the cable modem > > ----- Pertinent rc.conf Information > gateway_enable="YES" > hostname="marlborough " > ifconfig_ed1="inet 192.168.1.1 netmask 255.255.255.0" > ifconfig_ed2="DHCP" > inetd_enable="YES" > kern_securelevel_enable="NO" > linux_enable="YES" > moused_enable="YES" > sendmail_enable="YES" > gateway_enable="YES" > sshd_enable="YES" > portmap_enable="YES" > firewall_enable="YES" > firewall_script="/etc/firewall/fwrules" > natd_enable="YES" > natd_flags="-dynamic" natd_flags="-l -d -s -m -u -dynamic -ned2" > natd_interface="ed2" > > ----- Now follows is /etc/firewall/fwrules > /sbin/ipfw -f flush > /sbin/ipfw add 1000 pass all from 127.0.0.1 to 127.0.0.1 > /sbin/ipfw add 2000 divert natd all from any to any via ed2 > /sbin/ipfw add 6500 pass all from any to any I also added the following to let DHCP through # Allow DHCP through ${fwcmd} add pass udp from any 68 to any 67 out via ${oif} ${fwcmd} add pass udp from any 67 to any 68 in via ${oif} And, do you have the following in /etc/dhclient.conf: interface "ed2" { send host-name ""; request subnet-mask, broadcast-address, routers,\ domain-name-servers, domain-name, time-servers; require domain-name-servers; } HTH Jim ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 11:15: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from q.closedsrc.org (ip233.gte15.rb1.bel.nwlink.com [209.20.244.233]) by hub.freebsd.org (Postfix) with ESMTP id 3BE0137B401 for ; Fri, 6 Jul 2001 11:15:07 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id 5C53C55407; Fri, 6 Jul 2001 10:59:44 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id 4E81651610; Fri, 6 Jul 2001 10:59:44 -0700 (PDT) Date: Fri, 6 Jul 2001 10:59:44 -0700 (PDT) From: Linh Pham To: Kevin Oberman Cc: uwi mAn , Subject: Re: your mail In-Reply-To: <200107061749.f66Hn0c29170@ptavv.es.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 2001-07-06, Kevin Oberman scribbled: # I guess I should not correct you as you are not flat-out wrong, but # there are a number of Unix/Unix-like kernels out there with a variety # of environments that are BSD-like, SysV line, and flat out weird. Thanks for getting me straightened out :) -- Linh Pham [lplist@closedsrc.org] // 404b - Brain not found To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 11:16:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.stelesys.com [208.177.187.226]) by hub.freebsd.org (Postfix) with ESMTP id CECFC37B403 for ; Fri, 6 Jul 2001 11:16:51 -0700 (PDT) (envelope-from jim@freeze.org) Received: (from jim@localhost) by freeze.org (8.11.3/8.11.2) id f66IGeY64463; Fri, 6 Jul 2001 14:16:40 -0400 (EDT) (envelope-from jim) X-Authentication-Warning: www.stelesys.com: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.stelesys.com: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Fri, 6 Jul 2001 14:16:40 -0400 (EDT) From: Jim Freeze X-X-Sender: To: Mark Kobussen Cc: Subject: Re: IPFW/NATD or Cable Modem Trouble?? 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 Fri, 6 Jul 2001, Jim Freeze wrote: > natd_flags="-l -d -s -m -u -dynamic -ned2" should be > natd_flags="-l -d -s -m -u -dynamic -n ed2" Jim ========================================================= Jim Freeze jim@freeze.org --------------------------------------------------------- No comment at this time. http://www.freeze.org ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 11:17:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mbs.microbiz.net (mbs.microbiz.net [204.244.63.1]) by hub.freebsd.org (Postfix) with ESMTP id 89DD937B405 for ; Fri, 6 Jul 2001 11:17:46 -0700 (PDT) (envelope-from kulraj@microbiz.net) Received: from kulraj (ws101.mbs-lan [10.0.0.101]) by mbs.microbiz.net (Postfix) with SMTP id 6AE97592DC for ; Fri, 6 Jul 2001 11:17:45 -0700 (PDT) Message-ID: <048401c10649$6769c9d0$6500000a@kulraj> From: "Kulraj Gurm" To: Subject: In case anyone is interested...... Date: Fri, 6 Jul 2001 11:28:07 -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 Sender: owner-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://www.channelline.com/daily_article.cfm?daily=DLY070501-04 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 11:24: 7 2001 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 D2D7037B405 for ; Fri, 6 Jul 2001 11:24:02 -0700 (PDT) (envelope-from oberman@ptavv.es.net) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (8.10.1/8.10.1) with ESMTP id f66INqc32197; Fri, 6 Jul 2001 11:23:52 -0700 (PDT) Message-Id: <200107061823.f66INqc32197@ptavv.es.net> To: "Kulraj Gurm" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: In case anyone is interested...... In-reply-to: Your message of "Fri, 06 Jul 2001 11:28:07 PDT." <048401c10649$6769c9d0$6500000a@kulraj> Date: Fri, 06 Jul 2001 11:23:52 -0700 From: "Kevin Oberman" Sender: owner-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 this a good thing or not? It's nice to be liked, but when it's the class bully, sometimes I start to worry a bit. 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 Fri Jul 6 11:27:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from c007.snv.cp.net (c007-h000.c007.snv.cp.net [209.228.33.206]) by hub.freebsd.org (Postfix) with SMTP id 8A45237B401 for ; Fri, 6 Jul 2001 11:27:07 -0700 (PDT) (envelope-from otterr@telocity.com) Received: (cpmta 1302 invoked from network); 6 Jul 2001 11:27:05 -0700 Received: from dsl-216-227-91-85.telocity.com (HELO zoso) (216.227.91.85) by smtp.telocity.com (209.228.33.206) with SMTP; 6 Jul 2001 11:27:05 -0700 X-Sent: 6 Jul 2001 18:27:05 GMT Reply-To: From: "Otter" To: "Giorgos Keramidas" , "faisal gillani" Cc: , Subject: RE: script help thanks !!! Date: Fri, 6 Jul 2001 14:25:25 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 In-Reply-To: <20010706124158.A27819@hades.hell.gr> 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 If it HAS to be done, try "expect". It's located in the ports. If you have another machine that can commnicate over to the soon-to-be single user machine's console serial port, you might be able to work something out with that. -Otter > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Giorgos > Keramidas > Sent: Friday, July 06, 2001 5:42 AM > To: faisal gillani > Cc: questions@FreeBSD.ORG; mwm@mired.org > Subject: Re: script help thanks !!! > > > -----Original Message----- > From: faisal gillani > Subject: script help thanks !!! > Date: Fri, Jul 06, 2001 at 02:24:55AM -0700 > > > well friend > > > > i am a newbie .. i wanted a script that runs in a non > > busy hour on my server > > & automatically runs fsck on my files systems .. > > before that turn itself > > into single user mode > > What is the point of fsck'ing regularly a filesystem that is working > fine until that moment? More importantly, why bring a > working server > to single user mode on a regular basis, possibly interrupting some > work it's doing? How are you going to find out *when* the > right time > will be, to shut down everything? > > No, what you are asking can't be done in a single script; > and I don't > see a reason why one would like to do it. > > -giorgos > > 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 Jul 6 11:39: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hemi.metrotv.com (hemi.metrotv.com [209.98.153.2]) by hub.freebsd.org (Postfix) with SMTP id 4FCC337B408 for ; Fri, 6 Jul 2001 11:38:53 -0700 (PDT) (envelope-from eric@metrotv.com) Received: (qmail 50551 invoked by uid 1009); 6 Jul 2001 18:41:49 -0000 Received: from remoteaccess-3.metrotv.com (HELO ?209.98.153.49?) (209.98.153.49) by hemi.metrotv.com with SMTP; 6 Jul 2001 18:41:49 -0000 User-Agent: Microsoft-Entourage/9.0.1.3108 Date: Fri, 06 Jul 2001 13:35:26 -0500 Subject: Is this a routing problem? From: Eric Long To: Message-ID: 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 am at a loss with this setup, any suggestions are welcome: Details: Running Freebsd 4.3-RELEASE, ipfw, natd, dhcpd, and gateway is enabled I'm running this box with two NIC's and an Emerging Technologies card that functions as a router. The Emerging Technologies card (eth0) is the WAN interface, one of the NIC's (fxp1) is the LAN interface. Nothing on the LAN interface can access the internet (via the WAN interface). What I know: 1.) Traffic gets to the FreeBSD box from the WAN interface. 2.) Traffic goes out the WAN interface from the FreeBSD box 3.) Traffic goes out the LAN interface from the FreeBSD box (workstations are assigned ip's via dhcpd therefore telling me that they are seeing the box on the network via the LAN interface), plus I can also ping these boxes when they are assigned an IP 4.) Traffic does NOT go out the WAN interface from the LAN interface (no workstation can reach the net). Problem: Is this a routing issue? Traffic simply isn't being passed from the LAN interface to the WAN interface. My routing tables: % netstat -r -n Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default 65.114.176.41 UGSc 6 24630 eth0 65.114.176.41 65.114.176.42 UH 5 2 eth0 127.0.0.1 127.0.0.1 UH 0 4 lo0 192.168.1 link#2 UC 0 0 fxp1 => eth0 is 65.114.176.42 fxp1 is 192.168.1.1 Pertinent details from /etc/rc.conf: gateway_enable="YES" firewall_enable="YES" firewall_type="open" natd_enable="YES" natd_interface="eth0" natd_flags="-f /etc/natd.conf" ipfw details: % ipfw list 00100 allow ip from any to any via lo0 00200 deny ip from any to 127.0.0.0/8 00300 deny ip from 127.0.0.0/8 to any 65000 allow ip from any to any 65535 deny ip from any to any -Eric To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 11:40: 6 2001 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 3F31437B407 for ; Fri, 6 Jul 2001 11:39:59 -0700 (PDT) (envelope-from john.toon@btinternet.com) Received: from host213-122-107-221.btinternet.com ([213.122.107.221] helo=btinternet.com) by gadolinium.btinternet.com with esmtp (Exim 3.22 #9) id 15IaWD-0002rv-00 for freebsd-questions@freebsd.org; Fri, 06 Jul 2001 19:39:58 +0100 Message-ID: <3B4613FC.658308F7@btinternet.com> Date: Fri, 06 Jul 2001 19:39:40 +0000 From: John Toon X-Mailer: Mozilla 4.72 [en] (X11; I; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: More Installworld failures... 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 tried editing the Makefile.inc1 file since clearly the cp command was missing the closing "]" in the script, however it then complained about the "done" command even after fiddling about with the semi-colon placements. I tried deleting the Makefiles, which I re-retrieved from the master CVS server this time instead, but they were also broken. I don't know enough about shell programming to competently edit the Makefile.inc1, so could someone please fix it... Oh and I forgot to mention before that I'm referring to the Makefiles for FreeBSD-4.3-RELEASE. John. The relevant part: # # installworld # # Installs everything compiled by a 'buildworld'. # installworld: mkdir -p ${INSTALLTMP} for prog in [ awk cat chflags chmod chown date echo egrep find grep \ install ln make makewhatis mtree mv perl rm sed sh sysctl \ test true uname wc zic; do \ ^^^^^^^^^^^ cp `which $$prog` ${INSTALLTMP}; \ done ^^^^^^ cd ${.CURDIR}; ${IMAKE} reinstall rm -rf ${INSTALLTMP} # (ignore the bad line wrapping; that's just my mail client ;^) ) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 11:44:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id 2592C37B407 for ; Fri, 6 Jul 2001 11:44:47 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f66IjEP64945; Fri, 6 Jul 2001 14:45:14 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Fri, 6 Jul 2001 14:45:14 -0400 (EDT) From: Joe Clarke To: Eric Long Cc: Subject: Re: Is this a routing problem? In-Reply-To: Message-ID: <20010706144417.F64705-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 You're ipfw rules aren't diverting anything to natd. You need a rules like: /sbin/ipfw add divert natd all from any to any via eth0 In your firewall rules. Joe Clarke On Fri, 6 Jul 2001, Eric Long wrote: > I am at a loss with this setup, any suggestions are welcome: > > Details: > Running Freebsd 4.3-RELEASE, ipfw, natd, dhcpd, and gateway is enabled > > I'm running this box with two NIC's and an Emerging Technologies card that > functions as a router. The Emerging Technologies card (eth0) is the WAN > interface, one of the NIC's (fxp1) is the LAN interface. Nothing on the LAN > interface can access the internet (via the WAN interface). > > What I know: > 1.) Traffic gets to the FreeBSD box from the WAN interface. > 2.) Traffic goes out the WAN interface from the FreeBSD box > 3.) Traffic goes out the LAN interface from the FreeBSD box (workstations > are assigned ip's via dhcpd therefore telling me that they are seeing the > box on the network via the LAN interface), plus I can also ping these boxes > when they are assigned an IP > 4.) Traffic does NOT go out the WAN interface from the LAN interface (no > workstation can reach the net). > > Problem: > Is this a routing issue? Traffic simply isn't being passed from the LAN > interface to the WAN interface. > > My routing tables: > > % netstat -r -n > Routing tables > > Internet: > Destination Gateway Flags Refs Use Netif > Expire > default 65.114.176.41 UGSc 6 24630 eth0 > 65.114.176.41 65.114.176.42 UH 5 2 eth0 > 127.0.0.1 127.0.0.1 UH 0 4 lo0 > 192.168.1 link#2 UC 0 0 fxp1 => > > eth0 is 65.114.176.42 > fxp1 is 192.168.1.1 > > Pertinent details from /etc/rc.conf: > gateway_enable="YES" > firewall_enable="YES" > firewall_type="open" > natd_enable="YES" > natd_interface="eth0" > natd_flags="-f /etc/natd.conf" > > ipfw details: > % ipfw list > 00100 allow ip from any to any via lo0 > 00200 deny ip from any to 127.0.0.0/8 > 00300 deny ip from 127.0.0.0/8 to any > 65000 allow ip from any to any > 65535 deny ip from any to any > > -Eric > > > 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 Jul 6 11:51:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f197.law9.hotmail.com [64.4.9.197]) by hub.freebsd.org (Postfix) with ESMTP id 414C437B407 for ; Fri, 6 Jul 2001 11:51:23 -0700 (PDT) (envelope-from thierryblack@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 6 Jul 2001 11:51:23 -0700 Received: from 142.165.70.130 by lw9fd.law9.hotmail.msn.com with HTTP; Fri, 06 Jul 2001 18:51:22 GMT X-Originating-IP: [142.165.70.130] From: "Thierry Black" To: freebsd-questions@freebsd.org Subject: printing to logs (logging to printer) Date: Fri, 06 Jul 2001 12:51:22 -0600 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 06 Jul 2001 18:51:23.0029 (UTC) FILETIME=[A6E37450:01C1064C] Sender: owner-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 set up to send a copy of some sys logs to a printer for security and archives. Can I use tee to branch the log output to printer and file? I want the entrys to print one at a time in realtime. for that I think a dotmatrix printer is the answer, but I couldn't find any new dotmatrix printers for under $200. It doesn't have to be fast or print really sharp. i plan on printing about 2000 lines (40 pages?) per day. Any one have recommendations? thank you - thierry _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at 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 Fri Jul 6 11:59:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from server03.BACHSIMPSON (bs211.lweb.net [209.167.144.211]) by hub.freebsd.org (Postfix) with ESMTP id 8D8A837B403 for ; Fri, 6 Jul 2001 11:59:14 -0700 (PDT) (envelope-from jorcheson@bach-simpson.com) Received: from jorcheson (ENG1 [10.0.0.76]) by server03.BACHSIMPSON with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id NFLL7TZ7; Fri, 6 Jul 2001 15:01:05 -0400 Reply-To: From: "John Orcheson" To: Subject: jdk Date: Fri, 6 Jul 2001 14:59:03 -0400 Message-ID: <000001c1064d$ba062d60$4c00000a@jorcheson> 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 8.5, Build 4.71.2173.0 Importance: Normal Disposition-Notification-To: "John Orcheson" X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3612.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 When I try to compile I get this error: > javac HelloWorldApp.java /var/www/homepages/bachsimpson/java/jdk1.1.8/bin/i386/green_threads/javac: /var/ www/homepages/bachsimpson/java/jdk1.1.8/bin/i386/green_threads/java: not found > Any Suggestions? I am stumped. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 11:59:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hemi.metrotv.com (hemi.metrotv.com [209.98.153.2]) by hub.freebsd.org (Postfix) with SMTP id 43B9037B405 for ; Fri, 6 Jul 2001 11:59:42 -0700 (PDT) (envelope-from eric@metrotv.com) Received: (qmail 50820 invoked by uid 1009); 6 Jul 2001 19:02:41 -0000 Received: from remoteaccess-3.metrotv.com (HELO ?209.98.153.49?) (209.98.153.49) by hemi.metrotv.com with SMTP; 6 Jul 2001 19:02:41 -0000 User-Agent: Microsoft-Entourage/9.0.1.3108 Date: Fri, 06 Jul 2001 13:56:17 -0500 Subject: Re: Is this a routing problem? From: Eric Long To: Joe Clarke Cc: Message-ID: In-Reply-To: <20010706144417.F64705-100000@shumai.marcuscom.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 Sorry, I inadvertently deleted the first line of ipfw output in my previous message. I do have that line and it is still not working. ipfw output: 00050 divert 8668 ip from any to any via eth0 00100 allow ip from any to any via lo0 00200 deny ip from any to 127.0.0.0/8 00300 deny ip from 127.0.0.0/8 to any 65000 allow ip from any to any 65535 deny ip from any to any -Eric > You're ipfw rules aren't diverting anything to natd. You need a rules > like: > > /sbin/ipfw add divert natd all from any to any via eth0 > > In your firewall rules. > > Joe Clarke > > On Fri, 6 Jul 2001, Eric Long wrote: > >> I am at a loss with this setup, any suggestions are welcome: >> >> Details: >> Running Freebsd 4.3-RELEASE, ipfw, natd, dhcpd, and gateway is enabled >> >> I'm running this box with two NIC's and an Emerging Technologies card that >> functions as a router. The Emerging Technologies card (eth0) is the WAN >> interface, one of the NIC's (fxp1) is the LAN interface. Nothing on the LAN >> interface can access the internet (via the WAN interface). >> >> What I know: >> 1.) Traffic gets to the FreeBSD box from the WAN interface. >> 2.) Traffic goes out the WAN interface from the FreeBSD box >> 3.) Traffic goes out the LAN interface from the FreeBSD box (workstations >> are assigned ip's via dhcpd therefore telling me that they are seeing the >> box on the network via the LAN interface), plus I can also ping these boxes >> when they are assigned an IP >> 4.) Traffic does NOT go out the WAN interface from the LAN interface (no >> workstation can reach the net). >> >> Problem: >> Is this a routing issue? Traffic simply isn't being passed from the LAN >> interface to the WAN interface. >> >> My routing tables: >> >> % netstat -r -n >> Routing tables >> >> Internet: >> Destination Gateway Flags Refs Use Netif >> Expire >> default 65.114.176.41 UGSc 6 24630 eth0 >> 65.114.176.41 65.114.176.42 UH 5 2 eth0 >> 127.0.0.1 127.0.0.1 UH 0 4 lo0 >> 192.168.1 link#2 UC 0 0 fxp1 => >> >> eth0 is 65.114.176.42 >> fxp1 is 192.168.1.1 >> >> Pertinent details from /etc/rc.conf: >> gateway_enable="YES" >> firewall_enable="YES" >> firewall_type="open" >> natd_enable="YES" >> natd_interface="eth0" >> natd_flags="-f /etc/natd.conf" >> >> ipfw details: >> % ipfw list >> 00100 allow ip from any to any via lo0 >> 00200 deny ip from any to 127.0.0.0/8 >> 00300 deny ip from 127.0.0.0/8 to any >> 65000 allow ip from any to any >> 65535 deny ip from any to any >> >> -Eric >> >> >> 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 Fri Jul 6 12: 5: 3 2001 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 3894B37B409 for ; Fri, 6 Jul 2001 12:05:01 -0700 (PDT) (envelope-from oberman@ptavv.es.net) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (8.10.1/8.10.1) with ESMTP id f66J50c08790 for ; Fri, 6 Jul 2001 12:05:00 -0700 (PDT) Message-Id: <200107061905.f66J50c08790@ptavv.es.net> Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Trying to read Excel 97 files in FreeBSD In-reply-to: Your message of "Fri, 29 Jun 2001 13:45:53 PDT." <200106292045.f5TKjrc30492@ptavv.es.net> Date: Fri, 06 Jul 2001 12:05:00 -0700 From: "Kevin Oberman" Sender: owner-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 reply to my own post, I have learned that gnumeric does read Excel 97 files just fine. There is a problem with the port of gnumeric that caused my problem and, once I saw the PR (ports/28139), it was fairly easily fixed. 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 Fri Jul 6 12:11: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.urx.com (mail.urx.com [63.170.19.36]) by hub.freebsd.org (Postfix) with ESMTP id 1C92437B409 for ; Fri, 6 Jul 2001 12:10:57 -0700 (PDT) (envelope-from kstewart@urx.com) Received: from urx.com [206.159.132.160] by mail.urx.com with ESMTP (SMTPD32-6.06) id AD3D7FFE014A; Fri, 06 Jul 2001 12:10:53 -0700 Message-ID: <3B460D3D.577266B9@urx.com> Date: Fri, 06 Jul 2001 12:10:53 -0700 From: Kent Stewart X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: John Toon Cc: freebsd-questions@freebsd.org Subject: Re: Installworld failure! References: <01070618590800.00255@Dionysus> 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 John Toon wrote: > > Hi, > > Ack, make installworld failed! The Makefile seems broken: > > Dionysus# make installworld > mkdir -p /tmp/install.281 > for prog in [ awk cat chflags chmod chown date echo egrep find grep > install ln make makewhatis mtree mv perl rm sed sh sysctl test true > uname wc zic; do cp `which $prog` /tmp/install.281; done > 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/src. > *** Error code 1 > > Stop in /usr/src. > > The cp command is being called incorrectly... Did you make it on one system and try to install it via NFS on a different one. That is when I see errors like this. The install knows the original path and the NFS mount isn't it. Kent > > Anyone got any suggestions? > > John. > > 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://kstewart.urx.com/kstewart/index.html http://daily.daemonnews.org/ SETI (Search for Extraterrestrial Intelligence) @ Home http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 12:11:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f159.law10.hotmail.com [64.4.15.159]) by hub.freebsd.org (Postfix) with ESMTP id A86CA37B403 for ; Fri, 6 Jul 2001 12:11:12 -0700 (PDT) (envelope-from ex279@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 6 Jul 2001 12:11:12 -0700 Received: from 205.228.172.82 by lw10fd.law10.hotmail.msn.com with HTTP; Fri, 06 Jul 2001 19:11:12 GMT X-Originating-IP: [205.228.172.82] From: "EX 279" To: freebsd-questions@freebsd.org Subject: BSD sees 3 drives Date: Fri, 06 Jul 2001 14:11:12 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 06 Jul 2001 19:11:12.0538 (UTC) FILETIME=[6BE41FA0:01C1064F] Sender: owner-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 installing FreeBSD 4.3 onto my server, but when I get to the option on partitioning the drives, it sees three drives. I'm using a Adaptec ARO-1130U2 card which is supported by 4.3, however, FreeBSD sees 3 drives instead of 1. Is this normal when using a RAID5? I created the array with the Adaptec software. Is there someway to create a RAID in FreeBSD? _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.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 Jul 6 12:23:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.takas.lt (srvr3.telecom.lt [212.59.0.2]) by hub.freebsd.org (Postfix) with ESMTP id 5D80937B405 for ; Fri, 6 Jul 2001 12:23:43 -0700 (PDT) (envelope-from tadas@tadas.lt) Received: from tadas.lt (flatrate579.kns.takas.lt [213.190.61.137]) by mail.takas.lt (8.9.1/8.9.0) with ESMTP id VAA1858915 for ; Fri, 6 Jul 2001 21:23:40 +0200 (GMT+0200) Received: (from tadas@localhost) by tadas.lt (8.11.3/8.11.3) id f66JPHq05951 for freebsd-questions@freebsd.org; Fri, 6 Jul 2001 21:25:17 +0200 (EET) (envelope-from tadas) Date: Fri, 6 Jul 2001 21:25:16 +0200 From: Tadas To: FreeBSD Subject: Mozilla 0.9.2 and Java Message-ID: <20010706212516.D2722@tadas.lt> Reply-To: b-tadas@takas.lt Mail-Followup-To: FreeBSD Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.18i X-OS: FreeBSD 4.0-RELEASE Sender: owner-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 know that it is possible to run jdk-1.3 under linux emulation. But I can't run linux mozilla with Java support. I installed jre.xpi, but it doesn't help. Bye, Tadas To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 12:28:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.cult.cu (mail.cult.cu [169.158.120.2]) by hub.freebsd.org (Postfix) with ESMTP id 1CB5537B401 for ; Fri, 6 Jul 2001 12:28:24 -0700 (PDT) (envelope-from admin@atenas.cult.cu) Received: from mail by mail.cult.cu with local-bsmtp (Exim 3.03 #2) id 15IbGW-0009Tc-00; Fri, 06 Jul 2001 15:27:48 -0400 Received: from [169.158.120.178] (helo=mail.atenas.cult.cu) by mail.cult.cu with esmtp (Exim 3.03 #2) id 15IbGO-0009St-00; Fri, 06 Jul 2001 15:27:41 -0400 Received: from mail.atenas.cult.cu ([169.158.120.179] helo=proxy.atenas.cult.cu) by mail.atenas.cult.cu with smtp (Exim 3.22 #2) id 15IbJ7-0002xs-00; Fri, 06 Jul 2001 15:30:29 -0400 From: Manolo Valdes To: Eric Long Subject: Re: Is this a routing problem? Date: Fri, 6 Jul 2001 15:20:16 -0400 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain; charset="US-ASCII" References: In-Reply-To: Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Message-Id: <01070615273501.04051@proxy.atenas.cult.cu> 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 Fri, 06 Jul 2001, you wrote: > I am at a loss with this setup, any suggestions are welcome: > > Details: > Running Freebsd 4.3-RELEASE, ipfw, natd, dhcpd, and gateway is enabled > > I'm running this box with two NIC's and an Emerging Technologies card that > functions as a router. The Emerging Technologies card (eth0) is the WAN > interface, one of the NIC's (fxp1) is the LAN interface. Nothing on the LAN > interface can access the internet (via the WAN interface). > > What I know: > 1.) Traffic gets to the FreeBSD box from the WAN interface. > 2.) Traffic goes out the WAN interface from the FreeBSD box > 3.) Traffic goes out the LAN interface from the FreeBSD box (workstations > are assigned ip's via dhcpd therefore telling me that they are seeing the > box on the network via the LAN interface), plus I can also ping these boxes > when they are assigned an IP > 4.) Traffic does NOT go out the WAN interface from the LAN interface (no > workstation can reach the net). > > Problem: > Is this a routing issue? Traffic simply isn't being passed from the LAN > interface to the WAN interface. > > My routing tables: > > % netstat -r -n > Routing tables > > Internet: > Destination Gateway Flags Refs Use Netif > Expire > default 65.114.176.41 UGSc 6 24630 eth0 > 65.114.176.41 65.114.176.42 UH 5 2 eth0 > 127.0.0.1 127.0.0.1 UH 0 4 lo0 > 192.168.1 link#2 UC 0 0 fxp1 => > > eth0 is 65.114.176.42 > fxp1 is 192.168.1.1 > > Pertinent details from /etc/rc.conf: > gateway_enable="YES" > firewall_enable="YES" > firewall_type="open" > natd_enable="YES" > natd_interface="eth0" > natd_flags="-f /etc/natd.conf" > > ipfw details: > % ipfw list if natd is enable when you ipfw list you should get 00050 divert "natd port" ip from any to any via "natd_interface" check the /etc/natd.conf and why /etc/rc.firewall are not loading the natd rule check if your kernel was compiled with options IPDIVERT # For Nat > 00100 allow ip from any to any via lo0 > 00200 deny ip from any to 127.0.0.0/8 > 00300 deny ip from 127.0.0.0/8 to any > 65000 allow ip from any to any > 65535 deny ip from any to any > > -Eric Manolito To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 12:32:19 2001 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 10F5D37B406 for ; Fri, 6 Jul 2001 12:32:17 -0700 (PDT) (envelope-from john.toon@btinternet.com) Received: from host213-122-1-29.btinternet.com ([213.122.1.29] helo=btinternet.com) by gadolinium.btinternet.com with esmtp (Exim 3.22 #9) id 15IbKo-0001YT-00; Fri, 06 Jul 2001 20:32:14 +0100 Message-ID: <3B461F97.B14E67B1@btinternet.com> Date: Fri, 06 Jul 2001 20:29:11 +0000 From: John Toon X-Mailer: Mozilla 4.72 [en] (X11; I; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Kent Stewart Cc: freebsd-questions@freebsd.org Subject: Re: Installworld failure! References: <01070618590800.00255@Dionysus> <3B460D3D.577266B9@urx.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 Kent Stewart wrote: > Did you make it on one system and try to install it via NFS on a > different one. That is when I see errors like this. The install > knows the original path and the NFS mount isn't it. Nope - the build is entirely local to my one machine. John. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 12:32:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hemi.metrotv.com (hemi.metrotv.com [209.98.153.2]) by hub.freebsd.org (Postfix) with SMTP id B4BD537B403 for ; Fri, 6 Jul 2001 12:32:29 -0700 (PDT) (envelope-from eric@metrotv.com) Received: (qmail 51378 invoked by uid 1009); 6 Jul 2001 19:35:29 -0000 Received: from remoteaccess-3.metrotv.com (HELO ?209.98.153.49?) (209.98.153.49) by hemi.metrotv.com with SMTP; 6 Jul 2001 19:35:29 -0000 User-Agent: Microsoft-Entourage/9.0.1.3108 Date: Fri, 06 Jul 2001 14:29:04 -0500 Subject: Re: Is this a routing problem? From: Eric Long To: Manolo Valdes Cc: Message-ID: In-Reply-To: <01070615273501.04051@proxy.atenas.cult.cu> 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 natd is enable when you ipfw list you should get > 00050 divert "natd port" ip from any to any via "natd_interface" > check the /etc/natd.conf and why /etc/rc.firewall are not loading the natd > rule As I said in a previous reply to someone else who pointed this out, I was a little off on my copy and paste of the ipfw rules. I do have the divert line. > check if your kernel was compiled with > options IPDIVERT # For Nat Yep, it's there. -Eric To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 12:32:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.cult.cu (mail.cult.cu [169.158.120.2]) by hub.freebsd.org (Postfix) with ESMTP id 2794937B406 for ; Fri, 6 Jul 2001 12:32:32 -0700 (PDT) (envelope-from admin@atenas.cult.cu) Received: from mail by mail.cult.cu with local-bsmtp (Exim 3.03 #2) id 15IbKI-0009ZG-00; Fri, 06 Jul 2001 15:31:42 -0400 Received: from [169.158.120.178] (helo=mail.atenas.cult.cu) by mail.cult.cu with esmtp (Exim 3.03 #2) id 15IbKF-0009YO-00; Fri, 06 Jul 2001 15:31:40 -0400 Received: from mail.atenas.cult.cu ([169.158.120.179] helo=proxy.atenas.cult.cu) by mail.atenas.cult.cu with smtp (Exim 3.22 #2) id 15IbMy-0002yN-00; Fri, 06 Jul 2001 15:34:28 -0400 From: Manolo Valdes To: Eric Long , Joe Clarke Subject: Re: Is this a routing problem? Date: Fri, 6 Jul 2001 15:28:56 -0400 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain; charset="US-ASCII" Cc: References: In-Reply-To: MIME-Version: 1.0 Message-Id: <01070615313402.04051@proxy.atenas.cult.cu> 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 so check your /etc/natd.conf for testing dont use any configuration file. natd should work whith out it Manolito On Fri, 06 Jul 2001, Eric Long wrote: > Sorry, I inadvertently deleted the first line of ipfw output in my previous > message. I do have that line and it is still not working. ipfw output: > > 00050 divert 8668 ip from any to any via eth0 > 00100 allow ip from any to any via lo0 > 00200 deny ip from any to 127.0.0.0/8 > 00300 deny ip from 127.0.0.0/8 to any > 65000 allow ip from any to any > 65535 deny ip from any to any > > > -Eric > > > You're ipfw rules aren't diverting anything to natd. You need a rules > > like: > > > > /sbin/ipfw add divert natd all from any to any via eth0 > > > > In your firewall rules. > > > > Joe Clarke > > > > On Fri, 6 Jul 2001, Eric Long wrote: > > > >> I am at a loss with this setup, any suggestions are welcome: > >> > >> Details: > >> Running Freebsd 4.3-RELEASE, ipfw, natd, dhcpd, and gateway is enabled > >> > >> I'm running this box with two NIC's and an Emerging Technologies card that > >> functions as a router. The Emerging Technologies card (eth0) is the WAN > >> interface, one of the NIC's (fxp1) is the LAN interface. Nothing on the LAN > >> interface can access the internet (via the WAN interface). > >> > >> What I know: > >> 1.) Traffic gets to the FreeBSD box from the WAN interface. > >> 2.) Traffic goes out the WAN interface from the FreeBSD box > >> 3.) Traffic goes out the LAN interface from the FreeBSD box (workstations > >> are assigned ip's via dhcpd therefore telling me that they are seeing the > >> box on the network via the LAN interface), plus I can also ping these boxes > >> when they are assigned an IP > >> 4.) Traffic does NOT go out the WAN interface from the LAN interface (no > >> workstation can reach the net). > >> > >> Problem: > >> Is this a routing issue? Traffic simply isn't being passed from the LAN > >> interface to the WAN interface. > >> > >> My routing tables: > >> > >> % netstat -r -n > >> Routing tables > >> > >> Internet: > >> Destination Gateway Flags Refs Use Netif > >> Expire > >> default 65.114.176.41 UGSc 6 24630 eth0 > >> 65.114.176.41 65.114.176.42 UH 5 2 eth0 > >> 127.0.0.1 127.0.0.1 UH 0 4 lo0 > >> 192.168.1 link#2 UC 0 0 fxp1 => > >> > >> eth0 is 65.114.176.42 > >> fxp1 is 192.168.1.1 > >> > >> Pertinent details from /etc/rc.conf: > >> gateway_enable="YES" > >> firewall_enable="YES" > >> firewall_type="open" > >> natd_enable="YES" > >> natd_interface="eth0" > >> natd_flags="-f /etc/natd.conf" > >> > >> ipfw details: > >> % ipfw list > >> 00100 allow ip from any to any via lo0 > >> 00200 deny ip from any to 127.0.0.0/8 > >> 00300 deny ip from 127.0.0.0/8 to any > >> 65000 allow ip from any to any > >> 65535 deny ip from any to any > >> > >> -Eric > >> > >> > >> 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 12:36:55 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.sirius.com (mail1.sirius.com [205.134.253.131]) by hub.freebsd.org (Postfix) with ESMTP id D5A4837B405 for ; Fri, 6 Jul 2001 12:36:52 -0700 (PDT) (envelope-from slay@sirius.com) Received: from sirius.com (34-84-127-216.ip.sirius.com [216.127.84.34]) by mail1.sirius.com (8.10.0/8.9.1) with ESMTP id f66JaqE90630 for ; Fri, 6 Jul 2001 12:36:52 -0700 (PDT) Message-ID: <3B4613CC.70ECD8CF@sirius.com> Date: Fri, 06 Jul 2001 12:38:53 -0700 From: slay X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Compatibility Question 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 running a linux program in FreeBSD 4.3 Release. When the software tries to connect to the serial port i get two errors 1. Linux 'ioctl' fd=6, cmd=5409 ('T',9) not implemented 2.Warning: serial input interface connected to a non-terminal file Warning: serial output interface connected to a non-terminal file Warning: serial input interface connected to a non-terminal file Warning: serial output interface connected to a non-terminal file I have the linux_base pkg installed. Anything else i should install? What can i try? To get this to work. Thanks in advance -greg slay@sirius.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 12:42: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imo-m03.mx.aol.com (imo-m03.mx.aol.com [64.12.136.6]) by hub.freebsd.org (Postfix) with ESMTP id 0889337B407 for ; Fri, 6 Jul 2001 12:42:02 -0700 (PDT) (envelope-from Baerjf@aol.com) Received: from Baerjf@aol.com by imo-m03.mx.aol.com (mail_out_v30.22.) id n.f7.c3f4313 (25307) for ; Fri, 6 Jul 2001 15:41:55 -0400 (EDT) From: Baerjf@aol.com Message-ID: Date: Fri, 6 Jul 2001 15:41:55 EDT Subject: FreeBSD 4.0 (i386) CD #1 (March 2000 ) To: freebsd-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 66 Sender: owner-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 FreeBSD 4.0 be installed with Windows 2000 Professional ? Have destroyed 2000 trying. Never have be able to insatll BSD, period. IDE CdRom, WD 30 Gig HD. Instead, how do I install on 2nd hardrive (SCSI) W/2nd CDRom (SCSI) Award BIOS will not recoognize this CDR to boot from. Tekram 315U SCSI adaptor. Win 2000 works O.K. with SCSI. Can not boot install floppies & install to 2nd hardrive. Is there any work-a-round for either way of installing ? James F. Baer jamesf32@Juno.com or baerjf@Aol.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 12:46:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tatooine.mtmary.edu (tatooine.mtmary.edu [198.150.127.50]) by hub.freebsd.org (Postfix) with ESMTP id 3879D37B405 for ; Fri, 6 Jul 2001 12:46:41 -0700 (PDT) (envelope-from clarkp@mtmary.edu) Received: from csclarkp ([10.1.11.9]) by tatooine.mtmary.edu (8.9.3/8.9.3) with SMTP id OAA31806 for ; Fri, 6 Jul 2001 14:41:39 -0500 From: "Peter Clark" To: Subject: LINT Kernel settings. Date: Fri, 6 Jul 2001 14:46:24 -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.2462.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 an ASUS P55T2P4 with an AMD K6-2+/500 and 96mb of ram. I am using this as my firewall with FreeBSD 4.3 release. I am configuring my first kernel and looking for what exactly 2 settings do. The settings are "CPU_WT_ALLOC" and "NO_MEMORY_HOLE". Any help would be appreciated. Peter Clark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 12:54:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from polaris.trendcs.com (polaris.trendcs.com [208.35.25.2]) by hub.freebsd.org (Postfix) with ESMTP id 2E73F37B405 for ; Fri, 6 Jul 2001 12:54:36 -0700 (PDT) (envelope-from mcdougald@trendcs.com) Received: from thinker ([10.9.1.140]) by polaris.trendcs.com (8.9.3/8.9.3) with SMTP id PAA09479 for ; Fri, 6 Jul 2001 15:54:35 -0400 Message-ID: <00c201c10655$78c5a490$8c01090a@thinker> Reply-To: "steve mcdougald" From: "steve mcdougald" To: Subject: geometry Date: Fri, 6 Jul 2001 15:54:28 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_00BF_01C10633.EFECB210" 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_00BF_01C10633.EFECB210 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I installed a disk mirroring card called duplidisk after FreeBSD was = installed. Duplidisk writes to the last track on the drive and reports = back one less track/cylinder than BSD was expecting. When BSD boots, it = says: changing root device to wd0f wd0: raw partition size !=3D slice size wd0: start 0, end 49979, size 49980 wd0c: start 0, end 40188959, size 40188960 wd0: truncating raw partition wd0: rejecting partition in BSD label: it isn't entirely within the = slice wd0: start 0, end 49979, size 49980 wd0a: start 0, end 80324, size 80325 wd0: rejecting partition in BSD label: it isn't entirely within the = slice wd0b: start 80325, end 610469, size 530145 wd0: rejecting partition in BSD label: it isn't entirely within the = slice wd0d: start 1429785, end 34534079, size 33104295 wd0: rejecting partition in BSD label: it isn't entirely within the = slice wd0e: start 34534080, end 40188959, size 5654880 wd0: rejecting partition in BSD label: it isn't entirely within the = slice wd0f: start 610470, end 1429784, size 819315 panic: cannot mount root What can be done to fix the problem? Thanks, Steve McDougald Network Engineering & Operations Group =20 Trend Consulting Services 35353 Curtis Blvd. Eastlake, Ohio 44095 Web: http://www.trendcs.com Email: mcdougald@trendcs.com Phone: 440-942-4040 x263 FAX: 440-942-4848 eFAX: 240-363-2569 (Personal FAX) ------=_NextPart_000_00BF_01C10633.EFECB210 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I installed a disk mirroring card = called duplidisk=20 after FreeBSD was installed.  Duplidisk writes to the last track on = the=20 drive and reports back one less track/cylinder than BSD was = expecting. =20 When BSD boots, it says:
 
changing root device to wd0f
wd0: = raw partition=20 size !=3D slice size
wd0: start 0, end 49979, size 49980
wd0c: = start 0, end=20 40188959, size 40188960
wd0: truncating raw partition
wd0: = rejecting=20 partition in BSD label: it isn't entirely within the slice
wd0: start = 0, end=20 49979, size 49980
wd0a: start 0, end 80324, size 80325
wd0: = rejecting=20 partition in BSD label: it isn't entirely within the slice
wd0b: = start 80325,=20 end 610469, size 530145
wd0: rejecting partition in BSD label: it = isn't=20 entirely within the slice
wd0d: start 1429785, end 34534079, size=20 33104295
wd0: rejecting partition in BSD label: it isn't entirely = within the=20 slice
wd0e: start 34534080, end 40188959, size 5654880
wd0: = rejecting=20 partition in BSD label: it isn't entirely within the slice
wd0f: = start=20 610470, end 1429784, size 819315
panic: cannot mount = root
 
What can be done to fix the = problem? =20 Thanks,
Steve McDougald
Network Engineering = &=20 Operations=20 Group           =20
Trend Consulting Services
35353 Curtis Blvd.
Eastlake, Ohio=20 44095
 
Web: http://www.trendcs.com
Email: mcdougald@trendcs.com
Phone:= =20 440-942-4040 x263
FAX:    440-942-4848
eFAX: =20 240-363-2569 (Personal FAX)
------=_NextPart_000_00BF_01C10633.EFECB210-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 12:55:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hemi.metrotv.com (hemi.metrotv.com [209.98.153.2]) by hub.freebsd.org (Postfix) with SMTP id 430E137B401 for ; Fri, 6 Jul 2001 12:55:07 -0700 (PDT) (envelope-from eric@metrotv.com) Received: (qmail 51707 invoked by uid 1009); 6 Jul 2001 19:58:07 -0000 Received: from remoteaccess-3.metrotv.com (HELO ?209.98.153.49?) (209.98.153.49) by hemi.metrotv.com with SMTP; 6 Jul 2001 19:58:07 -0000 User-Agent: Microsoft-Entourage/9.0.1.3108 Date: Fri, 06 Jul 2001 14:51:42 -0500 Subject: Re: Is this a routing problem? From: Eric Long To: Manolo Valdes , Joe Clarke Cc: Message-ID: In-Reply-To: <01070615313402.04051@proxy.atenas.cult.cu> 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, Found the error and I knew it was something stupid. My /etc/rc.conf and /etc/natd.conf had conflicting configurations for which interface to have natd run on. It was not running on the WAN interface. When I thought it was running on the WAN interface, my settings in /etc/natd.conf overrode /etc/rc.conf. Thanks. -Eric > so check your /etc/natd.conf > for testing dont use any configuration file. natd should work whith out it > > Manolito > > On Fri, 06 Jul 2001, Eric Long wrote: >> Sorry, I inadvertently deleted the first line of ipfw output in my previous >> message. I do have that line and it is still not working. ipfw output: >> >> 00050 divert 8668 ip from any to any via eth0 >> 00100 allow ip from any to any via lo0 >> 00200 deny ip from any to 127.0.0.0/8 >> 00300 deny ip from 127.0.0.0/8 to any >> 65000 allow ip from any to any >> 65535 deny ip from any to any >> >> >> -Eric >> >>> You're ipfw rules aren't diverting anything to natd. You need a rules >>> like: >>> >>> /sbin/ipfw add divert natd all from any to any via eth0 >>> >>> In your firewall rules. >>> >>> Joe Clarke >>> >>> On Fri, 6 Jul 2001, Eric Long wrote: >>> >>>> I am at a loss with this setup, any suggestions are welcome: >>>> >>>> Details: >>>> Running Freebsd 4.3-RELEASE, ipfw, natd, dhcpd, and gateway is enabled >>>> >>>> I'm running this box with two NIC's and an Emerging Technologies card that >>>> functions as a router. The Emerging Technologies card (eth0) is the WAN >>>> interface, one of the NIC's (fxp1) is the LAN interface. Nothing on the >>>> LAN >>>> interface can access the internet (via the WAN interface). >>>> >>>> What I know: >>>> 1.) Traffic gets to the FreeBSD box from the WAN interface. >>>> 2.) Traffic goes out the WAN interface from the FreeBSD box >>>> 3.) Traffic goes out the LAN interface from the FreeBSD box (workstations >>>> are assigned ip's via dhcpd therefore telling me that they are seeing the >>>> box on the network via the LAN interface), plus I can also ping these boxes >>>> when they are assigned an IP >>>> 4.) Traffic does NOT go out the WAN interface from the LAN interface (no >>>> workstation can reach the net). >>>> >>>> Problem: >>>> Is this a routing issue? Traffic simply isn't being passed from the LAN >>>> interface to the WAN interface. >>>> >>>> My routing tables: >>>> >>>> % netstat -r -n >>>> Routing tables >>>> >>>> Internet: >>>> Destination Gateway Flags Refs Use Netif >>>> Expire >>>> default 65.114.176.41 UGSc 6 24630 eth0 >>>> 65.114.176.41 65.114.176.42 UH 5 2 eth0 >>>> 127.0.0.1 127.0.0.1 UH 0 4 lo0 >>>> 192.168.1 link#2 UC 0 0 fxp1 => >>>> >>>> eth0 is 65.114.176.42 >>>> fxp1 is 192.168.1.1 >>>> >>>> Pertinent details from /etc/rc.conf: >>>> gateway_enable="YES" >>>> firewall_enable="YES" >>>> firewall_type="open" >>>> natd_enable="YES" >>>> natd_interface="eth0" >>>> natd_flags="-f /etc/natd.conf" >>>> >>>> ipfw details: >>>> % ipfw list >>>> 00100 allow ip from any to any via lo0 >>>> 00200 deny ip from any to 127.0.0.0/8 >>>> 00300 deny ip from 127.0.0.0/8 to any >>>> 65000 allow ip from any to any >>>> 65535 deny ip from any to any >>>> >>>> -Eric >>>> >>>> >>>> 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 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 12:56:50 2001 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 7D06337B405 for ; Fri, 6 Jul 2001 12:56:48 -0700 (PDT) (envelope-from john.toon@btinternet.com) Received: from host213-122-22-209.btinternet.com ([213.122.22.209] helo=btinternet.com) by gadolinium.btinternet.com with esmtp (Exim 3.22 #9) id 15IbiS-0004a8-00; Fri, 06 Jul 2001 20:56:41 +0100 Message-ID: <3B462606.12CC4517@btinternet.com> Date: Fri, 06 Jul 2001 20:56:38 +0000 From: John Toon X-Mailer: Mozilla 4.72 [en] (X11; I; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Peter Clark Cc: freebsd-questions@freebsd.org Subject: Re: LINT Kernel settings. 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 Peter Clark wrote: > "CPU_WT_ALLOC" and "NO_MEMORY_HOLE". Any help would be appreciated. > > Peter Clark I know that the "NO_MEMORY_HOLE" refers to old ISA devices - because they are only 16bit devices, they can only see the first 16MB of RAM; therefore on systems with more RAM than this, for compatibility reasons, there is a deliberate hole presented in the memory to deceive the devices into thinking there is only 16MB RAM. Unless you have old ISA devices you probably want this option. John. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 13:15:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web5502.mail.yahoo.com (web5502.mail.yahoo.com [216.115.106.185]) by hub.freebsd.org (Postfix) with SMTP id 5065437B401 for ; Fri, 6 Jul 2001 13:15:33 -0700 (PDT) (envelope-from adamnealis@yahoo.co.uk) Message-ID: <20010706201533.15693.qmail@web5502.mail.yahoo.com> Received: from [62.128.212.126] by web5502.mail.yahoo.com via HTTP; Fri, 06 Jul 2001 21:15:33 BST Date: Fri, 6 Jul 2001 21:15:33 +0100 (BST) From: =?iso-8859-1?q?Adam=20Nealis?= Subject: XFree86-4.1.0_4 and fonts 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 I often start to pen e-mails like this to the list, only to find that the act of writing out the problem in what I hope is a clear way leads me to solve the problem. Not this time! I have a mental block when it come to X, and also when it comes to fonts. Despite reading /usr/X11R6/lib/X11/doc/README.fonts nad the mkfontdir(1) man page I am none the wiser. I am trying to find out how to eliminate the messages (below) that I get when I start X. Also, the last one is preventing me from trying out AbiWord. I'm on 'BSD 4.3-RELEASE, and I tested my new ADSL link by downloading and installing the current XFree86 sources - 4.1.0_4. These are the error messages recorded in /var/log/XFree86.0.log: Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, \ removing from list! Could not init font path element /usr/X11R6/lib/X11/fonts/Type1/, \ removing from list! Could not init font path element /usr/X11R6/lib/X11/fonts/URW/, \ removing from list! Could not init font path element /usr/local/AbiSuite/fonts, \ removing from list! I have fonts.dir and fonts.scale files (confusingly called "directories"). The mkfontdir man page and README.fonts ramble on about using the -e flag but these docs do not make sense to me. for example, README.font says: $ cd /usr/local/share/fonts/Type1 $ mkfontdir -e /usr/X11R6/lib/font/encodings which I dutifully did, only to create a file of exactly 0 bytes called /usr/X11R6/lib/font/encodings/fonts.dir So what painfully obvious thing am I doing wrong? ____________________________________________________________ Do You Yahoo!? Get your free @yahoo.co.uk address at http://mail.yahoo.co.uk or your free @yahoo.ie address at http://mail.yahoo.ie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 13:44:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f252.law10.hotmail.com [64.4.14.77]) by hub.freebsd.org (Postfix) with ESMTP id 5F4E037B403 for ; Fri, 6 Jul 2001 13:44:35 -0700 (PDT) (envelope-from ex279@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 6 Jul 2001 13:44:35 -0700 Received: from 205.228.172.82 by lw10fd.law10.hotmail.msn.com with HTTP; Fri, 06 Jul 2001 20:44:34 GMT X-Originating-IP: [205.228.172.82] From: "Todd Reed" To: freebsd-questions@freebsd.org Subject: Install Drivers at Installation Boot Date: Fri, 06 Jul 2001 15:44:34 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 06 Jul 2001 20:44:35.0243 (UTC) FILETIME=[775D0FB0:01C1065C] Sender: owner-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 need to get the ahc(4) driver to run when I go to install BSD 4.3. How can I do this? Is it something that automatically runs? _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.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 Jul 6 13:46: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from w.waw.pl (podspodem.art.pl [195.94.202.162]) by hub.freebsd.org (Postfix) with SMTP id B599137B403 for ; Fri, 6 Jul 2001 13:45:53 -0700 (PDT) (envelope-from ever@podspodem.art.pl) Received: (qmail 30608 invoked from network); 6 Jul 2001 20:53:57 -0000 Received: from pak136.warszawa.sdi.tpnet.pl (HELO darth) (217.96.230.136) by podspodem.art.pl with SMTP; 6 Jul 2001 20:53:57 -0000 Date: Fri, 6 Jul 2001 22:46:20 +0200 From: =?ISO-8859-2?B?UGF3ZbMgU3p5bWHxc2tp?= X-Mailer: The Bat! (v1.51) Personal Reply-To: =?ISO-8859-2?B?UGF3ZbMgU3p5bWHxc2tp?= X-Priority: 3 (Normal) Message-ID: <6437257112.20010706224620@podspodem.art.pl> To: freebsd-questions@FreeBSD.org Subject: kernel compilation problem. MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----------791EE21A87D58E6" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ------------791EE21A87D58E6 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: 8bit Hello. I've FreeBSD 4.3 relase with recompiled world. I'd started to compile my kernel (config below), and after 'make' i've recived this error: ===> ipfilter make: don't know how to make /usr/src/sys/modules/ipfilter/../../netinet/mlfk_ip l.c. Stop *** Error code 2 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/src/sys/compile/podspodem. Honestly I don't know what to do. Hope You could help me. TIA Ever P.S. My kernel configuration is in attachment -- Pawe³ Szymañski ever@podspodem.art.pl http://podspodem.art.pl ------------791EE21A87D58E6 Content-Type: application/octet-stream; name=podspodem Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename=podspodem Cm1hY2hpbmUJCWkzODYKY3B1CQlJMzg2X0NQVQpjcHUJCUk0ODZfQ1BVCmNwdQkJSTU4Nl9DUFUK Y3B1CQlJNjg2X0NQVQppZGVudAkJcG9kc3BvZGVtCm1heHVzZXJzCTMyCgojbWFrZW9wdGlvbnMJ REVCVUc9LWcJCSNCdWlsZCBrZXJuZWwgd2l0aCBnZGIoMSkgZGVidWcgc3ltYm9scwoKb3B0aW9u cyAJTUFUSF9FTVVMQVRFCQkjU3VwcG9ydCBmb3IgeDg3IGVtdWxhdGlvbgpvcHRpb25zIAlJTkVU CQkJI0ludGVyTkVUd29ya2luZwpvcHRpb25zIAlJTkVUNgkJCSNJUHY2IGNvbW11bmljYXRpb25z IHByb3RvY29scwpvcHRpb25zIAlGRlMJCQkjQmVya2VsZXkgRmFzdCBGaWxlc3lzdGVtCm9wdGlv bnMgCUZGU19ST09UCQkjRkZTIHVzYWJsZSBhcyByb290IGRldmljZSBba2VlcCB0aGlzIV0Kb3B0 aW9ucyAJU09GVFVQREFURVMJCSNFbmFibGUgRkZTIHNvZnQgdXBkYXRlcyBzdXBwb3J0Cm9wdGlv bnMgCU1GUwkJCSNNZW1vcnkgRmlsZXN5c3RlbQpvcHRpb25zIAlNRF9ST09UCQkJI01EIGlzIGEg cG90ZW50aWFsIHJvb3QgZGV2aWNlCm9wdGlvbnMgICAgICAgICBFWFQyRlMKb3B0aW9ucyAJTVNE T1NGUwkJCSNNU0RPUyBGaWxlc3lzdGVtCm9wdGlvbnMgCUNEOTY2MAkJCSNJU08gOTY2MCBGaWxl c3lzdGVtCm9wdGlvbnMgCUNEOTY2MF9ST09UCQkjQ0QtUk9NIHVzYWJsZSBhcyByb290LCBDRDk2 NjAgcmVxdWlyZWQKb3B0aW9ucyAJUFJPQ0ZTCQkJI1Byb2Nlc3MgZmlsZXN5c3RlbQpvcHRpb25z IAlDT01QQVRfNDMJCSNDb21wYXRpYmxlIHdpdGggQlNEIDQuMyBbS0VFUCBUSElTIV0Kb3B0aW9u cyAJVUNPTlNPTEUJCSNBbGxvdyB1c2VycyB0byBncmFiIHRoZSBjb25zb2xlCm9wdGlvbnMgCVVT RVJDT05GSUcJCSNib290IC1jIGVkaXRvcgpvcHRpb25zIAlWSVNVQUxfVVNFUkNPTkZJRwkjdmlz dWFsIGJvb3QgLWMgZWRpdG9yCm9wdGlvbnMgCUtUUkFDRQkJCSNrdHJhY2UoMSkgc3VwcG9ydApv cHRpb25zIAlTWVNWU0hNCQkJI1NZU1Ytc3R5bGUgc2hhcmVkIG1lbW9yeQpvcHRpb25zIAlTWVNW TVNHCQkJI1NZU1Ytc3R5bGUgbWVzc2FnZSBxdWV1ZXMKb3B0aW9ucyAJU1lTVlNFTQkJCSNTWVNW LXN0eWxlIHNlbWFwaG9yZXMKb3B0aW9ucyAJUDEwMDNfMUIJCSNQb3NpeCBQMTAwM18xQiByZWFs LXRpbWUgZXh0ZW5zaW9ucwpvcHRpb25zIAlfS1BPU0lYX1BSSU9SSVRZX1NDSEVEVUxJTkcKb3B0 aW9ucwkJSUNNUF9CQU5ETElNCQkjUmF0ZSBsaW1pdCBiYWQgcmVwbGllcwpvcHRpb25zIAlLQkRf SU5TVEFMTF9DREVWCSMgaW5zdGFsbCBhIENERVYgZW50cnkgaW4gL2RldgpvcHRpb25zICAgICAg ICAgVVNFUl9MRFQKb3B0aW9ucwkJUVVPVEEKCmRldmljZQkJaXNhCmRldmljZQkJZWlzYQpkZXZp Y2UJCXBjaQoKIyBBVEEgYW5kIEFUQVBJIGRldmljZXMKZGV2aWNlCQlhdGEwCWF0IGlzYT8gcG9y dCBJT19XRDEgaXJxIDE0CmRldmljZQkJYXRhMQlhdCBpc2E/IHBvcnQgSU9fV0QyIGlycSAxNQpk ZXZpY2UJCWF0YQpkZXZpY2UJCWF0YWRpc2sJCQkjIEFUQSBkaXNrIGRyaXZlcwpkZXZpY2UJCWF0 YXBpY2QJCQkjIEFUQVBJIENEUk9NIGRyaXZlcwpkZXZpY2UJCWF0YXBpZmQJCQkjIEFUQVBJIGZs b3BweSBkcml2ZXMKZGV2aWNlCQlhdGFwaXN0CQkJIyBBVEFQSSB0YXBlIGRyaXZlcwpvcHRpb25z IAlBVEFfU1RBVElDX0lECQkjU3RhdGljIGRldmljZSBudW1iZXJpbmcKCgojIGF0a2JkYzAgY29u dHJvbHMgYm90aCB0aGUga2V5Ym9hcmQgYW5kIHRoZSBQUy8yIG1vdXNlCmRldmljZQkJYXRrYmRj MAlhdCBpc2E/IHBvcnQgSU9fS0JECmRldmljZQkJYXRrYmQwCWF0IGF0a2JkYz8gaXJxIDEgZmxh Z3MgMHgxCmRldmljZQkJcHNtMAlhdCBhdGtiZGM/IGlycSAxMgoKZGV2aWNlCQl2Z2EwCWF0IGlz YT8KCiMgc3BsYXNoIHNjcmVlbi9zY3JlZW4gc2F2ZXIKcHNldWRvLWRldmljZQlzcGxhc2gKCiMg c3lzY29ucyBpcyB0aGUgZGVmYXVsdCBjb25zb2xlIGRyaXZlciwgcmVzZW1ibGluZyBhbiBTQ08g Y29uc29sZQpkZXZpY2UJCXNjMAlhdCBpc2E/IGZsYWdzIDB4MTAwCgoKIyBGbG9hdGluZyBwb2lu dCBzdXBwb3J0IC0gZG8gbm90IGRpc2FibGUuCmRldmljZQkJbnB4MAlhdCBuZXh1cz8gcG9ydCBJ T19OUFggaXJxIDEzCgojIFBvd2VyIG1hbmFnZW1lbnQgc3VwcG9ydCAoc2VlIExJTlQgZm9yIG1v cmUgb3B0aW9ucykKZGV2aWNlCQlhcG0wICAgIGF0IG5leHVzPyBkaXNhYmxlIGZsYWdzIDB4MjAg IyBBZHZhbmNlZCBQb3dlciBNYW5hZ2VtZW50CgojIFBDQ0FSRCAoUENNQ0lBKSBzdXBwb3J0CmRl dmljZSAgICAgICAgICBjYXJkCmRldmljZSAgICAgICAgICBwY2ljMCAgIGF0IGlzYT8gaXJxIDAg cG9ydCAweDNlMCBpb21lbSAweGQwMDAwCmRldmljZSAgICAgICAgICBwY2ljMSAgIGF0IGlzYT8g aXJxIDAgcG9ydCAweDNlMiBpb21lbSAweGQ0MDAwIGRpc2FibGUKCiMgU2VyaWFsIChDT00pIHBv cnRzCmRldmljZQkJc2lvMAlhdCBpc2E/IHBvcnQgSU9fQ09NMSBmbGFncyAweDEwIGlycSA0CmRl dmljZQkJc2lvMQlhdCBpc2E/IHBvcnQgSU9fQ09NMiBpcnEgMwpkZXZpY2UJCXNpbzIJYXQgaXNh PyBkaXNhYmxlIHBvcnQgSU9fQ09NMyBpcnEgNQpkZXZpY2UJCXNpbzMJYXQgaXNhPyBkaXNhYmxl IHBvcnQgSU9fQ09NNCBpcnEgOQoKIyBQYXJhbGxlbCBwb3J0CmRldmljZQkJcHBjMAlhdCBpc2E/ IGlycSA3CmRldmljZQkJcHBidXMJCSMgUGFyYWxsZWwgcG9ydCBidXMgKHJlcXVpcmVkKQpkZXZp Y2UJCWxwdAkJIyBQcmludGVyCmRldmljZQkJcGxpcAkJIyBUQ1AvSVAgb3ZlciBwYXJhbGxlbApk ZXZpY2UJCXBwaQkJIyBQYXJhbGxlbCBwb3J0IGludGVyZmFjZSBkZXZpY2UKCgojIFBDSSBFdGhl cm5ldCBOSUNzLgpkZXZpY2UJCWRlCQkjIERFQy9JbnRlbCBEQzIxeDR4IChgYFR1bGlwJycpCmRl dmljZQkJZnhwCQkjIEludGVsIEV0aGVyRXhwcmVzcyBQUk8vMTAwQiAoODI1NTcsIDgyNTU4KQpk ZXZpY2UJCXR4CQkjIFNNQyA5NDMyVFggKDgzYzE3MCBgYEVQSUMnJykKZGV2aWNlCQl2eAkJIyAz Q29tIDNjNTkwLCAzYzU5NSAoYGBWb3J0ZXgnJykKZGV2aWNlCQl3eAkJIyBJbnRlbCBHaWdhYml0 IEV0aGVybmV0IENhcmQgKGBgV2lzZW1hbicnKQoKIyBQQ0kgRXRoZXJuZXQgTklDcyB0aGF0IHVz ZSB0aGUgY29tbW9uIE1JSSBidXMgY29udHJvbGxlciBjb2RlLgojIE5PVEU6IEJlIHN1cmUgdG8g a2VlcCB0aGUgJ2RldmljZSBtaWlidXMnIGxpbmUgaW4gb3JkZXIgdG8gdXNlIHRoZXNlIE5JQ3Mh CmRldmljZQkJbWlpYnVzCQkjIE1JSSBidXMgc3VwcG9ydApkZXZpY2UJCWRjCQkjIERFQy9JbnRl bCAyMTE0MyBhbmQgdmFyaW91cyB3b3JrYWxpa2VzCmRldmljZQkJcGNuCQkjIEFNRCBBbTc5Qzc5 eCBQQ0kgMTAvMTAwIE5JQ3MKZGV2aWNlCQlybAkJIyBSZWFsVGVrIDgxMjkvODEzOQpkZXZpY2UJ CXNmCQkjIEFkYXB0ZWMgQUlDLTY5MTUgKGBgU3RhcmZpcmUnJykKZGV2aWNlCQlzaXMJCSMgU2ls aWNvbiBJbnRlZ3JhdGVkIFN5c3RlbXMgU2lTIDkwMC9TaVMgNzAxNgpkZXZpY2UJCXN0ZQkJIyBT dW5kYW5jZSBTVDIwMSAoRC1MaW5rIERGRS01NTBUWCkKZGV2aWNlCQl0bAkJIyBUZXhhcyBJbnN0 cnVtZW50cyBUaHVuZGVyTEFOCmRldmljZQkJdnIJCSMgVklBIFJoaW5lLCBSaGluZSBJSQpkZXZp Y2UJCXdiCQkjIFdpbmJvbmQgVzg5Qzg0MEYKZGV2aWNlCQl4bAkJIyAzQ29tIDNjOTB4IChgYEJv b21lcmFuZycnLCBgYEN5Y2xvbmUnJykKCiMgSVNBIEV0aGVybmV0IE5JQ3MuCmRldmljZQkJZWQw CWF0IGlzYT8gcG9ydCAweDI4MCBpcnEgMTAgaW9tZW0gMHhkODAwMApkZXZpY2UJCWV4CmRldmlj ZQkJZXAKZGV2aWNlCQlmZTAJYXQgaXNhPyBwb3J0IDB4MzAwCiMgWGlyY29tIEV0aGVybmV0CmRl dmljZQkJeGUKIyBQUklTTSBJIElFRUUgODAyLjExYiB3aXJlbGVzcyBOSUMuCmRldmljZQkJYXdp CiMgZXhpc3RzIG9ubHkgYXMgYSBQQ01DSUEgZGV2aWNlLCBzbyB0aGVyZSBpcyBubyBJU0EgYXR0 YWNobWVudCBuZWVkZWQKIyBhbmQgcmVzb3VyY2VzIHdpbGwgYWx3YXlzIGJlIGR5bmFtaWNhbGx5 IGFzc2lnbmVkIGJ5IHRoZSBwY2NhcmQgY29kZS4KZGV2aWNlCQl3aQojIEFpcm9uZXQgNDUwMC80 ODAwIDgwMi4xMSB3aXJlbGVzcyBOSUNzLiBOb3RlOiB0aGUgZGVjbGFyYXRpb24gYmVsb3cgd2ls bAojIHdvcmsgZm9yIFBDTUNJQSBhbmQgUENJIGNhcmRzLCBhcyB3ZWxsIGFzIElTQSBjYXJkcyBz ZXQgdG8gSVNBIFBuUAojIG1vZGUgKHRoZSBmYWN0b3J5IGRlZmF1bHQpLiBJZiB5b3Ugc2V0IHRo ZSBzd2l0Y2hlcyBvbiB5b3VyIElTQQojIGNhcmQgZm9yIGEgbWFudWFsbHkgY2hvc2VuIEkvTyBh ZGRyZXNzIGFuZCBJUlEsIHlvdSBtdXN0IHNwZWNpZnkKIyB0aG9zZSBwYXJhbWV0ZXJzIGhlcmUu CmRldmljZQkJYW4KIyBUaGUgcHJvYmUgb3JkZXIgb2YgdGhlc2UgaXMgcHJlc2VudGx5IGRldGVy bWluZWQgYnkgaTM4Ni9pc2EvaXNhX2NvbXBhdC5jLgpkZXZpY2UJCWllMAlhdCBpc2E/IHBvcnQg MHgzMDAgaXJxIDEwIGlvbWVtIDB4ZDAwMDAKZGV2aWNlCQlsbmMwCWF0IGlzYT8gcG9ydCAweDI4 MCBpcnEgMTAgZHJxIDAKZGV2aWNlCQljczAJYXQgaXNhPyBwb3J0IDB4MzAwCmRldmljZQkJc24w CWF0IGlzYT8gcG9ydCAweDMwMCBpcnEgMTAKCiMgUHNldWRvIGRldmljZXMgLSB0aGUgbnVtYmVy IGluZGljYXRlcyBob3cgbWFueSB1bml0cyB0byBhbGxvY2F0ZS4KcHNldWRvLWRldmljZQlsb29w CQkjIE5ldHdvcmsgbG9vcGJhY2sKcHNldWRvLWRldmljZQlldGhlcgkJIyBFdGhlcm5ldCBzdXBw b3J0CnBzZXVkby1kZXZpY2UJc2wJMQkjIEtlcm5lbCBTTElQCnBzZXVkby1kZXZpY2UJcHBwCTEJ IyBLZXJuZWwgUFBQCnBzZXVkby1kZXZpY2UJdHVuCQkjIFBhY2tldCB0dW5uZWwuCnBzZXVkby1k ZXZpY2UJcHR5CQkjIFBzZXVkby10dHlzICh0ZWxuZXQgZXRjKQpwc2V1ZG8tZGV2aWNlCW1kCQkj IE1lbW9yeSAiZGlza3MiCnBzZXVkby1kZXZpY2UJZ2lmCTQJIyBJUHY2IGFuZCBJUHY0IHR1bm5l bGluZwpwc2V1ZG8tZGV2aWNlCWZhaXRoCTEJIyBJUHY2LXRvLUlQdjQgcmVsYXlpbmcgKHRyYW5z bGF0aW9uKQoKIyBUaGUgYGJwZicgcHNldWRvLWRldmljZSBlbmFibGVzIHRoZSBCZXJrZWxleSBQ YWNrZXQgRmlsdGVyLgojIEJlIGF3YXJlIG9mIHRoZSBhZG1pbmlzdHJhdGl2ZSBjb25zZXF1ZW5j ZXMgb2YgZW5hYmxpbmcgdGhpcyEKcHNldWRvLWRldmljZQlicGYJCSNCZXJrZWxleSBwYWNrZXQg ZmlsdGVyCm9wdGlvbnMgICAgICAgICBJUEZJUkVXQUxMCm9wdGlvbnMgICAgICAgICBJUERJVkVS VApvcHRpb25zICAgICAgICAgRFVNTVlORVQKb3B0aW9ucyAgICAgICAgIElQRklSRVdBTExfVkVS Qk9TRQpvcHRpb25zICAgICAgICAgSVBGSVJFV0FMTF9WRVJCT1NFX0xJTUlUPTEwMAoK ------------791EE21A87D58E6-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 13:55:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp011.mail.yahoo.com (smtp011.mail.yahoo.com [216.136.173.31]) by hub.freebsd.org (Postfix) with SMTP id 78AD437B405 for ; Fri, 6 Jul 2001 13:55:56 -0700 (PDT) (envelope-from maksymko@yahoo.com) Received: from ppp254.colocall.net (62.149.1.254) by smtp.mail.vip.sc5.yahoo.com with SMTP; 6 Jul 2001 20:55:55 -0000 X-Apparently-From: Date: Fri, 6 Jul 2001 23:57:31 +0300 From: Maksymko X-Mailer: The Bat! (v1.53d) UNREG / CD5BF9353B3B7091 Reply-To: Maksymko X-Priority: 3 (Normal) Message-ID: <1742492155.20010706235731@yahoo.com> To: freebsd-questions@FreeBSD.ORG Subject: DNS config 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 everyone, PLEASE, HELP ME TO CONFIGURE DNS-SERVER. I'VE DONE A LOT, BUT THIS MESSAGE WON'T BE SO LONG. JUST WRITE, WHAT PROFFESIONALS DO, WHILE CONFIGURING PRIMARY DNS FOR SOME SERVER. E.X. MY SERVER IS LOCATED AT PROVIDER'S IP-NETWORK AND HAS IT'S OWN IP-ADDRESS [E.X., 207.46.230.219] WHICH LINES I HAVE TO CONFIGURE TO BECOME A PRIMARY DNS FOR SOME DOMAIN (E.X., www.mydomain.com) AND HOW TO CONFIGURE MX RECORDS TO RECIEVE MAIL FOR *@mydomain.com. (FreeBSD 4.2, mail client qmail) PLEASE, DON'T WHIRE "JUST LOOK AT MAN PAGES AND DO'NT BE LAZY", BECAUSE I'VE DONE A LOT, BUT PRIMARY DNS SEEM NOT TO WORK. THANKS A LOT, MAXIM PROTSENKO, SYSTEM ADMINISTRATOR, KIEV, UKRAINE -- Best regards, Maksymko mailto:maksymko@yahoo.com _________________________________________________________ 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 Fri Jul 6 14: 2:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sh.stonehenge-net.com (dsl081-053-198.sfo1.dsl.speakeasy.net [64.81.53.198]) by hub.freebsd.org (Postfix) with ESMTP id 6736237B403 for ; Fri, 6 Jul 2001 14:02:35 -0700 (PDT) (envelope-from ben@stonehenge-net.com) Received: from stonehenge-net.com ([162.70.219.28]) by sh.stonehenge-net.com (8.9.3/8.8.7) with ESMTP id NAA30865; Fri, 6 Jul 2001 13:03:06 -0400 Message-ID: <3B4626F4.D80938E4@stonehenge-net.com> Date: Fri, 06 Jul 2001 14:00:36 -0700 From: ben@stonehenge-net.com X-Mailer: Mozilla 4.75 [en] (X11; U; SunOS 5.8 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: Maksymko , freebsd-questions@freebsd.org Subject: Re: DNS config References: <1742492155.20010706235731@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 ok, what have you done that doesn't work? the biggest problem i've had has been making sure the config files have no typos. the examples in the handbook, and in greg's book are pretty good, so i've been cutting and pasting them, and then editing them to fit. you also have to arrange with your isp, or whomever your domain name is registered with, to be the dns of record for a particular domain if you can send us a listing of what you've done so far,we might be able to look at it and be more helpful good luck, ben Maksymko wrote: > Hi everyone, > > PLEASE, HELP ME TO CONFIGURE DNS-SERVER. > I'VE DONE A LOT, BUT THIS MESSAGE WON'T BE SO LONG. > > JUST WRITE, WHAT PROFFESIONALS DO, WHILE CONFIGURING > PRIMARY DNS FOR SOME SERVER. > > E.X. > MY SERVER IS LOCATED AT PROVIDER'S IP-NETWORK AND > HAS IT'S OWN IP-ADDRESS [E.X., 207.46.230.219] > WHICH LINES I HAVE TO CONFIGURE TO BECOME A PRIMARY DNS > FOR SOME DOMAIN (E.X., www.mydomain.com) AND HOW TO CONFIGURE > MX RECORDS TO RECIEVE MAIL FOR *@mydomain.com. > (FreeBSD 4.2, mail client qmail) > > PLEASE, DON'T WHIRE "JUST LOOK AT MAN PAGES AND DO'NT BE > LAZY", BECAUSE I'VE DONE A LOT, BUT PRIMARY DNS SEEM NOT TO > WORK. > > THANKS A LOT, > MAXIM PROTSENKO, > SYSTEM ADMINISTRATOR, KIEV, UKRAINE > > -- > Best regards, > Maksymko mailto:maksymko@yahoo.com > > _________________________________________________________ > 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 14: 3: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gandalf.vi.bravenet.com (gandalf.bravenet.com [139.142.105.50]) by hub.freebsd.org (Postfix) with SMTP id 7EFAF37B405 for ; Fri, 6 Jul 2001 14:03:00 -0700 (PDT) (envelope-from graham@bravenet.com) Received: (qmail 1742 invoked from network); 6 Jul 2001 21:06:21 -0000 Received: from unknown (HELO grahamwork) (192.168.30.9) by 0 with SMTP; 6 Jul 2001 21:06:21 -0000 From: "Graham White" To: "FreeBSD-questions" Subject: Stale NFS file handle -error Date: Fri, 6 Jul 2001 14:06:33 -0700 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 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 Getting this error when doing a cvs committ on database files: cvs update: cannot change mode of /directory/file.db: Stale NFS file handle Any suggestions? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 14: 5:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sh.stonehenge-net.com (dsl081-053-198.sfo1.dsl.speakeasy.net [64.81.53.198]) by hub.freebsd.org (Postfix) with ESMTP id 2C44537B407 for ; Fri, 6 Jul 2001 14:05:43 -0700 (PDT) (envelope-from ben@stonehenge-net.com) Received: from stonehenge-net.com ([162.70.219.28]) by sh.stonehenge-net.com (8.9.3/8.8.7) with ESMTP id NAA30880; Fri, 6 Jul 2001 13:06:08 -0400 Message-ID: <3B4627AB.2D4AA50B@stonehenge-net.com> Date: Fri, 06 Jul 2001 14:03:39 -0700 From: ben@stonehenge-net.com X-Mailer: Mozilla 4.75 [en] (X11; U; SunOS 5.8 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: =?iso-8859-1?Q?Pawe=B3=20Szyma=F1ski?= , freebsd-questions@freebsd.org Subject: Re: kernel compilation problem. References: <6437257112.20010706224620@podspodem.art.pl> 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 hmm... your config file seems to have gotten garbled on the way here... you might try sending it again. did you do a 'make depend' ? this is the one step i always forget in the kernel process Pawe³ Szymañski wrote: > Hello. > I've FreeBSD 4.3 relase with recompiled world. > I'd started to compile my kernel (config below), and > after 'make' i've recived this error: > ===> ipfilter > make: don't know how to make /usr/src/sys/modules/ipfilter/../../netinet/mlfk_ip > l.c. Stop > *** Error code 2 > > Stop in /usr/src/sys/modules. > *** Error code 1 > > Stop in /usr/src/sys/compile/podspodem. > > Honestly I don't know what to do. > Hope You could help me. > > TIA > > Ever > > P.S. My kernel configuration is in attachment > > -- > Pawe³ Szymañski > ever@podspodem.art.pl > http://podspodem.art.pl > > ------------------------------------------------------------------------ > Name: podspodem > podspodem Type: unspecified type (application/octet-stream) > Encoding: base64 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 14:11:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc21.worldnet.att.net (mtiwmhc21.worldnet.att.net [204.127.131.46]) by hub.freebsd.org (Postfix) with ESMTP id 06A2B37B405 for ; Fri, 6 Jul 2001 14:11:08 -0700 (PDT) (envelope-from parv@worldnet.att.net) Received: from worldnet.att.net ([32.100.199.130]) by mtiwmhc21.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010706211106.PLBU3208.mtiwmhc21.worldnet.att.net@worldnet.att.net>; Fri, 6 Jul 2001 21:11:06 +0000 Received: by worldnet.att.net (Postfix, from userid 1001) id 82C6150D5F; Fri, 6 Jul 2001 17:14:58 -0400 (EDT) Date: Fri, 6 Jul 2001 17:14:58 -0400 From: parv To: Adam Nealis Cc: freebsd-questions@freebsd.org Subject: Re: XFree86-4.1.0_4 and fonts Message-ID: <20010706171458.A2509@moo.holy.cow> Mail-Followup-To: Adam Nealis , freebsd-questions@freebsd.org References: <20010706201533.15693.qmail@web5502.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010706201533.15693.qmail@web5502.mail.yahoo.com>; from adamnealis@yahoo.co.uk on Fri, Jul 06, 2001 at 09:15:33PM +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 Jul 06 16:43, i got this from Adam... > ... > I'm on 'BSD 4.3-RELEASE, and I tested my new ADSL link by > downloading and installing the current XFree86 sources - 4.1.0_4. > These are the error messages recorded in /var/log/XFree86.0.log: > > Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, \ > removing from list! > Could not init font path element /usr/X11R6/lib/X11/fonts/Type1/, \ > removing from list! > Could not init font path element /usr/X11R6/lib/X11/fonts/URW/, \ > removing from list! > Could not init font path element /usr/local/AbiSuite/fonts, \ > removing from list! this implies that you have those font directories in your "FontPath" in "XF86Config" file, but directories don't actually exist. that or, you don't have "fonts.dir" of in those directories. > > I have fonts.dir and fonts.scale files (confusingly called > "directories"). The mkfontdir man page and README.fonts ramble > on about using the -e flag but these docs do not make sense to > me. before you try again, just make sure that directory names are correct, and 'fonts.dir' has non-zero size. i have never tried using -e option. > for example, README.font says: > > $ cd /usr/local/share/fonts/Type1 > $ mkfontdir -e /usr/X11R6/lib/font/encodings > > which I dutifully did, only to create a file of exactly 0 bytes > called /usr/X11R6/lib/font/encodings/fonts.dir > ... mkfontdir doesn't exactly work w/ type1 and tt fonts as you noticed. you may wan to try ttmkfdir in /usr/ports/x11-fonts/ttmkfdir for truetype fonts, and type1inst in /usr/ports/x11-fonts/p5-type1inst for type 1 ps fonts. i hope if i am wrong, somebody will correct me. -- so, do you like word games or scrabble? - parv To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 14:23:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.usermail.com (www.usermail.com [208.239.240.90]) by hub.freebsd.org (Postfix) with ESMTP id D503737B405 for ; Fri, 6 Jul 2001 14:23:10 -0700 (PDT) (envelope-from kobes@usermail.com) Received: from terrapin (nic-41-c89-114.mn.mediaone.net [66.41.89.114]) by mail.usermail.com (8.9.3/8.9.3) with SMTP id QAA30365 for ; Fri, 6 Jul 2001 16:25:31 -0400 Message-ID: <001201c10662$6043c3e0$0201a8c0@goldenrod.net> From: "Mark Kobussen" To: Subject: Re: IPFW/NATD or Cable Modem Trouble?? Date: Fri, 6 Jul 2001 16:26:22 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000F_01C10638.6539B320" 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_000F_01C10638.6539B320 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable > natd_flags=3D"-l -d -s -m -u -dynamic -ned2" > I added the flags you recommended above, and altogether, it seems to = work a bit better. Unfortunately, the router still becomes unreachable every = few minutes. This leads me to another question -- why, if my configuration looks = fairly decent, would not only the ed2 interface stop communicating with the = cable modem, but ed1 ALSO stops responding to telnet and ssh sessions. Also, I noticed some "ed2 NIC memory corrupt - invalid packet size" = messages on the console last time I looked. It seems these JUST started = appearing after I added various NATD flags. > > I also added the following to let DHCP through > # Allow DHCP through > ${fwcmd} add pass udp from any 68 to any 67 out via ${oif} > ${fwcmd} add pass udp from any 67 to any 68 in via ${oif} Added these two, seems to be working a-ok. > And, do you have the following in /etc/dhclient.conf: > > interface "ed2" { > send host-name ""; > request subnet-mask, broadcast-address, routers,\ > domain-name-servers, domain-name, time-servers; > require domain-name-servers; > } > I added the above to my dhclient.conf file, and DHCP stopped receiving domain resolution information. I've left the dhclient.conf empty (as it = was before), as it was not only working fine, but also providing all of the information you were requesting in your dhclient.conf. Thanks for the suggestions, Mark ------=_NextPart_000_000F_01C10638.6539B320 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

> natd_flags=3D"-l -d = -s -m -u=20 -dynamic -ned2"
>

I added the flags you recommended above, = and=20 altogether, it seems to work a
bit better.  Unfortunately, the = router=20 still becomes unreachable every few
minutes.

This leads me to = another=20 question -- why, if my configuration looks fairly
decent, would not = only the=20 ed2 interface stop communicating with the cable
modem, but ed1 ALSO = stops=20 responding to telnet and ssh sessions.

Also, I noticed some "ed2 = NIC=20 memory corrupt - invalid packet size" messages
on the console last = time I=20 looked.  It seems these JUST started appearing
after I added = various=20 NATD flags.

>
> I also added the following to let DHCP=20 through
>     # Allow DHCP=20 through
>     ${fwcmd} add pass udp from any = 68 to any=20 67 out via ${oif}
>     ${fwcmd} add pass udp = from any=20 67 to any 68 in  via ${oif}

Added these two, seems to be = working=20 a-ok.

> And, do you have the following in=20 /etc/dhclient.conf:
>
> interface "ed2"=20 {
>         send host-name = "<your isp provided hostname=20 here>";
>         = request=20 subnet-mask, broadcast-address, routers,\
> domain-name-servers,=20 domain-name,=20 time-servers;
>         = require=20 domain-name-servers;
>       &nb= sp;=20 }
>

I added the above to my dhclient.conf file, and DHCP = stopped=20 receiving
domain resolution information.  I've left the = dhclient.conf=20 empty (as it was
before), as it was not only working fine, but also = providing=20 all of the
information you were requesting in your=20 dhclient.conf.

Thanks for the=20 suggestions,
Mark
------=_NextPart_000_000F_01C10638.6539B320-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 14:28:40 2001 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 D502D37B418 for ; Fri, 6 Jul 2001 14:28:34 -0700 (PDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.11.3/8.11.3) id f66LSXU12846; Fri, 6 Jul 2001 16:28:33 -0500 (CDT) (envelope-from dan) Date: Fri, 6 Jul 2001 16:28:32 -0500 From: Dan Nelson To: Graham White Cc: FreeBSD-questions Subject: Re: Stale NFS file handle -error Message-ID: <20010706162832.A6355@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.19i X-OS: FreeBSD 5.0-CURRENT Sender: owner-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 (Jul 06), Graham White said: > Getting this error when doing a cvs committ on database files: > cvs update: cannot change mode of /directory/file.db: Stale NFS file handle > > Any suggestions? Try dismounting and remounting your NFS mountpoint. -- Dan Nelson dnelson@emsphone.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 14:32:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.urx.com (mail.urx.com [63.170.19.36]) by hub.freebsd.org (Postfix) with ESMTP id E055E37B403 for ; Fri, 6 Jul 2001 14:32:35 -0700 (PDT) (envelope-from kstewart@urx.com) Received: from urx.com [206.159.132.160] by mail.urx.com with ESMTP (SMTPD32-6.06) id AE717801B6; Fri, 06 Jul 2001 14:32:33 -0700 Message-ID: <3B462E70.F77439BF@urx.com> Date: Fri, 06 Jul 2001 14:32:32 -0700 From: Kent Stewart X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: John Toon Cc: freebsd-questions@freebsd.org Subject: Re: Installworld failure! References: <01070618590800.00255@Dionysus> <3B460D3D.577266B9@urx.com> <3B461F97.B14E67B1@btinternet.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 John Toon wrote: > > Kent Stewart wrote: > > > Did you make it on one system and try to install it via NFS on a > > different one. That is when I see errors like this. The install > > knows the original path and the NFS mount isn't it. > > Nope - the build is entirely local to my one machine. After you sent this, I cvsup'ed RELENG_4 for src-all. I didn't have any problem making and installing the new system. Your latest email to hackers has you building 4.3-release. I built a number of systems using cvsup to grab the 4.3-release source. I have to assume that you don't have something /usr/src or etc. installed on your system. Text of my 6 July installworld for 4.3-stable looks like coral# head iw*706*.log mkdir -p /tmp/install.31 for prog in [ awk cat chflags chmod chown date echo egrep find grep install ln make makewhatis mtree mv perl rm sed sh sysctl test true uname wc zic; do cp `which $prog` /tmp/install.31; done cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj COMPILER_PATH=/usr/obj/usr/src/i386/usr/libexec:/usr/obj/usr/src/i386/usr/bin LIBRARY_PATH=/usr/obj/usr/src/i386/usr/lib:/usr/obj/usr/src/i386/usr/lib OBJFORMAT_PATH=/usr/obj/usr/src/i386/usr/libexec CFLAGS="-nostdinc -O -pipe -march=pentiumpro" PERL5LIB=/usr/obj/usr/src/i386/usr/libdata/perl/5.00503 GROFF_BIN_PAT This proceeded to create a 567KB file. How did you get the source before you started the build and what release were you using at that time> Kent > > John. > > 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://kstewart.urx.com/kstewart/index.html http://daily.daemonnews.org/ SETI (Search for Extraterrestrial Intelligence) @ Home http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 15: 3:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from radioactive.heavymetal.org (radioactive.francisscott.net [207.178.207.162]) by hub.freebsd.org (Postfix) with ESMTP id 3924737B406 for ; Fri, 6 Jul 2001 15:03:35 -0700 (PDT) (envelope-from fortunato@heavymetal.org) Received: (from fortunato@localhost) by radioactive.heavymetal.org (8.11.0/8.11.0) id f66M3Cp32594; Fri, 6 Jul 2001 15:03:12 -0700 Date: Fri, 6 Jul 2001 15:03:12 -0700 From: fortunato@heavymetal.org To: jake@coolbluei.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: valinux boxes Message-ID: <20010706150312.A32581@radioactive.heavymetal.org> References: <200107061647.f66Gl4T23374@lucy.tbscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200107061647.f66Gl4T23374@lucy.tbscom.com>; from jake@coolbluei.com on Fri, Jul 06, 2001 at 12:47:03PM -0400 X-OS: Linux 2.4.4 Sender: owner-freebsd-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, Jul 06, 2001 at 12:47:03PM -0400, jake@coolbluei.com wrote: > I was just curious if anyone had installed freeBSD on a Valinux 2230? I > dont believe that there is anything that it would have problems with, I > was just hoping for some reassurance if at all possible. > > By the way they are having some smoking deals, > We run two of them with 4.3 release without any problems at all. -- Scott Lampert | | www: "Singe the Hare Hare, +----------------------------------------- dance the Hoochie Koo!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 15:36:54 2001 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 59FA737B406 for ; Fri, 6 Jul 2001 15:36:52 -0700 (PDT) (envelope-from john.toon@btinternet.com) Received: from [213.122.181.68] (helo=Dionysus) by tungsten.btinternet.com with smtp (Exim 3.22 #9) id 15IeDS-0006Wr-00 for freebsd-questions@freebsd.org; Fri, 06 Jul 2001 23:36:50 +0100 Content-Type: text/plain; charset="iso-8859-1" From: John Toon To: freebsd-questions@freebsd.org Subject: Re: Installworld failure! Date: Fri, 6 Jul 2001 23:36:59 +0000 X-Mailer: KMail [version 1.2] References: <01070618590800.00255@Dionysus> <3B461F97.B14E67B1@btinternet.com> <3B462E70.F77439BF@urx.com> In-Reply-To: <3B462E70.F77439BF@urx.com> MIME-Version: 1.0 Message-Id: <01070623344901.01890@Dionysus> 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 06 July 2001 9:32 pm, Kent Stewart wrote: > How did you get the source before you started the build and what > release were you using at that time> > > Kent > > > John. I used cvsup on cvsup.uk.freebsd.org for "src-all" with tag set to: RELENG_4_3_0_RELEASE It appears you're in the right direction with your umask idea. The directory /tmp/install.281 exists, and all the directories have been suitable created under it, but they have not been populated with a single file. Meanwhile, I have checked permissions on my /tmp, and they are perfectly fine... So... what could be stopping the files being copied, even though the directories _are_ being created? John. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 15:52: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pandora.harvard.net (pandora.harvard.net [140.239.140.253]) by hub.freebsd.org (Postfix) with ESMTP id C63DA37B405 for ; Fri, 6 Jul 2001 15:52:06 -0700 (PDT) (envelope-from dynamo@pandora.harvard.net) Received: from localhost (dynamo@localhost) by pandora.harvard.net (8.11.3/8.11.3) with ESMTP id f66Mpt304934 for ; Fri, 6 Jul 2001 18:51:55 -0400 (EDT) Date: Fri, 6 Jul 2001 18:51:55 -0400 (EDT) From: dynamo To: Subject: how old was the fonze? 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 in happy days, how old was he supposed to be? cuz he looked 40 the whole time. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 16: 8:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pluto.cc.emory.edu (pluto.cc.emory.edu [170.140.1.23]) by hub.freebsd.org (Postfix) with ESMTP id B351337B403 for ; Fri, 6 Jul 2001 16:08:23 -0700 (PDT) (envelope-from gpagnon@emory.edu) Received: from oompah.ccnl ([170.140.25.235]) by pluto.cc.emory.edu (8.10.2/8.10.2) with SMTP id f66N8MC19150 for ; Fri, 6 Jul 2001 19:08:22 -0400 (EDT) From: Date: Fri, 06 Jul 2001 23:05:44 GMT Message-ID: <20010706.23054400@oompah.ccnl> Subject: staroffice 5.2 and java To: freebsd-questions@FreeBSD.ORG X-Mailer: Mozilla/3.0 (compatible; StarOffice/5.2;Linux) X-Priority: 3 (Normal) 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 Hi has anybody had success in installing java support in staroffice 5.2? I = am using FreeBSD 4-stable and I installed /usr/ports/java/linux-jdk, but= =20 staroffice doesn't seem to recognize it... thanks for any suggestions giuseppe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 16:38:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from listproc.corp.loudcloud.com (olly.loudcloud.com [66.54.20.10]) by hub.freebsd.org (Postfix) with ESMTP id 31DF737B407 for ; Fri, 6 Jul 2001 16:38:28 -0700 (PDT) (envelope-from seanp@loudcloud.com) Received: from loudcloud.com (grover.geek.loudcloud.com [192.168.0.253]) by listproc.corp.loudcloud.com (8.11.3/8.10.1) with ESMTP id f66NcR326656 for ; Fri, 6 Jul 2001 16:38:27 -0700 (PDT) Message-ID: <3B464CD6.2FDC25BF@loudcloud.com> Date: Fri, 06 Jul 2001 16:42:14 -0700 From: Sean Peck X-Mailer: Mozilla 4.74 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Adding LUNIX emulation post-install 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 do I need to do to add Linux binary compatibility post installation of FreeBSD? I know you can opt for it during initial install, but if this wasn't done how can you do it post install? Sean -- Garbage Collection... the bell bottoms of programming.. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 17: 2:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id 37BFE37B40A; Fri, 6 Jul 2001 17:02:05 -0700 (PDT) To: FreeBSD-questions@FreeBSD.org Subject: How to get best results from FreeBSD-questions Message-Id: <20010707000205.37BFE37B40A@hub.freebsd.org> Date: Fri, 6 Jul 2001 17:02:05 -0700 (PDT) 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 Jul 6 17: 3:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id 6A12837B40E; Fri, 6 Jul 2001 17:02:05 -0700 (PDT) To: FreeBSD-questions@FreeBSD.org Subject: "The Complete FreeBSD", third edition: errata and addenda Message-Id: <20010707000205.6A12837B40E@hub.freebsd.org> Date: Fri, 6 Jul 2001 17:02:05 -0700 (PDT) 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 Jul 6 17: 4:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.rdc2.ab.home.com (mail2.rdc2.ab.home.com [24.64.2.49]) by hub.freebsd.org (Postfix) with ESMTP id 121C537B401 for ; Fri, 6 Jul 2001 17:04:10 -0700 (PDT) (envelope-from unjoo@home.com) Received: from k ([24.71.108.209]) by mail2.rdc2.ab.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with SMTP id <20010707000409.VGLJ6900.mail2.rdc2.ab.home.com@k> for ; Fri, 6 Jul 2001 17:04:09 -0700 From: "KKH" To: Subject: star office??? Date: Fri, 6 Jul 2001 18:05:05 -0600 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="ks_c_5601-1987" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.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 Can i use Star Office on freebsd box??? 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 Fri Jul 6 17: 4:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id 5030D37B40C; Fri, 6 Jul 2001 17:02:05 -0700 (PDT) To: FreeBSD-questions@FreeBSD.org Subject: "The Complete FreeBSD", second edition: errata and addenda Message-Id: <20010707000205.5030D37B40C@hub.freebsd.org> Date: Fri, 6 Jul 2001 17:02:05 -0700 (PDT) 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 Jul 6 17: 5:32 2001 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 D18BC37B408 for ; Fri, 6 Jul 2001 17:05:25 -0700 (PDT) (envelope-from akbeech@anchoragerescue.org) Received: from galaxy.anchoragerescue.org (galaxy.anchoragerescue.org [24.237.7.95]) by nebula.anchoragerescue.org (Postfix) with SMTP id 47A0613E; Fri, 6 Jul 2001 16:05:14 -0800 (AKDT) Content-Type: text/plain; charset="iso-8859-1" From: Beech Rintoul To: Sean Peck , freebsd-questions@freebsd.org Subject: Re: Adding LUNIX emulation post-install Date: Fri, 6 Jul 2001 16:05:14 -0800 X-Mailer: KMail [version 1.2] References: <3B464CD6.2FDC25BF@loudcloud.com> In-Reply-To: <3B464CD6.2FDC25BF@loudcloud.com> MIME-Version: 1.0 Message-Id: <01070616051400.89987@galaxy.anchoragerescue.org> 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 06 July 2001 15:42, Sean Peck wrote: > What do I need to do to add Linux binary compatibility post installation > of FreeBSD? I know you can opt for it during initial install, but if > this wasn't done how can you do it post install? > > Sean > Install Linux Base and linux compat libs. Both of these are in the ports, or can be downloaded as binaries from FreeBSD and installed with pkg_add. 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 Fri Jul 6 17:10:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.rdc2.ab.home.com (mail2.rdc2.ab.home.com [24.64.2.49]) by hub.freebsd.org (Postfix) with ESMTP id C631C37B407 for ; Fri, 6 Jul 2001 17:10:45 -0700 (PDT) (envelope-from unjoo@home.com) Received: from k ([24.71.108.209]) by mail2.rdc2.ab.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with SMTP id <20010707001045.VKCR6900.mail2.rdc2.ab.home.com@k> for ; Fri, 6 Jul 2001 17:10:45 -0700 From: "KKH" To: Subject: star office?? Date: Fri, 6 Jul 2001 18:11:41 -0600 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="ks_c_5601-1987" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.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 Can i use Star Office on freebsd box??? 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 Fri Jul 6 17:17: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cpimssmtpu12.email.msn.com (cpimssmtpu12.email.msn.com [207.46.181.87]) by hub.freebsd.org (Postfix) with ESMTP id F285E37B408 for ; Fri, 6 Jul 2001 17:17:05 -0700 (PDT) (envelope-from toniandleif@msn.com) Received: from 38383957 ([63.24.47.105]) by cpimssmtpu12.email.msn.com with Microsoft SMTPSVC(5.0.2195.3225); Fri, 6 Jul 2001 17:17:01 -0700 Message-ID: <004401c1067e$63ba8a60$6d9ffea9@38383957> From: "toniandleif" To: Subject: Question Date: Fri, 6 Jul 2001 18:47:21 -0600 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0041_01C1064C.17102620" 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 X-OriginalArrivalTime: 07 Jul 2001 00:17:02.0407 (UTC) FILETIME=[2543ED70:01C1067A] Sender: owner-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_0041_01C1064C.17102620 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Would you please explain to me the precise relationship between GNU = source code and Free BSD source code? Why is there a link to the GNU = General Public License on the Free BSD home page -- is the use of Free = BSD source code governed by the GNU General Public License? Can I use = Free BSD source code in an application I am developing and that I would = like to license to a customer on an exclusive basis without making my = application available to the public, as long as I comply with the Free = BSD notification provisions? I would appreciate any guidance you could = provide. Thank you. ------=_NextPart_000_0041_01C1064C.17102620 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Would you please explain to me the = precise=20 relationship between GNU source code and Free BSD source code?  Why = is=20 there a link to the GNU General Public License on the Free BSD home page = -- is=20 the use of Free BSD source code governed by the GNU General Public=20 License?  Can I use Free BSD source code in an application I am = developing=20 and that I would like to license to a customer on an exclusive basis = without=20 making my application available to the public, as long as I comply with = the Free=20 BSD notification provisions?  I would appreciate any guidance you = could=20 provide.  Thank you.
------=_NextPart_000_0041_01C1064C.17102620-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 18:56:44 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cantvc.canterbury.ac.nz (cantvm.canterbury.ac.nz [132.181.2.36]) by hub.freebsd.org (Postfix) with ESMTP id 8EF6D37B401 for ; Fri, 6 Jul 2001 18:56:38 -0700 (PDT) (envelope-from rbm49@rbm49.tacacs.canterbury.ac.nz) Received: from CONVERSION-DAEMON.it.canterbury.ac.nz by it.canterbury.ac.nz (PMDF V6.0-025 #45723) id <01K5NH94NHGW9N6RZM@it.canterbury.ac.nz> for freebsd-questions@freebsd.org; Sat, 07 Jul 2001 13:56:28 +1200 (NEW ZEALAND STANDARD TIME) Received: from rbm49.tacacs.canterbury.ac.nz (rbm49.tacacs.canterbury.ac.nz [172.31.164.87]) by it.canterbury.ac.nz (PMDF V6.0-025 #45723) with ESMTP id <01K5NH93TFPS9PLWJE@it.canterbury.ac.nz> for freebsd-questions@freebsd.org; Sat, 07 Jul 2001 13:56:28 +1200 (NEW ZEALAND STANDARD TIME) Received: from rbm49 by rbm49.tacacs.canterbury.ac.nz with local (Exim 3.22 #1) id 15IhKP-0002kp-00 for freebsd-questions@FreeBSD.org; Sat, 07 Jul 2001 13:56:13 +1200 Date: Sat, 07 Jul 2001 13:56:10 +1200 From: Richard B Mahoney Subject: AMD Athlon MP & Tyan Thunder K7 To: Subscribers to FreeBSD-Questions Reply-To: Richard B Mahoney Mail-Followup-To: Subscribers to FreeBSD-Questions Message-id: <20010707135605.A10546@it.canterbury.ac.nz> 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.3-RELEASE Sender: owner-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 Readers, I was wondering whether AMD's Dual Athlon MP & Tyan's Thunder K7 are generally available. And, if they are, whether anyone has successfully used them with 4.3-RELEASE. I have read the docs at: ftp://ftp.tyan.com/manuals/thunder/m_s2462_100.pdf http://www.amd.com/products/cpg/server/athlon/760mpwp.pdf http://www.amd.com/products/cpg/athlon/techdocs/pdf/24685.pdf Also useful was a review of this combination at: http://accelenation.com/?doc=2&page=1 In all, this combination seems well-suited for a high-end workstation, especially for those on a tightish budget. Any experiences with the above? Many regards, Richard Mahoney -- +----------------------- Richard Mahoney -----------------------+ | 78 Jeffreys Rd +64-3-351-5831 | | Christchurch New Zealand | +-------------- mailto:rbm49@it.canterbury.ac.nz ---------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 19: 3:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailin6.bigpond.com (juicer03.bigpond.com [139.134.6.79]) by hub.freebsd.org (Postfix) with ESMTP id 381C537B403 for ; Fri, 6 Jul 2001 19:03:51 -0700 (PDT) (envelope-from rking2@bigpond.net.au) Received: from ghostbox ([144.135.24.69]) by mailin6.bigpond.com (Netscape Messaging Server 4.15) with SMTP id GG2ZBT00.G67 for ; Sat, 7 Jul 2001 12:09:29 +1000 Received: from CPE-61-9-176-208.vic.bigpond.net.au ([61.9.176.208]) by bwmam01.mailsvc.email.bigpond.com(MailRouter V2.9g 8311/9025814); 07 Jul 2001 12:09:29 Message-ID: <001001c10689$1e6e5d00$0200a8c0@ghostbox> From: "Matthew King" To: Subject: qmail help Date: Sat, 7 Jul 2001 12:04:12 +1000 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000D_01C106DC.EFB71750" 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 This is a multi-part message in MIME format. ------=_NextPart_000_000D_01C106DC.EFB71750 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable hi, i need help with qmail, i can't send any email to hosts thats aren't in /var/qmail/control/rcpthosts do you know how i can fix that? in rcpthosts i have this at the moment whiplash.stinkyarab.com stinkyarab.com ghostmedia.org ken-oath.com revghost.dyndns.org they are all my domains but if i want to send an e-mail to a yahoo acc i get this error The message could not be sent because one of the recipients was rejected = by the server. The rejected e-mail address was 'matthew@yahoo.com'. = Subject 'testing', Account: '192.168.0.1', Server: '192.168.0.1', = Protocol: SMTP, Server Response: '553 sorry, that domain isn't in my = list of allowed rcpthosts (#5.7.1)', Port: 25, Secure(SSL): No, Server = Error: 553, Error Number: 0x800CCC79 do u know how i can fix that? Matthew King ------=_NextPart_000_000D_01C106DC.EFB71750 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 hi,
i need help with qmail,
i can't send any email to hosts = thats
aren't in
/var/qmail/control/rcpthosts
 
do you know how i can fix = that?
 
in rcpthosts i have this at the = moment
 
whiplash.stinkyarab.com
stinkyarab.com
ghostmedia.org
k= en-oath.com
revghost.dyndns.org
 
they are all my domains
 
but if i want to send an e-mail to a = yahoo=20 acc
i get this error
 
The message could not be sent because = one of the=20 recipients was rejected by the server. The rejected e-mail address was = 'matthew@yahoo.com'. Subject = 'testing',=20 Account: '192.168.0.1', Server: '192.168.0.1', Protocol: SMTP, Server = Response:=20 '553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)', = Port:=20 25, Secure(SSL): No, Server Error: 553, Error Number: = 0x800CCC79
 
do u know how i can fix = that?
 
Matthew King
------=_NextPart_000_000D_01C106DC.EFB71750-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 19:16: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from allmaui.com (server25.aitcom.net [208.234.0.10]) by hub.freebsd.org (Postfix) with ESMTP id C926337B406 for ; Fri, 6 Jul 2001 19:16:03 -0700 (PDT) (envelope-from craig@allmaui.com) Received: from allmaui.com (c1685121-a.stcla1.sfba.home.com [24.12.15.179]) by allmaui.com (8.8.8/8.8.5) with ESMTP id WAA01850 for ; Fri, 6 Jul 2001 22:16:01 -0400 Message-ID: <3B466FF8.BDB1B413@allmaui.com> Date: Fri, 06 Jul 2001 19:12:08 -0700 From: Craig Cowen 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: Sendmail Conf 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 do I set my FreeBSD 4.3R machine to relay all mail through another mail server? so on the local machine, machine.subdomain.domain.com mail sent to the local user would go to user@domain.com I put mail.1.my.domain.com in my sendmail.cf but mail to just user still ends up in the local mail box. Sending mail to user@domain.com does not get it there either. Thanks, Craig -- In California, using your turn signal is like alerting the enemy! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 19:42:38 2001 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 2455037B405; Fri, 6 Jul 2001 19:42:29 -0700 (PDT) (envelope-from ilia@cgu.chel.su) Received: from mail.cgu.chel.su (mail.cgu.chel.su [195.54.14.68]) by icc.cgu.chel.su (8.11.3/8.11.3) with ESMTP id f672gGk84661 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified NO); Sat, 7 Jul 2001 08:42:17 +0600 (YEKST) (envelope-from ilia@cgu.chel.su) Received: (from uucp@localhost) by mail.cgu.chel.su (8.11.2/8.11.2) with UUCP id f672gGw34022; Sat, 7 Jul 2001 08:42:16 +0600 (YEKST) (envelope-from ilia@cgu.chel.su) Received: from localhost (localhost.cgu.chel.su [127.0.0.1]) by jane.poka.net (8.11.3/8.11.1) with ESMTP id f66Iehn12186; Sat, 7 Jul 2001 00:40:43 +0600 (YEKST) (envelope-from ilia@cgu.chel.su) Date: Sat, 7 Jul 2001 00:40:42 +0600 (YEKST) From: Ilia Chipitsine X-Sender: ilia@jane.poka.net To: questions@FreeBSD.ORG Cc: ports@FreeBSD.ORG Subject: profiling (-pg) 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 Does anybody know how to compile net/samba with "-pg" ? 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 Fri Jul 6 19:49:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from snfc21.pbi.net (mta5.snfc21.pbi.net [206.13.28.241]) by hub.freebsd.org (Postfix) with ESMTP id F0D2C37B401 for ; Fri, 6 Jul 2001 19:49:25 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from pacbell.net ([64.172.24.59]) by mta5.snfc21.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0GG3002BI16C7B@mta5.snfc21.pbi.net> for questions@freebsd.org; Fri, 06 Jul 2001 19:49:25 -0700 (PDT) Date: Fri, 06 Jul 2001 19:49:03 -0700 From: W Gerald Hicks Subject: Re: how old was the fonze? To: dynamo Cc: questions@freebsd.org Message-id: <3B46789F.F6F27474@pacbell.net> Organization: Cisco Systems, Inc. MIME-version: 1.0 X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 sun4u) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT X-Accept-Language: en References: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dynamo wrote: > > in happy days, how old was he supposed to be? cuz he looked 40 the whole > time. > Arthur Fonzarelli, aka "The Fonz" was born as Henry Winkler in New York City on October 30, 1945. He began the show on October 30, 1973 at the age of 28. The show ran until June 8, 1984. Cheers, W Gerald Hicks gehicks@pacbell.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 19:51:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from buffnet4.buffnet.net (buffnet4.buffnet.net [205.246.19.13]) by hub.freebsd.org (Postfix) with ESMTP id 7AB4237B406 for ; Fri, 6 Jul 2001 19:51:25 -0700 (PDT) (envelope-from shovey@buffnet.net) Received: from buffnet11.buffnet.net (buffnet11.buffnet.net [205.246.19.55]) by buffnet4.buffnet.net (8.9.3/8.8.7) with ESMTP id XAA85284; Fri, 6 Jul 2001 23:00:31 -0400 (EDT) (envelope-from shovey@buffnet.net) Date: Fri, 6 Jul 2001 22:51:08 -0400 (EDT) From: Stephen Hovey To: W Gerald Hicks Cc: dynamo , questions@FreeBSD.ORG Subject: Re: how old was the fonze? In-Reply-To: <3B46789F.F6F27474@pacbell.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 Good lord FBSD people just know everything there is to know! (at least about bsd - what a kick ass system! ) On Fri, 6 Jul 2001, W Gerald Hicks wrote: > dynamo wrote: > > > > in happy days, how old was he supposed to be? cuz he looked 40 the whole > > time. > > > > Arthur Fonzarelli, aka "The Fonz" was born as Henry Winkler in New York > City on October 30, 1945. > > He began the show on October 30, 1973 at the age of 28. The show ran > until June 8, 1984. > > Cheers, > > W Gerald Hicks > gehicks@pacbell.net > > 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 Jul 6 20:24:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nw173.netaddress.usa.net (nw173.netaddress.usa.net [204.68.24.73]) by hub.freebsd.org (Postfix) with SMTP id 4A14137B40E for ; Fri, 6 Jul 2001 20:24:26 -0700 (PDT) (envelope-from john_kernel@usa.net) Received: (qmail 28569 invoked by uid 60001); 7 Jul 2001 03:24:17 -0000 Message-ID: <20010707032417.28568.qmail@nw173.netaddress.usa.net> Received: from 204.68.24.73 by nw173 for [202.150.128.129] via web-mailer(34FM.0700.18.03B) on Sat Jul 7 03:24:17 GMT 2001 Date: 6 Jul 2001 21:24:17 MDT From: john kernel To: Subject: s option X-Mailer: USANET web-mailer (34FM.0700.18.03B) 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 dear all users; i have installed my freebsd in my hardrive, in menu partition there is a= option to set bootable into ur partition.; Fri, 6 Jul 2001 20:32:48 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f673Xf065909; Fri, 6 Jul 2001 23:33:42 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Fri, 6 Jul 2001 23:33:41 -0400 (EDT) From: Joe Clarke To: john kernel Cc: Subject: Re: s option In-Reply-To: <20010707032417.28568.qmail@nw173.netaddress.usa.net> Message-ID: <20010706233322.U65901-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 If you're going to boot the system from an external source, leave the MBR untouched. Joe Clarke On 6 Jul 2001, john kernel wrote: > dear all users; > i have installed my freebsd in my hardrive, in menu partition there is a > option to set bootable into ur partition. freebsd from floppy disk, what should i do, should i set my partition > bootable? > there is 3 option we should chose after partitioning; > BootMng:Install the FreeBSD booteasy bootmanager in the MBR > Standard: Use a standard MBR > None dont change the MBR > > in those 3 option,what should i choose if i want boot my freebsd from floppy > drive, thanks for all attentions > > 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 Jul 6 21:50:44 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tinkerbox.org (adsl-64-167-251-138.dsl.snfc21.pacbell.net [64.167.251.138]) by hub.freebsd.org (Postfix) with ESMTP id 2581837B403 for ; Fri, 6 Jul 2001 21:50:31 -0700 (PDT) (envelope-from bruno@tinkerbox.org) Received: from duron.bschwand.net (adsl-216-103-213-35.dsl.snfc21.pacbell.net [216.103.213.35]) by mail.tinkerbox.org (Postfix) with ESMTP id 7B4EB191D for ; Fri, 6 Jul 2001 21:50:24 -0700 (PDT) Date: Fri, 6 Jul 2001 21:48:25 +0000 (GMT) From: bruno schwander X-Sender: bruno@duron.bschwand.net To: questions@freebsd.org Subject: XFree86 4.1 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 all, I built XFree86 4.1 from the ports and I am unable to make it work. when I try to run startx as root, it just makes my pc reboot after a few seconds ! This is on FreeBSD 4.3 stable, athlon 1 gig, matrox G400. I tried with and without the mga_hal binary downloaded from matrax ftp, same result. I tried to generate a new XF86Config from the xf86config script, and then tried with the XF86Config that I had working with 4.0 Any suggestions ? Thanks bruno here is the end of /var/log/XFree86.0.log (II) Setting vga for screen 0. (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/X11R6/lib/modules/libvgahw.a (II) Module vgahw: vendor="The XFree86 Project" compiled for 4.1.0, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.4 (==) MGA(0): Depth 8, (==) framebuffer bpp 8 (II) Loading sub module "mga_hal" (II) LoadModule: "mga_hal" (II) Loading /usr/X11R6/lib/modules/drivers/mga_hal_drv.o (II) Module mga_hal: vendor="The XFree86 Project" compiled for 4.0.3, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.3 (II) MGA(0): Matrox HAL module used (--) MGA(0): Chipset: "mgag400" (==) MGA(0): Using AGP 1x mode (--) MGA(0): Linear framebuffer at 0xF6000000 (--) MGA(0): MMIO registers at 0xF4000000 (--) MGA(0): Pseudo-DMA transfer window at 0xF3800000 (--) MGA(0): BIOS at 0xF5FF0000 (II) xf86ReadBIOS(f6000000, 0, Buf, 40)-> 55 aa 40 eb... (II) xf86ReadBIOS(f6000000, 0, Buf, 10000)-> 55 aa 40 eb... (--) MGA(0): Video BIOS info block at offset 0x07B20 (WW) MGA(0): Video BIOS info block not detected! (II) MGA(0): MGABios.RamdacType = 0x0 (==) MGA(0): Write-combining range (0xf4000000,0x4000) was already clear and /etc/X11/XF86Config Section "ServerLayout" Identifier "XFree86 Configured" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "Files" RgbPath "/usr/X11R6/lib/X11/rgb" ModulePath "/usr/X11R6/lib/modules" FontPath "/usr/X11R6/lib/X11/fonts/misc/" FontPath "/usr/X11R6/lib/X11/fonts/Speedo/" FontPath "/usr/X11R6/lib/X11/fonts/Type1/" FontPath "/usr/X11R6/lib/X11/fonts/CID/" FontPath "/usr/X11R6/lib/X11/fonts/75dpi/" FontPath "/usr/X11R6/lib/X11/fonts/100dpi/" EndSection Section "Module" Load "dbe" SubSection "extmod" Option "omit xfree86-dga" # don't initialise the DGA extension EndSubSection # This loads the Type1 and FreeType font modules Load "type1" Load "freetype" # Load "extmod" Load "xie" # Load "pex5" # Load "glx" # Load "dri" Load "record" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "keyboard" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/mouse" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Monitor Model" EndSection Section "Device" ### Available Driver options are:- ### Values: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz" ### [arg]: arg optional #Option "SWcursor" # [] #Option "HWcursor" # [] #Option "PciRetry" # [] #Option "SyncOnGreen" # [] #Option "NoAccel" # [] #Option "ShowCache" # [] #Option "Overlay" # [] #Option "MGASDRAM" # [] #Option "ShadowFB" # [] #Option "UseFBDev" # [] #Option "ColorKey" # #Option "SetMclk" # #Option "OverclockMem" # [] #Option "VideoKey" # #Option "Rotate" # [] #Option "TexturedVideo" # [] #Option "Crtc2Half" # [] #Option "Crtc2Ram" # #Option "Int10" # [] #Option "AGPMode" # #Option "DigitalScreen" # [] #Option "TV" # [] #Option "TVStandard" # [] #Option "CableType" # [] #Option "NoHal" # [] #Option "SwappedHead" # [] #Option "DRI" # [] Identifier "Card0" Driver "mga" VendorName "Matrox" BoardName "MGA G400 AGP" BusID "PCI:1:0:0" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Depth 1 EndSubSection SubSection "Display" Depth 4 EndSubSection SubSection "Display" Depth 8 EndSubSection SubSection "Display" Depth 15 EndSubSection SubSection "Display" Depth 16 EndSubSection SubSection "Display" Depth 24 EndSubSection EndSection To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 22:42:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mx2.threeh.com (ct515603-b.lafayt1.in.home.com [24.22.253.67]) by hub.freebsd.org (Postfix) with ESMTP id 107B937B403 for ; Fri, 6 Jul 2001 22:42:44 -0700 (PDT) (envelope-from rlucas@solidcomputing.com) Received: from localhost (rlucas@localhost) by mx2.threeh.com (8.11.3/8.11.3) with ESMTP id f675ghM00793 for ; Sat, 7 Jul 2001 00:42:43 -0500 (EST) (envelope-from rlucas@solidcomputing.com) Date: Sat, 7 Jul 2001 00:42:43 -0500 (EST) From: Richard Lucas X-X-Sender: To: Subject: Maildir + pine Message-ID: <20010707003954.P784-100000@mx2.threeh.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 Anyone know how to make this work? I tried making pine with maildir out of the ports and it installed ok but it still doesn't work. I couldn't find much documentation on it so it's probably something small. :) Thoughts? -Richard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 22:45:16 2001 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 844BA37B403 for ; Fri, 6 Jul 2001 22:45:14 -0700 (PDT) (envelope-from kdagee2@yahoo.com) Received: from slip-32-100-100-37.wa.us.prserv.net (HELO yahoo.com) (32.100.100.37) by smtp.mail.vip.sc5.yahoo.com with SMTP; 7 Jul 2001 05:45:13 -0000 X-Apparently-From: Message-ID: <3B46A1F5.4947A6BC@yahoo.com> Date: Fri, 06 Jul 2001 22:45:25 -0700 From: Karl Agee X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.19-4.1mdk i686) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: kde 1.x issues 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 Grettings, installed freebsd 4.0 and kde. KDE boots and everything works fine as root, but as user, I get this when starting kde: could not create ~/kde/share/apps/kfm/magic none of the kdeapps works either. I gather this is a common problem but havent seen a fix for it yet. thanks, karl _________________________________________________________ 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 Fri Jul 6 22:56:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns2.interlinks.net (ns2.interlinks.net [207.107.160.2]) by hub.freebsd.org (Postfix) with ESMTP id A40A837B405 for ; Fri, 6 Jul 2001 22:56:25 -0700 (PDT) (envelope-from harr@interlinks.net) Received: from newcomp (usr1-88.interlinks.net [209.5.79.88]) by ns2.interlinks.net (8.10.0.Beta6/8.10.0.Beta6) with SMTP id f675uEf05302 for ; Sat, 7 Jul 2001 01:56:17 -0400 (EDT) Message-ID: <001101c106a9$5b2b7960$584f05d1@newcomp> From: "Chris Harris" To: Subject: A Networking Question Date: Sat, 7 Jul 2001 01:53:44 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0008_01C10687.A7A45180" 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_0008_01C10687.A7A45180 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable At home I have two computers. This one, connected to the internet, = running Win ME, and an older system running FreeBSD. I wish to share my = internet connection between this one and the system running FreeBSD. = Both systems have network cards but I have not got them netoworked = together. Is there a place I could find a detailed description of how = to set this all up? ------=_NextPart_000_0008_01C10687.A7A45180 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
At home I have two computers.  = This one,=20 connected to the internet, running Win ME, and an older system running=20 FreeBSD.  I wish to share my internet connection between this = one and=20 the system running FreeBSD.  Both systems have network cards but I = have not=20 got them netoworked together.  Is there a place I could find a = detailed=20 description of how to set this all up?
------=_NextPart_000_0008_01C10687.A7A45180-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 22:59:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gull.mail.pas.earthlink.net (gull.mail.pas.earthlink.net [207.217.121.85]) by hub.freebsd.org (Postfix) with ESMTP id E95A837B405 for ; Fri, 6 Jul 2001 22:59:26 -0700 (PDT) (envelope-from mike@activemessage.com) Received: from activemessage.com (pool0496.cvx21-bradley.dialup.earthlink.net [209.179.193.241]) by gull.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id WAA10918; Fri, 6 Jul 2001 22:58:34 -0700 (PDT) Message-ID: <3B46A672.45507B3D@activemessage.com> Date: Fri, 06 Jul 2001 23:04:34 -0700 From: Michael Loftis X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Richard B Mahoney Cc: Subscribers to FreeBSD-Questions Subject: Re: AMD Athlon MP & Tyan Thunder K7 References: <20010707135605.A10546@it.canterbury.ac.nz> 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 They are generally available, but I don't know of anyone using one as of yet, and most certainly not with FreeBSD. I'd assume the follow (or are atleast compatible with) the Intel MP/SMP spec. Thats what they seem to be anyway, like I said haven't eseen one in action yet, though I'm seriously considering dropping down the money for one soon. Richard B Mahoney wrote: > > Dear Readers, > > I was wondering whether AMD's Dual Athlon MP & Tyan's > Thunder K7 are generally available. And, if they are, > whether anyone has successfully used them with > 4.3-RELEASE. > > I have read the docs at: > > ftp://ftp.tyan.com/manuals/thunder/m_s2462_100.pdf > > http://www.amd.com/products/cpg/server/athlon/760mpwp.pdf > > http://www.amd.com/products/cpg/athlon/techdocs/pdf/24685.pdf > > Also useful was a review of this combination at: > > http://accelenation.com/?doc=2&page=1 > > In all, this combination seems well-suited for a high-end > workstation, especially for those on a tightish budget. > > Any experiences with the above? > > Many regards, > > Richard Mahoney > > > -- > +----------------------- Richard Mahoney -----------------------+ > | 78 Jeffreys Rd +64-3-351-5831 | > | Christchurch New Zealand | > +-------------- mailto:rbm49@it.canterbury.ac.nz ---------------+ > > 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 Jul 6 23: 2:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from w2xo.pgh.pa.us (18.gibs5.xdsl.nauticom.net [209.195.184.19]) by hub.freebsd.org (Postfix) with ESMTP id 6BC5C37B405 for ; Fri, 6 Jul 2001 23:02:37 -0700 (PDT) (envelope-from durham@w2xo.pgh.pa.us) Received: from jimslaptop.int (jimslaptop.int [192.168.5.8]) by w2xo.pgh.pa.us (8.11.3/8.11.3) with ESMTP id f676Cr312405; Sat, 7 Jul 2001 02:12:53 -0400 (EDT) (envelope-from durham@w2xo.pgh.pa.us) Date: Sat, 7 Jul 2001 02:02:48 -0400 (EDT) From: Jim Durham X-X-Sender: To: Enriko Groen Cc: "'freebsd-questions@freebsd.org'" Subject: Re: Replacing Exchange In-Reply-To: <510EAC2065C0D311929200A0247252622F794C@NETIVITY-FS> 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 Thu, 5 Jul 2001, Enriko Groen wrote: > Hi, > > Although I realise that this is not really a FreeBSD specific question, I > think this is the best place for me to drop it. > > I'm just wondering if any one here has experience with replacing a Microsoft > Exchange server with a FreeBSD based system. > > My company (at this moment about 15 people) has started off using MS > products (MS Office, Exchange, IIS). I'm slowly (to my feeling) introducing > FreeBSD based machines/servers. > > The one that bugs me most is the Outlook + Exchange duo. Outlook is a beast > and possibly the worst MUA around (preaching to the converted here). > However, we are quite used to some Outlook functions like calendar, > contacts, public folders and hotsync'ing with Palm/Psion. > > I think we will stick with Windows as a desktop platform but we are willing > to take a look at for instance StarOffice. > > Any suggestions? Links? Experiences? Anything is welcome... > > -- Over the last year I have successfully converted our company over to FreeBSD/Samba in place of NT and Novell. I have been involved in the last couple months in replacing some of the "Exchange Server" functionality. I started at our company last summer, and the NT server was dieing every few months with one problem or another. My first week there, it managed to fill up it's disks, and crash. Then, during an attempted reboot, it sent *something* to the APC UPS and shut itself off in the middle of a reboot, trashing the disks beyond repair. The old sysadmin (who was overlapping with me) tryed to get it back up with many long calls to M$ tech support. During the 2 week period that he was on the phone with M$, trying to get the thing back up, I needed a mail server, so, I quickly went around the building and moved all the MUAs over to the FreeBSD server (I had set it up as the MX backup, (luckily) and life went on. I turned on IMAP and POP3 and Samba and voila! However, there was some whining. The big whine that everyone made was the address book. LDAP was our answer. Although Microsoft *almost* made their version of the LDAP client in Outlook and Express so non-standard as to be unusable, it was close enough. Outlook, Outlook Express, Netscape Messenger,Eudora and Entourage all support LDAP. I used openldap (from the ports) and set it up as a company address book and a contact list. I also have an Apache/PHP web page that allows one to update both lists. This works really well on Netscape 4.7 and sorta OK on Outlook 2000. Outlook 97 was a problem, but there is a free LDAP/Outlook Addressbook client out there called Messageware (check Google for the URL). It works *very* well with Outlook 97. Much better than the LDAP support in Outlook 2000. Another big win with LDAP was that Entourage on the Macs (we have a half floor of Macs in our building) also supports LDAP addressbooks and works very well. Like someone else said, everyone usually has their own personal contact list, so this isn't a big deal. One other thing that was missed was the "Out of Office" functionality, whereby a message is sent in reply to emails to someone on vacation or out of town for a while. Of course, unix has had a mechanism for doing this for a long time, the "vacation" program. However, expecting one of our "point-and-click" users to telnet (or better, SSH in) to the server and actually make a .forward file and a .vacation.msg in their home directory would get you nothing but blank stares. So, the answer here is a web page with a php script to create a .forward file and a .vacation.msg file for them. Then, it has a button to turn it off when they come back. So, it can be done. Actually, the Mac people are thrilled. They couldn't do the Exchange addressbook, so they have something they didn't have before. Anyway, that's my story... hope it is helpful to you. -Jim Durham To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 23: 6:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from w2xo.pgh.pa.us (18.gibs5.xdsl.nauticom.net [209.195.184.19]) by hub.freebsd.org (Postfix) with ESMTP id F252437B406 for ; Fri, 6 Jul 2001 23:06:50 -0700 (PDT) (envelope-from durham@w2xo.pgh.pa.us) Received: from jimslaptop.int (jimslaptop.int [192.168.5.8]) by w2xo.pgh.pa.us (8.11.3/8.11.3) with ESMTP id f676HA312429; Sat, 7 Jul 2001 02:17:11 -0400 (EDT) (envelope-from durham@w2xo.pgh.pa.us) Date: Sat, 7 Jul 2001 02:07:04 -0400 (EDT) From: Jim Durham X-X-Sender: To: KKH Cc: Subject: Re: star office??? 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 Fri, 6 Jul 2001, KKH wrote: > Can i use Star Office on freebsd box??? > > Thanks in advance... > Yes. It is in the ports collection. Check out /usr/ports/editors/staroffice52 . -Jim Durham To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 23: 7: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from snfc21.pbi.net (mta5.snfc21.pbi.net [206.13.28.241]) by hub.freebsd.org (Postfix) with ESMTP id D6EE137B405 for ; Fri, 6 Jul 2001 23:07:00 -0700 (PDT) (envelope-from gehicks@pacbell.net) Received: from pacbell.net ([64.172.24.59]) by mta5.snfc21.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0GG300E35ABNBF@mta5.snfc21.pbi.net> for questions@freebsd.org; Fri, 06 Jul 2001 23:06:59 -0700 (PDT) Date: Fri, 06 Jul 2001 23:06:39 -0700 From: W Gerald Hicks Subject: Re: A Networking Question To: Chris Harris Cc: questions@freebsd.org Message-id: <3B46A6EF.35D1CFCA@pacbell.net> Organization: Cisco Systems, Inc. MIME-version: 1.0 X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 sun4u) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT X-Accept-Language: en References: <001101c106a9$5b2b7960$584f05d1@newcomp> Sender: owner-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 Harris wrote: > > At home I have two computers. This one, connected to the internet, > running Win ME, and an older system running FreeBSD. I wish to share > my internet connection between this one and the system running > FreeBSD. Both systems have network cards but I have not got them > netoworked together. Is there a place I could find a detailed > description of how to set this all up? Hi Chris (HTML mail messes up the search indexing, regular text is preferred) I'd *really* recommend front-ending the internet connection with the FreeBSD box and using the NAT features builtin to FreeBSD's PPP instead. Here is a good link: http://www.freebsd.org/tutorials/ppp/index.html This assumes you're doing dialup on an analog modem... let us know if it's DSL and we'll point out another resource. Welcome aboard! FreeBSD can be a little work to get started for those unfamiliar with Unix; Stick with it, you'll soon find the liberty that it brings. Cheers, W Gerald Hicks gehicks@pacbell.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 23: 9:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from evilfry.dyndns.org (dyn15ppp14.qala.com.sg [210.193.15.14]) by hub.freebsd.org (Postfix) with ESMTP id EF87437B40A for ; Fri, 6 Jul 2001 23:09:53 -0700 (PDT) (envelope-from root@evilfry.dyndns.org) Received: by evilfry.dyndns.org (Postfix, from userid 0) id 60BD0183A29; Sat, 7 Jul 2001 14:10:32 +0800 (SGT) Content-Type: text/plain; charset="iso-8859-1" From: James Lim Reply-To: evilfry@sg.freebsd.org To: "KKH" , Subject: Re: star office?? Date: Sat, 7 Jul 2001 14:10:13 +0800 X-Mailer: KMail [version 1.2] References: In-Reply-To: MIME-Version: 1.0 Message-Id: <01070714101300.11456@evilfry.dyndns.org> 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 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Yes you can, there is a port of it On the last episode Saturday 07 July 2001 08:11, KKH wrote: > Can i use Star Office on freebsd box??? > > Thanks in advance... > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message - --=20 Regards, James Lim http://sg.freebsd.org | http://www.bsd-geeks.org -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQA/AwUBO0anyJpTakonTMbIEQLDeACfeXwyM/jUuqiXo9a9yr9D19+byQkAoLfV 9lWlnGHb8h7wIXTH/VgZMhtE =3DdRN3 -----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 Fri Jul 6 23:14:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mx2.threeh.com (ct515603-b.lafayt1.in.home.com [24.22.253.67]) by hub.freebsd.org (Postfix) with ESMTP id 441F537B403 for ; Fri, 6 Jul 2001 23:14:24 -0700 (PDT) (envelope-from rlucas@solidcomputing.com) Received: from localhost (rlucas@localhost) by mx2.threeh.com (8.11.3/8.11.3) with ESMTP id f676ELG00877; Sat, 7 Jul 2001 01:14:22 -0500 (EST) (envelope-from rlucas@solidcomputing.com) Date: Sat, 7 Jul 2001 01:14:21 -0500 (EST) From: Richard Lucas X-X-Sender: To: Richard B Mahoney Cc: Subscribers to FreeBSD-Questions Subject: Re: AMD Athlon MP & Tyan Thunder K7 In-Reply-To: <20010707135605.A10546@it.canterbury.ac.nz> Message-ID: <20010707011026.U784-100000@mx2.threeh.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, 7 Jul 2001, Richard B Mahoney wrote: > Dear Readers, > > I was wondering whether AMD's Dual Athlon MP & Tyan's > Thunder K7 are generally available. And, if they are, > whether anyone has successfully used them with > 4.3-RELEASE. They're available, the cheapest I could find the board for was about $500 and about $100 cheaper without the onboard SCSI. This board also takes a special power supply which runs about $100 or a bit less IIRC. > > In all, this combination seems well-suited for a high-end > workstation, especially for those on a tightish budget. > > Any experiences with the above? No experience with them in FreeBSD as of yet. -Richard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 6 23:47:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web12208.mail.yahoo.com (web12208.mail.yahoo.com [216.136.173.92]) by hub.freebsd.org (Postfix) with SMTP id 8234F37B40A for ; Fri, 6 Jul 2001 23:47:43 -0700 (PDT) (envelope-from el_durango@yahoo.com) Message-ID: <20010707064743.47092.qmail@web12208.mail.yahoo.com> Received: from [65.34.200.94] by web12208.mail.yahoo.com via HTTP; Fri, 06 Jul 2001 23:47:43 PDT Date: Fri, 6 Jul 2001 23:47:43 -0700 (PDT) From: Peyman M Subject: Telnet and FTP question 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 system info. uname -a: FreeBSD patton.warriors.com 4.3-RELEASE FreeBSD 4.3-RELEASE #0: Sat Apr 21 10:54 :49 GMT 2001 jkh@narf.osd.bsdi.com:/usr/src/sys/compile/GENERIC i386 I have setup FreeBSD and installed it on the network, I can telnet to systems on the network and telnet to the Freebsd system. I have setup the router/firewall to access the Freebsd machine when telneting into the domain from the outside. When I telnet it shows that it makes a connection but it takes a long time (more than a min) for the username/passwd prompts pop up. On the network there is also a Linux server, I configured the router to point to the linux machine for telnet and it instantaneously went to the login prompt. Why is this delay occuring in the freebsd machine and not with the linux machine. Both of them have the same info in the /etc/resolv.conf and /etc/hosts files. I also do not know why the Freebsd machine cannot access the internet but only sees the intranet. thank you, peyman m. __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Jul 7 1:18:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from goose.prod.itd.earthlink.net (goose.mail.pas.earthlink.net [207.217.120.18]) by hub.freebsd.org (Postfix) with ESMTP id B6E8537B405 for ; Sat, 7 Jul 2001 01:18:12 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.244.107.69.Dial1.SanJose1.Level3.net [209.244.107.69]) by goose.prod.itd.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id BAA23178; Sat, 7 Jul 2001 01:18:10 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f678I8R01948; Sat, 7 Jul 2001 01:18:08 -0700 (PDT) (envelope-from cjc) Date: Sat, 7 Jul 2001 01:18:08 -0700 From: "Crist J. Clark" To: smnoldelinux@mediaone.net Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Syslogd on FreeBSD-4.3 Message-ID: <20010707011808.B408@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20010706103447.F5246-100000@bsd.smnolde.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010706103447.F5246-100000@bsd.smnolde.com>; from scott.nolde@mediaone.net on Fri, Jul 06, 2001 at 10:40:15AM -0400 Sender: owner-freebsd-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, Jul 06, 2001 at 10:40:15AM -0400, scott.nolde@mediaone.net wrote: > I'm trying to log syslog messages from a cisco 3640 router onto a > FreeBSD-4.3-STABLE box and am not having much success. Uhhh... Didn't you ask this same question on here about four days ago? I gave the answer then. > I see the udp packets arriving at the nic interface, but syslogd is not > logging at all. > > My syslog is enable in /etc/rc.conf adn the command line for syslogd is: > syslogd -a 192.168.10.100:* This is not the correct syntax. You mean, # syslogd -a 192.168.10.100/32:* The rule as you wrote it will never match anything (until I MFC the fix I put in CURRENT). > And in /etc/syslog.conf to catch everything I have: > *.* /var/log/all > > Someone mentioned an alternative program in ports for syslog earlier, but > I lost the email in a system recovery and the answer was not copied back > to -questions. Ah. That what happened to my response? -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 1:44:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mx2.threeh.com (ct515603-b.lafayt1.in.home.com [24.22.253.67]) by hub.freebsd.org (Postfix) with ESMTP id 2355737B401 for ; Sat, 7 Jul 2001 01:44:20 -0700 (PDT) (envelope-from rlucas@solidcomputing.com) Received: from localhost (rlucas@localhost) by mx2.threeh.com (8.11.3/8.11.3) with ESMTP id f678iLD01565 for ; Sat, 7 Jul 2001 03:44:21 -0500 (EST) (envelope-from rlucas@solidcomputing.com) Date: Sat, 7 Jul 2001 03:44:21 -0500 (EST) From: Richard Lucas X-X-Sender: To: Subject: h323 proxy make error Message-ID: <20010707034216.H1558-100000@mx2.threeh.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 am trying to install openh323proxy and it's giving me the following error, any ideas on how to fix it? c++ -Wall -DP_FREEBSD=430001 -DP_SSL -I/usr/include/openssl -DP_PTHREADS -DPBYTE_ORDER=PLITTLE_ENDIAN -I/usr/ports/net/openh323proxy/../openh323/work/pwlib/include/ptlib/unix -I/usr/ports/net/openh323proxy/../openh323/work/pwlib/include -DPTRACING -I/usr/ports/net/openh323proxy/../openh323/work/openh323/include -DNDEBUG -O -pipe -march=pentium -pthread -c EndpointTabl.cxx -o obj_FreeBSD_x86_r/EndpointTabl.o EndpointTabl.cxx: In function `bool IsPrefix(const H225_AliasAddress &, const H225_AliasAddress &)': EndpointTabl.cxx:223: `e_e164' is not a member of type `H225_AliasAddress' EndpointTabl.cxx:224: warning: unreachable code at beginning of switch statement EndpointTabl.cxx:238: `e_publicNumber' is not a member of type `H225_PartyNumber' EndpointTabl.cxx:240: warning: unreachable code at beginning of switch statement EndpointTabl.cxx: In method `class Endpoint EndpointTable::FindByPrefix(const H225_ArrayOf_AliasAddress &)': EndpointTabl.cxx:1083: `e_e164' is not a member of type `H225_AliasAddress' gmake: *** [obj_FreeBSD_x86_r/EndpointTabl.o] Error 1 *** Error code 2 Stop in /usr/ports/net/openh323proxy. *** Error code 1 Stop in /usr/ports/net/openh323proxy. *** Error code 1 Stop in /usr/ports/net/openh323proxy. *** Error code 1 Stop in /usr/ports/net/openh323proxy. Thanks, -Richard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 1:52:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.arc.net.my (nagano.arc.net.my [203.115.225.22]) by hub.freebsd.org (Postfix) with ESMTP id B713437B408 for ; Sat, 7 Jul 2001 01:52:53 -0700 (PDT) (envelope-from llchan@eweb-asia.com) Received: from llchan ([202.75.144.37]) by mail.arc.net.my (Netscape Messaging Server 4.15) with SMTP id GG3I0100.MZ9 for ; Sat, 7 Jul 2001 16:52:49 +0800 Message-ID: <000e01c106c1$2bed20a0$25904bca@ewebasia.com> From: "Ling Ling" To: Subject: IPFW error message Date: Sat, 7 Jul 2001 16:45:24 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000B_01C10704.38299F40" 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_000B_01C10704.38299F40 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, I come across this error message in my FreeBSD-4.2 server when I started = firewall rules : ipfw: getsockopt(IP_FW_ADD): Invalid argument I had all IPFIREWALL kernel options built and when I ' kldload -v | grep = ipfw' the ipfw is there .... any clues on this ?? Thanks & Regards, Ling Ling ------=_NextPart_000_000B_01C10704.38299F40 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi,
 
I come across this error message in my = FreeBSD-4.2=20 server when I started firewall rules :
 
ipfw: getsockopt(IP_FW_ADD): Invalid=20 argument
 
I had all IPFIREWALL kernel options = built and when=20 I ' kldload -v | grep ipfw' the ipfw is there .... any clues on this=20 ??
 
Thanks & Regards,
Ling Ling
 
------=_NextPart_000_000B_01C10704.38299F40-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 2:26:42 2001 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 24B6E37B403 for ; Sat, 7 Jul 2001 02:26:39 -0700 (PDT) (envelope-from elitetek@tekrealm.net) Received: (from root@localhost) by freebsd.tekrealm.net (8.11.4/8.11.3) id f679Qco47060; Sat, 7 Jul 2001 02:26:38 -0700 (PDT) (envelope-from elitetek@tekrealm.net) Received: (from elitetek@localhost) by freebsd.tekrealm.net (8.11.4/8.11.3av) id f679Qb847053; Sat, 7 Jul 2001 02:26:37 -0700 (PDT) (envelope-from elitetek@tekrealm.net) X-Authentication-Warning: freebsd.tekrealm.net: elitetek set sender to elitetek@tekrealm.net using -f Date: Sat, 7 Jul 2001 02:26:37 -0700 From: Andrew Stuart To: Adam Nealis Cc: freebsd-questions@freebsd.org Subject: Re: XFree86-4.1.0_4 and fonts Message-ID: <20010707022637.A46881@freebsd.tekrealm.net> Reply-To: elitetek@tekrealm.net References: <20010706201533.15693.qmail@web5502.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: <20010706201533.15693.qmail@web5502.mail.yahoo.com>; from adamnealis@yahoo.co.uk on Fri, Jul 06, 2001 at 09:15:33PM +0100 X-Virus-Scanned: by AMaViS perl-10 Sender: owner-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 not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, \ > removing from list! > Could not init font path element /usr/X11R6/lib/X11/fonts/Type1/, \ > removing from list! > Could not init font path element /usr/X11R6/lib/X11/fonts/URW/, \ > removing from list! > Could not init font path element /usr/local/AbiSuite/fonts, \ > removing from list! > I am not sure about the last two, but have you checked your /etc/X11/XF86Config and looked under the Section "Module" to make sure you had the lines: Load "speedo" and Load "type1" Hope this Helps.. -- Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 2:29:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from evilfry.dyndns.org (dyn15ppp4.qala.com.sg [210.193.15.4]) by hub.freebsd.org (Postfix) with ESMTP id 03B7737B401 for ; Sat, 7 Jul 2001 02:29:15 -0700 (PDT) (envelope-from root@evilfry.dyndns.org) Received: by evilfry.dyndns.org (Postfix, from userid 0) id 8DB89183A2A; Sat, 7 Jul 2001 17:29:43 +0800 (SGT) Content-Type: text/plain; charset="iso-8859-1" From: James Lim Reply-To: evilfry@sg.freebsd.org To: "Ling Ling" , Subject: Re: IPFW error message Date: Sat, 7 Jul 2001 17:29:21 +0800 X-Mailer: KMail [version 1.2] References: <000e01c106c1$2bed20a0$25904bca@ewebasia.com> In-Reply-To: <000e01c106c1$2bed20a0$25904bca@ewebasia.com> MIME-Version: 1.0 Message-Id: <01070717292100.46971@evilfry.dyndns.org> 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 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi Ling Ling, =09=09try checking whether ipfw is loaded correctly, kldstat -v | grep ip= f If it is not, try loading the module. The last time that happened was=20 due to an improper make world, although it was compiled in kernel. Hope this helps On the last episode Saturday 07 July 2001 16:45, Ling Ling wrote: > Hi, > > I come across this error message in my FreeBSD-4.2 server when I > started firewall rules : > > ipfw: getsockopt(IP_FW_ADD): Invalid argument > > I had all IPFIREWALL kernel options built and when I ' kldload -v | > grep ipfw' the ipfw is there .... any clues on this ?? > > Thanks & Regards, > Ling Ling - ---------------------------------------- Content-Type: text/html; charset=3D"iso-8859-1"; name=3D"Attachment: 1" Content-Transfer-Encoding: quoted-printable Content-Description:=20 - ---------------------------------------- - --=20 Regards, James Lim http://sg.freebsd.org | http://www.bsd-geeks.org -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQA/AwUBO0bWdZpTakonTMbIEQJztACfclm6Bu5zjOFnmUOVXLQPlQMClakAoL/F YZLtCA26zEcwK2IdrWNYoyjW =3DFGjS -----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 Sat Jul 7 2:46:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from algonet.se (franklin.tninet.se [195.100.94.106]) by hub.freebsd.org (Postfix) with ESMTP id 7A41737B401 for ; Sat, 7 Jul 2001 02:46:24 -0700 (PDT) (envelope-from gus@algonet.se) Received: from laptop (sdu249-237.ppp.algonet.se [195.163.237.249]) by franklin.tninet.se (BLUETAIL Mail Robustifier 2.2.2) with ESMTP id 704038.498884.994franklin-s0 ; Sat, 07 Jul 2001 11:41:24 +0200 From: Gustaf Tham To: irwanhadi@phxby.com, freebsd-questions@FreeBSD.org Subject: Re: Subscriptions at WindRiver -- Where? Date: Sat, 07 Jul 2001 11:45:28 +0200 Message-ID: <17kdkt86udcsh8vrnbg8eul5ies9mojs52@4ax.com> References: <1ot6kt8iic8c1fpacli5pris6qbhj9dqrk_4ax.com@ns.sol.net> <20010705185706.A8742_phxby.com@ns.sol.net> In-Reply-To: <20010705185706.A8742_phxby.com@ns.sol.net> X-Mailer: Forte Agent 1.8/32.548 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 06 Jul 2001 00:54:52 +0000, in sol.lists.freebsd.questions you wrote: >On Wed, Jul 04, 2001 at 09:17:10PM -0600, Gustaf Tham wrote: > >> I can't find the "subscriptions" page on WindRiver any more. >> Surely you can still subscribe to the releases and to the toolkit? > >Hmm I couldn't find it either, but my experience with wccdrom freebsd >subscribptions was very bad. In the first week of may 2001 I pre-ordered >freebsd 4.3 with subscriptions. Until the third or fourth week of may2001, I >still didn't receive the cds. Later I emailed them asking about my order. >They did reply my email, but I don't know whats going wrong, because later I'm >billed for two cds. Although I got two copies, but it's kinna annoying because >I just ordered one. > >A week after that I emailed them again, asking why I'm billed twice, because I >just ordered for one CD. It took 1 1/2 week just for them to reply to my email >asking "what is your order number or customer number". After I gave them my >order number and customer number, until now (already > 3 weeks), there is >still no any answer. > >Does anybody else have the same bad experience buying from wccdrom too ? > I have a similar experience myself, and that's why I asked the original question in the NG instead of mailing WindRiver. I pre-ordered one subscription in march 01, received one 4.3 box but was charged twice, on two different occasions. I've emailed twice to info@ods.bsdi.com about this, over five weeks ago and then later three weeks ago. I've not heard from them. That email-address is still in the footer of their order confirmations (last one received on may 31). I also emailed one employee at BSDi, who is a frequent poster in the BSD newsgroups. He promptly replied and said he would forward my mail to the right person. Still no response. I'm reluctant add to the confusion at WR by re-stating my problem a fourth time at the new ordertracking@windriver.com address. Surely they cannot have piped the info@osd.bsdi.com mail to /dev/nul, but are slowly wading through it. Mistakes are all right; not replying to maiI -- I think not. Gustaf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 3:22:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.borderpatrolclan.net (mail.borderpatrolclan.net [65.100.10.66]) by hub.freebsd.org (Postfix) with ESMTP id 438B637B403 for ; Sat, 7 Jul 2001 03:22:52 -0700 (PDT) (envelope-from jason@borderpatrolclan.net) Received: from Hunter (hunter.borderpatrolclan.net [65.100.10.69]) by mail.borderpatrolclan.net (8.11.4/8.11.4) with SMTP id f67AOXG27342 for ; Sat, 7 Jul 2001 03:24:33 -0700 (PDT) Message-ID: <000801c106cf$a3647030$450a6441@Hunter> Reply-To: "Ballistic" From: "Ballistic" To: Subject: .htaccess and Apache, why won't it work????????!!!!!!!!! Date: Sat, 7 Jul 2001 03:29:00 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C10694.F6C70890" 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_0005_01C10694.F6C70890 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I have Apache version 1.3.19 running on two different web servers. I was = successfully able to get the .htaccess file to work on one server, but = try as I might I can't get it to work on the other server (and I swear = that I have it setup the same on both servers). The server that = .htaccess works on is also running php4 and mysql. The bum server is = just running php. Could that be a problem???? This is really bugging me. = If you need more info, let me know. As far as I can remember both were = configured the same. The one that works is running a bunch of virtual = domains, the other doesn't have any setup on it yet. J ------=_NextPart_000_0005_01C10694.F6C70890 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I have Apache version 1.3.19 running on = two=20 different web servers. I was successfully able to get the .htaccess file = to work=20 on one server, but try as I might I can't get it to work on the other = server=20 (and I swear that I have it setup the same on both servers). The server = that=20 .htaccess works on is also running php4 and mysql. The bum server is = just=20 running php. Could that be a problem???? This is really bugging me. If = you need=20 more info, let me know. As far as I can remember both were configured = the same.=20 The one that works is running a bunch of virtual domains, the other = doesn't have=20 any setup on it yet.
 
J
------=_NextPart_000_0005_01C10694.F6C70890-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 3:28:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from prg.traveller.cz (prg.traveller.cz [193.85.2.2]) by hub.freebsd.org (Postfix) with ESMTP id 364F837B405 for ; Sat, 7 Jul 2001 03:28:30 -0700 (PDT) (envelope-from mime@traveller.cz) Received: from prg.traveller.cz (prg.traveller.cz [193.85.2.2]) by prg.traveller.cz (EUnet.1022902037-17/pukvis) with ESMTP id f67ASIQ31526 for ; Sat, 7 Jul 2001 12:28:19 +0200 (CEST) Date: Sat, 7 Jul 2001 12:28:18 +0200 (CEST) From: Michal Mertl To: questions@FreeBSD.ORG Subject: Re: AMD Athlon MP & Tyan Thunder K7 (for server ?) 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 I was also considering buying one for server (instead of ASUS CUR-DLS and 2xPIII) but am a bit afraid of two things. The Onboard NICs are 3c920 which should be compatible with 3c905C-TX but in some other post in this group or on stable I've read they don't work. Well I might easily buy additional NICs that's now big problem only wasted HW. The other (and more serious for me) is the problem with power supplies. For this board you should get quality 400W (in my case 2x) and that's difficult to get (at least for rackmountable cases). Also I don't like the heat Athlon processors produce - in case processor fan stops working you need to shutdown very fast else the processor is damaged. What some of you server guys think about my concerns? -- Michal Mertl mime@traveller.cz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 3:53:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from w.waw.pl (podspodem.art.pl [195.94.202.162]) by hub.freebsd.org (Postfix) with SMTP id 67FE837B406 for ; Sat, 7 Jul 2001 03:53:18 -0700 (PDT) (envelope-from ever@podspodem.art.pl) Received: (qmail 31562 invoked from network); 7 Jul 2001 11:01:29 -0000 Received: from pak136.warszawa.sdi.tpnet.pl (HELO darth) (217.96.230.136) by podspodem.art.pl with SMTP; 7 Jul 2001 11:01:29 -0000 Date: Sat, 7 Jul 2001 12:53:51 +0200 From: =?ISO-8859-2?B?UGF3ZbMgU3p5bWHxc2tp?= X-Mailer: The Bat! (v1.51) Personal Reply-To: =?ISO-8859-2?B?UGF3ZbMgU3p5bWHxc2tp?= X-Priority: 3 (Normal) Message-ID: <9888107942.20010707125351@podspodem.art.pl> To: freebsd-questions@freebsd.org Subject: Re: X-Sender: =?ISO-8859-2?B?UGF3ZbMgU3p5bWHxc2tp?= MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 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 Friday, July 06, 2001, 11:03:39 PM, you wrote: bsnc> hmm... your config file seems to have gotten garbled on the way here... you might bsnc> try sending it again. seems that this list doesn't like attachments;) config below. bsnc> did you do a 'make depend' ? this is the one step i always forget in the kernel bsnc> process yes i did. btw i've made kernel compilation in 'new style' (You know: make buildkernel KERNCONF=MYKERNEL etc.) and ... it works! but I still don't know why it didn't work before. Greetings machine i386 cpu I386_CPU cpu I486_CPU cpu I586_CPU cpu I686_CPU ident podspodem 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 EXT2FS 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 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 options USER_LDT options QUOTA device isa device eisa device pci # 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 # 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 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 # 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 # 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 # 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 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 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 `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter options IPFIREWALL options IPDIVERT options DUMMYNET options IPFIREWALL_VERBOSE options IPFIREWALL_VERBOSE_LIMIT=100 -- Pawe³ Szymañski ever@podspodem.art.pl http://podspodem.art.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 4:21:31 2001 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 7D83A37B405 for ; Sat, 7 Jul 2001 04:21:28 -0700 (PDT) (envelope-from LConrad@Go2France.com) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id CCAFE16B16 for ; Sat, 7 Jul 2001 13:21:26 +0200 (CEST) Received: from IBM-HIRXKN66F0W.Go2France.com [195.115.185.184] by mail.Go2France.com with ESMTP (SMTPD32-6.06) id A2B1B5770128; Sat, 07 Jul 2001 13:29:53 +0200 Message-Id: <5.1.0.14.0.20010707132206.03139bd8@mail.Go2France.com> X-Sender: LConrad@Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sat, 07 Jul 2001 13:22:14 +0200 To: freebsd-questions@freebsd.org From: Len Conrad Subject: AMI MegaRAID 1500/1600 for mail gateway Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1"; format=flowed 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 FreeBSD 4.3 Looking to build some high perf outbound mail gateways. The disk i/o is the limiting factor. So we´re looking at 15K RPM disks and 160 mb/sec controllers. Anybody used the MegaRAID 1500/1600 with 15K disks? or other controller/disk combo under 4.3 ? 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 Sat Jul 7 5:29: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from www.suntop-cn.com (www.suntop-cn.com [61.140.76.155]) by hub.freebsd.org (Postfix) with ESMTP id BD84037B401 for ; Sat, 7 Jul 2001 05:29:00 -0700 (PDT) (envelope-from slack@suntop-cn.com) Received: from win (61.144.GD.CN [61.144.144.82] (may be forged)) (authenticated) by www.suntop-cn.com (8.11.3/8.11.3) with ESMTP id f67CSnC52312 for ; Sat, 7 Jul 2001 20:28:50 +0800 (CST) (envelope-from slack@suntop-cn.com) Message-ID: <005c01c106e0$6207bdc0$9201a8c0@home.net> From: "edwin chan" To: Subject: how to restrict ftpd output per IP or per connection ? Date: Sat, 7 Jul 2001 20:28:52 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="gb2312" 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.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 Hi, everybody I have a ftp server, but have poorly bandwidth, so I want use my bandwidth under control, I searched many and can't find a way to solved the problem , any advice are welcome! notice: please CC a copy to me, I am not member of the maillist. edwin chan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 5:45:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cmailg6.svr.pol.co.uk (cmailg6.svr.pol.co.uk [195.92.195.176]) by hub.freebsd.org (Postfix) with ESMTP id 9EDE637B403 for ; Sat, 7 Jul 2001 05:45:37 -0700 (PDT) (envelope-from chris@choll.freeserve.co.uk) Received: from modem-109.chicken.dialup.pol.co.uk ([62.137.204.109]) by cmailg6.svr.pol.co.uk with esmtp (Exim 3.13 #0) id 15IrSq-0003xV-00 for freebsd-questions@FreeBSD.org; Sat, 07 Jul 2001 13:45:36 +0100 Date: Sat, 7 Jul 2001 13:44:52 +0100 (BST) From: Chris Holloway X-X-Sender: To: Subject: Problems booting after A7V Bios update Message-ID: <20010707134302.U673-100000@elmo> 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 an ASUS A7V motherboard, after I upgraded the BIOS from revision 1003 to 1007, FreeBSD fails to boot up. I also have Debian on my computer (using lilo) and Debian boots fine. Here is what happens when I try and boot FreeBSD (4.3) : BTX loader 1.00 BTX version is 1.01 Console: internal video/keyboard BIOS drive A: is disk0 BIOS drive C: is disk1 BIOS 634kB/392112kB available memory FreeBSD/i386 bootstrap loader, Revision 0.8 (root@elmo, Wed May 30 13:54:38 BST 2001) - nothing happens after this, it just sits there. I made a boot disk from the fixit.flp floppy image on my FreeBSD CD, and can boot FreeBSD using that. I've tried using sysinstall to 'reinstall' FreeBSD's bootloader - I tried installing both the standard MBR and FreeBSD's bootmanager, but they both halt at the same place said above. Does anyone know what is causing this and how to fix it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 6: 1:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from fw.vindaloo.com (ool-182dd047.dyn.optonline.net [24.45.208.71]) by hub.freebsd.org (Postfix) with ESMTP id 2A98437B403 for ; Sat, 7 Jul 2001 06:01:26 -0700 (PDT) (envelope-from chris@vindaloo.com) Received: (from uucp@localhost) by fw.vindaloo.com (8.10.1/8.10.1) id f67D1PS22797; Sat, 7 Jul 2001 09:01:25 -0400 (EDT) Received: from andale.vindaloo.com(192.168.133.3) via SMTP by fw.vindaloo.com, id smtpdRm7821; Sat Jul 7 09:01:19 2001 Received: by andale.vindaloo.com (Postfix, from userid 1000) id 1A4264383; Sat, 7 Jul 2001 08:01:11 -0500 (EST) Date: Sat, 7 Jul 2001 09:01:11 -0400 From: Christopher Sean Hilton To: Jim Durham Cc: Enriko Groen , "'freebsd-questions@freebsd.org'" Subject: Re: Replacing Exchange Message-ID: <20010707090111.A7418@andale.vindaloo.com> References: <510EAC2065C0D311929200A0247252622F794C@NETIVITY-FS> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from durham@w2xo.pgh.pa.us on Sat, Jul 07, 2001 at 02:02:48AM -0400 Sender: owner-freebsd-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, Jul 07, 2001 at 02:02:48AM -0400, Jim Durham wrote: > [snip] > our building) also supports LDAP addressbooks and works very well. > I'm interested in you LDAP schema. This is something that I'd like to do but I don't know enough about LDAP to set it up. > So, it can be done. Actually, the Mac people are thrilled. They couldn't > do the Exchange addressbook, so they have something they didn't have > before. > If you are willing to share the PHP script would be cool. If not that's okay also... -- Chris Hilton chilton-at-vindaloo-dot-com ------------------------------------------------------------------------ "All I was doing was trying to get home from work!" -- Rosa Parks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 6:19:38 2001 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 AA94037B407 for ; Sat, 7 Jul 2001 06:19:35 -0700 (PDT) (envelope-from fxn@isoco.com) Received: from isoco.com ([62.174.64.145]) by smtp04.retemail.es (InterMail vM.5.01.03.02 201-253-122-118-102-20010403) with ESMTP id <20010707131933.BXZR15502.smtp04.retemail.es@isoco.com> for ; Sat, 7 Jul 2001 15:19:33 +0200 Message-ID: <3B470CAA.1C376EBA@isoco.com> Date: Sat, 07 Jul 2001 15:20:42 +0200 From: "F. Xavier Noria" X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD-questions@FreeBSD.ORG Subject: Re: "The Complete FreeBSD", third edition: errata and addenda References: <20010630000205.2E0A037B406@hub.freebsd.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 > 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:. > # camcontrol modepage da1 -m 1 -e -P 3 > # scsi -f /dev/rda1c -m 1 -e -P 3 Should that line invoking `scsi' still be there? -- fxn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 6:22:15 2001 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 E4FF537B417 for ; Sat, 7 Jul 2001 06:22:00 -0700 (PDT) (envelope-from fxn@retemail.es) Received: from retemail.es ([62.174.64.145]) by smtp03.retemail.es (InterMail vM.5.01.03.02 201-253-122-118-102-20010403) with ESMTP id <20010707132159.LOXN22570.smtp03.retemail.es@retemail.es> for ; Sat, 7 Jul 2001 15:21:59 +0200 Message-ID: <3B470D3C.8FED7F48@retemail.es> Date: Sat, 07 Jul 2001 15:23:08 +0200 From: "F. Xavier Noria" X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Subject: Re: "The Complete FreeBSD", third edition: errata and addenda 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 > 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:. > # camcontrol modepage da1 -m 1 -e -P 3 > # scsi -f /dev/rda1c -m 1 -e -P 3 Should that line invoking `scsi' still be there? -- fxn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 6:44:27 2001 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 C6DA037B40A for ; Sat, 7 Jul 2001 06:44:24 -0700 (PDT) (envelope-from LConrad@Go2France.com) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id C997816B16 for ; Sat, 7 Jul 2001 15:44:22 +0200 (CEST) Received: from IBM-HIRXKN66F0W.Go2France.com [195.115.185.184] by mail.Go2France.com with ESMTP (SMTPD32-6.06) id A431CF6F0128; Sat, 07 Jul 2001 15:52:49 +0200 Message-Id: <5.1.0.14.0.20010707153838.02623308@mail.Go2France.com> X-Sender: LConrad@Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sat, 07 Jul 2001 15:45:10 +0200 To: freebsd-questions@freebsd.org From: Len Conrad Subject: Re: JFS (was: The FreeBSD core team needs your help) In-Reply-To: <20010707144259.Q550-100000@consult-meyers.com> References: <20010707132458.D75626@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1"; format=flowed 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 installed SuSE Linux 7.2 with Reiser FS throughout on an >Intel SMP box. The FS purrs, even on /, which doesn't mean >everything is better or worse than FBSD. > >As far as I know, ReiserFS is GPL. What would porting it to >FreeBSD be better or worse than other (newer and less stable) >alternatives? >Is this a technical issue or are politics involved? Here´s a recent comment from Wietse Venema, who knows a thing or two about huge file systems under stress, in response to a user´s problem with postfix: "You are welcome to reproduce this problem on a non-Reiserfs file system. Until then I will ignore the problem report." With an endorsement like that..... :))) 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 Sat Jul 7 6:49:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imf00bis.bellsouth.net (mail100.mail.bellsouth.net [205.152.58.40]) by hub.freebsd.org (Postfix) with ESMTP id 98C4037B405 for ; Sat, 7 Jul 2001 06:49:48 -0700 (PDT) (envelope-from leimbacd@bellsouth.net) Received: from mutt.home.net ([216.78.178.115]) by imf00bis.bellsouth.net (InterMail vM.5.01.01.01 201-252-104) with ESMTP id <20010707135039.VKYJ9796.imf00bis.bellsouth.net@mutt.home.net> for ; Sat, 7 Jul 2001 09:50:39 -0400 Received: (from dave@localhost) by mutt.home.net (8.11.3/8.11.3) id f67DrlJ14662 for questions@freebsd.org; Sat, 7 Jul 2001 08:53:47 -0500 (CDT) (envelope-from dave) Date: Sat, 7 Jul 2001 08:53:47 -0500 From: David Leimbach To: questions@freebsd.org Subject: KDE2 and qt ports Message-ID: <20010707085347.A14637@mutt.home.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD mutt.home.net 4.3-RELEASE FreeBSD 4.3-RELEASE Sender: owner-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 one of these is broken. I can't seem to build QT and thusly cannot get KDE up and running. Are there binary packages available for KDE-2.1? Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 6:54:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pike.netdoor.com (netdoor.com [208.137.128.6]) by hub.freebsd.org (Postfix) with ESMTP id 892FF37B405 for ; Sat, 7 Jul 2001 06:54:46 -0700 (PDT) (envelope-from root@katana.amberskogg.dns2go.com) Received: from katana.amberskogg.dns2go.com (port112.tup.netdoor.com [208.137.140.176]) by pike.netdoor.com (8.9.3/8.9.3) with SMTP id IAA21324; Sat, 7 Jul 2001 08:54:43 -0500 (CDT) Content-Type: text/plain; charset="iso-8859-1" From: Jim Couch Reply-To: jcouch@netdoor.com Organization: AmberSkogg Development To: David Leimbach , questions@FreeBSD.ORG Subject: Re: KDE2 and qt ports Date: Sat, 7 Jul 2001 08:54:37 -0500 X-Mailer: KMail [version 1.2] References: <20010707085347.A14637@mutt.home.net> In-Reply-To: <20010707085347.A14637@mutt.home.net> MIME-Version: 1.0 Message-Id: <01070708543704.31062@katana.amberskogg.dns2go.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 2.1.1 is availible from sysinstall as preformatted packages On Saturday 07 July 2001 08:53 am, David Leimbach wrote: > I think one of these is broken. I can't seem to build QT and thusly > cannot get KDE up and running. > > Are there binary packages available for KDE-2.1? > > Dave > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- "Gee, Mudhead, everyone at More Science High has an extracurricular activity except you." "Well, gee, doesn't Louise count?" "Only to ten, Mudhead." -- Firesign Theater To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 6:57:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imf09bis.bellsouth.net (mail309.mail.bellsouth.net [205.152.58.169]) by hub.freebsd.org (Postfix) with ESMTP id AAF5037B405 for ; Sat, 7 Jul 2001 06:57:50 -0700 (PDT) (envelope-from leimbacd@bellsouth.net) Received: from mutt.home.net ([216.78.178.115]) by imf09bis.bellsouth.net (InterMail vM.5.01.01.01 201-252-104) with ESMTP id <20010707135841.EVQG12972.imf09bis.bellsouth.net@mutt.home.net>; Sat, 7 Jul 2001 09:58:41 -0400 Received: (from dave@localhost) by mutt.home.net (8.11.3/8.11.3) id f67E1na14820; Sat, 7 Jul 2001 09:01:49 -0500 (CDT) (envelope-from dave) Date: Sat, 7 Jul 2001 09:01:49 -0500 From: David Leimbach To: jcouch@netdoor.com, questions@freebsd.org Subject: Re: KDE2 and qt ports Message-ID: <20010707090149.A14791@mutt.home.net> References: <20010707085347.A14637@mutt.home.net> <01070708543704.31062@katana.amberskogg.dns2go.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <01070708543704.31062@katana.amberskogg.dns2go.com>; from root@katana.amberskogg.dns2go.com on Sat, Jul 07, 2001 at 08:54:37AM -0500 X-Operating-System: FreeBSD mutt.home.net 4.3-RELEASE FreeBSD 4.3-RELEASE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Will this get me the super sexy Anti-aliased fonts and stuff from my newly installed X 4.1.0? Dave On Sat, Jul 07, 2001 at 08:54:37AM -0500, Jim Couch wrote: > 2.1.1 is availible from sysinstall as preformatted packages > On Saturday 07 July 2001 08:53 am, David Leimbach wrote: > > I think one of these is broken. I can't seem to build QT and thusly > > cannot get KDE up and running. > > > > Are there binary packages available for KDE-2.1? > > > > Dave > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > -- > "Gee, Mudhead, everyone at More Science High has an > extracurricular activity except you." > "Well, gee, doesn't Louise count?" > "Only to ten, Mudhead." > > -- Firesign Theater To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 7: 5:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gate10.interaxs.net (mail.interaxs.net [206.244.181.226]) by hub.freebsd.org (Postfix) with ESMTP id C973737B403 for ; Sat, 7 Jul 2001 07:05:28 -0700 (PDT) (envelope-from ssn01@hotmail.com) Received: from b0q4f1 (dial38.interaxs.net [206.244.181.38]) by gate10.interaxs.net (Rockliffe SMTPRA 4.5.4) with SMTP id for ; Sat, 7 Jul 2001 10:05:27 -0400 Message-ID: <000a01c106ed$df3828e0$7a2bfea9@b0q4f1> From: "ssn01" To: Subject: BSD Date: Sat, 7 Jul 2001 10:05:14 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C106CC.50BF64A0" 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_0007_01C106CC.50BF64A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi there.... I'm just curious about FreeBSD and exactly what the difference is = between it and the other OS's... for instance, Windows xx. I do appreciate your taking time to read this, etc. thank you. fresa. ------=_NextPart_000_0007_01C106CC.50BF64A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi there....
I'm just curious about FreeBSD and exactly what the = difference=20 is between it and the other OS's... for instance, Windows = xx.
 
I do appreciate your taking time to read this,=20 etc.
 
thank you.
 
fresa.
------=_NextPart_000_0007_01C106CC.50BF64A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 7:16:33 2001 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 701C837B401 for ; Sat, 7 Jul 2001 07:16:29 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-a136.otenet.gr [212.205.215.136]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f67EGQh04755; Sat, 7 Jul 2001 17:16:26 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.4) id f67EGNG00834; Sat, 7 Jul 2001 17:16:23 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sat, 7 Jul 2001 17:16:17 +0300 From: Giorgos Keramidas To: Craig Cowen Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Sendmail Conf Message-ID: <20010707171616.A753@hades.hell.gr> References: <3B466FF8.BDB1B413@allmaui.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B466FF8.BDB1B413@allmaui.com>; from craig@allmaui.com on Fri, Jul 06, 2001 at 07:12:08PM -0700 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-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: Craig Cowen Subject: Sendmail Conf Date: Fri, Jul 06, 2001 at 07:12:08PM -0700 > How do I set my FreeBSD 4.3R machine to relay all mail through > another mail server? By careful use of class 'w' (that lists the local host names) in sendmail.cf and setup of MX records in your DNS server. You'll understand what I mean by reading below. > so on the local machine, machine.subdomain.domain.com mail sent to the > local user would go to user@domain.com Then, you should remove domain.com from your 'locally handled host and domain names' list. Unless you have changed the location of `confCW_FILE' in your master-config, the file that lists these hosts and domains should be either /etc/mail/sendmail.cw (for older versions of sendmail) or /etc/mail/local-host-names (in newer versions of sendmail). First of all, make sure that this file does not list machine.subdomain.domain.com or domain.com. This will inhibit Sendmail from trying to deliver mail for recipients in these host and domain locally, and try doing an MX lookup first. Then, make sure that your DNS server has MX records for domain.com that point to the machine that you want this mail really delivered to. Then you should be ready to go :-) > I put mail.1.my.domain.com in my sendmail.cf but mail to just user still > ends up in the local mail box. You put what? ... and where? This is not enough to find out what could be wrong. Please try to be very detailed about the changes you do, next time. Ciao, -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 7:39:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from matt.MUNICH.v-net.org (u57n248.syd.eastlink.ca [24.222.57.248]) by hub.freebsd.org (Postfix) with ESMTP id 4119937B405 for ; Sat, 7 Jul 2001 07:39:54 -0700 (PDT) (envelope-from matt@cape-breton-island.com) Received: from unisys (Windozzze [192.168.8.2]) by matt.MUNICH.v-net.org (8.11.3/8.11.3) with ESMTP id f67Edld92822 for ; Sat, 7 Jul 2001 11:39:47 -0300 (ADT) From: "Matt Rudderham" To: Subject: SMP Kernel Panic Date: Sat, 7 Jul 2001 11:33:54 -0300 Message-ID: <000201c106f1$d9b09d40$0208a8c0@munich.vnet.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 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 have a SMP machine running FreeBSD 4.3-Release. It has had a kernel panic every week or so for the last month. I've debugged it as much as I could using the handbook info, and I believe it may be caused by the syscall function or in my kernel: c01e8720 T Xint0x80_syscall The handbook has helped me get this far, but can someone let me know what I can do with this now that I know what function is causing the problem? Thanks. Matt Rudderham Kernel Messages: Jul 7 00:33:07 cfxu /kernel: Fatal trap 12: page fault while in kernel mode Jul 7 00:33:07 cfxu /kernel: mp_lock =3D 00000003; cpuid =3D 0; = lapic.id =3D 00000000 Jul 7 00:33:07 cfxu /kernel: fault virtual address =3D 0x3a Jul 7 00:33:07 cfxu /kernel: fault code =3D supervisor write, page not present Jul 7 00:33:07 cfxu /kernel: instruction pointer =3D = 0x8:0xc01b6e8f ^^^^^^^^^^ Jul 7 00:33:07 cfxu /kernel: stack pointer =3D 0x10:0xd5726c1c Jul 7 00:33:07 cfxu /kernel: frame pointer =3D 0x10:0xd5726cbc Jul 7 00:33:07 cfxu /kernel: code segment =3D base 0x0, limit 0xfffff, type 0x1b Jul 7 00:33:07 cfxu /kernel: =3D DPL 0, pres 1, def32 1, gran 1 Jul 7 00:33:07 cfxu /kernel: processor eflags =3D interrupt enabled, resume, IOPL =3D 0 Jul 7 00:33:07 cfxu /kernel: current process =3D 514 (ices) Jul 7 00:33:07 cfxu /kernel: interrupt mask =3D net tty bio cam <- SMP: XXX Jul 7 00:33:07 cfxu /kernel: trap number =3D 12 Jul 7 00:33:07 cfxu /kernel: panic: page fault Jul 7 00:33:07 cfxu /kernel: mp_lock =3D 00000003; cpuid =3D 0; = lapic.id =3D 00000000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 7:48:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from opinelibre.com (opinelibre.com [216.122.168.184]) by hub.freebsd.org (Postfix) with ESMTP id 78AC637B405 for ; Sat, 7 Jul 2001 07:48:23 -0700 (PDT) (envelope-from listas@informatic-sa.com.ar) Received: from pgm2.opinelibre.com (ptb231.sion.net [200.69.43.231]) by opinelibre.com (8.9.3/8.9.3) with SMTP id OAA10365 for ; Sat, 7 Jul 2001 14:46:55 GMT Content-Type: text/plain; charset="iso-8859-1" From: Marcelo Gulin Organization: Informatic S.A. To: freebsd-questions@FreeBSD.ORG Subject: Apache-PHP-IMAP Date: Sat, 7 Jul 2001 11:41:43 -0300 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <01070711414301.02065@pgm2.opinelibre.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 HI! Newbie need some help here. :) I'm trying to make work Horde/IMP webmail. I'm running FreeBSD 4.3 in my box and I'm using Apache 1.3.20, PHP 4.0.6 and MySQL 3..23.39. I've installed c-client from FreeBSD available packages instalation CDROM but I've tried with latest tarball version from ftp://ftp.cac.washington.edu/imap/ too. I've installed libc-client4.so in /usr/local/lib and c-client.h, rfc822.h, mail.h, etc. in /usr/local/include. PHP configure/make/make install process works fine but the Apache configure script die with: [......] '/usr/local/lib/libc-client4.so: undefined reference to 'mm_expunged' '/usr/local/lib/libc-client4.so: undefined reference to 'mm_diskerror' '/usr/local/lib/libc-client4.so: undefined reference to 'mm_lsub' '/usr/local/lib/libc-client4.so: undefined reference to 'mm_flags' blah blah *** Error code 1 Stop in /usr/src/apache_1.3.20/src/helpers. [......] What's the problem here? Please Help. Thanks in advace Marcelo Gulin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 7:57:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailout2-0.nyroc.rr.com (mailout2-1.nyroc.rr.com [24.92.226.165]) by hub.freebsd.org (Postfix) with ESMTP id 77F4837B401 for ; Sat, 7 Jul 2001 07:57:47 -0700 (PDT) (envelope-from justin@shiningsilence.com) Received: from roc-24-169-96-227.rochester.rr.com (roc-24-169-96-227.rochester.rr.com [24.169.96.227]) by mailout2-0.nyroc.rr.com (8.11.2/RoadRunner 1.03) with SMTP id f67EuUW14716 for ; Sat, 7 Jul 2001 10:56:30 -0400 (EDT) Content-Type: text/plain; charset="iso-8859-1" From: Justin C Sherrill To: freebsd-questions@FreeBSD.ORG Subject: Re: JFS (was: The FreeBSD core team needs your help) Date: Sat, 7 Jul 2001 11:03:07 -0400 X-Mailer: KMail [version 1.2] References: <20010707132458.D75626@wantadilla.lemis.com> <5.1.0.14.0.20010707153838.02623308@mail.Go2France.com> In-Reply-To: <5.1.0.14.0.20010707153838.02623308@mail.Go2France.com> MIME-Version: 1.0 Message-Id: <01070711030700.00411@roc-24-169-96-227.rochester.rr.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 Saturday 07 July 2001 09:45, Len Conrad wrote: > >As far as I know, ReiserFS is GPL. What would porting it to > >FreeBSD be better or worse than other (newer and less stable) > >alternatives? I recall from an earlier post to this list: http://www.ece.cmu.edu/~ganger/papers/ Look at "All publications by topic" - there's several papers about soft updates in general (what FreedBSD has when enabled) and another about soft updates vs. journaling, which is what I think ReiserFS is. Here's a direct link to the paper abstract: http://www.ece.cmu.edu/~ganger/papers/usenix2000_abs.html Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 9:14: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pike.netdoor.com (netdoor.com [208.137.128.6]) by hub.freebsd.org (Postfix) with ESMTP id 1F35737B405 for ; Sat, 7 Jul 2001 09:14:02 -0700 (PDT) (envelope-from root@katana.amberskogg.dns2go.com) Received: from katana.amberskogg.dns2go.com (port08.tup.netdoor.com [208.137.140.72]) by pike.netdoor.com (8.9.3/8.9.3) with SMTP id LAA07300; Sat, 7 Jul 2001 11:13:57 -0500 (CDT) Content-Type: text/plain; charset="iso-8859-1" From: Jim Couch Reply-To: jcouch@netdoor.com Organization: AmberSkogg Development To: "ssn01" , Subject: Re: BSD Date: Sat, 7 Jul 2001 11:13:54 -0500 X-Mailer: KMail [version 1.2] References: <000a01c106ed$df3828e0$7a2bfea9@b0q4f1> In-Reply-To: <000a01c106ed$df3828e0$7a2bfea9@b0q4f1> MIME-Version: 1.0 Message-Id: <01070711135401.39997@katana.amberskogg.dns2go.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 I once had a Psych professor that gave a mid-term exam with one question; Write down everything you have learned this semester...... Are you him???? You ask the same kind of questions. Seriously, checkout the online handbook for freebsd on the freebsd.org site The biggest difference between it and Windows xx is that it works On Saturday 07 July 2001 09:05 am, ssn01 wrote: > Hi there.... > I'm just curious about FreeBSD and exactly what the difference is between > it and the other OS's... for instance, Windows xx. > > I do appreciate your taking time to read this, etc. > > thank you. > > fresa. -- "Man invented language to satisfy his deep need to complain." -- Lily Tomlin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 9:20:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from onsult-meyers.com (dialup-52-92.dplanet.ch [212.35.52.92]) by hub.freebsd.org (Postfix) with ESMTP id C432537B406 for ; Sat, 7 Jul 2001 09:20:16 -0700 (PDT) (envelope-from a.l.meyers@consult-meyers.com) Received: from localhost (localhost [127.0.0.1]) by 0onsult-meyers.com (8.11.4/8.11.4) with ESMTP id f67GS3300388 for ; Sat, 7 Jul 2001 18:28:09 +0200 (CEST) (envelope-from a.l.meyers@consult-meyers.com) Date: Sat, 7 Jul 2001 18:28:02 +0200 (CEST) From: "A. L. Meyers" To: Subject: text console problem resolved Message-ID: <20010707182450.S383-100000@consult-meyers.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! Just to let you know that, with the help of Slaven Rezic in Berlin, the last text console problem I had is resolved. I had made a simple, stupid mistake: entered cons2511 in /etc/ttys instead of cons25l1. Now the console groks iso_8859-1 perfectly. Thanks again to Slaven. Cheers! Lucien To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 9:21:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp8.xs4all.nl (smtp8.xs4all.nl [194.109.127.134]) by hub.freebsd.org (Postfix) with ESMTP id 89AA337B407 for ; Sat, 7 Jul 2001 09:21:22 -0700 (PDT) (envelope-from rene@xs4all.nl) Received: from xs4.xs4all.nl (xs4.xs4all.nl [194.109.6.45]) by smtp8.xs4all.nl (8.9.3/8.9.3) with ESMTP id SAA07187 for ; Sat, 7 Jul 2001 18:21:20 +0200 (CEST) From: rene@xs4all.nl Received: (from rene@localhost) by xs4.xs4all.nl (8.9.0/8.9.0) id SAA05868 for questions@freebsd.org; Sat, 7 Jul 2001 18:21:20 +0200 (CEST) Date: Sat, 7 Jul 2001 18:21:20 +0200 To: questions@freebsd.org Subject: unix mailbox management Message-ID: <20010707182120.I6463@xs4all.nl> 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 using mutt as my mailreader, and have several large mailboxes that I need to do something with. For starters, I'd like to merge them all, remove the dupes, sort on date. Then after that, I want to flush the resulting file trhough my current procmail filters. Any pointers on what tools I need for the first steps of creating that uber-mailbox would be greatly appreciated ;) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 9:45: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f153.law8.hotmail.com [216.33.241.153]) by hub.freebsd.org (Postfix) with ESMTP id 74F4237B401 for ; Sat, 7 Jul 2001 09:45:05 -0700 (PDT) (envelope-from chung_ben6@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 7 Jul 2001 09:45:05 -0700 Received: from 66.52.131.115 by lw8fd.law8.hotmail.msn.com with HTTP; Sat, 07 Jul 2001 16:45:05 GMT X-Originating-IP: [66.52.131.115] From: "ben chung" To: Questions@FreeBSD.ORG Date: Sat, 07 Jul 2001 16:45:05 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 07 Jul 2001 16:45:05.0562 (UTC) FILETIME=[2CC77FA0:01C10704] Sender: owner-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 a problem, that is my x windown can not be worked, only a grey screen in middle is a big x sign still there long, i install figure of desktop, but failure any one can help, or good idear thanks ben _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.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 Jul 7 10:28:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from w2xo.pgh.pa.us (18.gibs5.xdsl.nauticom.net [209.195.184.19]) by hub.freebsd.org (Postfix) with ESMTP id CB59137B401 for ; Sat, 7 Jul 2001 10:28:19 -0700 (PDT) (envelope-from durham@w2xo.pgh.pa.us) Received: from jimslaptop.int (jimslaptop.int [192.168.5.8]) by w2xo.pgh.pa.us (8.11.3/8.11.3) with ESMTP id f67HX1317336; Sat, 7 Jul 2001 13:33:01 -0400 (EDT) (envelope-from durham@w2xo.pgh.pa.us) Date: Sat, 7 Jul 2001 13:28:31 -0400 (EDT) From: Jim Durham X-X-Sender: To: Christopher Sean Hilton Cc: Enriko Groen , "'freebsd-questions@freebsd.org'" Subject: Re: Replacing Exchange In-Reply-To: <20010707090111.A7418@andale.vindaloo.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 Sat, 7 Jul 2001, Christopher Sean Hilton wrote: > On Sat, Jul 07, 2001 at 02:02:48AM -0400, Jim Durham wrote: > > [snip] > > our building) also supports LDAP addressbooks and works very well. > > > > I'm interested in you LDAP schema. This is something that I'd like to do > but I don't know enough about LDAP to set it up. > > > So, it can be done. Actually, the Mac people are thrilled. They couldn't > > do the Exchange addressbook, so they have something they didn't have > > before. > > > > If you are willing to share the PHP script would be cool. If not that's okay > also... > Sure... but I won't post it here unless someone is really interested, because it's a lot of text. Look for it.. Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 10:38: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from everest.wananchi.com (pop.wananchi.com [62.8.64.4]) by hub.freebsd.org (Postfix) with ESMTP id 627ED37B405 for ; Sat, 7 Jul 2001 10:37:58 -0700 (PDT) (envelope-from wash@wananchi.com) Received: from wash by everest.wananchi.com with local (Exim 3.22 #3) id 15Iw1v-0000Jo-00 for freebsd-questions@FreeBSD.org; Sat, 07 Jul 2001 20:38:07 +0300 Date: Sat, 7 Jul 2001 20:38:07 +0300 From: Odhiambo Washington To: FBSD-Q Subject: Maximun aliase Message-ID: <20010707203807.G954@everest.wananchi.com> Mail-Followup-To: Odhiambo Washington , FBSD-Q Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.19i X-Disclaimer: My opinions do not necessarily represent those of my employer. X-Operating-System: FreeBSD 4.3-STABLE i386 X-Mailer: Mutt http://www.mutt.org/ X-Designation: Systems Administrator, Wananchi Online Ltd. X-Location: Nairobi, KE, East Africa. X-Uptime: 8:37PM up 13 mins, 1 user, load averages: 0.03, 0.19, 0.18 Sender: owner-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 maximum number of IP aliases an interface can have? MTIA -Wash -- Odhiambo Washington Wananchi Online Ltd., wash@wananchi.com 1st Flr Loita Hse. Tel: 254 2 313985 Loita Street., Fax: 254 2 313922 PO Box 10286,00100-NAIROBI,KE. If you see a turtle sitting on a fence post, you know it got some help. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 10:40:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from moutvdom00.kundenserver.de (moutvdom00.kundenserver.de [195.20.224.149]) by hub.freebsd.org (Postfix) with ESMTP id 89D4537B405 for ; Sat, 7 Jul 2001 10:40:43 -0700 (PDT) (envelope-from m.schmitt@tarsius.org) Received: from [195.20.224.219] (helo=mrvdom03.kundenserver.de) by moutvdom00.kundenserver.de with esmtp (Exim 2.12 #2) id 15Iw4Q-0004tB-00 for freebsd-questions@freebsd.org; Sat, 7 Jul 2001 19:40:42 +0200 Received: from dip-01-007-1.on-line.de ([195.64.97.7] helo=win2k) by mrvdom03.kundenserver.de with smtp (Exim 2.12 #2) id 15Iw4Q-0006Ta-00 for freebsd-questions@freebsd.org; Sat, 7 Jul 2001 19:40:42 +0200 From: "Moritz Schmitt" To: "FreeBSD-Questions" Subject: FreeBSD/procmail Date: Sat, 7 Jul 2001 19:40:20 +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.2910.0) Importance: Normal 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 Hello, I'm using qmail and procmail together but there is a little problem. /var/log/maillog says: Jul 7 19:32:29 ws1 qmail: 994527149.901529 delivery 5: deferral: procmail:_Coul dn't_create_"/var/mail/admin"/ What's procmails problem? How can I solve it? Thank you & best regards, -Moritz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 11: 8:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from george.he.net (george.he.net [216.218.157.2]) by hub.freebsd.org (Postfix) with ESMTP id 2774337B406 for ; Sat, 7 Jul 2001 11:08:55 -0700 (PDT) (envelope-from bill@wiliweld.com) Received: from adsl-63-193-247-201.dsl.snfc21.pacbell.net (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by george.he.net (8.8.6/8.8.2) with ESMTP id LAA24463 for ; Sat, 7 Jul 2001 11:08:53 -0700 Date: Sat, 7 Jul 2001 10:16:28 -0700 (PDT) From: Bill Schoolcraft X-Sender: bill@corten2.billschoolcraft.com To: freebsd-questions@FreeBSD.ORG Subject: "No tun0 ?" Message-ID: System-ID: [en] (I; Linux i86pc) 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 Family, In trying to replace my Linux NATD/DNS perimeter box I've followed the firewall howto at the BSD Vault site, recompiled the kernel "word for word" by the instructions and I of couse expected some errors but the one that dmesg says is the one I'm concerned with now, it's no tun0 I'm running FreeBSD-4.2 loaded off the released CD -- Bill Schoolcraft PO Box 210076 -o) San Francisco CA 94121 /\ "UNIX, A Way Of Life." _\_v http://forwardslashunix.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 11:15:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mooseriver.com (erie.mooseriver.com [205.166.121.26]) by hub.freebsd.org (Postfix) with ESMTP id A4DD737B401 for ; Sat, 7 Jul 2001 11:15:38 -0700 (PDT) (envelope-from jgrosch@mooseriver.com) Received: (from jgrosch@localhost) by mooseriver.com (8.11.3/8.11.2) id f67IFW763823; Sat, 7 Jul 2001 11:15:32 -0700 (PDT) (envelope-from jgrosch) Date: Sat, 7 Jul 2001 11:15:32 -0700 From: Josef Grosch To: Bill Schoolcraft Cc: freebsd-questions@FreeBSD.ORG Subject: Re: "No tun0 ?" Message-ID: <20010707111532.A63756@mooseriver.com> Reply-To: jgrosch@mooseriver.com References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from bill@wiliweld.com on Sat, Jul 07, 2001 at 10:16:28AM -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, Jul 07, 2001 at 10:16:28AM -0700, Bill Schoolcraft wrote: > Hello Family, > > In trying to replace my Linux NATD/DNS perimeter box I've followed > the firewall howto at the BSD Vault site, recompiled the kernel > "word for word" by the instructions and I of couse expected some > errors but the one that dmesg says is the one I'm concerned with > now, it's no tun0 > > I'm running FreeBSD-4.2 loaded off the released CD Do you have the following line in your kernel config file ? pseudo-device tun If you do you should have tun0. If not add that line to the config file and recompile the kernel. It should already be there. Try going into the /dev directory and try the following cd /dev ./MAKEDEV tun0 That should do it. Josef -- Josef Grosch | Another day closer to a | FreeBSD 4.3 jgrosch@MooseRiver.com | Micro$oft free world | www.bafug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 11:18:57 2001 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 656E737B401 for ; Sat, 7 Jul 2001 11:18:55 -0700 (PDT) (envelope-from dkoch@aros.net) Received: from computer (dsl-63-87-116-91.dsl.aros.net [63.87.116.91]) by mail.aros.net (8.11.3/8.9.3) with SMTP id f67IIsW15838 for ; Sat, 7 Jul 2001 12:18:54 -0600 (MDT) From: "DKoch" To: Subject: What is PMAP_SHPGPERPROC Date: Sat, 7 Jul 2001 12:18:52 -0600 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) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.3018.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: I have been getting this error in my logs (on occasion): kernel log messages: > pmap_collect: collecting pv entries -- suggest increasing PMAP_SHPGPERPROC I assume (possibly incorrectly!) that since this is a kernel message, it is a problem in the FreeBSD component, not the Apache. I have done some searches, and I cannot figure out what this could be. I would like to know how I can increase this value, that is, where do I do this? Also, if anyone knows what this is, I would like to know that, too! Thank you! Dave Koch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 11:41:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from localhost.net (Janeway-141.netunlimited.net [208.165.3.142]) by hub.freebsd.org (Postfix) with ESMTP id C1B6D37B409 for ; Sat, 7 Jul 2001 11:41:40 -0700 (PDT) (envelope-from root@localhost.net) Received: by localhost.net (8.11.3/8.11.3) id f676ean01869 for freebsd-questions@FreeBSD.ORG; Sat, 7 Jul 2001 02:40:36 -0400 (EDT) (envelope-from root) Content-Type: text/plain; charset="iso-8859-1" From: Charlie & <> To: freebsd-questions@FreeBSD.ORG Subject: hp cd writer plus Date: Sat, 7 Jul 2001 02:40:34 -0400 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <01070702290400.01781@> 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 was curious what filesystem type to use in order to mount a cd-rw disk in kde. i tried to mount one using cd9660 and it works with a burned cd or a cd rom but not with a cd rw (i get an invalid argument error) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 12: 1: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from falcon.mail.pas.earthlink.net (falcon.mail.pas.earthlink.net [207.217.120.74]) by hub.freebsd.org (Postfix) with ESMTP id 7C6E737B406 for ; Sat, 7 Jul 2001 12:01:00 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.133.129.Dial1.SanJose1.Level3.net [209.245.133.129]) by falcon.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id MAA21289; Sat, 7 Jul 2001 12:00:57 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f67J0qY08421; Sat, 7 Jul 2001 12:00:52 -0700 (PDT) (envelope-from cjc) Date: Sat, 7 Jul 2001 12:00:52 -0700 From: "Crist J. Clark" To: edwin chan Cc: freebsd-questions@FreeBSD.ORG Subject: Re: how to restrict ftpd output per IP or per connection ? Message-ID: <20010707120052.D408@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <005c01c106e0$6207bdc0$9201a8c0@home.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <005c01c106e0$6207bdc0$9201a8c0@home.net>; from slack@suntop-cn.com on Sat, Jul 07, 2001 at 08:28: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 On Sat, Jul 07, 2001 at 08:28:52PM +0800, edwin chan wrote: > Hi, everybody > I have a ftp server, but have poorly bandwidth, so I want use my bandwidth > under control, I searched many and can't find a way to solved the problem , > any advice are welcome! man dummynet -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 12: 3:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from falcon.mail.pas.earthlink.net (falcon.mail.pas.earthlink.net [207.217.120.74]) by hub.freebsd.org (Postfix) with ESMTP id 95B3137B401 for ; Sat, 7 Jul 2001 12:03:30 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.133.129.Dial1.SanJose1.Level3.net [209.245.133.129]) by falcon.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id MAA29297; Sat, 7 Jul 2001 12:03:29 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f67J3R508456; Sat, 7 Jul 2001 12:03:27 -0700 (PDT) (envelope-from cjc) Date: Sat, 7 Jul 2001 12:03:27 -0700 From: "Crist J. Clark" To: rene@xs4all.nl Cc: questions@FreeBSD.ORG Subject: Re: unix mailbox management Message-ID: <20010707120327.E408@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20010707182120.I6463@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: <20010707182120.I6463@xs4all.nl>; from rene@xs4all.nl on Sat, Jul 07, 2001 at 06:21:20PM +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, Jul 07, 2001 at 06:21:20PM +0200, rene@xs4all.nl wrote: > Hi. I'm using mutt as my mailreader, and have several large mailboxes that I > need to do something with. For starters, I'd like to merge them all, remove > the dupes, sort on date. > > Then after that, I want to flush the resulting file trhough my current > procmail filters. > > Any pointers on what tools I need for the first steps of creating that > uber-mailbox would be greatly appreciated ;) I assume you have installed the procmail port? man formail Something like, $ formail -s procmail < mailbox -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 12:10:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail11.sdc1.sfba.home.com (femail11.sdc1.sfba.home.com [24.0.95.107]) by hub.freebsd.org (Postfix) with ESMTP id 9977337B405 for ; Sat, 7 Jul 2001 12:10:51 -0700 (PDT) (envelope-from brad-watts@home.com) Received: from home.com ([24.101.88.59]) by femail11.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010707191050.WWFW7451.femail11.sdc1.sfba.home.com@home.com> for ; Sat, 7 Jul 2001 12:10:50 -0700 Message-ID: <3B475EDB.2C1C5876@home.com> Date: Sat, 07 Jul 2001 15:11:23 -0400 From: Brad X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: 128 bit Browser encryption with Netscape Communicator 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 if you can obtain 128 bit encryption for Netscape Communicator? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 12:31:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mx2.threeh.com (ct515603-b.lafayt1.in.home.com [24.22.253.67]) by hub.freebsd.org (Postfix) with ESMTP id 1D4BD37B406 for ; Sat, 7 Jul 2001 12:31:29 -0700 (PDT) (envelope-from rlucas@solidcomputing.com) Received: from localhost (rlucas@localhost) by mx2.threeh.com (8.11.3/8.11.3) with ESMTP id f67JVSI04967; Sat, 7 Jul 2001 14:31:29 -0500 (EST) (envelope-from rlucas@solidcomputing.com) Date: Sat, 7 Jul 2001 14:31:28 -0500 (EST) From: Richard Lucas X-X-Sender: To: Michal Mertl Cc: Subject: Re: AMD Athlon MP & Tyan Thunder K7 (for server ?) In-Reply-To: Message-ID: <20010707142524.C4950-100000@mx2.threeh.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, 7 Jul 2001, Michal Mertl wrote: > I was also considering buying one for server (instead of ASUS CUR-DLS and > 2xPIII) but am a bit afraid of two things. > > The Onboard NICs are 3c920 which should be compatible with 3c905C-TX but > in some other post in this group or on stable I've read they don't > work. Well I might easily buy additional NICs that's now big problem only > wasted HW. > > The other (and more serious for me) is the problem with power supplies. > For this board you should get quality 400W (in my case 2x) and that's > difficult to get (at least for rackmountable cases). Also I don't like the > heat Athlon processors produce - in case processor fan stops working you > need to shutdown very fast else the processor is damaged. From my understanding this board recommends/requires a 460W power supply. -Richard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 13:10:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web9601.mail.yahoo.com (web9601.mail.yahoo.com [216.136.129.180]) by hub.freebsd.org (Postfix) with SMTP id A47FA37B401 for ; Sat, 7 Jul 2001 13:10:35 -0700 (PDT) (envelope-from cjalmond@yahoo.com) Message-ID: <20010707201035.75407.qmail@web9601.mail.yahoo.com> Received: from [66.25.47.101] by web9601.mail.yahoo.com via HTTP; Sat, 07 Jul 2001 13:10:35 PDT Date: Sat, 7 Jul 2001 13:10:35 -0700 (PDT) From: The Almonds Subject: 4.3 iso installation image issues 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 All, Maybe someonce can help. I downloaded the 4.3 ISO image from the FTP site and burned it on a MS ME workstation with Roxio 5.01. I have burned it as a ISO9660 and Joliet file system to a CD-r and a CD-RW. The problem is I can not get the CD to boot on any of my systems. I know the systems can boot because if I boot my 4.2 distribution FreeBSD CD I bought at the store the machine boots the kernel just fine. Any ideas on why this is happening? Curtis __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Jul 7 13:13:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from george.he.net (george.he.net [216.218.157.2]) by hub.freebsd.org (Postfix) with ESMTP id 89CC337B407 for ; Sat, 7 Jul 2001 13:13:11 -0700 (PDT) (envelope-from bill@wiliweld.com) Received: from adsl-63-193-247-201.dsl.snfc21.pacbell.net (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by george.he.net (8.8.6/8.8.2) with ESMTP id NAA07028; Sat, 7 Jul 2001 13:13:08 -0700 Date: Sat, 7 Jul 2001 12:20:42 -0700 (PDT) From: Bill Schoolcraft X-Sender: bill@corten2.billschoolcraft.com To: Josef Grosch Cc: freebsd-questions@FreeBSD.ORG Subject: Re: "No tun0 ?" In-Reply-To: <20010707111532.A63756@mooseriver.com> Message-ID: System-ID: [en] (I; Linux i86pc) 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 At Sat, 7 Jul 2001 it looks like Josef Grosch composed: > On Sat, Jul 07, 2001 at 10:16:28AM -0700, Bill Schoolcraft wrote: > > Hello Family, > > > > In trying to replace my Linux NATD/DNS perimeter box I've followed > > the firewall howto at the BSD Vault site, recompiled the kernel > > "word for word" by the instructions and I of couse expected some > > errors but the one that dmesg says is the one I'm concerned with > > now, it's no tun0 > > > > I'm running FreeBSD-4.2 loaded off the released CD > > > Do you have the following line in your kernel config file ? > > pseudo-device tun > > If you do you should have tun0. If not add that line to the config file and > recompile the kernel. It should already be there. Try going into the /dev > directory and try the following > > cd /dev > ./MAKEDEV tun0 > > That should do it. > Thanks Joe, Yes all the above are located but I'm having some other issues that have never happened with FreeBSD. I can ping all my nameservers by IP, have the same stanza's in /etc/resolv.conf as I've used for years, but the new 4.2 box refuses to resolv by name. If I add the IP/name in /etc/hosts then of course I can ping by name. I went into /etc/host.conf and commented out the [host] line and then cannot ping anything. Does the new IPFW options in the kernel blow away something that used to work by default ? Thanks -- Bill Schoolcraft PO Box 210076 -o) San Francisco CA 94121 /\ "UNIX, A Way Of Life." _\_v http://forwardslashunix.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 13:18:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.urx.com (mail.urx.com [63.170.19.36]) by hub.freebsd.org (Postfix) with ESMTP id CD05637B401 for ; Sat, 7 Jul 2001 13:18:52 -0700 (PDT) (envelope-from kstewart@urx.com) Received: from urx.com [206.159.132.160] by mail.urx.com with ESMTP (SMTPD32-6.06) id AEAB55D01B6; Sat, 07 Jul 2001 13:18:51 -0700 Message-ID: <3B476EAB.D35BE7B9@urx.com> Date: Sat, 07 Jul 2001 13:18:51 -0700 From: Kent Stewart X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: The Almonds Cc: freebsd-questions@freebsd.org Subject: Re: 4.3 iso installation image issues References: <20010707201035.75407.qmail@web9601.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 The Almonds wrote: > > All, > > Maybe someonce can help. I downloaded the 4.3 ISO > image from the FTP site and burned it on a MS ME > workstation with Roxio 5.01. I have burned it as a > ISO9660 and Joliet file system to a CD-r and a CD-RW. > The problem is I can not get the CD to boot on any of > my systems. I know the systems can boot because if I > boot my 4.2 distribution FreeBSD CD I bought at the > store the machine boots the kernel just fine. Any > ideas on why this is happening? You probably didn't burn it as an image from the file menu. Kent > > Curtis > > __________________________________________________ > Do You Yahoo!? > Get personalized email addresses from Yahoo! Mail > http://personal.mail.yahoo.com/ > > 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://kstewart.urx.com/kstewart/index.html http://daily.daemonnews.org/ SETI (Search for Extraterrestrial Intelligence) @ Home http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 13:28:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web9605.mail.yahoo.com (web9605.mail.yahoo.com [216.136.129.184]) by hub.freebsd.org (Postfix) with SMTP id 07CF137B401 for ; Sat, 7 Jul 2001 13:28:56 -0700 (PDT) (envelope-from cjalmond@yahoo.com) Message-ID: <20010707202855.71398.qmail@web9605.mail.yahoo.com> Received: from [66.25.47.101] by web9605.mail.yahoo.com via HTTP; Sat, 07 Jul 2001 13:28:55 PDT Date: Sat, 7 Jul 2001 13:28:55 -0700 (PDT) From: The Almonds Subject: Re: 4.3 iso installation image issues To: Kent Stewart Cc: freebsd-questions@freebsd.org In-Reply-To: <3B476EAB.D35BE7B9@urx.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 Interesting, I will try that. I thought if you just double clicked the.iso file since it was associated iwth EZCD it should work. I will let you know if that works. Curtis --- Kent Stewart wrote: > > > The Almonds wrote: > > > > All, > > > > Maybe someonce can help. I downloaded the 4.3 ISO > > image from the FTP site and burned it on a MS ME > > workstation with Roxio 5.01. I have burned it as > a > > ISO9660 and Joliet file system to a CD-r and a > CD-RW. > > The problem is I can not get the CD to boot on any > of > > my systems. I know the systems can boot because > if I > > boot my 4.2 distribution FreeBSD CD I bought at > the > > store the machine boots the kernel just fine. Any > > ideas on why this is happening? > > You probably didn't burn it as an image from the > file menu. > > Kent > > > > > Curtis > > > > __________________________________________________ > > Do You Yahoo!? > > Get personalized email addresses from Yahoo! Mail > > http://personal.mail.yahoo.com/ > > > > 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://kstewart.urx.com/kstewart/index.html > http://daily.daemonnews.org/ > > SETI (Search for Extraterrestrial Intelligence) @ > Home > http://setiathome.ssl.berkeley.edu/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of > the message __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Jul 7 14: 1:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web9602.mail.yahoo.com (web9602.mail.yahoo.com [216.136.129.181]) by hub.freebsd.org (Postfix) with SMTP id AAA8A37B403 for ; Sat, 7 Jul 2001 14:01:16 -0700 (PDT) (envelope-from cjalmond@yahoo.com) Message-ID: <20010707210116.56833.qmail@web9602.mail.yahoo.com> Received: from [66.25.47.101] by web9602.mail.yahoo.com via HTTP; Sat, 07 Jul 2001 14:01:16 PDT Date: Sat, 7 Jul 2001 14:01:16 -0700 (PDT) From: The Almonds Subject: Re: 4.3 iso installation image issues To: Kent Stewart Cc: freebsd-questions@freebsd.org In-Reply-To: <3B476EAB.D35BE7B9@urx.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 Well, Tried the recommendation and the CD will still not boot. Any other ideas? Should I be using Joliet or ISO as the format? Curtis --- Kent Stewart wrote: > > > The Almonds wrote: > > > > All, > > > > Maybe someonce can help. I downloaded the 4.3 ISO > > image from the FTP site and burned it on a MS ME > > workstation with Roxio 5.01. I have burned it as > a > > ISO9660 and Joliet file system to a CD-r and a > CD-RW. > > The problem is I can not get the CD to boot on any > of > > my systems. I know the systems can boot because > if I > > boot my 4.2 distribution FreeBSD CD I bought at > the > > store the machine boots the kernel just fine. Any > > ideas on why this is happening? > > You probably didn't burn it as an image from the > file menu. > > Kent > > > > > Curtis > > > > __________________________________________________ > > Do You Yahoo!? > > Get personalized email addresses from Yahoo! Mail > > http://personal.mail.yahoo.com/ > > > > 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://kstewart.urx.com/kstewart/index.html > http://daily.daemonnews.org/ > > SETI (Search for Extraterrestrial Intelligence) @ > Home > http://setiathome.ssl.berkeley.edu/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of > the message __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Jul 7 14: 5:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gull.mail.pas.earthlink.net (gull.mail.pas.earthlink.net [207.217.121.85]) by hub.freebsd.org (Postfix) with ESMTP id 8E22637B401 for ; Sat, 7 Jul 2001 14:05:35 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.245.133.129.Dial1.SanJose1.Level3.net [209.245.133.129]) by gull.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id OAA25481; Sat, 7 Jul 2001 14:05:28 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f67L5H708868; Sat, 7 Jul 2001 14:05:17 -0700 (PDT) (envelope-from cjc) Date: Sat, 7 Jul 2001 14:05:17 -0700 From: "Crist J. Clark" To: Bill Schoolcraft Cc: Josef Grosch , freebsd-questions@FreeBSD.ORG Subject: Re: "No tun0 ?" Message-ID: <20010707140517.F408@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20010707111532.A63756@mooseriver.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 bill@wiliweld.com on Sat, Jul 07, 2001 at 12:20:42PM -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, Jul 07, 2001 at 12:20:42PM -0700, Bill Schoolcraft wrote: [snip] > Thanks Joe, > > Yes all the above are located but I'm having some other issues that > have never happened with FreeBSD. > > I can ping all my nameservers by IP, have the same stanza's in > /etc/resolv.conf as I've used for years, but the new 4.2 box refuses > to resolv by name. > > If I add the IP/name in /etc/hosts then of course I can ping by > name. > > I went into /etc/host.conf and commented out the [host] line and > then cannot ping anything. > > Does the new IPFW options in the kernel blow away something that > used to work by default ? New IPFW options? I can't think of any IPFIREWALL kernel options that have changed since 3.x... or 2.2.x for that matter. OTOH, if you have enabled ipfw(8) in your kernel you will need to enter some rules to let DNS traffic through. Do things work if you run with the "open" firewall? -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 14: 7:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from c3po.lpl.arizona.edu (c3po.LPL.Arizona.EDU [128.196.64.189]) by hub.freebsd.org (Postfix) with ESMTP id A24E037B406 for ; Sat, 7 Jul 2001 14:07:22 -0700 (PDT) (envelope-from jbarnes@c3po.lpl.arizona.edu) Received: from localhost (jbarnes@localhost) by c3po.lpl.arizona.edu (8.11.3/8.9.3) with ESMTP id f67L7Lv02538 for ; Sat, 7 Jul 2001 14:07:22 -0700 (MST) (envelope-from jbarnes@c3po.lpl.arizona.edu) Date: Sat, 7 Jul 2001 14:07:21 -0700 (MST) From: Jason Barnes To: Subject: mounting compact flash cards Message-ID: <20010707134708.F2484-100000@c3po.lpl.arizona.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'm running FreeBSD-5.0-current-20010501 on a Dell Inspiron 4000 laptop. I am trying to use a Sandisk CompactFlash Pc Card Adapter in the PCMCIA slot 0 to read a SanDisk CompactFlash memory card (80MB) installed within it. The card is recognized by pccard: pccard: card inserted, slot 0 Jul 8 13:57:24 tc14 pccardd[180]: Card "SunDisk"("SDP")[5/3 0.6] [(null)] matched "SunDisk" ("/.*/") [(null)] [(null)] ata4 at port 0x240-0x247,0x24e irq 10 slot 0 on pccard0 ad8: 76MB [62/8/32] at ata4-master BIOSPIO] Jul 8 13:57:29 tc14 pccardd[180]: ata4: SunDisk (/.*/) inserted and is apparently installed as ad8. So far so good. However, since no ad8s1 device exists I apparently cannot mount it. I ran /usr/src/etc/MAKEDEV ad8s1 and get: WARNING: Driver mistake: repeat make_dev("ad8s1") WARNING: Driver mistake: repeat make_dev("ad8s1") mknod: ad8s1: Operation not supported /sbin/mknod ad8s1 Running mount on this gives: tc14# mount_msdos /dev/ad8s1 /camera WARNING: Driver mistake: repeat make_dev("ad8s1") mount_msdos: /dev/ad8s1: No such file or directory Indeed there isn't an ad8s1 in /dev, so this is not a surprise. There is, however, an ad8s1b, attempting to mount it gives: tc14# mount_msdos /dev/ad8s1b /camera mount_msdos: /dev/ad8s1b: Invalid argument The same happens for ad8s1a, the other device present in /dev with ad8 in it. I think the problem here is that I don't understand the new 5.0 device system yet :( Anyway, I apologize for my lack of knowledge, and if anyone would be able to help me out I would apreciate it greatly. Thank you for your time. - Jason To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 14:12: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id 94DE137B401 for ; Sat, 7 Jul 2001 14:12:04 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f67LD0e70890; Sat, 7 Jul 2001 17:13:01 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Sat, 7 Jul 2001 17:13:00 -0400 (EDT) From: Joe Clarke To: The Almonds Cc: Kent Stewart , Subject: Re: 4.3 iso installation image issues In-Reply-To: <20010707210116.56833.qmail@web9602.mail.yahoo.com> Message-ID: <20010707171116.H70351-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 I have done this numerous times in the past using Adaptec Easy CD Creator, and it works like a champ. I just double-click on the ISO image. I think the trick might be selecting the option to Close the Disc. I've burned FreeBSD images on Windows NT, 95, 2000, and Mac OS 8. I never had to select the format of the media. The ISO file contained all the necessary info. Joe Clarke On Sat, 7 Jul 2001, The Almonds wrote: > Well, > > Tried the recommendation and the CD will still not > boot. Any other ideas? Should I be using Joliet or > ISO as the format? > > Curtis > --- Kent Stewart wrote: > > > > > > The Almonds wrote: > > > > > > All, > > > > > > Maybe someonce can help. I downloaded the 4.3 ISO > > > image from the FTP site and burned it on a MS ME > > > workstation with Roxio 5.01. I have burned it as > > a > > > ISO9660 and Joliet file system to a CD-r and a > > CD-RW. > > > The problem is I can not get the CD to boot on any > > of > > > my systems. I know the systems can boot because > > if I > > > boot my 4.2 distribution FreeBSD CD I bought at > > the > > > store the machine boots the kernel just fine. Any > > > ideas on why this is happening? > > > > You probably didn't burn it as an image from the > > file menu. > > > > Kent > > > > > > > > Curtis > > > > > > __________________________________________________ > > > Do You Yahoo!? > > > Get personalized email addresses from Yahoo! Mail > > > http://personal.mail.yahoo.com/ > > > > > > 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://kstewart.urx.com/kstewart/index.html > > http://daily.daemonnews.org/ > > > > SETI (Search for Extraterrestrial Intelligence) @ > > Home > > http://setiathome.ssl.berkeley.edu/ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of > > the message > > > __________________________________________________ > Do You Yahoo!? > Get personalized email addresses from Yahoo! Mail > http://personal.mail.yahoo.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 Sat Jul 7 14:14:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id DD86037B401 for ; Sat, 7 Jul 2001 14:14:36 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f67LFSj70901; Sat, 7 Jul 2001 17:15:28 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Sat, 7 Jul 2001 17:15:28 -0400 (EDT) From: Joe Clarke To: Jason Barnes Cc: Subject: Re: mounting compact flash cards In-Reply-To: <20010707134708.F2484-100000@c3po.lpl.arizona.edu> Message-ID: <20010707171405.A70351-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 I've never used 5.0, but usually, when I need to make a device entry, I do: cd /dev ; ./MAKEDEV If the disk is formatted as a DOS FS, then once you have the device entries, you should be able to do: mount -t msdos /dev/ad8s1 /mnt Joe Clarke On Sat, 7 Jul 2001, Jason Barnes wrote: > > Hi, I'm running FreeBSD-5.0-current-20010501 on a Dell Inspiron > 4000 laptop. I am trying to use a Sandisk CompactFlash Pc Card Adapter in > the PCMCIA slot 0 to read a SanDisk CompactFlash memory card (80MB) > installed within it. The card is recognized by pccard: > > pccard: card inserted, slot 0 > Jul 8 13:57:24 tc14 pccardd[180]: Card "SunDisk"("SDP")[5/3 0.6] [(null)] > matched "SunDisk" ("/.*/") [(null)] [(null)] > ata4 at port 0x240-0x247,0x24e irq 10 slot 0 on pccard0 > ad8: 76MB [62/8/32] at ata4-master BIOSPIO] > Jul 8 13:57:29 tc14 pccardd[180]: ata4: SunDisk (/.*/) inserted > > and is apparently installed as ad8. So far so good. However, since no > ad8s1 device exists I apparently cannot mount it. I ran > /usr/src/etc/MAKEDEV ad8s1 and get: > > WARNING: Driver mistake: repeat make_dev("ad8s1") > WARNING: Driver mistake: repeat make_dev("ad8s1") > mknod: ad8s1: Operation not supported > /sbin/mknod ad8s1 > > Running mount on this gives: > > tc14# mount_msdos /dev/ad8s1 /camera > WARNING: Driver mistake: repeat make_dev("ad8s1") > mount_msdos: /dev/ad8s1: No such file or directory > > Indeed there isn't an ad8s1 in /dev, so this is not a surprise. > There is, however, an ad8s1b, attempting to mount it gives: > > tc14# mount_msdos /dev/ad8s1b /camera > mount_msdos: /dev/ad8s1b: Invalid argument > > The same happens for ad8s1a, the other device present in /dev with > ad8 in it. > I think the problem here is that I don't understand the new 5.0 > device system yet :( Anyway, I apologize for my lack of knowledge, and if > anyone would be able to help me out I would apreciate it greatly. Thank > you for your time. > > - Jason > > > > 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 Jul 7 14:22:20 2001 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 9EC2837B406 for ; Sat, 7 Jul 2001 14:22:16 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-a156.otenet.gr [212.205.215.156]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f67LMDh18514; Sun, 8 Jul 2001 00:22:13 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.4/8.11.4) id f67L4lB40090; Sun, 8 Jul 2001 00:04:47 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sun, 8 Jul 2001 00:04:46 +0300 From: Giorgos Keramidas To: Moritz Schmitt Cc: questions@freebsd.org Subject: Re: FreeBSD/procmail Message-ID: <20010708000446.B36448@hades.hell.gr> 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 m.schmitt@tarsius.org on Sat, Jul 07, 2001 at 07:40:20PM +0200 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-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: Moritz Schmitt Subject: FreeBSD/procmail Date: Sat, Jul 07, 2001 at 07:40:20PM +0200 > I'm using qmail and procmail together but there is a little problem. > /var/log/maillog says: > > Jul 7 19:32:29 ws1 qmail: 994527149.901529 delivery 5: deferral: > procmail:_Coul > dn't_create_"/var/mail/admin"/ > > What's procmails problem? How can I solve it? You probably have $MAIL set to /var/mail/admin in the environment of the user who was supposed to receive this message, and the file and/or directory /var/mail/admin cannot be created by procmail. If I'm not mistaken, when you haven't set DEFAULT in your .procmailrc explicitly, then $MAIL is where procmail will try to write all the messages that did not match any rule in ~/.procmailrc (or matched only 'copying' rules). What is your ~/.procmailrc ? What does `env' print when you login as `admin' as the environment ? -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 14:27:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail4.rdc1.on.home.com (femail4.rdc1.on.home.com [24.2.9.91]) by hub.freebsd.org (Postfix) with ESMTP id 9109437B409; Sat, 7 Jul 2001 14:27:31 -0700 (PDT) (envelope-from wettoast@home.com) Received: from win2000 ([24.112.205.1]) by femail4.rdc1.on.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with SMTP id <20010707212731.LWK11827.femail4.rdc1.on.home.com@win2000>; Sat, 7 Jul 2001 14:27:31 -0700 From: To: Cc: Subject: Unknown warnings Date: Sat, 7 Jul 2001 17:27:37 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.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 Hi, My recent 4.3 installed system suddenly started spewing this out from the syslog: Jul 7 16:20:37 wettoast /kernel: Warning:ttyp1: no t_stop, using nottystop Jul 7 16:20:37 wettoast /kernel: Warning:ttyp1: no t_stop, using nottystop Jul 7 16:20:37 wettoast /kernel: Warning:ttyp2: no t_stop, using nottystop Jul 7 16:20:37 wettoast /kernel: Warning:ttyp2: no t_stop, using nottystop Jul 7 16:20:37 wettoast /kernel: Warning:ttyp3: no t_stop, using nottystop Jul 7 16:20:37 wettoast /kernel: Warning:ttyp3: no t_stop, using nottystop Jul 7 16:20:37 wettoast /kernel: Warning:ttyp4: no t_stop, using nottystop Jul 7 16:20:37 wettoast /kernel: Warning:ttyp4: no t_stop, using nottystop ... Jul 7 16:24:25 wettoast last message repeated 2 times Jul 7 16:24:25 wettoast /kernel: file: table is full Jul 7 16:24:25 wettoast /kernel: file: table is full Jul 7 16:24:25 wettoast last message repeated 1444 times Jul 7 16:24:25 wettoast last message repeated 1444 times I have asked around on various FreeBSD help channels, and searched newsgroups, mailing lists, etc. I cant find any info on what this means, and why it is occurring. Any help would be appreciated. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 14:27:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail4.rdc1.on.home.com (femail4.rdc1.on.home.com [24.2.9.91]) by hub.freebsd.org (Postfix) with ESMTP id 9109437B409; Sat, 7 Jul 2001 14:27:31 -0700 (PDT) (envelope-from wettoast@home.com) Received: from win2000 ([24.112.205.1]) by femail4.rdc1.on.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with SMTP id <20010707212731.LWK11827.femail4.rdc1.on.home.com@win2000>; Sat, 7 Jul 2001 14:27:31 -0700 From: To: Cc: Subject: Unknown warnings Date: Sat, 7 Jul 2001 17:27:37 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.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 Hi, My recent 4.3 installed system suddenly started spewing this out from the syslog: Jul 7 16:20:37 wettoast /kernel: Warning:ttyp1: no t_stop, using nottystop Jul 7 16:20:37 wettoast /kernel: Warning:ttyp1: no t_stop, using nottystop Jul 7 16:20:37 wettoast /kernel: Warning:ttyp2: no t_stop, using nottystop Jul 7 16:20:37 wettoast /kernel: Warning:ttyp2: no t_stop, using nottystop Jul 7 16:20:37 wettoast /kernel: Warning:ttyp3: no t_stop, using nottystop Jul 7 16:20:37 wettoast /kernel: Warning:ttyp3: no t_stop, using nottystop Jul 7 16:20:37 wettoast /kernel: Warning:ttyp4: no t_stop, using nottystop Jul 7 16:20:37 wettoast /kernel: Warning:ttyp4: no t_stop, using nottystop ... Jul 7 16:24:25 wettoast last message repeated 2 times Jul 7 16:24:25 wettoast /kernel: file: table is full Jul 7 16:24:25 wettoast /kernel: file: table is full Jul 7 16:24:25 wettoast last message repeated 1444 times Jul 7 16:24:25 wettoast last message repeated 1444 times I have asked around on various FreeBSD help channels, and searched newsgroups, mailing lists, etc. I cant find any info on what this means, and why it is occurring. Any help would be appreciated. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 14:30:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-79.dsl.lsan03.pacbell.net [63.207.60.79]) by hub.freebsd.org (Postfix) with ESMTP id 092A937B405 for ; Sat, 7 Jul 2001 14:30:45 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id F24C266D72; Sat, 7 Jul 2001 14:30:43 -0700 (PDT) Date: Sat, 7 Jul 2001 14:30:43 -0700 From: Kris Kennaway To: Brad Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 128 bit Browser encryption with Netscape Communicator Message-ID: <20010707143043.A9742@xor.obsecurity.org> References: <3B475EDB.2C1C5876@home.com> 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.5i In-Reply-To: <3B475EDB.2C1C5876@home.com>; from brad-watts@home.com on Sat, Jul 07, 2001 at 03:11:23PM -0400 Sender: owner-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 On Sat, Jul 07, 2001 at 03:11:23PM -0400, Brad wrote: > Does anyone know if you can obtain 128 bit encryption for Netscape > Communicator? It's been standard for about 2 years now. 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 iD8DBQE7R3+DWry0BWjoQKURAjM6AKDJga8beF8YwMiA38DucWKhnqQXDQCeNr3P LeOok8bz4qKVUMVyT16Oop8= =EWrs -----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 Sat Jul 7 15:12:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from server01.usrhome.com (shell.usrhome.com [216.226.136.221]) by hub.freebsd.org (Postfix) with ESMTP id E4D7737B405 for ; Sat, 7 Jul 2001 15:12:24 -0700 (PDT) (envelope-from dav0@tacoking.net) Received: from daveqlxdas9eb9 ([216.94.65.66]) (authenticated) by server01.usrhome.com (8.11.3/8.11.1) with ESMTP id f67MBkT73536 for ; Sat, 7 Jul 2001 18:11:47 -0400 (EDT) (envelope-from dav0@tacoking.net) Message-ID: <002a01c10731$c8b2af70$42415ed8@daveqlxdas9eb9> From: "Dave E." To: Subject: cgi and perl problems with apache Date: Sat, 7 Jul 2001 15:11:31 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0027_01C106F7.1AC80750" 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_0027_01C106F7.1AC80750 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable For some odd reason, apache decided to disallow the use of all cgi and = perl scripts. I got the dreaded 500 internal server error. I check out = my error_log file and it said /usr/libexec/ld-elf.so.1: Shared object "libiconv.so.1" not found=20 I checked all the priveleges and whatnot, they were all correct. My = apache conf is fine. All these scripts were running just fine until = yesterday, when this all happened. I upgraded iconv figuring that would = do it....Nope. Now I get: /usr/libexec/ld-elf.so.1: Shared object "libiconv.so.2" not found=20 I can't figure this out. It somehow sees i upgraded the library, but = can't find it? I'm completely Stumped. Any help at all would be greatly appreciated. Thanks -Dave ------=_NextPart_000_0027_01C106F7.1AC80750 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
For some odd reason, apache decided to = disallow the=20 use of all cgi and perl scripts.  I got the dreaded 500 internal = server=20 error.  I check out my error_log file and it said
/usr/libexec/ld-elf.so.1: Shared object = "libiconv.so.1" not found
I checked all the priveleges and = whatnot, they were=20 all correct.  My apache conf is fine.  All these scripts were = running=20 just fine until yesterday, when this all happened.  I upgraded = iconv=20 figuring that would do it....Nope.  Now I get:
/usr/libexec/ld-elf.so.1: Shared object = "libiconv.so.2" not found
I can't figure this out.  It = somehow sees i=20 upgraded the library, but can't find it?
I'm completely Stumped.  Any help = at all would=20 be greatly appreciated.
Thanks
-Dave

------=_NextPart_000_0027_01C106F7.1AC80750-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 15:46:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from camel.kdsi.net (camel.kdsi.net [206.103.113.218]) by hub.freebsd.org (Postfix) with ESMTP id C354D37B401 for ; Sat, 7 Jul 2001 15:46:09 -0700 (PDT) (envelope-from tony@camel.kdsi.net) Received: from dw35617 (cras58p146.navix.net [205.240.115.148]) (authenticated (0 bits)) by camel.kdsi.net (8.12.0.Beta10/8.12.0.Beta10) with ESMTP id f67MmRKv022770; Sat, 7 Jul 2001 17:48:36 -0500 (CDT) Message-ID: <001701c10736$fd657e00$9473f0cd@dw35617> From: "Tony Wells" To: "Dave E." , References: <002a01c10731$c8b2af70$42415ed8@daveqlxdas9eb9> Subject: Re: cgi and perl problems with apache Date: Sat, 7 Jul 2001 17:48:32 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0012_01C1070D.09DAFB80" 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_0012_01C1070D.09DAFB80 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I think someone on the list had this problem before, you might want to = search the list. You will probably have to re-compile Apache. ----- Original Message -----=20 From: Dave E.=20 To: freebsd-questions@FreeBSD.ORG=20 Sent: Saturday, July 07, 2001 5:11 PM Subject: cgi and perl problems with apache For some odd reason, apache decided to disallow the use of all cgi and = perl scripts. I got the dreaded 500 internal server error. I check out = my error_log file and it said /usr/libexec/ld-elf.so.1: Shared object "libiconv.so.1" not found=20 I checked all the priveleges and whatnot, they were all correct. My = apache conf is fine. All these scripts were running just fine until = yesterday, when this all happened. I upgraded iconv figuring that would = do it....Nope. Now I get: /usr/libexec/ld-elf.so.1: Shared object "libiconv.so.2" not found=20 I can't figure this out. It somehow sees i upgraded the library, but = can't find it? I'm completely Stumped. Any help at all would be greatly appreciated. Thanks -Dave ------=_NextPart_000_0012_01C1070D.09DAFB80 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I think someone on the list had this = problem=20 before, you might want to search the list.  You will probably have = to=20 re-compile Apache.
----- Original Message -----
From:=20 Dave = E.
To: freebsd-questions@FreeBSD.O= RG=20
Sent: Saturday, July 07, 2001 = 5:11=20 PM
Subject: cgi and perl problems = with=20 apache

For some odd reason, apache decided = to disallow=20 the use of all cgi and perl scripts.  I got the dreaded 500 = internal=20 server error.  I check out my error_log file and it = said
/usr/libexec/ld-elf.so.1: Shared = object=20 "libiconv.so.1" not found
I checked all the priveleges and = whatnot, they=20 were all correct.  My apache conf is fine.  All these = scripts were=20 running just fine until yesterday, when this all happened.  I = upgraded=20 iconv figuring that would do it....Nope.  Now I get:
/usr/libexec/ld-elf.so.1: Shared = object=20 "libiconv.so.2" not found
I can't figure this out.  It = somehow sees i=20 upgraded the library, but can't find it?
I'm completely Stumped.  Any = help at all=20 would be greatly appreciated.
Thanks
-Dave

------=_NextPart_000_0012_01C1070D.09DAFB80-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 15:58:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from phoenix.welearn.com.au (phoenix.welearn.com.au [139.130.44.81]) by hub.freebsd.org (Postfix) with ESMTP id 44DBF37B403 for ; Sat, 7 Jul 2001 15:58:49 -0700 (PDT) (envelope-from sue@phoenix.welearn.com.au) Received: (from sue@localhost) by phoenix.welearn.com.au (8.11.1/8.11.1) id f67MwNu55879 for freebsd-questions@freebsd.org; Sun, 8 Jul 2001 08:58:23 +1000 (EST) (envelope-from sue) Date: Sun, 8 Jul 2001 08:58:23 +1000 From: Sue Blake To: freebsd-questions@freebsd.org Subject: userconfig fails during 4.3R install Message-ID: <20010708085823.A53568@welearn.com.au> 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'm trying to install 4.3-RELEASE from CD to a pre-loved machine that had been running 4.2 happily before the disks were wiped. The problem, I suspect, is that I need to get into userconfig to resolve some conflict but the install CD and floppies aren't letting me do so. There also appears to be something preventing the use of userconfig during the installation boot-up. Here's what happens. 1. Freeze after CD boot When I boot off the 4.3 CD, I get the normal "press any key to boot now or wait ten seconds" prompt, at which it responds to my keystrokes (or waits) and continues obediently. It doesn't stop to offer userconfig but goes straight through to the install menu. All looks good, but it's frozen, my keyboard doesn't work, big red switch time. This is the kind of thing that would normally cause me to have a real good look in userconfig to fix any conflicts that could be causing the freeze. But userconfig refuses to play (see below). There is no time to read any of the device detection output during boot, nor can I scroll back to it after the freeze, of course. Exactly the same story happens when booting of two sets of install floppies made from the CD. This same CD and boot floppies have performed other 4.3 installs, so they should be OK. Again, exactly the same things happen using the 4.2R CD. There are no problems at all booting/installing off the 4.0R CD. 2. bizarre userconfig babble When I stop at the prompt during the boot off the 4.3 CD, to manually force userconfig (set boot_userconfig or boot -c), then, at about the time I would expect userconfig to come up, I get a never-ending screenful of text moving too fast to read, but it looks like the word "config " repeated over and over. Again, exactly the same things happen when booting of boot floppies made from the CD, and exactly the same things happen using the 4.2R CD. There are no problems at all booting/installing off the 4.0R CD (or even the 2.2.6 CD!) If it's a simple hardware conflict, I'd need to get into userconfig but have no way to do that. Since userconfig isn't willing to make itself useful anyway, perhaps the cause is something quite different, or something silly I've overlooked. How am I going to install this thing? Do I really have to install 4.0 then grab the 4.3 sources off CD and make world? :-( -- Regards, -*Sue*- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 17: 4:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from chrome.jdl.com (chrome.jdl.com [209.39.144.2]) by hub.freebsd.org (Postfix) with ESMTP id 9C9C337B405 for ; Sat, 7 Jul 2001 17:04:05 -0700 (PDT) (envelope-from jdl@chrome.jdl.com) Received: from chrome.jdl.com (localhost [127.0.0.1]) by chrome.jdl.com (8.9.1/8.9.1) with ESMTP id TAA04036 for ; Sat, 7 Jul 2001 19:11:17 -0500 (CDT) (envelope-from jdl@chrome.jdl.com) Message-Id: <200107080011.TAA04036@chrome.jdl.com> To: questions@freebsd.org Subject: Majordomo Hacking? Date: Sat, 07 Jul 2001 19:11:17 -0500 From: Jon Loeliger Sender: owner-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, So, I turn to the collected knowledge of the FreeBSD team again. I've Googled around the net and Majordomo sites looking for any insight into what I suspect is an attempted Majordomo-based mail-redelivery, spamming or hacking effort. I've not been able to find anything that describes what I am seeing, or discusses a Majordomo exploit. I run both jdl.com and UncommonCon.com. UncommonCon.com looks like: FreeBSD www.uncommoncon.com 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Mon Nov 20 13:02:55 GMT 2000 jkh@bento.FreeBSD.org:/usr/src/sys/compile/GENERIC i386 and www 550 # exim -bV Exim version 3.16 #1 built 26-Mar-2001 19:54:13 Copyright (c) University of Cambridge 2000 and # $Header: /sources/cvsrepos/majordomo/majordomo_version.pl,v 1.28 2000/01/18 13:28:07 cwilson Exp $ $majordomo_version = "1.94.5"; Here's what I think is happening: Someone sends a message that looks sort of like base64 encoding to majordomo@uncommoncon.com. Majordomo tries to interpret all that junk as commands, and fails a lot. Somehow, some m636614464@hotmail.com address ends up being the recipient and fails to get delivered. It bounces back to Majordomo, where I get it as the sorry sysadmin. It then gets forwarded to me at jdl.com where I'm reading things. Mystery questions: How does m636614464@hotmail.com end up a recipient? Who's doing this, and how can I knee-cap them? So I'm trying desperately not to be an open relay, of course. Here's what exim says around 08:00 this morning: 2001-07-07 08:02:46 15IrjO-000AmG-00 <= m636614464@hotmail.com H=(server.hwanan) [210.61.154.243] P=esmtp S=3933 2001-07-07 08:02:47 15IrjT-000AmN-00 <= Majordomo-Owner@www.uncommoncon.com U=majordom P=local S=17304 2001-07-07 08:02:47 15IrjO-000AmG-00 => |/usr/local/majordomo/wrapper majordomo D=majordomo_aliases T=address_pipe 2001-07-07 08:02:47 15IrjO-000AmG-00 Completed 2001-07-07 08:02:48 15IrjT-000AmN-00 ** m636614464@hotmail.com R=lookuphost T=remote_smtp: SMTP error from remote mailer after RCPT TO:: host mc2.law5.hotmail.com [64.4.55.135]: 550 Requested action not taken: mailbox unavailable 2001-07-07 08:02:48 15IrjU-000AmP-00 <= <> R=15IrjT-000AmN-00 U=root P=local S=18301 2001-07-07 08:02:48 15IrjT-000AmN-00 Error message sent to Majordomo-Owner@www.uncommoncon.com 2001-07-07 08:02:48 15IrjT-000AmN-00 Completed 2001-07-07 08:02:48 15IrjU-000AmP-00 => jdl@jdl.com R=lookuphost T=remote_smtp H=chrome.jdl.com [209.39.144.2] 2001-07-07 08:02:48 15IrjU-000AmP-00 Completed So, is 210.61.154.243 the real perpetrator here? Should I just add them to my host_reject_recipients and never hear from them again?! Any insight greatly appreciated! jdl ------- Forwarded Message Return-Path: MAILER-DAEMON Received: from www.uncommoncon.com (www.uncommoncon.com [209.39.144.8]) by chrome.jdl.com (8.9.1/8.9.1) with ESMTP id IAA03367 for ; Sat, 7 Jul 2001 08:11:46 -0500 (CDT) (envelope-from ) Received: from root by www.uncommoncon.com with local (Exim 3.16 #1) id 15IrjU-000AmP-00 for Majordomo-Owner@www.uncommoncon.com; Sat, 07 Jul 2001 08:02:48 -0500 X-Failed-Recipients: m636614464@hotmail.com From: Mail Delivery System To: Majordomo-Owner@uncommoncon.com Subject: Mail delivery failed: returning message to sender Message-Id: Date: Sat, 07 Jul 2001 08:02:48 -0500 This message was created automatically by mail delivery software. A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed: m636614464@hotmail.com: SMTP error from remote mailer after RCPT TO:: host mc2.law5.hotmail.com [64.4.55.135]: 550 Requested action not taken: mailbox unavailable - ------ This is a copy of the message, including all the headers. ------ Return-path: Received: from majordom by www.uncommoncon.com with local (Exim 3.16 #1) id 15IrjT-000AmN-00 for m636614464@hotmail.com; Sat, 07 Jul 2001 08:02:47 -0500 To: m636614464@hotmail.com From: majordomo@www.uncommoncon.com Subject: Majordomo results: ¨È­}DVDÅý±z¦å¯ß¼Q±i¡I¡D¡D¡D¡D¡D¨È­}DVDÅý Reply-To: majordomo@www.uncommoncon.com Message-Id: Date: Sat, 07 Jul 2001 08:02:47 -0500 - -- >>>> PGh0bWw+DQoNCjxoZWFkPg0KPG1ldGEgaHR0cC1lcXVpdj0iQ29udGVudC1UeXBlIiBjb250 **** Command 'pgh0bww+dqoncjxozwfkpg0kpg1ldgegahr0cc1lcxvpdj0iq29udgvudc1uexbli ibjb250' not recognized. >>>> ZW50PSJ0ZXh0L2h0bWw7IGNoYXJzZXQ9YmlnNSI+DQo8dGl0bGU+qMitfWR2ZLBUrqc8L3Rp **** Command 'zw50psj0zxh0l2h0bww7ignoyxjzzxq9ymlnnsi+dqo8dgl0bgu+qmitfwr2zlbur qc8l3rp' not recognized. >>>> dGxlPg0KPG1ldGEgbmFtZT0iR0VORVJBVE9SIiBjb250ZW50PSJNaWNyb3NvZnQgRnJvbnRQ **** Command 'dgxlpg0kpg1ldgegbmftzt0ir0vorvjbve9siibjb250zw50psjnawnyb3nvznqgr njvbnrq' not recognized. >>>> YWdlIDMuMCI+DQo8L2hlYWQ+DQoNCjxib2R5IGJnY29sb3I9IiMwMDVBODciPg0KPGRpdiBh **** Command 'ywdlidmumci+dqo8l2hlywq+dqoncjxib2r5igjny29sb3i9iimwmdvbodcipg0kp grpdibh' not recognized. >>>> bGlnbj0iY2VudGVyIj48Y2VudGVyPg0KDQo8dGFibGUgYm9yZGVyPSIwIiB3aWR0aD0iNDkl **** Command 'bglnbj0iy2vudgvyij48y2vudgvypg0kdqo8dgfibgugym9yzgvypsiwiib3awr0a d0indkl' not recognized. >>>> IiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiPg0KICA8dHI+DQogICAgPHRkIHdp **** Command 'iibjzwxsc3bhy2luzz0imcigy2vsbhbhzgrpbmc9ijaipg0kica8dhi+dqogicagp hrkihdp' not recognized. >>>> ZHRoPSIxMDAlIj48IS0td2ViYm90IGJvdD0iSW1hZ2VNYXAiIHN0YXJ0c3Bhbg0KICAgIHJl **** Command 'zhropsixmdalij48is0td2viym90igjvdd0isw1hz2vnyxaiihn0yxj0c3bhbg0ki cagihjl' not recognized. >>>> Y3RhbmdsZT0iICgzLDUpICg0NzEsIDE5NikgIGh0dHA6Ly93d3cuZ2VvY2l0aWVzLmNvbS9s **** Command 'y3rhbmdszt0iicgzldupicg0nzeside5nikgigh0dha6ly93d3cuz2vvy2l0awvzl mnvbs9s' not recognized. >>>> dWZsdWluMzQyIiBzcmM9Imh0dHA6Ly9ob21lLnBjaG9tZS5jb20udHcvY2xpY2svbW9kbHVz **** Command 'dwzsdwlumzqyiibzcmm9imh0dha6ly9ob21llnbjag9tzs5jb20udhcvy2xpy2svb w9kbhvz' not recognized. >>>> c2FhL21haWx0b3AuZ2lmIiB3aWR0aD0iNDcyIg0KICAgIGhlaWdodD0iMTk3IiBhbHQ9IqjI **** Command 'c2fhl21hawx0b3auz2lmiib3awr0ad0indcyig0kicagighlawdodd0imtk3iibhb hq9iqji' not recognized. >>>> rX1kdmS69K+4IiBib3JkZXI9IjAiIC0tPjxNQVAgTkFNRT0iRnJvbnRQYWdlTWFwMCI+PEFS **** Command 'rx1kdms69k+4iibib3jkzxi9ijaiic0tpjxnqvagtkfnrt0irnjvbnrqywdltwfwm ci+pefs' not recognized. >>>> RUEgU0hBUEU9IlJFQ1QiIENPT1JEUz0iMywgNSwgNDcxLCAxOTYiIEhSRUY9Imh0dHA6Ly93 **** Command 'ruegu0hbueu9iljfq1qiienpt1jeuz0imywgnswgndcxlcaxotyiiehsruy9imh0d ha6ly93' not recognized. >>>> d3cuZ2VvY2l0aWVzLmNvbS9sdWZsdWluMzQyIj48L01BUD48aW1nIHNyYz0iaHR0cDovL2hv **** Command 'd3cuz2vvy2l0awvzlmnvbs9sdwzsdwlumzqyij48l01bud48aw1nihnyyz0iahr0c dovl2hv' not recognized. >>>> bWUucGNob21lLmNvbS50dy9jbGljay9tb2RsdXNzYWEvbWFpbHRvcC5naWYiIHdpZHRoPSI0 **** Command 'bwuucgnob21llmnvbs50dy9jbgljay9tb2rsdxnzywevbwfpbhrvcc5nawyiihdpz hropsi0' not recognized. >>>> NzIiIGhlaWdodD0iMTk3IiBhbHQ9IqjIrX1kdmS69K+4IiBib3JkZXI9IjAiIHVzZW1hcD0i **** Command 'nziiighlawdodd0imtk3iibhbhq9iqjirx1kdms69k+4iibib3jkzxi9ijaiihvzz w1hcd0i' not recognized. >>>> I0Zyb250UGFnZU1hcDAiPjwhLS13ZWJib3QgYm90PSJJbWFnZU1hcCINCiAgICBpLWNoZWNr **** Command 'i0zyb250ugfnzu1hcdaipjwhls13zwjib3qgym90psjjbwfnzu1hccinciagicbpl wnozwnr' not recognized. >>>> c3VtPSIyOTg4NiIgZW5kc3BhbiAtLT48L3RkPg0KICA8L3RyPg0KICA8dHI+DQogICAgPHRk **** Command 'c3vtpsiyotg4niigzw5kc3bhbiatlt48l3rkpg0kica8l3rypg0kica8dhi+dqogi cagphrk' not recognized. >>>> IHdpZHRoPSIxMDAlIj48IS0td2ViYm90IGJvdD0iSW1hZ2VNYXAiIHN0YXJ0c3Bhbg0KICAg **** Command 'ihdpzhropsixmdalij48is0td2viym90igjvdd0isw1hz2vnyxaiihn0yxj0c3bhb g0kicag' not recognized. >>>> IHJlY3RhbmdsZT0iICgyODIsMikgKDQ3MSwgNjkpICBodHRwOi8vd3d3Lmdlb2NpdGllcy5j **** Command 'ihjly3rhbmdszt0iicgyodismikgkdq3mswgnjkpicbodhrwoi8vd3d3lmdlb2npd gllcy5j' not recognized. >>>> b20vbHVmbHVpbjM0MiIgc3JjPSJodHRwOi8vaG9tZS5wY2hvbWUuY29tLnR3L2NsaWNrL21v **** Command 'b20vbhvmbhvpbjm0miigc3jjpsjodhrwoi8vag9tzs5wy2hvbwuuy29tlnr3l2nsa wnrl21v' not recognized. >>>> ZGx1c3NhYS9tYWlsZG93bi5naWYiIHdpZHRoPSI0NzIiDQogICAgaGVpZ2h0PSI3MCIgYWx0 **** Command 'zgx1c3nhys9tywlszg93bi5nawyiihdpzhropsi0nziidqogicagagvpz2h0psi3m cigywx0' not recognized. >>>> PSJtYWlsZG93bi5naWYgKDY4MDIgYnl0ZXMpIiBib3JkZXI9IjAiIC0tPjxNQVAgTkFNRT0i **** Command 'psjtywlszg93bi5nawygkdy4mdigynl0zxmpiibib3jkzxi9ijaiic0tpjxnqvagt kfnrt0i' not recognized. >>>> RnJvbnRQYWdlTWFwMSI+PEFSRUEgU0hBUEU9IlJFQ1QiIENPT1JEUz0iMjgyLCAyLCA0NzEs **** Command 'rnjvbnrqywdltwfwmsi+pefsruegu0hbueu9iljfq1qiienpt1jeuz0imjgylcayl ca0nzes' not recognized. >>>> IDY5IiBIUkVGPSJodHRwOi8vd3d3Lmdlb2NpdGllcy5jb20vbHVmbHVpbjM0MiI+PC9NQVA+ **** Command 'idy5iibiukvgpsjodhrwoi8vd3d3lmdlb2npdgllcy5jb20vbhvmbhvpbjm0mii+p c9nqva+' not recognized. >>>> PGltZyBzcmM9Imh0dHA6Ly9ob21lLnBjaG9tZS5jb20udHcvY2xpY2svbW9kbHVzc2FhL21h **** Command 'pgltzybzcmm9imh0dha6ly9ob21llnbjag9tzs5jb20udhcvy2xpy2svbw9kbhvzc 2fhl21h' not recognized. >>>> aWxkb3duLmdpZiIgd2lkdGg9IjQ3MiIgaGVpZ2h0PSI3MCIgYWx0PSJtYWlsZG93bi5naWYg **** Command 'awxkb3dulmdpziigd2lkdgg9ijq3miigagvpz2h0psi3mcigywx0psjtywlszg93b i5nawyg' not recognized. >>>> KDY4MDIgYnl0ZXMpIiBib3JkZXI9IjAiIHVzZW1hcD0iI0Zyb250UGFnZU1hcDEiPjwhLS13 **** Command 'kdy4mdigynl0zxmpiibib3jkzxi9ijaiihvzzw1hcd0ii0zyb250ugfnzu1hcdeip jwhls13' not recognized. >>>> ZWJib3QgYm90PSJJbWFnZU1hcCINCiAgICBpLWNoZWNrc3VtPSIzMzc4NyIgZW5kc3BhbiAt **** Command 'zwjib3qgym90psjjbwfnzu1hccinciagicbplwnozwnrc3vtpsizmzc4nyigzw5kc 3bhbiat' not recognized. >>>> LT48L3RkPg0KICA8L3RyPg0KICA8dHI+DQogICAgIDx0ZCB3aWR0aD0iMTAwJSIgYWxpZ249 **** Command 'lt48l3rkpg0kica8l3rypg0kica8dhi+dqogicagidx0zcb3awr0ad0imtawjsigy wxpz249' not recognized. >>>> ImNlbnRlciI+PHAgYWxpZ249ImNlbnRlciI+PGZvbnQgY29sb3I9IiNmZmZmZmYiPqW7r7il **** Command 'imnlbnrlcii+phagywxpz249imnlbnrlcii+pgzvbnqgy29sb3i9iinmzmzmzmyip qw7r7il' not recognized. >>>> w6RbuvSnfaFHPHN0cm9uZz5odHRwOi8vZHZkOTkudHcuc3Q8L3N0cm9uZz48L2ZvbnQ+PC90 **** Command 'w6rbuvsnfafhphn0cm9uzz5odhrwoi8vzhzkotkudhcuc3q8l3n0cm9uzz48l2zvb nq+pc90' not recognized. >>>> ZD4NCiAgPC90cj4NCiAgPHRyPg0KICAgIDx0ZCB3aWR0aD0iMTAwJSIgYWxpZ249ImNlbnRl **** Command 'zd4nciagpc90cj4nciagphrypg0kicagidx0zcb3awr0ad0imtawjsigywxpz249i mnlbnrl' not recognized. >>>> ciI+PHAgYWxpZ249ImNlbnRlciI+PGZvbnQgY29sb3I9IiM3NUQyRkYiPjxicj4NCiAgICCt **** Command 'cii+phagywxpz249imnlbnrlcii+pgzvbnqgy29sb3i9iim3nuqyrkyipjxicj4nc iagicct' not recognized. >>>> sLv5sNWhbafzt3OuybahoUcyMDAxpn4wN6TrMDak6aFurbC7+bDVPC9mb250PjwvdGQ+DQog **** Command 'slv5snwhbafzt3ouybahoucymdaxpn4wn6trmdak6afurbc7+bdvpc9mb250pjwvd gq+dqog' not recognized. >>>> IDwvdHI+DQo8L3RhYmxlPg0KPC9jZW50ZXI+PC9kaXY+DQo8L2JvZHk+DQo8L2h0bWw+DTxI **** Command 'idwvdhi+dqo8l3rhymxlpg0kpc9jzw50zxi+pc9kaxy+dqo8l2jvzhk+dqo8l2h0b ww+dtxi' not recognized. >>>> VE1MPg0KPEEgbmFtZT0iDQqoyK19RFZEDQpQTSAwMTo1NDo0NQ0KMjAwMS83LzcNCjEwMDAw **** Command 've1mpg0kpeegbmftzt0idqqoyk19rfzedqpqtsawmto1ndo0nq0kmjawms83lzcnc jewmdaw' not recognized. >>>> Mw0KIj48L2E+DQo8L0hUTUw+DTxIVE1MPg0KPEEgbmFtZT0iDQqoyK19RFZEDQpQTSAwMjow **** Command 'mw0kij48l2e+dqo8l0hutuw+dtxive1mpg0kpeegbmftzt0idqqoyk19rfzedqpqt sawmjow' not recognized. >>>> NjoyOQ0KMjAwMS83LzcNCjEwMDAwMw0KIj48L2E+DQo8L0hUTUw+DTxIVE1MPg0KPEEgbmFt **** Command 'njoyoq0kmjawms83lzcncjewmdawmw0kij48l2e+dqo8l0hutuw+dtxive1mpg0kp eegbmft' not recognized. >>>> ZT0iDQqoyK19RFZExf2xeqblr9+8UbFpoUmhRKFEoUShRKFEqMitfQ0KUE0gMDI6MTU6MDMN **** Command 'zt0idqqoyk19rfzexf2xeqblr9+8ubfpoumhrkfeoushrkfeqmitfq0kue0gmdi6m tu6mdmn' not recognized. >>>> CjIwMDEvNy83DQoxMDAwMDMNCiI+PC9hPg0KPC9IVE1MPg08SFRNTD4NCjxBIG5hbWU9Ig0K **** Command 'cjiwmdevny83dqoxmdawmdmncii+pc9hpg0kpc9ive1mpg08sfrntd4ncjxbig5hb wu9ig0k' not recognized. >>>> qMitfURWRMX9sXqm5a/fvFGxaaFJoUShRKFEoUShRKFEoUShRKFEqMitfQ0KUE0gMDI6MjI6 **** Command 'qmitfurwrmx9sxqm5a/fvfgxaafjoushrkfeoushrkfeoushrkfeqmitfq0kue0gm di6mji6' not recognized. >>>> NTcNCjIwMDEvNy83DQoxMDAwMDMNCiI+PC9hPg0KPC9IVE1MPg08SFRNTD4NCjxBIG5hbWU9 **** Command 'ntcncjiwmdevny83dqoxmdawmdmncii+pc9hpg0kpc9ive1mpg08sfrntd4ncjxbi g5hbwu9' not recognized. >>>> Ig0KqMitfURWRMX9sXqm5a/fvFGxaaFJoUShRKFEoUSoyK19RFZEDQpQTSAwOToxNTozMg0K **** Command 'ig0kqmitfurwrmx9sxqm5a/fvfgxaafjoushrkfeousoyk19rfzedqpqtsawotoxn tozmg0k' not recognized. >>>> MjAwMS83LzcNCjEwMDAwMw0KIj48L2E+DQo8L0hUTUw+DQo= **** Command 'mjawms83lzcncjewmdawmw0kij48l2e+dqo8l0hutuw+dqo=' not recognized. >>>> >>>> **** No valid commands found. **** Commands must be in message BODY, not in HEADER. **** Help for majordomo@www.uncommoncon.com: This help message is being sent to you from the Majordomo mailing list management system at majordomo@www.uncommoncon.com. This is version 1.94.5 of Majordomo. If you're familiar with mail servers, an advanced user's summary of Majordomo's commands appears at the end of this message. Majordomo is an automated system which allows users to subscribe and unsubscribe to mailing lists, and to retrieve files from list archives. You can interact with the Majordomo software by sending it commands in the body of mail messages addressed to "majordomo@www.uncommoncon.com". Please do not put your commands on the subject line; Majordomo does not process commands in the subject line. You may put multiple Majordomo commands in the same mail message. Put each command on a line by itself. If you use a "signature block" at the end of your mail, Majordomo may mistakenly believe each line of your message is a command; you will then receive spurious error messages. To keep this from happening, either put a line starting with a hyphen ("-") before your signature, or put a line with just the word end on it in the same place. This will stop the Majordomo software from processing your signature as bad commands. Here are some of the things you can do using Majordomo: I. FINDING OUT WHICH LISTS ARE ON THIS SYSTEM To get a list of publicly-available mailing lists on this system, put the following line in the body of your mail message to majordomo@www.uncommoncon.co m: lists Each line will contain the name of a mailing list and a brief description of the list. To get more information about a particular list, use the "info" command, supplying the name of the list. For example, if the name of the list about which you wish information is "demo-list", you would put the line info demo-list in the body of the mail message. II. SUBSCRIBING TO A LIST Once you've determined that you wish to subscribe to one or more lists on this system, you can send commands to Majordomo to have it add you to the list, so you can begin receiving mailings. To receive list mail at the address from which you're sending your mail, simply say "subscribe" followed by the list's name: subscribe demo-list If for some reason you wish to have the mailings go to a different address (a friend's address, a specific other system on which you have an account, or an address which is more correct than the one that automatically appears in the "From:" header on the mail you send), you would add that address to the command. For instance, if you're sending a request from your work account, but wish to receive "demo-list" mail at your personal account (for which we will use "jqpublic@my-isp.com" as an example), you'd put the line subscribe demo-list jqpublic@my-isp.com in the mail message body. Based on configuration decisions made by the list owners, you may be added to the mailing list automatically. You may also receive notification that an authorization key is required for subscription. Another message will be sent to the address to be subscribed (which may or may not be the same as yours) containing the key, and directing the user to send a command found in that message back to majordomo@www.uncommoncon.com. (This can be a bit of extra hassle, but it helps keep you from being swamped in extra email by someone who forged requests from your address.) You may also get a message that your subscription is being forwarded to the list owner for approval; some lists have waiting lists, or policies about who may subscribe. If your request is forwarded for approval, the list owner should contact you soon after your request. Upon subscribing, you should receive an introductory message, containing list policies and features. Save this message for future reference; it will also contain exact directions for unsubscribing. If you lose the intro mail and would like another copy of the policies, send this message to majordomo@www.uncommoncon.com: intro demo-list (substituting, of course, the real name of your list for "demo-list"). III. UNSUBSCRIBING FROM MAILING LISTS Your original intro message contains the exact command which should be used to remove your address from the list. However, in most cases, you may simply send the command "unsubscribe" followed by the list name: unsubscribe demo-list (This command may fail if your provider has changed the way your address is shown in your mail.) To remove an address other than the one from which you're sending the request, give that address in the command: unsubscribe demo-list jqpublic@my-isp.com In either of these cases, you can tell majordomo@www.uncommoncon.com to remove the address in question from all lists on this server by using "*" in place of the list name: unsubscribe * unsubscribe * jqpublic@my-isp.com IV. FINDING THE LISTS TO WHICH AN ADDRESS IS SUBSCRIBED To find the lists to which your address is subscribed, send this command in the body of a mail message to majordomo@www.uncommoncon.com: which You can look for other addresses, or parts of an address, by specifying the text for which Majordomo should search. For instance, to find which users at my-isp.com are subscribed to which lists, you might send the command which my-isp.com Note that many list owners completely or fully disable the "which" command, considering it a privacy violation. V. FINDING OUT WHO'S SUBSCRIBED TO A LIST To get a list of the addresses on a particular list, you may use the "who" command, followed by the name of the list: who demo-list Note that many list owners allow only a list's subscribers to use the "who" command, or disable it completely, believing it to be a privacy violation. VI. RETRIEVING FILES FROM A LIST'S ARCHIVES Many list owners keep archives of files associated with a list. These may include: - - back issues of the list - - help files, user profiles, and other documents associated with the list - - daily, monthly, or yearly archives for the list To find out if a list has any files associated with it, use the "index" command: index demo-list If you see files in which you're interested, you may retrieve them by using the "get" command and specifying the list name and archive filename. For instance, to retrieve the files called "profile.form" (presumably a form to fill out with your profile) and "demo-list.9611" (presumably the messages posted to the list in November 1996), you would put the lines get demo-list profile.form get demo-list demo-list.9611 in your mail to majordomo@www.uncommoncon.com. VII. GETTING MORE HELP To contact a human site manager, send mail to Majordomo-Owner@www.uncommoncon.c om. To contact the owner of a specific list, send mail to that list's approval address, which is formed by adding "-approval" to the user-name portion of the list's address. For instance, to contact the list owner for demo-list@www.uncommoncon.com, you would send mail to demo-list-approval@ww w.uncommoncon.com. To get another copy of this help message, send mail to majordomo@www.uncommonco n.com with a line saying help in the message body. VIII. COMMAND SUMMARY FOR ADVANCED USERS In the description below items contained in []'s are optional. When providing the item, do not include the []'s around it. Items in angle brackets, such as
, are meta-symbols that should be replaced by appropriate text without the angle brackets. It understands the following commands: subscribe [
] Subscribe yourself (or
if specified) to the named . unsubscribe [
] Unsubscribe yourself (or
if specified) from the named . "unsubscribe *" will remove you (or
) from all lists. This _may not_ work if you have subscribed using multiple addresses. get Get a file related to . index Return an index of files you can "get" for . which [
] Find out which lists you (or
if specified) are on. who Find out who is on the named . info Retrieve the general introductory information for the named . intro Retrieve the introductory message sent to new users. Non-subscribers may not be able to retrieve this. lists Show the lists served by this Majordomo server. help Retrieve this message. end Stop processing commands (useful if your mailer adds a signature). Commands should be sent in the body of an email message to "majordomo@www.uncommoncon.com". Multiple commands can be processed provided each occurs on a separate line. Commands in the "Subject:" line are NOT processed. If you have any questions or problems, please contact "Majordomo-Owner@www.uncommoncon.com". ------- End of Forwarded Message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 17:14:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from phoenix.welearn.com.au (phoenix.welearn.com.au [139.130.44.81]) by hub.freebsd.org (Postfix) with ESMTP id BFA9637B403 for ; Sat, 7 Jul 2001 17:14:10 -0700 (PDT) (envelope-from sue@phoenix.welearn.com.au) Received: (from sue@localhost) by phoenix.welearn.com.au (8.11.1/8.11.1) id f680Dbp56032; Sun, 8 Jul 2001 10:13:37 +1000 (EST) (envelope-from sue) Date: Sun, 8 Jul 2001 10:13:37 +1000 From: Sue Blake To: Jon Loeliger Cc: questions@FreeBSD.ORG Subject: Re: Majordomo Hacking? Message-ID: <20010708101336.C32222@welearn.com.au> References: <200107080011.TAA04036@chrome.jdl.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200107080011.TAA04036@chrome.jdl.com>; from jdl@jdl.com on Sat, Jul 07, 2001 at 07:11:17PM -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 Sat, Jul 07, 2001 at 07:11:17PM -0500, Jon Loeliger wrote: > > Here's what I think is happening: > > Someone sends a message that looks sort of like base64 encoding > to majordomo@uncommoncon.com. Majordomo tries to interpret > all that junk as commands, and fails a lot. Somehow, some > m636614464@hotmail.com address ends up being the recipient > and fails to get delivered. It bounces back to Majordomo, > where I get it as the sorry sysadmin. It then gets forwarded > to me at jdl.com where I'm reading things. > > Mystery questions: > > How does m636614464@hotmail.com end up a recipient? > Who's doing this, and how can I knee-cap them? That hotmail address emailed some rubbish to majordomo. Majordomo couldn't understand it as being majordomo commands, so it sent the hotmail person a helpful email. That helpful email did not succeed, (probably because the spammer's mailbox filled up) so it was returned to sender. That sender name had been given by majordomo as owner-majordomo, i.e. you. No big deal. -- Regards, -*Sue*- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 17:22:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail4.tor.primus.ca (mx-backup.primus.ca [216.254.136.135]) by hub.freebsd.org (Postfix) with ESMTP id BA59D37B406 for ; Sat, 7 Jul 2001 17:22:09 -0700 (PDT) (envelope-from dav0@tacoking.net) Received: from dialin-42-41.vancouver.primus.ca ([216.94.42.41] helo=innovate) by mail4.tor.primus.ca with smtp (Exim 2.11 #1) id 15J2Ke-0003uA-07; Sat, 7 Jul 2001 20:21:53 -0400 Message-ID: <001701c10744$30ae89c0$292a5ed8@net.primus.ca> From: "Dave E." To: "Tony Wells" , References: <002a01c10731$c8b2af70$42415ed8@daveqlxdas9eb9> <001701c10736$fd657e00$9473f0cd@dw35617> Subject: Re: cgi and perl problems with apache Date: Sat, 7 Jul 2001 17:23:12 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0014_01C10709.809C1FA0" 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 This is a multi-part message in MIME format. ------=_NextPart_000_0014_01C10709.809C1FA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Thats the thing, i did recompile apache. I even reinstalled perl. = Didn't work. Any thing else you or anyone else can think of? -Dave ----- Original Message -----=20 From: Tony Wells=20 To: Dave E. ; freebsd-questions@FreeBSD.ORG=20 Sent: Saturday, July 07, 2001 3:48 PM Subject: Re: cgi and perl problems with apache I think someone on the list had this problem before, you might want to = search the list. You will probably have to re-compile Apache. ----- Original Message -----=20 From: Dave E.=20 To: freebsd-questions@FreeBSD.ORG=20 Sent: Saturday, July 07, 2001 5:11 PM Subject: cgi and perl problems with apache For some odd reason, apache decided to disallow the use of all cgi = and perl scripts. I got the dreaded 500 internal server error. I check = out my error_log file and it said /usr/libexec/ld-elf.so.1: Shared object "libiconv.so.1" not found=20 I checked all the priveleges and whatnot, they were all correct. My = apache conf is fine. All these scripts were running just fine until = yesterday, when this all happened. I upgraded iconv figuring that would = do it....Nope. Now I get: /usr/libexec/ld-elf.so.1: Shared object "libiconv.so.2" not found=20 I can't figure this out. It somehow sees i upgraded the library, = but can't find it? I'm completely Stumped. Any help at all would be greatly = appreciated. Thanks -Dave ------=_NextPart_000_0014_01C10709.809C1FA0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Thats the thing, i did recompile = apache.  I=20 even reinstalled perl.  Didn't work.  Any thing else you or = anyone=20 else can think of?
-Dave
----- Original Message -----
From:=20 Tony Wells=20
To: Dave E. ; freebsd-questions@FreeBSD.ORG =
Sent: Saturday, July 07, 2001 = 3:48=20 PM
Subject: Re: cgi and perl = problems with=20 apache

I think someone on the list had this = problem=20 before, you might want to search the list.  You will probably = have to=20 re-compile Apache.
----- Original Message -----
From:=20 Dave = E.=20
To: freebsd-questions@FreeBSD.ORG =
Sent: Saturday, July 07, 2001 = 5:11=20 PM
Subject: cgi and perl = problems with=20 apache

For some odd reason, apache decided = to disallow=20 the use of all cgi and perl scripts.  I got the dreaded 500 = internal=20 server error.  I check out my error_log file and it = said
/usr/libexec/ld-elf.so.1: Shared = object=20 "libiconv.so.1" not found
I checked all the priveleges and = whatnot, they=20 were all correct.  My apache conf is fine.  All these = scripts were=20 running just fine until yesterday, when this all happened.  I = upgraded=20 iconv figuring that would do it....Nope.  Now I = get:
/usr/libexec/ld-elf.so.1: Shared = object=20 "libiconv.so.2" not found
I can't figure this out.  It = somehow sees=20 i upgraded the library, but can't find it?
I'm completely Stumped.  Any = help at all=20 would be greatly appreciated.
Thanks
-Dave

------=_NextPart_000_0014_01C10709.809C1FA0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 17:46:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from comboard.com (comboard.com [204.201.245.242]) by hub.freebsd.org (Postfix) with SMTP id E317937B401; Sat, 7 Jul 2001 17:46:50 -0700 (PDT) (envelope-from smurray@comboard.com) Received: from [204.201.245.243] ([204.201.245.243] verified) by comboard.com (Stalker SMTP Server 1.7) with ESMTP id S.0000346841; Sat, 07 Jul 2001 17:46:51 -0700 User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2022 Date: Sat, 07 Jul 2001 17:46:48 -0700 Subject: vinum and hot-swap SCSI RAID backplanes From: Seth Murray To: , Message-ID: 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 The motherboard we're considering for our new server has a built-in, non-RAID Adaptec SCSI controller. We're trying to determine, before the purchase, whether or not we will need an addition SCSI RAID card to connect to the in-chassis hot-swap backplane, or just use vinum. Has anyone tried this? Did it "let the smoke out" of your hardware? Thanks, Seth +------------------------------------- | Seth Murray | The Communications Boardroom | smurray@comboard.com | http://www.comboard.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 17:51:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mass.dis.org (dhcp44-21.dis.org [216.240.44.21]) by hub.freebsd.org (Postfix) with ESMTP id B40FF37B401; Sat, 7 Jul 2001 17:51:07 -0700 (PDT) (envelope-from msmith@mass.dis.org) Received: from mass.dis.org (localhost [127.0.0.1]) by mass.dis.org (8.11.4/8.11.3) with ESMTP id f6812wN01028; Sat, 7 Jul 2001 18:02:59 -0700 (PDT) (envelope-from msmith@mass.dis.org) Message-Id: <200107080102.f6812wN01028@mass.dis.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Seth Murray Cc: freebsd-questions@freebsd.org, freebsd-hardware@freebsd.org Subject: Re: vinum and hot-swap SCSI RAID backplanes In-reply-to: Your message of "Sat, 07 Jul 2001 17:46:48 PDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 07 Jul 2001 18:02:58 -0700 From: Mike Smith Sender: owner-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 motherboard we're considering for our new server has a built-in, > non-RAID Adaptec SCSI controller. We're trying to determine, before the > purchase, whether or not we will need an addition SCSI RAID card to connect > to the in-chassis hot-swap backplane, or just use vinum. Vinum doesn't know anything about managed backplanes. If you want something like this, use a real RAID controller. Personally, I'd recommend 4.3-STABLE and a Mylex ACR170. -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] V I C T O R Y N O T V E N G E A N C E To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 18:26:15 2001 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 B8D8437B401 for ; Sat, 7 Jul 2001 18:26:11 -0700 (PDT) (envelope-from drosih@rpi.edu) 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 f681QAo34620; Sat, 7 Jul 2001 21:26:10 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <01070514552202.07682@Freebie.polyu.edu.hk> References: <01070514552202.07682@Freebie.polyu.edu.hk> Date: Sat, 7 Jul 2001 21:26:06 -0400 To: Kevin Lui , freebsd-questions@FreeBSD.ORG From: Garance A Drosihn Subject: Re: Fwd: Re: Printing problem- can't start lpd Cc: lflui@yahoo.com 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 2:49 PM +0800 7/5/01, Kevin Lui wrote: > I got a printing problem about the lpd, I just cannot start the lpd > with the following lines in the printcap file. > > lp|local line printer:\ > :sh:\ > :lp=/dev/lpt0:sd=/var/spool/output/lpd:mx#0:lf=/var/log/lpd-errs: > > ef404 | HP LJ:\ > :sh:\ > > :lp=:rm=158.132.148.254:sd=/var/spool/output/ef404:mx#0:lf=/var/log/lpd-errs: > > when I start lpd, I got the following error message. > chkprintcap: ef404 and lp share the same spool, /var/spool/output/lpd > lpd: 1 errors in printcap file, exiting Due to several details in the way lpd works, separate print queues MUST use separate directories for 'sd=' Must. Absolutely Must. > However when I comment out one of them say the "lp| local line printer" > part. I start lpd, no error message this time. But when I use lpq -q > to check the printing status, it says, > > ef404: > warning: no daemon present. > >However, I have check the directory /var/spool/output/ef404 do exist. I do not understand why you refer to the output from 'lpq -q'. The lpq command does not accept '-q' as a parameter. Is the above the output from 'lpq', or is it the output from 'lpc status'? In any case, 'no daemon present' is usually not as serious an issue as that message makes it sound. It just means that there is no unix process which is actively sending information from the print queue to the physical printer. If there are no jobs waiting to print, then there is no reason for there to be a process active on that queue. So, as long as there are no 'stuck jobs', then that message is mainly "just for your information", and is not really a warning. What version of lpd are you running? (or, what version of freebsd are you running?) I think newer versions change that message to just say "the printer is idle" when there are no jobs waiting to print. > Actucally, I tried to use different spool directory before, say, > I create a directory /var/spool/ef404 and set sd=/var/spool/ef404: > and change the owner of the directory to daemon.daemon and 770(chmod). > > and test it. But still cannot fix it! As far as "sd=" is concerned, I expect this was actually working even though there was the warning message there. Did you try to send jobs to each printer? It may be that you'll have some OTHER error which prevents the print queues from working, but I expect the settings for 'sd=' were correct, as long as each queue has a different spool directory, and the spool directories do exist. -- 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 Sat Jul 7 18:31:22 2001 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 B1E3537B405 for ; Sat, 7 Jul 2001 18:31:20 -0700 (PDT) (envelope-from drosih@rpi.edu) 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 f681VJo126272; Sat, 7 Jul 2001 21:31:19 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: References: Date: Sat, 7 Jul 2001 21:31:17 -0400 To: "Thierry Black" , freebsd-questions@FreeBSD.ORG From: Garance A Drosihn Subject: Re: printing to logs (logging to printer) 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:27 PM -0600 7/5/01, Thierry Black wrote: >I want to set up to send a copy of some sys logs to a printer >for security and archives. Can I use tee to branch the log >output to printer and file? I want the entrys to print one at >a time in realtime. If you mean "sys logs" as in SYSLOG messages, then you can configure syslog to send each line to multiple places. Read the man page on syslog. >for that I think a dotmatrix printer is the answer, but I >couldn't find any new dotmatrix printers for under $200. I also expect a dotmatrix printer is a reasonable device for this. So, either you pay the price of a dotmatrix printer, or you buy some other a device which is less ideal for this application, but which will cost less. Or you buy a used dotmatrix printer. -- 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 Sat Jul 7 18:42:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dell.nexicom.net (dell.nexicom.net [216.168.96.13]) by hub.freebsd.org (Postfix) with ESMTP id B162637B401 for ; Sat, 7 Jul 2001 18:42:38 -0700 (PDT) (envelope-from north1@nexicom.com) Received: (from root@localhost) by dell.nexicom.net (8.11.1/8.11.1) id f681cSi06419 for freebsd-questions@freebsd.org; Sat, 7 Jul 2001 21:38:28 -0400 Received: from mail.nexicom.net (mail.nexicom.net [216.168.96.10]) by dell.nexicom.net (8.11.3/8.11.1) with ESMTP id f681cQo06322 for ; Sat, 7 Jul 2001 21:38:26 -0400 Received: from north1i8zn1udc ([216.168.105.203]) by mail.nexicom.net (8.11.1/8.11.1) with SMTP id f681gTv27884 for ; Sat, 7 Jul 2001 21:42:30 -0400 (EDT) Message-ID: <001b01c10750$17729d50$0101a8c0@north1i8zn1udc> From: "Dave" To: Subject: fbsd 4.3 bug? Date: Sat, 7 Jul 2001 21:48:27 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Nexicom: scanned by Inflex 1.0.6 - (http://pldaniels.com/inflex/) Sender: owner-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 not sure if this is a bug in freebsd 4.3 stable but heres there problem. A user telnets or ssh into the system. userS execute their eggdrop bots to connect to an irc server. All bots die [21:10] [01:59] *** Quits: b0x (~UnfY@216.168.105.203) (Dead socket) [21:10] [01:59] *** Joins: b0x (~UnfY@216.168.105.203) [21:10] [02:00] *** walkers sets mode: +o b0x [21:10] [02:03] *** Quits: b0x (~UnfY@216.168.105.203) (Dead socket) [21:10] [02:03] *** Joins: b0x (~UnfY@216.168.105.203) [21:10] [02:04] *** biscuit_ sets mode: +o b0x [21:10] [02:06] *** Quits: b0x (~UnfY@216.168.105.203) (Dead socket) [21:10] [02:06] *** Joins: b0x (~UnfY@216.168.105.203) Dead socket?? Iv never seen this before... dosnt do this on the other machines tied into the lan here. strange.. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 18:46:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.usermail.com (www.usermail.com [208.239.240.90]) by hub.freebsd.org (Postfix) with ESMTP id D708437B403 for ; Sat, 7 Jul 2001 18:46:03 -0700 (PDT) (envelope-from kobes@usermail.com) Received: from terrapin (nic-41-c89-114.mn.mediaone.net [66.41.89.114]) by mail.usermail.com (8.9.3/8.9.3) with SMTP id UAA04055 for ; Sat, 7 Jul 2001 20:48:24 -0400 Message-ID: <001b01c10750$455d3900$0201a8c0@goldenrod.net> From: "Mark Kobussen" To: Subject: Cable Modem Problems - TCPDUMP Output Date: Sat, 7 Jul 2001 20:49:18 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0018_01C10726.4A5C5000" 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_0018_01C10726.4A5C5000 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable So, to continue my posts I started in "IPFW/NATD or Cable Modem = Trouble??", I have discovered some more information. I was finally able to watch (via tcpdump) as my cable modem/internet = stopped responding, and I am thoroughly perplexed. Is this a problem = with the cable modem, my (horrible) ISP, my (foolish) configuration, or = some other unspeakable occurence? Also, a whileback they came and installed an amplifier on the cable = line, in order to hopefully fix this problem. At that time, maximum = throughput increased substantially (and the TV reception got a hell of a = lot better), yet the internet continued to stop responding every 30-60 = minutes for about 5-10 minutes at a time. =20 This is the second router computer on this line, and both have = experienced the same problem. Oh, and one more quick note; the NIC's = are Linksys Ether16 ISA PNP. Any and all help is greatly appreciated. Some notes about the tcpdump info: The following are just 'variables', so to speak. myip =3D My IP Address, dynamically assigned from my ISP myISP =3D Common subnet for all addresses from my ISP mydomain =3D The LOCAL domain for my in-house LAN (for example, one of = the Windows machines is Terrapin.mydomain.net) Take note that I snipped out quite a bit of redundant stuff: //----- Internet working fine 11:32:51.556312 207.46.174.59.http > myip.1268: P 1774016:1774832(816) = ack 303 win 17218 (DF) 11:32:51.559398 myip.1268 > 207.46.174.59.http: . ack 1774016 win 17520 = (DF) 11:32:51.560044 207.46.174.59.http > myip.1268: . 1774832:1776292(1460) = ack 303 win 17218 (DF) 11:32:51.561452 8e:f6:18:70:8:0 5:6e:4d:ed:0:b0 4500 1512:=20 05dc 631f 4000 7106 87f7 cf2e ae3b 4229 5972 0050 04f4 a7e1 d573 2ef9 7525 5010 4342 d289 0000 dbaf df08 9141 8271 9829 0441 4825 4041 ea30 9aa4 66f5 8c91 1108 2e50 ff43 9ffa f9f9 6a9e 481a ff21 f9f5 4885 11:32:51.561832 truncated-ip - 4 bytes missing!207.46.174.59.http > = myip.1268: P 1777752:1778568(816) ack 303 win 17218 (DF) 11:32:51.562619 myip.1268 > 207.46.174.59.http: . ack 1776292 win 17520 = (DF) 11:32:51.563250 92:2f:34:ef:92:2f 34:ef:92:2f:34:ef 34ef 1503:=20 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f 34ef 922f //----- Internet no longer responding 11:32:52.931424 myip.1287 > rsdns01.mn.mediaone.net.domain: 1+ A? = www.isp.pl. (28) 11:32:54.430220 myip.1287 > rsdns01.mn.mediaone.net.domain: 1+ A? = www.isp.pl. (28) 11:32:55.430315 myip.1287 > rsdns02.mn.mediaone.net.domain: 1+ A? = www.isp.pl. (28) 11:32:55.971021 eb:d5:83:92:eb:d5 83:92:eb:d5:83:92 8392 854:=20 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 11:32:57.930965 myip.1287 > rsdns01.mn.mediaone.net.domain: 1+ A? = www.isp.pl. (28) 11:32:57.931128 myip.1287 > rsdns02.mn.mediaone.net.domain: 1+ A? = www.isp.pl. (28) 11:33:02.435500 myip.1287 > rsdns01.mn.mediaone.net.domain: 1+ A? = www.isp.pl. (28) 11:33:02.435662 myip.1287 > rsdns02.mn.mediaone.net.domain: 1+ A? = www.isp.pl. (28) 11:33:07.572644 eb:d5:83:92:eb:d5 83:92:eb:d5:83:92 8392 618:=20 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 8392 ebd5 11:33:10.938108 myip.1288 > rsdns01.mn.mediaone.net.domain: 2+ A? = www.isp.pl.mydomain.net. (42) 11:33:12.444736 myip.1288 > rsdns01.mn.mediaone.net.domain: 2+ A? = www.isp.pl.mydomain.net. (42) 11:33:12.444910 0:0:58:1:0:0 58:1:0:0:58:1 5801 307:=20 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 5801 0000 11:33:13.445287 myip.1288 > rsdns02.mn.mediaone.net.domain: 2+ A? = www.isp.pl.mydomain.net. (42) 11:33:15.949848 myip.1288 > rsdns01.mn.mediaone.net.domain: 2+ A? = www.isp.pl.mydomain.net. (42) 11:33:15.950012 myip.1288 > rsdns02.mn.mediaone.net.domain: 2+ A? = www.isp.pl.mydomain.net. (42) 11:33:20.450650 myip.1288 > rsdns01.mn.mediaone.net.domain: 2+ A? = www.isp.pl.mydomain.net. (42) 11:33:20.450822 myip.1288 > rsdns02.mn.mediaone.net.domain: 2+ A? = www.isp.pl.mydomain.net. (42) 11:33:31.234150 myip.netbios-ns > rsdns01.mn.mediaone.net.domain: 90+ = A? WWW.ISP.PL. (34) 11:33:32.730154 myip.netbios-ns > rsdns01.mn.mediaone.net.domain: 90+ = A? WWW.ISP.PL. (34) 11:33:34.230154 myip.netbios-ns > rsdns01.mn.mediaone.net.domain: 90+ = A? WWW.ISP.PL. (34) 11:33:35.730191 myip.netbios-ns > rsdns02.mn.mediaone.net.domain: 90+ = A? WWW.ISP.PL. (34) 11:33:37.230188 myip.netbios-ns > rsdns02.mn.mediaone.net.domain: 90+ = A? WWW.ISP.PL. (34) 11:33:38.730061 myip.netbios-ns > rsdns02.mn.mediaone.net.domain: 90+ = A? WWW.ISP.PL. (34) 11:33:40.230085 myip.netbios-ns > rsdns01.mn.mediaone.net.domain: 90+ = A? WWW.ISP.PL.mydomain.net. (48) 11:33:41.730095 myip.netbios-ns > rsdns01.mn.mediaone.net.domain: 90+ = A? WWW.ISP.PL.mydomain.net. (48) 11:33:43.230071 myip.netbios-ns > rsdns01.mn.mediaone.net.domain: 90+ = A? WWW.ISP.PL.mydomain.net. (48) 11:33:44.730118 myip.netbios-ns > rsdns02.mn.mediaone.net.domain: 90+ = A? WWW.ISP.PL.mydomain.net. (48) 11:33:46.230107 myip.netbios-ns > rsdns02.mn.mediaone.net.domain: 90+ = A? WWW.ISP.PL.mydomain.net. (48) 11:33:47.730133 myip.netbios-ns > rsdns02.mn.mediaone.net.domain: 90+ = A? WWW.ISP.PL.mydomain.net. (48) 11:35:42.962211 0:0:0:1:0:0 sap 76 > 0:6:81:83:0:1 sap 77 ui/R len=3D83 6973 7002 706c 0967 6f6c 6465 6e72 6f64 036e 6574 0000 0100 01c0 1700 0600 0100 0009 6b00 3103 6e73 3109 6879 7065 726d 6172 74c0 210a 686f 7374 6d61 7374 6572 c017 3b47 3ffa 0000 4000 0000 0800 00 11:37:07.146838 6b:28:88:41:16:c2 a1:b2:57:97:6c:78 2a00 19:=20 801e 3e00 00 11:37:53.632897 8:0:0:1:8:0 null > 0:1:8:0:0:1 sap 08 rr (r=3D0,C) = len=3D460 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 0001 0800 11:38:25.931489 4e:d5:0:ec:4e:d5 sap d4 > 0:ec:4e:d5:0:ec eia-rs511 I = (s=3D0,r=3D118,R) len=3D512 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5 11:38:28.387038 myip.1302 > rsdns01.mn.mediaone.net.domain: 6+ A? = home.netscape.com.mydomain.net. (49) 11:38:28.387208 myip.1302 > rsdns02.mn.mediaone.net.domain: 6+ A? = home.netscape.com.mydomain.net. (49) 11:38:52.167664 myip.1303 > rsdns01.mn.mediaone.net.domain: 11+ A? = www.isp.pl. (28) 11:38:53.672009 myip.1303 > rsdns01.mn.mediaone.net.domain: 11+ A? = www.isp.pl. (28) 11:38:54.676658 myip.1303 > rsdns02.mn.mediaone.net.domain: 11+ A? = www.isp.pl. (28) 11:38:56.026964 20:d5:f:0:20:d5 f:0:20:d5:f:0 0f00 1727:=20 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 0f00 20d5 11:40:06.664076 0:43:0:8:0:4 sap d4 > 2:10:c:d7:f9:9 sap 48 I = (s=3D1,r=3D4,R) len=3D52 0043 0043 0008 0004 0000 48d5 0224 1884 b9d1 c9bd cd01 4300 4300 0400 0400 0048 d502 100c d7f9 0900 1b01 0400 0400 0048 d502 100c 11:40:15.147541 myip.1306 > rsdns01.mn.mediaone.net.domain: 14+ A? = www.isp.pl.mydomain.net. (42) 11:40:16.646813 myip.1306 > rsdns01.mn.mediaone.net.domain: 14+ A? = www.isp.pl.mydomain.net. (42) 11:40:17.647000 myip.1306 > rsdns02.mn.mediaone.net.domain: 14+ A? = www.isp.pl.mydomain.net. (42) 11:40:20.147106 myip.1306 > rsdns01.mn.mediaone.net.domain: 14+ A? = www.isp.pl.mydomain.net. (42) 11:40:20.147272 myip.1306 > rsdns02.mn.mediaone.net.domain: 14+ A? = www.isp.pl.mydomain.net. (42) 11:40:20.164527 0:0:0:1:0:0 sap 76 > 0:e:81:83:0:1 sap 77 ui/R len=3D83 6973 7002 706c 0967 6f6c 6465 6e72 6f64 036e 6574 0000 0100 01c0 1700 0600 0100 0008 5600 3103 6e73 3109 6879 7065 726d 6172 74c0 210a 686f 7374 6d61 7374 6572 c017 3b47 3ffa 0000 4000 0000 0800 00 11:40:20.852720 74:6d:6f:73:74:6d 6f:73:74:6d:6f:73 6f73 226:=20 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 6f73 746d 11:41:52.219800 arp who-has myISP.100 tell myISP.1 11:41:54.256617 arp who-has myISP.100 tell myISP.1 11:41:54.767450 myip.1307 > rsdns01.mn.mediaone.net.domain: 15+ A? = www.isp.pl. (28) 11:41:54.767610 myip.1307 > rsdns02.mn.mediaone.net.domain: 15+ A? = www.isp.pl. (28) //----- Internet starts working again, without any outside intervention 11:41:54.778833 rsdns01.mn.mediaone.net.domain > myip.1307: 15 1/2/2 A = hart.isp.pl (111) (DF) ------=_NextPart_000_0018_01C10726.4A5C5000 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
So, to continue my posts I started in "IPFW/NATD or = Cable=20 Modem Trouble??", I have discovered some more information.
 
I was finally able to watch (via tcpdump) as my = cable=20 modem/internet stopped responding, and I am thoroughly perplexed.  = Is this=20 a problem with the cable modem, my (horrible) ISP, my (foolish) = configuration,=20 or some other unspeakable occurence?
 
Also, a whileback they came and installed an = amplifier on the=20 cable line, in order to hopefully fix this problem.  At that time, = maximum=20 throughput increased substantially (and the TV reception got a hell of a = lot=20 better), yet the internet continued to stop responding every 30-60 = minutes for=20 about 5-10 minutes at a time. 
 
This is the second router computer on this line, and = both have=20 experienced the same problem.  Oh, and one more quick note; the=20 NIC's are Linksys Ether16 ISA PNP.
 
Any and all help is greatly = appreciated.
 
Some notes about the tcpdump info:
 
The following are just 'variables', so to = speak.
 
myip =3D My IP Address, dynamically assigned from my = ISP
myISP =3D Common subnet for all addresses from my=20 ISP
mydomain =3D The LOCAL domain for my in-house LAN = (for example,=20 one of the Windows machines is Terrapin.mydomain.net)
 
Take note that I snipped out quite a bit of = redundant=20 stuff:
 
//----- Internet working fine
 
11:32:51.556312 207.46.174.59.http > myip.1268: P = 1774016:1774832(816) ack 303 win 17218 (DF)
11:32:51.559398 myip.1268 = >=20 207.46.174.59.http: . ack 1774016 win 17520 (DF)
11:32:51.560044=20 207.46.174.59.http > myip.1268: . 1774832:1776292(1460) ack 303 win = 17218=20 (DF)
11:32:51.561452 8e:f6:18:70:8:0 5:6e:4d:ed:0:b0 4500 1512:=20
           &nb= sp;           &nbs= p;=20 05dc 631f 4000 7106 87f7 cf2e ae3b=20 4229
           = ;            =  =20 5972 0050 04f4 a7e1 d573 2ef9 7525=20 5010
           = ;            =  =20 4342 d289 0000 dbaf df08 9141 8271=20 9829
           = ;            =  =20 0441 4825 4041 ea30 9aa4 66f5 8c91=20 1108
           = ;            =  =20 2e50 ff43 9ffa f9f9 6a9e 481a ff21=20 f9f5
           = ;            =  =20 4885
11:32:51.561832 truncated-ip - 4 bytes = missing!207.46.174.59.http >=20 myip.1268: P 1777752:1778568(816) ack 303 win 17218 = (DF)
11:32:51.562619=20 myip.1268 > 207.46.174.59.http: . ack 1776292 win 17520=20 (DF)
11:32:51.563250 92:2f:34:ef:92:2f 34:ef:92:2f:34:ef 34ef 1503:=20
           &nb= sp;           &nbs= p;=20 922f 34ef 922f 34ef 922f 34ef 922f=20 34ef
           = ;            =  =20 922f 34ef 922f 34ef 922f 34ef 922f=20 34ef
           = ;            =  =20 922f 34ef 922f 34ef 922f 34ef 922f=20 34ef
           = ;            =  =20 922f 34ef 922f 34ef 922f 34ef 922f=20 34ef
           = ;            =  =20 922f 34ef 922f 34ef 922f 34ef 922f=20 34ef
           = ;            =  =20 922f
 
 
//----- Internet no longer responding

11:32:52.931424 myip.1287 > = rsdns01.mn.mediaone.net.domain:  1+=20 A? www.isp.pl. (28)
11:32:54.430220 = myip.1287=20 > rsdns01.mn.mediaone.net.domain:  1+ A? www.isp.pl. (28)
11:32:55.430315 = myip.1287 >=20 rsdns02.mn.mediaone.net.domain:  1+ A? www.isp.pl. (28)
11:32:55.971021=20 eb:d5:83:92:eb:d5 83:92:eb:d5:83:92 8392 854:=20
           &nb= sp;           &nbs= p;=20 ebd5 8392 ebd5 8392 ebd5 8392 ebd5=20 8392
           = ;            =  =20 ebd5 8392 ebd5 8392 ebd5 8392 ebd5=20 8392
           = ;            =  =20 ebd5 8392 ebd5 8392 ebd5 8392 ebd5=20 8392
           = ;            =  =20 ebd5 8392 ebd5 8392 ebd5 8392 ebd5=20 8392
           = ;            =  =20 ebd5 8392 ebd5 8392 ebd5 8392 ebd5=20 8392
           = ;            =  =20 ebd5
11:32:57.930965 myip.1287 > = rsdns01.mn.mediaone.net.domain:  1+=20 A? www.isp.pl. (28)
11:32:57.931128 = myip.1287=20 > rsdns02.mn.mediaone.net.domain:  1+ A? www.isp.pl. (28)
11:33:02.435500 = myip.1287 >=20 rsdns01.mn.mediaone.net.domain:  1+ A? www.isp.pl. (28)
11:33:02.435662 = myip.1287 >=20 rsdns02.mn.mediaone.net.domain:  1+ A? www.isp.pl. (28)
11:33:07.572644=20 eb:d5:83:92:eb:d5 83:92:eb:d5:83:92 8392 618:=20
           &nb= sp;           &nbs= p;=20 ebd5 8392 ebd5 8392 ebd5 8392 ebd5=20 8392
           = ;            =  =20 ebd5 8392 ebd5 8392 ebd5 8392 ebd5=20 8392
           = ;            =  =20 ebd5 8392 ebd5 8392 ebd5 8392 ebd5=20 8392
           = ;            =  =20 ebd5 8392 ebd5 8392 ebd5 8392 ebd5=20 8392
           = ;            =  =20 ebd5 8392 ebd5 8392 ebd5 8392 ebd5=20 8392
           = ;            =  =20 ebd5
11:33:10.938108 myip.1288 > = rsdns01.mn.mediaone.net.domain:  2+=20 A? www.isp.pl.mydomain.net.=20 (42)
11:33:12.444736 myip.1288 > = rsdns01.mn.mediaone.net.domain:  2+=20 A? www.isp.pl.mydomain.net.=20 (42)
11:33:12.444910 0:0:58:1:0:0 58:1:0:0:58:1 5801 307:=20
           &nb= sp;           &nbs= p;=20 0000 5801 0000 5801 0000 5801 0000=20 5801
           = ;            =  =20 0000 5801 0000 5801 0000 5801 0000=20 5801
           = ;            =  =20 0000 5801 0000 5801 0000 5801 0000=20 5801
           = ;            =  =20 0000 5801 0000 5801 0000 5801 0000=20 5801
           = ;            =  =20 0000 5801 0000 5801 0000 5801 0000=20 5801
           = ;            =  =20 0000
11:33:13.445287 myip.1288 > = rsdns02.mn.mediaone.net.domain:  2+=20 A? www.isp.pl.mydomain.net.=20 (42)
11:33:15.949848 myip.1288 > = rsdns01.mn.mediaone.net.domain:  2+=20 A? www.isp.pl.mydomain.net.=20 (42)
11:33:15.950012 myip.1288 > = rsdns02.mn.mediaone.net.domain:  2+=20 A? www.isp.pl.mydomain.net.=20 (42)
11:33:20.450650 myip.1288 > = rsdns01.mn.mediaone.net.domain:  2+=20 A? www.isp.pl.mydomain.net.=20 (42)
11:33:20.450822 myip.1288 > = rsdns02.mn.mediaone.net.domain:  2+=20 A? www.isp.pl.mydomain.net.=20 (42)
11:33:31.234150 myip.netbios-ns >=20 rsdns01.mn.mediaone.net.domain:  90+ A? WWW.ISP.PL. (34)
11:33:32.730154 = myip.netbios-ns=20 > rsdns01.mn.mediaone.net.domain:  90+ A? WWW.ISP.PL. (34)
11:33:34.230154 = myip.netbios-ns=20 > rsdns01.mn.mediaone.net.domain:  90+ A? WWW.ISP.PL. (34)
11:33:35.730191 = myip.netbios-ns=20 > rsdns02.mn.mediaone.net.domain:  90+ A? WWW.ISP.PL. (34)
11:33:37.230188 = myip.netbios-ns=20 > rsdns02.mn.mediaone.net.domain:  90+ A? WWW.ISP.PL. (34)
11:33:38.730061 = myip.netbios-ns=20 > rsdns02.mn.mediaone.net.domain:  90+ A? WWW.ISP.PL. (34)
11:33:40.230085 = myip.netbios-ns=20 > rsdns01.mn.mediaone.net.domain:  90+ A? WWW.ISP.PL.mydomain.net.=20 (48)
11:33:41.730095 myip.netbios-ns >=20 rsdns01.mn.mediaone.net.domain:  90+ A? WWW.ISP.PL.mydomain.net.=20 (48)
11:33:43.230071 myip.netbios-ns >=20 rsdns01.mn.mediaone.net.domain:  90+ A? WWW.ISP.PL.mydomain.net.=20 (48)
11:33:44.730118 myip.netbios-ns >=20 rsdns02.mn.mediaone.net.domain:  90+ A? WWW.ISP.PL.mydomain.net.=20 (48)
11:33:46.230107 myip.netbios-ns >=20 rsdns02.mn.mediaone.net.domain:  90+ A? WWW.ISP.PL.mydomain.net.=20 (48)
11:33:47.730133 myip.netbios-ns >=20 rsdns02.mn.mediaone.net.domain:  90+ A? WWW.ISP.PL.mydomain.net.=20 (48)
11:35:42.962211 0:0:0:1:0:0 sap 76 > 0:6:81:83:0:1 sap 77 = ui/R=20 len=3D83
          &= nbsp;           &n= bsp; =20 6973 7002 706c 0967 6f6c 6465 6e72=20 6f64
           = ;            =  =20 036e 6574 0000 0100 01c0 1700 0600=20 0100
           = ;            =  =20 0009 6b00 3103 6e73 3109 6879 7065=20 726d
           = ;            =  =20 6172 74c0 210a 686f 7374 6d61 7374=20 6572
           = ;            =  =20 c017 3b47 3ffa 0000 4000 0000 0800 00
11:37:07.146838 = 6b:28:88:41:16:c2=20 a1:b2:57:97:6c:78 2a00 19:=20
           &nb= sp;           &nbs= p;=20 801e 3e00 00
11:37:53.632897 8:0:0:1:8:0 null > 0:1:8:0:0:1 sap 08 = rr=20 (r=3D0,C)=20 len=3D460
          =             &= nbsp; =20 0800 0001 0800 0001 0800 0001 0800=20 0001
           = ;            =  =20 0800 0001 0800 0001 0800 0001 0800=20 0001
           = ;            =  =20 0800 0001 0800 0001 0800 0001 0800=20 0001
           = ;            =  =20 0800 0001 0800 0001 0800 0001 0800=20 0001
           = ;            =  =20 0800 0001 0800 0001 0800 0001 0800
11:38:25.931489 4e:d5:0:ec:4e:d5 = sap d4=20 > 0:ec:4e:d5:0:ec eia-rs511 I (s=3D0,r=3D118,R)=20 len=3D512
          =             &= nbsp; =20 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5=20 00ec
           = ;            =  =20 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5=20 00ec
           = ;            =  =20 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5=20 00ec
           = ;            =  =20 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5=20 00ec
           = ;            =  =20 4ed5 00ec 4ed5 00ec 4ed5 00ec 4ed5
11:38:28.387038 myip.1302 >=20 rsdns01.mn.mediaone.net.domain:  6+ A? = home.netscape.com.mydomain.net.=20 (49)
11:38:28.387208 myip.1302 > = rsdns02.mn.mediaone.net.domain:  6+=20 A? home.netscape.com.mydomain.net. (49)
11:38:52.167664 myip.1303 = >=20 rsdns01.mn.mediaone.net.domain:  11+ A? www.isp.pl. (28)
11:38:53.672009 = myip.1303 >=20 rsdns01.mn.mediaone.net.domain:  11+ A? www.isp.pl. (28)
11:38:54.676658 = myip.1303 >=20 rsdns02.mn.mediaone.net.domain:  11+ A? www.isp.pl. (28)
11:38:56.026964 = 20:d5:f:0:20:d5=20 f:0:20:d5:f:0 0f00 1727:=20
           &nb= sp;           &nbs= p;=20 20d5 0f00 20d5 0f00 20d5 0f00 20d5=20 0f00
           = ;            =  =20 20d5 0f00 20d5 0f00 20d5 0f00 20d5=20 0f00
           = ;            =  =20 20d5 0f00 20d5 0f00 20d5 0f00 20d5=20 0f00
           = ;            =  =20 20d5 0f00 20d5 0f00 20d5 0f00 20d5=20 0f00
           = ;            =  =20 20d5 0f00 20d5 0f00 20d5 0f00 20d5=20 0f00
           = ;            =  =20 20d5
11:40:06.664076 0:43:0:8:0:4 sap d4 > 2:10:c:d7:f9:9 sap 48 I = (s=3D1,r=3D4,R)=20 len=3D52
          &= nbsp;           &n= bsp; =20 0043 0043 0008 0004 0000 48d5 0224=20 1884
           = ;            =  =20 b9d1 c9bd cd01 4300 4300 0400 0400=20 0048
           = ;            =  =20 d502 100c d7f9 0900 1b01 0400 0400=20 0048
           = ;            =  =20 d502 100c
11:40:15.147541 myip.1306 >=20 rsdns01.mn.mediaone.net.domain:  14+ A? www.isp.pl.mydomain.net.=20 (42)
11:40:16.646813 myip.1306 > = rsdns01.mn.mediaone.net.domain:  14+=20 A? www.isp.pl.mydomain.net.=20 (42)
11:40:17.647000 myip.1306 > = rsdns02.mn.mediaone.net.domain:  14+=20 A? www.isp.pl.mydomain.net.=20 (42)
11:40:20.147106 myip.1306 > = rsdns01.mn.mediaone.net.domain:  14+=20 A? www.isp.pl.mydomain.net.=20 (42)
11:40:20.147272 myip.1306 > = rsdns02.mn.mediaone.net.domain:  14+=20 A? www.isp.pl.mydomain.net.=20 (42)
11:40:20.164527 0:0:0:1:0:0 sap 76 > 0:e:81:83:0:1 sap 77 = ui/R=20 len=3D83
          &= nbsp;           &n= bsp; =20 6973 7002 706c 0967 6f6c 6465 6e72=20 6f64
           = ;            =  =20 036e 6574 0000 0100 01c0 1700 0600=20 0100
           = ;            =  =20 0008 5600 3103 6e73 3109 6879 7065=20 726d
           = ;            =  =20 6172 74c0 210a 686f 7374 6d61 7374=20 6572
           = ;            =  =20 c017 3b47 3ffa 0000 4000 0000 0800 00
11:40:20.852720 = 74:6d:6f:73:74:6d=20 6f:73:74:6d:6f:73 6f73 226:=20
           &nb= sp;           &nbs= p;=20 746d 6f73 746d 6f73 746d 6f73 746d=20 6f73
           = ;            =  =20 746d 6f73 746d 6f73 746d 6f73 746d=20 6f73
           = ;            =  =20 746d 6f73 746d 6f73 746d 6f73 746d=20 6f73
           = ;            =  =20 746d 6f73 746d 6f73 746d 6f73 746d=20 6f73
           = ;            =  =20 746d 6f73 746d 6f73 746d 6f73 746d=20 6f73
           = ;            =  =20 746d
11:41:52.219800 arp who-has myISP.100 tell = myISP.1
11:41:54.256617=20 arp who-has myISP.100 tell myISP.1
11:41:54.767450 myip.1307 >=20 rsdns01.mn.mediaone.net.domain:  15+ A? www.isp.pl. (28)
11:41:54.767610 = myip.1307 >=20 rsdns02.mn.mediaone.net.domain:  15+ A? www.isp.pl. (28)
 
//----- Internet starts working again, without any outside=20 intervention

11:41:54.778833 rsdns01.mn.mediaone.net.domain > = myip.1307:  15=20 1/2/2 A hart.isp.pl (111)=20 (DF)
------=_NextPart_000_0018_01C10726.4A5C5000-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 19: 8:56 2001 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 1A3A137B401 for ; Sat, 7 Jul 2001 19:08:54 -0700 (PDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.11.3/8.11.3) id f6828kn19548; Sat, 7 Jul 2001 21:08:46 -0500 (CDT) (envelope-from dan) Date: Sat, 7 Jul 2001 21:08:46 -0500 From: Dan Nelson To: Dave Cc: freebsd-questions@FreeBSD.ORG Subject: Re: fbsd 4.3 bug? Message-ID: <20010707210846.A19267@dan.emsphone.com> References: <001b01c10750$17729d50$0101a8c0@north1i8zn1udc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <001b01c10750$17729d50$0101a8c0@north1i8zn1udc> User-Agent: Mutt/1.3.19i X-OS: FreeBSD 5.0-CURRENT Sender: owner-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 (Jul 07), Dave said: > Im not sure if this is a bug in freebsd 4.3 stable but heres there > problem. > > A user telnets or ssh into the system. userS execute their eggdrop > bots to connect to an irc server. > > All bots die > > [21:10] [01:59] *** Quits: b0x (~UnfY@216.168.105.203) (Dead socket) > [21:10] [01:59] *** Joins: b0x (~UnfY@216.168.105.203) > [21:10] [02:00] *** walkers sets mode: +o b0x > [21:10] [02:03] *** Quits: b0x (~UnfY@216.168.105.203) (Dead socket) Eggdrop logs and relevent /var/log/messages logs please. All this says is eggdrop exited. Could be anything. -- Dan Nelson dnelson@emsphone.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 20:18:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from chmls20.mediaone.net (chmls20.mediaone.net [24.147.1.156]) by hub.freebsd.org (Postfix) with ESMTP id C9DBD37B401 for ; Sat, 7 Jul 2001 20:18:35 -0700 (PDT) (envelope-from leblanc@acadia.ne.mediaone.net) Received: from acadia.ne.mediaone.net (acadia.ne.mediaone.net [65.96.185.189]) by chmls20.mediaone.net (8.11.1/8.11.1) with ESMTP id f683IY625508 for ; Sat, 7 Jul 2001 23:18:34 -0400 (EDT) Received: (from leblanc@localhost) by acadia.ne.mediaone.net (8.9.3/8.9.3) id XAA22199; Sat, 7 Jul 2001 23:12:32 -0400 Date: Sat, 7 Jul 2001 23:12:31 -0400 From: Louis LeBlanc To: freebsd-questions@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: IPFW/NATD or Cable Modem Trouble?? Message-ID: <20010707231231.A22041@acadia.ne.mediaone.net> Reply-To: freebsd-questions@FreeBSD.ORG Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <001201c10662$6043c3e0$0201a8c0@goldenrod.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <001201c10662$6043c3e0$0201a8c0@goldenrod.net> User-Agent: Mutt/1.3.19i X-bright-idea: Lets abolish HTML mail! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG No where near being a FreeBSD or network guru, but it seems to me that if the gateway for your ed2 interface goes down, and you are trying to telnet to the IP (or a hostname associated with the IP) of the ed2 interface, it *will* route through the ed1 interface to ed2, but ed2 will have to be able to reach its gateway (the router that cannot be reached) in order to accept any connections. If you telnet to a hostname or the IP associated with ed1, it should be fine. Keep in mind, I am assuming you are connecting from within your network (ed1 side) to your 'gateway' (connecting your internal network to the cable modem), but actually telnetting to the gateway (ed2) interface. To my understanding, this is normal behavior. I have seen it before on various unices. I doubt NAT will change this behavior either. HTH Lou On 07/06/01 04:26 PM, Mark Kobussen sat at the `puter and typed: > > > natd_flags="-l -d -s -m -u -dynamic -ned2" > > > I added the flags you recommended above, and altogether, it seems to > work a > bit better. Unfortunately, the router still becomes unreachable every > few > minutes. > This leads me to another question -- why, if my configuration looks > fairly > decent, would not only the ed2 interface stop communicating with the > cable > modem, but ed1 ALSO stops responding to telnet and ssh sessions. > Also, I noticed some "ed2 NIC memory corrupt - invalid packet size" > messages > on the console last time I looked. It seems these JUST started > appearing > after I added various NATD flags. > > > > I also added the following to let DHCP through > > # Allow DHCP through > > ${fwcmd} add pass udp from any 68 to any 67 out via ${oif} > > ${fwcmd} add pass udp from any 67 to any 68 in via ${oif} > Added these two, seems to be working a-ok. > > And, do you have the following in /etc/dhclient.conf: > > > > interface "ed2" { > > send host-name ""; > > request subnet-mask, broadcast-address, routers,\ > > domain-name-servers, domain-name, time-servers; > > require domain-name-servers; > > } > > > I added the above to my dhclient.conf file, and DHCP stopped receiving > domain resolution information. I've left the dhclient.conf empty (as > it was > before), as it was not only working fine, but also providing all of > the > information you were requesting in your dhclient.conf. > Thanks for the suggestions, > Mark -- Louis LeBlanc Fully Funded Hobbyist, KeySlapper Extrordinaire :) leblanc@acadia.ne.mediaone.net http://acadia.ne.mediaone.net Ô¿Ô¬ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 20:22:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from yourwebsite.com (cd-179-62.ra30.dc.capu.net [64.50.179.62]) by hub.freebsd.org (Postfix) with SMTP id AAD1D37B401 for ; Sat, 7 Jul 2001 20:22:26 -0700 (PDT) (envelope-from lprice@capu.net) Reply-To: lprice@capu.net From: lprice@capu.net To: questions@FreeBSD.ORG Subject: Ride the Wave of Success!!/FREE MEMBERSHIP!!! Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Date: Sat, 7 Jul 2001 23:18:14 -0400 Message-Id: <20010708032226.AAD1D37B401@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 JOIN NOW FOR FREE!!! SERIOUS ONLINE INCOME: NO PRODUCTS TO SELL, NO MEETING TO ATTEND, NO MONTHLY QUOTAS We are a FOUR 4 YEAR OLD INTERNET BUSINESS AND GROWING VERY FAST. WE HAD OVER 60,000 VIPS SIGNUP COMPANY WIDE IN THE MONTH OF JUNE 2001. SEE WHY THOUSANDS OF PEOPLE FROM ALL OVER THE WORLD ARE JOINING US AT RECORD RATES.; THE MEMBERSHIP IS FREE at. http://onlineprofits.50megs.com. . Enter your first and last name and email address. Afterwards you will start recieving various emails about company and the business opportunity. Also, you will become a FREE MEMBER and you can START SHOPPING from at least 70 brand name online stores and BE ENTERED in our monthly $100 shopping spree!. Take your time and review our company's benefits and opportunities. . GUARANTEED minimum commission every month . you can get 200 members a month added to you downline . Free Software . and a strong team support Now remember anybody that signs up after you will be in your downline. This is very important if you want join our company and get a monthly check. Don't pass this one up. GET YOUR FREE MEMBERSHIP AT: http://onlineprofits.50megs.com --- type in your name and email address and hit the submit botton. We will talk soon, GIVIE IT A TRY, YOU HAVE NOTHING TO LOSE AND POSSIBLE A LOT TO GAIN. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 20:24: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay1.adelphia.net (smtprelay1.adelphia.net [64.8.25.6]) by hub.freebsd.org (Postfix) with ESMTP id E4D7437B401 for ; Sat, 7 Jul 2001 20:23:54 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay1.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GG4XDA01.IHC for ; Sat, 7 Jul 2001 23:22:22 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.3/8.11.3) id f683M7900513 for freebsd-questions@freebsd.org; Sat, 7 Jul 2001 23:22:07 -0400 (EDT) (envelope-from ipt) From: User Ipt Ian Patrick Thomas Message-Id: <200107080322.f683M7900513@scraemondaemon.my.domain> Subject: moving a hard drive (editing fstab) To: freebsd-questions@freebsd.org Date: Sat, 7 Jul 2001 23:22:07 -0400 (EDT) X-Mailer: ELM [version 2.4ME+ PL88 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit 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 move my current hard drive which is on a UDMA 33 controller to a UDMA 66 controller. My current drive looks like this. Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s1a 49583 30587 15030 67% / /dev/ad0s1e 496111 3119 453304 1% /var /dev/ad0s1f 2032623 1086643 783371 58% /usr /dev/ad0s1g 4065262 5587 3734455 0% /home /dev/ad0s1h 12494951 411007 11084348 4% /usr/local mfs:63 254063 44 233694 0% /tmp procfs 4 4 0 100% /proc dmesg shows this as far as info about my drive controllers goes atapci0: port 0xf000-0xf00f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 atapci1: port 0xd400-0xd4ff,0xd000-0xd003,0$ ata2: at 0xcc00 on atapci1 atapci2: port 0xe000-0xe0ff,0xdc00-0xdc03,0$ ata3: at 0xd800 on atapci2 When I had a previous drive that I had installed 3.x Stable on connected to the UDMA 66 controller I could mount each of the slices by doing this mount /dev/ad5[a-h] /mnt When I have just the drive I want to switch to the UDMA 66 controller connected and no other drives with the BIOS set to boot from this controller it shows up as ad4. I have tried editing fstab with each of the following /dev/ad4s1a / ufs rw 1 1 as well as /dev/ad4a / ufs rw 1 1 I have done a MAKEDEV ad4 and it has given me the following files grep: ad4a: Device not configured grep: ad4b: Device not configured grep: ad4c: Device not configured grep: ad4d: Device not configured grep: ad4e: Device not configured grep: ad4f: Device not configured grep: ad4g: Device not configured grep: ad4h: Device not configured grep: ad4s1: Device not configured grep: ad4s2: Device not configured grep: ad4s3: Device not configured grep: ad4s4: Device not configured This is using ls | grep ad4* for above about. ad0 shows up as this however Binary file ad0a matches Binary file ad0b matches Binary file ad0c matches Binary file ad0e matches Binary file ad0f matches Binary file ad0g matches Binary file ad0h matches Binary file ad0s1 matches Binary file ad0s1a matches Binary file ad0s1b matches Binary file ad0s1c matches Binary file ad0s1e matches Binary file ad0s1f matches Binary file ad0s1g matches Binary file ad0s1h matches My kernel has the following # 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 options ATA_STATIC_ID #Static device numbering I think I'm close to solving this problem but I have spent way to much time editing my /etc/fstab file with ed after making errors previous. Thanks in advance uname -r 4.3-RELEASE Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 21: 2:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web13904.mail.yahoo.com (web13904.mail.yahoo.com [216.136.175.67]) by hub.freebsd.org (Postfix) with SMTP id 0DF0337B405 for ; Sat, 7 Jul 2001 21:02:46 -0700 (PDT) (envelope-from dennywhite@yahoo.com) Message-ID: <20010708040245.68611.qmail@web13904.mail.yahoo.com> Received: from [161.26.20.8] by web13904.mail.yahoo.com via HTTP; Sat, 07 Jul 2001 21:02:45 PDT Date: Sat, 7 Jul 2001 21:02:45 -0700 (PDT) From: Dennis White Subject: Re: [freebsd-questions] DMESG error message on boot To: Lowell Gilbert Cc: questions@freebsd.org In-Reply-To: <44bsmzwgpb.fsf@lowellg.ne.mediaone.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 Went back into kernel config & took out isa entry for ed1 & entered info under pcmcia nic's for the linksys 10/100 lan card under ed0. Did the make depend, make & make install & everything seemed to go okay, but really won't know for sure til I get back home from offshore job, plug into my network & check everything out. Still, something must be better, since I'm no longer getting that error message. I think my ignorance of the right way to setup the card is what caused the problem. Just assumed, since I could communicate with other puters in my LAN & get on the Internet, that everything was setup right automatically on install. Have to get out of this windows mind (mindless) set. :-) Thanks for the tip & info. --- Lowell Gilbert wrote: > dennywhite@yahoo.com (Dennis White) writes: > > > Trying to find out what the following error message means > when > > I'm booting my laptop, running freebsd 4.3 > > > > Local package intialized :July 2 10:26:04 mobile2 /kernel: > ed1: > > DAD detected duplicate IPv6 address > > e08:000a::02e0:98ff:fe8a:a1fc: > > 1 NS, 0 NA Jul 2 10:26:04 mobile2 /kernel: ed1: DAD complete > for > > fe80:000a::02e0:98ff:fe8a: a1fc -duplicate found > > Jul 2 10:26:04 mobile2 /kernel: ed1: manual intervention > required > > > > Thanks for any help. Really just looking for a push in the > right > > direction as to what to read & where to find it. > > DAD is IPv6 "duplicate address detection". Looks like a > collision of > MAC addresses, so you may have a problem even if you disable > IPv6. In > theory, Ethernet addresses (which I suspect those are) are > supposed to > be unique, so my guess would be that you have two interfaces on > that > machine which are somehow hearing each other's packets. That's > just a > guess, though. ===== dennywhite@yahoo.com ICQ# 759271 =================================== Unix is like a wigwam -- no gates, no windows, and an apache inside. =================================== __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.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 Jul 7 21: 9: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from www.suntop-cn.com (www.suntop-cn.com [61.140.76.155]) by hub.freebsd.org (Postfix) with ESMTP id 7C21F37B403 for ; Sat, 7 Jul 2001 21:09:06 -0700 (PDT) (envelope-from slack@suntop-cn.com) Received: from win (61.144.GD.CN [61.144.142.134] (may be forged)) (authenticated) by www.suntop-cn.com (8.11.3/8.11.3) with ESMTP id f6848RC98075; Sun, 8 Jul 2001 12:08:28 +0800 (CST) (envelope-from slack@suntop-cn.com) Message-ID: <003b01c10763$a6223160$9201a8c0@home.net> From: "edwin chan" To: Cc: References: <005c01c106e0$6207bdc0$9201a8c0@home.net> <20010707120052.D408@blossom.cjclark.org> Subject: Re: how to restrict ftpd output per IP or per connection ? Date: Sun, 8 Jul 2001 12:08:28 +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.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 Crist J. Clark: thanks, It's useful. edwin chan ----- Original Message ----- From: Crist J. Clark To: edwin chan Cc: Sent: Sunday, July 08, 2001 3:00 AM Subject: Re: how to restrict ftpd output per IP or per connection ? > On Sat, Jul 07, 2001 at 08:28:52PM +0800, edwin chan wrote: > > Hi, everybody > > I have a ftp server, but have poorly bandwidth, so I want use my bandwidth > > under control, I searched many and can't find a way to solved the problem , > > any advice are welcome! > > man dummynet > -- > Crist J. Clark cjclark@alum.mit.edu > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 21:11:19 2001 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 0168637B401 for ; Sat, 7 Jul 2001 21:11:17 -0700 (PDT) (envelope-from 01031149@3web.net) Received: from 3web.net ([209.197.154.203]) by smtp2.cybersurf.net (Netscape Messaging Server 4.15) with SMTP id GG4ZMQ00.VP7 for ; Sat, 7 Jul 2001 22:11:14 -0600 Received: by 3web.net (EzMTS MTSAgent 1.22b Service) ; Sat, 07 Jul 01 22:10:58 -0600 for Received: from 3web.net (10.0.0.2) by 3web.net (EzMTS MTSSmtp 1.50 Service) ; Sat, 07 Jul 01 20:02:22 -0600 for Received: by mandy.rockingd.calgary.ab.ca (sSMTP sendmail emulation); Sat, 7 Jul 2001 20:01:57 +4200 Date: Sat, 7 Jul 2001 20:01:54 -0600 From: Duke Normandin <01031149@3web.net> To: Joe Clarke Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 4.3 iso installation image issues Message-ID: <20010707200154.B164579@mandy.rockingd.calgary.ab.ca> Mail-Followup-To: Joe Clarke , freebsd-questions@FreeBSD.ORG References: <20010707210116.56833.qmail@web9602.mail.yahoo.com> <20010707171116.H70351-100000@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010707171116.H70351-100000@shumai.marcuscom.com>; from "Joe Clarke" on Sat, Jul 07, 2001 at 05:13:00PM X-Envelope-Receiver: Sender: owner-freebsd-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, Jul 07, 2001 at 05:13:00PM -0400, Joe Clarke wrote: > I have done this numerous times in the past using Adaptec Easy CD Creator, > and it works like a champ. I just double-click on the ISO image. I think > the trick might be selecting the option to Close the Disc. I've burned > FreeBSD images on Windows NT, 95, 2000, and Mac OS 8. I never had to > select the format of the media. The ISO file contained all the necessary > info. > > Joe Clarke Sorry to butt in, but I have a related question. A friend sent me a CD he burnt for 4.2R - El Torrito bootable format. What is El Torrito format? As well, I'm running 3.3R at the moment on a 486-66 /850M HDD. I have a CD changer that is recognized by 3.3R. However when I load this 4.2R CD I can't seem to mount it to have a look. I don't think that my old system is capable of booting off a CDROM drive, so I was looking for some other way to perhaps use this 4.2R CD. Takes a while to molt out of this newbie skin of mine... ;) Thanks.... -- -duke Calgary, Alberta, Canada To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 21:15:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id D774A37B401 for ; Sat, 7 Jul 2001 21:15:43 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.3/8.11.3) with ESMTP id f684GZY72117; Sun, 8 Jul 2001 00:16:35 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Sun, 8 Jul 2001 00:16:35 -0400 (EDT) From: Joe Clarke To: Duke Normandin <01031149@3web.net> Cc: Subject: Re: 4.3 iso installation image issues In-Reply-To: <20010707200154.B164579@mandy.rockingd.calgary.ab.ca> Message-ID: <20010708001332.O72039-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 El Torrito, if memory serves me, is a chain of Mexican restaurants. The El Torrito boot extensions for CDs were thought up there (or just named after it). El Torrito isn't a CD format per se. They're extensions for making a ISO-9660 CD bootable. That said, you may have a problem booting off of CD on a 486. You should be able to mount the CD with a command like: mount -t cd9660 /dev/acd0c /cdrom Just replace acd0c with whatever your CD device is. If you have an entry in /etc/fstab, you could also just do "mount /cdrom" (or whatever your CD mountpoint is). After that, you could dd the floppy images to floppies, and boot that way. Joe Clarke On Sat, 7 Jul 2001, Duke Normandin wrote: > > On Sat, Jul 07, 2001 at 05:13:00PM -0400, Joe Clarke wrote: > > I have done this numerous times in the past using Adaptec Easy CD Creator, > > and it works like a champ. I just double-click on the ISO image. I think > > the trick might be selecting the option to Close the Disc. I've burned > > FreeBSD images on Windows NT, 95, 2000, and Mac OS 8. I never had to > > select the format of the media. The ISO file contained all the necessary > > info. > > > > Joe Clarke > > Sorry to butt in, but I have a related question. > > A friend sent me a CD he burnt for 4.2R - El Torrito bootable format. > What is El Torrito format? > > As well, I'm running 3.3R at the moment on a 486-66 /850M HDD. I have a > CD changer that is recognized by 3.3R. However when I load this 4.2R CD > I can't seem to mount it to have a look. I don't think that my old system > is capable of booting off a CDROM drive, so I was looking for some other > way to perhaps use this 4.2R CD. Takes a while to molt out of this newbie > skin of mine... ;) Thanks.... > -- > -duke > Calgary, Alberta, Canada > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 21:38:19 2001 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 9713937B406 for ; Sat, 7 Jul 2001 21:38:15 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 4EBBE6ACBC; Sun, 8 Jul 2001 14:08:13 +0930 (CST) Date: Sun, 8 Jul 2001 14:08:13 +0930 From: Greg Lehey To: Matt Rudderham Cc: freebsd-questions@freebsd.org Subject: Re: SMP Kernel Panic Message-ID: <20010708140813.R80862@wantadilla.lemis.com> References: <000201c106f1$d9b09d40$0208a8c0@munich.vnet.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000201c106f1$d9b09d40$0208a8c0@munich.vnet.org>; from matt@cape-breton-island.com on Sat, Jul 07, 2001 at 11:33:54AM -0300 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 [Format recovered--see http://www.lemis.com/email/email-format.html] Please don't wrap computer output. On Saturday, 7 July 2001 at 11:33:54 -0300, Matt Rudderham wrote: > Hi, > I have a SMP machine running FreeBSD 4.3-Release. It has had a kernel > panic every week or so for the last month. I've debugged it as much as I > could using the handbook info, and I believe it may be caused by the > syscall function or in my kernel: > > c01e8720 T Xint0x80_syscall > > The handbook has helped me get this far, but can someone let me know > what I can do with this now that I know what function is causing the > problem? Thanks. This tells you that you're tracing back through a system call. The offset you show below isn't related; it's a long way before the system call address. > Jul 7 00:33:07 cfxu /kernel: instruction pointer = 0x8:0xc01b6e8f > ^^^^^^^^^^ What you really need to do now is: 1. Build a kernel with debugging symbols. Only bde can analyse a dump without them. 2. Enable processor dumps. 3. Read the chapter in the handbook entitled "Kernel Debugging". When you've done that, come back and I can take another look at what's happening. In particular we need to know what the traceback looks like. Greg -- When replying to this message, please take care not to mutilate the original text. For more information, see http://www.lemis.com/email.html Finger grog@FreeBSD.org 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 Sat Jul 7 22:25:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp016.mail.yahoo.com (smtp016.mail.yahoo.com [216.136.174.113]) by hub.freebsd.org (Postfix) with SMTP id 255DB37B407 for ; Sat, 7 Jul 2001 22:25:55 -0700 (PDT) (envelope-from ijand2@yahoo.com) Received: from 216-53-133-75.ppp.mpinet.net (HELO dhcppc1) (216.53.133.75) by smtp.mail.vip.sc5.yahoo.com with SMTP; 8 Jul 2001 05:25:54 -0000 X-Apparently-From: Date: Sun, 8 Jul 2001 01:25:48 -0400 From: Jorge Ramirez Content-Type: text/plain; format=flowed; charset=us-ascii X-Mailer: Apple Mail (2.388) Cc: FreeBSD Questions To: FreeBSD Newbies Mime-Version: 1.0 (Apple Message framework v388) Content-Transfer-Encoding: 7bit Subject: DVD Player Message-Id: <20010708052555.255DB37B407@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 Does anyone know of some god dvd playing software for freebsd? _________________________________________________________ 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 Jul 7 23: 0:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.snet.net (smtp.snet.net [204.60.6.55]) by hub.freebsd.org (Postfix) with ESMTP id 36E5C37B403 for ; Sat, 7 Jul 2001 23:00:48 -0700 (PDT) (envelope-from j.carlson@snet.net) Received: from ENKIL (adsl-sh1-port51.snet.net [204.60.223.51]) by smtp.snet.net (8.11.1/8.11.1/SNET-mx-1.4/D-1.10/O-1.7) with SMTP id f6860cC25678 for ; Sun, 8 Jul 2001 02:00:38 -0400 (EDT) Message-ID: <005c01c10773$832618b0$020aa8c0@ENKIL> From: "Jae Carlson" To: "freebsd-questions" References: <20010708052555.255DB37B407@hub.freebsd.org> Subject: Re: DVD Player Date: Sun, 8 Jul 2001 02:02:00 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2505.0000 Disposition-Notification-To: "Jae Carlson" X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2505.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 Pray to God? Just me being silly. Jae p.s. being silly is a good thing. (tm) ----- Original Message ----- From: "Jorge Ramirez" To: "FreeBSD Newbies" Cc: "FreeBSD Questions" Sent: Sunday, July 08, 2001 1:25 AM Subject: DVD Player > Does anyone know of some god dvd playing software for freebsd? > > _________________________________________________________ > 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 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 7 23: 2:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from drake.host4u.net (drake.host4u.net [216.71.64.123]) by hub.freebsd.org (Postfix) with ESMTP id D63DA37B403; Sat, 7 Jul 2001 23:02:14 -0700 (PDT) (envelope-from freebsddiary@drake.host4u.net) Received: (from freebsddiary@localhost) by drake.host4u.net (8.9.3/8.9.3) id BAA19574; Sun, 8 Jul 2001 01:07:01 -0500 Date: Sun, 8 Jul 2001 01:07:01 -0500 Message-Id: <200107080607.BAA19574@drake.host4u.net> From: Dan Langille To: freebsd-newbies@freebsd.org, freebsd-questions@freebsd.org Subject: The FreeBSD Diary: 2001-06-17 - 2001-07-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 The FreeBSD Diary contains a large number of practical examples and how-to guides. This message is posted weekly to freebsd-newbies and freebsd-questions 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: 30-Jun : The Diary gets ready for colocation Moving from a webfarm to a dedicated webserver http://freebsddiary.org/colocation.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