From owner-freebsd-questions Sun Jul 15 1:51:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.XtremeDev.com (xtremedev.com [216.241.38.65]) by hub.freebsd.org (Postfix) with ESMTP id 212FB37B409 for ; Sun, 15 Jul 2001 01:51:54 -0700 (PDT) (envelope-from freebsd@XtremeDev.com) Received: from xtremedev.com (xtremedev.com [216.241.38.65]) by mail.XtremeDev.com (Postfix) with ESMTP id C1B0E13623 for ; Sun, 15 Jul 2001 02:51:42 -0600 (MDT) Date: Sun, 15 Jul 2001 02:51:42 -0600 (MDT) From: FreeBSD To: Subject: pppd and remote Windows dialup clients Message-ID: <20010715024310.P1685-100000@Amber.XtremeDev.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Setting up a pppd dialin server for remote windows clients. When they dial in, they're assigned the 10.0.0.10 ip address. My local lan runs on the 10.0.0.x address space behind a FreeBSD ipnat/ipf. The Windows machines connect and login fine, but their gateway info is setup wrong, here's the output from ipconfig /all (Windows 2000 machine dialing in): PPP adapter Connection to TestServer: Connection-specific DNS Suffix . : Description . . . . . . . . . . . : WAN (PPP/SLIP) Interface Physical Address. . . . . . . . . : 00-53-45-00-00-00 DHCP Enabled. . . . . . . . . . . : No IP Address. . . . . . . . . . . . : 10.0.0.10 Subnet Mask . . . . . . . . . . . : 255.255.255.255 Default Gateway . . . . . . . . . : 10.0.0.10 DNS Servers . . . . . . . . . . . : 10.0.0.1 10.0.0.3 NetBIOS over Tcpip. . . . . . . . : Disabled The Windows machine can't ping anyone on the lan, nor can it reach out to the internet. I'm using pppd which auths the dialups, using the following /etc/ppp/options file: -detach auth asyncmap 0 modem crtscts lock refuse-chap require-pap proxyarp debug kdebug 1 mru 576 mtu 576 bsdcomp 15,15 deflate 15,15 vj-max-slots 16 10.0.0.1:10.0.0.10 ms-dns 10.0.0.1 ms-dns 10.0.0.3 netmask 255.255.255.0 Is it the default gateway that's the problem? Shouldn't it be 10.0.0.1 (my FreeBSD ipnat gateway machine to the internet)? If so, how do I get pppd to send that info out to the Windows machines dialing in? Or is this something pppd can't do and I would have to use ppp for? 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 Sun Jul 15 2:20:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hp06.postech.ac.kr (smtp.postech.ac.kr [141.223.2.1]) by hub.freebsd.org (Postfix) with ESMTP id 9AA1E37B406 for ; Sun, 15 Jul 2001 02:20:35 -0700 (PDT) (envelope-from lahaye@users.sourceforge.net) Received: from users.sourceforge.net (surfion4.postech.ac.kr [141.223.126.84]) by hp06.postech.ac.kr (8.9.3/8.9.3) with ESMTP id SAA23185 for ; Sun, 15 Jul 2001 18:21:23 +0900 (JST) Message-ID: <3B5160B1.70EBC918@users.sourceforge.net> Date: Sun, 15 Jul 2001 18:21:53 +0900 From: "R. Lahaye" Organization: Postech 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: Problems with portcheckout upgrade my port. Content-Type: text/plain; charset=x-user-defined 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, First of all: I'm very new to FreeBSD. I want to update two of my ports on my 4.3 FreeBSD PC. What needs to be done for upgrading the port on my PC. I tried: # setenv CVSROOT :pserver:anoncvs@anoncvs.FreeBSD.org:/home/ncvs # cd / # portcheckout gtkextra-0.99.15 #!/bin/sh # # This is an executable shell script created by the # portcheckout program: # # /usr/local/bin/portcheckout gtkextra-0.99.15 cd / || exit 1 PORTSDIR="//ports"; export PORTSDIR # checkout FreeBSD ports system Makefiles cvs checkout -P ports/Mk ################################################## # checkout port: gtkextra-0.99.15 cvs checkout -P ports/x11-toolkits/gtkextra # gtkextra-0.99.15 depend on port: XFree86-3.3.6_9 cvs checkout -P ports/x11/XFree86 # gtkextra-0.99.15 depend on port: gettext-0.10.35 cvs checkout -P ports/devel/gettext # gtkextra-0.99.15 depend on port: glib-1.2.10_3 cvs checkout -P ports/devel/glib12 # gtkextra-0.99.15 depend on port: gmake-3.79.1 cvs checkout -P ports/devel/gmake # gtkextra-0.99.15 depend on port: gtk-1.2.10_2 cvs checkout -P ports/x11-toolkits/gtk12 # gtkextra-0.99.15 depend on port: libtool-1.3.4_2 cvs checkout -P ports/devel/libtool ################################################## # Compile and install gtkextra-0.99.15 ( cd ports/x11-toolkits/gtkextra && make all install clean ) --------------------- This 'looks' okay to me, but unfortunately nothing has changed in the ports/x11-toolkits/gtkextra. (It's still the old version!). Have I overlooked an essential step in the upgrading process? Thanks, Rob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 3:36:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from consult-meyers.consult-meyers.com (dialup-59-55.dplanet.ch [212.35.59.55]) by hub.freebsd.org (Postfix) with ESMTP id D5F2437B403 for ; Sun, 15 Jul 2001 03:36:24 -0700 (PDT) (envelope-from a.l.meyers@consult-meyers.com) Received: from localhost (localhost [127.0.0.1]) by consult-meyers.consult-meyers.com (8.11.4/8.11.4) with ESMTP id f6FAj4J00382 for ; Sun, 15 Jul 2001 12:45:11 +0200 (CEST) (envelope-from a.l.meyers@consult-meyers.com) Date: Sun, 15 Jul 2001 12:45:03 +0200 (CEST) From: "A. L. Meyers" To: Subject: fbsd->linux->vmware->windoze,windoze slice,wine? Message-ID: <20010715124023.T377-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! Obligated to run windoze apps, e. g. accounting app. Options are: 1. windoze slice, use FBSD boot manager 2. windoze as guest OS under vmware under linux under fbsd 3. wine (still alpha, usable in a production environment?) Accessing printer on /dev/lp0 from windoze app is a must. Would do you suggest, without any guarantees whatever :-) ? Cheers! 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 15 3:52:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from msg.ds.neowiz.com (msg.neowiz.com [211.48.23.252]) by hub.freebsd.org (Postfix) with ESMTP id 828D237B409; Sun, 15 Jul 2001 03:52:11 -0700 (PDT) (envelope-from talley@neowiz.com) Received: by MSG with Internet Mail Service (5.5.2653.19) id <37HQS6ZZ>; Sun, 15 Jul 2001 19:48:40 +0900 Message-ID: From: =?euc-kr?B?seggwLHBpA==?= To: "'freebsd-ports@FreeBSD.org'" Cc: "'freebsd-questions@freebsd.org'" Subject: imake error Date: Sun, 15 Jul 2001 19:48:39 +0900 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C10D1B.B4CAEB40" Sender: owner-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_01C10D1B.B4CAEB40 Content-Type: text/plain; charset="KS_C_5601-1987" Hello,, when i try to install my own port i got this error message.. =============================================================== aurora3# make install ===> Configuring for mypkg-1.1 imake -DUseInstalled -I/usr/X11R6/lib/X11/config imake: No such file or directory imake: No description file. Stop. *** Error code 1 Stop in /usr/ports/mypkg. *** Error code 1 Stop in /usr/ports/mypkg. *** Error code 1 Stop in /usr/ports/mypkg. *** Error code 1 Stop in /usr/ports/mypkg. *** Error code 1 Stop in /usr/ports/mypkg. ================================================================ Does any one have any idea of this message? Thanks. ------_=_NextPart_001_01C10D1B.B4CAEB40 Content-Type: text/html; charset="KS_C_5601-1987" Content-Transfer-Encoding: quoted-printable
Hello,,
 
when i try to = install my own port=20 i got this error=20 message..
 
=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=3D=3D=3D=3D=3D=3D=
 
aurora3# make=20 install
=3D=3D=3D>  Configuring for mypkg-1.1
imake = -DUseInstalled=20 -I/usr/X11R6/lib/X11/config
imake: No such file or = directory
imake: No=20 description file.
  Stop.
*** Error code 1
 
Stop in = /usr/ports/mypkg.
*** Error code=20 1
 
Stop in = /usr/ports/mypkg.
*** Error code=20 1
 
Stop in = /usr/ports/mypkg.
*** Error code=20 1
 
Stop in = /usr/ports/mypkg.
*** Error code=20 1
 
Stop in = /usr/ports/mypkg.
 
=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=3D=3D=3D=3D=3D=3D= =3D
 
Does any one have any=20 idea of this message?
 
Thanks.
 
 
 

 
------_=_NextPart_001_01C10D1B.B4CAEB40-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 4:45:58 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 A073137B401 for ; Sun, 15 Jul 2001 04:45:53 -0700 (PDT) (envelope-from xeon@gmx.ch) Received: (qmail 6797 invoked by uid 0); 15 Jul 2001 11:45:52 -0000 Received: from bw1-158pub75.bluewin.ch (HELO eraser) (195.186.158.75) by mail.gmx.net (mail10) with SMTP; 15 Jul 2001 11:45:52 -0000 From: "Xeon" To: "Freebsd-Questions" Subject: problem with Squid Date: Sun, 15 Jul 2001 13:46:27 +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 everybody I've got a problem with squid 2.4. I run it under (or at least I try to) 4.3BSD. I receive all the time "squid Parent:child process x exited due to signal 6" when I send a request. I've absolutly no idea what I've done wrong, the only thing I changed in the configuration file is the cache directory and after receiving an "access denied" message from squid I changed http_access to allow all. thanks for your help! chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 4:48:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hermes.epita.fr (hermes.epita.fr [163.5.255.10]) by hub.freebsd.org (Postfix) with ESMTP id 81FE637B407 for ; Sun, 15 Jul 2001 04:48:17 -0700 (PDT) (envelope-from couill_j@epita.fr) Received: from usul (IDENT:couill_j@usul.epita.fr [10.42.19.39]) by hermes.epita.fr id NAA26728 for EPITA Paris France Sun, 15 Jul 2001 13:46:36 GMT Date: Sun, 15 Jul 2001 13:46:31 +0000 (GMT) From: Jean Couillaud X-Sender: couill_j@usul To: questions@freebsd.org Subject: linux libc.so.5 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello .. I ve already posted this, but I m redoing it cause I ve learned something since that coul help people than could want to help me .. Here is the problem : /usr/libexec/ld-elf.so.1: Shared object "libc.so.5" not found Obviously I have no libc.so.5 (dont laugh, I ve done a find / -name ..) But .. I ve installed the linux-base port (/usr/ports/emulators/linux-base) So what's wrong ? How can I get this lib back home ? ;) Thx in advance, Best regards From Jean Couillaud (aka Carmody) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 5: 2:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from zigman.2y.net (korpen-86-195.ip-pluggen.com [212.181.86.195]) by hub.freebsd.org (Postfix) with ESMTP id 726C137B403 for ; Sun, 15 Jul 2001 05:02:24 -0700 (PDT) (envelope-from mr@zigman.2y.net) Received: by zigman.2y.net (Postfix, from userid 1001) id 3A6631E87; Sun, 15 Jul 2001 14:02:01 +0200 (CEST) Date: Sun, 15 Jul 2001 14:02:00 +0200 From: Morsal Roudbay To: Giorgos Keramidas Cc: freebsd-questions@FreeBSD.ORG Subject: Re: spammers Message-ID: <20010715140200.A17257@zigman.2y.net> Reply-To: Morsal Roudbay References: <20010711092834.D46591@zigman.2y.net> <86lmlv4fd8.fsf@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: <86lmlv4fd8.fsf@hades.hell.gr>; from keramida@ceid.upatras.gr on Wed, Jul 11, 2001 at 07:09:23PM +0300 X-Operating-System: FreeBSD 4.3 [up 2 days, 26 mins, 1 user, load averages: 2.15, 2.19, 2.11] X-Return-Path: morsal@swipnet.se Sender: owner-freebsd-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 11, 2001 at 07:09:23PM +0300, Giorgos Keramidas wrote: > Morsal Roudbay writes: > > > That's what I have been doing Stephaine, but I'd like the list admins to do > > it too so I wont have to get this much spam. Other list admins ban spammers > > instantly... > > Well, apart from making the lists closed, and allow posts only from subscribed > addresses, there is not much one can do. However, these lists are open, and > for a good reason too. > > The procmail solution (or, since FreeBSD.org used Postfix, a table-driven > block policy) might prove too much work for the postmaster. This is probably > going to be a full-time job, if the postmaster chooses to do something like > that. He has other things to do in his every day life except for editing > Postfix configuration files and lookup tables. > > Using RBL or some other filtering method, that moves the burden of maintaining > the list of blocked addresses off the back of the postmaster is also not the > perfect solution. Still, users that have done nothing wrong can be blocked... > > This is more hairy than it seems :/ > > -giorgos Hmm, I really wish someone could ban all those damned spammers. :( To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 5:10:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta2-rme.xtra.co.nz (mta2-rme.xtra.co.nz [203.96.92.3]) by hub.freebsd.org (Postfix) with ESMTP id AF8B937B401 for ; Sun, 15 Jul 2001 05:10:20 -0700 (PDT) (envelope-from webmaster@open2view.com) Received: from sparlak ([210.54.112.145]) by mta2-rme.xtra.co.nz with ESMTP id <20010715121019.BWSL4991820.mta2-rme.xtra.co.nz@sparlak> for ; Mon, 16 Jul 2001 00:10:19 +1200 Message-ID: <002101c10d27$d69b1d60$0300a8c0@sparlak> From: "Philip Murray" To: Subject: Many directories or many files? Date: Mon, 16 Jul 2001 00:15:29 +1200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I have a large library of photos (>100,000, Real Estate) and at the moment I'm storing them in a big dump split up by a few directories. I'm getting to the point where I have ~8000 files per directory. I was wondering whether I should write some kind of hashing function and have lots and lots of directories, or whether it's best to have more files per directory? Also, if anyone knows of a Free image/media storage system that I can use, that would be wonderful. I also looked into storing them in a mysql database, but I'm pretty sure it couldn't handle it. Cheers -------------------------------- - -- - - - Philip Murray - webmaster@open2view.com http://www.open2view.com - Open2View.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 15 5:27: 1 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 DFD6637B406 for ; Sun, 15 Jul 2001 05:26:42 -0700 (PDT) (envelope-from AVWallpapers@gmx.net) Received: (qmail 30481 invoked by uid 0); 15 Jul 2001 12:26:39 -0000 Received: from pd9013528.dip.t-dialin.net (HELO mangler2001) (217.1.53.40) by mail.gmx.net (mp007-rz3) with SMTP; 15 Jul 2001 12:26:39 -0000 Message-ID: <000f01c10d29$51251710$283501d9@mangler2001> From: "AVW Productions" To: Subject: Frame Buffer Device under FreeBSD ??? Date: Sun, 15 Jul 2001 14:18:07 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C10D38.F8270140" 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_0005_01C10D38.F8270140 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, I'm using your FreeBSD4.3 for some time now and i love it. I also wanted to run XFree86 now...Unfortunately i have problems with my = graphic card SiS630. I can run KDE but the desktop is not in the middle of the screen but = half cut away : ( I already tried hundreds of XF86Configs and installed the newest drivers = for my card but it didnt help. I read some articles about my graphic card and XFree86 and found out = that the only way to run=20 XF86 decent is to use a frame buffer device like VESA. Does freebsd 4.3 support this frame buffer device ? If yes how can i install it ? In order to configure this frame buffer device i also read that the = following chnages must be made to lilo.config. i read this on a linux help page: ------------------ The display is driven by a SiS630 graphics controller.=20 There is an X-server which should work with that chip (XF86_SVGA). = However, all trials with different modelines weren=B4t successful. So I = fear that an accelerated driver is not applicable and one must use the = framebuffer device. There is a kernel framebuffer module (sisfb) which should drive the = SiS630 but is an experimental state. On my machine, it definetely does = not work. The computer hangs in any way I tried this driver. Instead, I = use the VESA framebuffer, vesafb. This driver must be compiled into the = kernel (which is true for the SuSE standard kernels). When compiling the = kernel by yourself, you must enable "prompt for development and/or = incomplete code/drivers" under "code maturity level options". The = framebuffer devices can then be found under "console drivers". In /etc/lilo.conf you must enable an appropriate VGA mode. In this case = it is 1024x768 with a color depth of 64k. So the correct line in = lilo.conf is vga=3D0x317 Now, use sax with the framebuffer X-server:=20 sax -s XF86_FBDev and set all parameters needed by X. Especially in the card-section you = have to choose the framebuffer driver. The /etc/XF86Config on my site = may give you a hint how the result can look like. The version number of = the installed X window system is XFree86 4.0.2 ------------------------ is there any chnace to make these chnages to freebsd too to get the = frame buffer device working ? I really hope you can help me because KDE looks very nice and = comfortable and i would like to use it. Best regards Andreas ------=_NextPart_000_0005_01C10D38.F8270140 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi,
 
 
I'm using your FreeBSD4.3 for some time = now and i=20 love it.
 
I also wanted to run XFree86 = now...Unfortunately i=20 have problems with my graphic card SiS630.
I can run KDE but the desktop is not in = the middle=20 of the screen but half cut away : (
 
I already tried hundreds of XF86Configs = and=20 installed the newest drivers for my card but it didnt help.
 
I read some articles about my = graphic card and=20 XFree86 and found out that the only way to run
XF86 decent is to use a frame buffer = device like=20 VESA.
 
Does freebsd 4.3 support this frame = buffer device=20 ?
 
If yes how can i install it = ?
 
In order to configure this frame buffer = device i=20 also read that the following chnages must be made to = lilo.config.
i read this on a linux help = page:
------------------

The display is driven by a SiS630 graphics controller.

There is an X-server which should work with that chip (XF86_SVGA). = However,=20 all trials with different modelines weren=B4t successful. So I fear that = an=20 accelerated driver is not applicable and one must use the framebuffer=20 device.

There is a kernel framebuffer module (sisfb) which should drive the = SiS630=20 but is an experimental state. On my machine, it definetely does not = work. The=20 computer hangs in any way I tried this driver. Instead, I use the VESA=20 framebuffer, vesafb. This driver must be compiled into the kernel (which = is true=20 for the SuSE standard kernels). When compiling the kernel by yourself, = you must=20 enable =84prompt for development and/or incomplete code/drivers=93 under = =84code=20 maturity level options=93. The framebuffer devices can then be found = under=20 =84console drivers=93.

In /etc/lilo.conf you must enable an appropriate VGA mode. In this = case it is=20 1024x768 with a color depth of 64k. So the correct line in lilo.conf = is

vga=3D0x317

Now, use sax with the framebuffer X-server:

sax -s XF86_FBDev

and set all parameters needed by X. Especially in the card-section = you have=20 to choose the framebuffer driver. The /etc/XF86Config= on=20 my site may give you a hint how the result can look like. The version = number of=20 the installed X window system is XFree86 4.0.2

------------------------
 
 
is there any chnace to make these = chnages to=20 freebsd too to get the frame buffer device working ?
 
 
I really hope you can help me because KDE looks very nice and = comfortable=20 and i would like to use it.
 

Best regards Andreas
------=_NextPart_000_0005_01C10D38.F8270140-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 5:57:14 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 8F08637B401 for ; Sun, 15 Jul 2001 05:57:10 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.209] (helo=mrvdom02.kundenserver.de) by moutvdom00.kundenserver.de with esmtp (Exim 2.12 #2) id 15LlSO-0007za-00; Sun, 15 Jul 2001 14:57:08 +0200 Received: from pd9017217.dip.t-dialin.net ([217.1.114.23]) by mrvdom02.kundenserver.de with esmtp (Exim 2.12 #2) id 15LlSO-0001s0-00; Sun, 15 Jul 2001 14:57:08 +0200 Date: Sun, 15 Jul 2001 14:58:25 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: "A. L. Meyers" Cc: Subject: Re: fbsd->linux->vmware->windoze,windoze slice,wine? In-Reply-To: <20010715124023.T377-100000@consult-meyers.com> Message-ID: <20010715145732.E68621-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 Sun, 15 Jul 2001, A. L. Meyers wrote: > Date: Sun, 15 Jul 2001 12:45:03 +0200 (CEST) > From: A. L. Meyers > To: freebsd-questions@FreeBSD.ORG > Subject: fbsd->linux->vmware->windoze,windoze slice,wine? > > Hi! > > Obligated to run windoze apps, e. g. accounting app. Options are: > > 1. windoze slice, use FBSD boot manager > > 2. windoze as guest OS under vmware under linux under fbsd > > 3. wine (still alpha, usable in a production environment?) Do 1. and try 2. & 3. when you have got the time. Uli. > > Accessing printer on /dev/lp0 from windoze app is a must. > > Would do you suggest, without any guarantees whatever :-) ? > > Cheers! > > Lucien > > > > 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 15 6:22:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from consult-meyers.consult-meyers.com (dialup-63-134.dplanet.ch [212.35.63.134]) by hub.freebsd.org (Postfix) with ESMTP id A329037B405 for ; Sun, 15 Jul 2001 06:22:06 -0700 (PDT) (envelope-from a.l.meyers@consult-meyers.com) Received: from localhost (localhost [127.0.0.1]) by consult-meyers.consult-meyers.com (8.11.4/8.11.4) with ESMTP id f6FDUio00421; Sun, 15 Jul 2001 15:30:52 +0200 (CEST) (envelope-from a.l.meyers@consult-meyers.com) Date: Sun, 15 Jul 2001 15:30:43 +0200 (CEST) From: "A. L. Meyers" To: "P. U. (Uli) Kruppa" Cc: Subject: Re: fbsd->linux->vmware->windoze,windoze slice,wine? In-Reply-To: <20010715145732.E68621-100000@localhost.de> Message-ID: <20010715152625.L387-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, 15 Jul 2001, P. U. (Uli) Kruppa wrote: > On Sun, 15 Jul 2001, A. L. Meyers wrote: > > > Date: Sun, 15 Jul 2001 12:45:03 +0200 (CEST) > > From: A. L. Meyers > > To: freebsd-questions@FreeBSD.ORG > > Subject: fbsd->linux->vmware->windoze,windoze slice,wine? > > > > Hi! > > > > Obligated to run windoze apps, e. g. accounting app. Options are: > > > > 1. windoze slice, use FBSD boot manager > > > > 2. windoze as guest OS under vmware under linux under fbsd > > > > 3. wine (still alpha, usable in a production environment?) > Do 1. and try 2. & 3. when you have got the time. > > Uli. > > > > > Accessing printer on /dev/lp0 from windoze app is a must. > > > > Would do you suggest, without any guarantees whatever :-) ? > > > > Cheers! > > > > Lucien Uli, Thanks for the quick reply. Taking your advice leads to these questions: 1) Which FS to choose for the Windoze 98 slice if one wants to be able to mount it under FBSD to enable read and write data transfer between windoze and fbsd? 2) Depending on 1), what options should one include in the kernel? Cheers! 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 15 6:30:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web20103.mail.yahoo.com (web20103.mail.yahoo.com [216.136.226.40]) by hub.freebsd.org (Postfix) with SMTP id 8C9E837B405 for ; Sun, 15 Jul 2001 06:30:44 -0700 (PDT) (envelope-from marksmithurbana@yahoo.com) Message-ID: <20010715133044.72018.qmail@web20103.mail.yahoo.com> Received: from [38.26.44.251] by web20103.mail.yahoo.com via HTTP; Sun, 15 Jul 2001 06:30:44 PDT Date: Sun, 15 Jul 2001 06:30:44 -0700 (PDT) From: Mark Smith Subject: FreeBSD Java Project To: freebsd-questions@FreeBSD.ORG Cc: gallatin@cs.duke.edu, sean@stat.Duke.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've noticed many of the links off these Java pages are broken. What is the current status? Are there any available binaries I can download from anywhere? I couldn't find any off the newsgroups. I really want to learn more about BSD, but it's hard to justify using it at work unless I have a JDK for it. Thanks! Mark __________________________________________________ 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 15 6:56:46 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 456AD37B401 for ; Sun, 15 Jul 2001 06:56:43 -0700 (PDT) (envelope-from root@katana.amberskogg.dns2go.com) Received: from katana.amberskogg.dns2go.com (port131.tup.netdoor.com [208.137.140.195]) by pike.netdoor.com (8.9.3/8.9.3) with SMTP id IAA05642; Sun, 15 Jul 2001 08:56:39 -0500 (CDT) Content-Type: text/plain; charset="iso-8859-1" From: Jim Couch Reply-To: jcouch@netdoor.com Organization: AmberSkogg Development To: "A. L. Meyers" , Subject: Re: fbsd->linux->vmware->windoze,windoze slice,wine? Date: Sun, 15 Jul 2001 08:55:13 -0500 X-Mailer: KMail [version 1.2] References: <20010715124023.T377-100000@consult-meyers.com> In-Reply-To: <20010715124023.T377-100000@consult-meyers.com> MIME-Version: 1.0 Message-Id: <01071508551300.19210@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 have never run vmware under linux under FreeBSD, however I have run vmware inside linux with win98 winme and win2k as the guest oses and it works wonderfully. If Linux emulation under FreeBSD does not introduce too many Monkey Wrenches to the equation that is what I would reccomend. Jim Couch On Sunday 15 July 2001 05:45 am, A. L. Meyers wrote: > Hi! > > Obligated to run windoze apps, e. g. accounting app. Options are: > > 1. windoze slice, use FBSD boot manager > > 2. windoze as guest OS under vmware under linux under fbsd > > 3. wine (still alpha, usable in a production environment?) > > Accessing printer on /dev/lp0 from windoze app is a must. > > Would do you suggest, without any guarantees whatever :-) ? > > Cheers! > > Lucien > > > > 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 15 7:26: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.laposte.net (nposte09.axime.com [160.92.113.114]) by hub.freebsd.org (Postfix) with ESMTP id E071337B401 for ; Sun, 15 Jul 2001 07:25:54 -0700 (PDT) (envelope-from daniel.chayvialle@laposte.net) Received: from laposte.net (62.161.74.180) by mail.laposte.net (5.5.021) id 3B42566D0004D6BB for questions@FreeBSD.org; Sun, 15 Jul 2001 16:25:43 +0200 Message-ID: <3B51ABE1.450B058F@laposte.net> Date: Sun, 15 Jul 2001 16:42:42 +0200 From: "Daniel Chayvialle chez Wanadoo Cable, mail LaPoste" X-Mailer: Mozilla 4.5 [fr] (Win98; I) X-Accept-Language: fr,en,sk,cs MIME-Version: 1.0 To: questions@FreeBSD.org Subject: setting up a gateway 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 sorry but I cannot find how to set up a FreeBSD machine to act as a gateway between a local network and my cable ISP. I can't find enough infiormation in the various docs on the site. I've read the PPP and various related topics but to no avail. I'm trying to set a 482 DX2/66 (VLB, no PCI) with two ethernet boards (ep0 is a 3COM Etherlink 3 combo on which I use the BNC to link to my local 10b2/T hub; ed0 is an NE2000 compatible Peabird card with Realtek 8019 chip 10b2/T on which I use the RJ45 port to link to my cable modem) and not a lot of disk (I'm reusing an old computer to do this). I am trying to make so that I can link 2 PCs and a Macintosh Performa (later an amiga) on a local network with shared access to Internet (http, ftp and mail being the minimal requirements), printers, files, and as much other things as possible. I would also like the FreeBSD4.2-RELEASE box to serve as file and printer server, firewall, possibly DHCP server and other things (BTW what is the difference between a gateway and a router?) My ISP has DHCP and DNS servers (both on 62.161.120.3), and a default gateway whose IP addresse I know (thanks to winipcfg on my windows boxes, it is 62.161.72.1), but I can't figure out how to set up the lot. I have enabled the gateway option during installation, and have set up the nat to a minimal setup. Also, and this trouble just happened (up to now I could ping my isp form FreeBSD, but not from the local network, and ping inside the local network, and obviously could not access internet from the local network - I still have one machine directly connected on my cable modem, and perform the tries with another machine), I don't understand why on boot the system tells me that he has already detected other Ethernet addresses using the 192.168.1.1 IP address (arp messages). How is it possible as this address should be private and not seen outside? rc.conf: network_interfaces="ed0 ep0 lo0" ifconfig_ed0="DHCP" # with the new trouble, it is not configured any more ifconfig_ep0="inet 192.168.1.1 netmask 255.255.255.0" hostname="Datajet3com.27Vert" gateway_enable="YES" inetd_enable="YES" natd_enable="YES" natd_interface="ed0" natd_flags="-dynamic -redirect_port tcp 192.168.1.74:80 80" #this is one of the addresses I plan to give to on of the Windows boxes default_router="62.161.72.1" #that of my ISP, known from winipcfg. I get arplookup and arpresolve errors, telling me that thus it is not on the local network it cannot allocate llinfo /etc/hosts 127.0.0.1 localhost localhost.27vert 192.168.1.1 Datajet3com Datajet3com.27Vert 192.168.1.74 Athlon Athlon.27Vert /etc/rc.firewall #I don't use it yet [simple] oif="ed0" onet="62.161.79.0" omask="255.255.248.0" #know from winipcfg oip="62.161.79.43" #how to change this accoring to dhcp? iif="ep0" inet="192.168.1.0" imask="255.255.255.0" iip="192.168.1.1" I'm doing everything in console mode as I did not install the heavy X11 interface on this small machine. Also is it possible to resize partitions with a tool such as PartitionMagic (I'm willing to install more disk space when I find more inexpensive 400MB drives, thus might chnge the disk split)? There also is a SB card with Sony 2x proprietary CDRom and interface board that was not detected during set-up (I used a scsi cdrom drive). How can I make it work as it should be supported? What is the typical amount of space required for a FreeBSD bare setup according to the chosen option (X11, firewall, etc.)? Thanks a lot for your help Daniel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 7:41: 9 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 77E4337B405 for ; Sun, 15 Jul 2001 07:41:05 -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 15Lm6L-0000Yf-00; Sun, 15 Jul 2001 16:38:25 +0300 Received: by mailserv.xpert.com with Internet Mail Service (5.5.2650.21) id <3GHBZA38>; Sun, 15 Jul 2001 17:40:46 +0300 Message-ID: From: Yonatan Bokovza To: 'Xeon' , Freebsd-Questions Subject: RE: problem with Squid Date: Sun, 15 Jul 2001 17:40:43 +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 To install squid i typically do this: install the port. these changes go to squid.conf: --- http_port=8080 comment icp_port. size cache_mem correctly. size maximum_object_size correctly. size ipcache_size correctly. uncomment and define cache_dir and cache_access_log. http_access allow cache_mgr=my@mail --- and then i go: squid -z to initialize the space for the cache. and /usr/local/etc/rc.d/squid.sh start to start running. Should this become a README for squid port. > -----Original Message----- > From: Xeon [mailto:xeon@gmx.ch] > Sent: Sunday, July 15, 2001 14:46 > To: Freebsd-Questions > Subject: problem with Squid > > > hello everybody > > I've got a problem with squid 2.4. I run it under (or at > least I try to) > 4.3BSD. > I receive all the time "squid Parent:child process x exited > due to signal 6" > when > I send a request. I've absolutly no idea what I've done > wrong, the only > thing I changed > in the configuration file is the cache directory and after > receiving an > "access denied" message from squid I changed http_access to allow all. > > > thanks for your help! > chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 8: 3:29 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 D0F1C37B407 for ; Sun, 15 Jul 2001 08:03:15 -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 f6FF1Fs64878; Sun, 15 Jul 2001 12:01:17 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Sun, 15 Jul 2001 12:01:15 -0300 (ART) From: Fernando Gleiser To: "Daniel Chayvialle chez Wanadoo Cable, mail LaPoste" Cc: Subject: Re: setting up a gateway In-Reply-To: <3B51ABE1.450B058F@laposte.net> Message-ID: <20010715114640.S64143-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, 15 Jul 2001, Daniel Chayvialle chez Wanadoo Cable, mail LaPoste wrote: > Hi, > > I'm sorry but I cannot find how to set up a FreeBSD machine to act as a > gateway between a local network and my cable ISP. I can't find enough > infiormation in the various docs on the site. I've read the PPP and > various related topics but to no avail. http://www.mostgraveconcern.com/freebsd there is a doc called "setting up a cable modem" The computers on the internal LAN must use your firewall as your default gateway. The default gateway must be directly connected to the computer. That is: if the internal IP of your firewall is 192.168.1.1 the Pcs on the internal LAN should be configured to use 192.168.1.1 as your default gateway. Then, the firewall knows how to reach your ISP, your ISP knows how to reach their uplink, and so on until the packet reaches its destination. [snip] > > has already detected other Ethernet addresses using the 192.168.1.1 IP > address (arp messages). How is it possible as this address should be > private and not seen outside? Because the ISPs aren't doing their homework and dont filter those packets Look at your firewall logs and get enlighted =0). You wouldn't believe the things i've seen on firewall or IDS logs. [snip] > rc.conf: > network_interfaces="ed0 ep0 lo0" > ifconfig_ed0="DHCP" # with the new trouble, it is not configured any > more > ifconfig_ep0="inet 192.168.1.1 netmask 255.255.255.0" > hostname="Datajet3com.27Vert" > gateway_enable="YES" > inetd_enable="YES" > natd_enable="YES" > natd_interface="ed0" > natd_flags="-dynamic -redirect_port tcp 192.168.1.74:80 80" #this is > one of the addresses I plan to give to on of the Windows boxes > default_router="62.161.72.1" #that of my ISP, known from winipcfg. I You shouldn't need to configure your default router. Your ISP should configure it automagicaly via DHCP. Hope this helps. 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 15 8:18:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from bsduser.ca (194.40.220-216.q9.net [216.220.40.194]) by hub.freebsd.org (Postfix) with ESMTP id 9AA8137B406; Sun, 15 Jul 2001 08:18:14 -0700 (PDT) (envelope-from chris@collins-ca.com) Received: from bsduser.ca (bsduser.ca [216.220.40.194]) by bsduser.ca (8.11.3/8.11.3) with ESMTP id f6FFM2n91303; Sun, 15 Jul 2001 11:22:02 -0400 (EDT) (envelope-from chris@collins-ca.com) Date: Sun, 15 Jul 2001 11:22:02 -0400 (EDT) From: Chris Collins X-X-Sender: To: Cc: Subject: Re: buildworld problem. In-Reply-To: <20010714133434.F14426-100000@bsduser.ca> Message-ID: <20010715111916.X88805-100000@bsduser.ca> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello I have tried another cvsup today and then tried a buildworld again. Now I am getting a new error message. Does anybody know how to resolve this error? Thanks -------------------------------------------------------------- >>> stage 4: building everything.. -------------------------------------------------------------- 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 " PERL5LIB=/usr/obj/usr/src/i386/usr/libdata/perl/5.00503 GROFF_BIN_PATH=/usr/obj/usr/src/i386/usr/bin GROFF_FONT_PATH=/usr/obj/usr/src/i386/usr/share/groff_font GROFF_TMAC_PATH=/usr/obj/usr/src/i386/usr/share/tmac DESTDIR=/usr/obj/usr/src/i386 INSTALL="sh /usr/src/tools/install.sh" PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin make -f Makefile.inc1 all ===> share/info ===> include ===> include/rpcsvc ===> lib ===> lib/csu/i386-elf ===> lib/libcom_err gzip -cn /usr/src/lib/libcom_err/../../contrib/com_err/com_err.3 > com_err.3.gz -cn: No such file or directory *** Error code 1 Stop in /usr/src/lib/libcom_err. *** Error code 1 Stop in /usr/src/lib. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. bsduser# 11:15AM up 4 days, 10:21, 3 users, load averages: 0.56, 0.76, 0.91 On Sat, 14 Jul 2001, Chris Collins wrote: > > Hello All > > I have just cvsuped and now I am trying to make buildworld with no luck. > > I'm getting the following error and I have no idea where to begin to fix > this. The only thing I have tried is running cvsup again from another > cvsup site incase there was something wrong with the one I was using. > > Does anybody have any ideas? > > > -------------------------------------------------------------- > >>> stage 4: building everything.. > -------------------------------------------------------------- > 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 " PERL5LIB=/usr/obj/usr/src/i386/usr/libdata/perl/5.00503 > GROFF_BIN_PATH=/usr/obj/usr/src/i386/usr/bin > GROFF_FONT_PATH=/usr/obj/usr/src/i386/usr/share/groff_font > GROFF_TMAC_PATH=/usr/obj/usr/src/i386/usr/share/tmac > DESTDIR=/usr/obj/usr/src/i386 INSTALL="sh /usr/src/tools/install.sh" > PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin > make -f Makefile.inc1 all > ===> share/info > ===> include > ===> include/rpcsvc > ===> lib > ===> lib/csu/i386-elf > ===> lib/libcom_err > make: don't know how to make com_err.3. Stop > *** Error code 2 > > Stop in /usr/src/lib. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > > > Chris > > > ------- > > > > 1:30PM up 3 days, 12:36, 3 users, load averages: 0.71, 0.72, 0.84 > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" 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 15 8:37:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.ieg.com.br (huxley.protocoloweb.com.br [200.185.63.26]) by hub.freebsd.org (Postfix) with ESMTP id 8074937B401 for ; Sun, 15 Jul 2001 08:37:33 -0700 (PDT) (envelope-from pencam@ieg.com.br) Received: from [200.217.18.109] ([200.217.18.109]) by smtp.ieg.com.br (8.10.2/8.9.3) with SMTP id f6FFX2j13880 for ; Sun, 15 Jul 2001 12:33:05 -0300 Message-Id: <200107151533.f6FFX2j13880@smtp.ieg.com.br> X-Authentication-Warning: huxley.protocoloweb.com.br: [200.217.18.109] didn't use HELO protocol From: PenCam To: questions@FreeBSD.org Subject: Espiã Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Date: Thu, 26 Apr 2001 12:44:15 -0300 X-Sender: TronMailer v.302 - www.tronsoft.com.br/tronmailer Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG MINI CAMERA FOTOGRAFICA DIGITAL PenCam XGA - Prata PenCam , a FunCam (Câmera de Diversão) digital é o começo da diversão fotográfica digital e de internet. Tão pequena quanto uma barra de chocolate (55 gr.), e com muito mais resolução a PenCam (352 X 288) cabe em qualquer bolso. Tire fotos e faça vídeos (seqüências de fotos) nos lugares mais escondidos. Encontre seus amigos on-line via conferência de vídeo e compartilhe suas fotos favoritas via e-mail. Crie panoramas de 360º para um toque 3D surpreendente em seu Website. PenCam , a FunCam 3 em 1 de verdade vem com excelente software de vídeo e foto! Promoção po rtempo limitado, apenas R$ 300,00 www.pencam.hpg.com.br To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 8:39: 5 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 43D5437B401 for ; Sun, 15 Jul 2001 08:39:01 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.209] (helo=mrvdom02.kundenserver.de) by moutvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 15Lnz1-0002gJ-00; Sun, 15 Jul 2001 17:38:59 +0200 Received: from pd9017217.dip.t-dialin.net ([217.1.114.23]) by mrvdom02.kundenserver.de with esmtp (Exim 2.12 #2) id 15Lnz1-0006S3-00; Sun, 15 Jul 2001 17:38:59 +0200 Date: Sun, 15 Jul 2001 17:40:17 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: "A. L. Meyers" Cc: Subject: Re: fbsd->linux->vmware->windoze,windoze slice,wine? In-Reply-To: <20010715152625.L387-100000@consult-meyers.com> Message-ID: <20010715172746.H68621-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 Sun, 15 Jul 2001, A. L. Meyers wrote: > Date: Sun, 15 Jul 2001 15:30:43 +0200 (CEST) > From: A. L. Meyers > To: "P. U. (Uli) Kruppa" > Cc: freebsd-questions@FreeBSD.ORG > Subject: Re: fbsd->linux->vmware->windoze,windoze slice,wine? > > On Sun, 15 Jul 2001, P. U. (Uli) Kruppa wrote: > > > On Sun, 15 Jul 2001, A. L. Meyers wrote: > > > > > Date: Sun, 15 Jul 2001 12:45:03 +0200 (CEST) > > > From: A. L. Meyers > > > To: freebsd-questions@FreeBSD.ORG > > > Subject: fbsd->linux->vmware->windoze,windoze slice,wine? > > > > > > Hi! > > > > > > Obligated to run windoze apps, e. g. accounting app. Options are: > > > > > > 1. windoze slice, use FBSD boot manager > > > > > > 2. windoze as guest OS under vmware under linux under fbsd > > > > > > 3. wine (still alpha, usable in a production environment?) > > Do 1. and try 2. & 3. when you have got the time. > > > > Uli. > > > > > > > > Accessing printer on /dev/lp0 from windoze app is a must. > > > > > > Would do you suggest, without any guarantees whatever :-) ? > > > > > > Cheers! > > > > > > Lucien > > Uli, > > Thanks for the quick reply. Taking your advice leads to these > questions: > > 1) Which FS to choose for the Windoze 98 slice if one wants to be > able to mount it under FBSD to enable read and write data > transfer between windoze and fbsd? When you set up your dos-filesystem with fdisk you get two alternatives - better do *not* select the one that supports big FS which is recommended by (you will see what I mean, I do not Know what it is called in english) The old dos-filesystem is limited to 2 GB-partitions. > 2) Depending on 1), what options should one include in the > kernel? None. You should set up Windows first (so it cannot overwrite the Bootmanager) on the first partition of your first harddrive. You can mount it from FreeBSD by # mount_msdos /dev/ad0s1 /mnt By the way: Perhaps you will find Unix applications that can handle Window's (for example StarOffice can do a lot with Word- or Excel-documents). That works faster than any emulation. Uli. > > Cheers! > > Lucien > > *--------------------------------------* | 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 15 8:49: 9 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 3D85737B405 for ; Sun, 15 Jul 2001 08:49:05 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.208] (helo=mrvdom01.kundenserver.de) by moutvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 15Lo8k-0003vS-00; Sun, 15 Jul 2001 17:49:02 +0200 Received: from pd9017217.dip.t-dialin.net ([217.1.114.23]) by mrvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 15Lo8k-0004py-00; Sun, 15 Jul 2001 17:49:02 +0200 Date: Sun, 15 Jul 2001 17:50:14 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: Mark Smith Cc: , , Subject: Re: FreeBSD Java Project In-Reply-To: <20010715133044.72018.qmail@web20103.mail.yahoo.com> Message-ID: <20010715174606.X36162-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 Sun, 15 Jul 2001, Mark Smith wrote: > Date: Sun, 15 Jul 2001 06:30:44 -0700 (PDT) > From: Mark Smith > To: freebsd-questions@FreeBSD.ORG > Cc: gallatin@cs.duke.edu, sean@stat.Duke.EDU > Subject: FreeBSD Java Project > > Hi, > > I've noticed many of the links off these Java pages > are broken. What is the current status? Are there > any available binaries I can download from anywhere? > I couldn't find any off the newsgroups. Please have a look at www.freebsd.org/ports/java.html You will find most JAVA-related things there, that do run on FreeBSD. Note that FreeBSD can very well use the "linux-jdk" on it's linux-emulation. Uli. > > I really want to learn more about BSD, but it's hard > to justify using it at work unless I have a JDK for > it. > > Thanks! > > Mark > > __________________________________________________ > 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 > *--------------------------------------* | 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 15 9: 2:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from barry.mail.mindspring.net (barry.mail.mindspring.net [207.69.200.25]) by hub.freebsd.org (Postfix) with ESMTP id 3A46337B401 for ; Sun, 15 Jul 2001 09:02:33 -0700 (PDT) (envelope-from reyn@commonroads.org) Received: from martha (user-2iveq9l.dialup.mindspring.com [165.247.105.53]) by barry.mail.mindspring.net (8.9.3/8.8.5) with SMTP id MAA01682 for ; Sun, 15 Jul 2001 12:02:32 -0400 (EDT) From: "Matt Winslow" To: "freebsd" Subject: Quick Question Date: Sun, 15 Jul 2001 12:06:04 -0400 Message-ID: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0035_01C10D26.856CC160" 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.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_0035_01C10D26.856CC160 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Is there a way to make a PERL script run once every 10 minutes...I have a Dynamic DNS Updater that I want to run, just in case my IP changes due to a DSL disconnect. And a real dumb question....once I go into SU mode...how do I get out? Slowly learning.... Matt Winslow http://matt.mortalcity.com ------=_NextPart_000_0035_01C10D26.856CC160 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Is = there a way to=20 make a PERL script run once every 10 minutes...I have a Dynamic DNS = Updater=20 that I want to run, just in case my IP changes due to a DSL = disconnect. =20 And a real dumb question....once I go into SU mode...how do I get=20 out?
 
Slowly = learning....
 
Matt Winslow
http://matt.mortalcity.com
 
------=_NextPart_000_0035_01C10D26.856CC160-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 9: 3:15 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 8634A37B403 for ; Sun, 15 Jul 2001 09:03:04 -0700 (PDT) (envelope-from gqteam@yahoo.com) Received: from h249n2fls33o912.telia.com (HELO smtp.mail.yahoo.com) (213.67.34.249) by smtp.mail.vip.sc5.yahoo.com with SMTP; 15 Jul 2001 16:03:03 -0000 X-Apparently-From: From: Bernt Lovenberg To: freebsd-questions@freebsd.org Subject: You are Invited! Date: 15 Jul 2001 18:06:55 +0200 Expiry-Date: 26 Jun 2001 00:28:00 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_bdRhcD9o_jlE1vCIb_MA" Message-Id: <20010715160304.8634A37B403@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 ------=_bdRhcD9o_jlE1vCIb_MA Content-Type: text/plain Content-Transfer-Encoding: 8bit -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- (This safeguard is not inserted when using the registered version) -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- (This safeguard is not inserted when using the registered version) -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- ------=_bdRhcD9o_jlE1vCIb_MA Content-Type: text/html Content-Transfer-Encoding: 8bit Dream Business Opportunity
 

 

 

This is my Dream Business!

Global Promotion

Bernt Lovenberg
Civilekonom - MBA

Phone
Fax
Mobil
Yahoo

+46 40 26 00 01
+46 40 26 00 05
+46 73 685 0769
berntlove

Kopenhamnsvagen 105 B
217 75 Malmo
SWEDEN

Web

Email
 

www.GQteam.com

Love@GQteam.com

 

We found your email address when looking for AMWAY.  If you want to be removed from our mailing list please just click here!



Sweden, July 5, 2001

You are invited!

We think we have found the very best Network Marketing Concept in the World.  Now we are giving Experienced Networkers a Special, One Time, FREE Offer.

To join this business you normally have to spend US$400. If you can show us that you have experience from Network Marketing with Herbalife, Amway,  Nature's Own, ACN, Nikken, Nuskin, Morinda, FLP, LR or any other known MLM then we, your up-line

Lars-Eric Dahlberg, SwedenBernt Lovenberg, SwedenLars-Inge Gustafsson, SwedenPer Ahlquist, SwedenAmorn Loipimai, Thailand
Sadee Waeduemasor, SwedenChristiane Zejda, SwedenBalasaheb MulePatil, IndiaAgnieszka Mosor, PolandGabriella Semelius, Sweden

will finance the $400 so that you never have to pay a penny of your own. This offer is limited to 100 Networkers on a first come first served basis. Apply immediately for best position!

If you would like to make a good extra income for just a few hours work per month then please click here!

Sincerely,

Global Promotion

Bernt Lovenberg

NO SELLING - JUST TELLING

American Eagle Gold Coin Watch - Perhaps no other single item so eloquently captures the vibrant spirit of tradition and progress that is the 20th century.  The Eagle became an immediate classic and set the standard for coin designs the world over. Price US$ 800.00 - Can be yours for FREE!


We are promoting Top Class 24 Carat Gold Products for US$100 million.
------=_bdRhcD9o_jlE1vCIb_MA-- _________________________________________________________ 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 Sun Jul 15 10:18:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web12301.mail.yahoo.com (web12301.mail.yahoo.com [216.136.173.99]) by hub.freebsd.org (Postfix) with SMTP id 843A437B403 for ; Sun, 15 Jul 2001 10:18:22 -0700 (PDT) (envelope-from kdagee2@yahoo.com) Message-ID: <20010715171822.26054.qmail@web12301.mail.yahoo.com> Received: from [32.100.100.10] by web12301.mail.yahoo.com via HTTP; Sun, 15 Jul 2001 10:18:22 PDT Date: Sun, 15 Jul 2001 10:18:22 -0700 (PDT) From: Karl Agee Subject: cant cvsup--still To: freebsd-qeustions , Kent Stewart MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-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 tried installing a fresh copy of cvsup-bin-16.1 and even checking and changing mirror but alas I still cant cvsup..keep getting this error: su-2.03# cvsup stable-supfile Cannot get IP address of my own host -- is its hostname correct? so I dunno what do to next.... --karl __________________________________________________ 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 15 10:23:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.n2mt.com (c489666-a.chmpgn1.il.home.com [24.22.20.9]) by hub.freebsd.org (Postfix) with ESMTP id CFD7437B403 for ; Sun, 15 Jul 2001 10:23:50 -0700 (PDT) (envelope-from mtang@prairienet.org) Received: from c489666a (home6.n2mt.com [192.168.200.6]) by ns1.n2mt.com (8.11.1/8.11.1) with SMTP id f6FHEtZ07051 for ; Sun, 15 Jul 2001 12:14:56 -0500 (CDT) (envelope-from mtang@prairienet.org) Message-ID: <000701c10d51$d7da3b00$06c8a8c0@chmpgn1.il.home.com> Reply-To: "Ming Tang" From: "Ming Tang" To: Subject: Date: Sun, 15 Jul 2001 12:16:10 -0500 Organization: Home MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi - I am trying to install mysql, php to work with apache. I did installed mysql and apache without any problems. The version I did were: mysql-client-3.23.39 mysql-server-3.23.39 apache-1.3.20 which are all packages from FreeBSD ftp site. When I installed the mode_php4 package, it seems like there is a problem related to the package's archived file. I got a message from compress program. I then try mod_php3. I can install it w/o a complaimnt, but once the machine restarts, it will not load apache automatically. It says one of mysql's library has an unresolved symbol 'strctoll'. Please see the follows for the message at the boot time or when I restart apache. Syntax error on line 237 of /usr/local/etc/apache/httpd.conf: Cannot load /usr/local/libexec/apache/libphp3.so into server: /usr/local/lib/mysql/libmysqlclient.so.10: Undefined symbol "strtoll" Does anyone has encountered the same problem or know the cause of this problem. Please help and thanks for any advice. Thanks. Ming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 10:52:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [206.40.252.115]) by hub.freebsd.org (Postfix) with ESMTP id 5B95037B403; Sun, 15 Jul 2001 10:52:06 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.3/8.11.1) id f6FHpWA71542; Sun, 15 Jul 2001 10:51:32 -0700 (PDT) (envelope-from obrien) Date: Sun, 15 Jul 2001 10:51:32 -0700 From: "David O'Brien" To: Chris Collins Cc: freebsd-current@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: buildworld problem. Message-ID: <20010715105132.A71519@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <20010714133434.F14426-100000@bsduser.ca> <20010715111916.X88805-100000@bsduser.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010715111916.X88805-100000@bsduser.ca>; from chris@collins-ca.com on Sun, Jul 15, 2001 at 11:22:02AM -0400 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-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 15, 2001 at 11:22:02AM -0400, Chris Collins wrote: > ===> lib/libcom_err > gzip -cn /usr/src/lib/libcom_err/../../contrib/com_err/com_err.3 > > com_err.3.gz > -cn: No such file or directory > *** Error code 1 I would run ``type gzip'' or ``which gzip''. It seems either you've done something to your gzip binary, or there is a commit that broke it that I've missed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 11:10:19 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 5866637B401 for ; Sun, 15 Jul 2001 11:10:17 -0700 (PDT) (envelope-from chris@home.com) Received: by h24-67-61-12.lb.shawcable.net (Postfix, from userid 1002) id 36B0D66B05C; Sun, 15 Jul 2001 12:02:14 -0600 (MDT) Date: Sun, 15 Jul 2001 12:02:14 -0600 From: Chris Moline To: questions@freebsd.org Subject: Re: Quick Question Message-ID: <20010715120214.A727@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 reyn@commonroads.org on Sun, Jul 15, 2001 at 12:06: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 Sun, Jul 15, 2001 at 12:06:04PM -0400, Matt Winslow wrote: > Is there a way to make a PERL script run once every 10 minutes...I have a > Dynamic DNS Updater that I want to run, just in case my IP changes due to a > DSL disconnect. And a real dumb question....once I go into SU mode...how do > I get out? For running the script every ten minutes see the manpage for cron. As for getting out of su either type exit or hit cntl-d 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 15 11:17: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 F27BC37B401 for ; Sun, 15 Jul 2001 11:17:24 -0700 (PDT) (envelope-from fxn@retemail.es) Received: from retemail.es ([62.174.67.222]) by smtp04.retemail.es (InterMail vM.5.01.03.02 201-253-122-118-102-20010403) with ESMTP id <20010715181718.ULYQ1047.smtp04.retemail.es@retemail.es> for ; Sun, 15 Jul 2001 20:17:18 +0200 Message-ID: <3B51DE72.88F1AA4@retemail.es> Date: Sun, 15 Jul 2001 20:18:26 +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 Subject: Re: Quick Question 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 > Matt Winslow wrote: > > Is there a way to make a PERL script run once every 10 minutes... You can do it with Perl like this: while (1) { # your original code sleep 600; } but the usual way to run something periodically is to let cron to do it. Basically, one just needs to add a line with certain data in a text file that appears executing crontab -e. See this nice intro http://www.superscripts.com/tutorial/crontab.html and man cron, man crontab and man 5 crontab for the whole thing. > And a real dumb question....once I go into SU mode...how do I get out? Type `exit'. > Slowly learning.... It's worth the effort :-), perhaps you would need to read something on using Unix. -- fxn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 11:23:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mark9.vladsempire.net (hutch-189.hutchtel.net [206.10.67.89]) by hub.freebsd.org (Postfix) with ESMTP id AB45A37B401 for ; Sun, 15 Jul 2001 11:23:29 -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 C7B8B305; Sun, 15 Jul 2001 13:29:51 -0500 (CDT) Content-Type: text/plain; charset="iso-8859-1" From: Josh Paetzel To: Karl Agee , freebsd-qeustions , Kent Stewart Subject: Re: cant cvsup--still Date: Sun, 15 Jul 2001 13:29:51 -0500 X-Mailer: KMail [version 1.2] References: <20010715171822.26054.qmail@web12301.mail.yahoo.com> In-Reply-To: <20010715171822.26054.qmail@web12301.mail.yahoo.com> MIME-Version: 1.0 Message-Id: <01071513295100.01530@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 Sunday 15 July 2001 12:18, Karl Agee wrote: > well I tried installing a fresh copy of cvsup-bin-16.1 > and even checking and changing mirror but alas I still > cant cvsup..keep getting this error: > > su-2.03# cvsup stable-supfile > Cannot get IP address of my own host -- is its > hostname correct? > > so I dunno what do to next.... > > --karl I don't mean to ask a dumb question, but have you set hostname in /etc/rc.conf? If you haven't, try adding a line like this: hostname="thisismyhost.net" Or something. 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 15 11:24: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pop03-srv.alltel.net (pop03.alltel.net [166.102.165.149]) by hub.freebsd.org (Postfix) with ESMTP id 7C06D37B405 for ; Sun, 15 Jul 2001 11:24:03 -0700 (PDT) (envelope-from lederer@mac.com) Received: from [10.0.0.150] ([166.102.254.114]) by pop03-srv.alltel.net with ESMTP id <20010715182112.TRJM5378.pop03-srv.alltel.net@[10.0.0.150]> for ; Sun, 15 Jul 2001 13:21:12 -0500 User-Agent: Microsoft-Entourage/9.0.1.3108 Date: Sun, 15 Jul 2001 13:23:58 -0500 Subject: Can Freebsd integrate with NT in a large corporation? From: Mark Lederer To: Message-ID: Mime-version: 1.0 Content-type: multipart/alternative; boundary="B_3078048238_499829" Sender: owner-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. --B_3078048238_499829 Content-type: text/plain; charset="ISO-8859-1" Content-transfer-encoding: quoted-printable Folks, I am an engineer working at BP Amoco in Houston. I have been using Unix fo= r the last 12 years. The engineering community has been challenged by our corporate IT big wigs to come up with innovative ways to reduce our $500M+ IT expenses. I=B9m sure they want to hear things like scrap the Unix workstations and do everything on Wintel. That=B9s another issue, at least while the apps are missing. So my question is: Could a very large corporation like BP convert several thousand NT file, web and print servers from NT to Freebsd to save money. The savings being not having to license N= T and increased uptime(?). Possibly OS support is cheaper or near zero. I=B9m sure BP would still want NT for Exchange (email) and login authentication. MY QUESTION IS: Can Freebsd severs use NT authentication methods or would that be a problem. Remember, 50,000+ users have Wintel on the desktop. Crazy idea or not? Have other very large corporations ever done this or currently do this? Mark Lederer Sugar Land, TX, USA Email: lederer@mac.com --B_3078048238_499829 Content-type: text/html; charset="ISO-8859-1" Content-transfer-encoding: quoted-printable Can Freebsd integrate with NT in a large corporation? Folks,

I am an engineer working at BP Amoco in Houston.  I have been using Un= ix for the last 12 years.  The engineering community has been challenge= d by our corporate IT big wigs to come up with innovative ways to reduce our= $500M+ IT expenses.  I’m sure they want to hear things like scra= p the Unix workstations and do everything on Wintel.  That’s anot= her issue, at least while the apps are missing.  So my question is: Cou= ld a very large corporation like BP convert several thousand NT file, web an= d print servers from NT to Freebsd to save money. The savings being not havi= ng to license NT and increased uptime(?).  Possibly OS support is cheap= er or near zero.  I’m sure BP would still want NT for Exchange (e= mail) and login authentication.  

MY QUESTION IS:  Can Freebsd severs use NT authentication methods or w= ould that be a problem.  Remember, 50,000+ users have Wintel on the des= ktop.

Crazy idea or not?   Have other very large corporations ever done= this or currently do this?

Mark Lederer
Sugar Land, TX, USA
Email:   lederer@mac.com

--B_3078048238_499829-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 11:25:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f134.law15.hotmail.com [64.4.23.134]) by hub.freebsd.org (Postfix) with ESMTP id 9201C37B403 for ; Sun, 15 Jul 2001 11:25:22 -0700 (PDT) (envelope-from bulldog2260@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 15 Jul 2001 11:25:22 -0700 Received: from 24.21.159.57 by lw15fd.law15.hotmail.msn.com with HTTP; Sun, 15 Jul 2001 18:25:22 GMT X-Originating-IP: [24.21.159.57] From: "Bull Dog" To: questions@freebsd.org Subject: Updating and make buildworld fails Date: Sun, 15 Jul 2001 13:25:22 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 15 Jul 2001 18:25:22.0445 (UTC) FILETIME=[826CFBD0:01C10D5B] Sender: owner-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 FBSD 4.3 Release. I CVsup'd everything fine to RELENG_4. but when i go to make buildworld as per the handbook, my computer will spontaneously restart some where in the middle of the building. Can anybody explain why this is happening and what I can do to fix it. Thanks in advance Bull Dog _________________________________________________________________ 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 15 11:44:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from bsduser.ca (194.40.220-216.q9.net [216.220.40.194]) by hub.freebsd.org (Postfix) with ESMTP id 7DDF437B403; Sun, 15 Jul 2001 11:44:40 -0700 (PDT) (envelope-from chris@collins-ca.com) Received: from bsduser.ca (bsduser.ca [216.220.40.194]) by bsduser.ca (8.11.3/8.11.3) with ESMTP id f6FImRn05339; Sun, 15 Jul 2001 14:48:27 -0400 (EDT) (envelope-from chris@collins-ca.com) Date: Sun, 15 Jul 2001 14:48:27 -0400 (EDT) From: Chris Collins X-X-Sender: To: "David O'Brien" Cc: , Subject: Re: buildworld problem. In-Reply-To: <20010715105132.A71519@dragon.nuxi.com> Message-ID: <20010715144307.K92506-100000@bsduser.ca> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Here is what I get when I do a which. I don't think that there is anything wrong with my gzip binary. I use it almost everyday. I'll think that I will re-install it just to be sure. bsduser# which gzip /sbin/gzip bsduser# 2:40PM up 4 days, 13:46, 3 users, load averages: 0.10, 0.37, 1.24 On Sun, 15 Jul 2001, David O'Brien wrote: > On Sun, Jul 15, 2001 at 11:22:02AM -0400, Chris Collins wrote: > > ===> lib/libcom_err > > gzip -cn /usr/src/lib/libcom_err/../../contrib/com_err/com_err.3 > > > com_err.3.gz > > -cn: No such file or directory > > *** Error code 1 > > I would run ``type gzip'' or ``which gzip''. It seems either you've done > something to your gzip binary, or there is a commit that broke it that > I've missed. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 11:47:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r02.mx.aol.com (imo-r02.mx.aol.com [152.163.225.98]) by hub.freebsd.org (Postfix) with ESMTP id 5864237B405 for ; Sun, 15 Jul 2001 11:47:31 -0700 (PDT) (envelope-from y2kgod@aol.com) Received: from y2kgod@aol.com by imo-r02.mx.aol.com (mail_out_v31.7.) id n.5f.17dfe5cf (6397) for ; Sun, 15 Jul 2001 14:47:29 -0400 (EDT) From: y2kgod@aol.com Message-ID: <5f.17dfe5cf.28833f40@aol.com> Date: Sun, 15 Jul 2001 14:47:28 EDT Subject: Need help with PPP To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="part1_5f.17dfe5cf.28833f40_boundary" X-Mailer: AOL 6.0 for Windows US sub 10524 Sender: owner-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_5f.17dfe5cf.28833f40_boundary Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit OK. I've been working with PPP for a while now, and I'm having trouble getting it to connect. First of all, I have figured out something. While reading through my log, I found that my modem would connect for ten seconds, then disconnect with this error: Jul 15 13:31:33 ppp[233]: tun0: Warning: Chat script failed My ppp.conf file looks like this: (Auth. info has been removed) default: ident user-ppp VERSION (built COMPILATIONDATE) set device /dev/cuaa0 set log Phase Chat LCP IPCP CCP tun command set speed 115200 set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \ \"\" AT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 40 CONNECT" set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 .0.0.0.0 set timeout 180 set default HISADDR enable dns papchap: setphone set authname set authkey juno: setphone set authname set authkey my ppp.linkup looks like this: juno: delete ALL add 0 0 HISADDR Please HELP! If you're not sure what's wrong, please forward this to someone else who might. If you need more info, please e-mail me. Thanx. --part1_5f.17dfe5cf.28833f40_boundary Content-Type: text/html; charset="US-ASCII" Content-Transfer-Encoding: 7bit OK. I've been working with PPP for a while now, and I'm having trouble
getting it to connect.

First of all, I have figured out something. While reading through my log, I
found that my modem would connect for ten seconds, then disconnect with this
error:
Jul 15 13:31:33  ppp[233]: tun0: Warning: Chat script failed

My ppp.conf file looks like this:
(Auth. info has been removed)

default:
ident user-ppp VERSION (built COMPILATIONDATE)
set device /dev/cuaa0
set log Phase Chat LCP IPCP CCP tun command
set speed 115200
set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \
           \"\" AT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 40 CONNECT"
set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 .0.0.0.0
set timeout 180
set default HISADDR
enable dns

papchap:
setphone <number>
set authname <username>
set authkey <password>

juno:
setphone <phone>
set authname <username>
set authkey <password>

my ppp.linkup looks like this:

juno:
delete ALL
add 0 0 HISADDR

Please HELP!

If you're not sure what's wrong, please forward this to someone else who
might. If you need more info, please e-mail me.

Thanx.
--part1_5f.17dfe5cf.28833f40_boundary-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 12: 3: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from echonyc.com (echonyc.com [198.67.15.2]) by hub.freebsd.org (Postfix) with ESMTP id 9C6EB37B401 for ; Sun, 15 Jul 2001 12:02:57 -0700 (PDT) (envelope-from suleyman@echonyc.com) Received: from localhost (suleyman@localhost) by echonyc.com (8.11.4/8.11.4) with ESMTP id f6FJ2qk06667 for ; Sun, 15 Jul 2001 15:02:52 -0400 (EDT) Date: Sun, 15 Jul 2001 15:02:52 -0400 (EDT) From: Ken Seggerman To: Subject: can't ping second NIC on dual-homed PC 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 FreeBSD 4.3-STABLE on a 133 MHz PC with 64 MB or RAM. I made world and rebuilt the kernel recently. I have two NICs, a 3Com 3c905C-TX Fast Etherlink XL interface xl0, and a LinkSys ADMtek AN985 10/100BaseTX interface dc0. The machine is configured as a gateway for IPv4 and IPv6. Even though both interfaces show up as active, I can only successfully ping the xl0. However I can ping6 both interfaces successfully. I was even able to ping6 to a second host on an IPv6 subnet connected to the dc0. I am wondering if I am missing something important. Thanks, Ken Seggerman suleyman@echonyc.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 15 12: 6:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hermes.epita.fr (hermes.epita.fr [163.5.255.10]) by hub.freebsd.org (Postfix) with ESMTP id 715C137B403 for ; Sun, 15 Jul 2001 12:06:32 -0700 (PDT) (envelope-from couill_j@epita.fr) Received: from usul (IDENT:couill_j@usul.epita.fr [10.42.19.39]) by hermes.epita.fr id VAA17167 Sun, 15 Jul 2001 21:02:07 GMT Date: Sun, 15 Jul 2001 21:02:07 +0000 (GMT) From: Jean Couillaud X-Sender: couill_j@usul To: Karl Agee Cc: freebsd-qeustions , Kent Stewart Subject: Re: cant cvsup--still In-Reply-To: <20010715171822.26054.qmail@web12301.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 It may be caused by your network configuration .. Try to ping an internet well-known host like google, if you get the same error, it means you have not correctly configured you network, I ve had the same problem. I m using a USB DSL line and I've had to configure my ethernet card properly to get the dns to work properly .. On Sun, 15 Jul 2001, Karl Agee wrote: > Date: Sun, 15 Jul 2001 10:18:22 -0700 (PDT) > From: Karl Agee > To: freebsd-qeustions , > Kent Stewart > Subject: cant cvsup--still > > well I tried installing a fresh copy of cvsup-bin-16.1 > and even checking and changing mirror but alas I still > cant cvsup..keep getting this error: > > su-2.03# cvsup stable-supfile > Cannot get IP address of my own host -- is its > hostname correct? > > so I dunno what do to next.... > > --karl > > __________________________________________________ > 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 Jean Couillaud (aka Carmody) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 12:16:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [206.40.252.115]) by hub.freebsd.org (Postfix) with ESMTP id 6733637B401; Sun, 15 Jul 2001 12:16:15 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.3/8.11.1) id f6FJGDW72652; Sun, 15 Jul 2001 12:16:13 -0700 (PDT) (envelope-from obrien) Date: Sun, 15 Jul 2001 12:16:13 -0700 From: "David O'Brien" To: Chris Collins Cc: freebsd-current@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: buildworld problem. Message-ID: <20010715121613.A72537@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <20010715105132.A71519@dragon.nuxi.com> <20010715144307.K92506-100000@bsduser.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010715144307.K92506-100000@bsduser.ca>; from chris@collins-ca.com on Sun, Jul 15, 2001 at 02:48:27PM -0400 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-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 15, 2001 at 02:48:27PM -0400, Chris Collins wrote: > Here is what I get when I do a which. I don't think that there is anything > wrong with my gzip binary. I use it almost everyday. I'll think that I > will re-install it just to be sure. ... > > > gzip -cn /usr/src/lib/libcom_err/../../contrib/com_err/com_err.3 > > > > com_err.3.gz > > > -cn: No such file or directory Something is going on -- gzip is not recognizing options. It thinks "-cn" is a file. That certainly isn't normal. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 12:33:25 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 904B637B406 for ; Sun, 15 Jul 2001 12:33:19 -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 f6FJX6810585; Sun, 15 Jul 2001 12:33:08 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Philip Murray" , Subject: RE: Many directories or many files? Date: Sun, 15 Jul 2001 12:33:06 -0700 Message-ID: <004901c10d64$f8e173a0$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: <002101c10d27$d69b1d60$0300a8c0@sparlak> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.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 Perhaps a lot of directories and a mysql database that listed a description of the file and a directory location and filename would fit the bill. 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 Philip Murray >Sent: Sunday, July 15, 2001 5:15 AM >To: freebsd-questions@FreeBSD.ORG >Subject: Many directories or many files? > > >Hi, > >I have a large library of photos (>100,000, Real Estate) and at the moment >I'm storing them in a big dump split up by a few directories. > >I'm getting to the point where I have ~8000 files per directory. I was >wondering whether I should write some kind of hashing function and have lots >and lots of directories, or whether it's best to have more files per >directory? > >Also, if anyone knows of a Free image/media storage system that I can use, >that would be wonderful. > >I also looked into storing them in a mysql database, but I'm pretty sure it >couldn't handle it. > >Cheers > >-------------------------------- - -- - - - >Philip Murray - webmaster@open2view.com >http://www.open2view.com - Open2View.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 15 12:34: 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 3022837B403 for ; Sun, 15 Jul 2001 12:34: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 f6FJY5X64237; Sun, 15 Jul 2001 15:34:05 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Sun, 15 Jul 2001 15:34:05 -0400 (EDT) From: Joe Clarke To: Mark Lederer Cc: Subject: Re: Can Freebsd integrate with NT in a large corporation? In-Reply-To: Message-ID: <20010715152900.R64230-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 This is not a decision to make lightly, which I'm sure you know. I won't pretend to say I've done something this large. However, to answer your questions, Samba could be used to replace NT servers for file sharing, printing, and authentication. There is also a new PAM module that just entered the ports tree that allows FreeBSD users to be authenticated via NT PDCs (pam_smb). You may want to check out some of the Samba mailing lists to see if anyone has deployed it in such a large network. Personally, I think FreeBSD is an excellent choice for your network. Joe Clarke On Sun, 15 Jul 2001, Mark Lederer wrote: > Folks, > > I am an engineer working at BP Amoco in Houston. I have been using Unix = for > the last 12 years. The engineering community has been challenged by our > corporate IT big wigs to come up with innovative ways to reduce our $500M= + > IT expenses. I=B9m sure they want to hear things like scrap the Unix > workstations and do everything on Wintel. That=B9s another issue, at lea= st > while the apps are missing. So my question is: Could a very large > corporation like BP convert several thousand NT file, web and print serve= rs > >from NT to Freebsd to save money. The savings being not having to licens= e NT > and increased uptime(?). Possibly OS support is cheaper or near zero. I= =B9m > sure BP would still want NT for Exchange (email) and login authentication= =2E > > MY QUESTION IS: Can Freebsd severs use NT authentication methods or woul= d > that be a problem. Remember, 50,000+ users have Wintel on the desktop. > > Crazy idea or not? Have other very large corporations ever done this or > currently do this? > > Mark Lederer > Sugar Land, TX, USA > Email: lederer@mac.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 15 12:39:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-181.dsl.lsan03.pacbell.net [64.165.226.181]) by hub.freebsd.org (Postfix) with ESMTP id 373B337B403 for ; Sun, 15 Jul 2001 12:39:44 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id EDBEC66D15; Sun, 15 Jul 2001 12:39:42 -0700 (PDT) Date: Sun, 15 Jul 2001 12:39:42 -0700 From: Kris Kennaway To: Karl Agee Cc: freebsd-qeustions , Kent Stewart Subject: Re: cant cvsup--still Message-ID: <20010715123942.C10227@xor.obsecurity.org> References: <20010715171822.26054.qmail@web12301.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="TYecfFk8j8mZq+dy" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010715171822.26054.qmail@web12301.mail.yahoo.com>; from kdagee2@yahoo.com on Sun, Jul 15, 2001 at 10:18:22AM -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 --TYecfFk8j8mZq+dy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jul 15, 2001 at 10:18:22AM -0700, Karl Agee wrote: > well I tried installing a fresh copy of cvsup-bin-16.1 > and even checking and changing mirror but alas I still > cant cvsup..keep getting this error: >=20 > su-2.03# cvsup stable-supfile > Cannot get IP address of my own host -- is its > hostname correct? =20 >=20 > so I dunno what do to next.... Have you read the cvsup FAQ on www.polstra.com? cvsup needs the results of `hostname` to resolve to a valid IP address. Kris --TYecfFk8j8mZq+dy 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 iD8DBQE7UfF9Wry0BWjoQKURAsO6AKCAk6d9jFhoKyhDdgm09iGfzb/ofQCgieAk Wp80DxKx5D6PXFvzCV6js7c= =M0MQ -----END PGP SIGNATURE----- --TYecfFk8j8mZq+dy-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 13:16:31 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 87AC837B405 for ; Sun, 15 Jul 2001 13:16:13 -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 f6FKGB810686; Sun, 15 Jul 2001 13:16:11 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Mark Lederer" , Subject: RE: Can Freebsd integrate with NT in a large corporation? Date: Sun, 15 Jul 2001 13:16:10 -0700 Message-ID: <005501c10d6a$fd1cc4a0$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: Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.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 Others will certainly tell you the technical specifics and I myself wrote a book on running FreeBSD on Windows networks. But let me address myself to the politics of the situation - because this is the real problem you will face, not the technical arraingements. For starters, I find it hard to belive that BP is spending a half billion dollars a year on IT expenses - that's $10K per employee. I think that what is going on is that the actual expenses are much lower, and the IT budget is being inflated by adding a bunch of unrelated things into it - like telco. For example if you threw all WAN connectivity and long distance billing into the mix they you might approach $10K per employee. However, no matter whether you use Wintel or UNIX for your networking infrastructure, those WAN and Telco costs are going to be the same. So my question would be: first of all, why is this half-billion inflated figure being tossed around? I speculate that it's a red flag that's designed to provoke a response from the upper management - typically who don't know diddly squat about IT infrastructure. What is probably going on is that the top IT person, CIO, is unhappy with the lack of control he or she has over the internal BP IT infrastructure and has concocted this figure in order to incite the CEO to give him or her far more authority over IT infrastructure - such as just telling all you engineers that you have to switch over to Windows and dump UNIX. Right now if he or she tried that all you engineers would band together and complain to the CEO and you would succeed in checkmating her or him. If she or he can sufficiently incite the CEO to belive that there's a problem then they can get God authority to reduce expenses despite the complaints. I mean, after all it's not like an oil company like BP is in any danger of going out of business! I think if you took a look at the IT budget and sliced out all the fixed costs that are not changable - like Telco - that you would find that BP's IT infrastructure costs are not out of line with those of any other large company. So, what should your response be to this? Well the first thing "the engineering community" needs to do is push back against IT and demand an accounting of what IT costs are being attributed to your department. Why is your department being singled out? Is your LAN management costs somehow higher than those of any of the other departments? You need this data because if you ever want to have any hope of promoting FreeBSD you have got to get a handle on what your really spending on solutions NOW that FreeBSD could replace. If you go into IT now and say "We can change to FreeBSD and save X dollars" without knowing how much money they are spending on you now, they will eat you alive because they will just say "Switch to Windows and you can save X+5K per user" and you will have no way of validating that figure. You have to hold their feet to the fire first and make them poop out a figure of how much they think they are "losing" by you being on UNIX and not Windows. If you haven't figured out by now what I'm talking about here is a discussion of perception vs reality. I can assure you that BP is a significant customer on Microsoft's radarscope. Their sales group will not allow BP to switch away from Microsoft without a massive fight. You do not know it but you very well be dealing with a CIO that has already gone to Microsoft and told them "We are thinking of switching to Sun/Linux/insert OS of choice here" just to see what they could get - and Microsoft may have already told them "We will outfit your entire engineering group with Windows solutions for free if you agree to not switch away from us" Far from FreeBSD being a cost savings because it's free you may be fighting in a war of free vs free, and the fact that FreeBSD is free makes no difference on the cost savings equation. Anyway, good luck. Hopefully I've given you a glimpse into how decisions often work in IT groups in large companies. Remember that whatever proposal you put together to save money that the competition will be given a chance to meet or beat it - and they won't blink about undercutting you on price to prevent you from getting a foothold, and they will do their best to bribe/give gifts/otherwise influence the IT decision makers, and to cast FUD on your proposal. In this instance your almost better off doing a proposal to switch the company over to Solaris - because then you can get the Sun salespeople in to play all the dirty tricks on IT too and end up with a stalemate that way. 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 Mark Lederer Sent: Sunday, July 15, 2001 11:24 AM To: freebsd-questions@FreeBSD.ORG Subject: Can Freebsd integrate with NT in a large corporation? Folks, I am an engineer working at BP Amoco in Houston. I have been using Unix for the last 12 years. The engineering community has been challenged by our corporate IT big wigs to come up with innovative ways to reduce our $500M+ IT expenses. I’m sure they want to hear things like scrap the Unix workstations and do everything on Wintel. That’s another issue, at least while the apps are missing. So my question is: Could a very large corporation like BP convert several thousand NT file, web and print servers from NT to Freebsd to save money. The savings being not having to license NT and increased uptime(?). Possibly OS support is cheaper or near zero. I’m sure BP would still want NT for Exchange (email) and login authentication. MY QUESTION IS: Can Freebsd severs use NT authentication methods or would that be a problem. Remember, 50,000+ users have Wintel on the desktop. Crazy idea or not? Have other very large corporations ever done this or currently do this? Mark Lederer Sugar Land, TX, USA Email: lederer@mac.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 15 14:16:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from c000.snv.cp.net (c000-h016.c000.snv.cp.net [209.228.32.80]) by hub.freebsd.org (Postfix) with SMTP id 7F12637B401 for ; Sun, 15 Jul 2001 14:16:18 -0700 (PDT) (envelope-from ringgo@rnpa-online.net) Received: (cpmta 5017 invoked from network); 15 Jul 2001 14:16:14 -0700 Date: 15 Jul 2001 14:16:14 -0700 Message-ID: <20010715211614.5016.cpmta@c000.snv.cp.net> X-Sent: 15 Jul 2001 21:16:14 GMT Received: from [64.7.131.210] by mail.rnpa-online.net with HTTP; 15 Jul 2001 14:16:14 PDT Content-Type: text/plain Content-Disposition: inline Mime-Version: 1.0 To: questions@freebsd.org From: ringgo@rnpa-online.net X-Mailer: Web Mail 3.9.3.5 X-Sent-From: ringgo@rnpa-online.net Subject: ident2 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hallo what is the correct configuration in /etc/inetd.conf for ident2 daemon i put in /etc/inetd.conf auth stream tcp nowait nobody /usr/local/sbin/ident2 ident2 -i -r is that true or false? and what the correct permission file /usr/local/sbin/ident2 ? i have trouble to connect dalnet server because ident2 is not working properly Thank's for the answer :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 14:23:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from guild.plethora.net (guild.plethora.net [205.166.146.8]) by hub.freebsd.org (Postfix) with ESMTP id 4FD4137B405 for ; Sun, 15 Jul 2001 14:23:27 -0700 (PDT) (envelope-from seebs@plethora.net) Received: from guild.plethora.net (seebs@localhost.plethora.net [127.0.0.1]) by guild.plethora.net (8.11.2/8.10.1) with ESMTP id f6FLNQv01865 for ; Sun, 15 Jul 2001 16:23:26 -0500 (CDT) Message-Id: <200107152123.f6FLNQv01865@guild.plethora.net> From: seebs@plethora.net (Peter Seebach) Reply-To: seebs@plethora.net (Peter Seebach) To: freebsd-questions@freebsd.org Subject: CD-ROM compatability Date: Sun, 15 Jul 2001 16:23:26 -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 I have some machines with 52x "creative labs" CD-ROM drives. They don't install very well. I get, at random points in any given install, failures to install various sets of files. Generally, the failure takes the form of a stream of checksum messages spewing on the second console, with cpio skipping things for a while until it finds something it likes. However... these same computers install, with no errors, as often as I care to try with any other OS I have handy (NetBSD and BSD/OS, mostly). Is this possibly a software thing? If so, more importantly, *is there a workaround*? I don't relish the thought of buying CD-ROM drives at random until one of them happens to work. If it matters, these are ServerWorks boards; SuperMicro 370DE6. I am suspicious that their IDE controller may have different DMA quirks than VIA and Intel boards do. I have three machines like this, and they have *identical* failures, on all three, so I don't think it's the specific drives. It could be that all Creative Labs 52x drives have this problem but, as noted, they work fine for everyone else. -s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 15: 4:11 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 F0B5937B401 for ; Sun, 15 Jul 2001 15:04:06 -0700 (PDT) (envelope-from root@katana.amberskogg.dns2go.com) Received: from katana.amberskogg.dns2go.com (port147.tup.netdoor.com [208.137.140.211]) by pike.netdoor.com (8.9.3/8.9.3) with SMTP id RAA21676; Sun, 15 Jul 2001 17:04:01 -0500 (CDT) Content-Type: text/plain; charset="iso-8859-1" From: Jim Couch Reply-To: jcouch@netdoor.com Organization: AmberSkogg Development To: seebs@plethora.net (Peter Seebach), freebsd-questions@FreeBSD.ORG Subject: Re: CD-ROM compatability Date: Sun, 15 Jul 2001 17:03:58 -0500 X-Mailer: KMail [version 1.2] References: <200107152123.f6FLNQv01865@guild.plethora.net> In-Reply-To: <200107152123.f6FLNQv01865@guild.plethora.net> MIME-Version: 1.0 Message-Id: <01071517035801.21898@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 Does it help to know that I have the same drive on an H-P Vectra and DFI motherboards and do not get anykind of glitches in installation or usage? Jim C. On Sunday 15 July 2001 04:23 pm, Peter Seebach wrote: > I have some machines with 52x "creative labs" CD-ROM drives. > If it matters, these are ServerWorks boards; SuperMicro 370DE6. I am > suspicious that their IDE controller may have different DMA quirks than VIA > and Intel boards do. > I have three machines like this, and they have *identical* failures, on all > three, so I don't think it's the specific drives. It could be that all > Creative Labs 52x drives have this problem but, as noted, they work fine > for everyone else. -- By doing just a little every day, you can gradually let the task completely overwhelm you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 15:40:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r03.mx.aol.com (imo-r03.mx.aol.com [152.163.225.99]) by hub.freebsd.org (Postfix) with ESMTP id 3B98D37B403 for ; Sun, 15 Jul 2001 15:40:26 -0700 (PDT) (envelope-from y2kgod@aol.com) Received: from y2kgod@aol.com by imo-r03.mx.aol.com (mail_out_v31.7.) id n.7c.1882166d (3927) for ; Sun, 15 Jul 2001 18:40:23 -0400 (EDT) From: y2kgod@aol.com Message-ID: <7c.1882166d.288375d6@aol.com> Date: Sun, 15 Jul 2001 18:40:22 EDT Subject: Help! To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="part1_7c.1882166d.288375d6_boundary" X-Mailer: AOL 6.0 for Windows US sub 10524 Sender: owner-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_7c.1882166d.288375d6_boundary Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Ok, I'm having trouble with my PPP connection. In the log it says this: Chat: Expect timeout Warning: Chat script failed Disconnected!! HELP!!!!!! --part1_7c.1882166d.288375d6_boundary Content-Type: text/html; charset="US-ASCII" Content-Transfer-Encoding: 7bit Ok, I'm having trouble with my PPP connection. In the log it says this:

Chat: Expect timeout
Warning: Chat script failed
Disconnected!!


HELP!!!!!!
--part1_7c.1882166d.288375d6_boundary-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 16:15: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (nic-41-c140-174.mn.mediaone.net [66.41.140.174]) by hub.freebsd.org (Postfix) with SMTP id C45F637B408 for ; Sun, 15 Jul 2001 16:15:00 -0700 (PDT) (envelope-from dtj79@hotmail.com) From: "Daniel" To: Subject: Mime-Version: 1.0 Content-Type: text/html; charset="ISO-8859-1" Date: Sun, 15 Jul 2001 18:15:44 -0500 Content-Transfer-Encoding: 8bit Message-Id: <20010715231500.C45F637B408@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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 16:32:31 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 0360537B403 for ; Sun, 15 Jul 2001 16:32:30 -0700 (PDT) (envelope-from cjalmond@yahoo.com) Message-ID: <20010715233229.17897.qmail@web9605.mail.yahoo.com> Received: from [24.167.38.193] by web9605.mail.yahoo.com via HTTP; Sun, 15 Jul 2001 16:32:29 PDT Date: Sun, 15 Jul 2001 16:32:29 -0700 (PDT) From: The Almonds Subject: Anyone able to run IOtest from soliddata.com on 4.3 BSD? 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, I can not complie the program to run and was wondering if anyone else had any luch at getting it working. It seems to be a little more robust test than IOZONE on the distribution because you can run it in demo mode which is a good stress test for IO. Any help would be great, 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 Sun Jul 15 16:45:46 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 ED11237B405 for ; Sun, 15 Jul 2001 16:45:42 -0700 (PDT) (envelope-from 01031149@3web.net) Received: from 3web.net ([209.197.157.122]) by smtp2.cybersurf.net (Netscape Messaging Server 4.15) with SMTP id GGJGO400.8PO for ; Sun, 15 Jul 2001 17:45:40 -0600 Received: by 3web.net (EzMTS MTSAgent 1.22b Service) ; Sun, 15 Jul 01 17:45:26 -0600 for Received: from 3web.net (10.0.0.2) by 3web.net (EzMTS MTSSmtp 1.50 Service) ; Sun, 15 Jul 01 08:24:08 -0600 for Received: by mandy.rockingd.calgary.ab.ca (sSMTP sendmail emulation); Sun, 15 Jul 2001 08:23:41 -0600 Date: Sun, 15 Jul 2001 08:23:40 -0600 From: Duke Normandin <01031149@3web.net> To: Freebsd Questions Subject: CD-ROM problem on a 486/66 w/ 3.3R Message-ID: <20010715082339.A234185@mandy.rockingd.calgary.ab.ca> Mail-Followup-To: Freebsd Questions Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i 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 Hi... A few weeks ago I asked for help regarding mounting my CD-ROM - couldn't mount it, no matter what. I've narrowed it down (I think) to a IDE controller issue. Originally I had the following hardware config: Controller #1: 240M DOS HDD -> master 850M BSD HDD -> slave Controller #2 NEC CD-ROM changer -> master I was successfully using 'Uniload' to boot into either DOS or 3.3R. /var/run/dmesg.boot showed that the CD-ROM was being detected w/o any problems. However i simply could not mount the CD-ROM. I changed the hardware around yesterday as follows: Controller #1: 240M DOS HDD -> master NEC CD-ROM changer -> slave Controller #2: 850M BSD HDD -> master Results are that I can boot into DOS, but 'Uniload' fails to "see" the BSD HDD, which according to its docs, it's can do. As such, I'm wondering if there may be an issue with Controller #2, and/or whether a 486 mobo is able to even use a secondary IDE controller? If the above 2 questions are valid concerns, why would 3.3R be able to detect the controller and the CD-ROM in the first scenario above, albeit not be able to mount it? In a 2 controller, 2 HDD, 1 CD-ROM scenario, is there a prefered "hookup"? TIA... -- -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 Sun Jul 15 16:54:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay2.adelphia.net (smtprelay2.adelphia.net [64.8.25.7]) by hub.freebsd.org (Postfix) with ESMTP id C622337B403 for ; Sun, 15 Jul 2001 16:54:18 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay2.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGJH3601.CYF; Sun, 15 Jul 2001 19:54:42 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.3/8.11.3) id f6FNqUJ10741; Sun, 15 Jul 2001 19:52:30 -0400 (EDT) (envelope-from ipt) Date: Sun, 15 Jul 2001 19:52:30 -0400 From: User & Ian Patrick Thomas To: y2kgod@aol.com Cc: freebsd-questions@freebsd.org Subject: Re: Need help with PPP Message-ID: <20010715195230.A10278@localhost> References: <5f.17dfe5cf.28833f40@aol.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <5f.17dfe5cf.28833f40@aol.com>; from y2kgod@aol.com on Sun, Jul 15, 2001 at 02:47: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 Having been a previous employee with Juno, if you are trying to use the free internet service without their software, it won't work. Even if you are paying for the service, it may still not work. To my knowledge, the Juno service will only work with their software on a Windows machine. Try going with another ISP. Ian As it was put forth by y2kgod@aol.com on Sun, Jul 15, 2001 at 02:47:28PM -0400... > OK. I've been working with PPP for a while now, and I'm having trouble > getting it to connect. > > First of all, I have figured out something. While reading through my log, I > found that my modem would connect for ten seconds, then disconnect with this > error: > Jul 15 13:31:33 ppp[233]: tun0: Warning: Chat script failed > > My ppp.conf file looks like this: > (Auth. info has been removed) > > default: > ident user-ppp VERSION (built COMPILATIONDATE) > set device /dev/cuaa0 > set log Phase Chat LCP IPCP CCP tun command > set speed 115200 > set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \ > \"\" AT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 40 CONNECT" > set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 .0.0.0.0 > set timeout 180 > set default HISADDR > enable dns > > papchap: > setphone > set authname > set authkey > > juno: > setphone > set authname > set authkey > > my ppp.linkup looks like this: > > juno: > delete ALL > add 0 0 HISADDR > > Please HELP! > > If you're not sure what's wrong, please forward this to someone else who > might. If you need more info, please e-mail me. > > Thanx. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 16:55:35 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 8209637B401 for ; Sun, 15 Jul 2001 16:55:31 -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 f6FNtew08983; Sun, 15 Jul 2001 18:55:40 -0500 (EST) (envelope-from rlucas@solidcomputing.com) Date: Sun, 15 Jul 2001 18:55:40 -0500 (EST) From: Richard Lucas X-X-Sender: To: Karl Agee Cc: freebsd-qeustions , Kent Stewart Subject: Re: cant cvsup--still In-Reply-To: <20010715171822.26054.qmail@web12301.mail.yahoo.com> Message-ID: <20010715185312.W8952-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 Sun, 15 Jul 2001, Karl Agee wrote: > well I tried installing a fresh copy of cvsup-bin-16.1 > and even checking and changing mirror but alas I still > cant cvsup..keep getting this error: > > su-2.03# cvsup stable-supfile > Cannot get IP address of my own host -- is its > hostname correct? > > so I dunno what do to next.... > > --karl > What's your /etc/hosts file look like? You should have something like the following in /etc/hosts: 127.0.0.1 With being the hostname you set in rc.conf. If you have a static ip address you might want to put that there instead of 127.0.0.1. -Richard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 17: 1:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f204.law9.hotmail.com [64.4.9.204]) by hub.freebsd.org (Postfix) with ESMTP id 88B8E37B403 for ; Sun, 15 Jul 2001 17:01:35 -0700 (PDT) (envelope-from thierryblack@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 15 Jul 2001 17:01:35 -0700 Received: from 207.195.92.134 by lw9fd.law9.hotmail.msn.com with HTTP; Mon, 16 Jul 2001 00:01:35 GMT X-Originating-IP: [207.195.92.134] From: "Thierry Black" To: freebsd-questions@freebsd.org Subject: Voicemail hardware for Freebsd? Date: Sun, 15 Jul 2001 18:01:35 -0600 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 16 Jul 2001 00:01:35.0398 (UTC) FILETIME=[7A715460:01C10D8A] Sender: owner-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 tell me what voicemail hardware is available for Freebsd for analog phone lines only? Will a voice/fax modem be enough? I want to try seting up a voice answering system for one phone line with a menu of options. I looked in ports and saw the "bayonne" package, but do not know if this is the ideal software for this system. Or should I maybe not try this with Freebsd? I wanted to add this on a cheap Freebsd server that we already use under light load. thanks! _________________________________________________________________________ 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 Sun Jul 15 17:16:14 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 1670037B403 for ; Sun, 15 Jul 2001 17:16:09 -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 GGJI0902.T3M; Sun, 15 Jul 2001 20:14:33 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.3/8.11.3) id f6G0ELS10901; Sun, 15 Jul 2001 20:14:21 -0400 (EDT) (envelope-from ipt) Date: Sun, 15 Jul 2001 20:14:21 -0400 From: User & Ian Patrick Thomas To: AVW Productions Cc: freebsd-questions@freebsd.org Subject: Re: Frame Buffer Device under FreeBSD ??? Message-ID: <20010715201421.B10278@localhost> References: <000f01c10d29$51251710$283501d9@mangler2001> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000f01c10d29$51251710$283501d9@mangler2001>; from AVWallpapers@gmx.net on Sun, Jul 15, 2001 at 02:18:07PM +0200 Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by scraemondaemon.my.domain id f6G0ELS10901 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Once the desktop comes up, can you get a terminal window and bring up xvidtune? If you can, use this program to move the desktop to the middle. Ian As it was put forth by AVW Productions on Sun, Jul 15, 2001 at 02:18:07PM= +0200... > Hi, >=20 >=20 > I'm using your FreeBSD4.3 for some time now and i love it. >=20 > I also wanted to run XFree86 now...Unfortunately i have problems with m= y graphic card SiS630. > I can run KDE but the desktop is not in the middle of the screen but ha= lf cut away : ( >=20 > I already tried hundreds of XF86Configs and installed the newest driver= s for my card but it didnt help. >=20 > I read some articles about my graphic card and XFree86 and found out th= at the only way to run=20 > XF86 decent is to use a frame buffer device like VESA. >=20 > Does freebsd 4.3 support this frame buffer device ? >=20 > If yes how can i install it ? >=20 > In order to configure this frame buffer device i also read that the fol= lowing chnages must be made to lilo.config. > i read this on a linux help page: > ------------------ > The display is driven by a SiS630 graphics controller.=20 >=20 > There is an X-server which should work with that chip (XF86_SVGA). Howe= ver, all trials with different modelines weren=B4t successful. So I fear = that an accelerated driver is not applicable and one must use the framebu= ffer device. >=20 > There is a kernel framebuffer module (sisfb) which should drive the SiS= 630 but is an experimental state. On my machine, it definetely does not w= ork. The computer hangs in any way I tried this driver. Instead, I use th= e VESA framebuffer, vesafb. This driver must be compiled into the kernel = (which is true for the SuSE standard kernels). When compiling the kernel = by yourself, you must enable "prompt for development and/or incomplete co= de/drivers" under "code maturity level options". The framebuffer devices = can then be found under "console drivers". >=20 > In /etc/lilo.conf you must enable an appropriate VGA mode. In this case= it is 1024x768 with a color depth of 64k. So the correct line in lilo.co= nf is >=20 > vga=3D0x317 >=20 > Now, use sax with the framebuffer X-server:=20 >=20 > sax -s XF86_FBDev >=20 > and set all parameters needed by X. Especially in the card-section you = have to choose the framebuffer driver. The /etc/XF86Config on my site may= give you a hint how the result can look like. The version number of the = installed X window system is XFree86 4.0.2 >=20 > ------------------------ >=20 >=20 > is there any chnace to make these chnages to freebsd too to get the fra= me buffer device working ? >=20 >=20 > I really hope you can help me because KDE looks very nice and comfortab= le and i would like to use it. >=20 >=20 > Best regards Andreas >=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 15 17:26:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay2.adelphia.net (smtprelay2.adelphia.net [64.8.25.7]) by hub.freebsd.org (Postfix) with ESMTP id CB39F37B405 for ; Sun, 15 Jul 2001 17:26:40 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay2.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGJIL400.IZB; Sun, 15 Jul 2001 20:27:04 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.3/8.11.3) id f6G0Orx10965; Sun, 15 Jul 2001 20:24:53 -0400 (EDT) (envelope-from ipt) Date: Sun, 15 Jul 2001 20:24:53 -0400 From: User & Ian Patrick Thomas To: Peter Seebach Cc: freebsd-questions@freebsd.org Subject: Re: CD-ROM compatability Message-ID: <20010715202453.C10278@localhost> References: <200107152123.f6FLNQv01865@guild.plethora.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200107152123.f6FLNQv01865@guild.plethora.net>; from seebs@plethora.net on Sun, Jul 15, 2001 at 04:23:26PM -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 I also use a Creative Labs 52x CDROM, but with no difficulties. I think you may be on the right track in suspecting some strange behaviour from the IDE controllers. I have also read that running a CDROM on a UDMA 66 controller can cause problems. Ian As it was put forth by Peter Seebach on Sun, Jul 15, 2001 at 04:23:26PM -0500... > I have some machines with 52x "creative labs" CD-ROM drives. > > They don't install very well. I get, at random points in any given install, > failures to install various sets of files. Generally, the failure takes the > form of a stream of checksum messages spewing on the second console, with > cpio skipping things for a while until it finds something it likes. > > However... these same computers install, with no errors, as often as I care > to try with any other OS I have handy (NetBSD and BSD/OS, mostly). Is this > possibly a software thing? If so, more importantly, *is there a workaround*? > I don't relish the thought of buying CD-ROM drives at random until one of > them happens to work. > > If it matters, these are ServerWorks boards; SuperMicro 370DE6. I am > suspicious that their IDE controller may have different DMA quirks than VIA > and Intel boards do. > > I have three machines like this, and they have *identical* failures, on all > three, so I don't think it's the specific drives. It could be that all > Creative Labs 52x drives have this problem but, as noted, they work fine for > everyone else. > > -s > > 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 15 17:32:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ren.sasknow.com (ren.sasknow.com [207.195.92.131]) by hub.freebsd.org (Postfix) with ESMTP id BF34737B403 for ; Sun, 15 Jul 2001 17:32:22 -0700 (PDT) (envelope-from ryan@sasknow.com) Received: from localhost (ryan@localhost) by ren.sasknow.com (8.9.3/8.9.3) with ESMTP id SAA24450; Sun, 15 Jul 2001 18:32:09 -0600 (CST) (envelope-from ryan@sasknow.com) Date: Sun, 15 Jul 2001 18:32:09 -0600 (CST) From: Ryan Thompson To: y2kgod@aol.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Help! In-Reply-To: <7c.1882166d.288375d6@aol.com> Message-ID: Organization: SaskNow Technologies [www.sasknow.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 y2kgod@aol.com wrote to freebsd-questions@FreeBSD.ORG: > Ok, I'm having trouble with my PPP connection. In the log it says this: > > Chat: Expect timeout > Warning: Chat script failed > Disconnected!! > > HELP!!!!!! We'll need some more information to solve this problem for you. Below are some general strategies, and questions that you should answer with your next reply, if this information doesn't help you solve the problem. The chat script (script that automatically negotiates your username/ password with the ISP's dial-in server on the other end) was expecting a response from the server that it didn't receive. This has a few possible causes: 1) The chat script is incorrect. Perhaps it was expecting login: (or ogin:), but the server sent "username:" instead. Check carefully and ask your ISP--maybe they have an existing chat script that you can use. 2) Your ISP is having trouble, or there is trouble with the physical connection, resulting in data loss and timeouts while negotiating your PPP session. 3) You have the wrong phone number, area code, country code prefix, etc, and the chat script is attempting to negotiate a dial-up login with a recorded message from your telco ("The number you have dialed...") Make sure you leave your modem speaker on while testing. :-) Most likely, it is #1, but you better make sure #3 and #2 are looked after first, in that order, or you have no way to verify #1. If you make it that far, send us your chat script, and send us a terminal log of one of the unsuccessful connections. Also, you didn't tell us whether this: a) has always been the case with this ISP? b) worked fine under identical configuration until now? c) came as the result of a new installation/config changes? Hope this helps - Ryan -- Ryan Thompson Network Administrator, Accounts SaskNow Technologies - http://www.sasknow.com #106-380 3120 8th St E - Saskatoon, SK - S7H 0W2 Tel: 306-664-3600 Fax: 306-664-1161 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 17:33:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gwa.cl.bosch.com.au (gwa.cl.bosch.com.au [202.139.81.33]) by hub.freebsd.org (Postfix) with ESMTP id EB12D37B403 for ; Sun, 15 Jul 2001 17:33:41 -0700 (PDT) (envelope-from Ljubisa.Stojanovic@au.bosch.com) Received: (from uucp@localhost) by gwa.cl.bosch.com.au (8.9.1/8.9.1) id KAA14784 for ; Mon, 16 Jul 2001 10:33:38 +1000 (EST) Received: from clvirusscan.internet.cl.au.bosch.com( 10.23.5.13) by gwa.cl.bosch.com.au via smap (V2.1) id xma014774; Mon, 16 Jul 01 10:33:24 +1000 Received: by clmail2.cl.au.bosch.com with Internet Mail Service (5.5.2653.19) id ; Mon, 16 Jul 2001 10:33:19 +1000 Message-ID: From: "Stojanovic Ljubisa (RBAU-BK/EGE31) *" To: "'freebsd-questions@FreeBSD.ORG'" Subject: Cads Date: Mon, 16 Jul 2001 10:33:18 +1000 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) 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 Dear FreeBSD, Being an Engineer, I am trying to find CAD/FEA packages for a Unix-like Operating System. Do you have any of those running on FreBSD? Regards/Mit freundlichen Gr=FC=DFen, Ljubisa Stojanovic Senior Project Engineer,=20 Development Department EGE31, Robert Bosch Australia Tel: +61 3 9541 7901 Fax: +61 3 95417700 Cnr Cetre & McNaughton Roads, Clayton, Vic 3168, Australia E-mail: =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 15 17:52: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tao.thought.org (sense-kline-248.oz.net [216.39.168.248]) by hub.freebsd.org (Postfix) with ESMTP id 74F6B37B408 for ; Sun, 15 Jul 2001 17:51:57 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.11.3/8.11.0) id f6G0pqm30389; Sun, 15 Jul 2001 17:51:52 -0700 (PDT) (envelope-from kline) Date: Sun, 15 Jul 2001 17:51:52 -0700 From: Gary Kline To: User & Ian Patrick Thomas Cc: y2kgod@aol.com, freebsd-questions@FreeBSD.ORG Subject: Re: Need help with PPP Message-ID: <20010715175151.A30370@tao.thought.org> References: <5f.17dfe5cf.28833f40@aol.com> <20010715195230.A10278@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20010715195230.A10278@localhost>; from ipthomas_77@yahoo.com on Sun, Jul 15, 2001 at 07:52:30PM -0400 X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 15 years of service to the Unix community Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jul 15, 2001 at 07:52:30PM -0400, User & Ian Patrick Thomas wrote: > Having been a previous employee with Juno, if you are trying to use the > free internet service without their software, it won't work. Even if you > are paying for the service, it may still not work. To my knowledge, the > Juno service will only work with their software on a Windows machine. Try > going with another ISP. > Hm. Here's something I've wondered since trying Juno at friend's:: would it be possible to use Juno's free junk service with Windows and have your DOG/W9x system networked to a FBSD LAN? gary -- Gary D. Kline kline@thought.org www.thought.org Public service Unix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 18:13:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hp06.postech.ac.kr (smtp.postech.ac.kr [141.223.2.1]) by hub.freebsd.org (Postfix) with ESMTP id A148237B405 for ; Sun, 15 Jul 2001 18:13:54 -0700 (PDT) (envelope-from lahaye@users.sourceforge.net) Received: from users.sourceforge.net (surfion4.postech.ac.kr [141.223.126.84]) by hp06.postech.ac.kr (8.9.3/8.9.3) with ESMTP id KAA27974 for ; Mon, 16 Jul 2001 10:14:44 +0900 (JST) Message-ID: <3B52401F.7F63F718@users.sourceforge.net> Date: Mon, 16 Jul 2001 10:15:11 +0900 From: "R. Lahaye" Organization: Postech 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: How to configure easily a remote printer? Content-Type: text/plain; charset=iso-8859-2 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 very new to FreeBSD, coming from years of Linux experience. In Linux the printer setup is so easy done using the printtool or kups (interface to cups) scripts. A few click with the mouse and the remote printer is connected and operational. Is there an easy-to-use interface around in FreeBSD that does all the setup for me, like the printtool/kups in Linux? I have cups installed, but that doesn't seem to come with an easy interface. When I read the handbook of FreeBSD on this issue, I can't believe how much I have to know about the tweeking and settings of all the system files. How much memory to share, whether the computer at the other side does this or that and so on (i.e. manually editing the /etc/printcap or /usr/local/etc/cups/cupsd.conf !?!?!). (BTW: I need to connect to a W98 box with an HP printer). Thanks for help, Rob. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 18:18:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ren.sasknow.com (ren.sasknow.com [207.195.92.131]) by hub.freebsd.org (Postfix) with ESMTP id B983D37B405 for ; Sun, 15 Jul 2001 18:18:23 -0700 (PDT) (envelope-from ryan@sasknow.com) Received: from localhost (ryan@localhost) by ren.sasknow.com (8.9.3/8.9.3) with ESMTP id TAA30026; Sun, 15 Jul 2001 19:18:17 -0600 (CST) (envelope-from ryan@sasknow.com) Date: Sun, 15 Jul 2001 19:18:17 -0600 (CST) From: Ryan Thompson To: Philip Murray Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Many directories or many files? In-Reply-To: <002101c10d27$d69b1d60$0300a8c0@sparlak> Message-ID: Organization: SaskNow Technologies [www.sasknow.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 Philip Murray wrote to freebsd-questions@FreeBSD.ORG: > Hi, > > I have a large library of photos (>100,000, Real Estate) and at the > moment I'm storing them in a big dump split up by a few directories. > > I'm getting to the point where I have ~8000 files per directory. I was > wondering whether I should write some kind of hashing function and > have lots and lots of directories, or whether it's best to have more > files per directory? It pays to split up the directories, perhaps into chunks of a few hundred. Depending on your requirements, you might get away with something as braindead simple as this old function: a/ a/ b/ c/ ... z/ b/ a/ b/ c/ ... z/ . . z/ a/ b/ c/ ... z/ Of course, you don't get an even distribution that way, and you end up creating 26^2 = 676 directories, but this is simple enough that a shell script can figure it out, and probably "fast enough" for nearly all applications. If these files are named in English, you'll naturally have some directories (/t/h/, /z/x/) with a disproportionate number of files, but, on average, you've got about 150 links per directory. So, if you're REALLY going for efficiency, you may not want to follow the above approach (but then you're getting a lot more complex with hash distributions, etc). An approach of this fashion WILL, however, reduce the overall directory search time required, and I think that will help your situation. > Also, if anyone knows of a Free image/media storage system that I can > use, that would be wonderful. > > I also looked into storing them in a mysql database, but I'm pretty > sure it couldn't handle it. Well, it's not impossible... 100,000 x 20k per image(high estimate?) is under 2GB. Put the pictures in their own table and use a foreign key to connect to your property description table (or whatever). Depending on how you deploy this, though, you could waste more time than you gain if you're creating a new database connection for every request, and don't forget about the memory/disk IO required to do the SELECT, return the data, have your program read it, and send them through CGI to the web server. With adequate caching, serving files from disk is almost always faster. > > Cheers > > -------------------------------- - -- - - - > Philip Murray - webmaster@open2view.com > http://www.open2view.com - Open2View.com > ------------- - -- - - > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- Ryan Thompson Network Administrator, Accounts SaskNow Technologies - http://www.sasknow.com #106-380 3120 8th St E - Saskatoon, SK - S7H 0W2 Tel: 306-664-3600 Fax: 306-664-1161 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 18:31:30 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 5ADAF37B406 for ; Sun, 15 Jul 2001 18:31:21 -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 GGJLHK02.P5A; Sun, 15 Jul 2001 21:29:44 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.3/8.11.3) id f6G1TW711252; Sun, 15 Jul 2001 21:29:32 -0400 (EDT) (envelope-from ipt) Date: Sun, 15 Jul 2001 21:29:32 -0400 From: User & Ian Patrick Thomas To: Gary Kline Cc: freebsd-questions@freebsd.org Subject: Re: Need help with PPP Message-ID: <20010715212932.A11121@localhost> References: <5f.17dfe5cf.28833f40@aol.com> <20010715195230.A10278@localhost> <20010715175151.A30370@tao.thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010715175151.A30370@tao.thought.org>; from kline@ns1.thought.org on Sun, Jul 15, 2001 at 05:51:52PM -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 Yes. You would need to use NAT of course. Only problem is you can pretty much never get on. They have restricted the usage with the free internet service to customers that they deem are not heavy users. There is no definition or criteria of what makes up a heavy user, but once you have been given this label, expect to never be able to get on. Ian As it was put forth by Gary Kline on Sun, Jul 15, 2001 at 05:51:52PM -0700... > On Sun, Jul 15, 2001 at 07:52:30PM -0400, User & Ian Patrick Thomas wrote: > > Having been a previous employee with Juno, if you are trying to use the > > free internet service without their software, it won't work. Even if you > > are paying for the service, it may still not work. To my knowledge, the > > Juno service will only work with their software on a Windows machine. Try > > going with another ISP. > > > > Hm. Here's something I've wondered since trying Juno > at friend's:: would it be possible to use Juno's free > junk service with Windows and have your DOG/W9x system > networked to a FBSD LAN? > > gary > > > -- > Gary D. Kline kline@thought.org www.thought.org Public service Unix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 18:31:48 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 CE53E37B408 for ; Sun, 15 Jul 2001 18:31:31 -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 f6G1RsZ13226; Sun, 15 Jul 2001 21:27:55 -0400 (EDT) Message-ID: <3B5243DD.8E62FB96@iowna.com> Date: Sun, 15 Jul 2001 21:31:09 -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: Joe Clarke Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Problems with PPTP using mpd References: <20010714032823.J1703-100000@shumai.marcuscom.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Joe Clarke wrote: > > Do you have the crypto libs on your system? Do you have > /usr/lib/libdescrypt.*? Yes, I do have the libraries you describe. > You may also try disabling the need for Microsoft > CHAP authentication on the server. In order for MPD to use MSCHAP, you > need to compile with DES. I believe that I've tried every possible combination of radio-button options at this point. I'm assuming that what you're talking about is the "accept any auth", "accept only encrypted auth", etc options. I'm still not getting a connection. > I know MSCHAPv2 has been known to cause > problems with non-MS products. You might try disabling that as well if > it's enabled. Hmmm ... I just upgraded the NT workstation to SP6a. Do you know how I turn off MSCHAPv2? Overall this is very strange. If I understand all this diagnostice stuff, mpd is requesting chap auth, which NT acknowledges, then mpd acks that an agreed auth has been reached (MSCHAP) which NT then rejects. Doesn't make any sense to me, but I may be reading it wrong. Any other ideas? Or things to try? -Bill > > Joe Clarke > > On Fri, 13 Jul 2001, Bill Moran wrote: > > > Using FreeBSD 4.3 and mpd 3.2 > > I'm trying to set up a PPTP connection to an NT 4 workstation. The FreeBSD > > box is calling to the NT WS. > > Things seem to go fairly well except it can't authenticate. Here is a > > script capture of what happens: > > > > Script started on Fri Jul 13 22:19:13 2001 > > Multi-link PPP for FreeBSD, by Archie L. Cobbs. > > Based on iij-ppp, by Toshiharu OHNO. > > mpd: pid 7306, version 3.2 (root@gohan14.freebsd.org 18:57 19-Apr-2001) > > [pptp1] ppp node is "mpd7306-pptp1" > > [pptp1] using interface ng0 > > [pptp1:pptp1] open > > [pptp1] IFACE: Open event > > [pptp1] IPCP: Open event > > [pptp1] IPCP: state change Initial --> Starting > > [pptp1] IPCP: LayerStart > > [pptp1:pptp1] [pptp1] bundle: OPEN event in state CLOSED > > [pptp1] opening link "pptp1"... > > [pptp1] link: OPEN event > > [pptp1] LCP: Open event > > [pptp1] LCP: state change Initial --> Starting > > [pptp1] LCP: LayerStart > > [pptp1] device: OPEN event in state DOWN > > pptp0: connecting to 10.0.0.50:1723 > > [pptp1] device is now in state OPENING > > pptp0: connected to 10.0.0.50:1723 > > pptp0: attached to connection with 10.0.0.50:1723 > > pptp0-0: outgoing call connected at 64000 bps > > [pptp1] PPTP call successful > > [pptp1] device: UP event in state OPENING > > [pptp1] device is now in state UP > > [pptp1] link: UP event > > [pptp1] link: origination is local > > [pptp1] LCP: Up event > > [pptp1] LCP: state change Starting --> Req-Sent > > [pptp1] LCP: phase shift DEAD --> ESTABLISH > > [pptp1] LCP: SendConfigReq #1 > > ACFCOMP > > PROTOCOMP > > MRU 1500 > > MAGICNUM 27325afc > > AUTHPROTO CHAP MSOFT > > [pptp1] LCP: rec'd Configure Request #0 link 0 (Req-Sent) > > AUTHPROTO CHAP MSOFT > > MAGICNUM 00005010 > > PROTOCOMP > > ACFCOMP > > [pptp1] LCP: SendConfigAck #0 > > AUTHPROTO CHAP MSOFT > > MAGICNUM 00005010 > > PROTOCOMP > > ACFCOMP > > [pptp1] LCP: state change Req-Sent --> Ack-Sent > > [pptp1] LCP: rec'd Configure Reject #1 link 0 (Ack-Sent) > > AUTHPROTO CHAP MSOFT > > [pptp1] LCP: SendConfigReq #2 > > ACFCOMP > > PROTOCOMP > > MRU 1500 > > MAGICNUM 27325afc > > AUTHPROTO CHAP MSOFT > > [pptp1] LCP: SendConfigReq #3 > > ACFCOMP > > PROTOCOMP > > MRU 1500 > > MAGICNUM 27325afc > > AUTHPROTO CHAP MSOFT > > [pptp1] LCP: rec'd Configure Reject #3 link 0 (Ack-Sent) > > AUTHPROTO CHAP MSOFT > > [pptp1] LCP: SendConfigReq #4 > > ACFCOMP > > PROTOCOMP > > MRU 1500 > > MAGICNUM 27325afc > > AUTHPROTO CHAP MSOFT > > [pptp1] LCP: rec'd Configure Reject #4 link 0 (Ack-Sent) > > AUTHPROTO CHAP MSOFT > > [pptp1] LCP: SendConfigReq #5 > > ACFCOMP > > PROTOCOMP > > MRU 1500 > > MAGICNUM 27325afc > > AUTHPROTO CHAP MSOFT > > [pptp1] LCP: rec'd Configure Reject #5 link 0 (Ack-Sent) > > AUTHPROTO CHAP MSOFT > > [pptp1] LCP: SendConfigReq #6 > > ACFCOMP > > PROTOCOMP > > MRU 1500 > > MAGICNUM 27325afc > > AUTHPROTO CHAP MSOFT > > [pptp1] LCP: rec'd Configure Reject #6 link 0 (Ack-Sent) > > AUTHPROTO CHAP MSOFT > > [pptp1] LCP: SendConfigReq #7 > > ACFCOMP > > PROTOCOMP > > MRU 1500 > > MAGICNUM 27325afc > > AUTHPROTO CHAP MSOFT > > [pptp1] LCP: rec'd Terminate Request #1 link 0 (Ack-Sent) > > [pptp1] LCP: state change Ack-Sent --> Req-Sent > > [pptp1] LCP: SendTerminateAck #8 > > [pptp1] LCP: rec'd Terminate Request #2 link 0 (Req-Sent) > > [pptp1] LCP: SendTerminateAck #9 > > [pptp1] LCP: SendConfigReq #10 > > ACFCOMP > > PROTOCOMP > > MRU 1500 > > MAGICNUM 27325afc > > AUTHPROTO CHAP MSOFT > > [pptp1] LCP: SendConfigReq #11 > > ACFCOMP > > PROTOCOMP > > MRU 1500 > > MAGICNUM 27325afc > > AUTHPROTO CHAP MSOFT > > pptp0-0: peer call disconnected res=admin action err=none > > pptp0-0: killing channel > > [pptp1] PPTP call terminated > > pptp0: closing connection with 10.0.0.50:1723 > > [pptp1] device: DOWN event in state UP > > [pptp1] device is now in state DOWN > > > > > > Any thoughts? My mpd.links: > > > > pptp1: > > set link type pptp > > set pptp enable originate > > set pptp disable incoming > > set pptp self 10.0.0.99 > > set pptp peer 10.0.0.50 > > > > > > My mpd.conf > > > > default: > > load pptp1 > > > > pptp1: > > new -i ng0 pptp1 pptp1 > > set iface idle 0 > > set iface route 192.168.0.0/16 > > set iface addrs 192.168.0.1 192.168.0.2 > > set bundle disable multilink > > set bundle authname "testusr" > > set bundle password "test" > > set link no pap > > set link yes chap > > set link keep-alive 10 75 > > set ipcp yes vjcomp > > set ipcp ranges 192.168.0.1/32 192.168.0.2/32 > > # set ccp yes mppc > > # set ccp yes mpp-e40 > > # set ccp yes mpp-e128 > > # set bundle enable crypt-reqd > > # set ccp yes mpp-stateless > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > -- It may be that true happiness is nothing more than the ability to *always* know the right thing to say at the right time, whereas true misery is the state of perpetually saying to oneself, "What I *should* have said was..." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 18:55:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mg.hk5.outblaze.com (202-123-209-152.outblaze.com [202.123.209.152]) by hub.freebsd.org (Postfix) with ESMTP id 82F8437B401 for ; Sun, 15 Jul 2001 18:55:44 -0700 (PDT) (envelope-from high@bsdmail.org) Received: from ws4.us.outblaze.com (ws4.us.outblaze.com [209.249.164.192]) by mg.hk5.outblaze.com (8.11.2/8.11.2) with SMTP id f6G1tft00687 for ; Mon, 16 Jul 2001 01:55:41 GMT Received: (qmail 5859 invoked by uid 1001); 16 Jul 2001 01:55:40 -0000 Message-ID: <20010716015540.5858.qmail@bsdmail.org> Content-Type: text/plain; charset="iso-8859-1" Content-Disposition: inline Content-Transfer-Encoding: 7bit Mime-Version: 1.0 X-Mailer: MIME-tools 4.104 (Entity 4.117) Received: from ws4.us.outblaze.com for [212.254.41.88] via web-mailer on Mon, 16 Jul 2001 09:55:40 +0800 From: "Metal Head" To: freebsd-questions@FreeBSD.org Date: Mon, 16 Jul 2001 09:55:40 +0800 Subject: Fw: failure notice + FreeBSD Security hole found! Sender: owner-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 did this e-mail address(rossettigab@email.com) get rejected? I just created it 1 week ago. Read the msg below for the problem. -----Original Message----- From: "Gabriel Rossetti" Date: Mon, 16 Jul 2001 06:54:44 +0800 To: high@bsdmail.org Subject: Fw: failure notice > > -----Original Message----- > From: MAILER-DAEMON@ws2-2.us4.outblaze.com > Sent: 15 Jul 2001 20:25:25 -0000 > To: rossettigab@email.com > Subject: failure notice > > Hi. This is the qmail-send program at ws2-2.us4.outblaze.com. > I'm afraid I wasn't able to deliver your message to the following addresses. > This is a permanent error; I've given up. Sorry it didn't work out. > > : > 216.136.204.18 does not like recipient. > Remote host said: 554 : Sender address rejected: Access denied <---- WHY??? > Giving up on 216.136.204.18. > > --- Below this line is a copy of the message. > > Return-Path: > Received: (qmail 13899 invoked by uid 1001); 15 Jul 2001 20:25:18 -0000 > Message-ID: <20010715202518.13898.qmail@email.com> > Content-Type: text/plain; charset="iso-8859-1" > Content-Disposition: inline > Content-Transfer-Encoding: 7bit > MIME-Version: 1.0 > X-Mailer: MIME-tools 5.41 (Entity 5.404) > Received: from ws3-3.us4.outblaze.com for [212.254.41.12] via web-mailer > on Mon, 16 Jul 2001 04:25:18 +0800 > From: "Gabriel Rossetti" > To: freebsd-questions@FreeBSD.ORG > Date: Mon, 16 Jul 2001 04:25:18 +0800 > Subject: Read This! FreeBSD Security hole found! > > Hello, > Please read this. I found it while surfing around. >Please tell me what you think. Thanks! > >http://www.astalavista.com/advisories/freebsd/071101_localroot.shtml > > > Gabriel Rossetti (Happy FreeBSD User) PS I know it says you have been advised, but I wanted to make sure. -- Get your free email from http://www.bsdmail.org Powered by Outblaze To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 18:58:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from secure.child.net.au (gw.child.net.au [139.130.214.37]) by hub.freebsd.org (Postfix) with ESMTP id D445D37B401 for ; Sun, 15 Jul 2001 18:58:36 -0700 (PDT) (envelope-from child@child.net.au) Received: from home.child.net.au (safe.child.net.au [203.44.100.2]) by secure.child.net.au (8.9.3/8.9.3) with ESMTP id LAA43206 for ; Mon, 16 Jul 2001 11:51:11 +1000 (EST) (envelope-from child@child.net.au) Message-Id: <5.0.0.25.0.20010716120202.00a07eb0@mx.child.net.au> X-Sender: child@mx.child.net.au X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Mon, 16 Jul 2001 12:02:43 -0700 To: questions@freebsd.org From: Child Subject: deleted /dev/null by mistake 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 hi all one of my shell scripts did an rm -f /dev/null just wondering how I recreate it thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 19: 8: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tecdigital.net (tecdigital.tol.itesm.mx [132.254.97.16]) by hub.freebsd.org (Postfix) with SMTP id 6AA1937B40A for ; Sun, 15 Jul 2001 19:07:57 -0700 (PDT) (envelope-from madd@tecdigital.net) Received: (qmail 56080 invoked from network); 16 Jul 2001 02:07:47 -0000 Received: from unknown (HELO Valk) (madd@127.0.0.1) by localhost with SMTP; 16 Jul 2001 02:07:47 -0000 Message-ID: <002401c10d9c$1a250ea0$0a00a8c0@Valk> From: "Mario Doria" To: , "Child" References: <5.0.0.25.0.20010716120202.00a07eb0@mx.child.net.au> Subject: Re: deleted /dev/null by mistake Date: Sun, 15 Jul 2001 21:07:43 -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 Do: cd /dev sh MAKEDEV all ----- Original Message ----- From: "Child" To: Sent: Monday, July 16, 2001 2:02 pm Subject: deleted /dev/null by mistake > hi all > one of my shell scripts did an rm -f /dev/null > > just wondering how I recreate it > > thanks! > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 19: 8:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ren.sasknow.com (ren.sasknow.com [207.195.92.131]) by hub.freebsd.org (Postfix) with ESMTP id 845C837B40A for ; Sun, 15 Jul 2001 19:08:35 -0700 (PDT) (envelope-from ryan@sasknow.com) Received: from localhost (ryan@localhost) by ren.sasknow.com (8.9.3/8.9.3) with ESMTP id UAA36345; Sun, 15 Jul 2001 20:08:28 -0600 (CST) (envelope-from ryan@sasknow.com) Date: Sun, 15 Jul 2001 20:08:28 -0600 (CST) From: Ryan Thompson To: Child Cc: questions@FreeBSD.ORG Subject: Re: deleted /dev/null by mistake In-Reply-To: <5.0.0.25.0.20010716120202.00a07eb0@mx.child.net.au> Message-ID: Organization: SaskNow Technologies [www.sasknow.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 Child wrote to questions@FreeBSD.ORG: > hi all > one of my shell scripts did an rm -f /dev/null Don't do that ;-) > just wondering how I recreate it As root, of course: rm null; mknod null c 2 2; chmod 666 null > thanks! > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- Ryan Thompson Network Administrator, Accounts SaskNow Technologies - http://www.sasknow.com #106-380 3120 8th St E - Saskatoon, SK - S7H 0W2 Tel: 306-664-3600 Fax: 306-664-1161 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 19:10: 3 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 E4A5B37B409 for ; Sun, 15 Jul 2001 19:09:56 -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 f6G2A3X09397; Sun, 15 Jul 2001 21:10:03 -0500 (EST) (envelope-from rlucas@solidcomputing.com) Date: Sun, 15 Jul 2001 21:10:03 -0500 (EST) From: Richard Lucas X-X-Sender: To: Metal Head Cc: Subject: Re: Fw: failure notice + FreeBSD Security hole found! In-Reply-To: <20010716015540.5858.qmail@bsdmail.org> Message-ID: <20010715210617.N9376-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 Mon, 16 Jul 2001, Metal Head wrote: > Hello, > Why did this e-mail address(rossettigab@email.com) get rejected? I just created it 1 week ago. Read the msg below for the problem. There is no reverse dns to the domain. jcs1a.faxsav.com is an authorative nameserver for email.com. >nslookup email.com 209.67.18.65 Server: jcs1a.faxsav.com Address: 209.67.18.65 Name: email.com Address: 202.123.209.131 >nslookup 202.127.209.131 209.67.18.65 Server: jcs1a.faxsav.com Address: 209.67.18.65 *** jcs1a.faxsav.com can't find 202.127.209.131: Non-existent host/domain Some mail servers, including the FreeBSD one, requires there be reverse dns entries to accept mail. -Richard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 19:13:45 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 D1DC837B405 for ; Sun, 15 Jul 2001 19:13:40 -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 f6G2DqO09407; Sun, 15 Jul 2001 21:13:52 -0500 (EST) (envelope-from rlucas@solidcomputing.com) Date: Sun, 15 Jul 2001 21:13:52 -0500 (EST) From: Richard Lucas X-X-Sender: To: Metal Head Cc: Subject: Re: Fw: failure notice + FreeBSD Security hole found! In-Reply-To: <20010715210617.N9376-100000@mx2.threeh.com> Message-ID: <20010715211229.K9376-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 Ignore my whole thing here....I typoed. :) nslookup 202.123.209.131 209.67.18.65 Server: jcs1a.faxsav.com Address: 209.67.18.65 Name: 202-123-209-131.outblaze.com Address: 202.123.209.131 Ok so there is reverse dns for it. In that case I have no idea. -Richard On Sun, 15 Jul 2001, Richard Lucas wrote: > > On Mon, 16 Jul 2001, Metal Head wrote: > > > Hello, > > Why did this e-mail address(rossettigab@email.com) get rejected? I just created it 1 week ago. Read the msg below for the problem. > > There is no reverse dns to the domain. > > jcs1a.faxsav.com is an authorative nameserver for email.com. > > >nslookup email.com 209.67.18.65 > Server: jcs1a.faxsav.com > Address: 209.67.18.65 > > Name: email.com > Address: 202.123.209.131 > > >nslookup 202.127.209.131 209.67.18.65 > Server: jcs1a.faxsav.com > Address: 209.67.18.65 > > *** jcs1a.faxsav.com can't find 202.127.209.131: Non-existent host/domain > > > Some mail servers, including the FreeBSD one, requires there be reverse > dns entries to accept mail. > > > -Richard > > > 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 15 19:13:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail5.carolina.rr.com (fe5.southeast.rr.com [24.93.67.52]) by hub.freebsd.org (Postfix) with ESMTP id EF3D337B403 for ; Sun, 15 Jul 2001 19:13:44 -0700 (PDT) (envelope-from khayman@carolina.rr.com) Received: from carolina.rr.com ([66.56.142.216]) by mail5.carolina.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Sun, 15 Jul 2001 22:13:42 -0400 Message-ID: <3B524DD6.9B622A0E@carolina.rr.com> Date: Sun, 15 Jul 2001 22:13:42 -0400 From: khayman 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: routing not working 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 Greetings all, First time poster and newbie, so I apologize in advance for any ignorance. Here is my problem: I have built a FreeBSD firewall with IPFilter based on instructions by Marty Schlacter from www.schlacter.dyndns.org. The thing won't route tho. My routing table looks like this: Destination Gateway flags refs use Netif Expire default 192.168.1.1 UGSc 0 3 de0 10.10.10/24 link#1 UC 1 0 dc0 => localhost localhost UH 0 0 lo0 192.168.1 link#2 UC 3 0 de0 => I have a linksys 4 port router/firewall outside the 192.x interface which in turn connects to a cable modem. The goal is to get rid of the linksys and have the cbl modem come directly into the BSD firewall. My rc.conf file looks like this: gateway_enable="YES" network_interfaces="de0 dc0 lo0" ifconfig_de0="DHCP" ifconfig_dc0="inet 10.10.10.1 netmask 255.255.255.0" . . ipfilter_enable="YES" ipnat_enable="YES" .. (let me know if that's not enough info on the rc.conf file. When i ping anything except a local interface, I get a "ping: send to: No route to host". Any suggestions on where to look to see what I've screwed up? thanx, k. ps: If and when I get this working properly, does anyone know if I'll be able to pass a CheckPoint SecuRemote client thru the firewall?? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 19:18:56 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 CE8E137B403 for ; Sun, 15 Jul 2001 19:18:52 -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 <0GGJ00HKYNNMSV@mta8.srv.hcvlny.cv.net> for questions@FreeBSD.ORG; Sun, 15 Jul 2001 22:16:34 -0400 (EDT) Date: Sun, 15 Jul 2001 22:16:55 -0400 From: Gerard Samuel Subject: Re: deleted /dev/null by mistake To: Child Cc: FreeBSD Questions Message-id: <3B524E96.22C269EB@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: <5.0.0.25.0.20010716120202.00a07eb0@mx.child.net.au> Sender: owner-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 but I believe a ./sh MAKEDEV all while under /dev should do the trick.... Child wrote: > hi all > one of my shell scripts did an rm -f /dev/null > > just wondering how I recreate it > > thanks! > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 19:25:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mg.hk5.outblaze.com (202-123-209-152.outblaze.com [202.123.209.152]) by hub.freebsd.org (Postfix) with ESMTP id 41BEE37B401 for ; Sun, 15 Jul 2001 19:25:55 -0700 (PDT) (envelope-from high@bsdmail.org) Received: from ws4.us.outblaze.com (ws4.us.outblaze.com [209.249.164.192]) by mg.hk5.outblaze.com (8.11.2/8.11.2) with SMTP id f6G2Prt08027 for ; Mon, 16 Jul 2001 02:25:53 GMT Received: (qmail 8988 invoked by uid 1001); 16 Jul 2001 02:25:53 -0000 Message-ID: <20010716022553.8987.qmail@bsdmail.org> Content-Type: text/plain; charset="iso-8859-1" Content-Disposition: inline Content-Transfer-Encoding: 7bit Mime-Version: 1.0 X-Mailer: MIME-tools 4.104 (Entity 4.117) Received: from ws4.us.outblaze.com for [212.254.41.88] via web-mailer on Mon, 16 Jul 2001 10:25:53 +0800 From: "Metal Head" To: freebsd-questions@FreeBSD.org Date: Mon, 16 Jul 2001 10:25:53 +0800 Subject: FreeBSD Security hole found Sender: owner-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 read this. I found it while surfing around. Please tell me what you think. Thanks! http://www.astalavista.com/advisories/freebsd/071101_localroot.shtml Gabriel Rossetti (Happy FreeBSD User) PS I know the msg says you where contacted for this security hole, but I wasn't sure if it was true. -- Get your free email from http://www.bsdmail.org Powered by Outblaze To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 19:27:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ren.sasknow.com (ren.sasknow.com [207.195.92.131]) by hub.freebsd.org (Postfix) with ESMTP id 2836E37B401 for ; Sun, 15 Jul 2001 19:27:41 -0700 (PDT) (envelope-from ryan@sasknow.com) Received: from localhost (ryan@localhost) by ren.sasknow.com (8.9.3/8.9.3) with ESMTP id UAA38704; Sun, 15 Jul 2001 20:27:32 -0600 (CST) (envelope-from ryan@sasknow.com) Date: Sun, 15 Jul 2001 20:27:32 -0600 (CST) From: Ryan Thompson To: Gerard Samuel Cc: Child , FreeBSD Questions Subject: Re: deleted /dev/null by mistake In-Reply-To: <3B524E96.22C269EB@optonline.net> Message-ID: Organization: SaskNow Technologies [www.sasknow.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 Gerard Samuel wrote to Child: > Im not sure but I believe a ./sh MAKEDEV all while under /dev should > do the trick.... Yes, that certainly will do the trick, but it just seems like a mighty big sledgehammer to crack a little bitty walnut :-) (And, sorry to respond to you and not the other poster who suggested the same thing ;-) See my previous post if you haven't already. Both approaches will work, though, so use whatever you are most comfortable with. - Ryan > Child wrote: > > > hi all > > one of my shell scripts did an rm -f /dev/null > > > > just wondering how I recreate it > > > > thanks! > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- Ryan Thompson Network Administrator, Accounts SaskNow Technologies - http://www.sasknow.com #106-380 3120 8th St E - Saskatoon, SK - S7H 0W2 Tel: 306-664-3600 Fax: 306-664-1161 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 19:31: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ren.sasknow.com (ren.sasknow.com [207.195.92.131]) by hub.freebsd.org (Postfix) with ESMTP id CD93A37B405 for ; Sun, 15 Jul 2001 19:31:02 -0700 (PDT) (envelope-from ryan@sasknow.com) Received: from localhost (ryan@localhost) by ren.sasknow.com (8.9.3/8.9.3) with ESMTP id UAA39101; Sun, 15 Jul 2001 20:30:58 -0600 (CST) (envelope-from ryan@sasknow.com) Date: Sun, 15 Jul 2001 20:30:58 -0600 (CST) From: Ryan Thompson To: Metal Head Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD Security hole found In-Reply-To: <20010716022553.8987.qmail@bsdmail.org> Message-ID: Organization: SaskNow Technologies [www.sasknow.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 Metal Head wrote to freebsd-questions@FreeBSD.ORG: > Hello, > > Please read this. I found it while surfing around. Please tell me what you think. Thanks! > > http://www.astalavista.com/advisories/freebsd/071101_localroot.shtml This was corrected on 07/09 and announced on 07/10. The notice you are referring to on astalavista.com is dated 07/11. See security advisory FreeBSD-SA-01:42. cvsup to the latest -STABLE, or get the patch mentioned in the advisory. > I know the msg says you where contacted for this security hole, but > I wasn't sure if it was true. > -- Ryan Thompson Network Administrator, Accounts SaskNow Technologies - http://www.sasknow.com #106-380 3120 8th St E - Saskatoon, SK - S7H 0W2 Tel: 306-664-3600 Fax: 306-664-1161 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 19:59:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.ica.net (icamail.ica.net [209.151.129.144]) by hub.freebsd.org (Postfix) with ESMTP id 231ED37B401 for ; Sun, 15 Jul 2001 19:59:44 -0700 (PDT) (envelope-from brianlee@ica.net) Received: from ica.net (unverified [209.151.129.137]) by mail.ica.net (Vircom SMTPRS 4.5.186) with SMTP id for ; Sun, 15 Jul 2001 23:01:47 -0400 Message-ID: <18692001711631054218@ica.net> X-EM-Version: 5, 0, 0, 4 X-EM-Registration: #00D0530210911E009A00 X-Priority: 3 X-Mailer: Vop Mail Web Version 1.2(8) X-IP-Address: 209.151.141.63 From: brianlee@ica.net To: freebsd-questions@freebsd.org Subject: Root mount failed: 6 Date: Sun, 15 Jul 2001 23:10:54 -0400 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Sender: owner-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 the FreeBSD O/S (version 4.3), I just recompiled my first custom Kernel today and well it didn't work out too well. I compiled but it fails on boot up. I get the following error message Mounting Root from ufs: /dev/ad4s1a Root mount failed: 6 Mounting root from ufs: wd0s1a swap: /dev/ad4s1b: Device not configured Automatic boot in progress can't open /dev/ad4s1a: Device not configured /dev/ad4s1a: Can't check file system thats most of the error message than is says press enter to use /bin/sh it boots me to the prompt. When I boot with kernal.old (the origional unmodified kernal it works fine) My system specs are as follows: Dual Intel Pentium III 733MHz 256MB PC133 Ram 20 GIG ATA100 HD MSI 694D Pro MotherBoard ATI 32MB Radeon Creative Labs Sound Blaster Value 40X IDE CD-ROM Microsoft Intelli Point USB Mouse Microsoft Natural PS/2 Keyboard My Custom Kernel ---------------------------------------------- # # GENERIC -- 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 I686_CPU ident MYKERNAL maxusers 50 #makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols #options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking #options INET6 #IPv6 communications protocols options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options MFS #Memory Filesystem options MD_ROOT #MD is a potential root device #options NFS #Network Filesystem #options NFS_ROOT #NFS usable as root device, NFS required #options MSDOSFS #MSDOS Filesystem options CD9660 #ISO 9660 Filesystem options CD9660_ROOT #CD-ROM usable as root, CD9660 required options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] #options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev # To make an SMP kernel, the next two are needed options SMP # Symmetric MultiProcessor Kernel options APIC_IO # Symmetric (APIC) I/O device isa #device eisa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 #device fd1 at fdc0 drive 1 # ATA and ATAPI devices #device ata0 at isa? port IO_WD1 irq 14 #device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives #device atapist # ATAPI tape drives #options ATA_STATIC_ID #Static device numbering # SCSI Controllers #device ahb # EISA AHA1742 family #device ahc # AHA2940 and onboard AIC7xxx devices #device amd # AMD 53C974 (Tekram DC-390(T)) #device isp # Qlogic family #device ncr # NCR/Symbios Logic #device sym # NCR/Symbios Logic (newer chipsets) #options SYM_SETUP_LP_PROBE_MAP=0x40 # Allow ncr to attach legacy NCR devices when # both sym and ncr are configured #device adv0 at isa? #device adw #device bt0 at isa? #device aha0 at isa? #device aic0 at isa? #device ncv # NCR 53C500 #device nsp # Workbit Ninja SCSI-3 #device stg # TMC 18C30/18C50 # SCSI peripherals #device scbus # SCSI bus (required) #device da # Direct Access (disks) #device sa # Sequential Access (tape etc) #device cd # CD #device pass # Passthrough device (direct SCSI access) # RAID controllers interfaced to the SCSI subsystem #device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID #device dpt # DPT Smartcache - See LINT for options! #device mly # Mylex AcceleRAID/eXtremeRAID # RAID controllers #device aac # Adaptec FSA RAID, Dell PERC2/PERC3 #device ida # Compaq Smart RAID #device amr # AMI MegaRAID #device mlx # Mylex DAC960 family #device twe # 3ware Escalade # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 #device psm0 at atkbdc? irq 12 device vga0 at isa? # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines #options PCVT_SCANSET=2 # IBM keyboards are non-std # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) device apm0 at nexus? disable flags 0x20 # Advanced Power Management # PCCARD (PCMCIA) support #device card #device pcic0 at isa? irq 0 port 0x3e0 iomem 0xd0000 #device pcic1 at isa? irq 0 port 0x3e2 iomem 0xd4000 disable # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 device sio2 at isa? disable port IO_COM3 irq 5 device sio3 at isa? disable port IO_COM4 irq 9 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer #device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs. #device de # DEC/Intel DC21x4x (``Tulip'') #device fxp # Intel EtherExpress PRO/100B (82557, 82558) #device tx # SMC 9432TX (83c170 ``EPIC'') #device vx # 3Com 3c590, 3c595 (``Vortex'') #device wx # Intel Gigabit Ethernet Card (``Wiseman'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support #device dc # DEC/Intel 21143 and various workalikes #device pcn # AMD Am79C79x PCI 10/100 NICs device rl # RealTek 8129/8139 #device sf # Adaptec AIC-6915 (``Starfire'') #device sis # Silicon Integrated Systems SiS 900/SiS 7016 #device ste # Sundance ST201 (D-Link DFE-550TX) #device tl # Texas Instruments ThunderLAN #device vr # VIA Rhine, Rhine II #device wb # Winbond W89C840F #device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. #device ed0 at isa? port 0x280 irq 10 iomem 0xd8000 #device ex #device ep #device fe0 at isa? port 0x300 # Xircom Ethernet #device xe # PRISM I IEEE 802.11b wireless NIC. #device awi # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really # exists only as a PCMCIA device, so there is no ISA attachment needed # and resources will always be dynamically assigned by the pccard code. #device wi # Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below will # work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP # mode (the factory default). If you set the switches on your ISA # card for a manually chosen I/O address and IRQ, you must specify # those parameters here. #device an # The probe order of these is presently determined by i386/isa/isa_compat.c. #device ie0 at isa? port 0x300 irq 10 iomem 0xd0000 #device le0 at isa? port 0x300 irq 5 iomem 0xd0000 #device lnc0 at isa? port 0x280 irq 10 drq 0 #device cs0 at isa? port 0x300 #device sn0 at isa? port 0x300 irq 10 # Pseudo devices - the number indicates how many units to allocate. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support #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 #device uhci # UHCI PCI->USB interface #device ohci # OHCI PCI->USB interface device usb # USB Bus (required) device ugen # Generic device uhid # "Human Interface Devices" #device ukbd # Keyboard #device ulpt # Printer #device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse #device uscanner # Scanners # USB Ethernet, requires mii #device aue # ADMtek USB ethernet #device cue # CATC USB ethernet #device kue # Kawasaki LSI USB ethernet --------------------------------------------------------------------- Best Regards, Brian Lee To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 20: 1: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sharmas.dhs.org (cpe-66-1-147-119.ca.sprintbbd.net [66.1.147.119]) by hub.freebsd.org (Postfix) with ESMTP id 5531037B401 for ; Sun, 15 Jul 2001 20:01:02 -0700 (PDT) (envelope-from adsharma@sharmas.dhs.org) Received: by sharmas.dhs.org (Postfix, from userid 500) id DECEE5DD94; Sun, 15 Jul 2001 20:01:02 -0700 (PDT) Date: Sun, 15 Jul 2001 20:01:02 -0700 From: Arun Sharma To: questions@freebsd.org Subject: NFS mount Linux Mandrake 8.0 -> FreeBSD 4.3-STABLE hang Message-ID: <20010715200102.A19948@sharmas.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.15i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I use amd to NFS mount /net//foo and then try: $ cp /net/*/foo/bar to /tmp For small files, it works ok. For anything larger than a few kilobytes, cp hangs. So does any command that does any directory operations on /tmp. ps shows the cp process as "DL+" (L = locked pages in core according to man). All other processes operating on /tmp show "inode" in WCHAN. What am I doing wrong ? Is this a block size kind of issue ? omni $ mount | grep home eagle:/home on /.amd_mnt/eagle/host/home (nfs, nodev, nosuid) omni $ showmount -e eagle Exports list on eagle: /usr/local 192.168.0.0/255.255.0.0 /home 192.168.0.0/255.255.0.0 omni $ uname -a FreeBSD omni.mirabella.net 4.3-STABLE FreeBSD 4.3-STABLE #3: Fri Jun 22 20:28:18 PDT 2001 root@omni.mirabella.net:/usr/src/sys/compile/omni i386 -Arun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 20: 3: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe48.law10.hotmail.com [64.4.14.20]) by hub.freebsd.org (Postfix) with ESMTP id 5CFE137B406 for ; Sun, 15 Jul 2001 20:03:04 -0700 (PDT) (envelope-from mheitmeier@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 15 Jul 2001 20:03:04 -0700 X-Originating-IP: [64.34.181.113] From: "Michael" To: Subject: PCMCIA/Flash Card Support Date: Sun, 15 Jul 2001 20:03:03 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_00BD_01C10D69.27B783F0" 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 Message-ID: X-OriginalArrivalTime: 16 Jul 2001 03:03:04.0161 (UTC) FILETIME=[D4A6B510:01C10DA3] Sender: owner-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_00BD_01C10D69.27B783F0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I'm looking for a hardware solution that allows the use of a compact = flash card instead of a hard disk. There is a reader/writer that will = interface with these things but I was so far not able to find out if = support exists for this = interface.(http://www.antec-inc.com/product/pc_card/datachut.html) Does anybody know if this is supported or if there are other solutions = that enable access to compact flash cards? My ideal system would even be able to boot from a compact flash card. Any hint, ideas or advice are much appreciated! Thanks, Michael ------=_NextPart_000_00BD_01C10D69.27B783F0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I'm looking for a hardware solution = that allows the=20 use of a compact flash card instead of a hard disk. There is a=20 reader/writer that will interface with these things but I was so far not = able to=20 find out if support exists for this interface.(http://ww= w.antec-inc.com/product/pc_card/datachut.html)
Does anybody know if this is supported = or if there=20 are other solutions that enable access to compact flash = cards?
 
My ideal system would even be able to = boot from a=20 compact flash card.
 
Any hint, ideas or advice are much=20 appreciated!
 
 
Thanks,
 
Michael
------=_NextPart_000_00BD_01C10D69.27B783F0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 20: 4:27 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 7B34137B401 for ; Sun, 15 Jul 2001 20:04:22 -0700 (PDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.11.4/8.11.4) id f6G34GH05674; Sun, 15 Jul 2001 22:04:16 -0500 (CDT) (envelope-from dan) Date: Sun, 15 Jul 2001 22:04:15 -0500 From: Dan Nelson To: Arun Sharma Cc: questions@FreeBSD.ORG Subject: Re: NFS mount Linux Mandrake 8.0 -> FreeBSD 4.3-STABLE hang Message-ID: <20010715220415.A3289@dan.emsphone.com> References: <20010715200102.A19948@sharmas.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010715200102.A19948@sharmas.dhs.org> 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 15), Arun Sharma said: > I use amd to NFS mount /net//foo > > and then try: > > $ cp /net/*/foo/bar to /tmp > > For small files, it works ok. For anything larger than a few kilobytes, > cp hangs. So does any command that does any directory operations on > /tmp. Try tcpdumping both machines. NFS prefers to use 8K data packets, so if you've got a broken router inbetween the two boxes, the packets may get dropped instead of fragmented. Going to TCP NFS mounts will fix it, if that is the problem. -- 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 Sun Jul 15 20: 5:21 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 27A8D37B401 for ; Sun, 15 Jul 2001 20:05:17 -0700 (PDT) (envelope-from greid@FreeBSD.org) Received: from sobek.lan ([62.252.12.44]) by mta02-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20010716030512.DSZQ294.mta02-svc.ntlworld.com@sobek.lan>; Mon, 16 Jul 2001 04:05:12 +0100 Date: Mon, 16 Jul 2001 04:05:08 +0100 (BST) From: George Reid X-Sender: greid@sobek.openirc.co.uk To: brianlee@ica.net Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Root mount failed: 6 In-Reply-To: <18692001711631054218@ica.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, 15 Jul 2001 brianlee@ica.net wrote: [...] > device atapicd # ATAPI CDROM drives > device atapifd # ATAPI floppy drives > #device atapist # ATAPI tape drives > #options ATA_STATIC_ID #Static device numbering [...] It is unwise to comment out an option if you have no idea what it does. Re-enable ATA_STATIC_ID. -- +-------------------+---------------------+ | George Reid | FreeBSD Committer | | +44 7740 197460 | greid@FreeBSD.org | +-------------------+---------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 20: 7:16 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 C67AC37B405 for ; Sun, 15 Jul 2001 20:07:04 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id D925D6ACBC; Mon, 16 Jul 2001 12:36:47 +0930 (CST) Date: Mon, 16 Jul 2001 12:36:47 +0930 From: Greg Lehey To: Metal Head Cc: freebsd-questions@FreeBSD.org Subject: Re: FreeBSD Security hole found Message-ID: <20010716123647.K24152@wantadilla.lemis.com> References: <20010716022553.8987.qmail@bsdmail.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010716022553.8987.qmail@bsdmail.org>; from high@bsdmail.org on Mon, Jul 16, 2001 at 10:25:53AM +0800 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] Lines are uncomfortably long. On Monday, 16 July 2001 at 10:25:53 +0800, Metal Head wrote: > Hello, > > Please read this. I found it while surfing around. Please tell > me what you think. Thanks! > > http://www.astalavista.com/advisories/freebsd/071101_localroot.shtml I think the bottom line is the bottom line: Workaround/Soltution: As far as I know patches for this problem are commited for both -current and -stable. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 20: 9:14 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 C35E737B403 for ; Sun, 15 Jul 2001 20:09:02 -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 XAA01060 for ; Sun, 15 Jul 2001 23:08:56 -0400 (EDT) Received: from CONVERSION-DAEMON by lmco.com (PMDF V5.2-32 #38890) id <0GGJ00O01Q2W7A@lmco.com> for FreeBSD-questions@freebsd.org; Sun, 15 Jul 2001 23:08:56 -0400 (EDT) Received: from serling.motown.lmco.com ([129.204.6.42]) by lmco.com (PMDF V5.2-32 #38890) with ESMTP id <0GGJ00DPXQ2RB8@lmco.com> for FreeBSD-questions@freebsd.org; Sun, 15 Jul 2001 23:08:51 -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 XAA26282 for ; Sun, 15 Jul 2001 23:08:50 -0400 (EDT) Date: Sun, 15 Jul 2001 22:59:20 -0400 From: "Leo S. Boegly" Subject: C/C++ Programming & IDE's To: FreeBSD Message-id: <3B525888.B1C83CA9@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! Looking for some help. I'm trying to find a good C/C++ Integrated Development Environment(IDE) that will run under FreeBSD 4.2 or better. I'm looking to get into network programming and device driver development. If anyone out their can point me "to/away from" some IDE's, it would be 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 15 20:25:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id 5FA9437B401 for ; Sun, 15 Jul 2001 20:25:36 -0700 (PDT) (envelope-from reyn@commonroads.org) Received: from martha (user-2iveqpn.dialup.mindspring.com [165.247.107.55]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with SMTP id XAA07255 for ; Sun, 15 Jul 2001 23:25:34 -0400 (EDT) From: "Matt Winslow" To: "freebsd" Subject: Crontab issues Date: Sun, 15 Jul 2001 23:28:26 -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) 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 OK, I've reached my limit with being patient and trying to do it myself. I am trying to get a .pl script to run every 10 minutes. the script is executable, and if I type /usr/home/matt/dtdns.pl it will run just fine, and end (which it's supposed to do.) I made a crontab for my username (matt) as follows */10 * * * * /usr/bin/perl /usr/home/matt/dtdns.pl cron does see the item and run it (or so it thinks), but when I do a "ps ax" it shows it has been running for a while, and there are a few instances of it. All the PERL script does is update my IP with a Dynamic DNS host...is there something I'm missing? The proccesses that run are (for each 10 minutes): 548 Is /bin/sh -c /usr/bin/perl /usr/home/matt/dtdns.pl 550 R /usr/bin/perl /usr/home/matt/dtdns.pl Any help would be great! I've been racking my mind and every site I could think of. Matt Winslow http://matt.mortalcity.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 15 20:26: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kobold.compt.com (TBextgw.compt.com [209.115.146.18]) by hub.freebsd.org (Postfix) with ESMTP id D2C5E37B408 for ; Sun, 15 Jul 2001 20:26:05 -0700 (PDT) (envelope-from klaus@kobold.compt.com) Date: Sun, 15 Jul 2001 23:25:50 -0400 From: Klaus Steden To: Child Cc: questions@FreeBSD.ORG Subject: Re: deleted /dev/null by mistake Message-ID: <20010715232550.J73359@cthulu.compt.com> References: <5.0.0.25.0.20010716120202.00a07eb0@mx.child.net.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5.0.0.25.0.20010716120202.00a07eb0@mx.child.net.au>; from child@child.net.au on Mon, Jul 16, 2001 at 12:02:43PM -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 > hi all > one of my shell scripts did an rm -f /dev/null > (cd /dev && sh MAKEDEV) should do it (as root), or by hand ... mknod /dev/null c 2 2 Klaus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 20:45:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hp06.postech.ac.kr (smtp.postech.ac.kr [141.223.2.1]) by hub.freebsd.org (Postfix) with ESMTP id 6D6F937B401 for ; Sun, 15 Jul 2001 20:45:44 -0700 (PDT) (envelope-from lahaye@users.sourceforge.net) Received: from users.sourceforge.net (surfion4.postech.ac.kr [141.223.126.84]) by hp06.postech.ac.kr (8.9.3/8.9.3) with ESMTP id MAA01991 for ; Mon, 16 Jul 2001 12:46:33 +0900 (JST) Message-ID: <3B5263B7.21975928@users.sourceforge.net> Date: Mon, 16 Jul 2001 12:47:03 +0900 From: "R. Lahaye" Organization: Postech X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Subject: HELP: printer-cups setup "http://localhost:631" doesn't work ?!?! Content-Type: text/plain; charset=x-user-defined 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, First of all: I'm very new to FreeBSD! I have installed cups on my FBSD 4.3 PC from the package cups-1.1.6.2.tgz. I figured that http://localhost:631/ is *THE* interface for setting up a printer-connection on my PC. Is that right?. When I do that, I get the administration page of CUPS. Great! Clicking on 'Administration' and next on 'Add Printer', allows me to enter Name/Location/Description of a new printer. However, when I click on , I get: --------------------------------------------------------------------------------- | Request Entity Too Large | | The request is too large for this server to process. HTTP/1.0 413 Request Entity | Too Large Date: Mon, 16 Jul 2001 03:36:24 GMT Server: CUPS/1.1 Content-Language: | en Content-Type: text/html Content-Length: 168 | | Request Entity Too Large | | The request is too large for this server to process. --------------------------------------------------------------------------------- Any idea why this is not working? This whole concept works just fine on one of my Linux PC's, (that has cups 1.1.9 installed). I'm desperately wanting to add some printers to my FreeBSD system, through the network. Haven't found out yet a way of doing that. PLEASE HELP!! Thanks so much, Rob. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 21:29:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from guild.plethora.net (guild.plethora.net [205.166.146.8]) by hub.freebsd.org (Postfix) with ESMTP id 4450837B403 for ; Sun, 15 Jul 2001 21:29:29 -0700 (PDT) (envelope-from seebs@plethora.net) Received: from guild.plethora.net (seebs@localhost.plethora.net [127.0.0.1]) by guild.plethora.net (8.11.2/8.10.1) with ESMTP id f6G4TRv03293 for ; Sun, 15 Jul 2001 23:29:28 -0500 (CDT) Message-Id: <200107160429.f6G4TRv03293@guild.plethora.net> From: seebs@plethora.net (Peter Seebach) Reply-To: seebs@plethora.net (Peter Seebach) To: freebsd-questions@FreeBSD.ORG Subject: Re: CD-ROM compatability In-reply-to: Your message of "Sun, 15 Jul 2001 17:03:58 CDT." <01071517035801.21898@katana.amberskogg.dns2go.com> Date: Sun, 15 Jul 2001 23:29:27 -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 In message <01071517035801.21898@katana.amberskogg.dns2go.com>, Jim Couch write s: >Does it help to know that I have the same drive on an H-P Vectra and DFI >motherboards and do not get anykind of glitches in installation or usage? >Jim C. Ugh. It would suck if it were a ServerWorks problem. -s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 21:30:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from guild.plethora.net (guild.plethora.net [205.166.146.8]) by hub.freebsd.org (Postfix) with ESMTP id BDE4C37B401 for ; Sun, 15 Jul 2001 21:30:51 -0700 (PDT) (envelope-from seebs@plethora.net) Received: from guild.plethora.net (seebs@localhost.plethora.net [127.0.0.1]) by guild.plethora.net (8.11.2/8.10.1) with ESMTP id f6G4Upv03430 for ; Sun, 15 Jul 2001 23:30:51 -0500 (CDT) Message-Id: <200107160430.f6G4Upv03430@guild.plethora.net> From: seebs@plethora.net (Peter Seebach) Reply-To: seebs@plethora.net (Peter Seebach) To: freebsd-questions@freebsd.org Subject: Re: CD-ROM compatability In-reply-to: Your message of "Sun, 15 Jul 2001 20:24:53 EDT." <20010715202453.C10278@localhost> Date: Sun, 15 Jul 2001 23:30:51 -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 In message <20010715202453.C10278@localhost>, User & Ian Patrick Thomas writes: > I also use a Creative Labs 52x CDROM, but with no difficulties. I >think you may be on the right track in suspecting some strange behaviour >from the IDE controllers. I have also read that running a CDROM on a UDMA >66 controller can cause problems. Hmm. Well, I think the controller can do UDMA. I don't suppose there's a way to set flags, or otherwise tell the driver to not attempt DMA? In BSD/OS, this'd be something like -parm wdpi0 flags=nodma -s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 21:45:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sharmas.dhs.org (cpe-66-1-147-119.ca.sprintbbd.net [66.1.147.119]) by hub.freebsd.org (Postfix) with ESMTP id 77F0437B403 for ; Sun, 15 Jul 2001 21:45:26 -0700 (PDT) (envelope-from adsharma@sharmas.dhs.org) Received: by sharmas.dhs.org (Postfix, from userid 500) id 07F625DD94; Sun, 15 Jul 2001 21:45:38 -0700 (PDT) Date: Sun, 15 Jul 2001 21:45:38 -0700 From: Arun Sharma To: Dan Nelson Cc: questions@FreeBSD.ORG Subject: Re: NFS mount Linux Mandrake 8.0 -> FreeBSD 4.3-STABLE hang Message-ID: <20010715214538.A20260@sharmas.dhs.org> References: <20010715200102.A19948@sharmas.dhs.org> <20010715220415.A3289@dan.emsphone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.15i In-Reply-To: <20010715220415.A3289@dan.emsphone.com>; from dnelson@emsphone.com on Sun, Jul 15, 2001 at 10:04:15PM -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 15, 2001 at 10:04:15PM -0500, Dan Nelson wrote: > In the last episode (Jul 15), Arun Sharma said: > > I use amd to NFS mount /net//foo > > > > and then try: > > > > $ cp /net/*/foo/bar to /tmp > > > > For small files, it works ok. For anything larger than a few kilobytes, > > cp hangs. So does any command that does any directory operations on > > /tmp. > > Try tcpdumping both machines. NFS prefers to use 8K data packets, so > if you've got a broken router inbetween the two boxes, the packets may > get dropped instead of fragmented. Going to TCP NFS mounts will fix > it, if that is the problem. Actually, I figured out that the cp doesn't hang, but takes a *long* time - longer than it takes to transfer the file via scp over the same interface. tcpdump shows that NFS is using 8kb block size, but packets get fragmented because I'm on a wireless network with a MTU < 2k. -Arun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 22: 0:41 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 DA6FE37B448 for ; Sun, 15 Jul 2001 22:00:28 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.209] (helo=mrvdom02.kundenserver.de) by moutvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 15M0UY-0000jp-00; Mon, 16 Jul 2001 07:00:22 +0200 Received: from pd90172a9.dip.t-dialin.net ([217.1.114.169]) by mrvdom02.kundenserver.de with esmtp (Exim 2.12 #2) id 15M0UX-0003HK-00; Mon, 16 Jul 2001 07:00:21 +0200 Date: Mon, 16 Jul 2001 07:01:13 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: "Stojanovic Ljubisa (RBAU-BK/EGE31) *" Cc: "'freebsd-questions@FreeBSD.ORG'" Subject: Re: Cads In-Reply-To: Message-ID: <20010716062610.H684-100000@localhost.de> 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 As far as I know, there is nothing comparable to Autodesk's Autocad or Imsisoft's Turbocad for Windows. On the other hand: If you are happy with a 2D-CAD - just to produce precise drawings for a publication or a web-site - and if you are not afraid of working with Postscript-files and its converting-tools, you can get qcad (www.qcad.org) for Linux (and BSD). qcad is absolutely free and when I was a student (4 years ago) I would have loved to have it. Uli. On Mon, 16 Jul 2001, Stojanovic Ljubisa (RBAU-BK/EGE31) * wrote: > Date: Mon, 16 Jul 2001 10:33:18 +1000 > From: "Stojanovic Ljubisa (RBAU-BK/EGE31) *" > > To: "'freebsd-questions@FreeBSD.ORG'" > Subject: Cads > > > Dear FreeBSD, > > Being an Engineer, I am trying to find CAD/FEA packages for a Unix-like > Operating System. > Do you have any of those running on FreBSD? > > > Regards/Mit freundlichen Gr=FC=DFen, > > Ljubisa Stojanovic > Senior Project Engineer, > Development Department EGE31, Robert Bosch Australia > Tel: +61 3 9541 7901 > Fax: +61 3 95417700 > Cnr Cetre & McNaughton Roads, Clayton, Vic 3168, Australia > E-mail: > > > > > > 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 15 22:28:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sharmas.dhs.org (cpe-66-1-147-119.ca.sprintbbd.net [66.1.147.119]) by hub.freebsd.org (Postfix) with ESMTP id 9A0F037B401 for ; Sun, 15 Jul 2001 22:28:55 -0700 (PDT) (envelope-from adsharma@sharmas.dhs.org) Received: by sharmas.dhs.org (Postfix, from userid 500) id 813FB5DD94; Sun, 15 Jul 2001 21:55:13 -0700 (PDT) Date: Sun, 15 Jul 2001 21:55:13 -0700 From: Arun Sharma To: questions@FreeBSD.ORG Subject: Re: NFS mount Linux Mandrake 8.0 -> FreeBSD 4.3-STABLE hang Message-ID: <20010715215513.A20380@sharmas.dhs.org> References: <20010715200102.A19948@sharmas.dhs.org> <20010715220415.A3289@dan.emsphone.com> <20010715214538.A20260@sharmas.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.15i In-Reply-To: <20010715214538.A20260@sharmas.dhs.org>; from arun@sharmas.dhs.org on Sun, Jul 15, 2001 at 09:45:38PM -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 15, 2001 at 09:45:38PM -0700, Arun Sharma wrote: > > Actually, I figured out that the cp doesn't hang, but takes a *long* > time - longer than it takes to transfer the file via scp over the > same interface. > > tcpdump shows that NFS is using 8kb block size, but packets get > fragmented because I'm on a wireless network with a MTU < 2k. > > -Arun Another clue: the writes are 100x faster than reads, when tested using dd with the same block size. -Arun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 23: 6:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from blend.fc.kiev.ua (blend.fc.kiev.ua [212.26.129.73]) by hub.freebsd.org (Postfix) with ESMTP id DE4CC37B401 for ; Sun, 15 Jul 2001 23:06:32 -0700 (PDT) (envelope-from gnut@fc.kiev.ua) Received: from localhost (localhost.fc.kiev.ua [127.0.0.1]) by blend.fc.kiev.ua (8.9.3/8.9.3) with ESMTP id JAA68527 for ; Mon, 16 Jul 2001 09:06:21 +0300 (EEST) (envelope-from gnut@fc.kiev.ua) Date: Mon, 16 Jul 2001 09:09:05 +0400 From: "Oles' Hnatkevych" X-Mailer: The Bat! (v1.49) UNREG / CD5BF9353B3B7091 Reply-To: "Oles' Hnatkevych" Organization: Finance & Credit Banking Corporation X-Priority: 3 (Normal) Message-ID: <127286426.20010716090905@fc.kiev.ua> Disposition-Notification-To: gnut@fc.kiev.ua To: freebsd-questions@freebsd.org Subject: kernel microuptime went backwards 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 freebsd-questions, microuptime() went backwards (3514.32238930 -> 3514.031483) microuptime() went backwards (11027.678546 -> 11027.675061) microuptime() went backwards (42106.977672 -> 42106.974286) microuptime() went backwards (48303.704946 -> 48303.701816) microuptime() went backwards (125984.436935 -> 125984.434559) microuptime() went backwards (154355.592449 -> 154355.589321) How do I cope with that? With best wishes, Oles' Hnatkevych, http://gnut.kiev.ua, gnut@fc.kiev.ua To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 23:11:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hp06.postech.ac.kr (smtp.postech.ac.kr [141.223.2.1]) by hub.freebsd.org (Postfix) with ESMTP id 9EA2437B401 for ; Sun, 15 Jul 2001 23:11:09 -0700 (PDT) (envelope-from lahaye@users.sourceforge.net) Received: from users.sourceforge.net (surfion4.postech.ac.kr [141.223.126.84]) by hp06.postech.ac.kr (8.9.3/8.9.3) with ESMTP id PAA06156 for ; Mon, 16 Jul 2001 15:11:58 +0900 (JST) Message-ID: <3B5285CC.C0314960@users.sourceforge.net> Date: Mon, 16 Jul 2001 15:12:28 +0900 From: "R. Lahaye" Organization: Postech X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Subject: HTML-guru: PLEASE help me! Content-Type: text/plain; charset=iso-8859-2 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, [Running FreeBSD 4.3 on Intel PC] I finally seem to have found the tool for the printer setup: http://localhost:631/admin using the cups daemon (from the cups 1.1.6.2 package). However, whenever I have filled in fields and click , netscape displays: Request Entity Too Large The request is too large for this server to process. HTTP/1.0 413 Request Entity Too Large Date: Mon, 16 Jul 2001 05:40:18 GMT Server: CUPS/1.1 Content-Language: en Content-Type: text/html Content-Length: 168 Request Entity Too Large The request is too large for this server to process. ----- Is this an HTML problem? Or is it a cups problem? I have another Linux box (Mandrake 8.0) on which all this just runs like a charm out of the box; using cups 1.1.9. What is the problem with my FBSD 4.3 distro? Thanks for your help! Rob. PS: I have added in /etc/services: ipp 631/tcp IPP (Internet Printing Protocol) ipp 631/udp IPP (Internet Printing Protocol) and then type: # cupsd -c /usr/local/etc/cups/cupsd.conf and use "http://localhost:631/admin" in my browser. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 23:29:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nwcst339.netaddress.usa.net (nwcst339.netaddress.usa.net [204.68.23.84]) by hub.freebsd.org (Postfix) with SMTP id B2ED037B401 for ; Sun, 15 Jul 2001 23:29:34 -0700 (PDT) (envelope-from spl1t_h0r1z0n@usa.net) Received: (qmail 19259 invoked by uid 60001); 16 Jul 2001 06:29:34 -0000 Message-ID: <20010716062934.19258.qmail@nwcst339.netaddress.usa.net> Received: from 204.68.23.84 by nwcst339 for [165.212.15.106] via web-mailer(34FM.0700.18.03B) on Mon Jul 16 06:29:34 GMT 2001 Date: 16 Jul 2001 00:29:34 MDT From: J S To: Morsal Roudbay , Giorgos Keramidas Subject: Re: [Re: spammers] Cc: freebsd-questions@FreeBSD.ORG 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 quit whining about someone else not doing what you want. take a few minu= tes, read the headers to determine what service provider they are using to sen= d the mail, then forward the email to abuse@theirisp.net. blocking them at the= receiving end is only a partial solution, they are still able to spam. = joshua Morsal Roudbay wrote: > On Wed, Jul 11, 2001 at 07:09:23PM +0300, Giorgos Keramidas wrote: > > Morsal Roudbay writes: > > = > > > That's what I have been doing Stephaine, but I'd like the list admi= ns to do > > > it too so I wont have to get this much spam. Other list admins ban spammers > > > instantly... > > = > > Well, apart from making the lists closed, and allow posts only from subscribed > > addresses, there is not much one can do. However, these lists are op= en, and > > for a good reason too. > > = > > The procmail solution (or, since FreeBSD.org used Postfix, a table-dr= iven > > block policy) might prove too much work for the postmaster. This is probably > > going to be a full-time job, if the postmaster chooses to do somethin= g like > > that. He has other things to do in his every day life except for edi= ting > > Postfix configuration files and lookup tables. > > = > > Using RBL or some other filtering method, that moves the burden of maintaining > > the list of blocked addresses off the back of the postmaster is also = not the > > perfect solution. Still, users that have done nothing wrong can be blocked... > > = > > This is more hairy than it seems :/ > > = > > -giorgos > = > Hmm, I really wish someone could ban all those damned spammers. :( > = > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message Joshua Smith, CCNA Data Center Technian USA.NET joshua.smith@corp.usa.net "Walk with me through the Universe, And along the way see how all of us are Connected. Feast the eyes of your Soul, On the Love that abounds. In all places at once, seemingly endless, Like your own existence." - Stephen Hawking - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jul 15 23:34:56 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 2D85837B401 for ; Sun, 15 Jul 2001 23:34:54 -0700 (PDT) (envelope-from taylorm@bytecraft.au.com) Received: from pc99101401.bytecraft.au.com (unknown [203.39.118.42]) by wombat.bytecraft.au.com (Postfix) with SMTP id 2D2753E9F for ; Mon, 16 Jul 2001 16:34:51 +1000 (EST) Message-ID: <051301c10dc1$b0cc1ae0$2a7627cb@pc99101401.bytecraft.au.com> Reply-To: "Murray Taylor" From: "Murray Taylor" To: Subject: NIS and firewalls - what do I allow? Date: Mon, 16 Jul 2001 16:35:18 +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 Akkk Im fighting a battle with a switch and a NIS system .. so tcpdump is not showing me what I need to see... or I havent asked it the right questions... What port(s) do I need to open in a firewall so that a server can access the NIS master?? I only (at this time) want 1 client to see the NIS Master so I can share the passwd stuff easily between a Samba file server and my IMAP server .. Murray Taylor Project Manager Bytecraft Systems Pty Ltd ph: +61 3 9587 2555 Fax: +61 3 9587 1614 Email: taylorm@bytecraftsystems.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 16 0:19:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from consult-meyers.consult-meyers.com (dialup-55-77.dplanet.ch [212.35.55.77]) by hub.freebsd.org (Postfix) with ESMTP id 3C70A37B405 for ; Mon, 16 Jul 2001 00:19:48 -0700 (PDT) (envelope-from a.l.meyers@consult-meyers.com) Received: from localhost (localhost [127.0.0.1]) by consult-meyers.consult-meyers.com (8.11.4/8.11.4) with ESMTP id f6G7SWU00429; Mon, 16 Jul 2001 09:28:37 +0200 (CEST) (envelope-from a.l.meyers@consult-meyers.com) Date: Mon, 16 Jul 2001 09:28:31 +0200 (CEST) From: "A. L. Meyers" To: "P. U. (Uli) Kruppa" Cc: Subject: Re: fbsd->linux->vmware->windoze,windoze slice,wine? In-Reply-To: <20010715172746.H68621-100000@localhost.de> Message-ID: <20010716092324.M424-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, 15 Jul 2001, P. U. (Uli) Kruppa wrote: (big snip) > > Uli, > > > > Thanks for the quick reply. Taking your advice leads to these > > questions: > > > > 1) Which FS to choose for the Windoze 98 slice if one wants to be > > able to mount it under FBSD to enable read and write data > > transfer between windoze and fbsd? > When you set up your dos-filesystem with fdisk you get two > alternatives - better do *not* select the one that supports > big FS which is recommended by (you will see what I mean, I > do not Know what it is called in english) > The old dos-filesystem is limited to 2 GB-partitions. > > > 2) Depending on 1), what options should one include in the > > kernel? > None. You should set up Windows first (so it cannot > overwrite the Bootmanager) on the first partition of your > first harddrive. You can mount it from FreeBSD by > > # mount_msdos /dev/ad0s1 /mnt Thanks, Uli. It's working. Set up fbsd to mount the DOS slice as /dos. > > By the way: > Perhaps you will find Unix applications that can handle > Window's (for example StarOffice can do a lot with Word- or > Excel-documents). That works faster than any emulation. > > > Uli. > Whenever I need to communicate with the nearly monopolized IT world, I use StarOffice. However, programmers have not yet ported many widespread accounting apps to Unix and clones. Cheers! Lucien To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 0:38:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from zigman.2y.net (korpen-86-195.ip-pluggen.com [212.181.86.195]) by hub.freebsd.org (Postfix) with ESMTP id 1AEE137B403 for ; Mon, 16 Jul 2001 00:38:24 -0700 (PDT) (envelope-from mr@zigman.2y.net) Received: by zigman.2y.net (Postfix, from userid 1001) id 7711D1E87; Mon, 16 Jul 2001 09:38:20 +0200 (CEST) Date: Mon, 16 Jul 2001 09:38:20 +0200 From: Morsal Roudbay To: J S Cc: Giorgos Keramidas , freebsd-questions@FreeBSD.ORG Subject: Re: [Re: spammers] Message-ID: <20010716093820.A25842@zigman.2y.net> Reply-To: Morsal Roudbay References: <20010716062934.19258.qmail@nwcst339.netaddress.usa.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010716062934.19258.qmail@nwcst339.netaddress.usa.net>; from spl1t_h0r1z0n@usa.net on Mon, Jul 16, 2001 at 12:29:34AM -0600 X-Operating-System: FreeBSD 4.3 [up 2 days, 20:11] X-Return-Path: morsal@swipnet.se Sender: owner-freebsd-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 16, 2001 at 12:29:34AM -0600, J S wrote: > quit whining about someone else not doing what you want. take a few minutes, > read the headers to determine what service provider they are using to send the > mail, then forward the email to abuse@theirisp.net. blocking them at the > receiving end is only a partial solution, they are still able to spam. > > joshua Quit your shit! I can say or do what I want, u have no right telling me this crap. I just expressed my wish, end of story. ISPs dont bother much, been there, done that. Lousy solution. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 1: 5: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hp06.postech.ac.kr (smtp.postech.ac.kr [141.223.2.1]) by hub.freebsd.org (Postfix) with ESMTP id A4E9737B403 for ; Mon, 16 Jul 2001 01:05:04 -0700 (PDT) (envelope-from lahaye@users.sourceforge.net) Received: from users.sourceforge.net (surfion4.postech.ac.kr [141.223.126.84]) by hp06.postech.ac.kr (8.9.3/8.9.3) with ESMTP id RAA09280 for ; Mon, 16 Jul 2001 17:05:54 +0900 (JST) Message-ID: <3B52A07F.B6254EE4@users.sourceforge.net> Date: Mon, 16 Jul 2001 17:06:23 +0900 From: "R. Lahaye" Organization: Postech X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Subject: Re: HELP: printer-cups setup "http://localhost:631" doesn't work ?!?! References: <3B5263B7.21975928@users.sourceforge.net> Content-Type: text/plain; charset=x-user-defined 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 Problem solved!! The package installation caused the problem; compiling the port myself produced a working cups daemon. "R. Lahaye" wrote: > > Hi, > > First of all: I'm very new to FreeBSD! > > I have installed cups on my FBSD 4.3 PC from the package cups-1.1.6.2.tgz. > > I figured that http://localhost:631/ is *THE* interface for > setting up a printer-connection on my PC. Is that right?. > > When I do that, I get the administration page of CUPS. Great! > Clicking on 'Administration' and next on 'Add Printer', > allows me to enter Name/Location/Description of a new printer. > > However, when I click on , I get: > > --------------------------------------------------------------------------------- > | Request Entity Too Large > | > | The request is too large for this server to process. HTTP/1.0 413 Request Entity > | Too Large Date: Mon, 16 Jul 2001 03:36:24 GMT Server: CUPS/1.1 Content-Language: > | en Content-Type: text/html Content-Length: 168 > | > | Request Entity Too Large > | > | The request is too large for this server to process. > --------------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 1:16:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from clientmail.realtime.co.uk (simian.ehsrealtime.com [213.52.146.137]) by hub.freebsd.org (Postfix) with ESMTP id 9E9AB37B408 for ; Mon, 16 Jul 2001 01:16:31 -0700 (PDT) (envelope-from waynep@pan.ehsrealtime.com) Received: from pan.ehsrealtime.com ([213.52.146.196]) by clientmail.realtime.co.uk with esmtp (Exim 3.20 #1) id 15M3YG-0004gx-01; Mon, 16 Jul 2001 09:16:24 +0100 Received: from waynep by pan.ehsrealtime.com with local (Exim 3.22 #1) id 15M3Xd-0000FZ-00; Mon, 16 Jul 2001 09:15:45 +0100 From: Wayne Pascoe To: Paul Branston Cc: , freebsd-questions@freebsd.org Subject: Re: delay in connecting to port 25 References: <86sng03k2n.fsf@pan.ehsrealtime.com> <20010713170501.K28733@rannoch.demon.co.uk> Reply-To: wayne.pascoe@realtime.co.uk Date: 16 Jul 2001 09:15:45 +0100 In-Reply-To: <20010713170501.K28733@rannoch.demon.co.uk> Message-ID: <8666ctjnm6.fsf@pan.ehsrealtime.com> Lines: 12 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 Paul Branston writes: > Is it trying to do a reverse DNS lookup on the box which is > connecting to it ? The timeouts are long for DNS. It might be. is there any way to turn these off ? -- - 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 16 1:28:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hawaii.rr.com (hnlmail2.hawaii.rr.com [24.25.227.35]) by hub.freebsd.org (Postfix) with ESMTP id 671A337B403 for ; Mon, 16 Jul 2001 01:28:17 -0700 (PDT) (envelope-from begley1@hawaii.rr.com) Received: from SUMO ([24.161.140.74]) by hawaii.rr.com with Microsoft SMTPSVC(5.5.1877.517.51); Sun, 15 Jul 2001 22:28:09 -1000 From: "Jethro" To: Subject: Configuring static linksys router Date: Sun, 15 Jul 2001 22:35:59 -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.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, I am a newbie and am trying to set up my network at home. I have a linksys 4 port router/hub and have recently setup my freebsd box. I have connectd my box to my router and have set a static ip address on my box and need to set a static ip address on my router. How can i telnet into my linksys router and set the static ip on it from my bsd box? And what are the commands? I have looked on the linksys site but support for unix is unavailable. Im sure somebody out there can tell me how to do it or point me in the right direction. I would really appreciate it. Sincerely, David Begley Kailua, Hawaii begley1@hawaii.rr.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 16 1:37:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hp06.postech.ac.kr (smtp.postech.ac.kr [141.223.2.1]) by hub.freebsd.org (Postfix) with ESMTP id 4EB5737B401 for ; Mon, 16 Jul 2001 01:37:08 -0700 (PDT) (envelope-from lahaye@users.sourceforge.net) Received: from users.sourceforge.net (surfion4.postech.ac.kr [141.223.126.84]) by hp06.postech.ac.kr (8.9.3/8.9.3) with ESMTP id RAA10440 for ; Mon, 16 Jul 2001 17:37:57 +0900 (JST) Message-ID: <3B52A802.E10F9B87@users.sourceforge.net> Date: Mon, 16 Jul 2001 17:38:26 +0900 From: "R. Lahaye" Organization: Postech X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Subject: Cups listing of printers very short. Why? Content-Type: text/plain; charset=iso-8859-2 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, FreeBSD ships cups version 1.1.6 (no ports of higher version available). Am I right that cups is the best tool for configuring (remote) printers? I use cupsd in my browser "http://localhost:631/admin" to add printers and I think the pull-down options are too limited: - the Device section has no smb-windows protocol in the list. - the 'Make' listing is very short, only "EPSON, HP, OKIDATA". - the 'Model' listing is also extremely short, only "HP Deskjet series, HP Laserjet series" for HP. On another Linux box I use cups 1.1.7, which has many more choices. Do I not need these choices under FreeBSD? Or is there a way to add more choices to my cups installation? Thanks, Rob. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 1:46:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from msg.ds.neowiz.com (msg.neowiz.com [211.48.23.252]) by hub.freebsd.org (Postfix) with ESMTP id E275637B401; Mon, 16 Jul 2001 01:46:01 -0700 (PDT) (envelope-from talley@neowiz.com) Received: by MSG with Internet Mail Service (5.5.2653.19) id <37HQTAYR>; Mon, 16 Jul 2001 17:42:31 +0900 Message-ID: From: =?euc-kr?B?seggwLHBpA==?= To: "'freebsd-ports@FreeBSD.org'" Cc: "'freebsd-questions@freebsd.org'" Subject: make build error Date: Mon, 16 Jul 2001 17:42:26 +0900 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C10DD3.3D79FD70" Sender: owner-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_01C10DD3.3D79FD70 Content-Type: text/plain; charset="KS_C_5601-1987" Hello,, I got the following error when i make install my own port. ============================================================== aurora2# make install ===> Building for mypkg-1.1 make: cannot open Makefile. *** Error code 2 Stop in /usr/ports/sysutils/mypkg. *** Error code 1 Stop in /usr/ports/sysutils/mypkg. *** Error code 1 Stop in /usr/ports/sysutils/mypkg. *** Error code 1 Stop in /usr/ports/sysutils/mypkg. ============================================================== My Makefiles as follows ============================================================== aurora2# cat Makefile # New ports collection makefile for: mypkg # Date created: 11 Jul 2001 # Whom: Kim Yuenjeong < talley@neowiz.com > # # $FreeBSD$ # PORTNAME= mypkg PORTVERSION= 1.1 CATEGORIES= sysutils MASTER_SITES= ftp://ratm.sayclub.com/pub/script/ MAINTAINER= talley@neowiz.com PATCH_DEBUG=YES .include ============================================================= How do I fix it? thanks. ------_=_NextPart_001_01C10DD3.3D79FD70 Content-Type: text/html; charset="KS_C_5601-1987" Content-Transfer-Encoding: quoted-printable
Hello,,
 
 
I got the following=20 error when i make install my own port.
 
=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=3D=3D=3D=3D=3D
aurora2# make=20 install
=3D=3D=3D>  Building for mypkg-1.1
make: cannot = open=20 Makefile.
*** Error code 2
 
Stop in=20 /usr/ports/sysutils/mypkg.
*** Error code 1
 
Stop in=20 /usr/ports/sysutils/mypkg.
*** Error code 1
 
Stop in=20 /usr/ports/sysutils/mypkg.
*** Error code 1
 
Stop in=20 /usr/ports/sysutils/mypkg.
=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=3D=3D=3D=3D=3D=
 
 
My Makefiles as=20 follows
 
=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=3D=3D=3D=3D=3D
aurora2# cat Makefile=20
# New ports collection makefile for:    mypkg
# = Date=20 created:         11 Jul = 2001
#=20 Whom:           &= nbsp;    =20 Kim Yuenjeong <talley@neowiz.com>
#
#=20 $FreeBSD$
#
 
PORTNAME=3D     &nbs= p;=20 mypkg
PORTVERSION=3D   =20 1.1
CATEGORIES=3D     = sysutils
MASTER_SITES=3D  =20 ftp://ratm.sayclub.com/pub/s= cript/
 
MAINTAINER=3D     talley@neowiz.com
 
PATCH_DEBUG=3DYES
 
.include=20 <bsd.port.mk>
=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=3D=3D=3D=3D
 
How do I fix=20 it?
 
thanks.
 
 
------_=_NextPart_001_01C10DD3.3D79FD70-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 1:46:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from castelan.skynet.cz (castelan.skynet.cz [193.165.192.32]) by hub.freebsd.org (Postfix) with ESMTP id F335937B405 for ; Mon, 16 Jul 2001 01:46:32 -0700 (PDT) (envelope-from roman.pavlik@skynet.cz) Received: from tosha.in.skynet.cz (tosha.in.skynet.cz [192.168.192.10]) by castelan.skynet.cz (Postfix) with SMTP id A469D52707 for ; Mon, 16 Jul 2001 10:46:31 +0200 (CEST) Received: (qmail 473 invoked by uid 1001); 16 Jul 2001 08:42:46 -0000 From: "Roman Pavlik" Date: Mon, 16 Jul 2001 10:42:46 +0200 To: freebsd-questions@FreeBSD.ORG Subject: Nikon coolpix 995 & FBSD 4.3 Message-ID: <20010716104245.B404@tosha.in.skynet.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/1.1.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I try to connect Nikon Coolpix 995 to FBSD 4.3 using USB, but there is problem to mount it. Jul 16 10:09:37 tosha /kernel: uhci0: port 0xffe0-0xffff irq 11 at device 5.2 on pci0 Jul 16 10:09:37 tosha /kernel: usb0: o n uhci0 Jul 16 10:09:37 tosha /kernel: usb0: USB revision 1.0 Jul 16 10:09:37 tosha /kernel: uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1 .00, addr 1 Jul 16 10:09:37 tosha /kernel: uhub0: 2 ports with 2 removable, self powered Jul 16 10:09:37 tosha /kernel: umass0: NIKON NIKON DSC E995, rev 1.10/1.00, addr 2 Jul 16 10:21:06 tosha /kernel: da0 at umass-sim0 bus 0 target 0 lun 0 Jul 16 10:21:06 tosha /kernel: da0: Removable Direct Access SCSI-2 device Jul 16 10:21:06 tosha /kernel: da0: 650KB/s transfers Jul 16 10:21:06 tosha /kernel: da0: 15MB (31360 512 byte sectors: 64H 32S/T 15C) that looks good, but when I try to mount da0 by: mount_msdos /dev/da0 /mnt the following problem appears: Jul 16 10:21:36 tosha /kernel: (da0:umass-sim0:0:0:0): READ(06). CDB: 8 0 0 0 1 0 Jul 16 10:21:36 tosha /kernel: (da0:umass-sim0:0:0:0): ILLEGAL REQUEST asc:20,0 Jul 16 10:21:36 tosha /kernel: (da0:umass-sim0:0:0:0): Invalid command operation code Jul 16 10:21:36 tosha /kernel: da0: reading primary partition table: error readi ng fsbn 0 Your help will be very appreciated. Regards, -- Roman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 1:57: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from clientmail.realtime.co.uk (simian.ehsrealtime.com [213.52.146.137]) by hub.freebsd.org (Postfix) with ESMTP id 8F54D37B406 for ; Mon, 16 Jul 2001 01:57:06 -0700 (PDT) (envelope-from waynep@pan.ehsrealtime.com) Received: from pan.ehsrealtime.com ([213.52.146.196]) by clientmail.realtime.co.uk with esmtp (Exim 3.20 #1) id 15M4Bd-0004kn-01 for freebsd-questions@freebsd.org; Mon, 16 Jul 2001 09:57:05 +0100 Received: from waynep by pan.ehsrealtime.com with local (Exim 3.22 #1) id 15M4B0-0000HQ-00 for freebsd-questions@freebsd.org; Mon, 16 Jul 2001 09:56:26 +0100 From: Wayne Pascoe To: freebsd-questions@freebsd.org Subject: Firewall hardware spec Reply-To: wayne.pascoe@realtime.co.uk Date: 16 Jul 2001 09:56:26 +0100 Message-ID: <86ofqli75x.fsf@pan.ehsrealtime.com> Lines: 20 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, I've just inherited a strange machine. It was the company Linux firewall. I am about to turn it into the company FreeBSD firewall, but I need some opinions on the hardware spec's suitability: The hardware is a Pentium 166 on a VERY strange board. There are 7 pci slots, 5 ISA slots, and 2 what look like VLBus slots. The link that is plugging into it is a 2Mb link. Will this hardware be suitable as a FreeBSD firewall running ipf ? 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 Mon Jul 16 2: 8:48 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 52E1737B401 for ; Mon, 16 Jul 2001 02:08:44 -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 f6G98gY21163 for ; Mon, 16 Jul 2001 17:08:42 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.50]) by pop2.pacific.net.sg with ESMTP id RAA28591 for ; Mon, 16 Jul 2001 17:08:41 +0800 (SGT) Message-ID: <3B52B08B.1C2668D4@pacific.net.sg> Date: Mon, 16 Jul 2001 17:14:51 +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: Auto logout 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 want to configure my FBSD machine to auto-logout if the system detected the connection idle more than 10 minutes . How do I configure 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 16 2:40:24 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 63D1337B401 for ; Mon, 16 Jul 2001 02:40:21 -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 f6G9dq812856; Mon, 16 Jul 2001 02:39:52 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Morsal Roudbay" , "J S" Cc: "Giorgos Keramidas" , Subject: RE: [Re: spammers] Date: Mon, 16 Jul 2001 02:39:52 -0700 Message-ID: <006a01c10ddb$435f4300$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: <20010716093820.A25842@zigman.2y.net> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.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 >-----Original Message----- >From: owner-freebsd-questions@FreeBSD.ORG >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Morsal Roudbay > >ISPs dont bother much, been there, done that. Lousy solution. > Not true. The problem is that most people that file a spam complaint don't include headers. Secondly, most ISP's won't bother if they only get a single complaint because most spam complaints are bogus anyway. What the ISP's look for is a pattern - if they get 20 or more complaints from different people all on the same day all complaining about the identical piece of spam then they will investigate. But of course if all they get is one then they typically ignore it because most people that complain cannot read mail headers to determine the real injection point of the spam, so they end up complaining to the postmaster of the forged domain. 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 Mon Jul 16 2:41:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id 3A37337B401 for ; Mon, 16 Jul 2001 02:41:27 -0700 (PDT) (envelope-from DougB@DougBarton.net) Received: from DougBarton.net (master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id CAA54032 for ; Mon, 16 Jul 2001 02:41:26 -0700 (PDT) (envelope-from DougB@DougBarton.net) Message-ID: <3B52B6C6.860AF6D3@DougBarton.net> Date: Mon, 16 Jul 2001 02:41:26 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority 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: Help duplicating data CD's with burncd Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a new (to me) HP CD-Writer Plus 2x IDE burner that I got as a hand-me-down, and I'd like to be able to duplicate CD's with it. I have successfully created a CD from the FreeBSD ISO image of 4.3-Release, and I've used mkisofs and burncd to copy a file hierarchy from my hard disk to the cd; so I know the burner does the right thing with good input. My research on the lists indicated that the proper way to generate an ISO image from a cd is: dd if=/dev/acd0c of=test.iso bs=2k Which works, and consistently writes out the same number of bytes. The problem comes when I mount the ISO image and compare it to the contents of the disc I'm trying to duplicate. Just to test I'm using a Joliet format disc full of logitech mouse drivers for windows, whose main virtue is that it contains only 68M of data so it makes a nice test. When I mount the ISO and diff -ur the mounted image and the mounted cd, I get errors in various files, sometimes the same files, sometimes different ones. Usually they are binary files, but I suspect that's because almost all the files on the disc are compressed. The few times that I got diffs in the text files, it was generally a character dropped from the copy. I know the source disc is clean because I used it in windows to load my mouse drivers. I tried different block sizes for the dd command as well, all powers of 2, but still no joy. Any suggestions on where to look next would be welcome. I tried doing 'burncd -s 2 -f /dev/acd01c data /dev/acd0c fixate' (where acd0c is the regular cd drive, and acd1 is the burner) but that just bought me my first coaster. Any other ideas? Doug -- If you're never wrong, you're not trying hard enough. Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 3:39:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from finland.ispro.net.tr (finland.ispro.net.tr [217.21.68.1]) by hub.freebsd.org (Postfix) with ESMTP id 4F95B37B405 for ; Mon, 16 Jul 2001 03:39:45 -0700 (PDT) (envelope-from kadi@ispro.net.tr) Received: from writer01 (joke.ispro.net.tr [212.174.120.249]) (authenticated) by finland.ispro.net.tr (8.11.4/8.11.2) with ESMTP id f6GAeIc55555 for ; Mon, 16 Jul 2001 13:40:18 +0300 (EEST) (envelope-from kadi@ispro.net.tr) Message-ID: <028401c10de3$f70f5900$1c02a8c0@ispro.net.tr> From: "zafer kadi" To: Subject: Date: Mon, 16 Jul 2001 13:42:01 +0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0276_01C10DFD.17B66180" 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_0276_01C10DFD.17B66180 Content-Type: text/plain; charset="iso-8859-9" Content-Transfer-Encoding: quoted-printable ------=_NextPart_000_0276_01C10DFD.17B66180 Content-Type: text/html; charset="iso-8859-9" Content-Transfer-Encoding: quoted-printable
 
------=_NextPart_000_0276_01C10DFD.17B66180-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 3:42: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from northpole.globalvc.co.uk (northpole.globalvc.co.uk [193.118.4.3]) by hub.freebsd.org (Postfix) with ESMTP id 72FEB37B405 for ; Mon, 16 Jul 2001 03:41:57 -0700 (PDT) (envelope-from robc@globalvc.co.uk) Received: from rabat (rabat.globalvc.co.uk [193.82.151.39]) by northpole.globalvc.co.uk with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id 3YSSV3QT; Mon, 16 Jul 2001 11:41:55 +0100 Received: by localhost with Microsoft MAPI; Mon, 16 Jul 2001 11:41:53 +0100 Message-ID: <01C10DEC.4EED44E0.robc@globalvc.co.uk> From: Rob Carmichael To: "'jfm@blueyonder.co.uk'" Cc: "questions@FreeBSD.ORG" Subject: solved (was RE: Can't update my system) Date: Mon, 16 Jul 2001 11:41:51 +0100 Organization: Global VideoCom X-Mailer: Microsoft Internet E-mail/MAPI - 8.0.0.4211 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 Wednesday, July 11, 2001 5:31 PM, John Murphy [SMTP:jfm@blueyonder.co.uk] wrote: > Rob Carmichael wrote: > > >Hello, > > > >Everytime i try to update my freebsd machine (using the makeworld script > > > >from freebsddiary.org) i get the same type of errors, this time it says: > > > >make: don't know how to make /usr/src/sys/crypto/rc4/rc4.c. Stop > > > >anyone have any ideas how i can fix this ? > > An answer by R. Kevin Oberman to a previous similar question may help you: > > http://marc.theaimsgroup.com/?l=freebsd-questions&m=98737440417714&w=2 > > John. John/Questions, My solution was similar, in that i had to get a newer supfile and just update the cvs-secure bit before doing a full upgrade. thanks, rob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 3:46:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-62.dsl.lsan03.pacbell.net [63.207.60.62]) by hub.freebsd.org (Postfix) with ESMTP id EDFB137B405 for ; Mon, 16 Jul 2001 03:46:09 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id A8DA267378; Mon, 16 Jul 2001 03:46:08 -0700 (PDT) Date: Mon, 16 Jul 2001 03:46:05 -0700 From: Kris Kennaway To: "R. Lahaye" Cc: FreeBSD Subject: Re: Cups listing of printers very short. Why? Message-ID: <20010716034605.A12777@xor.obsecurity.org> References: <3B52A802.E10F9B87@users.sourceforge.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="ibTvN161/egqYuK8" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B52A802.E10F9B87@users.sourceforge.net>; from lahaye@users.sourceforge.net on Mon, Jul 16, 2001 at 05:38:26PM +0900 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --ibTvN161/egqYuK8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 16, 2001 at 05:38:26PM +0900, R. Lahaye wrote: >=20 > Hi, >=20 > FreeBSD ships cups version 1.1.6 (no ports of higher version available). > Am I right that cups is the best tool for configuring (remote) printers? cups is not part of FreeBSD; it's a third party port distributed in the ports collection. You'd have to talk to the port maintainer or the cups authors if you think it's deficient somehow relative to the version in your Linux distribution. Kris --ibTvN161/egqYuK8 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 iD8DBQE7UsXsWry0BWjoQKURAn6AAKDc+RXfIPqA8CSqgDEvo54sDYIbvACg+KwC zhCs2S4kEeDmJmxdw8vXhxs= =uXTA -----END PGP SIGNATURE----- --ibTvN161/egqYuK8-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 4: 3:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from zigman.2y.net (korpen-86-195.ip-pluggen.com [212.181.86.195]) by hub.freebsd.org (Postfix) with ESMTP id 759C537B401 for ; Mon, 16 Jul 2001 04:03:51 -0700 (PDT) (envelope-from mr@zigman.2y.net) Received: by zigman.2y.net (Postfix, from userid 1001) id C16BA1E87; Mon, 16 Jul 2001 13:03:47 +0200 (CEST) Date: Mon, 16 Jul 2001 13:03:47 +0200 From: Morsal Roudbay To: Ted Mittelstaedt Cc: J S , Giorgos Keramidas , freebsd-questions@FreeBSD.ORG Subject: Re: [Re: spammers] Message-ID: <20010716130347.A27119@zigman.2y.net> Reply-To: Morsal Roudbay References: <20010716093820.A25842@zigman.2y.net> <006a01c10ddb$435f4300$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: <006a01c10ddb$435f4300$1401a8c0@tedm.placo.com>; from tedm@toybox.placo.com on Mon, Jul 16, 2001 at 02:39:52AM -0700 X-Operating-System: FreeBSD 4.3 [up 2 days, 23:35] X-Return-Path: morsal@swipnet.se Sender: owner-freebsd-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 16, 2001 at 02:39:52AM -0700, Ted Mittelstaedt wrote: > >ISPs dont bother much, been there, done that. Lousy solution. > > > > Not true. The problem is that most people that file a spam complaint don't > include headers. Secondly, most ISP's won't bother if they only get a single > complaint because most spam complaints are bogus anyway. > > What the ISP's look for is a pattern - if they get 20 or more complaints from > different people all on the same day all complaining about the identical piece > of spam then they will investigate. But of course if all they get is one then > they typically ignore it because most people that complain cannot read > mail headers to determine the real injection point of the spam, so they end > up complaining to the postmaster of the forged domain. Ted, As u say, the ISPs dont bother if they get a single complaint.. that's what I have experienced... I really dont see why this list cant be closed, feel free to explain why it would work better open as it is now.. (all closed Linux list I've ever subscribed to have been working great with no spam at all) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 4:41:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailhub1.shef.ac.uk (mailhub1.shef.ac.uk [143.167.1.9]) by hub.freebsd.org (Postfix) with ESMTP id 2945F37B403 for ; Mon, 16 Jul 2001 04:41:17 -0700 (PDT) (envelope-from m0th@dcs.shef.ac.uk) Received: from broadstone.shef.ac.uk ([143.167.23.251]) by mailhub1.shef.ac.uk with esmtp (Exim 3.22 #4) id 15M6kV-0003tl-00 for freebsd-questions@freebsd.org; Mon, 16 Jul 2001 12:41:15 +0100 Received: from BROADSTONE/SpoolDir by broadstone.shef.ac.uk (Mercury 1.48); 16 Jul 01 12:41:16 +0100 Received: from SpoolDir by BROADSTONE (Mercury 1.48); 16 Jul 01 12:41:15 +0100 Received: from smip (143.167.251.194) by broadstone.shef.ac.uk (Mercury 1.48); 16 Jul 01 12:41:08 +0100 Date: Mon, 16 Jul 2001 12:51:31 -0800 From: Tao Huang Reply-To: m0th@dcs.shef.ac.uk To: FreeBSD Subject: A question abuot Programming X-mailer: FoxMail 3.1 [eg] Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-ID: <3C4C1697CD2@broadstone.shef.ac.uk> Sender: owner-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, In Freebsd, is there any function can notice the layer 2(Data Link Layer) connection? Such as the cable is plug in or not? cheers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 4:57:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cartman.techsupport.co.uk (cabletel1.cableol.net [194.168.3.4]) by hub.freebsd.org (Postfix) with ESMTP id 2534E37B403 for ; Mon, 16 Jul 2001 04:57:53 -0700 (PDT) (envelope-from ceri@techsupport.co.uk) Received: from ceri by cartman.techsupport.co.uk with local (Exim 3.31 #1) id 15M71v-0000ZL-00 for freebsd-questions@freebsd.org; Mon, 16 Jul 2001 12:59:15 +0100 Date: Mon, 16 Jul 2001 12:59:15 +0100 From: Ceri To: freebsd-questions@freebsd.org Subject: login.access(5) Message-ID: <20010716125915.A30920@cartman.techsupport.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 I've got a query regarding /etc/login.access. Here's my copy of the file : setantae@shaft setantae$ cat /etc/login.access -:ALL EXCEPT wheel:console ## This doesn't let users in for some reason -:ALL EXCEPT wheel users:ALL Why doesn't the last line let people in the users group log in ? They all receive the ``Sorry, you are not allowed to connect'' message. Everyone is logging in via ssh(1). The relevant part of the manpage is : Only groups are matched in which users are explicitly listed: the program does not look at a user's primary group id value. So I know I'm seeing expected behaviour, but this is a really horrible restriction - is there any reason for this ? Any insight would be appreciated, and if anyone fancies patching login(1) that would be cool too ;) Ceri -- I probably wouldn't like you. Really. I really probably wouldn't like you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 5: 0:35 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cartman.techsupport.co.uk (cabletel1.cableol.net [194.168.3.4]) by hub.freebsd.org (Postfix) with ESMTP id 54CC037B401 for ; Mon, 16 Jul 2001 05:00:32 -0700 (PDT) (envelope-from ceri@techsupport.co.uk) Received: from ceri by cartman.techsupport.co.uk with local (Exim 3.31 #1) id 15M74V-0000jk-00 for freebsd-questions@freebsd.org; Mon, 16 Jul 2001 13:01:55 +0100 Date: Mon, 16 Jul 2001 13:01:55 +0100 From: Ceri To: freebsd-questions@freebsd.org Subject: Re: login.access(5) Message-ID: <20010716130155.B30920@cartman.techsupport.co.uk> References: <20010716125915.A30920@cartman.techsupport.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: <20010716125915.A30920@cartman.techsupport.co.uk>; from ceri@techsupport.co.uk on Mon, Jul 16, 2001 at 12:59:15PM +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 16, 2001 at 12:59:15PM +0100, Ceri said: > > Any insight would be appreciated, and if anyone fancies patching login(1) > that would be cool too ;) Hmm, replying to my own post ? I actually have ``UseLogin no'' in my sshd_config, so I'm not entirely sure what would need patching here ?? Ceri -- Your local RFC Nazi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 5: 1:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from storage.ukr.net (storage.ukr.net [212.42.64.13]) by hub.freebsd.org (Postfix) with ESMTP id E885637B401 for ; Mon, 16 Jul 2001 05:01:31 -0700 (PDT) (envelope-from usov@ukr.net) Received: (from mail@localhost) by storage.ukr.net (8.11.1/8.11.1) id f6GC0jk19220 for questions@freebsd.org; Mon, 16 Jul 2001 15:00:45 +0300 (EEST) (envelope-from usov@ukr.net) Date: Mon, 16 Jul 2001 15:00:45 +0300 (EEST) Message-Id: <200107161200.f6GC0jk19220@storage.ukr.net> X-Authentication-Warning: storage.ukr.net: mail set sender to usov@ukr.net using -f Received: from [212.9.225.142] by freemail.ukr.net with HTTP; Mon, 16 Jul 2001 12:00:45 +0000 (GMT) From: "Usov Alexander" To: questions@freebsd.org Subject: Missing KLD's ??? Mime-Version: 1.0 X-Mailer: mPOP Web-Mail 2.19 X-Originating-IP: mail.itvsystems.com.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! Can anybody explain me where are kld's for devfs and ipf. When I try to mount devfs I got an error mount_devfs: vfsload(devfs): No such file or directory I look throught /etc/defaults/rc.conf and as I understand it' possible to load ipf as kld, but whe I try to do that, all I got is device not configured. PS. Sorry for my bad english. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 5:29:46 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 8064D37B406 for ; Mon, 16 Jul 2001 05:29:42 -0700 (PDT) (envelope-from 01031149@3web.net) Received: from 3web.net ([209.197.157.97]) by smtp2.cybersurf.net (Netscape Messaging Server 4.15) with SMTP id GGKG1G00.CA8 for ; Mon, 16 Jul 2001 06:29:40 -0600 Received: by 3web.net (EzMTS MTSAgent 1.22b Service) ; Mon, 16 Jul 01 06:29:26 -0600 for Received: from 3web.net (10.0.0.2) by 3web.net (EzMTS MTSSmtp 1.50 Service) ; Mon, 16 Jul 01 06:28:47 -0600 for Received: by mandy.rockingd.calgary.ab.ca (sSMTP sendmail emulation); Mon, 16 Jul 2001 06:28:40 -0600 Date: Mon, 16 Jul 2001 06:28:37 -0600 From: Duke Normandin <01031149@3web.net> To: User & Ian Patrick Thomas Cc: freebsd-questions@freebsd.org Subject: Re: Need help with PPP Message-ID: <20010716062836.A240963@mandy.rockingd.calgary.ab.ca> Mail-Followup-To: User & Ian Patrick Thomas , freebsd-questions@freebsd.org References: <5f.17dfe5cf.28833f40@aol.com> <20010715195230.A10278@localhost> <20010715175151.A30370@tao.thought.org> <20010715212932.A11121@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010715212932.A11121@localhost>; from "User & Ian Patrick Thomas" on Sun, Jul 15, 2001 at 09:29:32PM 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 Sun, Jul 15, 2001 at 09:29:32PM -0400, User & Ian Patrick Thomas wrote: > > > As it was put forth by Gary Kline on Sun, Jul 15, 2001 at 05:51:52PM -0700... > > On Sun, Jul 15, 2001 at 07:52:30PM -0400, User & Ian Patrick Thomas wrote: > > > Having been a previous employee with Juno, if you are trying to use the > > > free internet service without their software, it won't work. Even if you > > > are paying for the service, it may still not work. To my knowledge, the > > > Juno service will only work with their software on a Windows machine. Try > > > going with another ISP. > > > > > > > Hm. Here's something I've wondered since trying Juno > > at friend's:: would it be possible to use Juno's free > > junk service with Windows and have your DOG/W9x system > > networked to a FBSD LAN? > > > > gary > > > > > > -- > > Gary D. Kline kline@thought.org www.thought.org Public service Unix > > Yes. You would need to use NAT of course. Only problem is you can pretty much > never get on. They have restricted the usage with the free internet service to customers > that they deem are not heavy users. There is no definition or criteria of what makes up > a heavy user, but once you have been given this label, expect to never be able to get on. > > Ian Hi Ian..... Do you mean NAT on the win9x box, or the FBSD one? I ask because I have a similar situation. I'm on a dial-up to Juno and 3Web -- so I'm pooched with using their software! I'd like to be able to use my FBSD box on the 'net while my win95 is connected. TIA... -- -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 Mon Jul 16 5:42:26 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 6290C37B401 for ; Mon, 16 Jul 2001 05:42:13 -0700 (PDT) (envelope-from personrp@ccbh.com) Received: by 1upmc-msximc2.isdip.upmc.edu with Internet Mail Service (5.5.2653.19) id <34TVMNXW>; Mon, 16 Jul 2001 08:40:56 -0400 Message-ID: <46AEB8C1B628D511969200508B6FE42A6684A1@1upmc-msx6.isdip.upmc.edu> From: "Person, Roderick" To: "'Leo S. Boegly'" , FreeBSD Subject: RE: C/C++ Programming & IDE's Date: Mon, 16 Jul 2001 08:40:51 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C10DF4.8BCC2E00" Sender: owner-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_01C10DF4.8BCC2E00 Content-Type: text/plain; charset="iso-8859-1" www.codeforge.com/ They make C-Forge. It even comes in a free FreeBSD native package. Roderick P. Person Programmer II personrp@ccbh.com "Without censorship, things can get terribly confused in the public mind." - General William Westmoreland > -----Original Message----- > From: Leo S. Boegly [mailto:leo.s.boegly@lmco.com] > Sent: July 15, 2001 10:59 PM > To: FreeBSD > Subject: C/C++ Programming & IDE's > > > Hello FreeBSD world! > > Looking for some help. I'm trying to find a good C/C++ Integrated > Development Environment(IDE) > that will run under FreeBSD 4.2 or better. I'm looking to get into > network programming and device driver development. If anyone out their > can point me "to/away from" some IDE's, it would be greatly > appreciated! > > Thanks, > > Leo > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > ------_=_NextPart_001_01C10DF4.8BCC2E00 Content-Type: text/html; charset="iso-8859-1" RE: C/C++ Programming & IDE's

www.codeforge.com/

They make C-Forge. It even comes in a free FreeBSD native package.

Roderick P. Person
Programmer II
personrp@ccbh.com

"Without censorship, things can get terribly confused in the public mind."

    - General William Westmoreland


> -----Original Message-----
> From: Leo S. Boegly [mailto:leo.s.boegly@lmco.com]
> Sent: July 15, 2001 10:59 PM
> To: FreeBSD
> Subject: C/C++ Programming & IDE's
>
>
> Hello FreeBSD world!
>
> Looking for some help. I'm trying to find a good C/C++ Integrated
> Development Environment(IDE)
> that will run under FreeBSD 4.2 or better. I'm looking to get into
> network programming and device driver development. If anyone out their
> can point me "to/away from" some IDE's, it would be greatly
> appreciated!
>
> Thanks,
>
> Leo
>
>
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-questions" in the body of the message
>

------_=_NextPart_001_01C10DF4.8BCC2E00-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 6: 0:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f212.law15.hotmail.com [64.4.23.212]) by hub.freebsd.org (Postfix) with ESMTP id DC12137B405 for ; Mon, 16 Jul 2001 06:00:19 -0700 (PDT) (envelope-from bovalex@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 16 Jul 2001 06:00:19 -0700 Received: from 64.192.249.89 by lw15fd.law15.hotmail.msn.com with HTTP; Mon, 16 Jul 2001 13:00:19 GMT X-Originating-IP: [64.192.249.89] From: "al ex" To: freebsd-questions@FreeBSD.ORG Subject: firewall/natd Date: Mon, 16 Jul 2001 09:00:19 -0400 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 16 Jul 2001 13:00:19.0731 (UTC) FILETIME=[4450BE30:01C10DF7] Sender: owner-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 make a new install 4.3 this weekend and on boot up i get messages can't find firewall, can't find natd I made kernel with options IPFIREWALL options IPDIVERT #(does this have to be in a sertain order like mods in apache?)# no problems with kernel in rc.conf wrote firewall_enable = "YES" firewall_script = "/etc/rc.firewall" #(that the right file) firewall_type = "OPEN" #(for now) natd_program = "/sbin/natd" #(that the right file) natd_enable = "YES" natd_interface = "xl0" #(right interface) gateway_enable = "YES" what did i forget if any.. thanks alex _________________________________________________________________ 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 16 6: 2: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cisco.com (sword.cisco.com [161.44.208.100]) by hub.freebsd.org (Postfix) with ESMTP id A212637B401 for ; Mon, 16 Jul 2001 06:01:56 -0700 (PDT) (envelope-from sjt@cisco.com) Received: from sjt-u10.cisco.com (sjt-u10.cisco.com [10.85.30.63]) by cisco.com (8.8.5-Cisco.1/8.8.8) with ESMTP id JAA04986 for ; Mon, 16 Jul 2001 09:01:54 -0400 (EDT) Received: (sjt@localhost) by sjt-u10.cisco.com (8.8.5-Cisco.1/CISCO.WS.1.2) id JAA01752 for freebsd-questions@freebsd.org; Mon, 16 Jul 2001 09:01:54 -0400 (EDT) Date: Mon, 16 Jul 2001 09:01:54 -0400 From: Steve Tremblett To: freebsd-questions@freebsd.org Subject: ARRGH Netscape stinks! Message-ID: <20010716090154.C1384@sjt-u10.cisco.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Is there ANY alternative to Netscape? I'm running Linux Netscape 4.77 and I'm fed up with having it freeze or crash every hour. Is the native Netscape any better? Is there another alternative? I've tried Mozilla, but it crashed on the first site I went to, so I deinstalled it. Any suggestions? (please no jokers suggesting lynx! :) -- Steve Tremblett To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 6: 6: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hp06.postech.ac.kr (smtp.postech.ac.kr [141.223.2.1]) by hub.freebsd.org (Postfix) with ESMTP id 495F937B403 for ; Mon, 16 Jul 2001 06:05:57 -0700 (PDT) (envelope-from lahaye@users.sourceforge.net) Received: from users.sourceforge.net (surfion4.postech.ac.kr [141.223.126.84]) by hp06.postech.ac.kr (8.9.3/8.9.3) with ESMTP id WAA15454; Mon, 16 Jul 2001 22:06:42 +0900 (JST) Message-ID: <3B52E6FF.FCDBE698@users.sourceforge.net> Date: Mon, 16 Jul 2001 22:07:11 +0900 From: "R. Lahaye" Organization: Postech X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Steve Tremblett Cc: freebsd-questions@freebsd.org Subject: Re: ARRGH Netscape stinks! References: <20010716090154.C1384@sjt-u10.cisco.com> Content-Type: text/plain; charset=x-user-defined 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 Steve Tremblett wrote: > > Is there ANY alternative to Netscape? I'm running Linux Netscape 4.77 > and I'm fed up with having it freeze or crash every hour. Is the > native Netscape any better? Is there another alternative? I've tried > Mozilla, but it crashed on the first site I went to, so I deinstalled > it. > > Any suggestions? (please no jokers suggesting lynx! :) Opera ? Look for linux-opera-5.0_1.tgz in the packages list. Rob. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 6: 8:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from out5.mx.nwbl.wi.voyager.net (out5.mx.nwbl.wi.voyager.net [169.207.2.77]) by hub.freebsd.org (Postfix) with ESMTP id D67CE37B405 for ; Mon, 16 Jul 2001 06:08:12 -0700 (PDT) (envelope-from dpoland@execpc.com) Received: from earth.execpc.com (dpoland@earth.execpc.com [169.207.16.1]) by out5.mx.nwbl.wi.voyager.net (8.11.1/8.11.1) with ESMTP id f6GDDDZ56767; Mon, 16 Jul 2001 08:13:13 -0500 (CDT) Received: (from dpoland@localhost) by earth.execpc.com (8.9.0) id IAA25578; Mon, 16 Jul 2001 08:08:12 -0500 (CDT) Date: Mon, 16 Jul 2001 08:08:12 -0500 From: Doug Poland To: Steve Tremblett Cc: freebsd-questions@freebsd.org Subject: Re: ARRGH Netscape stinks! Message-ID: <20010716080811.A25239@polands.org> Mail-Followup-To: Steve Tremblett , freebsd-questions@freebsd.org References: <20010716090154.C1384@sjt-u10.cisco.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3us In-Reply-To: <20010716090154.C1384@sjt-u10.cisco.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jul 16, 2001 at 09:01:54AM -0400, Steve Tremblett wrote: > Is there ANY alternative to Netscape? I'm running Linux Netscape 4.77 > and I'm fed up with having it freeze or crash every hour. Is the > native Netscape any better? Is there another alternative? I've tried > Mozilla, but it crashed on the first site I went to, so I deinstalled > it. > > Any suggestions? (please no jokers suggesting lynx! :) > > -- > Steve Tremblett > I've been using Mozilla since 0.9 release and have very few problems. Currently they're at 0.9.2. I build from ports collection (rather than Mozilla's binary) -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 6:10:32 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 55BE837B406 for ; Mon, 16 Jul 2001 06:10:28 -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: AW: ARRGH Netscape stinks! X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 Date: Mon, 16 Jul 2001 15:10:25 +0100 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: ARRGH Netscape stinks! Thread-Index: AcEN/+UrpvZIh8WjRLyc3NN/A9WxAgAAOAwQ From: "Heimes, Rene" To: "Steve Tremblett" 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 hello steve, isn=B4t there a browser in sun=B4s staroffice - it is in the windows version. tried that before? hth ren=E9 -----Urspr=FCngliche Nachricht----- Von: Steve Tremblett [mailto:sjt@cisco.com] Gesendet: Montag, 16. Juli 2001 14:02 An: freebsd-questions@freebsd.org Betreff: ARRGH Netscape stinks! Is there ANY alternative to Netscape? I'm running Linux Netscape 4.77 and I'm fed up with having it freeze or crash every hour. Is the native Netscape any better? Is there another alternative? I've tried Mozilla, but it crashed on the first site I went to, so I deinstalled it. Any suggestions? (please no jokers suggesting lynx! :) --=20 Steve Tremblett 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 16 6:15:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from poseidon.student.umd.edu (poseidon.student.umd.edu [129.2.144.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D6BD37B403 for ; Mon, 16 Jul 2001 06:15:36 -0700 (PDT) (envelope-from bfoz@glue.umd.edu) Received: from glue.umd.edu (localhost [127.0.0.1]) by poseidon.student.umd.edu (8.11.3/8.11.3) with ESMTP id f6GDFVG23015; Mon, 16 Jul 2001 09:15:31 -0400 (EDT) (envelope-from bfoz@glue.umd.edu) Message-ID: <3B52E8F3.6EF6201C@glue.umd.edu> Date: Mon, 16 Jul 2001 09:15:31 -0400 From: Brandon Fosdick X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: "Leo S. Boegly" Cc: FreeBSD Subject: Re: C/C++ Programming & IDE's References: <3B525888.B1C83CA9@lmco.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 "Leo S. Boegly" wrote: > > Hello FreeBSD world! > > Looking for some help. I'm trying to find a good C/C++ Integrated > Development Environment(IDE) > that will run under FreeBSD 4.2 or better. I'm looking to get into > network programming and device driver development. If anyone out their > can point me "to/away from" some IDE's, it would be greatly > appreciated! I use Code Crusader and like it alot. Its makefile setup takes some getting used to it, but it works. You can fid it in /usr/ports/devel/codecrusader/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 6:24: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 4226F37B406 for ; Mon, 16 Jul 2001 06:24:17 -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 f6GDMGn79250; Mon, 16 Jul 2001 10:22:16 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Mon, 16 Jul 2001 10:22:16 -0300 (ART) From: Fernando Gleiser To: Usov Alexander Cc: Subject: Re: Missing KLD's ??? In-Reply-To: <200107161200.f6GC0jk19220@storage.ukr.net> Message-ID: <20010716101928.L79065-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 Mon, 16 Jul 2001, Usov Alexander wrote: > I look throught /etc/defaults/rc.conf and as I understand it' possible to > load ipf as kld, but whe I try to do that, all I got is device not configured. It's called ipl.ko. Add the line ipl_load="YES" to /boot/loader.conf > > PS. > Sorry for my bad english. > > > 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 16 6:26:10 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 0F71737B401 for ; Mon, 16 Jul 2001 06:26:00 -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 PAA03532; Mon, 16 Jul 2001 15:33:40 +0200 Message-ID: <3B52EBE1.6E82ACC3@i-clue.de> Date: Mon, 16 Jul 2001 15:28:01 +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: Doug Barton Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Help duplicating data CD's with burncd References: <3B52B6C6.860AF6D3@DougBarton.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 Doug Barton schrieb: > > [Good story about bad CD copies snipped.] > > Any suggestions on where to look next would be welcome. I tried doing > 'burncd -s 2 -f /dev/acd01c data /dev/acd0c fixate' (where acd0c is the > regular cd drive, and acd1 is the burner) but that just bought me my first > coaster. Any other ideas? Bad CD-Rs will do that. 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 16 6:27: 5 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 B055837B401 for ; Mon, 16 Jul 2001 06:26:59 -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 PAA03561; Mon, 16 Jul 2001 15:34:32 +0200 Message-ID: <3B52EC15.2400789B@i-clue.de> Date: Mon, 16 Jul 2001 15:28:53 +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: Kelvin Ng Chee Hoong Cc: "freebsd-questions@FreeBSD.ORG" Subject: Re: Auto logout References: <3B52B08B.1C2668D4@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 Kelvin Ng Chee Hoong schrieb: > > Hi ; > I want to configure my FBSD machine to auto-logout if the system > detected the connection idle more than 10 minutes . How do I configure > it ? Have a look at /usr/ports/sysutils/idled. 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 16 6:34:36 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 CFE3C37B401 for ; Mon, 16 Jul 2001 06:34:27 -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 PAA03619; Mon, 16 Jul 2001 15:42:06 +0200 Message-ID: <3B52EDDB.C9366DEF@i-clue.de> Date: Mon, 16 Jul 2001 15:36:27 +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: "Leo S. Boegly" Cc: FreeBSD Subject: Re: C/C++ Programming & IDE's References: <3B525888.B1C83CA9@lmco.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 "Leo S. Boegly" schrieb: > > Hello FreeBSD world! > > Looking for some help. I'm trying to find a good C/C++ Integrated > Development Environment(IDE) > that will run under FreeBSD 4.2 or better. I'm looking to get into > network programming and device driver development. If anyone out their > can point me "to/away from" some IDE's, it would be greatly > appreciated! After getting used to [X]Emacs, I seldom write any code outside it. To prevent another holy war: I use vi[m]/ex/ed when appropriate, too. Just my EUR.02 -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 16 6:38: 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 CE30837B403 for ; Mon, 16 Jul 2001 06:37: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 PAA03666; Mon, 16 Jul 2001 15:45:36 +0200 Message-ID: <3B52EEAD.51398657@i-clue.de> Date: Mon, 16 Jul 2001 15:39: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: Ken Seggerman Cc: questions@FreeBSD.ORG Subject: Re: can't ping second NIC on dual-homed PC 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 Ken Seggerman schrieb: > > I am running FreeBSD 4.3-STABLE on a 133 MHz PC with 64 MB or RAM. I made > world and rebuilt the kernel recently. > > I have two NICs, a 3Com 3c905C-TX Fast Etherlink XL interface xl0, and a > LinkSys ADMtek AN985 10/100BaseTX interface dc0. > > The machine is configured as a gateway for IPv4 and IPv6. > > Even though both interfaces show up as active, I can only successfully > ping the xl0. > > However I can ping6 both interfaces successfully. I was even able to ping6 > to a second host on an IPv6 subnet connected to the dc0. I am wondering if > I am missing something important. Is an ipv4 address assigned to the second NIC? 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 16 6:40: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 C0A3F37B401 for ; Mon, 16 Jul 2001 06:40: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 PAA03713; Mon, 16 Jul 2001 15:48:26 +0200 Message-ID: <3B52EF57.C31409A6@i-clue.de> Date: Mon, 16 Jul 2001 15:42:47 +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: Bull Dog Cc: questions@FreeBSD.ORG Subject: Re: Updating and make buildworld fails 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 Bull Dog schrieb: > > I am running FBSD 4.3 Release. I CVsup'd everything fine to RELENG_4. but > when i go to make buildworld as per the handbook, my computer will > spontaneously restart some where in the middle of the building. Can anybody > explain why this is happening and what I can do to fix it. Seems to be bad hardware. More on that at http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/troubleshoot.html#SIGNAL11 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 16 6:45:22 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 12ADB37B403 for ; Mon, 16 Jul 2001 06:45:16 -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 PAA03753; Mon, 16 Jul 2001 15:52:57 +0200 Message-ID: <3B52F066.1F536A4E@i-clue.de> Date: Mon, 16 Jul 2001 15:47:18 +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: dave Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Migrating users to new version and hard disk References: <200107141803.SAA28842@asylum.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 dave schrieb: > > Hi, > > I've reinstalled and rebuilt my server migrating from freebsd 3.1-->4.3. > I have about 40 users and their home directories that I need to > move onto the new hardrive. Does anyone have a simple recipe > to do this without having to create all the old accounts on the > new installation? - Synchronize the new /etc/group file to the old one - Copy the old accounts lines into the new box _using_vipw_. - tar the users home directories over. 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 16 6:46: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.pandora.be (tartarus.telenet-ops.be [195.130.132.34]) by hub.freebsd.org (Postfix) with SMTP id B4F9037B40C for ; Mon, 16 Jul 2001 06:45:58 -0700 (PDT) (envelope-from ken.joostens@pandora.be) Received: (qmail 21778 invoked from network); 16 Jul 2001 13:45:57 -0000 Received: from unknown (HELO ikke) ([213.118.152.212]) (envelope-sender ) by tartarus.telenet-ops.be (qmail-ldap-1.03) with SMTP for ; 16 Jul 2001 13:45:57 -0000 From: "ken joostens" To: Cc: , Subject: Date: Mon, 16 Jul 2001 15:36:42 +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.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 subscribe freebsd-smp subscribe freebsd-questions subscribe freebsd-bugs subscribe freebsd-hardware To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 6:49:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailgate3.cinetic.de (mailgate3.cinetic.de [212.227.116.80]) by hub.freebsd.org (Postfix) with ESMTP id 56ED437B401 for ; Mon, 16 Jul 2001 06:49:17 -0700 (PDT) (envelope-from zero.sys@web.de) Received: from smtp.web.de (smtp01.web.de [194.45.170.210]) by mailgate3.cinetic.de (8.11.2/8.11.2/SuSE Linux 8.11.0-0.4) with SMTP id f6GDnEg04238 for ; Mon, 16 Jul 2001 15:49:14 +0200 Received: from web.de by smtp.web.de with smtp (freemail 4.2.2.2 #11) id m15M8kG-007oJDC; Mon, 16 Jul 2001 15:49 +0200 Message-ID: <3B52F0C5.986C1769@web.de> Date: Mon, 16 Jul 2001 15:48:53 +0200 From: Klaus Zerwes ZeRo EDV-Service GbR Reply-To: zero@zerosys.de X-Mailer: Mozilla 4.77 [de] (X11; U; Linux 2.4.4-4GB i686) X-Accept-Language: de, en MIME-Version: 1.0 To: questions@FreeBSD.org Subject: selling FreeBSD Content-Type: multipart/alternative; boundary="------------B7D83FF2343C09DDB90F9E00" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --------------B7D83FF2343C09DDB90F9E00 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hello We are a small company offering Linux & GNU-System Support. We want to enlarge the offer for freeBSD Systems. For this we would like to sell the download edition of FreeBSD and eventually a CD whit ports from the FreeBSD-Prots-Collection - not for much, more as a service. Is this allowed (there are many sites that do this) and if yes, is it possible to donate something from each sale to the FreeBSD-Org.? Is it allsow possible to enter a list of resellers? For more informations we would be glad. Nice day from Berlin -- ZeRo EDV - Service Zerwes & Rohner GbR http://www.zerosys.de zero@zerosys.de 0177 376 26 03 0170 486 22 71 --------------B7D83FF2343C09DDB90F9E00 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit Hello

We are a small company offering Linux & GNU-System Support.
We want to enlarge the offer for freeBSD Systems.
For this we would like to sell the download edition of FreeBSD and eventually a CD whit ports from the FreeBSD-Prots-Collection - not for much, more as a service.
Is this allowed (there are many sites that do this) and if yes, is it possible to donate something from each sale to the FreeBSD-Org.? Is it allsow possible to enter a list of resellers?

For more informations we would be glad.

Nice day from Berlin

-- 
ZeRo EDV - Service Zerwes & Rohner GbR
http://www.zerosys.de  zero@zerosys.de
0177 376 26 03          0170 486 22 71
  --------------B7D83FF2343C09DDB90F9E00-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 6:51:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from speer.nl.uu.net (speer.nl.uu.net [193.67.79.174]) by hub.freebsd.org (Postfix) with ESMTP id E27B537B405 for ; Mon, 16 Jul 2001 06:51:29 -0700 (PDT) (envelope-from arjan@jak.nl) Received: from 1Cust220.tnt8.rtm1.nl.uu.net ([213.116.110.220]:1060 "EHLO jak.nl") by speer.nl.uu.net with ESMTP id ; Mon, 16 Jul 2001 15:51:19 +0200 Message-ID: <3B52F1B8.8CF820E3@jak.nl> Date: Mon, 16 Jul 2001 15:52:56 +0200 From: Arjan Knepper Organization: JAK++ Software Development B.V. X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: Brandon Fosdick Cc: "Leo S. Boegly" , FreeBSD Subject: Re: C/C++ Programming & IDE's References: <3B525888.B1C83CA9@lmco.com> <3B52E8F3.6EF6201C@glue.umd.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 Brandon Fosdick wrote: > "Leo S. Boegly" wrote: > > > > Hello FreeBSD world! > > > > Looking for some help. I'm trying to find a good C/C++ Integrated > > Development Environment(IDE) > > that will run under FreeBSD 4.2 or better. I'm looking to get into > > network programming and device driver development. If anyone out their > > can point me "to/away from" some IDE's, it would be greatly > > appreciated! > > I use Code Crusader and like it alot. Its makefile setup takes some > getting used to it, but it works. > > You can fid it in /usr/ports/devel/codecrusader/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message I use CodeForge http://www.codeforge.com. works very well. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 6:55:52 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 7891F37B401 for ; Mon, 16 Jul 2001 06:55:48 -0700 (PDT) (envelope-from jasapp@pelennor.net) Received: by mail.pelennor.net (Mail, from userid 1003) id B2B8D76E; Mon, 16 Jul 2001 08:55:37 -0500 (CDT) Date: Mon, 16 Jul 2001 08:55:37 -0500 From: Jeff Sapp To: khayman Cc: freebsd-questions@freebsd.org Subject: Re: routing not working Message-ID: <20010716085537.A16836@pelennor.net> References: <3B524DD6.9B622A0E@carolina.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B524DD6.9B622A0E@carolina.rr.com>; from khayman@carolina.rr.com on Sun, Jul 15, 2001 at 10:13:42PM -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 > My routing table looks like this: > > Destination Gateway flags refs use Netif Expire > default 192.168.1.1 UGSc 0 3 de0 > 10.10.10/24 link#1 UC 1 0 dc0 => > localhost localhost UH 0 0 lo0 > 192.168.1 link#2 UC 3 0 de0 => > > I have a linksys 4 port router/firewall outside the 192.x interface > which in turn connects to a cable modem. The goal is to get rid of the > linksys and have the cbl modem come directly into the BSD firewall. Do you get public (and static) ips from your ISP or is there a reason you are using private network addresses on your external interface? If you only get one ip from your ISP, you'll have to run nat on your firewall. > My rc.conf file looks like this: > > gateway_enable="YES" > network_interfaces="de0 dc0 lo0" > ifconfig_de0="DHCP" > ifconfig_dc0="inet 10.10.10.1 netmask 255.255.255.0" > . > . > ipfilter_enable="YES" > ipnat_enable="YES" That all looks ok. > Any suggestions on where to look to see what I've screwed up? > ps: If and when I get this working properly, does anyone know if I'll > be able to pass a CheckPoint SecuRemote client thru the firewall?? Sure. It shouldn't be too hard to figure out what changes you need to make to your ipf.rules file. Flush your rules, run tcpdump, then the application, look at the tcpdump output and change your rules accordingly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 7: 0:37 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 9B59737B405 for ; Mon, 16 Jul 2001 07:00:25 -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 QAA03911; Mon, 16 Jul 2001 16:08:08 +0200 Message-ID: <3B52F3F5.CCDCDFCD@i-clue.de> Date: Mon, 16 Jul 2001 16:02: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: zero@zerosys.de Cc: questions@FreeBSD.ORG Subject: Re: selling FreeBSD References: <3B52F0C5.986C1769@web.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 Klaus Zerwes ZeRo EDV-Service GbR schrieb: > > Hello > > We are a small company offering Linux & GNU-System Support. > We want to enlarge the offer for freeBSD Systems. Nice idea. > For this we would like to sell the download edition of FreeBSD and > eventually a CD whit ports from the FreeBSD-Prots-Collection - not for > much, more as a service. > Is this allowed (there are many sites that do this) and if yes, is it > possible to donate something from each sale to the FreeBSD-Org.? It is. Have a look at www.lob.de: Lehmanns Online Bookstore already sells their own FreeBSD distribution. You may import from Wind River, too, or roll your own. > Is it allsow possible to enter a list of resellers? Write a patch to http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors.html and submit it to docs@freebsd.org 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 16 7: 4:46 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 A926A37B401 for ; Mon, 16 Jul 2001 07:04:14 -0700 (PDT) (envelope-from infoteacher@ipform.ru) Received: from pwm14 (localhost.ipform.ru [127.0.0.1]) by osiris.ipform.ru (8.11.4/8.11.4) with SMTP id f6GE4Av41974 for ; Mon, 16 Jul 2001 18:04:11 +0400 (MSD) (envelope-from infoteacher@ipform.ru) Message-ID: <000a01c10e00$2994efe0$c900a8c0@pwm14> From: "Alexander Trapeznikov" To: Subject: At loading notebook pccardd not correctly initializes pcmcia devices. How to be? Date: Mon, 16 Jul 2001 18:03:58 +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.50.4522.1200 Disposition-Notification-To: "Alexander Trapeznikov" 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! At loading notebook pccardd not correctly initializes pcmcia devices. How to be? Notebook: Asus L7300, PCCard: RoverBook LAN 10/100, RoverBook Fax/Modem 56k Below various messages of the system and settings of system. Why at loading there are messages? =========[start message at loading]=========== Setup PC-CARD: memory beepCard manuf Ethernet, vers Adapter Configuration entries: Index code = auto, driver name = ed Insert commands are: /etc/pccard_ether $device start Remove commands are: /sbin/pccard_ether $device stop Card manuf Intelligent, vers PCMCIA FAX+MODEM Configuration entries: Index code = 0x1f, driver name = sio Code 240 not found Code 240 not found Code Unknown ignored ed0 at port 0x300-0x31f irq 10 slot 0 on pccard0 ed0: address xx:xx:xx:xx:xx:xx, type NE2000 (16 bit) add net default: gateway 192.168.0.1 sio2 at port 0x3e8-0x3ef irq 11 slot 1 on pccard1 sio2: type 16550A pccardd. Doing initial network setup: hostname. =========[end message at loading]=========== =========[start configuration of kernel ]=========== # THIS -- This machine kernel config machine i386 cpu I686_CPU ident THIS maxusers 150 options CPU_SUSP_HLT # generic options options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options NFS #Network Filesystem options NFS_ROOT #Network Filesystem options MSDOSFS #MSDOS Filesystem options CD9660 #ISO 9660 Filesystem options CD9660_ROOT #ISO 9660 Filesystem options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options USER_LDT options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options COMPAT_LINUX options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options XSERVER # support for X server # busses device isa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 # IDE controller and disks device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM 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 device psm0 at atkbdc? irq 12 options PSM_HOOKRESUME options PSM_RESETAFTERSUSPEND # video device vga0 at isa? options VESA # syscons is the default console driver, resembling an SCO console device vt0 at isa? options XSERVER options FAT_CURSOR options PCVT_NSCREENS=12 device sc0 at isa? options SC_HISTORY_SIZE=400 options SC_ALT_MOUSE_IMAGE options SC_MOUSE_CHAR=0x03 options SC_DFLT_FONT makeoptions SC_DFLT_FONT=koi8-r options SC_PIXEL_MODE # Floating point support - do not disable. device npx0 at nexus? port IO_NPX flags 0x0 irq 13 # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 # Parallel port options PPC_PROBE_CHIPSET device ppc0 at isa? flags 0x40 irq 7 device ppbus0 # Parallel port bus (required) device lpt0 at ppbus? # Printer device ed # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device vn # Ethernet support pseudo-device ppp 3 # Kernel PPP pseudo-device tun 1 # Packet tunnel pseudo-device pty 16 # Pseudo-ttys (telnet etc) pseudo-device gzip # Exec gzipped a.out's pseudo-device snp 2 pseudo-device bpf 2 #Berkeley packet filter pseudo-device speaker pseudo-device splash # firewall options IPFIREWALL options IPFIREWALL_VERBOSE options IPFIREWALL_VERBOSE_LIMIT=100 options ICMP_BANDLIM options IPFIREWALL options IPDIVERT options DUMMYNET # some extra options options SOFTUPDATES options P1003_1B options _KPOSIX_PRIORITY_SCHEDULING options _KPOSIX_VERSION=199309L #APM device apm0 # multimedia ? device pcm device pca0 at isa? port IO_TIMER1 device pca1 at isa? port IO_TIMER2 device pcic0 at isa? device pcic1 at isa? device card options PCIC_RESUME_RESET options POWERFAIL_NMI device usb device ugen =========[end configuration of kernel]=========== =========[start /etc/rc.conf ]=========== @pccard_enable="YES" @pccard_beep="0" @pccardd_flags="-v -z" @pccard_ifconfig="inet 192.168.0.201 netmask 255.255.255.0" @pccard_conf="/etc/pccard.conf" @hostname="xxxxxxxxxxx" @defaultrouter="192.168.0.1" @gateway_enable="YES" @ifconfig_ed0="inet 192.168.0.201 netmask 255.255.255.0" =========[end /etc/rc.conf ]=========== =========[start /etc/pccard.conf ]=========== card "Ethernet" "Adapter" config auto "ed" ? ether 0x81 logstr "Apollo PCMCIA Ethernet Adapter" insert /etc/pccard_ether $device start remove /etc/pccard_ether $device stop card "Intelligent" "PCMCIA FAX+MODEM" config auto "sio" ? reset 1000 =========[end /etc/pccard.conf ]=========== =========[start /etc/default/pccard.conf ]=========== io 0x240-0x360 irq 3 5 10 11 15 memory 0xd4000 96k include /etc/pccard.conf =========[end /etc/default/pccard.conf ]=========== =========[start /etc/default/rc.conf ]=========== #!/bin/sh swapfile="NO" # Set to name of swapfile if aux swapfile desired. apm_enable="NO" # Set to YES to enable APM BIOS functions (or NO). apmd_enable="NO" # Run apmd to handle APM event from userland. apmd_flags="" # Flags to apmd (if enabled). pccard_enable="NO" # Set to YES if you want to configure PCCARD devices. pccard_mem="DEFAULT" # If pccard_enable=YES, this is card memory address. pccard_beep="2" # pccard beep type. pccard_ifconfig="NO" # Specialized pccard ethernet configuration (or NO). pccardd_flags="" # Additional flags for pccardd. pccard_conf="/etc/defaults/pccard.conf" # pccardd(8) config file rc_conf_files="/etc/rc.conf /etc/rc.conf.local" =========[end /etc/default/rc.conf ]=========== =========[start pccardc dumpcis]=========== Code 240 not found Code 240 not found code Unknown ignored Configuration data for card in slot 0 Tuple #1, code = 0x1 (Common memory descriptor), length = 5 000: d4 0a 53 e9 ff Common memory device information: Device number 1, type Function specific, WPS = OFF Speed = 100nS, Memory block size = 8Kb, 2 units Device number 2, type FLASH EEPROM, WPS = OFF Speed = 150nS, Memory block size = 2Kb, 30 units Tuple #2, code = 0x17 (Attribute memory descriptor), length = 3 000: 53 09 ff Attribute memory device information: Device number 1, type FLASH EEPROM, WPS = OFF Speed = 150nS, Memory block size = 2Kb, 2 units Tuple #3, code = 0x20 (Manufacturer ID), length = 4 000: 49 01 ab c1 PCMCIA ID = 0x149, OEM ID = 0xc1ab Tuple #4, code = 0x15 (Version 1 info), length = 26 000: 04 01 45 74 68 65 72 6e 65 74 00 41 64 61 70 74 010: 65 72 00 32 2e 30 00 ff 00 ff Version = 4.1, Manuf = [Ethernet], card vers = [Adapter] Addit. info = [2.0] Tuple #5, code = 0x1a (Configuration map), length = 5 000: 01 06 d0 0f 0b Reg len = 2, config register addr = 0xfd0, last config = 0x6 Registers: XX-X---- Tuple #6, code = 0x1b (Configuration entry), length = 7 000: c0 81 18 45 30 fc be Config index = 0x0(default) Interface byte = 0x81 (I/O) wait signal supported Card decodes 5 address lines, limited 8/16 Bit I/O IRQ modes: Level IRQs: 2 3 4 5 6 7 9 10 11 12 13 15 Tuple #7, code = 0x1b (Configuration entry), length = 7 000: 01 08 ca 60 00 03 1f Config index = 0x1 Card decodes 10 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x300 block length = 0x20 Tuple #8, code = 0x1b (Configuration entry), length = 7 000: 02 08 ca 60 20 03 1f Config index = 0x2 Card decodes 10 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x320 block length = 0x20 Tuple #9, code = 0x1b (Configuration entry), length = 7 000: 03 08 ca 60 40 03 1f Config index = 0x3 Card decodes 10 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x340 block length = 0x20 Tuple #10, code = 0x1b (Configuration entry), length = 7 000: 04 08 ca 60 80 03 1f Config index = 0x4 Card decodes 10 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x380 block length = 0x20 Tuple #11, code = 0x1b (Configuration entry), length = 7 000: 05 08 ca 60 00 02 1f Config index = 0x5 Card decodes 10 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x200 block length = 0x20 Tuple #12, code = 0x21 (Functional ID), length = 2 000: 06 00 Network/LAN adapter Tuple #13, code = 0x14 (No link), length = 0 Tuple #14, code = 0x0 (Null tuple), length = 9 000: 57 42 4c 41 4e 39 32 36 ff Tuple #15, code = 0xff (Terminator), length = 0 Configuration data for card in slot 1 Tuple #1, code = 0x1 (Common memory descriptor), length = 2 000: 00 ff Common memory device information: Device number 1, type No device, WPS = OFF Speed = No speed, Memory block size = reserved, 32 units Tuple #2, code = 0x15 (Version 1 info), length = 32 000: 04 01 49 6e 74 65 6c 6c 69 67 65 6e 74 00 50 43 010: 4d 43 49 41 20 46 41 58 2b 4d 4f 44 45 4d 00 ff Version = 4.1, Manuf = [Intelligent], card vers = [PCMCIA FAX+MODEM] Tuple #3, code = 0x20 (Manufacturer ID), length = 4 000: 00 02 01 00 PCMCIA ID = 0x200, OEM ID = 0x1 Tuple #4, code = 0x21 (Functional ID), length = 2 000: 02 00 Serial port/modem Tuple #5, code = 0x22 (Functional EXT), length = 4 000: 00 02 0f 5c Serial interface extension: 16550 UART, Parity - Space,Mark,Odd,Even Data bit - 7bit,8bit, Stop bit - 1bit,2bit Tuple #6, code = 0x22 (Functional EXT), length = 9 000: 05 1f 1f 00 04 00 00 04 00 Data modem interface capabilities: Tuple #7, code = 0x22 (Functional EXT), length = 9 000: 06 1f 1f 00 04 00 00 04 00 Fax/modem interface capabilities: Tuple #8, code = 0x22 (Functional EXT), length = 12 000: 02 06 00 3f 1c 03 03 0f 07 00 01 b5 Data modem services available: Tuple #9, code = 0x22 (Functional EXT), length = 8 000: 13 06 00 1f 00 02 00 b5 Fax1/modem services available: Tuple #10, code = 0x22 (Functional EXT), length = 8 000: 23 06 00 1f 00 02 00 b5 Fax2/modem services available: Tuple #11, code = 0x1a (Configuration map), length = 5 000: 01 27 80 ff 67 Reg len = 2, config register addr = 0xff80, last config = 0x27 Registers: XXX--XX- Tuple #12, code = 0x1b (Configuration entry), length = 19 000: cf 41 99 79 55 3d 86 46 26 4c aa 60 f8 03 07 f0 010: bc 86 28 Config index = 0xf(default) Interface byte = 0x41 (I/O) +RDY/-BSY active Vcc pwr: Nominal operating supply voltage: 5 x 1V Continuous supply current: 3.5 x 10mA Max current average over 1 second: 1 x 100mA, ext = 0x46 Max current average over 10 ms: 2 x 100mA Power down supply current: 4.5 x 1mA Card decodes 10 address lines, 8 Bit I/O only I/O address # 1: block start = 0x3f8 block length = 0x8 IRQ modes: Level, Pulse, Shared IRQs: 2 3 4 5 7 9 10 15 Max twin cards = 0 Misc attr: (Audio-BVD2) (Power down supported) Tuple #13, code = 0x1b (Configuration entry), length = 7 000: 17 08 aa 60 f8 02 07 Config index = 0x17 Card decodes 10 address lines, 8 Bit I/O only I/O address # 1: block start = 0x2f8 block length = 0x8 Tuple #14, code = 0x1b (Configuration entry), length = 7 000: 1f 08 aa 60 e8 03 07 Config index = 0x1f Card decodes 10 address lines, 8 Bit I/O only I/O address # 1: block start = 0x3e8 block length = 0x8 Tuple #15, code = 0x1b (Configuration entry), length = 7 000: 27 08 aa 60 e8 02 07 Config index = 0x27 Card decodes 10 address lines, 8 Bit I/O only I/O address # 1: block start = 0x2e8 block length = 0x8 Tuple #16, code = 0xff (Terminator), length = 0 2 slots found =========[end pccardc dumpcis]=========== =========[start 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 #40: Tue Jul 10 05:06:57 MSD 2001 xxxx@xxxx.xxxxxx.xx:/usr/obj/usr/src/sys/THIS Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Pentium II Xeon/Celeron (367.50-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x66a Stepping = 10 Features=0x183f9ff real memory = 67043328 (65472K bytes) avail memory = 61464576 (60024K bytes) Preloaded elf kernel "kernel" at 0xc0382000. VESA: v2.0, 4096k memory, flags:0x0, mode table:0xc00c8f83 (c0008f83) VESA: Silicon Motion SM910 VGA BIOS Pentium Pro MTRR support enabled apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: at 2.0 irq 9 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xfcf0-0xfcff at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 7.2 chip1: port 0x2180-0x218f at device 7.3 on pci0 pcic-pci0: at device 10.0 on pci0 pcic-pci1: at device 10.1 on pci0 isa0: too many drqs vt0 on isa0 vt0: generic, 80 col, color, 12 scr, unknown kbd, [R3.20-b24] vt0: driver is using old-style compatability shims orm0: RE: I can't mount FAT16 disk

It would seem to me that something is already mounted on /mnt, try a different mount point...

Roderick P. Person
Programmer II
personrp@ccbh.com

"Without censorship, things can get terribly confused in the public mind."

    - General William Westmoreland


> -----Original Message-----
> From: Vladislav Saltanov [mailto:saltanov@mail.ru]
> Sent: July 16, 2001 11:03 AM
> To: freebsd-questions@FreeBSD.ORG
> Subject: I can't mount FAT16 disk
>
>
> Dear programmers,
>
> I need your help.
>
> When I try to mount the DOS disk I see the following:
>
> #mount_msdos /dev/ad0s1 /mnt
> mount_msdos:vfsload(msdos):File exists
>
> #mount -t msdos /dev/ad0s1 /mnt
> mount_msdos:vfsload(msdos):File exists
>
> #mount /dev/ad0s1 /mnt
> mount: /dev/ad0s1 on /mnt: incorrect super block
>
> I have no idea what should I do.
> Help me, please.
>
>
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-questions" in the body of the message
>

------_=_NextPart_001_01C10E08.D4DA2D40-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 8:13:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail7.carolina.rr.com (mail7.southeast.rr.com [24.93.67.54]) by hub.freebsd.org (Postfix) with ESMTP id 3734737B403 for ; Mon, 16 Jul 2001 08:13:45 -0700 (PDT) (envelope-from khayman@carolina.rr.com) Received: from carolina.rr.com ([168.215.135.201]) by mail7.carolina.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Mon, 16 Jul 2001 11:13:43 -0400 Message-ID: <3B5304A7.547F228F@carolina.rr.com> Date: Mon, 16 Jul 2001 11:13:43 -0400 From: khayman 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: Re: routing not working References: <3B524DD6.9B622A0E@carolina.rr.com> <20010716085537.A16836@pelennor.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 there is a private address on the external interface because at present it sits behind a Linksys fw/router, which gets its external DHCP IP from my cable ISP and passes out DHCP to clients on its internal interface. Once i have the fbsd fw configured properly, I will modify the ipf.rules to allow the DHCP server at the ISP to pass traffic to it. Currently the rules allow only the linksys to give it DHCP. I do know that both internal and external interfaces on the fBSD box are alive because a tcpdump on each shows arp traffic and shows echo requests when i ping the interfaces from other machines on each segment. I am running NAT on the fw. But before i can figure out if that works, i need to be able to talk IP. At present, i can't even ping machines on the local segments... 10.10.10.x and 192.168.1.x respectively. any more suggestions?? thanks for the time and help. Bill Jeff Sapp wrote: > > > My routing table looks like this: > > > > Destination Gateway flags refs use Netif Expire > > default 192.168.1.1 UGSc 0 3 de0 > > 10.10.10/24 link#1 UC 1 0 dc0 => > > localhost localhost UH 0 0 lo0 > > 192.168.1 link#2 UC 3 0 de0 => > > > > I have a linksys 4 port router/firewall outside the 192.x interface > > which in turn connects to a cable modem. The goal is to get rid of the > > linksys and have the cbl modem come directly into the BSD firewall. > > Do you get public (and static) ips from your ISP or is there a reason > you are using private network addresses on your external interface? > > If you only get one ip from your ISP, you'll have to run nat on your firewall. > > > My rc.conf file looks like this: > > > > gateway_enable="YES" > > network_interfaces="de0 dc0 lo0" > > ifconfig_de0="DHCP" > > ifconfig_dc0="inet 10.10.10.1 netmask 255.255.255.0" > > . > > . > > ipfilter_enable="YES" > > ipnat_enable="YES" > > That all looks ok. > > > Any suggestions on where to look to see what I've screwed up? > > ps: If and when I get this working properly, does anyone know if I'll > > be able to pass a CheckPoint SecuRemote client thru the firewall?? > > Sure. It shouldn't be too hard to figure out what changes you need to make > to your ipf.rules file. Flush your rules, run tcpdump, then the application, > look at the tcpdump output and change your rules accordingly. > > 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 16 8:23:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.bloodflowers.org (bloodflowers.org [212.47.68.125]) by hub.freebsd.org (Postfix) with ESMTP id 759F937B406 for ; Mon, 16 Jul 2001 08:23:50 -0700 (PDT) (envelope-from james@bloodflowers.org) Received: from [213.107.104.10] (helo=eclipse.bloodflowers.org ident=go_away) by mail.bloodflowers.org with smtp (Exim 3.22 #7) id 15MADd-0008ic-00 for freebsd-questions@freebsd.org; Mon, 16 Jul 2001 16:23:33 +0100 Date: Mon, 16 Jul 2001 16:23:32 +0100 From: James Greenhalgh To: freebsd-questions@freebsd.org Subject: Re: ARRGH Netscape stinks! Message-Id: <20010716162332.57676ab4.james@bloodflowers.org> In-Reply-To: <911D8F660DF6D411B61F00500462BA01C58B7B@exchange.twowaytv.co.uk> References: <911D8F660DF6D411B61F00500462BA01C58B7B@exchange.twowaytv.co.uk> 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, 16 Jul 2001 15:07:51 +0100 Alex Dyas wrote: > > On Mon, Jul 16, 2001 at 09:01:54AM -0400, Steve Tremblett wrote: > > > Is there ANY alternative to Netscape? I'm running Linux > > Netscape 4.77 > > > and I'm fed up with having it freeze or crash every hour. Is the > > > native Netscape any better? Is there another alternative? > > I've tried > > > Mozilla, but it crashed on the first site I went to, so I > > deinstalled > > > it. > > > > > > Any suggestions? (please no jokers suggesting lynx! :) > > > > > > -- > > > Steve Tremblett > > > > > > > I've been using Mozilla since 0.9 release and have very few problems. > > Currently they're at 0.9.2. I build from ports collection (rather > > than Mozilla's binary) > > The current Mozilla 0.9.2 has been steady as a rock for me. Earlier .8.x > versions were admitidly shakey but this one has renewed my faith in the > project. Renders like lightning too. Give it a go (got my port from the > dutch mirror which tends to be more up to date ftp.nl.freebsd.org ). > > alex.. My personal choice currently is Opera - which rules out looking at flash sites but I'm willing to live without that. Mozilla renders quickly, but I find the UI itself to be astonishingly slow (on a dual p2-400..) james -- 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 Mon Jul 16 8:25:30 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 04AB237B401; Mon, 16 Jul 2001 08:25:23 -0700 (PDT) (envelope-from leblanc@leblanc.mirrorimage.net) Received: by leblanc.mirrorimage.net (Postfix, from userid 118) id 9C0E46BBF7; Mon, 16 Jul 2001 11:25:07 -0400 (EDT) Date: Mon, 16 Jul 2001 11:25:07 -0400 From: Louis LeBlanc To: questions@FreeBSD.ORG, freebsd-questions@FreeBSD.org Subject: Re: mergemaster - problem installing files Message-ID: <20010716112507.C19358@acadia.ne.mediaone.net> Reply-To: freebsd-questions@FreeBSD.org Mail-Followup-To: questions@FreeBSD.ORG, freebsd-questions@FreeBSD.org References: <20010712175924.83029.qmail@web11707.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20010712175924.83029.qmail@web11707.mail.yahoo.com> 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 Any caveats with just running 'mergemaster -i'? I assume this would be perfectly fine as long as I am not making changes to the base code. Any comments? TIA Lou On 07/12/01 10:59 AM, Tim Erlin sat at the `puter and typed: > I'm updating my source, trying to run mergemaster, but > it seems to fail when trying to install the temporary > or merged files. The error is "problem installing > ./blahblahfile, it will remain to merge by hand > later." > > I would search the mailing list for this problem, but > since I search for "install" seems to return nothing, > I'll presume something's broken. > > I would hate to have to merge by hand...is there a > quick solution to this problem? > > --Tim > > __________________________________________________ > 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 > -- Louis LeBlanc leblanc@acadia.ne.mediaone.net Fully Funded Hobbyist, KeySlapper Extrordinaire :) http://acadia.ne.mediaone.net Ô¿Ô¬ QOTD: "Even the Statue of Liberty shaves her pits." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 8:25:30 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 04AB237B401; Mon, 16 Jul 2001 08:25:23 -0700 (PDT) (envelope-from leblanc@leblanc.mirrorimage.net) Received: by leblanc.mirrorimage.net (Postfix, from userid 118) id 9C0E46BBF7; Mon, 16 Jul 2001 11:25:07 -0400 (EDT) Date: Mon, 16 Jul 2001 11:25:07 -0400 From: Louis LeBlanc To: questions@FreeBSD.ORG, freebsd-questions@FreeBSD.org Subject: Re: mergemaster - problem installing files Message-ID: <20010716112507.C19358@acadia.ne.mediaone.net> Reply-To: freebsd-questions@FreeBSD.org Mail-Followup-To: questions@FreeBSD.ORG, freebsd-questions@FreeBSD.org References: <20010712175924.83029.qmail@web11707.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20010712175924.83029.qmail@web11707.mail.yahoo.com> 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 Any caveats with just running 'mergemaster -i'? I assume this would be perfectly fine as long as I am not making changes to the base code. Any comments? TIA Lou On 07/12/01 10:59 AM, Tim Erlin sat at the `puter and typed: > I'm updating my source, trying to run mergemaster, but > it seems to fail when trying to install the temporary > or merged files. The error is "problem installing > ./blahblahfile, it will remain to merge by hand > later." > > I would search the mailing list for this problem, but > since I search for "install" seems to return nothing, > I'll presume something's broken. > > I would hate to have to merge by hand...is there a > quick solution to this problem? > > --Tim > > __________________________________________________ > 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 > -- Louis LeBlanc leblanc@acadia.ne.mediaone.net Fully Funded Hobbyist, KeySlapper Extrordinaire :) http://acadia.ne.mediaone.net Ô¿Ô¬ QOTD: "Even the Statue of Liberty shaves her pits." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 8:29: 4 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 6282A37B403 for ; Mon, 16 Jul 2001 08:29:00 -0700 (PDT) (envelope-from leblanc@leblanc.mirrorimage.net) Received: by leblanc.mirrorimage.net (Postfix, from userid 118) id A721F6BBF7; Mon, 16 Jul 2001 11:28:45 -0400 (EDT) Date: Mon, 16 Jul 2001 11:28:45 -0400 From: Louis LeBlanc To: freebsd-questions@FreeBSD.ORG, freebsd-questions@FreeBSD.org Subject: Re: ARRGH Netscape stinks! Message-ID: <20010716112845.D19358@acadia.ne.mediaone.net> Reply-To: freebsd-questions@FreeBSD.org Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <911D8F660DF6D411B61F00500462BA01C58B7B@exchange.twowaytv.co.uk> <20010716162332.57676ab4.james@bloodflowers.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20010716162332.57676ab4.james@bloodflowers.org> 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 Isn't Opera a nagware item? IIRC you can only use it as long as you are willing to deal with the shareware nag popups or else pay for it. I'd rather use Nutscrape and deal with the hassles there - IMHO, its just as good as Opera in the long run. L On 07/16/01 04:23 PM, James Greenhalgh sat at the `puter and typed: > On Mon, 16 Jul 2001 15:07:51 +0100 > Alex Dyas wrote: > > > > On Mon, Jul 16, 2001 at 09:01:54AM -0400, Steve Tremblett wrote: > > > > Is there ANY alternative to Netscape? I'm running Linux > > > Netscape 4.77 > > > > and I'm fed up with having it freeze or crash every hour. Is the > > > > native Netscape any better? Is there another alternative? > > > I've tried > > > > Mozilla, but it crashed on the first site I went to, so I > > > deinstalled > > > > it. > > > > > > > > Any suggestions? (please no jokers suggesting lynx! :) > > > > > > > > -- > > > > Steve Tremblett > > > > > > > > > > I've been using Mozilla since 0.9 release and have very few problems. > > > Currently they're at 0.9.2. I build from ports collection (rather > > > than Mozilla's binary) > > > > The current Mozilla 0.9.2 has been steady as a rock for me. Earlier .8.x > > versions were admitidly shakey but this one has renewed my faith in the > > project. Renders like lightning too. Give it a go (got my port from the > > dutch mirror which tends to be more up to date ftp.nl.freebsd.org ). > > > > alex.. > > My personal choice currently is Opera - which rules out looking at flash sites > but I'm willing to live without that. Mozilla renders quickly, but I find the > UI itself to be astonishingly slow (on a dual p2-400..) > > james > > -- > > 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 > -- Louis LeBlanc leblanc@acadia.ne.mediaone.net Fully Funded Hobbyist, KeySlapper Extrordinaire :) http://acadia.ne.mediaone.net Ô¿Ô¬ QOTD: "Even the Statue of Liberty shaves her pits." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 8:36:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from daemon.shadotech.com (c1283968-b.boise1.id.home.com [24.176.94.202]) by hub.freebsd.org (Postfix) with ESMTP id E27CB37B408 for ; Mon, 16 Jul 2001 08:36:23 -0700 (PDT) (envelope-from jsheets@shadonet.com) Received: from JSHEETS2K (palrel1.hp.com [156.153.255.242]) by daemon.shadotech.com (8.11.4/8.11.3) with ESMTP id f6GFXnw69847 for ; Mon, 16 Jul 2001 09:33:51 -0600 (MDT) (envelope-from jsheets@shadonet.com) Message-ID: <008c01c10e0d$12293a20$db1b080f@JSHEETS2K> From: "Jason Sheets" To: References: <20010712175924.83029.qmail@web11707.mail.yahoo.com> <20010716112507.C19358@acadia.ne.mediaone.net> Subject: Re: mergemaster - problem installing files Date: Mon, 16 Jul 2001 09:36:22 -0600 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.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 run megemaster -ia without any problems ----- Original Message ----- From: "Louis LeBlanc" To: ; Sent: Monday, July 16, 2001 9:25 AM Subject: Re: mergemaster - problem installing files > Any caveats with just running 'mergemaster -i'? I assume this would > be perfectly fine as long as I am not making changes to the base code. > > Any comments? > > TIA > Lou > On 07/12/01 10:59 AM, Tim Erlin sat at the `puter and typed: > > I'm updating my source, trying to run mergemaster, but > > it seems to fail when trying to install the temporary > > or merged files. The error is "problem installing > > ./blahblahfile, it will remain to merge by hand > > later." > > > > I would search the mailing list for this problem, but > > since I search for "install" seems to return nothing, > > I'll presume something's broken. > > > > I would hate to have to merge by hand...is there a > > quick solution to this problem? > > > > --Tim > > > > __________________________________________________ > > 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 > > > > -- > Louis LeBlanc leblanc@acadia.ne.mediaone.net > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > http://acadia.ne.mediaone.net Ô¿Ô¬ > > QOTD: > "Even the Statue of Liberty shaves her pits." > > > 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 16 8:38:10 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 4DD1537B406 for ; Mon, 16 Jul 2001 08:37:52 -0700 (PDT) (envelope-from personrp@ccbh.com) Received: by 1upmc-msximc1.isdip.upmc.edu with Internet Mail Service (5.5.2653.19) id <34TL3DMW>; Mon, 16 Jul 2001 11:36:35 -0400 Message-ID: <46AEB8C1B628D511969200508B6FE42A6684A5@1upmc-msx6.isdip.upmc.edu> From: "Person, Roderick" To: "'freebsd-questions@FreeBSD.org'" Cc: "'leblanc+freebsd@acadia.ne.mediaone.net'" Subject: RE: ARRGH Netscape stinks! Date: Mon, 16 Jul 2001 11:36:30 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C10E0D.15FCD760" Sender: owner-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_01C10E0D.15FCD760 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable the ads are in the top right of the corner of the the app. I hardly = ever notice them. The don't pop up at you. For $39 you can get ride of the = ads, which does speed the up the app. Roderick P. Person Programmer II personrp@ccbh.com "Without censorship, things can get terribly confused in the public = mind."=20 - General William Westmoreland > -----Original Message----- > From: Louis LeBlanc [mailto:leblanc+freebsd@acadia.ne.mediaone.net] > Sent: July 16, 2001 11:29 AM > To: freebsd-questions@FreeBSD.ORG; freebsd-questions@FreeBSD.org > Subject: Re: ARRGH Netscape stinks! >=20 >=20 > Isn't Opera a nagware item? IIRC you can only use it as long as you > are willing to deal with the shareware nag popups or else pay for it. > I'd rather use Nutscrape and deal with the hassles there - IMHO, its > just as good as Opera in the long run. >=20 > L > On 07/16/01 04:23 PM, James Greenhalgh sat at the `puter and typed: > > On Mon, 16 Jul 2001 15:07:51 +0100 > > Alex Dyas wrote: > >=20 > > > > On Mon, Jul 16, 2001 at 09:01:54AM -0400, Steve Tremblett = wrote: > > > > > Is there ANY alternative to Netscape? I'm running Linux=20 > > > > Netscape 4.77 > > > > > and I'm fed up with having it freeze or crash every=20 > hour. Is the > > > > > native Netscape any better? Is there another alternative? =20 > > > > I've tried > > > > > Mozilla, but it crashed on the first site I went to, so I=20 > > > > deinstalled > > > > > it. > > > > >=20 > > > > > Any suggestions? (please no jokers suggesting lynx! :) > > > > >=20 > > > > > --=20 > > > > > Steve Tremblett > > > >=20 > > > > > > > > > I've been using Mozilla since 0.9 release and have very=20 > few problems. > > > > Currently they're at 0.9.2. I build from ports=20 > collection (rather > > > > than Mozilla's binary) > > >=20 > > > The current Mozilla 0.9.2 has been steady as a rock for=20 > me. Earlier .8.x > > > versions were admitidly shakey but this one has renewed=20 > my faith in the > > > project. Renders like lightning too. Give it a go (got=20 > my port from the > > > dutch mirror which tends to be more up to date=20 > ftp.nl.freebsd.org ). > > >=20 > > > alex.. > >=20 > > My personal choice currently is Opera - which rules out=20 > looking at flash sites > > but I'm willing to live without that. Mozilla renders=20 > quickly, but I find the > > UI itself to be astonishingly slow (on a dual p2-400..) > >=20 > > james > >=20 > > --=20 > >=20 > > find great crazy-mad out-of-head experience from japan. > >=20 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > >=20 >=20 > --=20 > Louis LeBlanc leblanc@acadia.ne.mediaone.net > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > http://acadia.ne.mediaone.net =D4=BF=D4=AC >=20 > QOTD: > "Even the Statue of Liberty shaves her pits." >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message >=20 ------_=_NextPart_001_01C10E0D.15FCD760 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable RE: ARRGH Netscape stinks!

the ads are in the top right of the corner of the the = app. I hardly ever notice them. The don't pop up at you. For $39 you = can get ride of the ads, which does speed the up the app.

Roderick P. Person
Programmer II
personrp@ccbh.com

"Without censorship, things can get terribly = confused in the public mind."

    - General William = Westmoreland


> -----Original Message-----
> From: Louis LeBlanc [mailto:leblanc+fr= eebsd@acadia.ne.mediaone.net]
> Sent: July 16, 2001 11:29 AM
> To: freebsd-questions@FreeBSD.ORG; = freebsd-questions@FreeBSD.org
> Subject: Re: ARRGH Netscape stinks!
>
>
> Isn't Opera a nagware item?  IIRC you can = only use it as long as you
> are willing to deal with the shareware nag = popups or else pay for it.
> I'd rather use Nutscrape and deal with the = hassles there - IMHO, its
> just as good as Opera in the long run.
>
> L
> On 07/16/01 04:23 PM, James Greenhalgh sat at = the `puter and typed:
> > On Mon, 16 Jul 2001 15:07:51 +0100
> > Alex Dyas <ADyas@twowaytv.com> = wrote:
> >
> > > > On Mon, Jul 16, 2001 at = 09:01:54AM -0400, Steve Tremblett wrote:
> > > > > Is there ANY alternative to = Netscape?  I'm running Linux
> > > > Netscape 4.77
> > > > > and I'm fed up with having = it freeze or crash every
> hour.  Is the
> > > > > native Netscape any = better?  Is there another alternative? 
> > > > I've tried
> > > > > Mozilla, but it crashed on = the first site I went to, so I
> > > > deinstalled
> > > > > it.
> > > > >
> > > > > Any suggestions?  = (please no jokers suggesting lynx! :)
> > > > >
> > > > > --
> > > > > Steve Tremblett
> > > >
> > > > >
> > > > I've been using Mozilla since = 0.9 release and have very
> few problems.
> > > > Currently they're at = 0.9.2.  I build from ports
> collection (rather
> > > > than Mozilla's binary)
> > >
> > > The current Mozilla 0.9.2 has been = steady as a rock for
> me.  Earlier .8.x
> > > versions were admitidly shakey but = this one has renewed
> my faith in the
> > > project.  Renders like lightning = too.  Give it a go (got
> my port from the
> > > dutch mirror which tends to be more = up to date
> ftp.nl.freebsd.org ).
> > >
> > > alex..
> >
> > My personal choice currently is Opera - = which rules out
> looking at flash sites
> > but I'm willing to live without = that.  Mozilla renders
> quickly, but I find the
> > UI itself to be astonishingly slow (on a = dual p2-400..)
> >
> > james
> >
> > --
> >
> > 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
> >
>
> --
> Louis = LeBlanc       = leblanc@acadia.ne.mediaone.net
> Fully Funded Hobbyist, KeySlapper Extrordinaire = :)
> http://acadia.ne.mediaone.net   &nb= sp;           &nb= sp; =D4=BF=D4=AC
>
> QOTD:
>   "Even the Statue of Liberty = shaves her pits."
>
>
> To Unsubscribe: send mail to = majordomo@FreeBSD.org
> with "unsubscribe freebsd-questions" = in the body of the message
>

------_=_NextPart_001_01C10E0D.15FCD760-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 8:39: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from out3.mx.nwbl.wi.voyager.net (out3.mx.nwbl.wi.voyager.net [169.207.3.79]) by hub.freebsd.org (Postfix) with ESMTP id 1F26D37B405 for ; Mon, 16 Jul 2001 08:39:01 -0700 (PDT) (envelope-from dpoland@execpc.com) Received: from earth.execpc.com (dpoland@earth.execpc.com [169.207.16.1]) by out3.mx.nwbl.wi.voyager.net (8.11.1/8.11.1) with ESMTP id f6GFd0r39498 for ; Mon, 16 Jul 2001 10:39:00 -0500 (CDT) Received: (from dpoland@localhost) by earth.execpc.com (8.9.0) id KAA14177 for questions@freebsd.org; Mon, 16 Jul 2001 10:39:00 -0500 (CDT) Date: Mon, 16 Jul 2001 10:39:00 -0500 From: Doug Poland To: questions@freebsd.org Subject: XFree86 4.0.1 -- i810e video woes Message-ID: <20010716103859.A12947@polands.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3us Sender: owner-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, I've done my reading on the lists and the handbook but am going absolutely no where in my attempts to configure an Intel i810e video chipset to work with XFree86. I'm running 4.3-RELEASE at the moment. Here's the step-by- step things I've done with error messages. added device agp to a custom kernel (suggestion from list archives): # grep agp /sys/i386/conf/CANAAN device agp loaded the agpgart module (suggestion from list archives): # kldstat Id Refs Address Size Name 1 4 0xc0100000 26140c kernel 2 1 0xc0362000 9cc0 agp.ko 3 1 0xc0fdc000 2000 warp_saver.ko 4 1 0xc0fdf000 12000 linux.ko made the agpgart device (suggestion from the handbook) # cd /dev # sh MAKEDEV agpgart # ls -l agp* crw------- 1 operator wheel 148, 0 Jul 16 08:11 agpgart Attempting to configure XFree86 (handbook): # XFree86 -configure lots of: "Symbol ______ from module /usr/X11R6/lib/modules/drivers/_____ unresolved" messages Fatal server error: Caught signal 11. Server aborting It did make me a XF86Config.new file, however. In it, I made sure the following was set.. Section "Device" Identifier "Intel i810" Driver "i810" EndSection In accordance with the README.i810 So, I try to test it despite the core dump and X reports fewer errors this time: Symbol fbPictureInit from module /usr/X11R6/lib/modules/drivers/i810_drv.o is unresolved! Symbol XAAFillSolidRects from module /usr/X11R6/lib/modules/drivers/i810_drv.o is unresolved! Symbol XAAFillSolidRects from module /usr/X11R6/lib/modules/drivers/i810_drv.o is unresolved! Fatal server error: Caught signal 11. Server aborting And this is as close as I can get to X11 running on this box :( Many thanks for your patience and help. -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 8:44:34 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 B76AC37B403 for ; Mon, 16 Jul 2001 08:44:24 -0700 (PDT) (envelope-from leblanc@leblanc.mirrorimage.net) Received: by leblanc.mirrorimage.net (Postfix, from userid 118) id E72C96BBF7; Mon, 16 Jul 2001 11:44:09 -0400 (EDT) Date: Mon, 16 Jul 2001 11:44:09 -0400 From: Louis LeBlanc To: freebsd-questions@FreeBSD.ORG, freebsd-questions@FreeBSD.org Subject: Re: mergemaster - problem installing files Message-ID: <20010716114409.E19358@acadia.ne.mediaone.net> Reply-To: freebsd-questions@FreeBSD.org Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <20010712175924.83029.qmail@web11707.mail.yahoo.com> <20010716112507.C19358@acadia.ne.mediaone.net> <008c01c10e0d$12293a20$db1b080f@JSHEETS2K> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <008c01c10e0d$12293a20$db1b080f@JSHEETS2K> 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 Ok, but doesn't the '-a' flag say to just leave the files that differ from the installed versions in the temp directory? -i tells mergemaster to install them automatically. What do you expect -ia to do? TIA Lou On 07/16/01 09:36 AM, Jason Sheets sat at the `puter and typed: > I run megemaster -ia without any problems > > ----- Original Message ----- > From: "Louis LeBlanc" > To: ; > Sent: Monday, July 16, 2001 9:25 AM > Subject: Re: mergemaster - problem installing files > > > > Any caveats with just running 'mergemaster -i'? I assume this would > > be perfectly fine as long as I am not making changes to the base code. > > > > Any comments? > > > > TIA > > Lou > > On 07/12/01 10:59 AM, Tim Erlin sat at the `puter and typed: > > > I'm updating my source, trying to run mergemaster, but > > > it seems to fail when trying to install the temporary > > > or merged files. The error is "problem installing > > > ./blahblahfile, it will remain to merge by hand > > > later." > > > > > > I would search the mailing list for this problem, but > > > since I search for "install" seems to return nothing, > > > I'll presume something's broken. > > > > > > I would hate to have to merge by hand...is there a > > > quick solution to this problem? > > > > > > --Tim > > > > > > __________________________________________________ > > > 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 > > > > > > > -- > > Louis LeBlanc leblanc@acadia.ne.mediaone.net > > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > > http://acadia.ne.mediaone.net Ô¿Ô¬ > > > > QOTD: > > "Even the Statue of Liberty shaves her pits." > > > > > > 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 > -- Louis LeBlanc leblanc@acadia.ne.mediaone.net Fully Funded Hobbyist, KeySlapper Extrordinaire :) http://acadia.ne.mediaone.net Ô¿Ô¬ clone, n: 1. An exact duplicate, as in "our product is a clone of their product." 2. A shoddy, spurious copy, as in "their product is a clone of our product." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 8:55:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f214.pav2.hotmail.com [64.4.37.214]) by hub.freebsd.org (Postfix) with ESMTP id D6C3B37B401 for ; Mon, 16 Jul 2001 08:55:49 -0700 (PDT) (envelope-from twchim1@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 16 Jul 2001 08:55:49 -0700 Received: from 147.8.145.22 by pv2fd.pav2.hotmail.msn.com with HTTP; Mon, 16 Jul 2001 15:55:49 GMT X-Originating-IP: [147.8.145.22] From: "Wing Tim" To: oberman@es.net Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Configuring Lucent WaveLAN products Date: Mon, 16 Jul 2001 23:55:49 +0800 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 16 Jul 2001 15:55:49.0867 (UTC) FILETIME=[C8C3FBB0:01C10E0F] Sender: owner-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 Kelvin, Do you mean if I use an ISA adapter to connect the Lucent 11M WaveLAN card, both the ISA adapter and the Lucent 11M WaveLAN card can be detected automatically (as for 3Com Ethernet Card) during the FreeBSD installation process? Thanks! >From: "Kevin Oberman" >To: "Wing Tim" >CC: freebsd-questions@FreeBSD.ORG >Subject: Re: Configuring Lucent WaveLAN products >Date: Fri, 13 Jul 2001 10:42:40 -0700 > > > From: "Wing Tim" > > Date: Sat, 14 Jul 2001 01:06:26 +0800 > > Sender: owner-freebsd-questions@FreeBSD.ORG > > > > Dear All, > > After installing FreeBSD 4.2, I found that my Lucent WaveLAN card and > > adapter cannot be detected and as a result the WaveLAN card cannot >function > > properly. Did I make something wrong during the installing process? How > > should I configure and install it? > > Could anyone give me a simple step-by-step guideline about installing > > Lucent WaveLAN cards and adapters on the FreeBSD 4.2 platform. Thanks! > >If it's the Lucent provided adapter, it does not currently work with >FreeBSD. The ISA adapter does work. > >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 _________________________________________________________________________ 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 Mon Jul 16 8:59:44 2001 Delivered-To: freebsd-questions@freebsd.org Received: from everest.wananchi.com (everest.wananchi.com [62.8.64.4]) by hub.freebsd.org (Postfix) with ESMTP id 9A2C137B401 for ; Mon, 16 Jul 2001 08:59:23 -0700 (PDT) (envelope-from wash@wananchi.com) Received: from wash by everest.wananchi.com with local (Exim 3.31 #3) id 15MAlm-0002Yg-00 for freebsd-questions@FreeBSD.ORG; Mon, 16 Jul 2001 18:58:50 +0300 Date: Mon, 16 Jul 2001 18:58:50 +0300 From: Odhiambo Washington To: "freebsd-questions@FreeBSD.ORG" Subject: Re: Auto logout Message-ID: <20010716185850.R75906@everest.wananchi.com> Mail-Followup-To: Odhiambo Washington , "freebsd-questions@FreeBSD.ORG" References: <3B52B08B.1C2668D4@pacific.net.sg> <3B52EC15.2400789B@i-clue.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UugvWAfsgieZRqgk" Content-Disposition: inline In-Reply-To: <3B52EC15.2400789B@i-clue.de> 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: 6:57PM up 3 days, 22:39, 4 users, load averages: 0.29, 0.27, 0.17 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --UugvWAfsgieZRqgk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * Christoph Sold [20010716 17:09]: writing on the sub= ject 'Re: Auto logout' Christoph>=20 Christoph>=20 Christoph> Kelvin Ng Chee Hoong schrieb: Christoph> >=20 Christoph> > Hi ; Christoph> > I want to configure my FBSD machine to auto-logout if the= system Christoph> > detected the connection idle more than 10 minutes . How do I c= onfigure Christoph> > it ? Christoph>=20 Christoph> Have a look at /usr/ports/sysutils/idled. Other than idled and having=20 set autologout=3D some_minutes in your shell's rc file, isn't there any other solution from the base system? Just wondering?? -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. Once at a social gathering, Gladstone said to Disraeli, 'I predict, Sir, th= at=20 you will die either by hanging or of some vile disease'. Disraeli replied,= =20 'That all depends, sir, upon whether I embrace your principles or your=20 mistress.'=20 --UugvWAfsgieZRqgk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7Uw86n7LIsuxjem8RAt5hAJ4im0d5lJp49M8Ac87H/QT91PyolwCguuRR XAnBWRqD1y8BEEDqsJjk/cA= =+T8T -----END PGP SIGNATURE----- --UugvWAfsgieZRqgk-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 9: 4:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cisco.com (sword.cisco.com [161.44.208.100]) by hub.freebsd.org (Postfix) with ESMTP id 93AB537B40A for ; Mon, 16 Jul 2001 09:04:11 -0700 (PDT) (envelope-from sjt@cisco.com) Received: from sjt-u10.cisco.com (sjt-u10.cisco.com [10.85.30.63]) by cisco.com (8.8.5-Cisco.1/8.8.8) with ESMTP id MAA16490; Mon, 16 Jul 2001 12:04:10 -0400 (EDT) Received: (sjt@localhost) by sjt-u10.cisco.com (8.8.5-Cisco.1/CISCO.WS.1.2) id MAA01917; Mon, 16 Jul 2001 12:04:10 -0400 (EDT) Date: Mon, 16 Jul 2001 12:04:10 -0400 From: Steve Tremblett To: Steve Tremblett Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ARRGH Netscape stinks! Message-ID: <20010716120410.M1384@sjt-u10.cisco.com> References: <20010716090154.C1384@sjt-u10.cisco.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010716090154.C1384@sjt-u10.cisco.com>; from sjt@cisco.com on Mon, Jul 16, 2001 at 09:01:54AM -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 Given the options I'm going to have to stick with Netscape. I tried Mozilla 0.9, which was useless to me - VERY slow and crashed consistently (on http://www.myfamily.com if anyone's interested - heavy use of Javascript and css). I'm morally opposed to Opera with that advertising crap - does anyone know if junkbuster or something like that could block it? Will Opera function if it can't contact the ad server? A blackhole route could do the trick ;) Konqueror requires KDE, which I'd like to avoid. There are 2 Netscapes available - Linux and native. I am currently using the Linux one - is the native more stable? What do I trade off (besides the flash plugin) by using the native one? -- Steve Tremblett To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 9:10: 7 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 ECB9F37B401 for ; Mon, 16 Jul 2001 09:09:56 -0700 (PDT) (envelope-from leblanc@leblanc.mirrorimage.net) Received: by leblanc.mirrorimage.net (Postfix, from userid 118) id 31CEB6BBF7; Mon, 16 Jul 2001 12:09:42 -0400 (EDT) Date: Mon, 16 Jul 2001 12:09:42 -0400 From: Louis LeBlanc To: freebsd-questions@FreeBSD.org Subject: cvsup and buildworld problems Message-ID: <20010716120941.F19358@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. Here are the problems: I am running the following: /usr/local/bin/cvsup -g -L 2 -z /etc/cvsupfile Everything updates fine, but the refuse file is ignored. Here is my /etc/cvsupfile: ------------------------------------------------------ *default host=cvsup.FreeBSD.org *default base=/usr *default prefix=/usr *default release=cvs *default tag=RELENG_4 *default delete use-rel-suffix src-base src-bin src-contrib src-etc src-games src-gnu src-include src-kerberosIV src-kerberos5 src-lib src-libexec src-release src-sbin src-share src-sys src-tools src-usrbin src-usrsbin *default tag=. ports-all doc-all ------------------------------------------------------ In /usr/sup/ I have the following refuse file: ------------------------------------------------------ doc/de doc/de_* doc/es doc/es_* doc/fr doc/fr_* doc/ja doc/ja_* doc/nl doc/nl_* doc/ru doc/ru_* doc/zh doc/zh_* ports/chinese ports/french ports/german ports/hebrew ports/japanese ports/korean ports/russian ports/ukrainian ports/vietnamese ------------------------------------------------------ Seems that should prevent the language ports from being updated, right? Next problem: make buildworld After the cvsup, I run mergemaster and install any changed files without merging (I am not changing any source myself at this point). the make buildworld goes for quite some time then fails. Now, I'm not one of those arrogant jerks that assumes the problem is with the compiler, someone else's source or whatever. I just need to know if anyone out there knows what I'm doing wrong. :| Thanks all. -- Louis LeBlanc leblanc@acadia.ne.mediaone.net Fully Funded Hobbyist, KeySlapper Extrordinaire :) http://acadia.ne.mediaone.net Ô¿Ô¬ If an experiment works, something has gone wrong. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 9:20:22 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 5504437B401 for ; Mon, 16 Jul 2001 09:20:11 -0700 (PDT) (envelope-from personrp@ccbh.com) Received: by 1upmc-msximc2.isdip.upmc.edu with Internet Mail Service (5.5.2653.19) id <34TVM5TD>; Mon, 16 Jul 2001 12:18:55 -0400 Message-ID: <46AEB8C1B628D511969200508B6FE42A6684A8@1upmc-msx6.isdip.upmc.edu> From: "Person, Roderick" To: 'Steve Tremblett' Cc: freebsd-questions@FreeBSD.ORG Subject: RE: ARRGH Netscape stinks! Date: Mon, 16 Jul 2001 12:18:50 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C10E12.FFF6D050" Sender: owner-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_01C10E12.FFF6D050 Content-Type: text/plain; charset="iso-8859-1" why would you be morally opposite to 'Opera with that advertising crap' when the vast majority of web sites have ads all over them? Even your link has an ad on that page. I'm just curious. Of course you can pay for Opera and get ride of the ads. But I would guess that would be more oppositional that having ads :) Roderick P. Person Programmer II personrp@ccbh.com "Without censorship, things can get terribly confused in the public mind." - General William Westmoreland > -----Original Message----- > From: Steve Tremblett [mailto:sjt@cisco.com] > Sent: July 16, 2001 12:04 PM > To: Steve Tremblett > Cc: freebsd-questions@FreeBSD.ORG > Subject: Re: ARRGH Netscape stinks! > > > Given the options I'm going to have to stick with Netscape. I tried > Mozilla 0.9, which was useless to me - VERY slow and crashed > consistently (on http://www.myfamily.com if anyone's > interested - heavy > use of Javascript and css). I'm morally opposed to Opera with that > advertising crap - does anyone know if junkbuster or something like > that could block it? Will Opera function if it can't contact the ad > server? A blackhole route could do the trick ;) Konqueror requires > KDE, which I'd like to avoid. > > There are 2 Netscapes available - Linux and native. I am currently > using the Linux one - is the native more stable? What do I trade off > (besides the flash plugin) by using the native one? > > -- > Steve Tremblett > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > ------_=_NextPart_001_01C10E12.FFF6D050 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable RE: ARRGH Netscape stinks!

why would you be morally opposite to 'Opera with that = advertising crap' when the vast majority of web sites have ads all over = them?

Even your link has an ad on that page. I'm just = curious. Of course you can pay for Opera and get ride of the ads. But I = would guess that would be more oppositional that having ads = :)

Roderick P. Person
Programmer II
personrp@ccbh.com

"Without censorship, things can get terribly = confused in the public mind."

    - General William = Westmoreland


> -----Original Message-----
> From: Steve Tremblett [mailto:sjt@cisco.com]
> Sent: July 16, 2001 12:04 PM
> To: Steve Tremblett
> Cc: freebsd-questions@FreeBSD.ORG
> Subject: Re: ARRGH Netscape stinks!
>
>
> Given the options I'm going to have to stick = with Netscape.  I tried
> Mozilla 0.9, which was useless to me - VERY = slow and crashed
> consistently (on http://www.myfamily.com if anyone's
> interested - heavy
> use of Javascript and css).  I'm morally = opposed to Opera with that
> advertising crap - does anyone know if = junkbuster or something like
> that could block it?  Will Opera function = if it can't contact the ad
> server?  A blackhole route could do the = trick ;)  Konqueror requires
> KDE, which I'd like to avoid.
>
> There are 2 Netscapes available - Linux and = native.  I am currently
> using the Linux one - is the native more = stable?  What do I trade off
> (besides the flash plugin) by using the native = one?
>
> --
> Steve Tremblett
>
> To Unsubscribe: send mail to = majordomo@FreeBSD.org
> with "unsubscribe freebsd-questions" = in the body of the message
>

------_=_NextPart_001_01C10E12.FFF6D050-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 9:20:38 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 5F4BB37B412 for ; Mon, 16 Jul 2001 09:20:23 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.219] (helo=mrvdom03.schlund.de) by moutvdom00.kundenserver.de with esmtp (Exim 2.12 #2) id 15MB6b-00007a-00 for freebsd-questions@freebsd.org; Mon, 16 Jul 2001 18:20:21 +0200 Received: from pd9017210.dip.t-dialin.net ([217.1.114.16]) by mrvdom03.schlund.de with esmtp (Exim 2.12 #2) id 15MB6b-0004ts-00 for freebsd-questions@FreeBSD.ORG; Mon, 16 Jul 2001 18:20:22 +0200 Date: Mon, 16 Jul 2001 18:21:13 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: Message-ID: <20010716182051.J341-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 subscribe freebsd-current end *--------------------------------------* | 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 16 9:23: 8 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 EE19A37B403 for ; Mon, 16 Jul 2001 09:23:01 -0700 (PDT) (envelope-from dennywhite@yahoo.com) Received: from dhcp-150-81.bilcpe.cableone.net (HELO hal) (24.116.53.150) by smtp.mail.vip.sc5.yahoo.com with SMTP; 16 Jul 2001 16:23:01 -0000 X-Apparently-From: Message-ID: <008501c10e13$953aa2e0$6601a8c0@hal> From: "denny white" To: Cc: References: <3B52F81F.3BF31ECE@carolina.rr.com> Subject: Re: Configuring static linksys router Date: Mon, 16 Jul 2001 11:22:00 -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 I'm using a linksys router. Only difference is, & I don't think it'll make a difference, I'm getting to it from a netgear 4 port hub. I get to the router's settings using browser, standard address 192.168.1.1 where, unless you've already changed it, either user is admin without pw or you leave user blank & use admin for pw. Can't remember which. Sorry. Just try it both ways. Guess after you get in it's wisest to assign a user & pw. If you've got xwindows installed, you can use netscape, opera, konqueror, etc. to get there. If you don't, maybe you can use lynx in terminal window. I just tried it & it worked okay. If you don't & you have the ports installed, look in /usr/ports/www/lynx. Go into that dir & type: make make install make clean Then you should be able to use it It'll be in /usr/local/bin dir. Of course, it'd be a lot simpler if you had x installed. A lot easier to use a browser there. Hope this helps. ----- Original Message ----- From: "khayman" To: "Jethro" Cc: Sent: Monday, July 16, 2001 9:20 AM Subject: Re: Configuring static linksys router > I'm pretty sure Linksys only supports mods to the config thru a browser > interface. No telnet access. > > Jethro wrote: > > > > Hello, I am a newbie and am trying to set up my network at home. > > > > I have a linksys 4 port router/hub and have recently setup my freebsd box. > > I have connectd my box to my router and have set a static ip address on my > > box and need to set a static ip address on my router. How can i telnet into > > my linksys router and set the static ip on it from my bsd box? And what are > > the commands? I have looked on the linksys site but support for unix is > > unavailable. > > > > Im sure somebody out there can tell me how to do it or point me in the right > > direction. I would really appreciate it. > > > > Sincerely, > > > > David Begley > > Kailua, Hawaii > > begley1@hawaii.rr.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 _________________________________________________________ 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 16 9:24:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f265.law10.hotmail.com [64.4.14.140]) by hub.freebsd.org (Postfix) with ESMTP id D1CF537B401 for ; Mon, 16 Jul 2001 09:24:06 -0700 (PDT) (envelope-from ex279@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 16 Jul 2001 09:24:06 -0700 Received: from 205.228.172.82 by lw10fd.law10.hotmail.msn.com with HTTP; Mon, 16 Jul 2001 16:24:06 GMT X-Originating-IP: [205.228.172.82] From: "Todd Reed" To: freebsd-questions@freebsd.org Subject: Configuring Apache Date: Mon, 16 Jul 2001 11:24:06 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 16 Jul 2001 16:24:06.0740 (UTC) FILETIME=[BC2E4140:01C10E13] Sender: owner-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 get my apache web server to pull up the correct pages. When I change the configurations to go to a different directory, it will give me "This page cannot be displayed". Here is my httpd.conf. The access.conf and srm.conf are empty. I've got the following pages in the /mnt/vdrv/inetpub/www/root: index.htm, index.html, index.php. If i replace the httpd.conf with the httpd.conf.default (back to the original), it pulls up the default Apache Page --Configs Start ServerType standalone ServerRoot "/mnt/vdrv/inetpub/www" PidFile /var/run/httpd.pid ScoreBoardFile /var/run/httpd.scoreboard Timeout 300 KeepAlive On MaxKeepAliveRequests 100 KeepAliveTimeout 15 MinSpareServers 5 MaxSpareServers 10 StartServers 5 MaxClients 150 MaxRequestsPerChild 0 LoadModule mmap_static_module libexec/apache/mod_mmap_static.so LoadModule vhost_alias_module libexec/apache/mod_vhost_alias.so LoadModule env_module libexec/apache/mod_env.so LoadModule config_log_module libexec/apache/mod_log_config.so LoadModule mime_magic_module libexec/apache/mod_mime_magic.so LoadModule mime_module libexec/apache/mod_mime.so LoadModule negotiation_module libexec/apache/mod_negotiation.so LoadModule status_module libexec/apache/mod_status.so LoadModule info_module libexec/apache/mod_info.so LoadModule includes_module libexec/apache/mod_include.so LoadModule autoindex_module libexec/apache/mod_autoindex.so LoadModule dir_module libexec/apache/mod_dir.so LoadModule cgi_module libexec/apache/mod_cgi.so LoadModule asis_module libexec/apache/mod_asis.so LoadModule imap_module libexec/apache/mod_imap.so LoadModule action_module libexec/apache/mod_actions.so LoadModule speling_module libexec/apache/mod_speling.so LoadModule userdir_module libexec/apache/mod_userdir.so LoadModule alias_module libexec/apache/mod_alias.so LoadModule rewrite_module libexec/apache/mod_rewrite.so LoadModule access_module libexec/apache/mod_access.so LoadModule auth_module libexec/apache/mod_auth.so LoadModule anon_auth_module libexec/apache/mod_auth_anon.so LoadModule db_auth_module libexec/apache/mod_auth_db.so LoadModule digest_module libexec/apache/mod_digest.so LoadModule proxy_module libexec/apache/libproxy.so LoadModule cern_meta_module libexec/apache/mod_cern_meta.so LoadModule expires_module libexec/apache/mod_expires.so LoadModule headers_module libexec/apache/mod_headers.so LoadModule usertrack_module libexec/apache/mod_usertrack.so LoadModule unique_id_module libexec/apache/mod_unique_id.so LoadModule setenvif_module libexec/apache/mod_setenvif.so ClearModuleList AddModule mod_mmap_static.c AddModule mod_vhost_alias.c AddModule mod_env.c AddModule mod_log_config.c AddModule mod_mime_magic.c AddModule mod_mime.c AddModule mod_negotiation.c AddModule mod_status.c AddModule mod_info.c AddModule mod_include.c AddModule mod_autoindex.c AddModule mod_dir.c AddModule mod_cgi.c AddModule mod_asis.c AddModule mod_imap.c AddModule mod_actions.c AddModule mod_speling.c AddModule mod_userdir.c AddModule mod_alias.c AddModule mod_rewrite.c AddModule mod_access.c AddModule mod_auth.c AddModule mod_auth_anon.c AddModule mod_auth_db.c AddModule mod_digest.c AddModule mod_proxy.c AddModule mod_cern_meta.c AddModule mod_expires.c AddModule mod_headers.c AddModule mod_usertrack.c AddModule mod_unique_id.c AddModule mod_so.c AddModule mod_setenvif.c Port 80 User nobody Group nogroup ServerAdmin admin@saera.neaclinic.com DocumentRoot "/mnt/vdrv/inetpub/www/root" Options FollowSymLinks AllowOverride None Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny Allow from all UserDir public_html DirectoryIndex index.php index.php3 index.html DirectoryIndex index.php3 index.html DirectoryIndex index.php index.html DirectoryIndex index.html AccessFileName .htaccess Order allow,deny Deny from all UseCanonicalName On TypesConfig /usr/local/etc/apache/mime.types DefaultType text/plain MIMEMagicFile /usr/local/etc/apache/magic HostnameLookups Off ErrorLog /var/log/httpd-error.log LogLevel warn 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 CustomLog /var/log/httpd-access.log combined ServerSignature On Alias /icons/ "/mnt/vdrv/inptpub/www/icons/" Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all ScriptAlias /cgi-bin/ "/mnt/vdrv/inetpub/www/cgi-bin/" AllowOverride None Options None Order allow,deny Allow from all IndexOptions FancyIndexing AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip AddIconByType (TXT,/icons/text.gif) text/* AddIconByType (IMG,/icons/image2.gif) image/* AddIconByType (SND,/icons/sound2.gif) audio/* AddIconByType (VID,/icons/movie.gif) video/* AddIcon /icons/binary.gif .bin .exe AddIcon /icons/binhex.gif .hqx AddIcon /icons/tar.gif .tar AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip AddIcon /icons/a.gif .ps .ai .eps AddIcon /icons/layout.gif .html .shtml .htm .pdf AddIcon /icons/text.gif .txt AddIcon /icons/c.gif .c AddIcon /icons/p.gif .pl .py AddIcon /icons/f.gif .for AddIcon /icons/dvi.gif .dvi AddIcon /icons/uuencoded.gif .uu AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl AddIcon /icons/tex.gif .tex AddIcon /icons/bomb.gif core AddIcon /icons/back.gif .. AddIcon /icons/hand.right.gif README AddIcon /icons/folder.gif ^^DIRECTORY^^ AddIcon /icons/blank.gif ^^BLANKICON^^ DefaultIcon /icons/unknown.gif ReadmeName README HeaderName HEADER IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t AddEncoding x-compress Z AddEncoding x-gzip gz tgz AddLanguage da .dk AddLanguage nl .nl AddLanguage en .en AddLanguage et .ee AddLanguage fr .fr AddLanguage de .de AddLanguage el .el AddLanguage he .he AddCharset ISO-8859-8 .iso8859-8 AddLanguage it .it AddLanguage ja .ja AddCharset ISO-2022-JP .jis AddLanguage kr .kr AddCharset ISO-2022-KR .iso-kr AddLanguage no .no AddLanguage pl .po AddCharset ISO-8859-2 .iso-pl AddLanguage pt .pt AddLanguage pt-br .pt-br AddLanguage ltz .lu AddLanguage ca .ca AddLanguage es .es AddLanguage sv .se AddLanguage cz .cz AddLanguage ru .ru AddLanguage tw .tw AddCharset Big5 .Big5 .big5 AddCharset WINDOWS-1251 .cp-1251 AddCharset CP866 .cp866 AddCharset ISO-8859-5 .iso-ru AddCharset KOI8-R .koi8-r AddCharset UCS-2 .ucs2 AddCharset UCS-4 .ucs4 AddCharset UTF-8 .utf8 LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw AddType application/x-httpd-php3 .php3 AddType application/x-httpd-php3-source .php3s AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps AddType application/x-tar .tgz BrowserMatch "Mozilla/2" nokeepalive BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0 BrowserMatch "RealPlayer 4\.0" force-response-1.0 BrowserMatch "Java/1\.0" force-response-1.0 BrowserMatch "JDK/1\.0" force-response-1.0 _________________________________________________________________ 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 16 9:26: 2 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 B032337B406 for ; Mon, 16 Jul 2001 09:25:51 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.219] (helo=mrvdom03.schlund.de) by moutvdom00.kundenserver.de with esmtp (Exim 2.12 #2) id 15MBBr-0000dl-00; Mon, 16 Jul 2001 18:25:47 +0200 Received: from pd9017210.dip.t-dialin.net ([217.1.114.16]) by mrvdom03.schlund.de with esmtp (Exim 2.12 #2) id 15MBBr-0005KY-00; Mon, 16 Jul 2001 18:25:47 +0200 Date: Mon, 16 Jul 2001 18:26:39 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: Vladislav Saltanov Cc: Subject: Re: I can't mount FAT16 disk In-Reply-To: <000a01c10e08$6c501780$ec326dd4@comp> Message-ID: <20010716182256.Q345-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, 16 Jul 2001, Vladislav Saltanov wrote: > When I try to mount the DOS disk I see the following: > > #mount_msdos /dev/ad0s1 /mnt > mount_msdos:vfsload(msdos):File exists > > #mount -t msdos /dev/ad0s1 /mnt > mount_msdos:vfsload(msdos):File exists Try # df -h to find out if anything else is mounted on /mnt . If not: which version of FreeBSD do you use? > #mount /dev/ad0s1 /mnt > mount: /dev/ad0s1 on /mnt: incorrect super block That should be o.k.. 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 16 9:29:33 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 CA81A37B401 for ; Mon, 16 Jul 2001 09:29:28 -0700 (PDT) (envelope-from ADyas@twowaytv.com) Received: by exchange.twowaytv.co.uk with Internet Mail Service (5.5.2653.19) id <36F0RQ66>; Mon, 16 Jul 2001 17:25:51 +0100 Message-ID: <911D8F660DF6D411B61F00500462BA01CC710B@exchange.twowaytv.co.uk> From: Alex Dyas To: Todd Reed , freebsd-questions@freebsd.org Subject: RE: Configuring Apache Date: Mon, 16 Jul 2001 17:25:49 +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 Does user nobody have permissions to read the files in /mnt/vdrv/inetpub/www/root ? alex.. > -----Original Message----- > From: Todd Reed [mailto:ex279@hotmail.com] > Sent: 16 July 2001 17:24 > To: freebsd-questions@freebsd.org > Subject: Configuring Apache > > > I can't get my apache web server to pull up the correct pages. When I > change the configurations to go to a different directory, it > will give me > "This page cannot be displayed". Here is my httpd.conf. The > access.conf > and srm.conf are empty. I've got the following pages in the > /mnt/vdrv/inetpub/www/root: index.htm, index.html, > index.php. If i replace > the httpd.conf with the httpd.conf.default (back to the > original), it pulls > up the default Apache Page To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 9:34:25 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 382BA37B401 for ; Mon, 16 Jul 2001 09:34:19 -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 f6GGYFA12184; Mon, 16 Jul 2001 09:34:15 -0700 (PDT) Message-Id: <200107161634.f6GGYFA12184@ptavv.es.net> To: "Wing Tim" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Configuring Lucent WaveLAN products In-reply-to: Your message of "Mon, 16 Jul 2001 23:55:49 +0800." Date: Mon, 16 Jul 2001 09:34:15 -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 > From: "Wing Tim" > Date: Mon, 16 Jul 2001 23:55:49 +0800 > > Dear Kelvin, > Do you mean if I use an ISA adapter to connect the Lucent 11M WaveLAN > card, both the ISA adapter and the Lucent 11M WaveLAN card can be detected > automatically (as for 3Com Ethernet Card) during the FreeBSD installation > process? The ISA card should work according to reports from others. I have no personal experience with it, though. I can confirm that the PCI card did not work with 4.3-Release. I think the guy doing most of the PCMCIA stuff is working on getting the PCI adapter to work, but I'm not sure how close it is. Also, this applies to the PCI adapter sold for use with the WaveLAN. It's possible that it would work with some other PCI adapter. 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 16 9:36: 4 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 4EF6337B401 for ; Mon, 16 Jul 2001 09:35:49 -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 f6GGZfI65681; Mon, 16 Jul 2001 12:35:41 -0400 (EDT) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 16 Jul 2001 12:35:41 -0400 (EDT) From: Joe Clarke To: "R. Lahaye" Cc: FreeBSD Subject: Re: Cups listing of printers very short. Why? In-Reply-To: <3B52A802.E10F9B87@users.sourceforge.net> Message-ID: <20010716123302.D65674-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 found some patches on the ports list that upgrade CUPS to 1.1.8, but the printer brands are pretty much the same. It works very well for me. If you need to add the smb protocol, follow the docs in sam.html to do this. You need to install Samba, and create a symlink. It's really pretty easy. CUPS is supposed to be easy. If you want more power and flexibility, you should probably go with lpd/lpr with apsfilter or magicfilter or the like. Oh...there are also some web pages out there that tell you how to build your own PPDs for CUPS. You might try search them out on Google. Joe Clarke On Mon, 16 Jul 2001, R. Lahaye wrote: > > Hi, > > FreeBSD ships cups version 1.1.6 (no ports of higher version available). > Am I right that cups is the best tool for configuring (remote) printers? > > I use cupsd in my browser "http://localhost:631/admin" to add printers and > I think the pull-down options are too limited: > > - the Device section has no smb-windows protocol in the list. > > - the 'Make' listing is very short, only "EPSON, HP, OKIDATA". > > - the 'Model' listing is also extremely short, only "HP Deskjet series, HP Laserjet series" > for HP. > > > On another Linux box I use cups 1.1.7, which has many more choices. > > Do I not need these choices under FreeBSD? > Or is there a way to add more choices to my cups installation? > > Thanks, > Rob. > > 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 16 9:38:14 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 92B3437B403 for ; Mon, 16 Jul 2001 09:38:08 -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 f6GGcLS11823; Mon, 16 Jul 2001 11:38:21 -0500 (EST) (envelope-from rlucas@solidcomputing.com) Date: Mon, 16 Jul 2001 11:38:21 -0500 (EST) From: Richard Lucas X-X-Sender: To: Todd Reed Cc: Subject: Re: Configuring Apache In-Reply-To: Message-ID: <20010716113503.Y11761-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 Mon, 16 Jul 2001, Todd Reed wrote: > I can't get my apache web server to pull up the correct pages. When I > change the configurations to go to a different directory, it will give me > "This page cannot be displayed". Here is my httpd.conf. The access.conf > and srm.conf are empty. I've got the following pages in the > /mnt/vdrv/inetpub/www/root: index.htm, index.html, index.php. If i replace > the httpd.conf with the httpd.conf.default (back to the original), it pulls > up the default Apache Page What's it say in your apache error and access logs? That can usually point you to the problem. Do you have php installed, I didn't see it in your list of modules. What are the contents of your index.html page? Also might want to make sure your permissions are correct and the apache user can read the files. -Richard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 9:52:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cisco.com (sword.cisco.com [161.44.208.100]) by hub.freebsd.org (Postfix) with ESMTP id A3F7F37B403 for ; Mon, 16 Jul 2001 09:52:23 -0700 (PDT) (envelope-from sjt@cisco.com) Received: from sjt-u10.cisco.com (sjt-u10.cisco.com [10.85.30.63]) by cisco.com (8.8.5-Cisco.1/8.8.8) with ESMTP id MAA19431; Mon, 16 Jul 2001 12:52:22 -0400 (EDT) Received: (sjt@localhost) by sjt-u10.cisco.com (8.8.5-Cisco.1/CISCO.WS.1.2) id MAA02005; Mon, 16 Jul 2001 12:52:22 -0400 (EDT) Date: Mon, 16 Jul 2001 12:52:22 -0400 From: Steve Tremblett To: "Person, Roderick" Cc: "'Steve Tremblett'" , freebsd-questions@FreeBSD.ORG Subject: Re: ARRGH Netscape stinks! Message-ID: <20010716125222.O1384@sjt-u10.cisco.com> References: <46AEB8C1B628D511969200508B6FE42A6684A8@1upmc-msx6.isdip.upmc.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <46AEB8C1B628D511969200508B6FE42A6684A8@1upmc-msx6.isdip.upmc.edu>; from personrp@ccbh.com on Mon, Jul 16, 2001 at 12:18:50PM -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 +---- Person, Roderick wrote: | why would you be morally opposite to 'Opera with that advertising crap' when | the vast majority of web sites have ads all over them? | Even your link has an ad on that page. I'm just curious. Of course you can | pay for Opera and get ride of the ads. But I would guess that would be more | oppositional that having ads :) Why would I invite MORE ads onto my desktop if I can barely stand the ones on the web? So intrusive and obnoxious. I can't change someone else's website, but given a choice (which I have in the programs I decide to use), I'm going to do without the ads thank you very much. And I _am_ willing to pay for software in the case of "we offer this for free but would appreciate your support", but not in the case where "this is annoying until you pay us". If I pay for it will they give special attention to a bug that I find (as opposed to a non-paying user)? I doubt it - I can't find out for sure because their damn website doesn't display properly in Netscape, which implies that they likely endorse Explorer extensions. It's all about reinforcement (remember Psych 101?) - every ad that is delivered to your desktop is a validation of their business model, and every one you click is double. Even if I see an ad that interests me, I NEVER click through it - I just open a new window and goto the site directly by address. To be honest, all this ad stuff became unbearable some time ago, I just have been to busy to investigate the solutions - I hear junkbuster is good. If a suitable one does not exist I'll make one myself. *sigh* Sorry for the offtopic rant! :) -- Steve Tremblett To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 9:53: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from beta.root-servers.ch (gamma.root-servers.ch [195.49.62.126]) by hub.freebsd.org (Postfix) with SMTP id 81D3C37B401 for ; Mon, 16 Jul 2001 09:53:01 -0700 (PDT) (envelope-from gabriel_ambuehl@buz.ch) Received: (qmail 7633 invoked from network); 16 Jul 2001 16:52:57 -0000 Received: from dclient106-17.hispeed.ch (HELO athlon550) (62.2.106.17) by beta.root-servers.ch with SMTP; 16 Jul 2001 16:52:57 -0000 Date: Mon, 16 Jul 2001 18:53:55 +0200 From: Gabriel Ambuehl X-Mailer: The Bat! (v1.53bis) Educational Organization: BUZ Internet Services X-Priority: 3 (Normal) Message-ID: <64111861237.20010716185355@buz.ch> To: questions@freebsd.org Subject: popen() with bidirectional pipes? 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 -----BEGIN PGP SIGNED MESSAGE----- Hello, I'm trying to get popen() with bidirectional pipes working in C++, but somehow, I don't seem to be very lucky at it: I popen() the following code (which should simply print a line about it self, then the data written to the pipe and finally a line stating it's done) - ----- #include #include #include int main() { char buffer[1024]; int counter; cout << "Test method starts...." << endl; while (!feof(stdin)) { fread((void *) &buffer, (size_t) 1024 , (size_t) 1, stdin); cout << buffer << flush; cerr << "buffer: " << buffer << endl; } cout << "\ndone"<< endl; return 0; } - ---- (This works perfectly well when used with echo | on the cli) and the following one to do the actual popen() call: - ---- pid_t pid; if ( (pid=fork()) == 0) { char buffer; cout << "child pid: " << getpid() << endl; string data; FILE * process; process=popen((const char *) this->cli_call.data(), (const char *) &"r+"); fwrite((const void *) this->stdin_call.data(), (size_t) this->stdin_call.size(), (size_t) 1, process); sleep(2); cout << ">>>Child (pid: " << getpid() << ") reports:\n "; while (!feof(process)) { fread(&buffer, (size_t) 1, (size_t) 1, process); cout << buffer; } cout << data << endl; pclose(process); //spreadclose(process); _exit(0); //cout << "child exits..." << endl; } - ----- According to the popen() man page, the last argument should be r for reading only pipes, w for writing only and r+ for bidirectional ones. Now if put r in there, I get the data the test program will output the stuff it would without any stdin data which makes sense as there isn't anything on it's stdin to print. If I use w, then stdout will go to the console and the data that was written to stdin gets integrated as it should but if I use r+ (which I need), the program gets loaded and the caller simply gets back the data that is printed everytime, so like I'd call it with r instead of r+. What am I doing wrong? Also, I wonder about the following: the first piece of code works without any problems with a buffer of 1024 bytes and reads all the data there is, whereas the second one will be caught in an endless loop (I suppose, as it won't exit anymore) as soon as I use a buffer of more than a single char. A bigger buffer would be a good thing as this would speed up things dramatically. Best regards, Gabriel PS: How big is the buffer of a pipe in FreeBSD? -----BEGIN PGP SIGNATURE----- Version: PGP 6.5i iQEVAwUBO1MOGMZa2WpymlDxAQFzQwgAptLov8qyCffmARJcCfIugRDbBapgsRjU bze/xivNr8PAL3QcuDulXS6esvhmkYMwjg81HKKxF+vvFhU8lXVisg0Q1G3861wI Im1o8zzF4SAMTyxET9sSAJMj2zpIyph5UL6Ong/oxPkmW49Iq3J/nymv1ChwbOxj Rv3ALRVObuE097j1p2YdiomXqTtc7cp0EBwfL+YmN2sZjLnGB7ET/a5cx6JuDZMw JAfAnssjjKwWI+nVx3IVfTXtUt34heQ0vvgHI+/sv21KrqLlZBPpVwtdNB5onabL nyP6eOwEEZWNADODJuZNXZCktucNS79F992ob1lch9VstInjtYWJQQ== =gEV+ -----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 Mon Jul 16 9:53:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mag06.bb.admin.ch (fwigk1.admin.ch [193.5.216.70]) by hub.freebsd.org (Postfix) with ESMTP id BBA3037B406 for ; Mon, 16 Jul 2001 09:53:27 -0700 (PDT) (envelope-from matteotti@alpha.admin.ch) Received: from mar01.bb.admin.ch (root@mar01.bb.admin.ch [193.5.222.71]) by mag06.bb.admin.ch (8.11.2/8.11.2) with ESMTP id f6GGrO106654 for ; Mon, 16 Jul 2001 18:53:24 +0200 (METDST) Received: from mas17.bb.admin.ch (mas17.bb.admin.ch [193.5.222.81]) by mar01.bb.admin.ch (8.11.2/8.11.2) with ESMTP id f6GGrNw02603 for ; Mon, 16 Jul 2001 18:53:23 +0200 (METDST) Received: from mas17.bb.admin.ch (localhost [127.0.0.1]) by mas17.bb.admin.ch (8.11.2/8.11.2) with ESMTP id f6GGrIc09882 for ; Mon, 16 Jul 2001 18:53:18 +0200 (METDST) Received: from mag12.bb.admin.ch (root@mag12.bb.admin.ch [193.5.222.77]) by mas17.bb.admin.ch (8.11.2/8.11.2) with ESMTP id f6GGrCV09854 for ; Mon, 16 Jul 2001 18:53:12 +0200 (METDST) Received: from alpha.admin.ch (IDENT:matteotti@[131.102.156.51]) by mag12.bb.admin.ch (8.11.2/8.11.2) with ESMTP id f6GGXjv09217 for ; Mon, 16 Jul 2001 18:33:45 +0200 (MEST) Message-ID: <60F1A729.4141E78E@alpha.admin.ch> Date: Fri, 16 Jul 2021 16:35:05 +0100 From: matteotti Reply-To: carloma@bluewin.ch X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.2.14-6.0 alpha) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: No card in database for "(null)"("(null)") 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 installed FreeBSD-4.3-RELEASE on an IBM ThinkPAD A22m. I run into problems with PCMCIA card configuration. Inserting a card results in the following message: 'No card in database for "(null)"("(null)")' I was playing around with the PCMCIA support entries in the kernel configuration file: eg. device pcic0 at isa ? irq 10 port 0x3e0 iomem 0xd8000 and many more without success . My modem card (Billionton WorldTravellor) and ethernet card (Apollo) are both listed in /etc/defaults/pccard.conf and I copied the corresponding entries to /etc/pccard.conf. I configured the card already on an IBM ThinkPAD i1200 with sucess. I' d be very thankful for any suggestion . Best regards . C. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 9:54:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id C83BF37B405 for ; Mon, 16 Jul 2001 09:54:13 -0700 (PDT) (envelope-from DougB@DougBarton.net) Received: from DougBarton.net (master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id JAA56384; Mon, 16 Jul 2001 09:54:00 -0700 (PDT) (envelope-from DougB@DougBarton.net) Message-ID: <3B531C28.DFD399E5@DougBarton.net> Date: Mon, 16 Jul 2001 09:54:00 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: so@server.i-clue.de Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Help duplicating data CD's with burncd References: <3B52B6C6.860AF6D3@DougBarton.net> <3B52EBE1.6E82ACC3@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 Christoph Sold wrote: > > Doug Barton schrieb: > > > > [Good story about bad CD copies snipped.] > > > > Any suggestions on where to look next would be welcome. I tried doing > > 'burncd -s 2 -f /dev/acd01c data /dev/acd0c fixate' (where acd0c is the > > regular cd drive, and acd1 is the burner) but that just bought me my first > > coaster. Any other ideas? > > Bad CD-Rs will do that. So you're saying that the above command line should have worked? I'm using memorex cd-r's that are rated for 16x recording, I didn't think quality would be an issue... Doug -- If you're never wrong, you're not trying hard enough. Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 10: 0:53 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 5626337B401 for ; Mon, 16 Jul 2001 10:00:34 -0700 (PDT) (envelope-from tony@camel.kdsi.net) Received: from camel.kdsi.net (leepcD-240.sub-d.lee.net [208.205.127.240]) (authenticated (0 bits)) by camel.kdsi.net (8.12.0.Beta10/8.12.0.Beta10) with ESMTP id f6GHMikj034209; Mon, 16 Jul 2001 12:22:46 -0500 (CDT) Message-ID: <3B531D76.15D7FBC2@camel.kdsi.net> Date: Mon, 16 Jul 2001 11:59:34 -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: abram olson Cc: freebsd-questions@FreeBSD.ORG Subject: Re: incorrect memort amount reported? References: <20010712221651.64596.qmail@web13504.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 You can make sure all your memory gets used by providing a hint to the kernel. Add the line: options MAXMEM="(384*1024)" to your kernel config, and re-compile the kernel. abram olson wrote: > > I have 384M of physical memory. > > After I updated to 4.3-stable gkrellm reports only 326 > although dmesg reports: > real memory = 402571264 (393136K bytes) > avail memory = 387108864 (378036K bytes) > > I understand that this may be a problem with gkrellm > but it reported ther correct amount of memory previous > to my updating to 4.3-stable. > > I'm a newbie what can I say? > > Abe > > ===== > Jesus saves. > Allah forgives, > Cthulu thinks you'd make a nice sandwich. > ------------------------------------------ > See my digital art at: > > http://www.foramenmagnum.net/images.html > > __________________________________________________ > 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 Mon Jul 16 10: 1:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web9603.mail.yahoo.com (web9603.mail.yahoo.com [216.136.129.182]) by hub.freebsd.org (Postfix) with SMTP id 3AE5637B405 for ; Mon, 16 Jul 2001 10:01:29 -0700 (PDT) (envelope-from cjalmond@yahoo.com) Message-ID: <20010716170129.40109.qmail@web9603.mail.yahoo.com> Received: from [24.167.38.193] by web9603.mail.yahoo.com via HTTP; Mon, 16 Jul 2001 10:01:29 PDT Date: Mon, 16 Jul 2001 10:01:29 -0700 (PDT) From: The Almonds Subject: Installing WinME, FreeBSD 4.3, and Mandrake 8.0 on the same HDD 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, I am trying to install all 3 OS's on my desktop. I can install all of them but Mandrake will not boot using the BSD boot loader. FreeBSD will not load in the Mandrake boot loader. Anyone have any ideas on how to do this? 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 Mon Jul 16 10: 2:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ren.sasknow.com (ren.sasknow.com [207.195.92.131]) by hub.freebsd.org (Postfix) with ESMTP id 8EE4F37B403 for ; Mon, 16 Jul 2001 10:02:47 -0700 (PDT) (envelope-from ryan@sasknow.com) Received: from localhost (ryan@localhost) by ren.sasknow.com (8.9.3/8.9.3) with ESMTP id LAA44104; Mon, 16 Jul 2001 11:02:32 -0600 (CST) (envelope-from ryan@sasknow.com) Date: Mon, 16 Jul 2001 11:02:32 -0600 (CST) From: Ryan Thompson To: Klaus Steden Cc: Child , questions@FreeBSD.ORG Subject: Re: deleted /dev/null by mistake In-Reply-To: <20010715232550.J73359@cthulu.compt.com> Message-ID: Organization: SaskNow Technologies [www.sasknow.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 Klaus Steden wrote to Child: > > hi all > > one of my shell scripts did an rm -f /dev/null > > > (cd /dev && sh MAKEDEV) should do it (as root), > > or by hand ... > > mknod /dev/null c 2 2 > Remember to remove (rm) /dev/null immediately (i.e., in the same command) before you do that if you are doing this in multi-user mode, because, on most servers, stuff gets sent to /dev/null all the time, and if it was deleted, you'll have a regular file with a bunch of junk in it, and mknod won't attempt to unlink it before creating the new device node. - Ryan > Klaus > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- Ryan Thompson Network Administrator, Accounts SaskNow Technologies - http://www.sasknow.com #106-380 3120 8th St E - Saskatoon, SK - S7H 0W2 Tel: 306-664-3600 Fax: 306-664-1161 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 10: 7:16 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 A4C7F37B401 for ; Mon, 16 Jul 2001 10:07:04 -0700 (PDT) (envelope-from personrp@ccbh.com) Received: by 1upmc-msximc2.isdip.upmc.edu with Internet Mail Service (5.5.2653.19) id <34TVM8AA>; Mon, 16 Jul 2001 13:05:48 -0400 Message-ID: <46AEB8C1B628D511969200508B6FE42A6684A9@1upmc-msx6.isdip.upmc.edu> From: "Person, Roderick" To: 'Steve Tremblett' Cc: freebsd-questions@FreeBSD.ORG Subject: RE: ARRGH Netscape stinks! Date: Mon, 16 Jul 2001 13:05:41 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C10E19.8AF9C300" Sender: owner-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_01C10E19.8AF9C300 Content-Type: text/plain; charset="iso-8859-1" I see your point here. I have been a opera fan since before it was free. I used the linux demo(60 day or something free then purchase it) on Fbsd and was already to buy it when they came out with the ad version. I would like to think that they came out with the ad version to compete with IE and NS but I just could be dreaming here. AFAIK, they don't make anything else so it would be hard for a browser company to try and break into that market. Anyway, Opera is suppose to be HTML 4(or is it 3??) complaint not IE or NS biased. But as someone who doesn't pay attention to ads most of the time, I've never been bothered or even notice what ad are displayed on my Opera. But now I'm curious about this junkbuster and such. I wonder if it will work with Opera and will it speed up Opera? Roderick P. Person Programmer II personrp@ccbh.com "Without censorship, things can get terribly confused in the public mind." - General William Westmoreland > -----Original Message----- > From: Steve Tremblett [mailto:sjt@cisco.com] > Sent: July 16, 2001 12:52 PM > To: Person, Roderick > Cc: 'Steve Tremblett'; freebsd-questions@FreeBSD.ORG > Subject: Re: ARRGH Netscape stinks! > > > +---- Person, Roderick wrote: > | why would you be morally opposite to 'Opera with that > advertising crap' when > | the vast majority of web sites have ads all over them? > | Even your link has an ad on that page. I'm just curious. Of > course you can > | pay for Opera and get ride of the ads. But I would guess > that would be more > | oppositional that having ads :) > > Why would I invite MORE ads onto my desktop if I can barely stand the > ones on the web? So intrusive and obnoxious. I can't change someone > else's website, but given a choice (which I have in the programs I > decide to use), I'm going to do without the ads thank you very much. > > And I _am_ willing to pay for software in the case of "we offer this > for free but would appreciate your support", but not in the case where > "this is annoying until you pay us". If I pay for it will they give > special attention to a bug that I find (as opposed to a non-paying > user)? I doubt it - I can't find out for sure because their damn > website doesn't display properly in Netscape, which implies that they > likely endorse Explorer extensions. > > It's all about reinforcement (remember Psych 101?) - every ad that is > delivered to your desktop is a validation of their business model, and > every one you click is double. Even if I see an ad that interests me, > I NEVER click through it - I just open a new window and goto the site > directly by address. > > To be honest, all this ad stuff became unbearable some time > ago, I just > have been to busy to investigate the solutions - I hear junkbuster is > good. If a suitable one does not exist I'll make one myself. > > *sigh* > > Sorry for the offtopic rant! :) > > -- > Steve Tremblett > ------_=_NextPart_001_01C10E19.8AF9C300 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable RE: ARRGH Netscape stinks!

I see your point here. I have been a opera fan since = before it was free. I used the linux demo(60 day or something free then = purchase it) on Fbsd and was already to buy it when they came out with = the ad version. I would like to think that they came out with the ad = version to compete with IE and NS but I just could be dreaming here. = AFAIK, they don't make anything else so it would be hard for a browser = company to try and break into that market.

Anyway, Opera is suppose to be HTML 4(or is it 3??) = complaint not IE or NS biased. But as someone who doesn't pay attention = to ads most of the time, I've never been bothered or even notice what = ad are displayed on my Opera. But now I'm curious about this junkbuster = and such. I wonder if it will work with Opera and will it speed up = Opera?

Roderick P. Person
Programmer II
personrp@ccbh.com

"Without censorship, things can get terribly = confused in the public mind."

    - General William = Westmoreland


> -----Original Message-----
> From: Steve Tremblett [mailto:sjt@cisco.com]
> Sent: July 16, 2001 12:52 PM
> To: Person, Roderick
> Cc: 'Steve Tremblett'; = freebsd-questions@FreeBSD.ORG
> Subject: Re: ARRGH Netscape stinks!
>
>
> +---- Person, Roderick wrote:
> | why would you be morally opposite to 'Opera = with that
> advertising crap' when
> | the vast majority of web sites have ads all = over them?
> | Even your link has an ad on that page. I'm = just curious. Of
> course you can
> | pay for Opera and get ride of the ads. But I = would guess
> that would be more
> | oppositional that having ads :)
>
> Why would I invite MORE ads onto my desktop if = I can barely stand the
> ones on the web?  So intrusive and = obnoxious.  I can't change someone
> else's website, but given a choice (which I = have in the programs I
> decide to use), I'm going to do without the ads = thank you very much.
>
> And I _am_ willing to pay for software in the = case of "we offer this
> for free but would appreciate your = support", but not in the case where
> "this is annoying until you pay = us".  If I pay for it will they give
> special attention to a bug that I find (as = opposed to a non-paying
> user)?  I doubt it - I can't find out for = sure because their damn
> website doesn't display properly in Netscape, = which implies that they
> likely endorse Explorer extensions.
>
> It's all about reinforcement (remember Psych = 101?) - every ad that is
> delivered to your desktop is a validation of = their business model, and
> every one you click is double.  Even if I = see an ad that interests me,
> I NEVER click through it - I just open a new = window and goto the site
> directly by address.
>
> To be honest, all this ad stuff became = unbearable some time
> ago, I just
> have been to busy to investigate the solutions = - I hear junkbuster is
> good.  If a suitable one does not exist = I'll make one myself.
>
> *sigh*
>
> Sorry for the offtopic rant! :)
>
> --
> Steve Tremblett
>

------_=_NextPart_001_01C10E19.8AF9C300-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 10: 8: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ren.sasknow.com (ren.sasknow.com [207.195.92.131]) by hub.freebsd.org (Postfix) with ESMTP id 3E90737B407 for ; Mon, 16 Jul 2001 10:08:04 -0700 (PDT) (envelope-from ryan@sasknow.com) Received: from localhost (ryan@localhost) by ren.sasknow.com (8.9.3/8.9.3) with ESMTP id LAA44749; Mon, 16 Jul 2001 11:07:50 -0600 (CST) (envelope-from ryan@sasknow.com) Date: Mon, 16 Jul 2001 11:07:50 -0600 (CST) From: Ryan Thompson To: Wayne Pascoe Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Firewall hardware spec In-Reply-To: <86ofqli75x.fsf@pan.ehsrealtime.com> Message-ID: Organization: SaskNow Technologies [www.sasknow.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 Wayne Pascoe wrote to freebsd-questions@FreeBSD.ORG: > Hi there, > > I've just inherited a strange machine. It was the company Linux > firewall. I am about to turn it into the company FreeBSD firewall, but > I need some opinions on the hardware spec's suitability: > > The hardware is a Pentium 166 on a VERY strange board. There are 7 pci > slots, 5 ISA slots, and 2 what look like VLBus slots. > > The link that is plugging into it is a 2Mb link. > > Will this hardware be suitable as a FreeBSD firewall running ipf ? A P-166 should be able to handle that easily for your 2MB connection, unless the ruleset is unusually complex (many hundreds of rules), or if the machine is also acting as a gateway with a very large routing table. In either case, you may want to increase the amount of physical RAM to reduce/eliminate paging. (486s make excellent firewall/gateway machines for most 100Mbps LANs). > Thanks in advance -- Ryan Thompson Network Administrator, Accounts SaskNow Technologies - http://www.sasknow.com #106-380 3120 8th St E - Saskatoon, SK - S7H 0W2 Tel: 306-664-3600 Fax: 306-664-1161 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 10:24:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from wilma.widomaker.com (wilma.widomaker.com [204.17.220.5]) by hub.freebsd.org (Postfix) with ESMTP id 88BA837B40D for ; Mon, 16 Jul 2001 10:24:34 -0700 (PDT) (envelope-from shannon@daydream.shannon.net) Received: from [209.96.179.158] (helo=escape.shannon.net) by wilma.widomaker.com with esmtp (Exim 3.22 #2) id 15MC6d-00049W-00 for freebsd-questions@freebsd.org; Mon, 16 Jul 2001 13:24:28 -0400 Received: from daydream (daydream.shannon.net [192.168.1.10]) by escape.shannon.net (8.11.0/8.8.8) with ESMTP id f6GHLUe25028 for ; Mon, 16 Jul 2001 13:21:30 -0400 (EDT) Received: from shannon by daydream with local (Exim 3.12 #1 (Debian)) id 15MC3m-0000Sp-00 for ; Mon, 16 Jul 2001 13:21:30 -0400 Date: Mon, 16 Jul 2001 13:21:30 -0400 From: Shannon Hendrix To: freebsd-questions@freebsd.org Subject: Re: spammers Message-ID: <20010716132128.A801@widomaker.com> Mail-Followup-To: freebsd-questions@freebsd.org References: <20010711092834.D46591@zigman.2y.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010711092834.D46591@zigman.2y.net> User-Agent: Mutt/1.3.18i Sender: owner-freebsd-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 11, 2001 at 09:28:34AM +0200, Morsal Roudbay wrote: > That's what I have been doing Stephaine, but I'd like the list admins to do > it too so I wont have to get this much spam. Other list admins ban spammers > instantly... ...and it does just about no good at all, because the email addresses they use are almost always transient, gone in days, if not hours. SPAM blocking is more than a full time job. Until society as a whole starts rejecting solicitation, it will be with us. Me, I'm more worried about the SPAM I get via snail mail... just think of the tons of waste every year... :( -- shannon@widomaker.com _________________________________________________ ______________________/ armchairrocketscientistgraffitiexistentialist "The object of war is not to die for your country but to make the other bastard die for his." -- General George S. Patton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 10:24:54 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 ACFE037B409 for ; Mon, 16 Jul 2001 10:24:49 -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 15MC6y-000Nlx-00 for freebsd-questions@freebsd.org; Mon, 16 Jul 2001 18:24:48 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.3/8.11.1) id f6GHOl750195 for freebsd-questions@freebsd.org; Mon, 16 Jul 2001 18:24:47 +0100 (BST) (envelope-from jcm) Date: Mon, 16 Jul 2001 18:24:47 +0100 From: j mckitrick To: freebsd-questions@freebsd.org Subject: Re: truetype fonts Message-ID: <20010716182447.A50179@dogma.freebsd-uk.eu.org> References: <20010712233612.A8199@dogma.freebsd-uk.eu.org> <20010712185004.A29406@moo.holy.cow> <20010713172722.B16488@dogma.freebsd-uk.eu.org> <20010713145109.A9176@moo.holy.cow> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20010713145109.A9176@moo.holy.cow>; from parv_@yahoo.com on Fri, Jul 13, 2001 at 02:51:09PM -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 13, 2001 at 02:51:09PM -0400, parv wrote: | on Jul 13 14:29, i got this from j... | > On Thu, Jul 12, 2001 at 06:50:04PM -0400, parv wrote: | > | on Jul 12 18:47, i got this from j... | > | > | > | > It seems that Microsoft only offers TrueType fonts for download as win | > | > executables. Big surprise. | > | > | > | > Does anyone know how we can use these? I am following the TrueType font | > | > article from a few months ago in Daemonnews. | > | > | > | | > | # cd /usr/ports/x11-fonts/webfonts && make install clean | > | > Perfect, thanks. What is the best way to test them? Or does it make a | > difference on a laptop? | | if by testing you mean, how to use them, then one way to test is to | select verdana/tebuchet ms/georgia/etc font in netscape. if selection | is available, well, everything went well, i suppose. | | when you install the ports you will be asked if you want to create | font list for netscape. i suggest that you say 'yes'. otherwise you | would have only size 12 font available. | | oh and don't forget to include the "FontPath" in your XF86Config in | somewhere in /etc. or you can always do... | | # xset fp+ | # xset fp rehash | | -- | so, do you like word games or scrabble? | - parv jcm -- o-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-o | ~~~~~~~~~~~~ Jonathon McKitrick ~~~~~~~~~~~~~ | | "I prefer the term 'Artificial Person' myself." | o-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-o To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 10:25:27 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 75DC937B407 for ; Mon, 16 Jul 2001 10:25:21 -0700 (PDT) (envelope-from leblanc@leblanc.mirrorimage.net) Received: by leblanc.mirrorimage.net (Postfix, from userid 118) id 92F3F6BBF7; Mon, 16 Jul 2001 13:25:06 -0400 (EDT) Date: Mon, 16 Jul 2001 13:25:06 -0400 From: Louis LeBlanc To: freebsd-questions@FreeBSD.ORG, freebsd-questions@FreeBSD.org Subject: Re: buildworld problems: can't build crypt-blowfish.c Message-ID: <20010716132506.K19358@acadia.ne.mediaone.net> Reply-To: freebsd-questions@FreeBSD.org Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <20010716120941.F19358@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: <20010716120941.F19358@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 More on the make buildworld problem: The failure comes in the /usr/src/lib/libcrypt/ directory. Here is where it dies: . . . cd /usr/src/lib/libcrypt; make depend; make all; make install make: don't know how to make crypt-blowfish.c. Stop *** Error code 2 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. listing of /usr/src/lib/libcrypt/ $ ls Makefile crypt.3 crypt.h crypt-md5.c crypt.c misc.c The Makefile has the following lines in it: .PATH: ${.CURDIR}/../../secure/lib/libcrypt SRCS+= crypt-des.c crypt-blowfish.c blowfish.c And a listing of /usr/src/secure/lib/libcrypt/: ls ../../secure/lib/libcrypt Makefile crypt-des.c Any ideas what's up? Thanks Lou On 07/16/01 12:09 PM, Louis LeBlanc sat at the `puter and typed: > Hey all. Here are the problems: > I am running the following: > /usr/local/bin/cvsup -g -L 2 -z /etc/cvsupfile > > Everything updates fine, but the refuse file is ignored. > > Here is my /etc/cvsupfile: > ------------------------------------------------------ > *default host=cvsup.FreeBSD.org > *default base=/usr > *default prefix=/usr > *default release=cvs > *default tag=RELENG_4 > *default delete use-rel-suffix > > src-base > src-bin > src-contrib > src-etc > src-games > src-gnu > src-include > src-kerberosIV > src-kerberos5 > src-lib > src-libexec > src-release > src-sbin > src-share > src-sys > src-tools > src-usrbin > src-usrsbin > *default tag=. > ports-all > doc-all > ------------------------------------------------------ > > In /usr/sup/ I have the following refuse file: > ------------------------------------------------------ > doc/de > doc/de_* > doc/es > doc/es_* > doc/fr > doc/fr_* > doc/ja > doc/ja_* > doc/nl > doc/nl_* > doc/ru > doc/ru_* > doc/zh > doc/zh_* > ports/chinese > ports/french > ports/german > ports/hebrew > ports/japanese > ports/korean > ports/russian > ports/ukrainian > ports/vietnamese > ------------------------------------------------------ > > Seems that should prevent the language ports from being updated, > right? > > Next problem: make buildworld > After the cvsup, I run mergemaster and install any changed files > without merging (I am not changing any source myself at this point). > the make buildworld goes for quite some time then fails. > > Now, I'm not one of those arrogant jerks that assumes the problem is > with the compiler, someone else's source or whatever. I just need to > know if anyone out there knows what I'm doing wrong. :| > > Thanks all. > > -- > Louis LeBlanc leblanc@acadia.ne.mediaone.net > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > http://acadia.ne.mediaone.net Ô¿Ô¬ > > If an experiment works, something has gone wrong. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- Louis LeBlanc leblanc@acadia.ne.mediaone.net Fully Funded Hobbyist, KeySlapper Extrordinaire :) http://acadia.ne.mediaone.net Ô¿Ô¬ philosophy: The ability to bear with calmness the misfortunes of our friends. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 10:32: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 46D8137B405 for ; Mon, 16 Jul 2001 10:32:40 -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 TAA05794; Mon, 16 Jul 2001 19:39:55 +0200 Message-ID: <3B532597.57D9CD90@i-clue.de> Date: Mon, 16 Jul 2001 19:34:15 +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: The Almonds Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Installing WinME, FreeBSD 4.3, and Mandrake 8.0 on the same HDD References: <20010716170129.40109.qmail@web9603.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 schrieb: > > All, > > I am trying to install all 3 OS's on my desktop. I > can install all of them but Mandrake will not boot > using the BSD boot loader. FreeBSD will not load in > the Mandrake boot loader. > > Anyone have any ideas on how to do this? http://www.linuxdoc.org/HOWTO/mini/Linux+FreeBSD.html In addition, OS-BS, GNU Grub, and Lilo can be set up to manage this environment. 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 16 10:35:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from grumpy.dyndns.org (user-24-214-76-217.knology.net [24.214.76.217]) by hub.freebsd.org (Postfix) with ESMTP id 923B237B401 for ; Mon, 16 Jul 2001 10:35:29 -0700 (PDT) (envelope-from dkelly@grumpy.dyndns.org) Received: (from dkelly@localhost) by grumpy.dyndns.org (8.11.3/8.11.4) id f6GHZKh25943; Mon, 16 Jul 2001 12:35:20 -0500 (CDT) (envelope-from dkelly) Date: Mon, 16 Jul 2001 12:35:16 -0500 From: David Kelly To: Steve Tremblett Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ARRGH Netscape stinks! Message-ID: <20010716123516.A25924@grumpy.dyndns.org> References: <20010716090154.C1384@sjt-u10.cisco.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010716090154.C1384@sjt-u10.cisco.com>; from sjt@cisco.com on Mon, Jul 16, 2001 at 09:01:54AM -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 16, 2001 at 09:01:54AM -0400, Steve Tremblett wrote: > Is there ANY alternative to Netscape? I'm running Linux Netscape 4.77 > and I'm fed up with having it freeze or crash every hour. Is the > native Netscape any better? Is there another alternative? I've tried > Mozilla, but it crashed on the first site I went to, so I deinstalled > it. > > Any suggestions? (please no jokers suggesting lynx! :) Edit -> Preferences -> Advanced: disable java and javascript. The Linux version has had Flash plugins installed by default and problems I've had have been partially the fault of Flash. But most problems happen when Javascript is enabled. I never enable Java. -- David Kelly N4HHE, dkelly@hiwaay.net ===================================================================== The human mind ordinarily operates at only ten percent of its capacity -- the rest is overhead for the operating system. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 10:36:16 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 9186237B401 for ; Mon, 16 Jul 2001 10:36:11 -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 TAA05827; Mon, 16 Jul 2001 19:43:52 +0200 Message-ID: <3B532685.14B58266@i-clue.de> Date: Mon, 16 Jul 2001 19:38:13 +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: Doug Barton Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Help duplicating data CD's with burncd References: <3B52B6C6.860AF6D3@DougBarton.net> <3B52EBE1.6E82ACC3@i-clue.de> <3B531C28.DFD399E5@DougBarton.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 Doug Barton schrieb: > > Christoph Sold wrote: > > > > Doug Barton schrieb: > > > > > > [Good story about bad CD copies snipped.] > > > > > > Any suggestions on where to look next would be welcome. I tried doing > > > 'burncd -s 2 -f /dev/acd01c data /dev/acd0c fixate' (where acd0c is the > > > regular cd drive, and acd1 is the burner) but that just bought me my first > > > coaster. Any other ideas? > > > > Bad CD-Rs will do that. > > So you're saying that the above command line should have worked? I'm using > memorex cd-r's that are rated for 16x recording, I didn't think quality > would be an issue... Yes, the above had worked at Linuxtag 2001. I burned about 100 FreeBSD 4.3 ISO images using that one. This leaves two possiblities: - Got got a bunch of bad CD-Rs - Your CD drive is dirty, causing read errors while dd-ing the source ISO. The latter possibility would only happen with bogus, cheap CD-ROM drives, since automatic read error detection is usually pretty reliable. OTOH, there are "copy-protected" CDs which will produce errors when read in CD-ROM drives. 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 16 10:36:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from transbay.net (dns1.transbay.net [209.133.53.2]) by hub.freebsd.org (Postfix) with ESMTP id 86A3337B405 for ; Mon, 16 Jul 2001 10:36:45 -0700 (PDT) (envelope-from sreese@codysbooks.com) Received: from codysbooks.com (stalwart.codysbooks.com [209.133.54.175]) by transbay.net (8.11.2/8.11.2) with ESMTP id f6GHah339905 for ; Mon, 16 Jul 2001 10:36:43 -0700 (PDT) Message-ID: <3B5326FE.76BFD2B6@codysbooks.com> Date: Mon, 16 Jul 2001 10:40:14 -0700 From: Scott Reese Organization: Cody's Books 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: Trouble Running LimeWire 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, Has anyone had any luck in running LimeWire from: http://www.limewire.com/ ? I tried running the version for Linux, but it keeps spewing a NullPointerException. I'm running 4.3-STABLE with the linux-jdk1.3. Thanks in advance for any help. Also, please CC me in the reply as I am not subscribed to this list. -Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 10:49:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from lakexch1.MSHA.GOV (lakexch1.msha.gov [199.115.9.1]) by hub.freebsd.org (Postfix) with ESMTP id 2F6B937B403 for ; Mon, 16 Jul 2001 10:49:22 -0700 (PDT) (envelope-from Kramer-James@MSHA.gov) Received: by lakexch1.msha.gov with Internet Mail Service (5.5.2653.19) id ; Mon, 16 Jul 2001 11:54:11 -0600 Message-ID: <358DD50B8076D311AB9600805FA78BF84CFDFC@PITEXCH1> From: "Kramer James M." To: "'freebsd-questions@FreeBSD.org'" Subject: Please Help - Advise on New system Date: Mon, 16 Jul 2001 11:49:07 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C10E1F.9C7AC0B0" Sender: owner-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_01C10E1F.9C7AC0B0 Content-Type: text/plain; charset="iso-8859-1" I need to purchase a new computer to run FreeBSD. I was going to buy a bare bones with an ASUS A7A-266 with 256Mb DDR and an AMD T-Bird. I will use my old CD-ROM. Video and hard drives. Do you think that FreeBSD will run on this system or would it be safer to use an older system or maybe use a system based on the Intel pentium? I appreciated any insight you might provide. Jay Kramer ------_=_NextPart_001_01C10E1F.9C7AC0B0 Content-Type: text/html; charset="iso-8859-1"
I need to purchase a new computer to run FreeBSD.  I was going to buy a bare bones with an ASUS A7A-266 with 256Mb DDR and an AMD T-Bird.  I will use my old CD-ROM. Video and hard drives.  Do you think that FreeBSD will run on this system or would it be safer to use an older system or maybe use a system based on the Intel pentium?  I appreciated any insight you might provide.
 
Jay Kramer
------_=_NextPart_001_01C10E1F.9C7AC0B0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 10:50:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from phoenix.shells.co.uk (phoenix.shells.co.uk [217.33.11.128]) by hub.freebsd.org (Postfix) with ESMTP id A75F837B403 for ; Mon, 16 Jul 2001 10:50:44 -0700 (PDT) (envelope-from rob@breakbeat.net) Received: by phoenix.shells.co.uk (Postfix, from userid 1004) id 9C4B13842; Mon, 16 Jul 2001 18:49:46 +0100 (BST) Received: from localhost (localhost [127.0.0.1]) by phoenix.shells.co.uk (Postfix) with ESMTP id 8DEEF383C for ; Mon, 16 Jul 2001 18:49:46 +0100 (BST) Date: Mon, 16 Jul 2001 18:49:46 +0100 (BST) From: Rob X-Sender: rob@phoenix.shells.co.uk To: freebsd-questions@freebsd.org Subject: Inactive/leak memory Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I'm running 4.3 on a dual P3-550, with 1Gb RAM, and have been noticing odd reports in the 'top' values. After a reboot, the server slowly begins to lose memory from the free column into the inactive column, resulting in a bizarre set of values. This server is a live webserver, running Apache, with PHP and PostgreSQL. The laods are fairly low, and since I've had this box constantly CVSupped, with the latest updates to the webserver etc, I'm pretty stumped as to why this situation is happening. Here's the top part of the top output, after only 15 days of uptime: last pid: 99471; load averages: 0.56, 0.24, 0.13 up 15+21:26:00 17:13:02 50 processes: 1 running, 49 sleeping CPU states: 1.9% user, 0.0% nice, 1.4% system, 0.4% interrupt, 96.3% idle Mem: 22M Active, 668M Inact, 87M Wired, 152K Cache, 112M Buf, 227M Free Swap: 512M Total, 512M Free PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU CPU COMMAND 189 pgsql 2 0 4408K 1552K select 1 11:36 0.00% 0.00% postgres 207 root 2 0 4856K 4012K select 1 4:43 0.00% 0.00% httpd 72058 www 2 0 5252K 4624K sbwait 1 0:55 0.00% 0.00% httpd 79544 www 18 0 5300K 4584K lockf 0 0:35 0.00% 0.00% httpd 80731 www 2 0 5184K 4488K sbwait 1 0:35 0.00% 0.00% httpd 80748 www 2 0 5168K 4536K sbwait 1 0:35 0.00% 0.00% httpd 85255 www 18 0 5176K 4544K lockf 0 0:26 0.00% 0.00% httpd 154 root 2 0 1256K 884K select 1 0:26 0.00% 0.00% sshd1 147 root 10 0 968K 736K nanslp 0 0:07 0.00% 0.00% cron 150 root 2 0 2484K 2036K select 0 0:06 0.00% 0.00% sendmail 124 root 2 0 924K 612K select 1 0:05 0.00% 0.00% syslogd 95582 www 2 0 5244K 4604K sbwait 1 0:04 0.00% 0.00% httpd 95470 www 2 0 5068K 4368K sbwait 1 0:04 0.00% 0.00% httpd 98534 www 2 0 5076K 4432K sbwait 0 0:01 0.00% 0.00% httpd 194 root 2 0 1236K 888K select 0 0:01 0.00% 0.00% sshd1 This seems to happen slowly, until it reaches about 20M Free, upon which I tend to reboot. Any ideas? I thought that perhaps as inactive memory is still available to the system if needed that it might be okay to leave it, but a explanation may put my heart at rest.. Rob. -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 10:56:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mclean.mail.mindspring.net (mclean.mail.mindspring.net [207.69.200.57]) by hub.freebsd.org (Postfix) with ESMTP id DDE3137B405 for ; Mon, 16 Jul 2001 10:56:21 -0700 (PDT) (envelope-from reyn@commonroads.org) Received: from martha (user-2iveqle.dialup.mindspring.com [165.247.106.174]) by mclean.mail.mindspring.net (8.9.3/8.8.5) with SMTP id NAA22692 for ; Mon, 16 Jul 2001 13:56:20 -0400 (EDT) From: "Matt Winslow" To: "freebsd" Subject: Reboot problem Date: Mon, 16 Jul 2001 13:59:43 -0400 Message-ID: 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.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 just restarted my server after adding a second NIC, and I got the error: no such device 'da' setrootbyname failed ffs_mountroot: can't find rootvp Root mount failed: 6 Maunal root filesystem specifications: mountroot> What do I do??? Why won't it mount? Matt Winslow http://matt.mortalcity.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 16 10:58:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web9606.mail.yahoo.com (web9606.mail.yahoo.com [216.136.129.185]) by hub.freebsd.org (Postfix) with SMTP id 506C637B405 for ; Mon, 16 Jul 2001 10:58:22 -0700 (PDT) (envelope-from cjalmond@yahoo.com) Message-ID: <20010716175818.29372.qmail@web9606.mail.yahoo.com> Received: from [24.167.38.193] by web9606.mail.yahoo.com via HTTP; Mon, 16 Jul 2001 10:58:18 PDT Date: Mon, 16 Jul 2001 10:58:18 -0700 (PDT) From: The Almonds Subject: Re: Installing WinME, FreeBSD 4.3, and Mandrake 8.0 on the same HDD To: so@server.i-clue.de Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <3B532597.57D9CD90@i-clue.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 That was good reading. Is there away to just install the two w/o sharing hdd space. I have plenty of hard drive space. I guess in order to do this I would have to rebuild the kernel in Linux to support booting FreeBSD? Curtis --- Christoph Sold wrote: > > > The Almonds schrieb: > > > > All, > > > > I am trying to install all 3 OS's on my desktop. > I > > can install all of them but Mandrake will not boot > > using the BSD boot loader. FreeBSD will not load > in > > the Mandrake boot loader. > > > > Anyone have any ideas on how to do this? > > http://www.linuxdoc.org/HOWTO/mini/Linux+FreeBSD.html > > In addition, OS-BS, GNU Grub, and Lilo can be set up > to manage this > environment. > > HTH > -Christoph Sold > > 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 Mon Jul 16 11: 7: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from infinity.infoinsights.com (infinity.infoinsights.com [208.151.124.145]) by hub.freebsd.org (Postfix) with ESMTP id 20C4B37B406 for ; Mon, 16 Jul 2001 11:07:02 -0700 (PDT) (envelope-from chrisl@thethirdsector.com) Received: by infinity.thethirdsector.com with Internet Mail Service (5.5.2650.21) id ; Mon, 16 Jul 2001 10:02:59 -0800 Message-ID: <70CDD1EE3A2CD511993900104B0A30A201A76D@infinity.thethirdsector.com> From: Chris Lott To: "'freebsd-questions@freebsd.org'" Subject: BootEasy problem Date: Mon, 16 Jul 2001 10:02:58 -0800 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 I recently moved to a larger hard drive on my FreeBSD 3.2-release system. While doing so, I had both the old and new drives on the IDE controller to copy information from one to the other. Now that I am done, BootEasy acts as if there are two drives, giving me options: F1 FreeBSD F5 Drive 0 I can't choose F1 no matter what I do. But if I choose F5, it beeps and the menu comes back with just one option (F1 FreeBSD) which I then CAN boot. How can I fix this? c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 11: 7:33 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 BA30C37B406 for ; Mon, 16 Jul 2001 11:07:26 -0700 (PDT) (envelope-from dg@root.com) Received: (from dg@localhost) by root.com (8.11.2/8.11.2) id f6GHtDK74173; Mon, 16 Jul 2001 10:55:13 -0700 (PDT) (envelope-from dg) Date: Mon, 16 Jul 2001 10:55:13 -0700 From: David Greenman To: Rob Cc: freebsd-questions@freebsd.org Subject: Re: Inactive/leak memory Message-ID: <20010716105513.G49840@nexus.root.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: ; from rob@breakbeat.net on Mon, Jul 16, 2001 at 06:49:46PM +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 running 4.3 on a dual P3-550, with 1Gb RAM, and have been noticing odd >reports in the 'top' values. After a reboot, the server slowly begins to lose >memory from the free column into the inactive column, resulting in a bizarre set >of values. >This server is a live webserver, running Apache, with PHP and PostgreSQL. The >laods are fairly low, and since I've had this box constantly CVSupped, with the >latest updates to the webserver etc, I'm pretty stumped as to why this situation >is happening. > >Here's the top part of the top output, after only 15 days of uptime: > >last pid: 99471; load averages: 0.56, 0.24, 0.13 > up 15+21:26:00 17:13:02 >50 processes: 1 running, 49 sleeping >CPU states: 1.9% user, 0.0% nice, 1.4% system, 0.4% interrupt, 96.3% idle >Mem: 22M Active, 668M Inact, 87M Wired, 152K Cache, 112M Buf, 227M Free >Swap: 512M Total, 512M Free > > PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU CPU COMMAND > 189 pgsql 2 0 4408K 1552K select 1 11:36 0.00% 0.00% postgres > 207 root 2 0 4856K 4012K select 1 4:43 0.00% 0.00% httpd >72058 www 2 0 5252K 4624K sbwait 1 0:55 0.00% 0.00% httpd >79544 www 18 0 5300K 4584K lockf 0 0:35 0.00% 0.00% httpd >80731 www 2 0 5184K 4488K sbwait 1 0:35 0.00% 0.00% httpd >80748 www 2 0 5168K 4536K sbwait 1 0:35 0.00% 0.00% httpd >85255 www 18 0 5176K 4544K lockf 0 0:26 0.00% 0.00% httpd > 154 root 2 0 1256K 884K select 1 0:26 0.00% 0.00% sshd1 > 147 root 10 0 968K 736K nanslp 0 0:07 0.00% 0.00% cron > 150 root 2 0 2484K 2036K select 0 0:06 0.00% 0.00% sendmail > 124 root 2 0 924K 612K select 1 0:05 0.00% 0.00% syslogd >95582 www 2 0 5244K 4604K sbwait 1 0:04 0.00% 0.00% httpd >95470 www 2 0 5068K 4368K sbwait 1 0:04 0.00% 0.00% httpd >98534 www 2 0 5076K 4432K sbwait 0 0:01 0.00% 0.00% httpd > 194 root 2 0 1236K 888K select 0 0:01 0.00% 0.00% sshd1 > >This seems to happen slowly, until it reaches about 20M Free, upon which I tend >to reboot. > >Any ideas? I thought that perhaps as inactive memory is still available to the >system if needed that it might be okay to leave it, but a explanation may put my >heart at rest.. The active, inactive, cache, and free above are actually page queues, and not an indication of actual memory usage. The system moves the pages between the queues as part of the page reclaimation procedure. The 'free' pages are the easiest to reclaim because they contain no valid data. The 'free' number will generally be *low* because FreeBSD tries to keep pages filled with useful cached file data (and those pages will show up on any of the other queues depending on how/when they were last accessed). The bottom line is that you can't determine anything about truely allocated memory by looking at those page queue numbers. -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 16 11:19:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from luke.cpl.net (luke.cpl.net [63.169.72.3]) by hub.freebsd.org (Postfix) with ESMTP id DD4C437B405 for ; Mon, 16 Jul 2001 11:19:47 -0700 (PDT) (envelope-from shawn@luke.cpl.net) Received: (from shawn@localhost) by luke.cpl.net (8.11.3/8.11.3) id f6GIJlb98352 for questions@freebsd.org; Mon, 16 Jul 2001 11:19:47 -0700 (PDT) Date: Mon, 16 Jul 2001 11:19:47 -0700 From: Shawn Ramsey To: questions@freebsd.org Subject: Kernel compile problems Message-ID: <20010716111945.A92252@cpl.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am having difficulty compiling a kernel on a specific machine.... it is even giving errors on a "make clean", which im not sure i've ever seen before. Like this : rm -f setdef0.c setdef1.c setdefs.h setdef0.o setdef1.o ipl.ko ipl.kld mlfk_ipl. o ip_nat.o ip_frag.o ip_state.o ip_proxy.o ip_auth.o ip_log.o ip_fil.o fil.o @ m achine symb.tmp tmp.o ===> ipfw rm -f setdef0.c setdef1.c setdefs.h setdef0.o setdef1.o ipfw.ko ipfw.kld ip_fw.o @ machine symb.tmp tmp.o ===> ispfw rm -f setdef0.c setdef1.c setdefs.h setdef0.o setdef1.o ispfw.ko ispfw.kld ispfw .o @ machine symb.tmp tmp.o ===> joy rm -f setdef0.c setdef1.c setdefs.h setdef0.o setdef1.o joy.8.gz joy.8.cat.gz jo y.ko joy.kld joy.o @ machine symb.tmp tmp.o bus_if.h device_if.h isa_if.h ===> kernfs Profiling timer expired *** Error code 155 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/src/sys/compile/Router. And it usually bombs on a "make depend", but not always. This would seem to be some sort of hardware problem. I've replaced the RAM to no avail. Is there any way to know what is causing this? Am I going to have to just start replacing hardware? :( And here is an error on "make depend" : tcpu.c ../../i386/i386/in_cksum.c ../../i386/i386/initcpu.c ../../i386/i386/k6 _mem.c ../../i386/i386/machdep.c ../../i386/i386/mem.c ../../i386/i386/nexus.c ../../i386/i386/pmap.c ../../i386/i386/procfs_machdep.c ../../i386/i386/sys_mac hdep.c ../../i386/i386/trap.c ../../i386/i386/userconfig.c ../../i386/i386/vm8 6.c ../../i386/i386/vm_machdep.c ../../i386/isa/clock.c ../../isa/fd.c ../../i3 86/isa/intr_machdep.c ../../i386/isa/ipl_funcs.c ../../i386/isa/isa.c ../../i3 86/isa/isa_compat.c ../../i386/isa/isa_dma.c ../../i386/isa/npx.c ../../i386/is a/pcibus.c ../../isa/atkbd_isa.c ../../isa/atkbdc_isa.c ../../isa/ppc.c ../../i sa/psm.c ../../isa/sio.c ../../isa/syscons_isa.c ../../isa/vga_isa.c ../../kern /subr_diskmbr.c ../../libkern/divdi3.c ../../libkern/moddi3.c ../../libkern/qdi vrem.c ../../libkern/udivdi3.c ../../libkern/umoddi3.c ioconf.c param.c vnode_i f.c config.c ../../i386/i386/genassym.c cc: Internal compiler error: program cpp got fatal signal 27 mkdep: compile failed *** Error code 1 Stop in /usr/src/sys/compile/Router. This error is usually different each time it is run.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 11:30:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.fasti.net (gateway.fasti.net [216.138.206.30]) by hub.freebsd.org (Postfix) with ESMTP id 5431837B401 for ; Mon, 16 Jul 2001 11:30:28 -0700 (PDT) (envelope-from joe@fasti.net) Received: from localhost (joe@localhost) by gateway.fasti.net (8.11.3/8.11.0) with ESMTP id f6GIUNw64220; Mon, 16 Jul 2001 14:30:23 -0400 (EDT) (envelope-from joe@fasti.net) Date: Mon, 16 Jul 2001 14:30:22 -0400 (EDT) From: Joe To: Rob Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Inactive/leak memory 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, 16 Jul 2001, Rob wrote: > Hi, > > I'm running 4.3 on a dual P3-550, with 1Gb RAM, and have been noticing odd > reports in the 'top' values. After a reboot, the server slowly begins to lose > memory from the free column into the inactive column, resulting in a bizarre set > of values. > This server is a live webserver, running Apache, with PHP and PostgreSQL. The > laods are fairly low, and since I've had this box constantly CVSupped, with the > latest updates to the webserver etc, I'm pretty stumped as to why this situation > is happening. > > Here's the top part of the top output, after only 15 days of uptime: > > last pid: 99471; load averages: 0.56, 0.24, 0.13 > up 15+21:26:00 17:13:02 > 50 processes: 1 running, 49 sleeping > CPU states: 1.9% user, 0.0% nice, 1.4% system, 0.4% interrupt, 96.3% idle > Mem: 22M Active, 668M Inact, 87M Wired, 152K Cache, 112M Buf, 227M Free > Swap: 512M Total, 512M Free > > PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU CPU COMMAND > 189 pgsql 2 0 4408K 1552K select 1 11:36 0.00% 0.00% postgres > 207 root 2 0 4856K 4012K select 1 4:43 0.00% 0.00% httpd > 72058 www 2 0 5252K 4624K sbwait 1 0:55 0.00% 0.00% httpd > 79544 www 18 0 5300K 4584K lockf 0 0:35 0.00% 0.00% httpd > 80731 www 2 0 5184K 4488K sbwait 1 0:35 0.00% 0.00% httpd > 80748 www 2 0 5168K 4536K sbwait 1 0:35 0.00% 0.00% httpd > 85255 www 18 0 5176K 4544K lockf 0 0:26 0.00% 0.00% httpd > 154 root 2 0 1256K 884K select 1 0:26 0.00% 0.00% sshd1 > 147 root 10 0 968K 736K nanslp 0 0:07 0.00% 0.00% cron > 150 root 2 0 2484K 2036K select 0 0:06 0.00% 0.00% sendmail > 124 root 2 0 924K 612K select 1 0:05 0.00% 0.00% syslogd > 95582 www 2 0 5244K 4604K sbwait 1 0:04 0.00% 0.00% httpd > 95470 www 2 0 5068K 4368K sbwait 1 0:04 0.00% 0.00% httpd > 98534 www 2 0 5076K 4432K sbwait 0 0:01 0.00% 0.00% httpd > 194 root 2 0 1236K 888K select 0 0:01 0.00% 0.00% sshd1 > > This seems to happen slowly, until it reaches about 20M Free, upon which I tend > to reboot. > > Any ideas? I thought that perhaps as inactive memory is still available to the > system if needed that it might be okay to leave it, but a explanation may put my > heart at rest.. > > Rob. > -- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > Memory requests will use inactive memory if there is no free memory, unless, the request for memory is already stored in the inactive memory which, at that point, it will use 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 16 11:31:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pinhead.nshl.com (pinhead.nshl.com [208.59.41.226]) by hub.freebsd.org (Postfix) with ESMTP id CDB6737B401 for ; Mon, 16 Jul 2001 11:31:36 -0700 (PDT) (envelope-from rt@pinhead.nshl.com) Received: from localhost (rt@localhost) by pinhead.nshl.com (8.11.1/8.11.1) with ESMTP id f6GIVSG10504 for ; Mon, 16 Jul 2001 14:31:29 -0400 (EDT) (envelope-from rt@pinhead.nshl.com) Date: Mon, 16 Jul 2001 14:31:28 -0400 (EDT) From: Ryan Thieme To: freebsd-questions@freebsd.org Subject: Post crash analysis 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 recently been placed in a position of senior sys admin for our departmental shell server, but my expertise lies in high speed circuit troubleshooting, so I could use a hand. We had our server crash this afternoon and I'd like to figure out why, however, I don't really know where to start looking. Should I be looking in or for a specific file? Any help appreciated. Don't mind doing my own work if folks just want to point me in the right place. TIA, Ryan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 11:36:45 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 A274037B405 for ; Mon, 16 Jul 2001 11:36: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 UAA06200; Mon, 16 Jul 2001 20:44:21 +0200 Message-ID: <3B5334B2.65887DE7@i-clue.de> Date: Mon, 16 Jul 2001 20:38:42 +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: Ryan Thieme Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Post crash analysis 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 Ryan Thieme schrieb: > > I've recently been placed in a position of senior sys admin for our > departmental shell server, but my expertise lies in high speed circuit > troubleshooting, so I could use a hand. > > We had our server crash this afternoon and I'd like to figure out why, > however, I don't really know where to start looking. > > Should I be looking in or for a specific file? > Check /var/log/messages for first hints pointing you in the right direction. Be preparet for an enormous amount of information: wield your more, less and grep tool before ;*) Spontaneous reboots may happen because of bad hardware or flakey power supply, too. Even cleaning personnel is known to cause reboots ;) 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 16 11:38: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 A6A5E37B401 for ; Mon, 16 Jul 2001 11:38: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 UAA06234; Mon, 16 Jul 2001 20:46:26 +0200 Message-ID: <3B53352E.D455BE7C@i-clue.de> Date: Mon, 16 Jul 2001 20:40:46 +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: Shawn Ramsey Cc: questions@FreeBSD.ORG Subject: Re: Kernel compile problems References: <20010716111945.A92252@cpl.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 Shawn Ramsey schrieb: > > I am having difficulty compiling a kernel on a specific machine.... it is > even giving errors on a "make clean", which im not sure i've ever seen > before. Like this : > > [snippety] > Profiling timer expired > *** Error code 155 > > Stop in /usr/src/sys/modules. > *** Error code 1 > > Stop in /usr/src/sys/compile/Router. > > And it usually bombs on a "make depend", but not always. This would seem to > be some sort of hardware problem. I've replaced the RAM to no avail. Is > there any way to know what is causing this? Am I going to have to just start > replacing hardware? :( > > And here is an error on "make depend" : > > [snippety] > cc: Internal compiler error: program cpp got fatal signal 27 > mkdep: compile failed > *** Error code 1 > > Stop in /usr/src/sys/compile/Router. > > This error is usually different each time it is run.... Which clearly indicates hardware problems. Aside from bad RAM, bad hard disc cables come to mind, Also, weak power supplys, faulty CPU fans, as well as bad shielding may cause problems. 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 16 11:39:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail8.mgfairfax.rr.com (fe8.southeast.rr.com [24.93.67.55]) by hub.freebsd.org (Postfix) with ESMTP id 4023937B403 for ; Mon, 16 Jul 2001 11:39:15 -0700 (PDT) (envelope-from srichardson@peakei.com) Received: from oemcomputer ([24.168.201.87]) by mail8.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Mon, 16 Jul 2001 14:39:10 -0400 Reply-To: From: "Steve Richardson" To: Subject: Featured Events - IBM Business Partner Events program Fall 2001! Date: Mon, 16 Jul 2001 14:33:19 -0300 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.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Date: 7/16/01 From: IBM Business Partner Events program To: Sales Dept. FreeBSD, Inc. Subject: Featured Events Enterprise Web and Corp. Portals Conf. 9/5-6 San Jose Convention Center Boston ITEC 9/12-13 World Trade Center XML DevCon Fall 10/29-11/1 San Jose CC INFOSecurity 12/4-6 Javitz Conv. Center As an IBM business partner, FreeBSD, Inc. is eligible to participate with the IBM Business Partner Events program at the following events: Enterprise Web and Corporate Portals Conference San Jose Conv Center San Jose, CA Sept 5-6, 2001 (4 Partners Only) Boston ITEC World Trade Center and Seaport Hotel Boston, MA Sept 12-13, 2001 XML DevCon San Jose Conv Center San Jose, CA October 29 - November 1, 2001 InfoSecurity Conference and Expo Jacob Javitz Conv Center New York, NY December 406, 2001 The IBM Business Partner Events program is a turn-key exhibit opportunity available to Premier, Advanced and Member level IBM business partners. The IBM BPE program assists partners that want to leverage their relationship with IBM into trade shows nationally and internationally. The complete calendar of IBM Business Partner Events of over 70 events for 2001 can be found at: www.ibm.com/partnerworld (go to "Events") or www.peakei.com Please contact me at (703)931-9809 or pazirandeh@peakei.com by Friday, July 27, 2001 for more information or to reserve your participation in any of these events. Space in the IBM BPE program booth is limited so CALL ME TODAY! I look forward to talking with you. Terri Terri Pazirandeh IBM Business Partner Events program (703)931-9809 Office (703)931-3326 FAX pazirandah@peakei.com Note: To remove yourself from the IBM BPE program list, please REPLY to this email and type REMOVE in the Subject Line. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 11:40:59 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 B041837B405 for ; Mon, 16 Jul 2001 11:40:48 -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 UAA06257; Mon, 16 Jul 2001 20:48:10 +0200 Message-ID: <3B533597.860F1E1E@i-clue.de> Date: Mon, 16 Jul 2001 20:42:31 +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: Chris Lott Cc: "'freebsd-questions@freebsd.org'" Subject: Re: BootEasy problem References: <70CDD1EE3A2CD511993900104B0A30A201A76D@infinity.thethirdsector.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 Chris Lott schrieb: > > I recently moved to a larger hard drive on my FreeBSD 3.2-release system. > While doing so, I had both the old and new drives on the IDE controller to > copy information from one to the other. Now that I am done, BootEasy acts as > if there are two drives, giving me options: > F1 FreeBSD > F5 Drive 0 > > I can't choose F1 no matter what I do. But if I choose F5, it beeps and the > menu comes back with just one option (F1 FreeBSD) which I then CAN boot. Swap both drives. The first menu is from disk 0 (ATA Master 0), which no longer holds a bootable partition. The second menu is from disk 1 (ATA slave 0 or ATA master 1) holding your current system. 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 16 11:43:55 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 A92DD37B401 for ; Mon, 16 Jul 2001 11:43:50 -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 UAA06277; Mon, 16 Jul 2001 20:51:32 +0200 Message-ID: <3B533661.2DFD549C@i-clue.de> Date: Mon, 16 Jul 2001 20:45:53 +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: The Almonds Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Installing WinME, FreeBSD 4.3, and Mandrake 8.0 on the same HDD References: <20010716175818.29372.qmail@web9606.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 There is no need to share HD space between Linux and FreeBSD. Just prepare one slice (DOS parlance: partition) for FreeBSD and you're set up. See http://www.freebsd.org/tutorials/multi-os/sources.html , too. HTH -Christoph Sold The Almonds schrieb: > > That was good reading. Is there away to just install > the two w/o sharing hdd space. I have plenty of hard > drive space. > > I guess in order to do this I would have to rebuild > the kernel in Linux to support booting FreeBSD? > > --- Christoph Sold wrote: > > > > > > The Almonds schrieb: > > > > > > All, > > > > > > I am trying to install all 3 OS's on my desktop. > > I > > > can install all of them but Mandrake will not boot > > > using the BSD boot loader. FreeBSD will not load > > in > > > the Mandrake boot loader. > > > > > > Anyone have any ideas on how to do this? > > > > > http://www.linuxdoc.org/HOWTO/mini/Linux+FreeBSD.html > > > > In addition, OS-BS, GNU Grub, and Lilo can be set up > > to manage this > > environment. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 11:44: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from lerami.lerctr.org (lerami.lerctr.org [207.158.72.11]) by hub.freebsd.org (Postfix) with ESMTP id 5458237B405 for ; Mon, 16 Jul 2001 11:43:55 -0700 (PDT) (envelope-from ler@lerctr.org) Received: from ler-freebie.iadfw.net (ler-freebie.iadfw.net [206.66.13.221]) by lerami.lerctr.org (8.12.0.Beta12/8.12.0.Beta12/20010318/$Revision: 1.22 $) with SMTP id f6GIhrLU026901; Mon, 16 Jul 2001 13:43:53 -0500 (CDT) From: Larry Rosenman Date: Mon, 16 Jul 2001 18:43:53 GMT Message-ID: <20010716.18435300@ler-freebie.iadfw.net> Subject: Re: deleted /dev/null by mistake To: Child Cc: questions@FreeBSD.ORG In-Reply-To: <5.0.0.25.0.20010716120202.00a07eb0@mx.child.net.au> References: <5.0.0.25.0.20010716120202.00a07eb0@mx.child.net.au> 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 You can recreate it thusly: # cd /dev # sh MAKEDEV std Larry Rosenman >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< On 7/16/01, 2:02:43 PM, Child wrote regarding delet= ed=20 /dev/null by mistake: > hi all > one of my shell scripts did an rm -f /dev/null > just wondering how I recreate it > thanks! > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 11:45: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from infinity.infoinsights.com (infinity.infoinsights.com [208.151.124.145]) by hub.freebsd.org (Postfix) with ESMTP id 2812737B401 for ; Mon, 16 Jul 2001 11:45:01 -0700 (PDT) (envelope-from chrisl@thethirdsector.com) Received: by infinity.thethirdsector.com with Internet Mail Service (5.5.2650.21) id ; Mon, 16 Jul 2001 10:40:47 -0800 Message-ID: <70CDD1EE3A2CD511993900104B0A30A201A770@infinity.thethirdsector.com> From: Chris Lott To: "'freebsd-questions@freebsd.org'" Cc: "'so@server.i-clue.de'" Subject: RE: BootEasy problem Date: Mon, 16 Jul 2001 10:40:46 -0800 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 > Swap both drives. The first menu is from disk 0 (ATA Master > 0), which no > longer holds a bootable partition. The second menu is from disk 1 (ATA > slave 0 or ATA master 1) holding your current system. The old drive isn't even installed any longer and hasn't been physically in the machine for months! That's what's weird about it. I'm sure I did something wrong with the migration to the new drive... Thanks... c -- Chris Lott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 11:47:39 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 EA2F537B408 for ; Mon, 16 Jul 2001 11:47:32 -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 UAA06313; Mon, 16 Jul 2001 20:55:11 +0200 Message-ID: <3B53373C.E613835B@i-clue.de> Date: Mon, 16 Jul 2001 20:49:32 +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: "Kramer James M." Cc: "'freebsd-questions@FreeBSD.org'" Subject: Re: Please Help - Advise on New system References: <358DD50B8076D311AB9600805FA78BF84CFDFC@PITEXCH1> 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 > "Kramer James M." schrieb: > > I need to purchase a new computer to run FreeBSD. I was going to buy > a bare bones with an ASUS A7A-266 with 256Mb DDR and an AMD T-Bird. I > will use my old CD-ROM. Video and hard drives. Do you think that > FreeBSD will run on this system or would it be safer to use an older > system or maybe use a system based on the Intel pentium? I > appreciated any insight you might provide. AMD or Intel CPUs are compatible, they won't give you any problems. The only thing to watch out at this time is to grab a video board wich is right now supported by XFree86 4.x or 3.3.6. NVidia Geforce chips are, much to my grievance, not yet supported. 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 16 11:48:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from burdell.cc.gatech.edu (burdell.cc.gatech.edu [130.207.3.207]) by hub.freebsd.org (Postfix) with ESMTP id D7E3A37B401 for ; Mon, 16 Jul 2001 11:48:15 -0700 (PDT) (envelope-from insanc@cc.gatech.edu) Received: from felix.cc.gatech.edu (felix.cc.gatech.edu [130.207.107.11]) by burdell.cc.gatech.edu (8.9.1/8.9.3) with ESMTP id OAA15341; Mon, 16 Jul 2001 14:47:54 -0400 (EDT) Received: from localhost (insanc@localhost) by felix.cc.gatech.edu (8.9.3+Sun/8.9.1) with ESMTP id OAA27949; Mon, 16 Jul 2001 14:47:49 -0400 (EDT) Date: Mon, 16 Jul 2001 14:47:49 -0400 (EDT) From: Joseph Holland King To: Ryan Thieme Cc: freebsd-questions@freebsd.org Subject: Re: Post crash analysis 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, 16 Jul 2001, Ryan Thieme wrote: > We had our server crash this afternoon and I'd like to figure out why, > however, I don't really know where to start looking. > > Should I be looking in or for a specific file? you also might want to look at /var/crash/* i don't have much experience with it in freebsd, but at least in solaris it seems to create a file during some crashes. -- Joseph Holland King | "God whispers to us in our pleasures, speaks in our | conscience, but shouts in our pains: it is His | megaphone to rouse a deaf world." C. S. Lewis To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 11:55:49 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 3361537B401 for ; Mon, 16 Jul 2001 11:55:44 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-a056.otenet.gr [212.205.215.56]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f6GItdt02985; Mon, 16 Jul 2001 21:55:40 +0300 (EEST) Received: by hades.hell.gr (Postfix, from userid 1001) id F0AB72C9; Mon, 16 Jul 2001 21:25:46 +0300 (EEST) Date: Mon, 16 Jul 2001 21:25:45 +0300 From: Giorgos Keramidas To: "Leo S. Boegly" Cc: FreeBSD Subject: Re: C/C++ Programming & IDE's Message-ID: <20010716212545.B19172@hades.hell.gr> References: <3B525888.B1C83CA9@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: <3B525888.B1C83CA9@lmco.com>; from leo.s.boegly@lmco.com on Sun, Jul 15, 2001 at 10:59:20PM -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 From: Leo S. Boegly Subject: C/C++ Programming & IDE's Date: Sun, Jul 15, 2001 at 10:59:20PM -0400 > Hello FreeBSD world! > > Looking for some help. I'm trying to find a good C/C++ Integrated > Development Environment(IDE) that will run under FreeBSD 4.2 or > better. It's not like I'm looking forward to start a flamewar here, but you don't really _need_ an IDE to program in FreeBSD (or any other Unix, for that matter). This is part of the beauty of it all. > I'm looking to get into network programming and device driver > development. If anyone out their can point me "to/away from" some > IDE's, it would be greatly appreciated! Most of the people I know are comfortable enough with the usual edit/compile/debug/repeat thing, that tend to find IDE's cumbersome to work with. Using vi/emacs as the editor, and crafting the proper Makefiles to compile it all, then fire up gdb as the debugger, one does not really need any IDE to work on FreeBSD. But this is, of course, my humble opinion and I cannot force it upon anyone else. If what you're looking for is some form of syntax highlighting (this is what most of the people coming from IDE's are missing, when they are first confronted with a FreeBSD system), you can install vim from ports/editors and put ":set syntax on" in your ~/.vimrc or use Emacs under X11 with global-font-lock turned on. Other editors in Unix provide similar features, and you can find lots and lots of them in the ports of FreeBSD. -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 11:55:55 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 5DF6337B406 for ; Mon, 16 Jul 2001 11:55:49 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-a056.otenet.gr [212.205.215.56]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f6GItdt02986; Mon, 16 Jul 2001 21:55:40 +0300 (EEST) Received: by hades.hell.gr (Postfix, from userid 1001) id D522F2C4; Mon, 16 Jul 2001 13:36:47 +0300 (EEST) Date: Mon, 16 Jul 2001 13:36:47 +0300 From: Giorgos Keramidas To: Ted Mittelstaedt Cc: Morsal Roudbay , J S , freebsd-questions@FreeBSD.ORG Subject: Re: [Re: spammers] Message-ID: <20010716133646.C19581@hades.hell.gr> References: <20010716093820.A25842@zigman.2y.net> <006a01c10ddb$435f4300$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: <006a01c10ddb$435f4300$1401a8c0@tedm.placo.com>; from tedm@toybox.placo.com on Mon, Jul 16, 2001 at 02:39:52AM -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 From: Ted Mittelstaedt Subject: RE: [Re: spammers] Date: Mon, Jul 16, 2001 at 02:39:52AM -0700 > >-----Original Message----- > >From: owner-freebsd-questions@FreeBSD.ORG > >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Morsal Roudbay > > > >ISPs dont bother much, been there, done that. Lousy solution. > > > > Not true. The problem is that most people that file a spam complaint don't > include headers. Secondly, most ISP's won't bother if they only get a single > complaint because most spam complaints are bogus anyway. > > What the ISP's look for is a pattern - if they get 20 or more complaints from > different people all on the same day all complaining about the identical piece > of spam then they will investigate. But of course if all they get is one then > they typically ignore it because most people that complain cannot read > mail headers to determine the real injection point of the spam, so they end > up complaining to the postmaster of the forged domain. Most ISPs will reply though if you do half of the job to track down the offender. Complaints like the one below, which I posted to some ISP who owns the IP-range containing the IP of a spammer, will almost certainly receive replies. At least mine did, and when the investigation of the matter was finished, I was informed of the results in a second message. | From: Giorgos Keramidas | Date: Sun, 15 Jul 2001 03:27:26 +0300 | To: abuse@chinanet.cn.net | Subject: spam mail | | I received a message that was probably some form of spam. The message | comes from IP 61.143.179.78 which does not resolve, but the whois(1) | command in Unix reveals that you are the responsible for the IP block | that this address comes from. | | The full headers of the spam message are: | | From tonyxian@public.guangzhou.gd.cn Sun Jul 15 03:06:50 2001 | Return-Path: | Delivered-To: charon@localhost.hell.gr | Received: from diogenis.ceid.upatras.gr (hades [127.0.0.1]) | by hades.hell.gr (Postfix) with ESMTP id 609502C3 | for ; Sun, 15 Jul 2001 03:06:50 +0300 (EEST) | Delivered-To: keramida@ceid.upatras.gr | Received: (qmail 5586 invoked from network); 15 Jul 2001 00:06:11 -0000 | Received: from pub.yunfu.gd.cn (202.104.197.17) | by diogenis.ceid.upatras.gr with SMTP; 15 Jul 2001 00:06:11 -0000 | Received: from oemcomputer ([61.143.179.78]) | by pub.yunfu.gd.cn (8.9.3/8.9.3) with ESMTP id HAA17241; | Sun, 15 Jul 2001 07:59:07 +0800 (CST) | Message-ID: <203502001761423591190@oemcomputer> | X-EM-Version: 5, 0, 0, 19 | X-EM-Registration: #01B0530810E603002D00 | X-Priority: 3 | Reply-To: guidedtour@china.com | To: "Business Guided Tour to China" | From: "China Consultants Team" | Subject: Re: Explore China Business Opportunities | Date: Sun, 15 Jul 2001 07:59:01 +0800 | MIME-Version: 1.0 | Content-type: text/plain; charset="US-ASCII" | Content-Transfer-Encoding: quoted-printable | X-UIDL: p/k"!IG^!!>6(#!a22"! | Status: RO | X-Status: A | Content-Length: 1134 | Lines: 33 | | The fake From: and To: headers, and the body of the message which ends | with the following text show that this is some form of advertisment | that I never asked for: | | 2) If you do not want to hear from us any more, please reply to: | guidedtour@china.com with REMOVE in the subject line. | | Please track the people who did this and stop them :( | | --giorgos When you have done some homework, and do not complain to the wrong guys, you are more often than not likely to receive a reply :-) -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 11:58:40 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 1821A37B406 for ; Mon, 16 Jul 2001 11:58:36 -0700 (PDT) (envelope-from culverk@wam.umd.edu) Received: from rac2.wam.umd.edu (IDENT:root@rac2.wam.umd.edu [128.8.10.142]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id OAA28660; Mon, 16 Jul 2001 14:58:18 -0400 (EDT) Received: from rac2.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac2.wam.umd.edu (8.9.3/8.9.3) with SMTP id OAA13979; Mon, 16 Jul 2001 14:58:18 -0400 (EDT) Received: from localhost (culverk@localhost) by rac2.wam.umd.edu (8.9.3/8.9.3) with ESMTP id OAA13975; Mon, 16 Jul 2001 14:58:18 -0400 (EDT) X-Authentication-Warning: rac2.wam.umd.edu: culverk owned process doing -bs Date: Mon, 16 Jul 2001 14:58:18 -0400 (EDT) From: Kenneth Wayne Culver To: Joe Cc: Rob , freebsd-questions@FreeBSD.ORG Subject: Re: Inactive/leak memory 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 So basically to sum it all up, its supposed to work that way. Ken On Mon, 16 Jul 2001, Joe wrote: > > > On Mon, 16 Jul 2001, Rob wrote: > > > Hi, > > > > I'm running 4.3 on a dual P3-550, with 1Gb RAM, and have been noticing odd > > reports in the 'top' values. After a reboot, the server slowly begins to lose > > memory from the free column into the inactive column, resulting in a bizarre set > > of values. > > This server is a live webserver, running Apache, with PHP and PostgreSQL. The > > laods are fairly low, and since I've had this box constantly CVSupped, with the > > latest updates to the webserver etc, I'm pretty stumped as to why this situation > > is happening. > > > > Here's the top part of the top output, after only 15 days of uptime: > > > > last pid: 99471; load averages: 0.56, 0.24, 0.13 > > up 15+21:26:00 17:13:02 > > 50 processes: 1 running, 49 sleeping > > CPU states: 1.9% user, 0.0% nice, 1.4% system, 0.4% interrupt, 96.3% idle > > Mem: 22M Active, 668M Inact, 87M Wired, 152K Cache, 112M Buf, 227M Free > > Swap: 512M Total, 512M Free > > > > PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU CPU COMMAND > > 189 pgsql 2 0 4408K 1552K select 1 11:36 0.00% 0.00% postgres > > 207 root 2 0 4856K 4012K select 1 4:43 0.00% 0.00% httpd > > 72058 www 2 0 5252K 4624K sbwait 1 0:55 0.00% 0.00% httpd > > 79544 www 18 0 5300K 4584K lockf 0 0:35 0.00% 0.00% httpd > > 80731 www 2 0 5184K 4488K sbwait 1 0:35 0.00% 0.00% httpd > > 80748 www 2 0 5168K 4536K sbwait 1 0:35 0.00% 0.00% httpd > > 85255 www 18 0 5176K 4544K lockf 0 0:26 0.00% 0.00% httpd > > 154 root 2 0 1256K 884K select 1 0:26 0.00% 0.00% sshd1 > > 147 root 10 0 968K 736K nanslp 0 0:07 0.00% 0.00% cron > > 150 root 2 0 2484K 2036K select 0 0:06 0.00% 0.00% sendmail > > 124 root 2 0 924K 612K select 1 0:05 0.00% 0.00% syslogd > > 95582 www 2 0 5244K 4604K sbwait 1 0:04 0.00% 0.00% httpd > > 95470 www 2 0 5068K 4368K sbwait 1 0:04 0.00% 0.00% httpd > > 98534 www 2 0 5076K 4432K sbwait 0 0:01 0.00% 0.00% httpd > > 194 root 2 0 1236K 888K select 0 0:01 0.00% 0.00% sshd1 > > > > This seems to happen slowly, until it reaches about 20M Free, upon which I tend > > to reboot. > > > > Any ideas? I thought that perhaps as inactive memory is still available to the > > system if needed that it might be okay to leave it, but a explanation may put my > > heart at rest.. > > > > Rob. > > -- > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > Memory requests will use inactive memory if there is no free memory, > unless, the request for memory is already stored in the inactive memory > which, at that point, it will use it. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 12: 1:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from buug.homeip.net (we-66-27-250-19.we.mediaone.net [66.27.250.19]) by hub.freebsd.org (Postfix) with ESMTP id EAC0837B405; Mon, 16 Jul 2001 12:01:50 -0700 (PDT) (envelope-from bear@buug.homeip.net) Received: from localhost (localhost [127.0.0.1]) by buug.homeip.net (8.11.4/8.11.4) with ESMTP id f6GJ1n580437; Mon, 16 Jul 2001 12:01:49 -0700 (PDT) (envelope-from bear@buug.homeip.net) Date: Mon, 16 Jul 2001 12:01:49 -0700 (PDT) From: Joey Garcia X-X-Sender: To: , Subject: Help needed with setting up routing Message-ID: <20010716115150.H80369-100000@localhost> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all! Okay, I'm still having a bit of problems setting up a FreeBSD router. I'm not sure if FreeBSD forwards the packets automatically or if I need to add routes to the routing table or what. Here's what I'm trying to do. I have 3 networks: 192.168.0.0/24, 192.168.10.0/24, and 192.168.20/29. I have one FreeBSD box with one interface having these addresses: 192.168.0.8, 192.168.10.100, and 192.168.20.1 (with corresponsing netmasks stated above). I also have clients on each of the networks. If I were to draw it out, I guess it would looke a bit like this: ---------- 192.168.0.8/24 | bsd | 192.168.10.100/24 ---------- 192.168.20.1/29 | | --------------------------------------- | | | | | | ----- ----- ----- |PC1| |PC2| |PC3| ----- ----- ----- 192.168.0.50/25 192.168.10.200/24 192.168.20.50/29 Granted, this is a very simple view. There are hubs thrown in there, and there also is another router that routes 192.168.0.0/24 to the internet. At this time I just wanted to get these 3 subnets talking then I'll experiment with getting them going out on the Internet. So basically, I'd like to get those machines talking to each other. So far, I can make PC1 ping all the IP addresses on the router, but I can't get it to ping PC2 or PC3 (and vice-versa). I have read through the Handbook, at it seems what I'm trying to do here is called a multi-homed host. Althouh, there wasn't much of an explanation how to accomplish on what I'd like to do. I have also read through the manpage for route and came across something concerning if the destination is directly reachable (I guess that means there are no hops in between), then I use the -interface modifier. I'm not quite sure on how to properly use the route add command with the -interface modifier. Some assistance would be appreciated. (Then again, that's probably not what I need to do in this case) I'm really inexperienced when it comes to routing. The only routes I've ever fiddled with was 'route add default ipaddress' when it came to setting up my Internet connectivity. I guess I should now provide the mandatory ifconfig and netstat -rn information for my machine. Here it is: ifconfig: tl0: flags=8843 mtu 1500 inet6 fe80::280:5fff:feb6:3731%tl0 prefixlen 64 scopeid 0x1 inet 192.168.0.8 netmask 0xffffff00 broadcast 192.168.0.255 inet 192.168.20.1 netmask 0xfffffff8 broadcast 192.168.20.7 inet 192.168.10.100 netmask 0xffffff00 broadcast 192.168.10.255 ether 00:80:5f:b6:37:31 media: autoselect (10baseT/UTP) status: active netstat -rn: Internet: Destination Gateway Flags Refs Use Netif Expire 127.0.0.1 127.0.0.1 UH 0 94 lo0 192.168 link#1 UC 0 0 tl0 => 192.168.10 link#1 UC 0 0 tl0 => 192.168.20/29 link#1 UC 0 0 tl0 => Okay, not sure what other peices of information I can help out with but I have set net.inet.ip.forwarding to 1 and I'm not running routed (do I need to?). From reading the manual page I gathered that the routes are directly reachable because all 3 networks lie on the same interface. Therefore, I believe I need to use the -iface modifier. I have tried commands such as this with no luck: route add -net 192.168.10.0 -iface (and other combinations) I'd really appreciate any help. I guess I need some pointers on how to properly use the route command as well as how to properly route to 3 different networks on the same interace. TIA, Joey To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 12: 2:11 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 5813E37B403 for ; Mon, 16 Jul 2001 12:02:04 -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 VAA06400; Mon, 16 Jul 2001 21:09:47 +0200 Message-ID: <3B533AA8.14D1AE9E@i-clue.de> Date: Mon, 16 Jul 2001 21:04: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: Chris Lott Cc: "'freebsd-questions@freebsd.org'" , "'so@server.i-clue.de'" Subject: Re: BootEasy problem References: <70CDD1EE3A2CD511993900104B0A30A201A770@infinity.thethirdsector.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 Chris Lott schrieb: > > > Swap both drives. The first menu is from disk 0 (ATA Master > > 0), which no > > longer holds a bootable partition. The second menu is from disk 1 (ATA > > slave 0 or ATA master 1) holding your current system. > > The old drive isn't even installed any longer and hasn't been physically in > the machine for months! That's what's weird about it. I'm sure I did > something wrong with the migration to the new drive... Never mind. Install OS-BS from the tools directory. It lets you choose which partition on which drive to boot. Alternatively, look at http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/troubleshoot.html#BOOTMANAGER-RESTORE 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 16 12: 3:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-62.dsl.lsan03.pacbell.net [63.207.60.62]) by hub.freebsd.org (Postfix) with ESMTP id 4382A37B401 for ; Mon, 16 Jul 2001 12:03:23 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id DC1B767378; Mon, 16 Jul 2001 12:03:21 -0700 (PDT) Date: Mon, 16 Jul 2001 12:03:21 -0700 From: Kris Kennaway To: Usov Alexander Cc: questions@FreeBSD.ORG Subject: Re: Missing KLD's ??? Message-ID: <20010716120320.B94139@xor.obsecurity.org> References: <200107161200.f6GC0jk19220@storage.ukr.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="p4qYPpj5QlsIQJ0K" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200107161200.f6GC0jk19220@storage.ukr.net>; from usov@ukr.net on Mon, Jul 16, 2001 at 03:00:45PM +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 --p4qYPpj5QlsIQJ0K Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 16, 2001 at 03:00:45PM +0300, Usov Alexander wrote: > Hi! >=20 > Can anybody explain me where are kld's for devfs and ipf. > When I try to mount devfs I got an error > mount_devfs: vfsload(devfs): No such file or directory devfs was removed from -stable recently because it's too broken to use (and has been that way forever). > I look throught /etc/defaults/rc.conf and as I understand it' possible to= =20 > load ipf as kld, but whe I try to do that, all I got is device not config= ured. You can verify that it loaded with kldstat(8). The kernel will not load out of date modules, so perhaps this is your problem. >=20 > PS. > Sorry for my bad english. Your english is fine :-) Kris --p4qYPpj5QlsIQJ0K 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 iD8DBQE7Uzp3Wry0BWjoQKURAgwIAJ9s9ag/+LaPDZufUynVCF59t7EFpgCfY6Y0 FKEZC65jFfrFq2aWZkkU1gc= =EJyp -----END PGP SIGNATURE----- --p4qYPpj5QlsIQJ0K-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 12: 3:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay3.adelphia.net (smtprelay3.adelphia.net [64.8.25.8]) by hub.freebsd.org (Postfix) with ESMTP id E26E637B406 for ; Mon, 16 Jul 2001 12:03:45 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay3.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGKYAS02.B9L; Mon, 16 Jul 2001 15:04:04 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.3/8.11.3) id f6GJ1uU13307; Mon, 16 Jul 2001 15:01:56 -0400 (EDT) (envelope-from ipt) Date: Mon, 16 Jul 2001 15:01:56 -0400 From: User & Ian Patrick Thomas To: Duke Normandin <01031149@3web.net> Cc: freebsd-questions@freebsd.org Subject: Re: Need help with PPP Message-ID: <20010716150156.A13279@localhost> References: <5f.17dfe5cf.28833f40@aol.com> <20010715195230.A10278@localhost> <20010715175151.A30370@tao.thought.org> <20010715212932.A11121@localhost> <20010716062836.A240963@mandy.rockingd.calgary.ab.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010716062836.A240963@mandy.rockingd.calgary.ab.ca>; from 01031149@3web.net on Mon, Jul 16, 2001 at 06:28:37AM -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 Yes, NAT on the WIN box. In this case the FreeBSD box would need to be behind the WIN box because the Juno software won't work on the FreeBSD box (although if you have some spare time and like WINE, the software may be able to work in WINE, but we had enough trouble keeping the Juno software working on vanilla Windows). Ian As it was put forth by Duke Normandin on Mon, Jul 16, 2001 at 06:28:37AM -0600... > > On Sun, Jul 15, 2001 at 09:29:32PM -0400, User & Ian Patrick Thomas wrote: > > > > > > As it was put forth by Gary Kline on Sun, Jul 15, 2001 at 05:51:52PM -0700... > > > On Sun, Jul 15, 2001 at 07:52:30PM -0400, User & Ian Patrick Thomas wrote: > > > > Having been a previous employee with Juno, if you are trying to use the > > > > free internet service without their software, it won't work. Even if you > > > > are paying for the service, it may still not work. To my knowledge, the > > > > Juno service will only work with their software on a Windows machine. Try > > > > going with another ISP. > > > > > > > > > > Hm. Here's something I've wondered since trying Juno > > > at friend's:: would it be possible to use Juno's free > > > junk service with Windows and have your DOG/W9x system > > > networked to a FBSD LAN? > > > > > > gary > > > > > > > > > -- > > > Gary D. Kline kline@thought.org www.thought.org Public service Unix > > > > Yes. You would need to use NAT of course. Only problem is you can pretty much > > never get on. They have restricted the usage with the free internet service to customers > > that they deem are not heavy users. There is no definition or criteria of what makes up > > a heavy user, but once you have been given this label, expect to never be able to get on. > > > > Ian > > Hi Ian..... > > Do you mean NAT on the win9x box, or the FBSD one? I ask because I have a > similar situation. I'm on a dial-up to Juno and 3Web -- so I'm pooched > with using their software! I'd like to be able to use my FBSD box on the > 'net while my win95 is connected. TIA... > -- > -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 Mon Jul 16 12:14:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f127.law9.hotmail.com [64.4.9.127]) by hub.freebsd.org (Postfix) with ESMTP id D936637B401 for ; Mon, 16 Jul 2001 12:14:08 -0700 (PDT) (envelope-from jigga454@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 16 Jul 2001 12:14:08 -0700 Received: from 63.115.198.7 by lw9fd.law9.hotmail.msn.com with HTTP; Mon, 16 Jul 2001 19:14:08 GMT X-Originating-IP: [63.115.198.7] From: "Marlowe Coley" To: freebsd-questions@FreeBSD.ORG Date: Mon, 16 Jul 2001 15:14:08 -0400 Mime-Version: 1.0 Content-Type: text/html Message-ID: X-OriginalArrivalTime: 16 Jul 2001 19:14:08.0751 (UTC) FILETIME=[7D0D97F0:01C10E2B] Sender: owner-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 find a csu/dsu vendor that has been proven to work on a 4.2 freebsd system using the WANIC 400 series dual port T1 adapter.  I'm looking for csu/dsu vendor and cable requirements.  Has anyone brought up a T1 on bsd using this adapter ?


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 16 12:17:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from vorrix.com (ns1.vorrix.com [205.214.90.212]) by hub.freebsd.org (Postfix) with ESMTP id ECFE337B405 for ; Mon, 16 Jul 2001 12:17:23 -0700 (PDT) (envelope-from steffen@vorrix.com) Received: from ws001 [216.26.133.17] by vorrix.com [192.168.1.1] with SMTP (MDaemon.v3.5.7.R) for ; Fri, 13 Jul 2001 18:59:43 -0400 Message-ID: <002f01c10bef$71532c10$3e03a8c0@ws001> From: "Steffen Vorrix" To: Subject: Question regarding VPN between two MS networks Date: Fri, 13 Jul 2001 18:59:16 -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 X-MDRemoteIP: 216.26.133.17 X-Return-Path: steffen@vorrix.com X-MDaemon-Deliver-To: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a question regarding my site to site VPN. I have two networks (A and B) with FreeBSD firewalls between them. The 'A' network is running the PDC for Network A. I would like to make the few NTServers and Workstations on network B part of the Network A Domain. I have setup the VPN and the routes, and everything is almost completely working... I say 'almost' because I can ping, map drives, printers, etc. to any machine on either side of the network. I can also copy files, etc. My problem is this: I can't seem allow the machines on Network 'B' to join the Network 'A' Domain. The machines say they can not locate the Domain Controller. I do have WINS running on network A, and all of the machines on Network B actually use the Network A's WINS server. I am pretty certain this is working, as before I made the WINS entries for the machines on Network B I couldn't see any of the machines from network A in the Neighborhood, but now they all show up. (I did not anaylze traffic, however, to make sure this is the case.) Just to be on the safe side, though, I added a 'LMHOSTS' file as per Microsoft KB Q180094. A tcpdump appears to show that the machines on network B are trying to find the domain controller by doing a broadcast packet, but I can't tell that for certain. There is definitely (of course) broadcast traffic, but it appears to get very heavy when an attempt to locate the domain controller is made. Here is the part I find the strangest. If I remove the Security Associations, but leave the tunnel itself, everything works fine. I can add the machine to the domain and everything works as expected. I can use the User Manager for Domain, Server Manger, etc. However, as soon as I turn the VPN Security Assocations back on, though, the machines on network B can not find the Domain Controller again. (User Manager stops working and logon attempts get the dreaded 'You have been logged on with cached credentials' message. I have searched through google for someone that might have the same problem, and I saw a few posts for people that had site to site VPN setup and couldn't get the domain membership to work, but none of those posts had any resolution associated with them. It would seem to me that I am having some kind of routing problem, but I don't know how to overcome it, if it is possible. Has anyone out there also run into this problem? I can certainly include all of the appropriate configurations, but since it works without the VPN SA's, I didn't as I thought it didn't have anything to do with things like firewall rules that might be too restrictive. (BTW, the FW type is 'open' right now for testing purposes.) Thanks a bunch for the help in advance. Chris Schremser steffen@vorrix.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 16 12:22:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay2.adelphia.net (smtprelay2.adelphia.net [64.8.25.7]) by hub.freebsd.org (Postfix) with ESMTP id DE27C37B403 for ; Mon, 16 Jul 2001 12:22:38 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay2.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGKZ6F03.B3R; Mon, 16 Jul 2001 15:23:03 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.3/8.11.3) id f6GJKpA13379; Mon, 16 Jul 2001 15:20:51 -0400 (EDT) (envelope-from ipt) Date: Mon, 16 Jul 2001 15:20:51 -0400 From: User & Ian Patrick Thomas To: Peter Seebach Cc: freebsd-questions@freebsd.org Subject: Re: CD-ROM compatability Message-ID: <20010716152051.B13279@localhost> References: <20010715202453.C10278@localhost> <200107160430.f6G4Upv03430@guild.plethora.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200107160430.f6G4Upv03430@guild.plethora.net>; from seebs@plethora.net on Sun, Jul 15, 2001 at 11:30:51PM -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 Never used BSD/OS, but try sysctl -a and look for the hw.ata items. This may be what you're after. Ian As it was put forth by Peter Seebach on Sun, Jul 15, 2001 at 11:30:51PM -0500... > In message <20010715202453.C10278@localhost>, User & Ian Patrick Thomas writes: > > I also use a Creative Labs 52x CDROM, but with no difficulties. I > >think you may be on the right track in suspecting some strange behaviour > >from the IDE controllers. I have also read that running a CDROM on a UDMA > >66 controller can cause problems. > > Hmm. Well, I think the controller can do UDMA. > > I don't suppose there's a way to set flags, or otherwise tell the driver > to not attempt DMA? In BSD/OS, this'd be something like > -parm wdpi0 flags=nodma > > -s > > 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 16 12:40:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from luke.cpl.net (luke.cpl.net [63.169.72.3]) by hub.freebsd.org (Postfix) with ESMTP id 1C18337B405 for ; Mon, 16 Jul 2001 12:40:21 -0700 (PDT) (envelope-from shawn@luke.cpl.net) Received: (from shawn@localhost) by luke.cpl.net (8.11.3/8.11.3) id f6GJeH568428; Mon, 16 Jul 2001 12:40:17 -0700 (PDT) Date: Mon, 16 Jul 2001 12:40:17 -0700 From: Shawn Ramsey To: Christoph Sold Cc: questions@FreeBSD.ORG Subject: Re: Kernel compile problems Message-ID: <20010716124017.B92252@cpl.net> References: <20010716111945.A92252@cpl.net> <3B53352E.D455BE7C@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: <3B53352E.D455BE7C@i-clue.de>; from so@server.i-clue.de on Mon, Jul 16, 2001 at 08:40:46PM +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 > > And it usually bombs on a "make depend", but not always. This would seem to > > be some sort of hardware problem. I've replaced the RAM to no avail. Is > > there any way to know what is causing this? Am I going to have to just start > > replacing hardware? :( > > > > And here is an error on "make depend" : > > > > [snippety] > > cc: Internal compiler error: program cpp got fatal signal 27 > > mkdep: compile failed > > *** Error code 1 > > > > Stop in /usr/src/sys/compile/Router. > > > > This error is usually different each time it is run.... > > Which clearly indicates hardware problems. Aside from bad RAM, bad hard > disc cables come to mind, Also, weak power supplys, faulty CPU fans, as > well as bad shielding may cause problems. > > HTH > -Christoph Sold I doubt its related, but recently (noticed within the last couple weeks) these have been showing up in dmesg : arp: unknown hardware address format (0x0000) What exactly does this mean? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 12:44: 8 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 09C9137B405 for ; Mon, 16 Jul 2001 12:44:03 -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 GGL02N02.K8P; Mon, 16 Jul 2001 15:42:23 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.3/8.11.3) id f6GJfRi13545; Mon, 16 Jul 2001 15:41:27 -0400 (EDT) (envelope-from ipt) Date: Mon, 16 Jul 2001 15:41:22 -0400 From: User & Ian Patrick Thomas To: j mckitrick Cc: freebsd-questions@freebsd.org Subject: Re: ifconfig question Message-ID: <20010716154122.C13279@localhost> References: <20010716152941.A48484@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010716152941.A48484@dogma.freebsd-uk.eu.org>; from jcm@FreeBSD-uk.eu.org on Mon, Jul 16, 2001 at 03:29:41PM +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 I'd also like to know this. I get this message when I boot up right before DHCP gets my IP and other info. Everything on my box seems to work fine also. Ian As it was put forth by j mckitrick on Mon, Jul 16, 2001 at 03:29:41PM +0100... > > Sorry for the simple question, but I'm new to ethernets... > > root:~# dhclient ed0 > ifconfig: ioctl (SIOCDIFADDR): Can't assign requested address > dhclient: New IP Address(ed0): 10.100.20.163 > dhclient: New Subnet Mask (ed0): 255.255.254.0 > dhclient: New Broadcast Address(ed0): 10.100.21.255 > dhclient: New Routers: 10.100.20.1 > > > I read the manpage on netintro and dhclient, but I couldn't figure it out. > Is the ifconfig message an error? My connection seems to be working fine. > > jcm > -- > o-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-o > | ~~~~~~~~~~~~ Jonathon McKitrick ~~~~~~~~~~~~~ | > | "I prefer the term 'Artificial Person' myself." | > o-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-o > > > 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 16 13:11:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 76BEE37B409 for ; Mon, 16 Jul 2001 13:11:26 -0700 (PDT) (envelope-from iedowse@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 16 Jul 2001 21:11:24 +0100 (BST) To: "P. U. (Uli) Kruppa" Cc: Vladislav Saltanov , freebsd-questions@FreeBSD.ORG Subject: Re: I can't mount FAT16 disk In-Reply-To: Your message of "Mon, 16 Jul 2001 18:26:39 -0000." <20010716182256.Q345-100000@localhost.de> Date: Mon, 16 Jul 2001 21:11:23 +0100 From: Ian Dowse Message-ID: <200107162111.aa65203@salmon.maths.tcd.ie> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20010716182256.Q345-100000@localhost.de>, "P. U. (Uli) Kruppa" writ es: >> #mount_msdos /dev/ad0s1 /mnt >> mount_msdos:vfsload(msdos):File exists >Try ># df -h >to find out if anything else is mounted on /mnt . The error is from "vfsload(msdos)", not from the mount system call, so that is unlikely. In fact, mount_msdos should actually allow you to mount one filesystem directly over another, but if you tried to mount two filesystems from the same device you should get a "Device busy" error. The vfsload() call is used to load a kernel module in order to support a particular filesystem. Here it seems that mount_msdos believes that there is no support for the msdos filesystem in the kernel, but when it tries to load the module it appears to be already loaded (hence the "File exists"). I've no idea why that would happen though... What version of FreeBSD are you running? What is the output from the "kldstat" program? Were your kernel modules compiled at the same time as the kernel? Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 13:13:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from illuminati.is.co.za (illuminati.is.co.za [196.36.198.65]) by hub.freebsd.org (Postfix) with ESMTP id B702137B417 for ; Mon, 16 Jul 2001 13:13:46 -0700 (PDT) (envelope-from geoff@illuminati.is.co.za) Received: by illuminati.is.co.za (Postfix, from userid 1001) id 3982B1B3; Mon, 16 Jul 2001 22:13:16 +0200 (SAST) Date: Mon, 16 Jul 2001 22:13:16 +0200 From: Geoff Rehmet To: questions@freebsd.org Subject: Problem with Soundcard Message-ID: <20010716221316.A73602@illuminati.is.co.za> 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 am currently experiencing problems getting my sound card to work under 4.3-RELEASE. The card has a CMedia chipset, and does get detected by the kernel: pcm0: port 0xd800-0xd8ff irq 11 at device 12.0 on pci0 The output from /dev/sndstat is as follows: redpoint:~% cat /dev/sndstat FreeBSD Audio Driver (newpcm) Jul 16 2001 18:08:46 Installed devices: pcm0: at io 0xd800 irq 11 (1p/1r channels duplex) redpoint:~% If I do something like "cat /kernel > /dev/dsp", I get the expected result of a very ugly noise. Taking a .au file, such as the ones supplied with afterstep and cat'ing them to /dev/audio yields the correct result of the sound being played. Apps such as xmixer work fine to control volume levels, however, if I try to use x11amp to play mp3s - it is just dead. Any assistance would be appreciated. Please send replies directly to me, as well as to the list. Thanks, Geoff. -- Geoff Rehmet, Internet Solutions tel: +27-11-283-5462, fax: +27-11-283-5401 mobile: +27-83-292-5800 email: geoffr@is.co.za URL: http://www.is.co.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 14: 2:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta3n.bluewin.ch (mta3n.bluewin.ch [195.186.1.212]) by hub.freebsd.org (Postfix) with ESMTP id 0A76F37B401 for ; Mon, 16 Jul 2001 14:02:15 -0700 (PDT) (envelope-from carloma@bluewin.ch) Received: from bluewin.ch (213.3.191.223) by mta3n.bluewin.ch (Bluewin AG MX engine5.5.034) id 3B51F91000045A5D for freebsd-questions@FreeBSD.ORG; Mon, 16 Jul 2001 23:02:13 +0200 Message-ID: <3B535650.992448CB@bluewin.ch> Date: Mon, 16 Jul 2001 23:02:09 +0200 From: matteotti Reply-To: carloma@bluewin.ch 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: No card in database for "(null)"("(null)") Content-Type: text/plain; charset=iso-8859-15 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 posted this message already once unfortunately from a misconfigured machine. So no answers could get through. This time it should be possible to answer. I just repeat my previous message once more. Sorry ! Hello, I have installed FreeBSD-4.3-RELEASE on an IBM ThinkPAD A22m. I run into problems with PCMCIA card configuration. Inserting a card results in the following message: 'No card in database for "(null)"("(null)")' I was playing around with the PCMCIA support entries in the kernel configuration file: eg. device pcic0 at isa ? irq 10 port 0x3e0 iomem 0xd8000 and many more without success . My modem card (Billionton WorldTravellor) and ethernet card (Apollo) are both listed in /etc/defaults/pccard.conf and I copied the corresponding entries to /etc/pccard.conf. I configured the card already on an IBM ThinkPAD i1200 with sucess. I' d be very thankful for any suggestion . Best regards . C. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 14: 4:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from guild.plethora.net (guild.plethora.net [205.166.146.8]) by hub.freebsd.org (Postfix) with ESMTP id 535CF37B40C for ; Mon, 16 Jul 2001 14:04:26 -0700 (PDT) (envelope-from seebs@plethora.net) Received: from guild.plethora.net (seebs@localhost.plethora.net [127.0.0.1]) by guild.plethora.net (8.11.2/8.10.1) with ESMTP id f6GL4Ov14893 for ; Mon, 16 Jul 2001 16:04:25 -0500 (CDT) Message-Id: <200107162104.f6GL4Ov14893@guild.plethora.net> From: seebs@plethora.net (Peter Seebach) Reply-To: seebs@plethora.net (Peter Seebach) To: freebsd-questions@freebsd.org Subject: Re: CD-ROM compatability In-reply-to: Your message of "Mon, 16 Jul 2001 15:20:51 EDT." <20010716152051.B13279@localhost> Date: Mon, 16 Jul 2001 16:04:24 -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 In message <20010716152051.B13279@localhost>, User & Ian Patrick Thomas writes: > Never used BSD/OS, but try sysctl -a and look for the hw.ata items. Th >is >may be what you're after. Thanks! I have forwarded this to the people who will be trying to get these machines working in a day or two. :) -s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 14: 4:44 2001 Delivered-To: freebsd-questions@freebsd.org Received: from maildrop.dub-t3-1.nwcgroup.com (maildrop.dub-t3-1.nwcgroup.com [195.129.80.17]) by hub.freebsd.org (Postfix) with ESMTP id E194B37B418 for ; Mon, 16 Jul 2001 14:04:18 -0700 (PDT) (envelope-from customerservice@playnetwork.com) Received: from maildrop (localhost [127.0.0.1]) by maildrop.dub-t3-1.nwcgroup.com (Postfix) with ESMTP id 9CB354C79 for ; Mon, 16 Jul 2001 22:04:18 +0100 (IST) Message-ID: <876315903.995317458640.JavaMail.nwdmail@maildrop> Date: Mon, 16 Jul 2001 21:04:18 +0000 (GMT+00:00) From: Reply-To: customerservice@playnetwork.com To: questions@freebsd.org Subject: Save Up To 70% On Music For Your Business! Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_37979_1991525627.995317458585" X-mailer: NewWorld Direct Java Mail Program X-uri: http://www.newworldcommerce.com X-Complaints: abuse@nwcgroup.com X-Bounce-Info: AG8yP3AcOk~zyDOZavSR.VXb~WaU91i~SZmDGQ+CZ+1V+5J~q2+Hc+ipQ2s+qFK+me9e+1oe5ZN9T~lF~PwHNd+xq0+Qf+WS~LpxI~VWPw+aE3~p2er~0urX+OjrW Return-Errors-To: customerservice@playnetwork.com X-Errors-To: customerservice@playnetwork.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 Dear Are you currently playing the radio as your in-store music source? Are you tired of all the deejay chatter and endless advertising? OR, are you using a CD player - and find your customers and employees hear the same music over and over because you're too busy to change CDs or buy new ones? Are you uncertain about paying ASCAP, BMI, or SESAC music licensing fees? Introducing PlayNetwork Online, a monthly subscription service that resolves all your business music issues. http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNIJDDCIDOYJCHGDFHJhO Best of all it's available to you at an affordable monthly fee. If you'd like to learn more about this exciting new music service, please click on the link below for information regarding the benefits of professionally programmed music and details on our special introductory offer. Add life to your business with music. PlayNetwork Online. Imagine music your way. http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNIJDDCIDOYJCHGDFHJhO Click here to configure your eMail preference: http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNIJDDCIDOYJCHGDFHJXb Click here to unsubscribe: http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNIJDDCIDOYJCHGDFHJfN The following text is for MIME compliant client programs. ------=_Part_37979_1991525627.995317458585 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Description: Plain Text mail part Dear Are you currently playing the radio as your in-store music source? Are you tired of all the deejay chatter and endless advertising? OR, are you using a CD player - and find your customers and employees hear the same music over and over because you're too busy to change CDs or buy new ones? Are you uncertain about paying ASCAP, BMI, or SESAC music licensing fees? Introducing PlayNetwork Online, a monthly subscription service that resolves all your business music issues. http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNIJDDCIDOYJCHGDFHJhO Best of all it's available to you at an affordable monthly fee. If you'd like to learn more about this exciting new music service, please click on the link below for information regarding the benefits of professionally programmed music and details on our special introductory offer. Add life to your business with music. PlayNetwork Online. Imagine music your way. http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNIJDDCIDOYJCHGDFHJhO Click here to configure your eMail preference: http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNIJDDCIDOYJCHGDFHJXb Click here to unsubscribe: http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNIJDDCIDOYJCHGDFHJfN ------=_Part_37979_1991525627.995317458585 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Content-Description: HTML mail part - external links Welcome
=09 =09
=09 =09 =09=09 =09 =09<= td align=3Dleft width=3D"100%">
If you cannot read this eMail, please go to
http://www.nwd42.= com/s.asp?N=3DZwm8Yq3701v~HNIJDDCIDOYJCHGDFHJhO
=09=09=09 =09=09=09=20 =09=09=09 =09=09=09 =09=09=09
3D""
=09=09
Welcome= !
=09=09
FINALLY, AFFORDABLE MUSIC FOR YOUR BUSINESS!
3D""

3D""=
 
<= IMG SRC=3D"http://www.nwd42.com/offer/PlayNetwork/Images/banner5%2ejpg" BOR= DER=3D0 ALT=3D"">
&n= bsp;

Visit our web = site and subscribe today.
Add life to your business with music!
3D""
 
<= TR>
3D""
Or Call Us At 1-866-752-9321 For M= ore Information.
 
Call Me
eMail Us
3D""<= /TD>

=
SUBSCRIBE TODAY AND SAVE!
=09 =09=09 =09

=09 =09=09=20 =09=09=09 =09=09=09=09 =09=09=09 =09=09
=09 =09 =09 =09=09 =09=09=09 =09 =09=09=09 =09=09=09=09 =09=09=09 =09=09
=09=09Click he= re to configure your eMail preference:
http://www.nwd42.com/s.asp?N=3D= Zwm8Yq3701v~HNIJDDCIDOYJCHGDFHJXb
=09
=09=09=09=09=09 =09=09=09=09=09Click here to unsubscribe:
http://www.nwd42.com/s.asp?N=3DZwm8Yq3701v= ~HNIJDDCIDOYJCHGDFHJfN
=09=09=09=09
=09
------=_Part_37979_1991525627.995317458585-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 14: 6:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from beta.root-servers.ch (gamma.root-servers.ch [195.49.62.126]) by hub.freebsd.org (Postfix) with SMTP id 3A5A337B40A for ; Mon, 16 Jul 2001 14:06:24 -0700 (PDT) (envelope-from gabriel_ambuehl@buz.ch) Received: (qmail 20779 invoked from network); 16 Jul 2001 21:06:23 -0000 Received: from dclient106-17.hispeed.ch (HELO athlon550) (62.2.106.17) by beta.root-servers.ch with SMTP; 16 Jul 2001 21:06:23 -0000 Date: Mon, 16 Jul 2001 23:07:11 +0200 From: Gabriel Ambuehl X-Mailer: The Bat! (v1.53bis) Educational Organization: BUZ Internet Services X-Priority: 3 (Normal) Message-ID: <194127057398.20010716230711@buz.ch> To: Klaus Steden Cc: questions@freebsd.org Subject: Re[2]: popen() with bidirectional pipes? In-Reply-To: <20010716160341.S73359@cthulu.compt.com> References: <64111861237.20010716185355@buz.ch> <20010716160341.S73359@cthulu.compt.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 -----BEGIN PGP SIGNED MESSAGE----- Hello Klaus, Monday, July 16, 2001, 10:03:41 PM, you wrote: > popen() doesn't do bi-directional communication. Pipes (in the > POSIX spec) only work in one direction. What about: Since popen() is now implemented using a bidirectional pipe, the type argument may request a bidirectional data flow. The type argument is a pointer to a null-terminated string which must be `r' for reading, `w' for writing, or `r+' for reading and writing. Best regards, Gabriel  -----BEGIN PGP SIGNATURE----- Version: PGP 6.5i iQEVAwUBO1NJgMZa2WpymlDxAQHMjAf/cNnFPhhGxZHukhAiha1JSWnfeIvd+4WU GNBx50fSgPZr2sc5a0WbTPuzOA6jHLvoNh3RdH+YZcsGum+3vzuViTGK7yyhrFLL KPfWGz3pK88gAOXA9XzgE2svzVkU7c4apnPZxEhoMWVu4UhKLyldECYVrlEF4OPJ uSq9WOul7xVyJW0lh+mz8MZx901T+2fZbyB/m0nzCLcQcajYcWi5aZmFgqGHm1Am 6csAsNRKRmuneH/y8Vp3mzFiqCI8habxCC3Y9cGLUPr5Osk03XI4WoXtQ6429t57 VhEpfbGMrRBmpJb/6/too9W4jJOgkKSCK0/plFtJKmdapfFSHP4lzQ== =avTH -----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 Mon Jul 16 14:14:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from itouch.co.nz (itouch.co.nz [203.99.66.188]) by hub.freebsd.org (Postfix) with ESMTP id B107137B401 for ; Mon, 16 Jul 2001 14:14:25 -0700 (PDT) (envelope-from jonc@itouch.co.nz) Received: (from jonc@localhost) by itouch.co.nz (8.11.3/8.11.1) id f6GLE1N74910; Tue, 17 Jul 2001 09:14:01 +1200 (NZST) (envelope-from jonc) Date: Tue, 17 Jul 2001 09:14:01 +1200 From: Jonathan Chen To: Doug Poland Cc: questions@FreeBSD.ORG Subject: Re: XFree86 4.0.1 -- i810e video woes Message-ID: <20010717091401.A72577@itouchnz.itouch> References: <20010716103859.A12947@polands.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010716103859.A12947@polands.org>; from doug@polands.org on Mon, Jul 16, 2001 at 10:39:00AM -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 16, 2001 at 10:39:00AM -0500, Doug Poland wrote: [..] > It did make me a XF86Config.new file, however. > In it, I made sure the following was set.. > > Section "Device" > Identifier "Intel i810" > Driver "i810" > EndSection > Under 4.1.0 (which is the latest), a working config reads: Section "Device" Identifier "i810" Driver "i810" VideoRam 16384 Option "NoDDC" EndSection -- Jonathan Chen ------------------------------------------------------------------------ "We laugh in the face of danger, we drop icecubes down the vest of fear" - Edmond Blackadder III To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 14:19:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from itouch.co.nz (itouch.co.nz [203.99.66.188]) by hub.freebsd.org (Postfix) with ESMTP id 3D75337B401 for ; Mon, 16 Jul 2001 14:19:40 -0700 (PDT) (envelope-from jonc@itouch.co.nz) Received: (from jonc@localhost) by itouch.co.nz (8.11.3/8.11.1) id f6GLIsj75442; Tue, 17 Jul 2001 09:18:54 +1200 (NZST) (envelope-from jonc) Date: Tue, 17 Jul 2001 09:18:54 +1200 From: Jonathan Chen To: Christoph Sold Cc: "Kramer James M." , freebsd-questions@FreeBSD.ORG Subject: Re: Please Help - Advise on New system Message-ID: <20010717091854.B72577@itouchnz.itouch> References: <358DD50B8076D311AB9600805FA78BF84CFDFC@PITEXCH1> <3B53373C.E613835B@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: <3B53373C.E613835B@i-clue.de>; from so@server.i-clue.de on Mon, Jul 16, 2001 at 08:49:32PM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jul 16, 2001 at 08:49:32PM +0200, Christoph Sold wrote: [...] > The > only thing to watch out at this time is to grab a video board wich is > right now supported by XFree86 4.x or 3.3.6. NVidia Geforce chips are, > much to my grievance, not yet supported. NVidia GeForce chips apprears to be supported in latest version, according to: http://www.xfree86.org/4.1.0/Status22.html -- Jonathan Chen ---------------------------------------------------------------------- Computers are like air conditioners. They stop working when you open Windows. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 14:22:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from jhb-imta.mweb.co.za (jhb-imta.mweb.co.za [196.2.48.244]) by hub.freebsd.org (Postfix) with ESMTP id 1E5BF37B405 for ; Mon, 16 Jul 2001 14:22:47 -0700 (PDT) (envelope-from h20soul@mweb.co.za) Received: from Liquidsoul ([196.30.38.182]) by jhb-imta.mweb.co.za (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) with SMTP id <0GGL00HZY349BW@jhb-imta.mweb.co.za> for freebsd-questions@FreeBSD.ORG; Mon, 16 Jul 2001 22:48:14 +0200 (GMT-2) Date: Mon, 16 Jul 2001 22:49:43 +0200 From: Gideon Subject: Bandwidth limiting with a bridge (Kernel panics and resets) To: freebsd-questions@FreeBSD.ORG Message-id: <001d01c10e39$39b87840$020101c8@Liquidsoul.my.domain> MIME-version: 1.0 X-Mailer: Microsoft Outlook Express 4.72.3110.1 Content-type: multipart/alternative; boundary="----=_NextPart_000_0008_01C10E49.9AD90580" X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 X-Priority: 3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0008_01C10E49.9AD90580 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I've setup a bridge with network cards ed0 and ed2 . ed2 is the network = card connected to the cisco router and ed0 is the network card connected = to the rest of the lan . the bridge is working perfectly but i need to = cap the bandwidth certain clients are getting from the router .=20 I tried these two rules :=20 $fwcmd add pipe 1 ip from any to $fwcmd add pipe 2 ip from to any $fwcmd pipe 1 config bw 64Kbit/s queue 10Kbytes $fwcmd pipe 2 config bw 64Kbit/s queue 10Kbytes the limiting works finewith these four rules . BUT .. when i ping a = clientip from the cisco router's side the kernel panics and reboots . Also as far as i can c that rule is bypassable by the clients all they = need to do is put the cisco in as a gateway and not the bridge . Any1 maybe know whots wrong and maybe how to fix it ? I've tried all sorts of rules but they end up either rebooting the = system or just not working at all .=20 ------=_NextPart_000_0008_01C10E49.9AD90580 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I've setup a bridge with network = cards ed0 and=20 ed2 . ed2 is the network card connected to the cisco router and ed0 is = the=20 network card connected to the rest of the lan . the bridge is working = perfectly=20 but i need to cap the bandwidth certain clients are getting from the = router .=20
I tried these two rules : =
$fwcmd add pipe 1 ip from any to=20 <clientip>
$fwcmd add pipe 2 ip from = <clientip> to=20 any
$fwcmd pipe 1 config bw 64Kbit/s = queue=20 10Kbytes
$fwcmd pipe 2 config bw 64Kbit/s = queue=20 10Kbytes
the limiting works finewith these = four rules .=20 BUT .. when i ping a clientip from the cisco router's side the kernel = panics and=20 reboots .
Also as far as i can c that rule is = bypassable=20 by the clients all they need to do is put the cisco in as a gateway and = not the=20 bridge .
Any1 maybe know whots wrong and = maybe how to fix=20 it ?
I've tried all sorts of rules but = they end up=20 either rebooting the system or just not working at all .=20
------=_NextPart_000_0008_01C10E49.9AD90580-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 14:23: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nvnsvch.org (nvnsvch.org [205.201.58.103]) by hub.freebsd.org (Postfix) with ESMTP id 71A5437B406 for ; Mon, 16 Jul 2001 14:22:56 -0700 (PDT) (envelope-from gwen@nvnsvch.org) Received: (from gwen@localhost) by nvnsvch.org (8.9.2/8.9.3) id RAA44791 for freebsd-questions@FreeBSD.ORG; Mon, 16 Jul 2001 17:26:25 -0400 (EDT) (envelope-from gwen) Date: Mon, 16 Jul 2001 17:26:25 -0400 From: Gwendolyn To: freebsd-questions@FreeBSD.ORG Subject: Re: ARRGH Netscape stinks! Message-ID: <20010716172625.B44718@nvnsvch.org> References: <20010716090154.C1384@sjt-u10.cisco.com> <20010716102010.A19358@acadia.ne.mediaone.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0us In-Reply-To: <20010716102010.A19358@acadia.ne.mediaone.net>; from leblanc+freebsd@acadia.ne.mediaone.net on Mon, Jul 16, 2001 at 10:20:11AM -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 * Louis LeBlanc (leblanc+freebsd@acadia.ne.mediaone.net) [010716 10:24]: > > Maybe the FreeBSD community should get together and define the > 'perfect' web client? Then maybe someone would actually write one for Dangerous, since my answer would be "w3m on an xterm, lynx remotely". :) -- gwen. Systems Adminstrator, pair Networks, Inc. http://www.gw3n.com/ same bloody difference though; one long, slightly-varying season & millions of morons who think life revolves around juice bars & jogging on fault lines -- Hyper Jeff, on Seattle and San Francisco To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 14:26:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nvnsvch.org (nvnsvch.org [205.201.58.103]) by hub.freebsd.org (Postfix) with ESMTP id DDF8037B406 for ; Mon, 16 Jul 2001 14:26:38 -0700 (PDT) (envelope-from gwen@nvnsvch.org) Received: (from gwen@localhost) by nvnsvch.org (8.9.2/8.9.3) id RAA44819 for freebsd-questions@FreeBSD.ORG; Mon, 16 Jul 2001 17:30:17 -0400 (EDT) (envelope-from gwen) Date: Mon, 16 Jul 2001 17:30:17 -0400 From: Gwendolyn To: freebsd-questions@FreeBSD.ORG Subject: Re: ifconfig question Message-ID: <20010716173017.C44718@nvnsvch.org> References: <20010716152941.A48484@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0us In-Reply-To: <20010716152941.A48484@dogma.freebsd-uk.eu.org>; from jcm@FreeBSD-uk.eu.org on Mon, Jul 16, 2001 at 03:29:41PM +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 Make sure you're doing a "route flush" before running dhclient. I don't remember if that was my error message, but I do remember that causing me many problems when I was using dhclient. -- gwen. Systems Adminstrator, pair Networks, Inc. http://www.gw3n.com/ same bloody difference though; one long, slightly-varying season & millions of morons who think life revolves around juice bars & jogging on fault lines -- Hyper Jeff, on Seattle and San Francisco * j mckitrick (jcm@FreeBSD-uk.eu.org) [010716 10:34]: > > Sorry for the simple question, but I'm new to ethernets... > > root:~# dhclient ed0 > ifconfig: ioctl (SIOCDIFADDR): Can't assign requested address > dhclient: New IP Address(ed0): 10.100.20.163 > dhclient: New Subnet Mask (ed0): 255.255.254.0 > dhclient: New Broadcast Address(ed0): 10.100.21.255 > dhclient: New Routers: 10.100.20.1 > > > I read the manpage on netintro and dhclient, but I couldn't figure it out. > Is the ifconfig message an error? My connection seems to be working fine. > > jcm > -- > o-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-o > | ~~~~~~~~~~~~ Jonathon McKitrick ~~~~~~~~~~~~~ | > | "I prefer the term 'Artificial Person' myself." | > o-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-o > > > 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 16 14:35:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from out5.mx.nwbl.wi.voyager.net (out5.mx.nwbl.wi.voyager.net [169.207.2.77]) by hub.freebsd.org (Postfix) with ESMTP id 1B34737B410 for ; Mon, 16 Jul 2001 14:35:56 -0700 (PDT) (envelope-from dpoland@execpc.com) Received: from earth.execpc.com (dpoland@earth.execpc.com [169.207.16.1]) by out5.mx.nwbl.wi.voyager.net (8.11.1/8.11.1) with ESMTP id f6GLf0Z87342; Mon, 16 Jul 2001 16:41:00 -0500 (CDT) Received: (from dpoland@localhost) by earth.execpc.com (8.9.0) id QAA20945; Mon, 16 Jul 2001 16:35:54 -0500 (CDT) Date: Mon, 16 Jul 2001 16:35:54 -0500 From: Doug Poland To: Jonathan Chen Cc: Doug Poland , questions@FreeBSD.ORG Subject: Re: XFree86 4.0.1 -- i810e video woes Message-ID: <20010716163553.A19291@polands.org> References: <20010716103859.A12947@polands.org> <20010717091401.A72577@itouchnz.itouch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3us In-Reply-To: <20010717091401.A72577@itouchnz.itouch> Sender: owner-freebsd-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 17, 2001 at 09:14:01AM +1200, Jonathan Chen wrote: > On Mon, Jul 16, 2001 at 10:39:00AM -0500, Doug Poland wrote: > > [..] > > It did make me a XF86Config.new file, however. > > In it, I made sure the following was set.. > > > > Section "Device" > > Identifier "Intel i810" > > Driver "i810" > > EndSection > > > > Under 4.1.0 (which is the latest), a working config reads: > > Section "Device" > Identifier "i810" > Driver "i810" > VideoRam 16384 > Option "NoDDC" > EndSection > > -- > Jonathan Chen > That did it! Many thanks!! -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 14:40:16 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 64CAF37B403 for ; Mon, 16 Jul 2001 14:40:10 -0700 (PDT) (envelope-from tony@camel.kdsi.net) Received: from camel.kdsi.net (leepcD-240.sub-d.lee.net [208.205.127.240]) (authenticated (0 bits)) by camel.kdsi.net (8.12.0.Beta10/8.12.0.Beta10) with ESMTP id f6GM2Mkj034806; Mon, 16 Jul 2001 17:02:23 -0500 (CDT) Message-ID: <3B535EFF.B735DBF2@camel.kdsi.net> Date: Mon, 16 Jul 2001 16:39:11 -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: abram olson Cc: freebsd-questions@FreeBSD.ORG Subject: Re: incorrect memort amount reported? References: <20010716212509.4613.qmail@web13503.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 abram olson wrote: > > awesome. I'll give it a try. Thanks Tony. > > SO, this : 384*1024 > tells the kernel that the physical memory is between > 384 and 1024M? No, the MAXMEM option expects the argument to be in kilobytes, so by multiplying the megabytes of memory times 1024 you get the kilobytes of memory. (It's not a range.) Check the LINT file in the conf directory for more information about the option. > > Abe > --- Tony Wells wrote: > > > > You can make sure all your memory gets used by > > providing a hint to the > > kernel. Add the line: > > > > options MAXMEM="(384*1024)" > > > > to your kernel config, and re-compile the kernel. > > > > > > abram olson wrote: > > > > > > I have 384M of physical memory. > > > > > > After I updated to 4.3-stable gkrellm reports only > > 326 > > > although dmesg reports: > > > real memory = 402571264 (393136K bytes) > > > avail memory = 387108864 (378036K bytes) > > > > > > I understand that this may be a problem with > > gkrellm > > > but it reported ther correct amount of memory > > previous > > > to my updating to 4.3-stable. > > > > > > I'm a newbie what can I say? > > > > > > Abe > > > > > > ===== > > > Jesus saves. > > > Allah forgives, > > > Cthulu thinks you'd make a nice sandwich. > > > ------------------------------------------ > > > See my digital art at: > > > > > > http://www.foramenmagnum.net/images.html > > > > > > __________________________________________________ > > > 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 > > ===== > Jesus saves. > Allah forgives, > Cthulu thinks you'd make a nice sandwich. > ------------------------------------------ > See my digital art at: > > http://www.foramenmagnum.net/images.html > > __________________________________________________ > 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 16 14:46:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc25.worldnet.att.net (mtiwmhc25.worldnet.att.net [204.127.131.50]) by hub.freebsd.org (Postfix) with ESMTP id AF04537B401 for ; Mon, 16 Jul 2001 14:46:47 -0700 (PDT) (envelope-from parv@worldnet.att.net) Received: from worldnet.att.net ([32.100.199.58]) by mtiwmhc25.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010716214646.MRUC5127.mtiwmhc25.worldnet.att.net@worldnet.att.net>; Mon, 16 Jul 2001 21:46:46 +0000 Received: by worldnet.att.net (Postfix, from userid 1001) id C912750B93; Mon, 16 Jul 2001 17:50:43 -0400 (EDT) Date: Mon, 16 Jul 2001 17:50:43 -0400 From: parv To: Gwendolyn Cc: freebsd-questions@FreeBSD.ORG Subject: w3m ... ok, and lynx (was Re: ARRGH Netscape stinks!) Message-ID: <20010716175043.A21573@moo.holy.cow> Mail-Followup-To: Gwendolyn , freebsd-questions@FreeBSD.ORG References: <20010716090154.C1384@sjt-u10.cisco.com> <20010716102010.A19358@acadia.ne.mediaone.net> <20010716172625.B44718@nvnsvch.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010716172625.B44718@nvnsvch.org>; from gwen@nvnsvch.org on Mon, Jul 16, 2001 at 05:26:25PM -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 Jul 16 17:41, i got this from Gwendolyn... > > Dangerous, ... not to me... > ...since my answer would be "w3m on an xterm, lynx remotely". just wondering ... why would you prefer lynx over w3m, for remote usage, given both were available? i must admit i haven't used lynx in about 1-2 year(s) since switching to w3m. -- 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 16 14:52:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from draco.over-yonder.net (draco.over-yonder.net [198.78.58.61]) by hub.freebsd.org (Postfix) with ESMTP id 27EEB37B401 for ; Mon, 16 Jul 2001 14:52:31 -0700 (PDT) (envelope-from gh@over-yonder.net) Received: by draco.over-yonder.net (Postfix, from userid 1012) id B9E6562D0B; Mon, 16 Jul 2001 16:52:30 -0500 (CDT) Date: Mon, 16 Jul 2001 16:52:30 -0500 From: GH To: Joseph Garcia Cc: questions@freebsd.org Subject: Re: How do I filer Email or mbox File? Message-ID: <20010716165230.C21416@over-yonder.net> References: <20010711113051.S16127-100000@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010711113051.S16127-100000@localhost>; from bear@buug.homeip.net on Wed, Jul 11, 2001 at 11:41:34AM -0700 X-OS: FreeBSD Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jul 11, 2001 at 11:41:34AM -0700, some SMTP stream spewed forth: > Hey all! > > I have been using procmail to filter my incoming email using some rules > that I found on www.freebsddiary.org website. So far the rules work > perfectly for incoming mail. Although, I have email in my mbox file that > I want certain email extracted and put into a specific folder. I thought > that maybe creating the rule in my .procmailrc and cat'ing the mbox file > through procmail would do the trick, but it didn't. So what would be the > right way to filter out the email from my box file into another file? > Check the man page for procmail. formail -s procmail < mbox > TIA, > > Joey gh -- > What, no one sings along with Ricky Martin anymore? My kid sister does (but then, she prefers pico to vi ...) -- Suresh Ramasubramanian, alt.sysadmin.recovery To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 15: 3:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from front3m.grolier.fr (front3m.grolier.fr [195.36.216.53]) by hub.freebsd.org (Postfix) with ESMTP id ADDAD37B405 for ; Mon, 16 Jul 2001 15:03:11 -0700 (PDT) (envelope-from contact@sea-river-news.com) Received: from bruno (213-44-201-177.rsv.club-internet.fr [213.44.201.177]) by front3m.grolier.fr (8.9.3/No_Relay+No_Spam_MGC990224) with SMTP id AAA19101 for ; Tue, 17 Jul 2001 00:03:06 +0200 (MET DST) Message-Id: <200107162203.AAA19101@front3m.grolier.fr> Reply-To: "Sea-River-news" From: "Sea-River-news" To: "" Organization: X-Priority: 3 X-MSMail-Priority: Normal Subject: Sea-River Mime-Version: 1.0 Content-Type: text/html; charset="iso-8859-1" Date: Tue, 17 Jul 2001 00:04:39 +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 Untitled Document

Bonjour, vous aimez la pêche et le milieu aquatique ?
Hi, you like the fishing and the environment ?

Gratuit, chaque semaine en français : La Lettre de Sea-River

Gratuit, chaque mois : La Lettre européenne de Sea-River

Free, every month : The Sea-River's European Letter

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 15: 8:32 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 243A037B40F for ; Mon, 16 Jul 2001 15:08:23 -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 f6GM6Sn85839; Mon, 16 Jul 2001 19:06:29 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Mon, 16 Jul 2001 19:06:28 -0300 (ART) From: Fernando Gleiser To: matteotti Cc: Subject: Re: No card in database for "(null)"("(null)") In-Reply-To: <3B535650.992448CB@bluewin.ch> Message-ID: <20010716190125.N85138-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 I have the same problem with my laptop. I have found the following workaround to make the card work: 1. boot with the card inserted. 2. When the message "No card in database" appears, remove the card. 3. shutdown and power off. 4. insert the card 5. power on and boot. FreeBSD should recognice the card now (at least in my laptop it does). I dont know why this happens, or why the workaround works, but this solves the problem. Hope this helps. Fer On Mon, 16 Jul 2001, matteotti wrote: > I posted this message already once unfortunately from a misconfigured > machine. So no answers could get through. This time it should be > possible to answer. > I just repeat my previous message once more. Sorry ! > > Hello, > I have installed FreeBSD-4.3-RELEASE on an IBM ThinkPAD A22m. I run into > > problems with PCMCIA card configuration. > Inserting a card results in the following message: > > 'No card in database for "(null)"("(null)")' > I was playing around with the PCMCIA support entries in the kernel > configuration file: > > eg. > > device pcic0 at isa ? irq 10 port 0x3e0 iomem 0xd8000 > > and many more without success . > > > My modem card (Billionton WorldTravellor) and ethernet card (Apollo) > are both listed in /etc/defaults/pccard.conf and I copied the > corresponding entries to /etc/pccard.conf. > > I configured the card already on an IBM ThinkPAD i1200 with sucess. > > I' d be very thankful for any suggestion . > > Best regards . C. > > > 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 16 15:24:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from echonyc.com (echonyc.com [198.67.15.2]) by hub.freebsd.org (Postfix) with ESMTP id 88CB837B403 for ; Mon, 16 Jul 2001 15:24:44 -0700 (PDT) (envelope-from suleyman@echonyc.com) Received: from localhost (suleyman@localhost) by echonyc.com (8.11.4/8.11.4) with ESMTP id f6GMOfl27466; Mon, 16 Jul 2001 18:24:41 -0400 (EDT) Date: Mon, 16 Jul 2001 18:24:41 -0400 (EDT) From: Ken Seggerman To: Christoph Sold Cc: Subject: Re: can't ping second NIC on dual-homed PC In-Reply-To: <3B52EEAD.51398657@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 > Is an ipv4 address assigned to the second NIC? Yes. When I ping the second NIC by its IPv4 adderss there is no response. When I ping6 it by its IPv6 address it responds, leading me to believe that I have a software or configuration problem here, rather than a hardware problem. Nevertheless, I plan to swap addresses and see what happens. Thank you for your reply. Ken Seggerman suleyman@echonyc.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 16 15:28:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web9406.mail.yahoo.com (web9406.mail.yahoo.com [216.136.129.22]) by hub.freebsd.org (Postfix) with SMTP id E7D8A37B403 for ; Mon, 16 Jul 2001 15:28:17 -0700 (PDT) (envelope-from eric_boucher60@yahoo.com) Message-ID: <20010716222817.82828.qmail@web9406.mail.yahoo.com> Received: from [207.164.184.163] by web9406.mail.yahoo.com via HTTP; Mon, 16 Jul 2001 15:28:17 PDT Date: Mon, 16 Jul 2001 15:28:17 -0700 (PDT) From: Eric Boucher Subject: Giving some restriction to some user To: FreeBSD MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi everyone, I wanted to know if there is a way to give some user access to read, write or execute some files even if these users are not in the same group as mine. I heard that there is something like this on AIX machines, a program called acl???? or something like that. The person told me that there is a file which map the users and the permissions. I little bit like in windows, you can personalize which one has the permission to do what. Does somebody knows what I want to do and how to do it? Thanks Eric Boucher __________________________________________________ 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 16 15:28:51 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 6840A37B401 for ; Mon, 16 Jul 2001 15:28:45 -0700 (PDT) (envelope-from dennywhite@yahoo.com) Received: from dhcp-150-81.bilcpe.cableone.net (HELO hal) (24.116.53.150) by smtp.mail.vip.sc5.yahoo.com with SMTP; 16 Jul 2001 22:28:45 -0000 X-Apparently-From: Message-ID: <001b01c10e46$ac9c2b60$6601a8c0@hal> From: "denny white" To: Subject: DAD detected duplicate IPv6 address Date: Mon, 16 Jul 2001 17:28:21 -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 How do I fix this? Apparently, IPv6 is trying to use an address that's already being used. Here are the parts from dmesg & ifconfig that concern the problem: ------------------------------------------------------------------------- ed0 at port 0x300-0x31f irq 3 slot 0 on pccard0 ed0: address 00:e0:98:8a:a1:fc, type Linksys (16 bit) ed0: DAD detected duplicate IPv6 address fe80:000a::02e0:98ff:fe8a:a1fc:1 NS, 0 NA ed0: DAD complete for fe80:000a::02e0:98ff:fe8a:a1fc - duplicate found ed0: manual intervention required ------------------------------------------------------------------------- ed0: flags=8843 mtu 1500 inet6 fe80::2e0:98ff:fe8a:a1fc%ed0 prefixlen 64 duplicated scopeid 0xa inet 192.168.1.100 netmask 0xffffff00 broadcast 192.168.1.255 ether 00:e0:98:8a:a1:fc _________________________________________________________ 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 16 15:32:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web12004.mail.yahoo.com (web12004.mail.yahoo.com [216.136.172.212]) by hub.freebsd.org (Postfix) with SMTP id BE7E337B401 for ; Mon, 16 Jul 2001 15:32:53 -0700 (PDT) (envelope-from bsd2000au@yahoo.com.au) Message-ID: <20010716223253.82072.qmail@web12004.mail.yahoo.com> Received: from [61.9.188.7] by web12004.mail.yahoo.com via HTTP; Tue, 17 Jul 2001 08:32:53 EST Date: Tue, 17 Jul 2001 08:32:53 +1000 (EST) From: =?iso-8859-1?q?Keith=20Spencer?= Subject: what "set device" in PPP to accept dialins? To: fbsd 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 good fbsd peoples, I am still (really slow learner) trying to get my machine to accept dialins...it ain't! This modem picks up but the server does nothing after that. It is also an ADSL gateway machine (external adsl modem) so the default: has a bunch of stuff including set device pppoe:fxp0 etc etc... I am wondering if in the tty section for dialins I need to also override the default and do set device cuaa0 ???? Am I on the right track. I am stumped. Thanks Keith Spencer _____________________________________________________________________________ http://messenger.yahoo.com.au - Yahoo! Messenger - Voice chat, mail alerts, stock quotes and favourite news and lots more! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 15:34: 8 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 ADE1B37B405 for ; Mon, 16 Jul 2001 15:34:03 -0700 (PDT) (envelope-from elitetek@tekrealm.net) Received: (from elitetek@localhost) by freebsd.tekrealm.net (8.11.4/8.11.3) id f6GMY2m91915 for freebsd-questions@freebsd.org; Mon, 16 Jul 2001 15:34:02 -0700 (PDT) (envelope-from elitetek@tekrealm.net) Date: Mon, 16 Jul 2001 15:34:02 -0700 From: Andrew Stuart To: freebsd-questions@freebsd.org Subject: Amavis. Message-ID: <20010716153402.A91864@freebsd.tekrealm.net> Reply-To: elitetek@tekrealm.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 hmm, it apears my amavis install decided to go belly up about 2 hours ago. I see warnings locally for about 1000 emails it complained were/are infected. Basicly, I am trying to find out if it flooded the list, or pplz with messages about the virus. If this did create a flood, I am sorry. I am not sure what made it go belly up yet, but hope to find out after work, for now it is turned off. -- Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 15:37: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (dav4.law15.hotmail.com [64.4.22.108]) by hub.freebsd.org (Postfix) with ESMTP id 30CC337B401 for ; Mon, 16 Jul 2001 15:37:06 -0700 (PDT) (envelope-from want_2_learn_freebsd@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 16 Jul 2001 15:37:06 -0700 X-Originating-IP: [209.144.200.72] From: "doug" To: Subject: Microsoft host names Date: Mon, 16 Jul 2001 15:36:57 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Message-ID: X-OriginalArrivalTime: 16 Jul 2001 22:37:06.0006 (UTC) FILETIME=[D7433F60:01C10E47] Sender: owner-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 a freebsd box as a SSH gateway to VNC running on our windows computers in our lan. I want this to work like: ssh -L 5900:microhost:5900 mybsdbox.com <-- but this don't work. I have to do this: ssh -L 5900:10.4.0.189:5900 mybsdbox.com <--this is a pain in ass but does work. Now, host file won't work cuz we use dhcp. I have samba on the box, but that lets the windows computers use computer name of bsd box, not other way around. Any help would be appreciated! Any hints? Doug. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 15:57:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kobold.compt.com (TBextgw.compt.com [209.115.146.18]) by hub.freebsd.org (Postfix) with ESMTP id 8150737B407 for ; Mon, 16 Jul 2001 15:57:26 -0700 (PDT) (envelope-from klaus@kobold.compt.com) Date: Mon, 16 Jul 2001 18:57:21 -0400 From: Klaus Steden To: Gabriel Ambuehl Cc: questions@freebsd.org Subject: Re: popen() with bidirectional pipes? Message-ID: <20010716185721.C73359@cthulu.compt.com> References: <64111861237.20010716185355@buz.ch> <20010716160341.S73359@cthulu.compt.com> <194127057398.20010716230711@buz.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <194127057398.20010716230711@buz.ch>; from gabriel_ambuehl@buz.ch on Mon, Jul 16, 2001 at 11:07:11PM +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 > > Hello Klaus, > > Monday, July 16, 2001, 10:03:41 PM, you wrote: > > > popen() doesn't do bi-directional communication. Pipes (in the > > POSIX spec) only work in one direction. > > What about: > Since popen() is now implemented using a bidirectional pipe, the > type argument may request a bidirectional data flow. > The type argument is a pointer to a null-terminated string which > must be > `r' for reading, `w' for writing, or `r+' for reading and > writing. > I really hope you weren't the person to ask the question in the first place since I spent time writing both the first reply and this one to a question that could have been answered by R-ingTFM in the first place. However ... that said ... bi-directional pipes may exist on FreeBSD, but they aren't a guarantee on any other *nix flavour. Hence, my suggestion to try socketpair(), which is bi-directional by design. If the author intends to port outside FreeBSD, then he's stuck using either socketpair() or a pair of pipe() calls. From the online POSIX reference manual page for popen() ... -- cut -- The mode argument to popen() is a string that specifies I/O mode: 1.If mode is r, when the child process is started its file descriptor STDOUT_FILENO will be the writable end of the pipe, and the file descriptor fileno(stream) in the calling process, where stream is the stream pointer returned by popen(), will be the readable end of the pipe. 2.If mode is w, when the child process is started its file descriptor STDIN_FILENO will be the readable end of the pipe, and the file descriptor fileno(stream) in the calling process, where stream is the stream pointer returned by popen(), will be the writable end of the pipe. 3.If mode is any other value, the result is undefined. -- cut -- (http://www.opengroup.org/onlinepubs/007908799/xsh/popen.html) Using vendor-supplied extras that fall outside the bounds of the spec, while convenient, usually result in poor portability. Poor portability, IMO, is a hallmark of bad programming. To portably create an IPC channel with a single function call, you must use socketpair(). A Unix-domain socket offers similar functionality as a bi-directional named pipe. cheers, Klaus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 16:20:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from quantum.nitronet.net (www.ptkeissey.org [12.108.53.95]) by hub.freebsd.org (Postfix) with SMTP id D033B37B401 for ; Mon, 16 Jul 2001 16:20:07 -0700 (PDT) (envelope-from anonymous@quantum.nitronet.net) Received: (qmail 1108 invoked by uid 99); 16 Jul 2001 23:17:05 -0000 Date: 16 Jul 2001 23:17:05 -0000 Message-ID: <20010716231705.1107.qmail@quantum.nitronet.net> From: "slagger" To: freebsd-questions@FreeBSD.ORG Cc: Subject: natd MIME-Version: 1.0 X-Mailer: DotComEmail by DotComEmail (www.dotcomemail.com) 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 Hi, i have a network which the server is freebsd and 2 client computer which are in windows, i configured natd for sharing internet like u say in the handbook, my ethernet card is also set right, but it doesnt work. I cant ping the server from the clients and when i ping a client from the server it tell me something like --> natd: failed to write packet back(Host is down). I know it cant be the hub or the cable that are broken because when my server is in windows, internet sharing, file sharing and etc... is working right. What could it be? Pls Msg me back. Thank You in advance. ______________________________________________________________________ Get Your Own Private, Free Email Account at http://www.dotcomemail.com Now With Over 1,500 Com, Net, and Org Domains to Choose From! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 16:50:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nvnsvch.org (nvnsvch.org [205.201.58.103]) by hub.freebsd.org (Postfix) with ESMTP id EF57437B401 for ; Mon, 16 Jul 2001 16:50:19 -0700 (PDT) (envelope-from gwen@nvnsvch.org) Received: (from gwen@localhost) by nvnsvch.org (8.9.2/8.9.3) id TAA45244 for freebsd-questions@FreeBSD.ORG; Mon, 16 Jul 2001 19:53:59 -0400 (EDT) (envelope-from gwen) Date: Mon, 16 Jul 2001 19:53:59 -0400 From: Gwendolyn To: freebsd-questions@FreeBSD.ORG Subject: Re: w3m ... ok, and lynx (was Re: ARRGH Netscape stinks!) Message-ID: <20010716195359.A45217@nvnsvch.org> References: <20010716090154.C1384@sjt-u10.cisco.com> <20010716102010.A19358@acadia.ne.mediaone.net> <20010716172625.B44718@nvnsvch.org> <20010716175043.A21573@moo.holy.cow> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0us In-Reply-To: <20010716175043.A21573@moo.holy.cow>; from parv_@yahoo.com on Mon, Jul 16, 2001 at 05:50:43PM -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 * parv (parv_@yahoo.com) [010716 17:50]: > > just wondering ... why would you prefer lynx over w3m, for remote > usage, given both were available? I'm generally using screen when connected remotely, and for some reason I (and a friend of mine) have formatting problems when using w3m in screen windows. I'm not sure if that's a result of the version of w3m or screen that I'm using on my home system, but right now it's just not working. It doesn't phase me too much, since I ssh -X anyway... > i must admit i haven't used lynx in about 1-2 year(s) since switching to > w3m. I stopped using lynx until they started patching up their security holes again... now I'll use it when on remote systems or work systems (which don't often have w3m installed... yet). -- gwen. Systems Adminstrator, pair Networks, Inc. http://www.gw3n.com/ same bloody difference though; one long, slightly-varying season & millions of morons who think life revolves around juice bars & jogging on fault lines -- Hyper Jeff, on Seattle and San Francisco To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 17:31:30 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 5A97437B408 for ; Mon, 16 Jul 2001 17:31:26 -0700 (PDT) (envelope-from hornback@wireco.net) Received: (qmail 22409 invoked by uid 0); 17 Jul 2001 00:28:38 -0000 Received: from unknown (HELO tomcat) (216.145.85.248) by mounet.com with SMTP; 17 Jul 2001 00:28:38 -0000 From: "Andrew C. Hornback" To: , Subject: RE: Firewall hardware spec Date: Mon, 16 Jul 2001 20:23:34 -0400 Message-ID: <013001c10e56$b73d2aa0$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 In-Reply-To: <86ofqli75x.fsf@pan.ehsrealtime.com> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Wayne Pascoe > Sent: Monday, July 16, 2001 4:56 AM > To: freebsd-questions@freebsd.org > Subject: Firewall hardware spec > > Hi there, > > I've just inherited a strange machine. It was the company Linux > firewall. I am about to turn it into the company FreeBSD firewall, but > I need some opinions on the hardware spec's suitability: > > The hardware is a Pentium 166 on a VERY strange board. There are 7 pci > slots, 5 ISA slots, and 2 what look like VLBus slots. > > The link that is plugging into it is a 2Mb link. > > Will this hardware be suitable as a FreeBSD firewall running ipf ? > > Thanks in advance Wayne, What you've got there sounds like an older HP or Unisys/ALR type motherboard. These generally went into servers, etc. (I have one of similar description on my ALR 6X6) and yes, they make wonderful machines. For a 2MB link, I'd want to have 64-128 Megs of RAM onboard, probably do some caching on a SCSI drive and use PCI 10/100 NICs. From personal experience, FreeBSD supports ISA, EISA, VLB and PCI. So, there shouldn't be any problems involved with using that motherboard/system under FreeBSD for anything you wanted to use it as. --- Andy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 17:54:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from wilma.widomaker.com (wilma.widomaker.com [204.17.220.5]) by hub.freebsd.org (Postfix) with ESMTP id 8E9D237B40B for ; Mon, 16 Jul 2001 17:54:24 -0700 (PDT) (envelope-from shannon@daydream.shannon.net) Received: from [209.96.179.158] (helo=escape.shannon.net) by wilma.widomaker.com with esmtp (Exim 3.22 #2) id 15MJ83-0007W4-00 for freebsd-questions@freebsd.org; Mon, 16 Jul 2001 20:54:23 -0400 Received: from daydream (daydream.shannon.net [192.168.1.10]) by escape.shannon.net (8.11.0/8.8.8) with ESMTP id f6H0cSe28278 for ; Mon, 16 Jul 2001 20:38:28 -0400 (EDT) Received: from shannon by daydream with local (Exim 3.12 #1 (Debian)) id 15MIse-0002Ga-00 for ; Mon, 16 Jul 2001 20:38:28 -0400 Date: Mon, 16 Jul 2001 20:38:28 -0400 From: Charles Shannon Hendrix To: freebsd-questions@FreeBSD.ORG Subject: Re: Please Help - Advise on New system Message-ID: <20010716203826.C8491@widomaker.com> Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <358DD50B8076D311AB9600805FA78BF84CFDFC@PITEXCH1> <3B53373C.E613835B@i-clue.de> <20010717091854.B72577@itouchnz.itouch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010717091854.B72577@itouchnz.itouch> User-Agent: Mutt/1.3.18i Sender: owner-freebsd-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 17, 2001 at 09:18:54AM +1200, Jonathan Chen wrote: > NVidia GeForce chips apprears to be supported in latest version, according > to: They are, and were before that even. The piece that is missing is hardware 3D support. That's being worked on though. -- "Whatever..." -- Kenny Gatdula To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 18:14: 8 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 6F47C37B403 for ; Mon, 16 Jul 2001 18:14:05 -0700 (PDT) (envelope-from graham@bravenet.com) Received: (qmail 54566 invoked from network); 17 Jul 2001 01:19:43 -0000 Received: from unknown (HELO grahamwork) (192.168.30.9) by 0 with SMTP; 17 Jul 2001 01:19:43 -0000 From: "Graham White" To: "FreeBSD-questions" Subject: truss - 'err #35 resources temporarily unavailable' Date: Mon, 16 Jul 2001 18:17:40 -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) 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 When running the truss command on one of our PID's for an apache user this is one of the messages we're getting: read(0x4,0x83c7000,0x2000) ERR#35 'Resource temporarily unavailable Looks like it can't access a memory address, is this correct or is it something else? Are there anyways to investigate this further as to why this is happening? GW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 18:18:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.guest-tek.com (mail.guesttek.com [139.142.1.74]) by hub.freebsd.org (Postfix) with ESMTP id 0EFBB37B409 for ; Mon, 16 Jul 2001 18:15:43 -0700 (PDT) (envelope-from peter@guest-tek.com) Received: from localhost ([139.142.135.115]) by mail.guest-tek.com (8.9.3/8.8.7) with ESMTP id TAA30503 for ; Mon, 16 Jul 2001 19:12:47 -0600 Message-Id: <200107170112.TAA30503@mail.guest-tek.com> Date: Mon, 16 Jul 2001 19:15:42 -0600 Content-Type: text/plain; format=flowed; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v388) From: Peter Warrick To: freebsd-questions@freebsd.org X-Mailer: Apple Mail (2.388) Content-Transfer-Encoding: 7bit Subject: Routing Sender: owner-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.. Hopefully I have sent this to the right place. I sent in a question to freebsd-net earlier but maybe some clarification here might help. I am trying to reproduce the same functionality that I have achieved on Redhat Linux on a BSD box. In Redhat linux if I issue these commands.. ifconfig eth1:0 1.2.3.1 netmask 255.255.255.255 route add -host 1.2.3.4 dev eth1:0 A computer connected to my BSD box (1.2.3.4) can then start pinging 1.2.3.1 immediately. Additionally this does NOT bring the entire 1.2.3.x subnet onto my BSD box and this is what I want. I simply want to route these two IPs together so they can talk to each other. On BSD I have tried the following without success... ifconfig en1 1.2.3.1 netmask 255.255.255.255 broadcast 1.255.255.255 alias route add -host 1.2.3.4 -interface en1 I added the broadcast to the ifconfig line in BSD because I noticed in linux my broadcast was 1.255.255.255 by default and BSD wasn't doing this. Yet this still did not help. Is there anything else someone may suggest that I need to do to get this working? Again I have this working on my Redhat Linux box but not my BSD box and I am kind of under the gun to prove that it can be done in BSD as it has been done in Redhat. Thanks guys for any help. 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 16 18:37: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hp06.postech.ac.kr (smtp.postech.ac.kr [141.223.2.1]) by hub.freebsd.org (Postfix) with ESMTP id A25F437B406 for ; Mon, 16 Jul 2001 18:34:22 -0700 (PDT) (envelope-from lahaye@users.sourceforge.net) Received: from users.sourceforge.net (surfion4.postech.ac.kr [141.223.126.84]) by hp06.postech.ac.kr (8.9.3/8.9.3) with ESMTP id KAA08283 for ; Tue, 17 Jul 2001 10:35:12 +0900 (JST) Message-ID: <3B53966B.EC4B1FEA@users.sourceforge.net> Date: Tue, 17 Jul 2001 10:35:39 +0900 From: "R. Lahaye" Organization: Postech X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Subject: Installed CUPS: now have two versions of lp, lpr, lpq, lprm ? Content-Type: text/plain; charset=x-user-defined 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 added CUPS (Common Unix Printing System) to my 4.3 FreeBSD PC. Thus I now doubled several of the printing comands: /usr/bin/lp & /usr/local/bin/lp /usr/bin/lpq & /usr/local/bin/lpq /usr/bin/lpr & /usr/local/bin/lpr /usr/bin/lprm & /usr/local/bin/lprm The first one is from the Berkeley Distribution, whereas the second one is part of CUPS. By default, my shell takes the first ones in /usr/bin/. Should I delete all the lp* commands in /usr/bin ? Could that do any dammage to other parts of the system? Or should I do nothing and keep my fingers crossed..... What to do? Thanks, Rob. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 18:43: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (mail.pioneernet.net [207.115.64.224]) by hub.freebsd.org (Postfix) with ESMTP id C92EF37B41D for ; Mon, 16 Jul 2001 18:42:25 -0700 (PDT) (envelope-from chip@wiegand.org) Received: from wiegand.org [66.114.152.128] by pioneernet.net with ESMTP (SMTPD32-6.06) id A83B25650110; Mon, 16 Jul 2001 18:43:23 -0700 Message-ID: <3B5399DC.73D3B365@wiegand.org> Date: Mon, 16 Jul 2001 18:50:21 -0700 From: Chip X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: fbsd Subject: this is a first - port with a dependency 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 just installed the port for Blender (in graphics) and it returns the following error: /usr/libexec/ld-elf.so.1: Shared object "libMesaGL.so.14" not found I have installed many ports and never had a problem where it didn't automatically install everything it needs. Is this a problem to report to the porters of blender? -- Regards, Chip Wiegand CRW Computer Services www.wiegand.org chip@wiegand.org <------------------> Web page design Consulting PC Repair <------------------> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 18:44:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from FreeBSD.KuwaitNet.Net (FreeBSD.KuwaitNet.Net [209.85.227.165]) by hub.freebsd.org (Postfix) with ESMTP id D7B8837B413 for ; Mon, 16 Jul 2001 18:41:41 -0700 (PDT) (envelope-from zaid@DashtiTeam.Com) Received: from localhost (zaid@localhost) by FreeBSD.KuwaitNet.Net (8.11.3/8.11.0) with ESMTP id f6H1ff883805 for ; Mon, 16 Jul 2001 18:41:41 -0700 (PDT) Date: Mon, 16 Jul 2001 18:41:41 -0700 (PDT) From: zaid X-X-Sender: To: Subject: freebsd v4,3 KDE dialer Message-ID: <20010716183931.L83678-100000@FreeBSD.KuwaitNet.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 hi i installed the FreeBSD 4.3 when i run internet dialer under KDE it's connecting ok but after 2 second it's will disconnect me why ?? thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 19: 1:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web12006.mail.yahoo.com (web12006.mail.yahoo.com [216.136.172.214]) by hub.freebsd.org (Postfix) with SMTP id A906437B403 for ; Mon, 16 Jul 2001 19:00:58 -0700 (PDT) (envelope-from bsd2000au@yahoo.com.au) Message-ID: <20010717020058.97379.qmail@web12006.mail.yahoo.com> Received: from [61.9.188.7] by web12006.mail.yahoo.com via HTTP; Tue, 17 Jul 2001 12:00:58 EST Date: Tue, 17 Jul 2001 12:00:58 +1000 (EST) From: =?iso-8859-1?q?Keith=20Spencer?= Subject: is set device cuaa0 correct to allow dialins in ppp.conf? To: fbsd 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 am still trying to get my machine to accept dialins. The modem answers but the server doesn't start a session with the remote caller. The machine is also an ADSL pppoe gateway (external adsl modem) and so the the ppp.conf looks like... +++++++++++++++++++++++++++++++++++++++++++++++++ default: # or name_of_service_provider set device PPPoE:fxp0 # replace xl1 with your ethernet device set speed sync set mru 1492 set mtu 1492 # now a patch to fix errant mtu sizes from windoze machines enable tcpmssfixup # some handshake stuff set ctsrts off enable lqr set authname ABCD set authkey EFGHIJ set log Phase tun command # you can add more detailed logging if you wish # set dial # set login # set ifaddr 10.0.0.1/0 10.0.0.2/0 add default HISADDR enable dns # nat enable yes # if you want to enable nat for your local net # Now some stuff for the dialin line set debug phase lcp chat set timeout 0 papchap: set authname ABCD set authkey EFGHIJ # The dialin line dynamic address allocation # the ns machines are listed separated by space...at the moment only one here ttyd0: set device /dev/cuaa0 accept dns set dns 203.56.180.1 set ifaddr 203.56.180.150 203.56.180.17 255.255.255.255 enable proxy +++++++++++++++++++++++++++++ Should I do an overriding... set device cuaa0 in the tty profile???? In ttys I have a line... ttyd0 "/usr/libexec/getty VH57600" dialup on I am lost here. Can't figure it out. thanks Keith _____________________________________________________________________________ http://messenger.yahoo.com.au - Yahoo! Messenger - Voice chat, mail alerts, stock quotes and favourite news and lots more! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 19: 3:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hp06.postech.ac.kr (smtp.postech.ac.kr [141.223.2.1]) by hub.freebsd.org (Postfix) with ESMTP id B822237B409 for ; Mon, 16 Jul 2001 19:01:50 -0700 (PDT) (envelope-from lahaye@users.sourceforge.net) Received: from users.sourceforge.net (surfion4.postech.ac.kr [141.223.126.84]) by hp06.postech.ac.kr (8.9.3/8.9.3) with ESMTP id LAA08687; Tue, 17 Jul 2001 11:00:53 +0900 (JST) Message-ID: <3B539C70.125C1C58@users.sourceforge.net> Date: Tue, 17 Jul 2001 11:01:20 +0900 From: "R. Lahaye" Organization: Postech X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Chip Cc: fbsd Subject: Re: this is a first - port with a dependency problem References: <3B5399DC.73D3B365@wiegand.org> Content-Type: text/plain; charset=x-user-defined Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Chip wrote: > > I just installed the port for Blender (in graphics) and it returns the > following error: > /usr/libexec/ld-elf.so.1: Shared object "libMesaGL.so.14" not found > I have installed many ports and never had a problem where it didn't > automatically > install everything it needs. > Is this a problem to report to the porters of blender? Probably worth reporting to the maintainers of the blender port. You seem to miss the Mesa libraries. Either install the Mesa port (in /usr/ports/graphics/Mesa3) or install the Mesa-3.4.2_1.tgz package. Another problem could be that ldconfig has not been ran with the Mesa libs. I think you could then try: # /sbin/ldconfig -m /usr/X11R6/lib Rob. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 19: 7:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from jhb-proxy.mweb.co.za (jhb-proxy.mweb.co.za [196.2.48.243]) by hub.freebsd.org (Postfix) with ESMTP id BBD5737B40D for ; Mon, 16 Jul 2001 19:07:08 -0700 (PDT) (envelope-from h20soul@mweb.co.za) Received: from Liquidsoul ([196.30.38.182]) by jhb-proxy.mweb.co.za (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) with SMTP id <0GGL003LHHVP30@jhb-proxy.mweb.co.za> for freebsd-questions@FreeBSD.ORG; Tue, 17 Jul 2001 04:07:03 +0200 (GMT-2) Date: Tue, 17 Jul 2001 04:06:16 +0200 From: Gideon Subject: bandwidth limiting with dummynet To: freebsd-questions@FreeBSD.ORG Message-id: <002601c10e65$112e0940$020101c8@Liquidsoul.my.domain> MIME-version: 1.0 X-Mailer: Microsoft Outlook Express 4.72.3110.1 Content-type: text/plain; charset="iso-8859-1" Content-transfer-encoding: 7bit X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 X-Priority: 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 $fwcmd add pipe 1 ip from any to $fwcmd pipe 1 config bw 64Kbit/s queue 10Kbytes the above rule seems to crash my machine when i make connections to the specified ip from the other saide of the bridge .. i have freebsd 4.2 installed on the system any way to maybe fix this ? TIA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 19:29:35 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tmd.df.ru (cr775576-e.rchrd1.on.wave.home.com [24.43.202.49]) by hub.freebsd.org (Postfix) with ESMTP id 5E54937B403 for ; Mon, 16 Jul 2001 19:26:52 -0700 (PDT) (envelope-from tmd@tmd.df.ru) Received: by tmd.df.ru (Postfix, from userid 1000) id CBBC07A4F; Mon, 16 Jul 2001 22:26:45 -0400 (EDT) Date: Mon, 16 Jul 2001 22:26:45 -0400 From: Mark To: freebsd-questions@freebsd.org Subject: how to change SECURELEVEL back? Message-ID: <20010716222645.A19000@tmd.df.ru> Mail-Followup-To: Mark , freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.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 re, how do go about changing securelevel from 2 back to 0 or -1? :) i've changed it using "sysctl" but appears i can't change it back.. reply to e-mail please. thank you in advance! mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 19:36:45 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 3F94C37B406 for ; Mon, 16 Jul 2001 19:34:00 -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 f6H2VY815117; Mon, 16 Jul 2001 19:31:34 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Morsal Roudbay" Cc: "J S" , "Giorgos Keramidas" , Subject: RE: [Re: spammers] Date: Mon, 16 Jul 2001 19:31:34 -0700 Message-ID: <000901c10e68$98d88980$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: <20010716130347.A27119@zigman.2y.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 Morsal Roudbay >Sent: Monday, July 16, 2001 4:04 AM >Ted, >As u say, the ISPs dont bother if they get a single complaint.. that's what >I have experienced... I really dont see why this list cant be closed, feel >free to explain why it would work better open as it is now.. I frankly don't have a preference myself - however I don't run this list. While I could concoct reasons why it is open I really don't know why the list maintainer has chosen it to be open. I do know that managing the servers and this list does create work for somebody, and I wouldn't presume to tell that person how to do their job unless I was prepared to take it over. ;-) Let me point out one thing though - since the list is publically searchable there's nothing preventing a spammer from harvesting lots of juicy e-mail addresses from the archives. While blocking spam from the list does have a certain attraction, it's like sticking a finger in a dike made of Swiss cheese. Just a FYI - I've written plenty of material on various sites on how to block spam, if you want to pursue some of it I can give you the links offline. One thing I've come to the conclusion is that nothing works as well as content filtering. After all, how many legitimate piece of mail do you get that contain the string "This message sent in accordance with the federal regulations (insert ficticious house bill number here)" or containing the word "cum" (is that even a word?) However content filtering is very political to a number of people who don't like the Big Brotherish aspect or are afraid that even the most carefully constructed filtration database will block legitimate mail. When given a choice between constructing a system where the onus is on the users to do something, or the onus is on the administrator to do something, the BSD folks have generally opted for local control over administrative control. This is a paradigm thing and your not going to change it. System V by contrast to BSD has voted for the strong administrative control. So I guess it's no surprise that the BSD mailing lists are set up to where the onus is on the users to block spam if they so choose. Inefficient, perhaps, but there's a certain freedom to that system that isn't present in one where filtering was done at the central mailing host. 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 Mon Jul 16 19:44:36 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 4DE0337B408 for ; Mon, 16 Jul 2001 19:42:50 -0700 (PDT) (envelope-from achornback@worldnet.att.net) Received: from tomcat ([12.93.211.25]) by mtiwmhc21.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with SMTP id <20010717024248.DRJX3208.mtiwmhc21.worldnet.att.net@tomcat>; Tue, 17 Jul 2001 02:42:48 +0000 From: "Andrew C. Hornback" To: "Ted Mittelstaedt" , "Morsal Roudbay" Cc: "J S" , "Giorgos Keramidas" , Subject: RE: [Re: spammers] Date: Mon, 16 Jul 2001 22:35:19 -0400 Message-ID: <000101c10e69$1ebf6820$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 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 In-Reply-To: <000901c10e68$98d88980$1401a8c0@tedm.placo.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 > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Ted > Mittelstaedt > Sent: Monday, July 16, 2001 10:32 PM > To: Morsal Roudbay > Cc: J S; Giorgos Keramidas; freebsd-questions@FreeBSD.ORG > Subject: RE: [Re: spammers] > > >-----Original Message----- > >From: owner-freebsd-questions@FreeBSD.ORG > >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Morsal Roudbay > >Sent: Monday, July 16, 2001 4:04 AM > > >Ted, > >As u say, the ISPs dont bother if they get a single complaint.. > that's what > >I have experienced... I really dont see why this list cant be > closed, feel > >free to explain why it would work better open as it is now.. > > I frankly don't have a preference myself - however I don't run this list. > While I could concoct reasons why it is open I really don't know why the > list maintainer has chosen it to be open. I do know that managing the > servers and this list does create work for somebody, and I wouldn't > presume to tell that person how to do their job unless I was prepared to > take it over. ;-) The easy answer... look at any FreeBSD CD from Wind River. questions@freebsd.org is the official support e-mail address now. To make it a closed e-mail address for subscribers only would be discouraging to newbies that have to ask questions and don't understand what a mailing list is. --- Andy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 20:18:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tao.thought.org (sense-kline-248.oz.net [216.39.168.248]) by hub.freebsd.org (Postfix) with ESMTP id B00F437B40C for ; Mon, 16 Jul 2001 20:18:22 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.11.3/8.11.0) id f6H3FPg34662; Mon, 16 Jul 2001 20:15:25 -0700 (PDT) (envelope-from kline) Date: Mon, 16 Jul 2001 20:15:25 -0700 From: Gary Kline To: Mark Cc: freebsd-questions@FreeBSD.ORG Subject: Re: how to change SECURELEVEL back? Message-ID: <20010716201525.A34642@tao.thought.org> References: <20010716222645.A19000@tmd.df.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20010716222645.A19000@tmd.df.ru>; from mlivingstone@ottawa.com on Mon, Jul 16, 2001 at 10:26:45PM -0400 X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 15 years of service to the Unix community Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jul 16, 2001 at 10:26:45PM -0400, Mark wrote: > > re, > > how do go about changing securelevel from 2 back to 0 or -1? :) i've changed it using "sysctl" but appears i can't > change it back.. > > reply to e-mail please. > Shutdown to signle-user; then reset the value in rc.conf; then ^D back up. gary PS: More on this in s recent Answerman column. -- Gary D. Kline kline@thought.org www.thought.org Public service Unix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 20:24: 5 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 4551037B409 for ; Mon, 16 Jul 2001 20:23:52 -0700 (PDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.11.4/8.11.4) id f6H3NoH19063; Mon, 16 Jul 2001 22:23:50 -0500 (CDT) (envelope-from dan) Date: Mon, 16 Jul 2001 22:23:50 -0500 From: Dan Nelson To: Graham White Cc: FreeBSD-questions Subject: Re: truss - 'err #35 resources temporarily unavailable' Message-ID: <20010716222350.A9032@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 16), Graham White said: > When running the truss command on one of our PID's for an apache user this > is one of the messages we're getting: > > read(0x4,0x83c7000,0x2000) ERR#35 'Resource > temporarily unavailable > > Looks like it can't access a memory address, is this correct or is it > something else? Are there anyways to investigate this further as to > why this is happening? From the read(2) manpage: ERRORS Read(), readv(), and pread() will succeed unless: [EAGAIN] The file was marked for non-blocking I/O, and no data were ready to be read. You're proably using a cgi that uses pthreads; this is normal. -- 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 Mon Jul 16 20:32:10 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 0277437B403 for ; Mon, 16 Jul 2001 20:31:56 -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 D831C13E; Mon, 16 Jul 2001 19:31:49 -0800 (AKDT) Content-Type: text/plain; charset="iso-8859-1" From: Beech Rintoul To: Mark , freebsd-questions@freebsd.org Subject: Re: how to change SECURELEVEL back? Date: Mon, 16 Jul 2001 19:31:49 -0800 X-Mailer: KMail [version 1.2] References: <20010716222645.A19000@tmd.df.ru> In-Reply-To: <20010716222645.A19000@tmd.df.ru> MIME-Version: 1.0 Message-Id: <01071619314900.06671@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 16 July 2001 06:26 pm, Mark wrote: > re, > > how do go about changing securelevel from 2 back to 0 or -1? :) i've > changed it using "sysctl" but appears i can't change it back.. > > reply to e-mail please. > > thank you in advance! > > mark Put the following in /etc/rc.conf and reboot: kern_securelevel_enable="YES" # kernel security level (see init(8)), kern_securelevel="-1" # range: -1..3 ; `-1' is the most insecure 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 16 20:47:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (mail.pioneernet.net [207.115.64.224]) by hub.freebsd.org (Postfix) with ESMTP id 2E2E537B403; Mon, 16 Jul 2001 20:47:07 -0700 (PDT) (envelope-from chip@wiegand.org) Received: from wiegand.org [66.114.152.128] by pioneernet.net with ESMTP (SMTPD32-6.06) id A57246D20114; Mon, 16 Jul 2001 20:48:02 -0700 Message-ID: <3B53B715.4AE6983@wiegand.org> Date: Mon, 16 Jul 2001 20:55:01 -0700 From: Chip X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: "R. Lahaye" Cc: fbsd , freebsd-admin@blender.nl, ports@FreeBSD.org Subject: Re: this is a first - port with a dependency problem References: <3B5399DC.73D3B365@wiegand.org> <3B539C70.125C1C58@users.sourceforge.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 Thanks for the tip. I ran the ldconfig command and it didn't help, so then I went into the ports and installed mesa3. All appeared to install okay, I reran ldconfig again, and blender still results in the same message as original. I will send this message to the port maintainer. -- Chip "R. Lahaye" wrote: > Chip wrote: > > > > I just installed the port for Blender (in graphics) and it returns the > > following error: > > /usr/libexec/ld-elf.so.1: Shared object "libMesaGL.so.14" not found > > I have installed many ports and never had a problem where it didn't > > automatically > > install everything it needs. > > Is this a problem to report to the porters of blender? > > Probably worth reporting to the maintainers of the blender port. > > You seem to miss the Mesa libraries. Either install the Mesa port (in > /usr/ports/graphics/Mesa3) or install the Mesa-3.4.2_1.tgz package. > > Another problem could be that ldconfig has not been ran with the > Mesa libs. I think you could then try: > > # /sbin/ldconfig -m /usr/X11R6/lib > > Rob. -- Regards, -- Chip Wiegand CRW Computer Services www.wiegand.org chip@wiegand.org <------------------> Web page design Consulting PC Repair <------------------> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 20:49:32 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 1E78937B401 for ; Mon, 16 Jul 2001 20:49:27 -0700 (PDT) (envelope-from taylorm@bytecraft.au.com) Received: from pc99101401.bytecraft.au.com (unknown [203.39.118.42]) by wombat.bytecraft.au.com (Postfix) with SMTP id C451A3E9F; Tue, 17 Jul 2001 13:49:24 +1000 (EST) Message-ID: <01db01c10e73$b87cd060$2a7627cb@pc99101401.bytecraft.au.com> Reply-To: "Murray Taylor" From: "Murray Taylor" To: "Marlowe Coley" , Subject: Re: WanIC 405 using X21 interface Date: Tue, 17 Jul 2001 13:51:12 +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 We use the WanIC 405 interface with the X21 connector option just fine for our frame relay (only at 128Kb on copper at present, upgradable to 512k+ on fibre) We selected the X21 model as it seems to be a reasonably common interface to most NTU (csu/dsu etc) models Murray Taylor Project Manager Bytecraft Systems Pty Ltd ph: +61 3 9587 2555 Fax: +61 3 9587 1614 Email: taylorm@bytecraftsystems.com -----Original Message----- From: Marlowe Coley To: freebsd-questions@FreeBSD.ORG Date: Tuesday, 17 July 2001 05:14 >I'm trying to find a csu/dsu vendor that has been proven to work on a 4.2 freebsd system using the WANIC 400 series dual port T1 adapter. I'm looking for csu/dsu vendor and cable requirements. Has anyone brought up a T1 on bsd using this adapter ? > > >--------------------------------------------------------------------------- ----- >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 16 21: 9:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from grover.logicsquad.net (CPE-61-9-135-142.vic.bigpond.net.au [61.9.135.142]) by hub.freebsd.org (Postfix) with SMTP id 4A80037B401 for ; Mon, 16 Jul 2001 21:09:47 -0700 (PDT) (envelope-from paulh@logicsquad.net) Received: (qmail 2437 invoked by uid 65534); 17 Jul 2001 04:09:55 -0000 Received: from 10.0.0.3 (SquirrelMail authenticated user paulh) by grover.logicsquad.net with HTTP; Tue, 17 Jul 2001 13:39:55 +0930 (CST) Message-ID: <2250.10.0.0.3.995342995.squirrel@grover.logicsquad.net> Date: Tue, 17 Jul 2001 13:39:55 +0930 (CST) Subject: Re: is set device cuaa0 correct to allow dialins in ppp.conf? From: "Paul A. Hoadley" To: bsd2000au@yahoo.com.au In-Reply-To: <20010717020058.97379.qmail@web12006.mail.yahoo.com> References: <20010717020058.97379.qmail@web12006.mail.yahoo.com> Cc: freebsd-questions@freebsd.org Reply-To: paulh@logicsquad.net X-Mailer: SquirrelMail (version 1.0.6) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > ttyd0: > set device /dev/cuaa0 > accept dns > set dns 203.56.180.1 > set ifaddr 203.56.180.150 203.56.180.17 > 255.255.255.255 > enable proxy > +++++++++++++++++++++++++++++ > Should I do an overriding... > set device cuaa0 > in the tty profile???? You shouldn't need to. > In ttys I have a line... > ttyd0 "/usr/libexec/getty VH57600" dialup on I don't have an entry 'VH57600' in my /etc/gettytab, but I guess you might. It's not clear whether you have gone the extra steps required here (though you may well have). Have you changed either the default: (or VH57600: in your case) entry in /etc/gettytab to point at something that will fire up /usr/sbin/ppp? It _sounds_ like you haven't. If not, one way of doing it is adding: :pp=/usr/local/bin/ppplogin: to default: (or the entry of your choice) in /etc/gettytab, then creating /usr/local/bin/ppplogin to contain: #!/bin/sh /usr/sbin/ppp -direct ttyd0 (ttyd0 only because that's what you've labelled the section in ppp.conf). > I am lost here. Can't figure it out. thanks If this doesn't nudge you along far enough, I'm happy to be more explicit. It's just not entirely clear what you've already done. -- Paul. mailto:paulh@logicsquad.net mailto:paul.hoadley@student.adelaide.edu.au To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 21:12:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail8.nc.rr.com (fe8.southeast.rr.com [24.93.67.55]) by hub.freebsd.org (Postfix) with ESMTP id A6A4C37B409 for ; Mon, 16 Jul 2001 21:12:22 -0700 (PDT) (envelope-from bts@babbleon.org) Received: from i8k.babbleon.org ([66.26.250.89]) by mail8.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Tue, 17 Jul 2001 00:12:11 -0400 Content-Type: text/plain; charset="iso-8859-1" From: Brian T.Schellenberger To: "R. Lahaye" , Steve Tremblett Subject: Re: ARRGH Netscape stinks! Date: Mon, 16 Jul 2001 18:37:57 -0400 X-Mailer: KMail [version 1.2] Cc: freebsd-questions@FreeBSD.ORG References: <20010716090154.C1384@sjt-u10.cisco.com> <3B52E6FF.FCDBE698@users.sourceforge.net> In-Reply-To: <3B52E6FF.FCDBE698@users.sourceforge.net> MIME-Version: 1.0 Message-Id: <01071618375700.00674@i8k.babbleon.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 mozilla ia better browser, and doesn't gobble memory and all that. I use the native port, but the drawback is that you can't use linux plugins. HOWEVER, it is a worse mail program; what I have now don't is switch to kmail for mail while using mozilla (mostly) to browse. (Sometimes I use konquerer, but mostly I use mozilla.) Konquerer and kmail are part of KDE. Anyway, I recommand using mozilla for browsing and something else for reading mail and news. On Monday 16 July 2001 09:07, R. Lahaye wrote: > Steve Tremblett wrote: > > Is there ANY alternative to Netscape? I'm running Linux Netscape 4.77 > > and I'm fed up with having it freeze or crash every hour. Is the > > native Netscape any better? Is there another alternative? I've tried > > Mozilla, but it crashed on the first site I went to, so I deinstalled > > it. > > > > Any suggestions? (please no jokers suggesting lynx! :) > > Opera ? > > Look for linux-opera-5.0_1.tgz in the packages list. > > Rob. > > 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 16 21:31:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id E4A0737B40D for ; Mon, 16 Jul 2001 21:31:55 -0700 (PDT) (envelope-from panis@mindspring.com) Received: from smui00.slb.mindspring.net (smui00.slb.mindspring.net [199.174.114.20]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with ESMTP id AAA01731 for ; Tue, 17 Jul 2001 00:31:54 -0400 (EDT) From: panis@mindspring.com Received: by smui00.slb.mindspring.net id AAA0000025715; Tue, 17 Jul 2001 00:31:54 -0400 (EDT) Date: Tue, 17 Jul 2001 00:31:54 -0400 To: freebsd-questions@freebsd.org Message-ID: X-Originating-IP: 165.247.19.97 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG auth 4c6299d9 subscribe freebsd-questions panis@mindspring.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 16 21:40:36 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 44D9137B40A for ; Mon, 16 Jul 2001 21:40: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 f6H4eN815443; Mon, 16 Jul 2001 21:40:23 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "User & Ian Patrick Thomas" , "Duke Normandin" <01031149@3web.net> Cc: Subject: RE: Need help with PPP Date: Mon, 16 Jul 2001 21:40:22 -0700 Message-ID: <000b01c10e7a$96e0d300$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: <20010716150156.A13279@localhost> 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 In case you didn't know, Microsoft calls NAT "Windows Internet Sharing" it's an add-on you can download for w98 and it's in 2K Don't know about Xtra Profit though. 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 User & Ian >Patrick Thomas >Sent: Monday, July 16, 2001 12:02 PM >To: Duke Normandin >Cc: freebsd-questions@FreeBSD.ORG >Subject: Re: Need help with PPP > > > Yes, NAT on the WIN box. In this case the FreeBSD box would >need to be >behind the WIN box because the Juno software won't work on the FreeBSD box >(although if you have some spare time and like WINE, the software >may be able to >work in WINE, but we had enough trouble keeping the Juno software working on >vanilla Windows). > >Ian > >As it was put forth by Duke Normandin on Mon, Jul 16, 2001 at >06:28:37AM -0600... >> >> On Sun, Jul 15, 2001 at 09:29:32PM -0400, User & Ian Patrick Thomas wrote: >> > >> > >> > As it was put forth by Gary Kline on Sun, Jul 15, 2001 at >05:51:52PM -0700... >> > > On Sun, Jul 15, 2001 at 07:52:30PM -0400, User & Ian Patrick >Thomas wrote: >> > > > Having been a previous employee with Juno, if you are >trying to use the >> > > > free internet service without their software, it won't work. > Even if you >> > > > are paying for the service, it may still not work. To my >knowledge, the >> > > > Juno service will only work with their software on a Windows >machine. Try >> > > > going with another ISP. >> > > > >> > > >> > > Hm. Here's something I've wondered since trying Juno >> > > at friend's:: would it be possible to use Juno's free >> > > junk service with Windows and have your DOG/W9x system >> > > networked to a FBSD LAN? >> > > >> > > gary >> > > >> > > >> > > -- >> > > Gary D. Kline kline@thought.org www.thought.org >Public service Unix >> > >> > Yes. You would need to use NAT of course. Only problem is >you can pretty much >> > never get on. They have restricted the usage with the free >internet service to customers >> > that they deem are not heavy users. There is no definition or >criteria of what makes up >> > a heavy user, but once you have been given this label, expect to >never be able to get on. >> > >> > Ian >> >> Hi Ian..... >> >> Do you mean NAT on the win9x box, or the FBSD one? I ask because I have a >> similar situation. I'm on a dial-up to Juno and 3Web -- so I'm pooched >> with using their software! I'd like to be able to use my FBSD box on the >> 'net while my win95 is connected. TIA... >> -- >> -duke >> Calgary, Alberta, Canada > >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 16 22: 2:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tao.thought.org (sense-kline-248.oz.net [216.39.168.248]) by hub.freebsd.org (Postfix) with ESMTP id 6901637B40B for ; Mon, 16 Jul 2001 22:02:49 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.11.3/8.11.0) id f6H52Yo34857; Mon, 16 Jul 2001 22:02:34 -0700 (PDT) (envelope-from kline) Date: Mon, 16 Jul 2001 22:02:33 -0700 From: Gary Kline To: Beech Rintoul Cc: Mark , freebsd-questions@FreeBSD.ORG Subject: Re: how to change SECURELEVEL back? Message-ID: <20010716220233.A34831@tao.thought.org> References: <20010716222645.A19000@tmd.df.ru> <01071619314900.06671@galaxy.anchoragerescue.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <01071619314900.06671@galaxy.anchoragerescue.org>; from akbeech@anchoragerescue.org on Mon, Jul 16, 2001 at 07:31:49PM -0800 X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 15 years of service to the Unix community Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jul 16, 2001 at 07:31:49PM -0800, Beech Rintoul wrote: > On Monday 16 July 2001 06:26 pm, Mark wrote: > > re, > > > > how do go about changing securelevel from 2 back to 0 or -1? :) i've > > changed it using "sysctl" but appears i can't change it back.. > > > > reply to e-mail please. > > > > thank you in advance! > > > > mark > > Put the following in /etc/rc.conf and reboot: > > kern_securelevel_enable="YES" # kernel security level (see init(8)), > kern_securelevel="-1" # range: -1..3 ; `-1' is the most insecure > Yeah, this will work if you want to ``reboot'' as you've got to if running DOS .... :) -g -- Gary D. Kline kline@thought.org www.thought.org Public service Unix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 22: 3:38 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 099B537B407 for ; Mon, 16 Jul 2001 22:03:15 -0700 (PDT) (envelope-from agn_nair@yahoo.com) Received: from cc403125-a.jrsycty1.nj.home.com (HELO cc403125a) (65.2.181.122) by smtp.mail.vip.sc5.yahoo.com with SMTP; 17 Jul 2001 05:03:14 -0000 X-Apparently-From: Message-ID: <01a901c10e7d$d0703540$7ab50241@jrsycty1.nj.home.com> From: "A. G. Nair" To: , Subject: FreeBSD and OnTrack DDO Date: Tue, 17 Jul 2001 01:03:16 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_01A4_01C10E5C.43472280" 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_01A4_01C10E5C.43472280 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, I've sent a mail earlier with the same problem but didn't get any = reply... So trying again with a more specific version of the problem. = I'm trying to install FreeBSD 4.3 on my machine (laptop) which has = OnTrack DDO(Dynamic Drive Overlay) installed on the hard drive. I tried = all kinds of combinations at the boot prompt but it always says -- Not ufs Not ufs No /boot/loader The documentation says FreeBSD is compatible with DDO, but I'm unable to = make it work. Also in the archives I've found 2 or 3 questions regarding = this but no answers. So I think, this has to be a bug unless someone can = tell me otherwise.=20 My situation is as described below-- I've a new blank 20GB hard drive installed on my laptop. Since it's = blank and there is no data, I get to re-partition, re-format and play = around with all combinations. I'm trying to get just FreeBSD(nothing = else is in the hard drive except DOS) work with DDO. I need DDO because = my BIOS won't recognize beyond 8.4GB of the hard-drive (I've the latest = version of BIOS installed). I am not going beyond the 1024th cylinder. = The whole FreeBSD partition is well below the 1024 cylinder limit. The = disk geometry reported by FreeBSD fdisk is same as the one reported by = Partition Manager. So no problem there also. Or is there something else? = I also tried Boot-Easy, OS-BS and XOSL as boot manager. No luck. If I remove DDO and boot, FreeBSD sees the full 20GB. So ideally, I = don't need to use DDO if I am using just FreeBSD. But unfortunately I = also need to install Windows on the machine. So I've to find a way to = get FreeBSD to exist with DDO and the documentation says it is = compatible.=20 I've almost given up all hope on making this work. (I tried Red Hat = Linux and I've to tell you, it's much worse than this. It doesn't even = install.) Does anyone have any experience in getting FreeBSD installed = and a working on a hard drive with DDO?? There must be someone out = there, who has worked on this part of the installer.... Maybe He/She can = tell why this is not a bug. Am I missing something??? Please please = reply and let me know. Any suggestions will be a great help...... Thanks in advance, AGNair PS:=20 This is how FreeBSD fdisk looks FDisk Disk name: ad0 Disk Geometry: 2584 cyls/240 Heads/63 Heads =3D 39070080 = Sectors(19077MB) Offset Size(KB) End Name PType = Desc Subtype Flags -63 63 62 - = 6 unused 0 =20 63 7528 15119 ad0s1 2 = fat 6 =20 15120 3084480 6184079 ad0s2 3 = freebsd 165 C 6184080 16442968 39070016 - 6 = unused 0 View of Ranish Partition Manager on the disk is as below: Hard Disk 1 19077 Mbytes[2583 cylinders x 240 heads x 63 sectors ] Using LBA # Type Row File System Type Starting[CHS] = Ending[CHS] Partition Size[KB] 0 MBR Master Boot Record 0x0x1 = 0x0x1 0 1 Pri Unused 0x0x2 = 0x0x63 31 2 Pri 1 DOS FAT-16 0x1x1 = 0x239x63 7,528 3 >Pri 2 FreeBSD, BSD/386 1x0x1 = 408x239x63 3,084,480 4 Pri Unused 409x0x1 = 2583x238x63 16,442,968 ------=_NextPart_000_01A4_01C10E5C.43472280 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi,
 
I've sent a mail earlier with the same problem = but didn't=20 get any reply... So trying again with a more specific version of = the=20 problem. I'm trying to install FreeBSD 4.3 on my machine (laptop) which = has=20 OnTrack DDO(Dynamic Drive Overlay) installed on the hard drive. I tried = all=20 kinds of combinations at the boot prompt but it always says = --
Not ufs
Not ufs
No /boot/loader
 
 
The documentation says FreeBSD is compatible with = DDO, but I'm=20 unable to make it work. Also in the archives I've found 2 or 3 questions = regarding this but no answers. So I think, this has to be a bug = unless=20 someone can tell me otherwise.
 
My situation is as described below--
 
I've a new blank 20GB hard drive installed on my = laptop. Since=20 it's blank and there is no data, I get to re-partition, re-format = and play=20 around with all combinations. I'm trying to get just FreeBSD(nothing = else is in=20 the hard drive except DOS) work with DDO. I need DDO because my = BIOS won't=20 recognize beyond 8.4GB of the hard-drive (I've the latest version = of=20 BIOS installed). I am not going beyond the 1024th cylinder. The = whole=20 FreeBSD partition is well below the 1024 cylinder limit. The disk = geometry=20 reported by FreeBSD fdisk is same as the one reported by Partition = Manager. So=20 no problem there also. Or is there something else? I also tried = Boot-Easy, OS-BS=20 and XOSL as boot manager. No luck.
 
If I remove DDO and boot, FreeBSD sees the full = 20GB. So=20 ideally, I don't need to use DDO if I am using just FreeBSD. But=20 unfortunately I also need to install Windows on the machine. So I've to = find a=20 way to get FreeBSD to exist with DDO and the documentation says it is=20 compatible.
 
I've almost given up all hope on making this work. = (I tried=20 Red Hat Linux and I've to tell you, it's much worse than this. It = doesn't even=20 install.) Does anyone have any experience in getting FreeBSD installed = and a=20 working on a hard drive with DDO?? There must be someone out = there,=20 who has worked on this part of the installer.... Maybe He/She can tell = why this=20 is not a bug. Am I missing something??? Please please reply and let = me=20 know. Any suggestions will be a great help......
 
Thanks in advance,
AGNair
 
PS:
This is how FreeBSD fdisk looks
 
FDisk
Disk name: ad0
Disk Geometry: 2584 cyls/240 Heads/63 Heads =3D 39070080=20 Sectors(19077MB)
 
Offset        =20 Size(KB)       End   =20              = Name      PType    =20 Desc           =20 Subtype    Flags
-63          &= nbsp;  =20 63            = ;        62   &nbs= p;            = ; =20 -       =20        =20 6            =   unused          = 0            =    =20    
63          &n= bsp;    7528       = ;        15119   &= nbsp;      =20 ad0s1      =20 2            =   fat         &nbs= p;        =20 6            =
15120       =20 3084480        6184079  = ;    =20 ad0s2       3    &= nbsp;        =20 freebsd          165&nb= sp;           C
6184080    16442968   =20 39070016      -    &nbs= p;           =20 6            =   unused         &= nbsp;0
 
 
View of Ranish Partition Manager on the disk is as = below:
 
Hard Disk 1 19077 Mbytes[2583 cylinders x 240 heads x 63 = sectors=20 ]
Using LBA
 
#    Type    = Row    File=20 System Type       =20 Starting[CHS]     Ending[CHS]   &= nbsp;       =20 Partition Size[KB]
0   =20 MBR           &nbs= p;  =20 Master Boot Record    0x0x1    =    =20            =20 0x0x1           &n= bsp;           &nb= sp; 0
1   =20 Pri           &nbs= p;      =20 Unused           &= nbsp;           &n= bsp; =20 0x0x2           &n= bsp;       0x0x63   &nb= sp;           &nbs= p;       31
2   =20 Pri        1   &nb= sp;   =20 DOS=20 FAT-16           &= nbsp;    =20 0x1x1           &n= bsp;        0x239x63  &= nbsp;           &n= bsp;   7,528
3  >Pri       &n= bsp;2       =20 FreeBSD,=20 BSD/386     1x0x1     &= nbsp;           &n= bsp;  408x239x63        = ;      3,084,480
4   =20 Pri           &nbs= p;      Unused     = ;            =           409x0x1 =             &= nbsp; 2583x238x63        &nb= sp;  =20 16,442,968
------=_NextPart_000_01A4_01C10E5C.43472280-- _________________________________________________________ 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 16 22:18:39 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 EEFA637B40B for ; Mon, 16 Jul 2001 22:18:33 -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 f6H5IM815569; Mon, 16 Jul 2001 22:18:22 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Murray Taylor" , "Marlowe Coley" , Subject: RE: WanIC 405 using X21 interface Date: Mon, 16 Jul 2001 22:18:21 -0700 Message-ID: <004101c10e7f$e5726740$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: <01db01c10e73$b87cd060$2a7627cb@pc99101401.bytecraft.au.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 I didn't see the original message - probably because the date is screwed up. (it's a day later) Anyway, I'm currently running a RISCom which is the same chipset as the WANic and made by the same company. Any DSU works fine as long as it's recognized by the telco. I use a Kentrox bought for $200 off Ebay. Purchase a male V35 to WANic connector cable from SDL and the V35 card and your all set. (V35 is the defacto standard in the US, I think X21 is the standard elsewhere in the world) Incidentally, there is one bug in the sr driver which I have a patch for that Rodney Grimes gave me. You will want that if your running a T1 at 1.54Mbt it doesen't show up at slower speeds. It's a buffer overrun that happens because an interrupt is mishandled in the driver. 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 Murray Taylor >Sent: Monday, July 16, 2001 8:51 PM >To: Marlowe Coley; freebsd-questions@FreeBSD.ORG >Subject: Re: WanIC 405 using X21 interface > > >We use the WanIC 405 interface with the X21 connector option >just fine for our frame relay (only at 128Kb on copper at present, >upgradable to >512k+ on fibre) > >We selected the X21 model as it seems to be a reasonably >common interface to most NTU (csu/dsu etc) models > > >Murray Taylor >Project Manager >Bytecraft Systems Pty Ltd >ph: +61 3 9587 2555 >Fax: +61 3 9587 1614 >Email: taylorm@bytecraftsystems.com >-----Original Message----- >From: Marlowe Coley >To: freebsd-questions@FreeBSD.ORG >Date: Tuesday, 17 July 2001 05:14 > > >>I'm trying to find a csu/dsu vendor that has been proven to work on a 4.2 >freebsd system using the WANIC 400 series dual port T1 adapter. I'm looking >for csu/dsu vendor and cable requirements. Has anyone brought up a T1 on >bsd using this adapter ? >> >> >>--------------------------------------------------------------------------- >----- >>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 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 22:37:56 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 9E56137B40F for ; Mon, 16 Jul 2001 22:37:50 -0700 (PDT) (envelope-from taylorm@bytecraft.au.com) Received: from pc99101401.bytecraft.au.com (unknown [203.39.118.42]) by wombat.bytecraft.au.com (Postfix) with SMTP id 0BFC63E9F; Tue, 17 Jul 2001 15:37:49 +1000 (EST) Message-ID: <02ed01c10e82$dcda0ea0$2a7627cb@pc99101401.bytecraft.au.com> Reply-To: "Murray Taylor" From: "Murray Taylor" To: "Ted Mittelstaedt" , "Murray Taylor" , "Marlowe Coley" , Subject: Re: WanIC 405 using X21 interface Date: Tue, 17 Jul 2001 15:39:35 +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 BTW we are using the netgraphified form of sr driver Murray Taylor Project Manager Bytecraft Systems Pty Ltd ph: +61 3 9587 2555 Fax: +61 3 9587 1614 Email: taylorm@bytecraftsystems.com -----Original Message----- From: Ted Mittelstaedt To: Murray Taylor ; Marlowe Coley ; freebsd-questions@FreeBSD.ORG Date: Tuesday, 17 July 2001 15:18 Subject: RE: WanIC 405 using X21 interface >I didn't see the original message - probably because the date is screwed >up. (it's a day later) > >Anyway, I'm currently running a RISCom which is the same chipset as >the WANic and made by the same company. Any DSU works fine as long as it's >recognized by the telco. I use a Kentrox bought for $200 off Ebay. Purchase a >male V35 to WANic connector cable from SDL and the V35 card and your all set. >(V35 is the defacto standard in the US, I think X21 is the standard elsewhere >in the world) > >Incidentally, there is one bug in the sr driver which I have a patch for that >Rodney Grimes gave me. You will want that if your running a T1 at 1.54Mbt >it doesen't show up at slower speeds. It's a buffer overrun that happens >because an interrupt is mishandled in the driver. > >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 Murray Taylor >>Sent: Monday, July 16, 2001 8:51 PM >>To: Marlowe Coley; freebsd-questions@FreeBSD.ORG >>Subject: Re: WanIC 405 using X21 interface >> >> >>We use the WanIC 405 interface with the X21 connector option >>just fine for our frame relay (only at 128Kb on copper at present, >>upgradable to >>512k+ on fibre) >> >>We selected the X21 model as it seems to be a reasonably >>common interface to most NTU (csu/dsu etc) models >> >> >>Murray Taylor >>Project Manager >>Bytecraft Systems Pty Ltd >>ph: +61 3 9587 2555 >>Fax: +61 3 9587 1614 >>Email: taylorm@bytecraftsystems.com >>-----Original Message----- >>From: Marlowe Coley >>To: freebsd-questions@FreeBSD.ORG >>Date: Tuesday, 17 July 2001 05:14 >> >> >>>I'm trying to find a csu/dsu vendor that has been proven to work on a 4.2 >>freebsd system using the WANIC 400 series dual port T1 adapter. I'm looking >>for csu/dsu vendor and cable requirements. Has anyone brought up a T1 on >>bsd using this adapter ? >>> >>> >>>------------------------------------------------------------------------- -- >>----- >>>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 >> > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 22:44: 7 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 F026037B403 for ; Mon, 16 Jul 2001 22:44:04 -0700 (PDT) (envelope-from cjc@earthlink.net) Received: from blossom.cjclark.org (dialup-209.244.106.48.Dial1.SanJose1.Level3.net [209.244.106.48]) by gull.mail.pas.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id WAA17223; Mon, 16 Jul 2001 22:44:00 -0700 (PDT) Received: (from cjc@localhost) by blossom.cjclark.org (8.11.4/8.11.3) id f6H5hr013854; Mon, 16 Jul 2001 22:43:53 -0700 (PDT) (envelope-from cjc) Date: Mon, 16 Jul 2001 22:43:52 -0700 From: "Crist J. Clark" To: Beech Rintoul Cc: Mark , freebsd-questions@FreeBSD.ORG Subject: Re: how to change SECURELEVEL back? Message-ID: <20010716224352.F299@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20010716222645.A19000@tmd.df.ru> <01071619314900.06671@galaxy.anchoragerescue.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <01071619314900.06671@galaxy.anchoragerescue.org>; from akbeech@anchoragerescue.org on Mon, Jul 16, 2001 at 07:31:49PM -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 16, 2001 at 07:31:49PM -0800, Beech Rintoul wrote: > On Monday 16 July 2001 06:26 pm, Mark wrote: > > re, > > > > how do go about changing securelevel from 2 back to 0 or -1? :) i've > > changed it using "sysctl" but appears i can't change it back.. > > > > reply to e-mail please. > > > > thank you in advance! > > > > mark > > Put the following in /etc/rc.conf and reboot: > > kern_securelevel_enable="YES" # kernel security level (see init(8)), > kern_securelevel="-1" # range: -1..3 ; `-1' is the most insecure Hopefully, if you are running at elevated securelevel, /etc/rc.conf has the schg-flag set and cannot be modified. Not much point in raising the securelevel if it is not. -- 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 16 23: 0:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-2.enteract.com (smtp-2.enteract.com [207.229.143.4]) by hub.freebsd.org (Postfix) with ESMTP id 5A11937B409 for ; Mon, 16 Jul 2001 23:00:06 -0700 (PDT) (envelope-from dscheidt@tumbolia.com) Received: from shell-3.enteract.com (shell-3.enteract.com [207.229.143.42]) by smtp-2.enteract.com (Postfix) with ESMTP id 5A7527627; Tue, 17 Jul 2001 00:57:27 -0500 (CDT) Date: Tue, 17 Jul 2001 00:57:27 -0500 (CDT) From: David Scheidt X-X-Sender: To: Gary Kline Cc: Beech Rintoul , Mark , Subject: Re: how to change SECURELEVEL back? In-Reply-To: <20010716220233.A34831@tao.thought.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 Mon, 16 Jul 2001, Gary Kline wrote: :On Mon, Jul 16, 2001 at 07:31:49PM -0800, Beech Rintoul wrote: :> :> kern_securelevel_enable="YES" # kernel security level (see init(8)), :> kern_securelevel="-1" # range: -1..3 ; `-1' is the most insecure :> : : Yeah, this will work if you want to ``reboot'' as you've got : to if running DOS .... :) : Once raised, securelevel can't be lowered. That's not a bug. It's meaningless if it can be lowered without rebooting. -- dscheidt@tumbolia.com Bipedalism is only a fad. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 23: 1:44 2001 Delivered-To: freebsd-questions@freebsd.org Received: from draco.over-yonder.net (draco.over-yonder.net [198.78.58.61]) by hub.freebsd.org (Postfix) with ESMTP id 2462037B401 for ; Mon, 16 Jul 2001 23:01:41 -0700 (PDT) (envelope-from gh@over-yonder.net) Received: by draco.over-yonder.net (Postfix, from userid 1012) id BF2E462D0B; Tue, 17 Jul 2001 01:01:40 -0500 (CDT) Date: Tue, 17 Jul 2001 01:01:40 -0500 From: GH To: m unnikrishnan Cc: questions@FreeBSD.org Subject: Re: Free BSD OS required Message-ID: <20010717010140.D21416@over-yonder.net> References: <000601c10abe$b951e2e0$eb8209ca@rukmini> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000601c10abe$b951e2e0$eb8209ca@rukmini>; from rukmini@ip.eth.net on Wed, Jul 11, 2001 at 08:32:46PM +0530 X-OS: FreeBSD Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jul 11, 2001 at 08:32:46PM +0530, some SMTP stream spewed forth: > Respected Sir/Madam > [...] > This will be an effort to integrate driver development and deployment across the UNIX's and standardise driver development at the same time to keep it as simple as possible. The framework will incorporate scripting and/or GUI based frontends and will hence aim at simplicity and functionality. The end result will be released as an Open Source product probably under the GNU Public Licence wherein all of the programmers can contribute and enhance the utility and robustness of the project. I beg you to do me a personal favor and use the BSD license. The essence of open source remains and the code is more free than under the GPL. I beg you. [...] > Mahesh K Unnikrishnan > gh -- > What, no one sings along with Ricky Martin anymore? My kid sister does (but then, she prefers pico to vi ...) -- Suresh Ramasubramanian, alt.sysadmin.recovery To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 23: 6:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ren.sasknow.com (ren.sasknow.com [207.195.92.131]) by hub.freebsd.org (Postfix) with ESMTP id D7E4737B407 for ; Mon, 16 Jul 2001 23:06:24 -0700 (PDT) (envelope-from ryan@sasknow.com) Received: from localhost (ryan@localhost) by ren.sasknow.com (8.9.3/8.9.3) with ESMTP id AAA40226; Tue, 17 Jul 2001 00:06:04 -0600 (CST) (envelope-from ryan@sasknow.com) Date: Tue, 17 Jul 2001 00:06:04 -0600 (CST) From: Ryan Thompson To: Eric Boucher Cc: FreeBSD Subject: Re: Giving some restriction to some user In-Reply-To: <20010716222817.82828.qmail@web9406.mail.yahoo.com> Message-ID: Organization: SaskNow Technologies [www.sasknow.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 Eric Boucher wrote to FreeBSD: > Hi everyone, > > I wanted to know if there is a way to give some user access to read, > write or execute some files even if these users are not in the same > group as mine. The UNIX permission system was designed to be straightforward, efficient, and general purpose. It is therefore limited in granularity. It allows assigning read, write, and execute permission to the owner of the file, group, and everyone else, in that order. Therefore, unless you have the privileges on the system to create groups, it is not possible with standard UNIX perms to grant/deny access to individual users. If you can create a new group, though, there isn't much you can't do--for instance, how about the following in /etc/group: workgroup:*:1000:you,they What this does is create a new group called "workgroup", with two members: Users "you" and "they". You will still belong to the group assigned in the password database, but you also belong to this new group. If you then want to have a file accessible by only "you" and "they", try this: chgrp workgroup filename.txt chmod 660 filename.txt This gives "you" and "they" read and write access to filename.txt, and denies access to everyone else. And, if this seems cumbersome, this can also apply to entire directories of files. chgrp workgroup workdir chmod 770 workdir (Remember that all files created in workdir will now be owned by group "workgroup") If you need something more in-depth than this, you may be out of luck with the UNIX filesystem itself. You might want to consider layering another protocol or storage system, like CVS or an SQL server with some simple client automation scripts. FTP will also work in a pinch. There may also be some other system enhancements out there more specifically tailored to your application that I'm not aware of. > I heard that there is something like this on AIX told me that there is > a file which map the users and the permissions. I little bit like in > windows, you can personalize which one has the permission to do what. > > Thanks > > Eric Boucher > > __________________________________________________ > 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 > -- Ryan Thompson Network Administrator, Accounts SaskNow Technologies - http://www.sasknow.com #106-380 3120 8th St E - Saskatoon, SK - S7H 0W2 Tel: 306-664-3600 Fax: 306-664-1161 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 23: 8:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail13.sdc1.sfba.home.com (femail13.sdc1.sfba.home.com [24.0.95.140]) by hub.freebsd.org (Postfix) with ESMTP id 8636F37B405 for ; Mon, 16 Jul 2001 23:08:08 -0700 (PDT) (envelope-from btdang@home.com) Received: from home.com ([24.248.85.196]) by femail13.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010717060807.NCYZ20529.femail13.sdc1.sfba.home.com@home.com> for ; Mon, 16 Jul 2001 23:08:07 -0700 Message-ID: <3B53D780.78D0F265@home.com> Date: Mon, 16 Jul 2001 23:13:20 -0700 From: Bruce Dang Organization: Boys & Girls Clubs X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Subject: Re: Installed CUPS: now have two versions of lp, lpr, lpq, lprm ? References: <3B53966B.EC4B1FEA@users.sourceforge.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 I don't think it'd be a problem to leave them. Just make sure when you are executing the commands, you execute them from the proper directory. If you want to use /usr/local/bin/lpr most of the time, then you can set /usr/local/bin to be before /usr/bin in your PATH var, etc. Bruce Dang www.tbug.org "R. Lahaye" wrote: > > Hi, > > I have added CUPS (Common Unix Printing System) to my 4.3 FreeBSD PC. > > Thus I now doubled several of the printing comands: > > /usr/bin/lp & /usr/local/bin/lp > /usr/bin/lpq & /usr/local/bin/lpq > /usr/bin/lpr & /usr/local/bin/lpr > /usr/bin/lprm & /usr/local/bin/lprm > > The first one is from the Berkeley Distribution, > whereas the second one is part of CUPS. > By default, my shell takes the first ones in /usr/bin/. > > Should I delete all the lp* commands in /usr/bin ? > Could that do any dammage to other parts of the system? > > Or should I do nothing and keep my fingers crossed..... > > What to do? > > Thanks, > Rob. > > 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 16 23:12:18 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 8033737B406 for ; Mon, 16 Jul 2001 23:12:15 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.204] (helo=mrvdom00.kundenserver.de) by moutvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 15MO5b-0003Wk-00; Tue, 17 Jul 2001 08:12:11 +0200 Received: from pd90172b8.dip.t-dialin.net ([217.1.114.184]) by mrvdom00.kundenserver.de with esmtp (Exim 2.12 #2) id 15MO5a-00076l-00; Tue, 17 Jul 2001 08:12:11 +0200 Date: Tue, 17 Jul 2001 08:12:56 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: Gwendolyn Cc: Subject: Re: ARRGH Netscape stinks! In-Reply-To: <20010716172625.B44718@nvnsvch.org> Message-ID: <20010717081105.Y1658-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, 16 Jul 2001, Gwendolyn wrote: > Date: Mon, 16 Jul 2001 17:26:25 -0400 > From: Gwendolyn > To: freebsd-questions@FreeBSD.ORG > Subject: Re: ARRGH Netscape stinks! > > * Louis LeBlanc (leblanc+freebsd@acadia.ne.mediaone.net) [010716 10:24]: > > > > Maybe the FreeBSD community should get together and define the > > 'perfect' web client? Then maybe someone would actually write one for > > Dangerous, since my answer would be "w3m on an xterm, lynx remotely". > > :) And do not forget links for everyday-use. 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 16 23:14:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail13.sdc1.sfba.home.com (femail13.sdc1.sfba.home.com [24.0.95.140]) by hub.freebsd.org (Postfix) with ESMTP id 17C6C37B401 for ; Mon, 16 Jul 2001 23:14:22 -0700 (PDT) (envelope-from btdang@home.com) Received: from home.com ([24.248.85.196]) by femail13.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010717061421.NJNY20529.femail13.sdc1.sfba.home.com@home.com> for ; Mon, 16 Jul 2001 23:14:21 -0700 Message-ID: <3B53D8F5.AB484A29@home.com> Date: Mon, 16 Jul 2001 23:19:33 -0700 From: Bruce Dang Organization: Boys & Girls Clubs 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: natd References: <20010716231705.1107.qmail@quantum.nitronet.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 can you tell us the current config? there are like numerous possibilities as to why your natd is not working. When you turn off natd, can you ping the clients? are you sure the natd interface is the right one (it shoudl be connected to the internet)? btw, please do not type everything in 1 line next time. Bruce Dang www.tbug.org slagger wrote: > > Hi, i have a network which the server is freebsd and 2 client computer which are in windows, i configured natd for sharing internet like u say in the handbook, my ethernet card is also set right, but it doesnt work. I cant ping the server from the clients and when i ping a client from the server it tell me something like --> natd: failed to write packet back(Host is down). I know it cant be the hub or the cable that are broken because when my server is in windows, internet sharing, file sharing and etc... is working right. What could it be? > Pls Msg me back. > > Thank You in advance. > > ______________________________________________________________________ > Get Your Own Private, Free Email Account at http://www.dotcomemail.com > Now With Over 1,500 Com, Net, and Org Domains to Choose From! > > 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 16 23:15: 8 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 1F65B37B40C for ; Mon, 16 Jul 2001 23:14:56 -0700 (PDT) (envelope-from agn_nair@yahoo.com) Received: from cc403125-a.jrsycty1.nj.home.com (HELO cc403125a) (65.2.181.122) by smtp.mail.vip.sc5.yahoo.com with SMTP; 17 Jul 2001 06:14:55 -0000 X-Apparently-From: Message-ID: <025801c10e87$d3c40fa0$7ab50241@jrsycty1.nj.home.com> From: "A. G. Nair" To: , Subject: Fw: FreeBSD and OnTrack DDO (re-sending earlier message in plain-text format) Date: Tue, 17 Jul 2001 02:14:28 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 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, Sorry for re-sending this mail. I was not aware that the earlier mail I sent was in HTML format. Probably that's why nobody saw it. Hope this works. AGN ----- Original Message ----- From: A. G. Nair To: questions@freebsd.org ; mobile@freebsd.org Sent: Tuesday, July 17, 2001 1:03 AM Subject: FreeBSD and OnTrack DDO Hi, I've sent a mail earlier with the same problem but didn't get any reply... So trying again with a more specific version of the problem. I'm trying to install FreeBSD 4.3 on my machine (laptop) which has OnTrack DDO(Dynamic Drive Overlay) installed on the hard drive. I tried all kinds of combinations at the boot prompt but it always says -- Not ufs Not ufs No /boot/loader The documentation says FreeBSD is compatible with DDO, but I'm unable to make it work. Also in the archives I've found 2 or 3 questions regarding this but no answers. So I think, this has to be a bug unless someone can tell me otherwise. My situation is as described below-- I've a new blank 20GB hard drive installed on my laptop. Since it's blank and there is no data, I get to re-partition, re-format and play around with all combinations. I'm trying to get just FreeBSD(nothing else is in the hard drive except DOS) work with DDO. I need DDO because my BIOS won't recognize beyond 8.4GB of the hard-drive (I've the latest version of BIOS installed). I am not going beyond the 1024th cylinder. The whole FreeBSD partition is well below the 1024 cylinder limit. The disk geometry reported by FreeBSD fdisk is same as the one reported by Partition Manager. So no problem there also. Or is there something else? I also tried Boot-Easy, OS-BS and XOSL as boot manager. No luck. If I remove DDO and boot, FreeBSD sees the full 20GB. So ideally, I don't need to use DDO if I am using just FreeBSD. But unfortunately I also need to install Windows on the machine. So I've to find a way to get FreeBSD to exist with DDO and the documentation says it is compatible. I've almost given up all hope on making this work. (I tried Red Hat Linux and I've to tell you, it's much worse than this. It doesn't even install.) Does anyone have any experience in getting FreeBSD installed and working on a hard drive with DDO?? There must be someone out there, who has worked on this part of the installer.... Maybe He/She can tell why this is not a bug. Am I missing something??? Please please reply and let me know. Any suggestions will be a great help...... Thanks in advance, AGNair PS: This is how FreeBSD fdisk looks FDisk Disk name: ad0 Disk Geometry: 2584 cyls/240 Heads/63 Heads = 39070080 Sectors(19077MB) Offset Size(KB) End Name PType Desc Subtype Flags -63 63 62 - 6 unused 0 63 7528 15119 ad0s1 2 fat 6 15120 3084480 6184079 ad0s2 3 freebsd 165 C 6184080 16442968 39070016 - 6 unused 0 View of Ranish Partition Manager on the disk is as below: Hard Disk 1 19077 Mbytes[2583 cylinders x 240 heads x 63 sectors ] Using LBA # Type Row File System Type Starting[CHS] Ending[CHS] Partition Size[KB] 0 MBR Master Boot Record 0x0x1 0x0x1 0 1 Pri Unused 0x0x2 0x0x63 31 2 Pri 1 DOS FAT-16 0x1x1 0x239x63 7,528 3 >Pri 2 FreeBSD, BSD/386 1x0x1 408x239x63 3,084,480 4 Pri Unused 409x0x1 2583x238x63 16,442,968 _________________________________________________________ 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 16 23:24:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail13.sdc1.sfba.home.com (femail13.sdc1.sfba.home.com [24.0.95.140]) by hub.freebsd.org (Postfix) with ESMTP id A670637B406 for ; Mon, 16 Jul 2001 23:24:37 -0700 (PDT) (envelope-from btdang@home.com) Received: from home.com ([24.248.85.196]) by femail13.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010717062436.NVOR20529.femail13.sdc1.sfba.home.com@home.com> for ; Mon, 16 Jul 2001 23:24:36 -0700 Message-ID: <3B53DB5D.D2DC2BE1@home.com> Date: Mon, 16 Jul 2001 23:29:49 -0700 From: Bruce Dang Organization: Boys & Girls Clubs X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Subject: Re: Giving some restriction to some user References: <20010716222817.82828.qmail@web9406.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 What you want to do is not possible with standard unix file permissions. If you do not have too many users, you make a separate directory, add a new group (perhaps tmpacc?), and add some of the users to that group. Then if you want them to view some files, just cp it to the dir and chgrp it to tmpacc, and give the proper permission so your users can view them. Bruce Dang www.tbug.org Eric Boucher wrote: > > Hi everyone, > > I wanted to know if there is a way to give some user > access to read, write or execute some files even if > these users are not in the same group as mine. I heard > that there is something like this on AIX machines, a > program called acl???? or something like that. The > person told me that there is a file which map the > users and the permissions. I little bit like in > windows, you can personalize which one has the > permission to do what. Does somebody knows what I want > to do and how to do it? > > Thanks > > Eric Boucher > > __________________________________________________ > 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 Mon Jul 16 23:35:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from saturn.cs.uml.edu (saturn.cs.uml.edu [129.63.8.2]) by hub.freebsd.org (Postfix) with ESMTP id B07A337B405 for ; Mon, 16 Jul 2001 23:35:32 -0700 (PDT) (envelope-from acahalan@saturn.cs.uml.edu) Received: (from acahalan@localhost) by saturn.cs.uml.edu (8.11.0/8.11.2) id f6H6ZWN390560; Tue, 17 Jul 2001 02:35:32 -0400 (EDT) Date: Tue, 17 Jul 2001 02:35:32 -0400 (EDT) Message-Id: <200107170635.f6H6ZWN390560@saturn.cs.uml.edu> From: "Albert D. Cahalan" To: freebsd-questions@FreeBSD.org Cc: Kramer-James@MSHA.gov Subject: Re: Please Help - Advise on New system Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Kramer James M. writes: > I need to purchase a new computer to run FreeBSD. I was going to > buy a bare bones with an ASUS A7A-266 with 256Mb DDR and an AMD Make sure you get the AMD chipset, especially the north bridge chip. VIA chips corrupt your data when pushed too hard. This problem is seen in any app or OS with heavy Athlon optimization. FreeBSD might not do that today, but all it takes is one commit of an optimized bzero() and you start crashing. (current victims: Windows Photoshop and Linux w/ K7 optimizations) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jul 16 23:46: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 69C4437B401 for ; Mon, 16 Jul 2001 23:46:47 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.219] (helo=mrvdom03.schlund.de) by moutvdom00.kundenserver.de with esmtp (Exim 2.12 #2) id 15MOcz-0000U6-00; Tue, 17 Jul 2001 08:46:41 +0200 Received: from pd90172b8.dip.t-dialin.net ([217.1.114.184]) by mrvdom03.schlund.de with esmtp (Exim 2.12 #2) id 15MOcy-0004tf-00; Tue, 17 Jul 2001 08:46:40 +0200 Date: Tue, 17 Jul 2001 08:47:32 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: Ian Dowse Cc: Vladislav Saltanov , Subject: Re: I can't mount FAT16 disk In-Reply-To: <200107162111.aa65203@salmon.maths.tcd.ie> Message-ID: <20010717081947.L1732-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 Hi Ian, actually I did not write the first mail. But I seem to have the same problem since last weekend, when I cvsup-ped my FreeBSD -current. I still can mount_cd9660 and of course FBSD's ufs but mount_msdos will not work. On Mon, 16 Jul 2001, Ian Dowse wrote: > In message <20010716182256.Q345-100000@localhost.de, > "P. U. (Uli) Kruppa" writes: > >> #mount_msdos /dev/ad0s1 /mnt > >> mount_msdos:vfsload(msdos):File exists > >Try > ># df -h > >to find out if anything else is mounted on /mnt . > > The error is from "vfsload(msdos)", not from the mount system call, > so that is unlikely. In fact, mount_msdos should actually allow > you to mount one filesystem directly over another, but if you tried > to mount two filesystems from the same device you should get a > "Device busy" error. You are right, I tested that. > What version of FreeBSD are you running? -current I had a look at my kernel-configuration file: options MSDOSFS is on. > What is the output from the "kldstat" program? Id Refs Address Size Name 1 9 0xc0100000 46f9f8 kernel 2 1 0xc1092000 12000 linux.ko 4 4 0xc1195000 11000 netgraph.ko 5 2 0xc11aa000 4000 ng_ether.ko 6 1 0xc11ae000 7000 ng_pppoe.ko 7 1 0xc11b5000 5000 ng_socket.ko >Were your kernel modules compiled at the same time as the > kernel? (Hmm???) I did # make buildworld # make buildkernel KERNCONF=PUKRUPPA # make installkernel KERNCONF=PUKRUPPA # make installworld as suggested in THE handbook. 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 Tue Jul 17 0: 6:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 3012D37B401 for ; Tue, 17 Jul 2001 00:06:32 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.2/8.11.2) id f6H75pG51099; Tue, 17 Jul 2001 10:05:51 +0300 (EEST) (envelope-from ru) Date: Tue, 17 Jul 2001 10:05:51 +0300 From: Ruslan Ermilov To: Mark Cc: freebsd-questions@FreeBSD.ORG Subject: Re: how to change SECURELEVEL back? Message-ID: <20010717100551.E47056@sunbay.com> Mail-Followup-To: Mark , freebsd-questions@FreeBSD.ORG References: <20010716222645.A19000@tmd.df.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010716222645.A19000@tmd.df.ru>; from mlivingstone@ottawa.com on Mon, Jul 16, 2001 at 10:26:45PM -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 16, 2001 at 10:26:45PM -0400, Mark wrote: > > re, > > how do go about changing securelevel from 2 back to 0 or -1? :) > i've changed it using "sysctl" but appears i can't change it back.. > > reply to e-mail please. > If you have DDB compiled in, that should be pretty easy. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 0: 7: 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 F35FC37B409 for ; Tue, 17 Jul 2001 00:07:01 -0700 (PDT) (envelope-from uwi@delfi.lv) Received: from delfi.lv (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 KAA29165 for ; Tue, 17 Jul 2001 10:06:59 +0300 Date: Tue, 17 Jul 2001 10:06:31 +0000 From: uwi mAn To: questions@freebsd.org Subject: shutdown -p now doesnt work Message-ID: <20010717100631.A534@elexis.uwiland.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Balsa 1.1.3 Lines: 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 How to force FreeBSD to shutdown the power too? yes, mb is able to do that. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 0: 7:57 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 A16B937B406 for ; Tue, 17 Jul 2001 00:07:52 -0700 (PDT) (envelope-from uwi@delfi.lv) Received: from delfi.lv (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 KAA29791 for ; Tue, 17 Jul 2001 10:07:51 +0300 Date: Tue, 17 Jul 2001 10:06:31 +0000 From: uwi mAn To: questions@freebsd.org Subject: shutdown -p now doesnt work Message-ID: <20010717100631.A534@elexis.uwiland.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Balsa 1.1.3 Lines: 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 How to force FreeBSD to shutdown the power too? yes, mb is able to do that. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 0:18: 9 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 C404737B40D for ; Tue, 17 Jul 2001 00:18:06 -0700 (PDT) (envelope-from uwi@delfi.lv) Received: from delfi.lv (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 KAA29815 for ; Tue, 17 Jul 2001 10:07:52 +0300 Date: Tue, 17 Jul 2001 10:08:43 +0000 From: uwi mAn To: questions@freebsd.org Subject: shutdown -p now doesnt work Message-ID: <20010717100843.A554@elexis.uwiland.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Balsa 1.1.3 Lines: 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 How to force FreeBSD to shutdown the power too? yes, mb is able to do that. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 0:37:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from beta.root-servers.ch (gamma.root-servers.ch [195.49.62.126]) by hub.freebsd.org (Postfix) with SMTP id 0540537B401 for ; Tue, 17 Jul 2001 00:37:11 -0700 (PDT) (envelope-from gabriel_ambuehl@buz.ch) Received: (qmail 39330 invoked from network); 17 Jul 2001 07:37:09 -0000 Received: from dclient106-17.hispeed.ch (HELO athlon550) (62.2.106.17) by beta.root-servers.ch with SMTP; 17 Jul 2001 07:37:09 -0000 Date: Tue, 17 Jul 2001 09:38:12 +0200 From: Gabriel Ambuehl X-Mailer: The Bat! (v1.53bis) Educational Organization: BUZ Internet Services X-Priority: 3 (Normal) Message-ID: <42164917939.20010717093812@buz.ch> To: Klaus Steden Cc: questions@freebsd.org Subject: Re[2]: popen() with bidirectional pipes? In-Reply-To: <20010716185721.C73359@cthulu.compt.com> References: <64111861237.20010716185355@buz.ch> <20010716160341.S73359@cthulu.compt.com> <194127057398.20010716230711@buz.ch> <20010716185721.C73359@cthulu.compt.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 -----BEGIN PGP SIGNED MESSAGE----- Hello Klaus, Tuesday, July 17, 2001, 12:57:21 AM, you wrote: >> What about: >> Since popen() is now implemented using a bidirectional pipe, >> the >> type argument may request a bidirectional data flow. >> The type argument is a pointer to a null-terminated string >> which must be >> `r' for reading, `w' for writing, or `r+' for reading and >> writing. >> > I really hope you weren't the person to ask the question in the > first place since I spent time writing both the first reply and > this one to a question that could have been answered by R-ingTFM in > the first place. Actually I was. But I don't get why R-ing (which I've done at least 5 times) TFMan page should have helped me. The point is that the info out of the manpage didn't work for me. > However ... that said ... bi-directional pipes may exist on > FreeBSD, but they aren't a guarantee on any other *nix flavour. > Hence, my suggestion to try socketpair(), which is bi-directional > by design. Will see about it. I hope my Advanced Unix Programming arrives today... > If the author intends to port outside FreeBSD, then he's stuck > using either socketpair() or a pair of pipe() calls. Will see what fits my purpose better. Basically I just need to send data to stdin of the child (been thinking about kicking this and limit passing of parameter to command line options, then popen() would do the job) and read data from its stdout. Might think about providing a custom popen() to use two pipes in first place which could be a good idea anyway as it would allow to get rid of the call to sh which I really don't see much need for in my app. For the time being, FreeBSD is THE OS it has to run on, any ports will *perhaps* take place in a few weeks / months (at the moment, this is an in house project and as Unix platform we only use FreeBSD). Best regards, Gabriel ömömä -----BEGIN PGP SIGNATURE----- Version: PGP 6.5i iQEVAwUBO1PdWMZa2WpymlDxAQFHHggAwxMrhrFJa3geCYCcInz+pA2veZXGT8sL 6IQLOLSHRsPooJXEdjZLrMRePdFvhgGqWfkRigZ4jWbbo9+kMn+ik+IK2gFtwf0M XZOLP5LtN8y4UXxsHNpA9hZyNJ4ogDeZkkSlBUn6oZm8HPHY8es2eJVhTD02IMSb p9/f76mmhVdXEIzHs0kpOOLgq5yJ4F5gGpPSWp9HeVh04AhQuCkhnP0qSUtv2tSX Rhrtg9hkVHFSQI/CKJNKY5AlUwt9uTieQyiZTXzi5YruSUU093s/oBulZE2xM3c0 p64jpXIIt8sjbBUhIv9QCLHZ4jtbchSXNuX67GO9EBxKIbcIWLW5Sw== =br7M -----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 17 0:38:22 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 A6C3537B408 for ; Tue, 17 Jul 2001 00:38:18 -0700 (PDT) (envelope-from uwi@delfi.lv) Received: from delfi.lv (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 KAA18975 for ; Tue, 17 Jul 2001 10:38:17 +0300 Date: Tue, 17 Jul 2001 10:39:09 +0000 From: uwi mAn To: questions@freebsd.org Message-ID: <20010717103909.A451@elexis.uwiland.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Balsa 1.1.3 Lines: 7 Sender: owner-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 enabled the following string in kernel, but bsd still doesnt shut the power down :( device apm0 at nexus? disable flags 0x20 Any ideas? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 0:51:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from proxy.teoresi.it (proxy.teoresi.it [151.4.239.35]) by hub.freebsd.org (Postfix) with ESMTP id 359A737B403 for ; Tue, 17 Jul 2001 00:51:18 -0700 (PDT) (envelope-from r.ruffinengo@teoresi.it) Received: from posta.teoresi.it (fw.teoresi.it [151.4.239.34]) by proxy.teoresi.it (Postfix) with ESMTP id 69D363C92 for ; Tue, 17 Jul 2001 09:51:16 +0200 (CEST) Received: from pc_rufus (rufus.teoresi.it [192.168.8.143]) by posta.teoresi.it (8.9.3/8.9.3) with SMTP id JAA30191 for ; Tue, 17 Jul 2001 09:51:24 +0200 (CEST) (envelope-from r.ruffinengo@teoresi.it) Message-Id: <200107170751.JAA30191@posta.teoresi.it> From: "Roberto Ruffinengo" To: freebsd-questions@FreeBSD.ORG Date: Tue, 17 Jul 2001 09:50:36 +0200 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: obtaining FreeBSD Reply-To: r.ruffinengo@teoresi.it X-mailer: Pegasus Mail for Win32 (v3.01b) Sender: owner-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 experiencing some difficulties in getting FreeBSD from the net. the 4.3 ISO image seems to be broken . I have downloaded it but the md5 signature does't correspond whith the one i downloaded from the server. I tried two times. Anyone else notice this? Maybe incredible (i think that !) but also the floppy images seem to be broken. They are to large. On my HD: D:\pub\FreeBSD>dir 17/07/01 09.30
. 17/07/01 09.30 .. 17/07/01 09.30 1.479.435 kern.flp 17/07/01 09.31 1.477.682 mfsroot.flp 4 File 2.957.117 byte They are too big, so i get this error : D:\pub\FreeBSD> fdimage kern.flp a: kern.flp - File is too big I hope someone can help me. Best regards, Roberto __________________________________________________________________________ Roberto Ruffinengo Teoresi s.r.l. Via Perugia, 24 - 10152 Torino (TO) Tel. +39 (0)11 2408000 Fax. +39 (0)11 2408024 e-mail: r.ruffinengo@teoresi.it URL: http://www.teoresi.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 17 0:52:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.resfeber.se (Resfeber-gw.customer.internet5.net [195.66.48.230]) by hub.freebsd.org (Postfix) with ESMTP id 8675237B408 for ; Tue, 17 Jul 2001 00:52:28 -0700 (PDT) (envelope-from jon.molin@resfeber.se) Received: from resfeber.se ([212.75.72.9]) by mail2.resfeber.se (8.9.3/8.9.3) with ESMTP id KAA00340; Tue, 17 Jul 2001 10:15:47 +0200 Message-ID: <3B53EFB2.60EC4FCB@resfeber.se> Date: Tue, 17 Jul 2001 09:56:34 +0200 From: Jon Molin X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: uwi mAn Cc: questions@FreeBSD.ORG Subject: Re: References: <20010717103909.A451@elexis.uwiland.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 one mail is enough! uwi mAn wrote: > > I enabled the following string in kernel, but bsd still doesnt shut the > power down :( > > device apm0 at nexus? disable flags 0x20 > > Any ideas? > > 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 17 1: 1:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imf14bis.bellsouth.net (mail114.mail.bellsouth.net [205.152.58.54]) by hub.freebsd.org (Postfix) with ESMTP id D1C4237B401 for ; Tue, 17 Jul 2001 01:01:14 -0700 (PDT) (envelope-from d_maddox@bellsouth.net) Received: from bellsouth.net ([209.214.177.87]) by imf14bis.bellsouth.net (InterMail vM.5.01.01.01 201-252-104) with ESMTP id <20010717080206.SFIA19651.imf14bis.bellsouth.net@bellsouth.net>; Tue, 17 Jul 2001 04:02:06 -0400 Message-ID: <3B53FFFB.7A609E27@bellsouth.net> Date: Tue, 17 Jul 2001 04:06:03 -0500 From: "Donald J. Maddox" Reply-To: d_maddox@bellsouth.net X-Mailer: Mozilla 4.76 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: uwi mAn Cc: questions@freebsd.org Subject: Re: References: <20010717103909.A451@elexis.uwiland.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 It seems that more and more machines need ACPI support for power management, not APM. Unfortunately, ACPI is only available in FreeBSD-current for now. Maybe it won't be much longer before 5.0-Release, though ;-) uwi mAn wrote: > > I enabled the following string in kernel, but bsd still doesnt shut the > power down :( > > device apm0 at nexus? disable flags 0x20 > > Any ideas? > > 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 17 1: 5:59 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 C4CB937B403 for ; Tue, 17 Jul 2001 01:05:53 -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 KAA09442; Tue, 17 Jul 2001 10:13:40 +0200 Message-ID: <3B53F260.55C12433@i-clue.de> Date: Tue, 17 Jul 2001 10:08:00 +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.ruffinengo@teoresi.it Cc: freebsd-questions@FreeBSD.ORG Subject: Re: obtaining FreeBSD References: <200107170751.JAA30191@posta.teoresi.it> 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 Roberto Ruffinengo schrieb: > > Hi all, > i am experiencing some difficulties in getting FreeBSD from the net. > the 4.3 ISO image seems to be broken . I have downloaded it but the > md5 signature does't correspond whith the one i downloaded from the > server. I tried two times. > > Anyone else notice this? > > Maybe incredible (i think that !) but also the floppy images seem to be > broken. > > They are to large. > > On my HD: > > D:\pub\FreeBSD>dir > 17/07/01 09.30 . > 17/07/01 09.30 .. > 17/07/01 09.30 1.479.435 kern.flp > 17/07/01 09.31 1.477.682 mfsroot.flp > 4 File 2.957.117 byte > > They are too big, so i get this error : > > D:\pub\FreeBSD> fdimage kern.flp a: > kern.flp - File is too big > > I hope someone can help me. Don't use Internet Exploder to download the images. Known bugs in some versions will corrupt the images. Use the command line client (DOS window) instead. Pay attention the download mode is bin[ary] when downloading the image files. 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 17 1:35:47 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 ECA0637B401 for ; Tue, 17 Jul 2001 01:35:41 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 82E646ACBC; Tue, 17 Jul 2001 18:05:40 +0930 (CST) Date: Tue, 17 Jul 2001 18:05:40 +0930 From: Greg Lehey To: uwi mAn Cc: questions@freebsd.org Subject: APM support (was: no subject) Message-ID: <20010717180540.W70499@wantadilla.lemis.com> References: <20010717103909.A451@elexis.uwiland.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010717103909.A451@elexis.uwiland.com>; from uwi@delfi.lv on Tue, Jul 17, 2001 at 10:39:09AM +0000 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, 17 July 2001 at 10:39:09 +0000, uwi mAn wrote: > I enabled the following string in kernel, but bsd still doesnt shut > the power down :( Based on this statement, the first question would be "do you have a computer?". More information would be helpful. > device apm0 at nexus? disable flags 0x20 > > Any ideas? Ever wondered what the 'disable' keyword does? Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 1:51:59 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 A97D237B401 for ; Tue, 17 Jul 2001 01:51:53 -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 KAA72690 for ; Tue, 17 Jul 2001 10:51:50 +0200 (SAST) (envelope-from patrick@mip.co.za) From: "Patrick O'Reilly" To: "FreeBSD Question List" Subject: Install problems on Compaq Date: Tue, 17 Jul 2001 10:52:58 +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? I'm trying to install 4.2 on an old Compaq Deskpro. When trying to write /bin and /src, etc from the CD I get errors saying that -1 bytes were written ?!? This same CD has been used to install a dozen other PCs without a hitch! Does anyone know if there is anything special about old Compaq Deskpros (It is a 200 MMX processor). Thanks, Patrick. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 1:52:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id EE01B37B403 for ; Tue, 17 Jul 2001 01:52:50 -0700 (PDT) (envelope-from iedowse@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 17 Jul 2001 09:52:49 +0100 (BST) To: "P. U. (Uli) Kruppa" Cc: Vladislav Saltanov , freebsd-questions@FreeBSD.ORG Subject: Re: I can't mount FAT16 disk In-Reply-To: Your message of "Tue, 17 Jul 2001 08:47:32 -0000." <20010717081947.L1732-100000@localhost.de> Date: Tue, 17 Jul 2001 09:52:49 +0100 From: Ian Dowse Message-ID: <200107170952.aa11590@salmon.maths.tcd.ie> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20010717081947.L1732-100000@localhost.de>, "P. U. (Uli) Kruppa" wri tes: > >actually I did not write the first mail. >But I seem to have the same problem since last weekend, when >I cvsup-ped my FreeBSD -current. Ah, if it's -current you need to delete /sbin/mount_msdos and use /sbin/mount_msdosfs instead. The names of a number of filesystems and filesystem-related utilites were changed recently to be more consistent. If you check the dates on files in /sbin you will find that a few are stale binaries left over from a previous version. Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 2: 7:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mout02.kundenserver.de (mout02.kundenserver.de [195.20.224.133]) by hub.freebsd.org (Postfix) with ESMTP id E1EEC37B405 for ; Tue, 17 Jul 2001 02:07:43 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.208] (helo=mrvdom01.kundenserver.de) by mout02.kundenserver.de with esmtp (Exim 2.12 #2) id 15MQpS-0001F9-00 for freebsd-questions@freebsd.org; Tue, 17 Jul 2001 11:07:42 +0200 Received: from pd90172b8.dip.t-dialin.net ([217.1.114.184]) by mrvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 15MQpP-00088P-00 for freebsd-questions@FreeBSD.ORG; Tue, 17 Jul 2001 11:07:41 +0200 Date: Tue, 17 Jul 2001 11:08:32 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: Subject: mc crashes on FBSD -current Message-ID: <20010717105609.X1974-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 Hello all, When I execute programs from midnight-commander's shell, mc exits (program will be executed though). Another strange thing: I usually put on the option Pause after run (*) alwaYs But mc will not pause - neither on text-terminal - nor in X-terminal-emulation. Has Anybody got any ideas? Thanx. 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 Tue Jul 17 2:18:19 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 227B437B403 for ; Tue, 17 Jul 2001 02:18:15 -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 LAA10049; Tue, 17 Jul 2001 11:25:48 +0200 Message-ID: <3B540348.9B86124C@i-clue.de> Date: Tue, 17 Jul 2001 11:20: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: "Patrick O'Reilly" Cc: FreeBSD Question List Subject: Re: Install problems on Compaq 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 Patrick O'Reilly schrieb: > > Help? > > I'm trying to install 4.2 on an old Compaq Deskpro. When trying to write > /bin and /src, etc from the CD I get errors saying that -1 bytes were > written ?!? Disk full error, isn't it? Either your partitions are too small, or your RAM disk is not big enough to unpack some binaries. > This same CD has been used to install a dozen other PCs without a hitch! > Does anyone know if there is anything special about old Compaq Deskpros (It > is a 200 MMX processor). It would do that, too. Repartition again, and keep an eye to partition sizes. On old boxes, choosing default (automatic) partition sizes causes some pretty crazy results. 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 17 2:24: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.port.ru (mx2.port.ru [194.67.23.33]) by hub.freebsd.org (Postfix) with ESMTP id 890EC37B407 for ; Tue, 17 Jul 2001 02:24:02 -0700 (PDT) (envelope-from saltanov@mail.ru) Received: from as2-l194.kiev.sovam.net.ua ([212.109.50.194] helo=comp) by smtp2.port.ru with smtp (Exim 3.14 #1) id 15MR4q-0003R3-00; Tue, 17 Jul 2001 13:23:37 +0400 Message-ID: <001301c10ea1$e9cf8760$c2326dd4@comp> From: "Vladislav Saltanov" To: "P. U. (Uli) Kruppa" , "Ian Dowse" , "Jon Molin" , "Person, Roderick" Cc: References: <200107162111.aa65203@salmon.maths.tcd.ie> Subject: Re: I can't mount FAT16 disk Date: Tue, 17 Jul 2001 12:21:40 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2417.2000 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 Thank you all for your help. There were nothing mounted on /mnt. #df -h File system Size Used Avail. Capacity Mounted on /dev/ad0s3a 97M 30M 59M 33% / /dev/ad0s3f 1002M 665M 257M 72% /usr /dev/ad0s3e 19M 3.4M 14M 19% /var procfs 4.0k 4.0k 0B 100% /proc #mount_msdos /dev/ad0s1 /mnt mount_msdos:vfsload(msdos):File exists > What version of FreeBSD are you running? 4.3 Release (GENERIC) #0: Sat Apr 21 10:54:49 GMT 2001 > What is the output from the "kldstat" program? ID Refs Address Size Name 1 11 0xc0100000 346718 kernel 3 1 0xc0450000 e518 msdos.ko 4 1 0xc045f000 1988 green_saver.ko 5 1 0xc0461000 163d4 if_ppp.ko 6 1 0xc0478000 4120 if_tun.ko 7 1 0xc047d000 6228 ng_ppp.ko 8 1 0xc0484000 9cd0 netgraph.ko 9 1 0xc048e000 3edc snd_sb8.ko 10 1 0xc0496000 11830 snd_pcm.ko 11 1 0xc0492000 3e38 snd_sbc.ko 12 1 0xc0d4b000 12000 linux.co > Were your kernel modules compiled at the same time as the kernel? I think so. I've just installed system from FreeBSD CDROM. The problem remains.. :-( ----- Original Message ----- From: Ian Dowse To: P. U. (Uli) Kruppa Cc: Vladislav Saltanov ; Sent: Monday, July 16, 2001 11:11 PM Subject: Re: I can't mount FAT16 disk > In message <20010716182256.Q345-100000@localhost.de>, "P. U. (Uli) Kruppa" writ > es: > >> #mount_msdos /dev/ad0s1 /mnt > >> mount_msdos:vfsload(msdos):File exists > >Try > ># df -h > >to find out if anything else is mounted on /mnt . > > The error is from "vfsload(msdos)", not from the mount system call, > so that is unlikely. In fact, mount_msdos should actually allow > you to mount one filesystem directly over another, but if you tried > to mount two filesystems from the same device you should get a > "Device busy" error. > > The vfsload() call is used to load a kernel module in order to > support a particular filesystem. Here it seems that mount_msdos > believes that there is no support for the msdos filesystem in the > kernel, but when it tries to load the module it appears to be > already loaded (hence the "File exists"). I've no idea why that > would happen though... > > What version of FreeBSD are you running? What is the output > from the "kldstat" program? Were your kernel modules compiled > at the same time as the kernel? > > Ian > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 2:25: 2 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 5C88237B405 for ; Tue, 17 Jul 2001 02:24:58 -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 f6H9OuA75833 for ; Tue, 17 Jul 2001 10:24:56 +0100 (BST) (envelope-from neil@darlow.co.uk) From: Neil Darlow Date: Tue, 17 Jul 2001 09:24:56 GMT Message-ID: <20010717.9245600@ideal.darlow.co.uk> Subject: mod_php4 image library paths 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 All, I have noticed that the autoconf script for mod_php4 has options for GD as follows: --with-jpeg-dir=3D --with-png-dir=3D --with-Xpm-dir=3D The configure.php script supplied with mod_php4-4.0.6_3 doesn't supply these options when building with support for GD. Is this an error? And should these options be provided? Regards, Neil Darlow. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 2:34:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mout01.kundenserver.de (mout01.kundenserver.de [195.20.224.132]) by hub.freebsd.org (Postfix) with ESMTP id EC7B737B405 for ; Tue, 17 Jul 2001 02:34:17 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.209] (helo=mrvdom02.schlund.de) by mout01.kundenserver.de with esmtp (Exim 2.12 #2) id 15MRF8-0003L4-00; Tue, 17 Jul 2001 11:34:14 +0200 Received: from pd90172b8.dip.t-dialin.net ([217.1.114.184]) by mrvdom02.schlund.de with esmtp (Exim 2.12 #2) id 15MRF7-0001Ml-00; Tue, 17 Jul 2001 11:34:14 +0200 Date: Tue, 17 Jul 2001 11:35:06 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: Ian Dowse Cc: Vladislav Saltanov , Subject: Re: I can't mount FAT16 disk In-Reply-To: <200107170952.aa11590@salmon.maths.tcd.ie> Message-ID: <20010717112844.R2990-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 Tue, 17 Jul 2001, Ian Dowse wrote: > In message <20010717081947.L1732-100000@localhost.de>, "P. U. (Uli) Kruppa" wri > tes: > > > >actually I did not write the first mail. > >But I seem to have the same problem since last weekend, when > >I cvsup-ped my FreeBSD -current. > > Ah, if it's -current you need to delete /sbin/mount_msdos and use > /sbin/mount_msdosfs instead. The names of a number of filesystems > and filesystem-related utilites were changed recently to be more > consistent. If you check the dates on files in /sbin you will find > that a few are stale binaries left over from a previous version. Thanx, you are right. 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 Tue Jul 17 3: 0:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f162.pav2.hotmail.com [64.4.37.162]) by hub.freebsd.org (Postfix) with ESMTP id 4AECB37B403 for ; Tue, 17 Jul 2001 03:00:20 -0700 (PDT) (envelope-from twchim1@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 17 Jul 2001 03:00:20 -0700 Received: from 147.8.182.48 by pv2fd.pav2.hotmail.msn.com with HTTP; Tue, 17 Jul 2001 10:00:19 GMT X-Originating-IP: [147.8.182.48] From: "Wing Tim" To: cckok00@hotmail.com Cc: freebsd-questions@freebsd.org Subject: Re: Configuring Lucent WaveLAN products Date: Tue, 17 Jul 2001 18:00:19 +0800 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 17 Jul 2001 10:00:20.0117 (UTC) FILETIME=[49A82C50:01C10EA7] Sender: owner-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 Peter, The reason that we choose FreeBSD instead of Linux in our project is that FreeBSD is more stable in networking manners. Also, we have to build a software on top of FreeBSD and according to some expertises, building on FreeBSD is much easier than on Linux. Regards, Wing Tim >From: Peter Kok >To: Wing Tim >Subject: Re: Configuring Lucent WaveLAN products >Date: Fri, 13 Jul 2001 17:52:30 -0400 > >Hi Wing Tim > >I would like to ask you question. Why do you choose Freebsd instead of >Linux >(RH, Debian, Openlinux) in this project? > >Thanks > >B. regards >Peter Kok > >http://www.nikoyo.com.hk > > > > >Wing Tim wrote: > > > Dear All, > > After installing FreeBSD 4.2, I found that my Lucent WaveLAN card and > > adapter cannot be detected and as a result the WaveLAN card cannot >function > > properly. Did I make something wrong during the installing process? How > > should I configure and install it? > > Could anyone give me a simple step-by-step guideline about installing > > Lucent WaveLAN cards and adapters on the FreeBSD 4.2 platform. Thanks! > > > > Regards, > > Wing > > >_________________________________________________________________________ > > 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 > _________________________________________________________________________ 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 17 3:11:16 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 55F4937B406 for ; Tue, 17 Jul 2001 03:11:11 -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 f6HAB5U11668; Tue, 17 Jul 2001 12:11:05 +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 f6HAB5n51997; Tue, 17 Jul 2001 12:11:05 +0200 (CEST) (envelope-from tanis@gaspode.franken.de) Received: (from tanis@localhost) by gaspode.franken.de (8.11.4/8.11.1) id f6HAB5O01351; Tue, 17 Jul 2001 12:11:05 +0200 (CEST) (envelope-from tanis) Date: Tue, 17 Jul 2001 12:11:05 +0200 From: German Tischler To: uwi mAn Cc: questions@FreeBSD.ORG Subject: Re: your mail Message-ID: <20010717121105.A1341@gaspode.franken.de> References: <20010717103909.A451@elexis.uwiland.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="BXVAT5kNtrzKuDFl" Content-Disposition: inline User-Agent: Mutt/1.2.5-current-20010403i In-Reply-To: <20010717103909.A451@elexis.uwiland.com>; from uwi@delfi.lv on Tue, Jul 17, 2001 at 10:39:09AM +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 --BXVAT5kNtrzKuDFl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jul 17, 2001 at 10:39:09AM +0000, uwi mAn wrote: > I enabled the following string in kernel, but bsd still doesnt shut the > power down :( >=20 > device apm0 at nexus? disable flags 0x20 Did you enable apm in /etc/rc.conf ? --gt --BXVAT5kNtrzKuDFl 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 iQEVAwUBO1QPOL7hO6NLB/FvAQEiDggAp3qo8WJlqS9tWhslFYy3A8wvLSkCUEey GcknE3Dqu5kTHjBf8mGC2nhQqg91ja0r93CHmKQQ1fRsgTwcs5ImLIzd2WId0erV iIS5CfgC8vdmU9FE2ndLI6KFveKN9C31Qz4ooa0XreoLMO5Gipa9JcO19jE+6oDs gcNXeRnS/vN+7qX51icSHVmfxw2R4dJ59VtALf+lzmD2y4nkhjmcSUI1d/15UoNn rbQrhHolRV35nsN580Id7n/lwjzifJl+W2YS8uL7yhfAy68OkUU4Gvq3+vj+V0T7 i6XqAxMe1z1xjnILxM6PdgF91wIGqolAEO17LAyl2UNhm9aiFzQkYA== =/CFE -----END PGP SIGNATURE----- --BXVAT5kNtrzKuDFl-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 3:22: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nwcst286.netaddress.usa.net (nwcst286.netaddress.usa.net [204.68.23.31]) by hub.freebsd.org (Postfix) with SMTP id 2420737B403 for ; Tue, 17 Jul 2001 03:22:06 -0700 (PDT) (envelope-from john_kernel@usa.net) Received: (qmail 7877 invoked by uid 60001); 17 Jul 2001 10:22:05 -0000 Message-ID: <20010717102205.7876.qmail@nwcst286.netaddress.usa.net> Received: from 204.68.23.31 by nwcst286 for [202.150.128.129] via web-mailer(34FM.0700.18.03B) on Tue Jul 17 10:22:05 GMT 2001 Date: 17 Jul 2001 04:22:05 MDT From: john kernel To: freebsd-questions@freebsd.org Subject: boot for os freebsd 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 i have a problem when i boot my freebsd from harddrive, how can i make bo= ot disk for freebsd os (not for instaltion boot disk) if from msdos-prompt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 3:27:35 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.corpex.de (mileena.corpex.de [213.61.99.25]) by hub.freebsd.org (Postfix) with ESMTP id 96C9437B401 for ; Tue, 17 Jul 2001 03:27:32 -0700 (PDT) (envelope-from philipp@corpex.de) Received: from saotome.staff.corpex.de ([213.61.99.34] helo=saotome) by mail.corpex.de with smtp (Exim 3.22 #3) id 15MS4i-00063e-00 for freebsd-questions@freebsd.org; Tue, 17 Jul 2001 12:27:32 +0200 From: =?iso-8859-1?Q?=5BCorpex=5D_-_Philipp_Gasch=FCtz?= To: Subject: Fasttrak 100 TX2 setup problems Date: Tue, 17 Jul 2001 12:26:55 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.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 Hey all! I'm trying to do a clean 4.3 install on a box that has an ATA Raid (mirror) attached to a Fasttrak 100 TX2. well... I'm only trying ;) it doesn't recognize the card at all ("unknown card") and then quits by saying "No disks found". I also already tried to use the motherboards controller, install freebsd on 1 HD, and then compile a custom kernel. However, I seem to have no luck in order to get the correct kernel config directives. Does anyone have a hint? Thanks for your help!! Philipp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 3:31:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.resfeber.se (Resfeber-gw.customer.internet5.net [195.66.48.230]) by hub.freebsd.org (Postfix) with ESMTP id 8497437B401 for ; Tue, 17 Jul 2001 03:31:50 -0700 (PDT) (envelope-from jon.molin@resfeber.se) Received: from resfeber.se ([212.75.72.9]) by mail2.resfeber.se (8.9.3/8.9.3) with ESMTP id MAA02220; Tue, 17 Jul 2001 12:54:40 +0200 Message-ID: <3B5414F0.87D5179F@resfeber.se> Date: Tue, 17 Jul 2001 12:35:28 +0200 From: Jon Molin X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: john kernel Cc: freebsd-questions@FreeBSD.ORG Subject: Re: boot for os freebsd References: <20010717102205.7876.qmail@nwcst286.netaddress.usa.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 check out http://www.freebsd.org/tutorials/multi-os/ /jon john kernel wrote: > > i have a problem when i boot my freebsd from harddrive, how can i make boot > disk for freebsd os (not for instaltion boot disk) if from msdos-prompt > > 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 17 4: 1:43 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 112BD37B401 for ; Tue, 17 Jul 2001 04:01:15 -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 MAA76581; Tue, 17 Jul 2001 12:59:37 +0200 (SAST) (envelope-from patrick@mip.co.za) From: "Patrick O'Reilly" To: Cc: "FreeBSD Question List" Subject: RE: Install problems on Compaq Date: Tue, 17 Jul 2001 13:00:21 +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.2911.0) X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal In-Reply-To: <3B540348.9B86124C@i-clue.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 Christoph, Thanks for the response, but I think something else is wrong. It has installed enough for the boot loader to attempt to load the kernel, then it dies saying: can't load 'kernel' At the 'ok' prompt I type 'lsdev' and it tells me: disk1: BIOS drive C: disk1s1a: FFS 128MB disk1s1b: swap 128MB disk1s1e: FFS 1758MB ok What's that you say about the RAM Disk not big enough? Is their something I can do about that? The PC has 32Mb RAM. Thanks, Patrick. -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Christoph Sold Sent: 17 July 2001 11:20 To: Patrick O'Reilly Cc: FreeBSD Question List Subject: Re: Install problems on Compaq Patrick O'Reilly schrieb: > > Help? > > I'm trying to install 4.2 on an old Compaq Deskpro. When trying to write > /bin and /src, etc from the CD I get errors saying that -1 bytes were > written ?!? Disk full error, isn't it? Either your partitions are too small, or your RAM disk is not big enough to unpack some binaries. > This same CD has been used to install a dozen other PCs without a hitch! > Does anyone know if there is anything special about old Compaq Deskpros (It > is a 200 MMX processor). It would do that, too. Repartition again, and keep an eye to partition sizes. On old boxes, choosing default (automatic) partition sizes causes some pretty crazy results. 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 Tue Jul 17 4:18:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web20008.mail.yahoo.com (web20008.mail.yahoo.com [216.136.225.71]) by hub.freebsd.org (Postfix) with SMTP id 1E1FD37B403 for ; Tue, 17 Jul 2001 04:18:08 -0700 (PDT) (envelope-from gavinkenny@yahoo.co.uk) Message-ID: <20010717111807.19659.qmail@web20008.mail.yahoo.com> Received: from [193.123.204.66] by web20008.mail.yahoo.com via HTTP; Tue, 17 Jul 2001 12:18:07 BST Date: Tue, 17 Jul 2001 12:18:07 +0100 (BST) From: =?iso-8859-1?q?Gavin=20Kenny?= Subject: Recommend a NIC To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I've been using a load of 3Com 509 NIC's and having the usual Buffer/Driver problems. My boss has said I can buy some new NIC's. So what does everyone suggest? They are going into old Dell Optiplexes so they can be either ISA or PCI 2.1 and I am using FreeBSD 4.1 (I don't want to upgrade as I don't access to the Internet) As far as speed in concerned 10 or 100Mbps is OK. Major need is they need to be cheap(ish) (I need 10) and available in the UK. Suggestions? Many thanks Gavin ____________________________________________________________ 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 17 4:32:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gandalf.online.bg (gandalf.online.bg [217.75.128.9]) by hub.freebsd.org (Postfix) with SMTP id 738AC37B403 for ; Tue, 17 Jul 2001 04:32:42 -0700 (PDT) (envelope-from vladislav.vladimirov@inqmy.com) Received: (qmail 17183 invoked from network); 17 Jul 2001 11:32:28 -0000 Received: from unknown (HELO vladislav) (195.138.130.2) by gandalf.online.bg with SMTP; 17 Jul 2001 11:32:28 -0000 Message-ID: <000b01c10eb4$641bf320$1bb11f0a@ent> From: "Vladislav Vladimirov" To: Subject: JDK Date: Tue, 17 Jul 2001 14:34:07 +0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0008_01C10ECD.892D81B0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0008_01C10ECD.892D81B0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi ,=20 I'm Java Developer and I have FreeBSD4.3 in HOME where would like to = try FreeBSD as a developer platform,but some of my friends says that tha = last ported JDK on FreeBSD is 1.1.8 .Is that right and if there is jdk > = 1.1.8 ,can you tell me where can I get it. =20 Best regards: = V.Vladimirov ------=_NextPart_000_0008_01C10ECD.892D81B0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi ,
  I'm Java Developer and I have = FreeBSD4.3 in=20 HOME where would like to try FreeBSD as a developer platform,but some of = my=20 friends says that tha last ported JDK on FreeBSD is 1.1.8 .Is that right = and if=20 there is jdk > 1.1.8 ,can you tell me where can I get = it.
   
          &nbs= p;            = ;            =             &= nbsp;     =20 Best regards: V.Vladimirov
------=_NextPart_000_0008_01C10ECD.892D81B0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 4:41:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dv-db.com (dv-db.com [207.159.141.95]) by hub.freebsd.org (Postfix) with ESMTP id F1B5F37B401 for ; Tue, 17 Jul 2001 04:41:09 -0700 (PDT) (envelope-from mark@dvdnews.co.uk) Received: from mark2 (host217-35-31-173.btopenworld.com [217.35.31.173]) by dv-db.com (8.9.3/8.9.3) with SMTP id MAA05015 for ; Tue, 17 Jul 2001 12:40:59 +0100 (GMT/BST) Message-ID: <004d01c10eb5$767d09e0$0200a8c0@mark2> From: "Mark Hughes" To: Subject: Data transfer logging - ppp / nat / ipfw Date: Tue, 17 Jul 2001 12:41:15 +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.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello list, I've just got my ADSL line installed, connected to my FreeBSD box, which shares the connection (currently using ppp -nat, but I may change over to natd if need be) to four windows clients. I would like to log the total amount transfered to each of the Windows clients separately, so I can see which is using the most bandwidth. How would I go about this? I think something like dummynet may have the capabilities I need, but I can't google anything out of the web that has helped - anyone got any pointers to a webpage which explains how to do this? Thanks in advance, Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 4:50:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from squid.tznet.com (squid.tznet.com [206.31.5.7]) by hub.freebsd.org (Postfix) with ESMTP id AD83537B401 for ; Tue, 17 Jul 2001 04:50:35 -0700 (PDT) (envelope-from tech@squid.tznet.com) Received: from localhost (tech@localhost) by squid.tznet.com (8.11.2/8.11.2) with ESMTP id f6HBpWt83824 for ; Tue, 17 Jul 2001 06:51:32 -0500 (CDT) Date: Tue, 17 Jul 2001 06:51:32 -0500 (CDT) From: Scott Pilz To: freebsd-questions@freebsd.org Subject: help - security check output (fwd) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Anyone can tell me what this means? kernel log messages: > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912e92 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912e92 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912e92 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912e92 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912e92 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912e92 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 0090ab9b csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 0090ab9b csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 0090ab9b csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 0090ab9b csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 0090aba5 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 0090abb1 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 0090ab9b csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 0090aba5 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 0090abb1 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 0090ab9b csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 0090aba5 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 0090abb1 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ea0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ea0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ea0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ea0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ea0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ea0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 008e6440 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 008e6440 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 008e6440 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 008e6440 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 008e6440 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 008e6440 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00902aa0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00902aa0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00902aa0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00902aa0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00902aa0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00902aa0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ec5 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ec5 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ec5 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ec5 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ec5 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ec5 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ed0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ed0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ed0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ed0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ed0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00912ed0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00902ac0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00902ac0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00902ac0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00902ac0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00902ac0 csi 00000000 > mly0: physical device 1:2 sense data received > mly0: sense key 3 asc 11 ascq 00 > mly0: info 00902ac0 csi 00000000 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 17 4:57:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hades.hell.gr (patr530-a074.otenet.gr [212.205.215.74]) by hub.freebsd.org (Postfix) with ESMTP id A822A37B403 for ; Tue, 17 Jul 2001 04:57:35 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: by hades.hell.gr (Postfix, from userid 1001) id 4DDA42CA; Tue, 17 Jul 2001 14:02:13 +0300 (EEST) Date: Tue, 17 Jul 2001 14:02:12 +0300 From: Giorgos Keramidas To: Mark Cc: freebsd-questions@freebsd.org Subject: Re: how to change SECURELEVEL back? Message-ID: <20010717140212.B1079@hades.hell.gr> References: <20010716222645.A19000@tmd.df.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010716222645.A19000@tmd.df.ru>; from mlivingstone@ottawa.com on Mon, Jul 16, 2001 at 10:26:45PM -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 From: Mark Subject: how to change SECURELEVEL back? Date: Mon, Jul 16, 2001 at 10:26:45PM -0400 > > re, > > how do go about changing securelevel from 2 back to 0 or -1? :) i've > changed it using "sysctl" but appears i can't change it back.. > > reply to e-mail please. > > thank you in advance! On a running system, you can only raise the securelevel. You can't drop it lower. If you haven't changed the kern_securelevel variable in /etc/rc.conf, a simple reboot will bring securelevel back to -1. If you have edited /etc/rc.conf and changed kern_securelevel to something higher than -1, you will need to boot in single user mode, mount the root filesystem as read-write and edit /etc/rc.conf to remove (or comment) the offending line. Then go multiuser as usual. -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 4:57:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hades.hell.gr (patr530-a074.otenet.gr [212.205.215.74]) by hub.freebsd.org (Postfix) with ESMTP id A43D137B401 for ; Tue, 17 Jul 2001 04:57:35 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: by hades.hell.gr (Postfix, from userid 1001) id 2F2592C5; Tue, 17 Jul 2001 13:57:41 +0300 (EEST) Date: Tue, 17 Jul 2001 13:57:41 +0300 From: Giorgos Keramidas To: Christoph Sold Cc: Ryan Thieme , freebsd-questions@FreeBSD.ORG Subject: Re: Post crash analysis Message-ID: <20010717135740.A1079@hades.hell.gr> References: <3B5334B2.65887DE7@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: <3B5334B2.65887DE7@i-clue.de>; from so@server.i-clue.de on Mon, Jul 16, 2001 at 08:38:42PM +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 From: Christoph Sold Subject: Re: Post crash analysis Date: Mon, Jul 16, 2001 at 08:38:42PM +0200 > Ryan Thieme schrieb: > > > > I've recently been placed in a position of senior sys admin for our > > departmental shell server, but my expertise lies in high speed circuit > > troubleshooting, so I could use a hand. > > > > We had our server crash this afternoon and I'd like to figure out why, > > however, I don't really know where to start looking. > > > > Should I be looking in or for a specific file? > > Check /var/log/messages for first hints pointing you in the right > direction. Be preparet for an enormous amount of information: wield your > more, less and grep tool before ;*) Spontaneous reboots may happen > because of bad hardware or flakey power supply, too. Even cleaning > personnel is known to cause reboots ;) True. So very true! Especially those among cleaning personnel who do not speak or understand the native language of the place >:-) To Ryan now: You might also want to check the handbook. The chapter entitled "Kernel Debugging" describes how to build a kernel with debugging information, and what to do in order to acquire a crash-dump when it crashes. Then, in "Post-Mortem Analysis of a Dump" you'll find out how this dump can be used to debug the crash. -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 5: 1:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.dignus.com (sdsl-66-80-58-206.dsl.lax.megapath.net [66.80.58.206]) by hub.freebsd.org (Postfix) with ESMTP id 004B337B401 for ; Tue, 17 Jul 2001 05:01:17 -0700 (PDT) (envelope-from rivers@dignus.com) Received: from lakes.dignus.com (lakes.dignus.com [10.0.0.3]) by gateway.dignus.com (8.11.3/8.11.3) with ESMTP id f6HC1Ep00359 for ; Tue, 17 Jul 2001 08:01:14 -0400 (EDT) (envelope-from rivers@dignus.com) Received: (from rivers@localhost) by lakes.dignus.com (8.11.3/8.11.3) id f6HC0cB40770 for freebsd-questions@freebsd.org; Tue, 17 Jul 2001 08:00:38 -0400 (EDT) (envelope-from rivers) Date: Tue, 17 Jul 2001 08:00:38 -0400 (EDT) From: Thomas David Rivers Message-Id: <200107171200.f6HC0cB40770@lakes.dignus.com> To: freebsd-questions@freebsd.org Subject: ipfw & fwd? (and natd?) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've been trying to redirect a certain port number to a telnet port on another network... It's been pointed out that natd won't do that for me; because of the "other" network issue (although, perhaps it should, hard to say.) Here's the set up: xl0 is the "outside" interface. x1l is the "inside" interface (10.0.0.x) network tun0 is the VPN interface to the other (10.1.0.x) network. I'd like to redirect incoming tcp/up connections on port 5000 via xl0 to a telnet connection on a machine in the 10.1.0.x network. So - some of us were thinking that perhaps natd, in combination with ipfw fwd would work... making a "phantom" IP address on the 10.0.0.x network. Then, natd can redirect to the "phantom" IP address, which will be forwarded to the remote one. To get specific, the remote machine is 10.1.0.11; the "phantom" IP address is 10.0.0.11. At this point, I'm just trying to get ipfw fwd to work... so, that ping/telnet/etc.. to 10.0.0.11 are forwarded to 10.1.0.11. Here's my ipfw rules: 00050 divert 8668 ip from any to any via xl0 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 06400 fwd 10.1.0.11 ip from any to 10.0.0.11 06401 fwd 10.1.0.11 ip from 10.0.0.11 to any 65000 allow ip from any to any 65535 allow ip from any to any But - that doesn't seem to work - ping seems to get into quite a mess :-) PING 10.0.0.11 (10.0.0.11): 56 data bytes 36 bytes from 10.2.0.2: Redirect Host(New addr: 10.2.0.1) Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 0054 0c81 0 0000 ff 01 9b1a 10.2.0.1 10.0.0.11 36 bytes from 10.2.0.2: Redirect Host(New addr: 10.2.0.1) Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 0054 0c81 0 0000 fd 01 9d1a 10.2.0.1 10.0.0.11 (10.2.0.1 is the VPN network - part of vpnd.) And, of course, nothing else seems to cut it... So... does anyone have examples of how to set up ipfw forwarding? (This is FreeBSD 4.3-RELEASE, by the way; and the kernel has been compiled with the IPFIREWALL_FORWARD option.) - Thanks! - - Dave Rivers - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 5:17:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.corpex.de (mileena.corpex.de [213.61.99.25]) by hub.freebsd.org (Postfix) with ESMTP id D7BAC37B401 for ; Tue, 17 Jul 2001 05:17:19 -0700 (PDT) (envelope-from pg@philipp.de.com) Received: from saotome.staff.corpex.de ([213.61.99.34] helo=saotome) by mail.corpex.de with smtp (Exim 3.22 #3) id 15MTmx-0006Sr-00; Tue, 17 Jul 2001 14:17:19 +0200 From: =?iso-8859-1?Q?Philipp_Gasch=FCtz?= To: =?iso-8859-1?Q?=5BCorpex=5D_-_Philipp_Gasch=FCtz?= , Subject: AW: Fasttrak 100 TX2 setup problems Date: Tue, 17 Jul 2001 14:16:42 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 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 Ok, what I did now: - install a fresh 4.3 on 1 disk via the motherboard controller - add the Fasttrak card to the box, add a array (mirror) with 2 disks - added the following lines to a custom kernel config: <.....> device wdc2 at isa? port 0 flags 0xa0ffa0ff device wd4 at wdc2 drive 0 device wd5 at wdc2 drive 1 device wdc3 at isa? port 0 flags 0xa0ffa0ff device wd6 at wdc3 drive 0 device wd7 at wdc3 drive 1 <.....> - compiled the kernel - sh /dev/MAKEDEV ad[4..7] - sh /dev/MAKEDEV wd[4..7] - reboot - it now recognizes the card with: ide_pci0: port 0x9400-0x940f,0x9800-0x9803,0xa000-0xa007,0xa400-0xa403,0xa800-0xa807 mem 0xf6800000-0xf680ffff irq 10 at device 9.0 on pci0 Jul 17 14:12:13 hh1 /kernel: ide_pci0: driver is using old-style compatibility shims instead of: pci0: (vendor=0x105a, dev=0x6268) at 9.0 irq 10 however, when I try to do fdisk /dev/wd[1..8] or fdisk /dev/ad[1..8] it won't find any disks... Any hints on how to make this work are very much appreciated! Thanks, Philipp > I'm trying to do a clean 4.3 install on a box that has an ATA > Raid (mirror) > attached to a Fasttrak 100 TX2. > > well... I'm only trying ;) it doesn't recognize the card at all ("unknown > card") and then quits by saying "No disks found". > > I also already tried to use the motherboards controller, install > freebsd on > 1 HD, and then compile a custom kernel. However, I seem to have no luck in > order to get the correct kernel config directives. > > Does anyone have a hint? > > Thanks for your help!! > > Philipp > > > > 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 17 5:33:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from matrix02.home.net.pl (matrix02.home.net.pl [212.85.112.2]) by hub.freebsd.org (Postfix) with SMTP id 43E0637B403 for ; Tue, 17 Jul 2001 05:32:57 -0700 (PDT) (envelope-from Waldemar.Szuba@skulski.pl) Received: from pronet.lublin.pl (HELO Waldemar?Szuba.pronet.lublin.pl) (212.182.114.146) by matrix02.home.net.pl with SMTP; 17 Jul 2001 12:34:39 -0000 From: Waldemar Szuba Date: Tue, 17 Jul 2001 12:34:19 GMT Message-ID: <20010717.12341977@Waldemar Szuba.pronet.lublin.pl> Subject: Reseller's query from Poland ref 0107003 To: freebsd-questions@FreeBSD.ORG X-Mailer: Mozilla/3.0 (compatible; StarOffice/5.2;Win32) X-Priority: 2 (High) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------=_4D4800DAD72D020ED2D8" 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 --------------=_4D4800DAD72D020ED2D8 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Hello, I am=A0 trying to order for my customer single licence for the Free BSD = Power Pack software you provide. I need to: 1. Order a license for my client's name. 2. Get it downloaded via Internet. 3. Pay with my VISA. 4. Receive a written invoice on _my_ name 5. And perhaps get a reseller's discount Please give me your price and let me know how to proceed with this=20 matter. Please respond within 7 days deadline, as I have to respond to my=20 customer. If you are unable to deliver over Internet, please make your offer based= upon UPS or DHL delivery. Please read enclosed document based upon=20 official DHL instructions, to ensure proper invoicing and avoid excessive duty an= d tax costs. Regards, Waldemar Szuba ------------------------------------------------ Software Registration Service in Poland http://cro.skulski.pl --------------=_4D4800DAD72D020ED2D8 Content-Description: filename="Invoices for Poland.html" Content-Disposition: inline; filename="Invoices for Poland.html" Content-Type: text/html; name ="Invoices for Poland.html" Content-Transfer-Encoding: quoted-printable

INVOICE REQUIREMENTS FOR SHIPMENTS TO POLAND

Based upon DHL =93Polish Import Guide=94

In addition to an airwaybill, all shipments which contain items other than documents, must be accompanied by Pro-forma or Commercial invoices as a declaration of value for customs purposes. The most important is that ONLY ORIGINAL INVOICES ARE REQUIRED, PHOTOCOPIES OR FAX COPIES ARE NOT ACCEPTED by Polish Customs. The letterhead paper is preferably for that purpose (if it is not available, invoice must be stamped with shipper's company stamp).


The following must be taken into consideration during filling in an invoice for shipments to Poland:


Full consignor's address

Mus= t be given on invoice. If the selling company is different then the shipper's company, both addresses should appear on the invoice, clearly indicating "Seller" and "Shipper".

Full consignee's address

Mus= t be detailed (name, country, city, street, no., zip code and match exaclty with AWB). If buying company is different then receiving company, both addresses should appear on the invoice, clearly indicating "Buyer/ Purchaser"and "Receiver" or "Ship to" and "Sold to".

Invoice No.

Inv= oice number must be stated and clearly marked.

Date and place

The date (when) an= d place (where) the invoice was issued must be included.

Country of origin

Cou= ntry of origin must be stated on the invoice for all items. If contents is manufactured in EU, EFTA, CEFTA statement of the exporter or EURi certificate is useful. For other countries certificate of origin is required to reduce amount of duty.

Therms of delivery (Incoterms 1990) =

The= rms of delivery (EXW,CIP,CIF,DDP, etc.) must be stated including destination or origin (e.g. CIF Warsaw, EXW Brussels). If DDP - it must be ticked of on the AWB as well.

Units

Tot= al number of units of each item must be given on invoice. "3 boxes of shoes" is invalid-it must be total number of units.

Detailed description of goods

Describing as "kits" and "sets" is insufficient. It is compulsory to list each item of the set/kit with quantity and unit value given for each of them. All details stated on the invoice must match exactly those described on AWB.

Unit value for each item

Eve= ry item must have a value. Value per single unit must be shown on the invoice. Zero values are not accepted.

Total value

Sub= totals and total values must be calculated correctly and must be true.

Separate values for software (licence) and media

To avoid excessive= duty, software(and/or licence) and physical media (CD, floppy disk etc.) should be specified on the invoice as separate items, each having its own non-zero value. In this case duty and VAT will be calculated based upon tangible goods onle. If that distinction is missing, duty and tax will be based upon total invoice value.

Currency code

The= following currency codes can be used for value indication: ATS, AUD, BEF, CAD, CHF, DEM, DKK, ESP, FIM, FRF FRH GBP GRD IEP ITL JPY,NLG,NOK,PTE,SEK,USD,EUR. Only one currency may be used on invoice. USD is recommendable.

Weight

Gro= ss or neft weigths on the invoice should be the same as on AWB and Certificate of Origin.

Signature and company stamp

Inv= oice should be signed (in original) and have a company stamp.<= /FONT>

Invoice corrections

Any= corrections (handwritten/typed) or erasures are not accepted on the invoice.

Legible invoice

Mak= e sure the invoice is fully legible (easy to read and understand).

Typed/printed invoice

Inv= oice must be typed or printed-handwritten invoices are not allowed. The same type font is compulsory to be used for: description of goods, quantities, values, weight, incoterms conditions, country of origin


--------------=_4D4800DAD72D020ED2D8-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 5:35: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dv-db.com (dv-db.com [207.159.141.95]) by hub.freebsd.org (Postfix) with ESMTP id 1E39337B403 for ; Tue, 17 Jul 2001 05:35:00 -0700 (PDT) (envelope-from mark@dvdnews.co.uk) Received: from mark2 (host217-35-31-173.btopenworld.com [217.35.31.173]) by dv-db.com (8.9.3/8.9.3) with SMTP id NAA18738 for ; Tue, 17 Jul 2001 13:34:54 +0100 (GMT/BST) Message-ID: <014d01c10ebc$fe3ee5e0$0200a8c0@mark2> From: "Mark Hughes" To: Subject: ppp -nat or natd? Date: Tue, 17 Jul 2001 13:35:10 +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.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a DSL connection, which uses PPPoA through a USB Alcatel Speedtouch "modem". I've got the modem working fine, I was just wondering if there are any benefits to switching to use natd rather than ppp -nat to gate the connection to my network of four windows clients? I'm using FreeBSD 4.3 if that makes a difference. Regards, Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 5:35:51 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 1CD1837B405 for ; Tue, 17 Jul 2001 05:35:46 -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 OAA11757; Tue, 17 Jul 2001 14:43:24 +0200 Message-ID: <3B543198.5B444F58@i-clue.de> Date: Tue, 17 Jul 2001 14:37:44 +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: Vladislav Vladimirov Cc: freebsd-questions@FreeBSD.ORG Subject: Re: JDK References: <000b01c10eb4$641bf320$1bb11f0a@ent> 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 [Your Mailer sends broken HTML EMail. Please switch to text only.] > Vladislav Vladimirov schrieb: > > Hi , > I'm Java Developer and I have FreeBSD4.3 in HOME where would like to > try FreeBSD as a developer platform,but some of my friends says that > tha last ported JDK on FreeBSD is 1.1.8 .Is that right and if there is > jdk > 1.1.8 ,can you tell me where can I get it. cd /usr/ports/java ls -l or have a look at http://www.freebsd.org/ports/java.html: Among others, there are jdk-1.1.8 Sun's Java Developers Kit jdk-1.2.2b10 Sun's Java Developers Kit jikes-1.14 A very fast Java source to byte-code compiler made available by IBM jsdk-2.0 Sun's Java Servlet Developers Kit kaffe-1.0.6 Multi-platform Java virtual machine including JIT compiler and AWT package linux-ibm-jdk-1.3.0 IBM's Java Development Kit linux-jdk-1.2.2 Blackdown Linux Java Developers Kit 1.2.2 linux-jdk-1.3.1 Sun Java Development Kit 1.3 for Linux linux-jdk-1.4.0b1 Sun's Java Developers Kit for Linux, version 1.4 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 17 5:41:37 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 7B87537B401 for ; Tue, 17 Jul 2001 05:41:32 -0700 (PDT) (envelope-from wyldephyre2@yahoo.com) Received: from ae02070.powerup.com.au (HELO warhawk) (203.147.161.70) by smtp.mail.vip.sc5.yahoo.com with SMTP; 17 Jul 2001 12:41:26 -0000 X-Apparently-From: From: "Haikal Saadh" To: "doug" , Subject: RE: Microsoft host names Date: Tue, 17 Jul 2001 22:45:36 +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) In-Reply-To: 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 I think what is happening is that there is no way for you to map between the hostnames and the ip addresses of your dhcp-configured machines. What you can do is that in addition to dhcp, you can put in dynamic dns support. This can be done with bind8 or 9 and isc-dhcpd2 or 3. See dhcpd's man pages for more info. Hope that helps. > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of doug > Sent: Tuesday, 17 July 2001 8:37 AM > To: freebsd-questions@FreeBSD.ORG > Subject: Microsoft host names > > > Hi, > > I'm using a freebsd box as a SSH gateway to VNC running on our windows > computers in our lan. > > I want this to work like: > > ssh -L 5900:microhost:5900 mybsdbox.com <-- but this don't work. > I have to > do this: > ssh -L 5900:10.4.0.189:5900 mybsdbox.com <--this is a pain in > ass but does > work. > > Now, host file won't work cuz we use dhcp. I have samba on the box, but > that lets the windows computers use computer name of bsd box, not > other way > around. > > Any help would be appreciated! Any hints? > > Doug. > > 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 5:42:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from itworks.com.au (CPE-61-9-139-253.vic.bigpond.net.au [61.9.139.253]) by hub.freebsd.org (Postfix) with SMTP id C04AC37B403 for ; Tue, 17 Jul 2001 05:42:08 -0700 (PDT) (envelope-from gavin@itworks.com.au) Received: (qmail 36379 invoked from network); 17 Jul 2001 12:42:05 -0000 Received: from unknown (HELO dale) (192.168.1.101) by chip.gav.itworks.com.au with SMTP; 17 Jul 2001 12:42:05 -0000 Message-ID: <044e01c10ebd$bd60f3a0$6501a8c0@dale> From: "Gavin Cameron" To: Subject: cvsup failing Date: Tue, 17 Jul 2001 22:41:01 +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.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, For the last week or so the cvsup of ports from cvsup.freebsd.org, cvsup.au.freebsd.org and a local cvsup mirror have been failing with the following error. Delete ports/www/jakarta-tomcat/files Updater failed: Cannot delete "/home2/src/ports/ports/www/jakarta-tomcat/files": Directory not empty This has happened on two server, both in tomcat... /home2/src/ports/ports/www/jakarta-tomcat/files does indeed have files in it: total 6 drwxr-xr-x 2 src staff 512 Jul 17 21:54 ./ drwxr-xr-x 3 src staff 512 Jul 17 21:54 ../ -rw-r--r-- 1 src staff 1240 May 21 02:08 patch-aa -rw-r--r-- 1 src staff 275 May 21 18:05 patch-ab -rwxr-xr-x 1 src staff 488 May 21 18:05 tomcat.sh* Blowing away the files subdir and cvsupping again gives the following Checkout ports/www/jakarta-tomcat/files/patch-aa Checkout ports/www/jakarta-tomcat/files/patch-ab Checkout ports/www/jakarta-tomcat/files/tomcat.sh Delete ports/www/jakarta-tomcat/files Updater failed: Cannot delete "/home2/src/ports/ports/www/jakarta-tomcat/files": Directory not empty Blowing away the jakarta-tomcat makes things work... until the next time cvsup runs and the whole problem start again! I'm running cvsup 16.1 on both servers. Both machine are recent 4.3-STABLEs. Help! Thanks in advance, Gavin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 5:44:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.resfeber.se (Resfeber-gw.customer.internet5.net [195.66.48.230]) by hub.freebsd.org (Postfix) with ESMTP id B7F9537B401 for ; Tue, 17 Jul 2001 05:44:55 -0700 (PDT) (envelope-from jon.molin@resfeber.se) Received: from resfeber.se ([212.75.72.9]) by mail2.resfeber.se (8.9.3/8.9.3) with ESMTP id PAA03862 for ; Tue, 17 Jul 2001 15:08:18 +0200 Message-ID: <3B543441.E8153B50@resfeber.se> Date: Tue, 17 Jul 2001 14:49:05 +0200 From: Jon Molin 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: sb vibra 16 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 Hi list, I've got some problem with an old sb vibra card: bash-2.04$ dmesg |grep -A 1 BRA16 sbc0: at port 0x220-0x22f,0x300-0x301,0x388-0x38b irq 9 drq 1,5 on isa0 pcm0: on sbc0 in my kernel configfile i've got: device pcm device sbc as it says in the handbook (i've also tried with: device pcm device sbc0 at isa? port 0x220 irq 9 drq 1 flags 0x15 ) the sndstat file says all's fine: bash-2.04$ cat /dev/sndstat FreeBSD Audio Driver (newpcm) Jul 12 2001 14:50:59 Installed devices: pcm0: at io 0x220 irq 9 drq 1:5 (1p/1r channels duplex) jmo# sh MAKEDEV snd0 jmo# seems to work fine as well. Now the problem is that there's no 'real' sound. I just hear a short very loud noise and then silence again when i do jmo# cat /home/jmo/sound.au > /dev/dsp Any suggestions? /jon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 5:54:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f124.law3.hotmail.com [209.185.241.124]) by hub.freebsd.org (Postfix) with ESMTP id 0B7C637B405; Tue, 17 Jul 2001 05:54:05 -0700 (PDT) (envelope-from drinkster3@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 17 Jul 2001 05:54:04 -0700 Received: from 195.74.96.17 by lw3fd.law3.hotmail.msn.com with HTTP; Tue, 17 Jul 2001 12:54:04 GMT X-Originating-IP: [195.74.96.17] From: "Richard Drinkwater" To: questions@freebsd.org, ports@freebsd.org Subject: Ports Collection Aspell/Pspell compile problems Date: Tue, 17 Jul 2001 13:54:04 +0100 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 17 Jul 2001 12:54:04.0783 (UTC) FILETIME=[8F3DF7F0:01C10EBF] Sender: owner-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 problems making the ports collection versions of aspell and pspell work. If I try to run a program that users aspell via pspell I get an error message reading "Unable to load aspell module", however the aspell library is working correctly so far as I know, since the command-line interface is working. Specifically I'm trying to use the PHP extension with pspell but having no luck. Does anyone have any ideas? Richard Drinkwater _________________________________________________________________________ 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 17 5:54:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dv-db.com (dv-db.com [207.159.141.95]) by hub.freebsd.org (Postfix) with ESMTP id CA4EB37B401 for ; Tue, 17 Jul 2001 05:54:02 -0700 (PDT) (envelope-from mark@dvdnews.co.uk) Received: from mark2 (host217-35-31-173.btopenworld.com [217.35.31.173]) by dv-db.com (8.9.3/8.9.3) with SMTP id NAA24640; Tue, 17 Jul 2001 13:53:51 +0100 (GMT/BST) Message-ID: <016801c10ebf$a4855b30$0200a8c0@mark2> From: "Mark Hughes" To: "Waldemar Szuba" , References: <20010717.12341977@Waldemar Szuba.pronet.lublin.pl> Subject: Re: Reseller's query from Poland ref 0107003 Date: Tue, 17 Jul 2001 13:54:06 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-2" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a freebsd support mailing list, not related to sales of the Power Pack. You can download the ISO for the operating system from one of the mirrors listed on www.freebsd.org, or order the Power Pack (or a release CD) from a number of retailers, including www.freebsdmall.com. FreeBSD does not require a licence to be purchased for it's use. Hope this helps, Mark ----- Original Message ----- From: "Waldemar Szuba" To: Sent: Tuesday, July 17, 2001 1:34 PM Subject: Reseller's query from Poland ref 0107003 Hello, I am trying to order for my customer single licence for the Free BSD Power Pack software you provide. I need to: 1. Order a license for my client's name. 2. Get it downloaded via Internet. 3. Pay with my VISA. 4. Receive a written invoice on _my_ name 5. And perhaps get a reseller's discount Please give me your price and let me know how to proceed with this matter. Please respond within 7 days deadline, as I have to respond to my customer. If you are unable to deliver over Internet, please make your offer based upon UPS or DHL delivery. Please read enclosed document based upon official DHL instructions, to ensure proper invoicing and avoid excessive duty and tax costs. Regards, Waldemar Szuba ------------------------------------------------ Software Registration Service in Poland http://cro.skulski.pl --------------------------------------------------------------------------- ----- INVOICE REQUIREMENTS FOR SHIPMENTS TO POLAND Based upon DHL "Polish Import Guide" In addition to an airwaybill, all shipments which contain items other than documents, must be accompanied by Pro-forma or Commercial invoices as a declaration of value for customs purposes. The most important is that ONLY ORIGINAL INVOICES ARE REQUIRED, PHOTOCOPIES OR FAX COPIES ARE NOT ACCEPTED by Polish Customs. The letterhead paper is preferably for that purpose (if it is not available, invoice must be stamped with shipper's company stamp). The following must be taken into consideration during filling in an invoice for shipments to Poland: Full consignor's address Must be given on invoice. If the selling company is different then the shipper's company, both addresses should appear on the invoice, clearly indicating "Seller" and "Shipper". Full consignee's address Must be detailed (name, country, city, street, no., zip code and match exaclty with AWB). If buying company is different then receiving company, both addresses should appear on the invoice, clearly indicating "Buyer/ Purchaser"and "Receiver" or "Ship to" and "Sold to". Invoice No. Invoice number must be stated and clearly marked. Date and place The date (when) and place (where) the invoice was issued must be included. Country of origin Country of origin must be stated on the invoice for all items. If contents is manufactured in EU, EFTA, CEFTA statement of the exporter or EURi certificate is useful. For other countries certificate of origin is required to reduce amount of duty. Therms of delivery (Incoterms 1990) Therms of delivery (EXW,CIP,CIF,DDP, etc.) must be stated including destination or origin (e.g. CIF Warsaw, EXW Brussels). If DDP - it must be ticked of on the AWB as well. Units Total number of units of each item must be given on invoice. "3 boxes of shoes" is invalid-it must be total number of units. Detailed description of goods Describing as "kits" and "sets" is insufficient. It is compulsory to list each item of the set/kit with quantity and unit value given for each of them. All details stated on the invoice must match exactly those described on AWB. Unit value for each item Every item must have a value. Value per single unit must be shown on the invoice. Zero values are not accepted. Total value Subtotals and total values must be calculated correctly and must be true. Separate values for software (licence) and media To avoid excessive duty, software(and/or licence) and physical media (CD, floppy disk etc.) should be specified on the invoice as separate items, each having its own non-zero value. In this case duty and VAT will be calculated based upon tangible goods onle. If that distinction is missing, duty and tax will be based upon total invoice value. Currency code The following currency codes can be used for value indication: ATS, AUD, BEF, CAD, CHF, DEM, DKK, ESP, FIM, FRF FRH GBP GRD IEP ITL JPY,NLG,NOK,PTE,SEK,USD,EUR. Only one currency may be used on invoice. USD is recommendable. Weight Gross or neft weigths on the invoice should be the same as on AWB and Certificate of Origin. Signature and company stamp Invoice should be signed (in original) and have a company stamp. Invoice corrections Any corrections (handwritten/typed) or erasures are not accepted on the invoice. Legible invoice Make sure the invoice is fully legible (easy to read and understand). Typed/printed invoice Invoice must be typed or printed-handwritten invoices are not allowed. The same type font is compulsory to be used for: description of goods, quantities, values, weight, incoterms conditions, country of origin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 6:32:23 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 AB33537B403 for ; Tue, 17 Jul 2001 06:32:20 -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 f6HDVCZ13469; Tue, 17 Jul 2001 06:31:12 -0700 (PDT) Date: Tue, 17 Jul 2001 06:31:11 -0700 (PDT) From: Laurence Berland To: "Andrew C. Hornback" Cc: Ted Mittelstaedt , Morsal Roudbay , J S , Giorgos Keramidas , freebsd-questions@FreeBSD.ORG Subject: RE: [Re: spammers] In-Reply-To: <000101c10e69$1ebf6820$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 Mon, 16 Jul 2001, Andrew C. Hornback wrote: > > The easy answer... look at any FreeBSD CD from Wind River. > > questions@freebsd.org is the official support e-mail address now. To make > it a closed e-mail address for subscribers only would be discouraging to > newbies that have to ask questions and don't understand what a mailing list > is. This has been the case for a long long time, as long as I've known about FreeBSD. The web site says to send questions here, the CDs say it, and it's what everyone tells people to do. L: > > --- Andy > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > Laurence Berland http://www.isp.northwestern.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 17 6:35: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from clientmail.realtime.co.uk (simian.ehsrealtime.com [213.52.146.137]) by hub.freebsd.org (Postfix) with ESMTP id 0D4B337B403 for ; Tue, 17 Jul 2001 06:34:50 -0700 (PDT) (envelope-from waynep@pan.ehsrealtime.com) Received: from pan.ehsrealtime.com ([213.52.146.196]) by clientmail.realtime.co.uk with esmtp (Exim 3.20 #1) id 15MUzs-0001Om-01 for freebsd-questions@freebsd.org; Tue, 17 Jul 2001 14:34:44 +0100 Received: from waynep by pan.ehsrealtime.com with local (Exim 3.22 #1) id 15MUzF-00025x-00 for freebsd-questions@freebsd.org; Tue, 17 Jul 2001 14:34:05 +0100 From: Wayne Pascoe To: freebsd-questions@freebsd.org Subject: Mon Reply-To: wayne.pascoe@realtime.co.uk Date: 17 Jul 2001 14:34:04 +0100 Message-ID: <868zhnznlf.fsf@pan.ehsrealtime.com> Lines: 25 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 trying to install mon on my monitoring server. Does anyone have any experience / comments on running this under FreeBSD ? As part of installing mon, I am installing fping. ./configure goes fine, but running (or gmake) outputs... $ make CONFIG_FILES= CONFIG_HEADERS=./config.h ./config.status creating ./config.h gcc -c -DHAVE_CONFIG_H -I. -I. -I. -g -O2 fping.c fping.c:222: conflicting types for `sys_errlist' /usr/include/stdio.h:225: previous declaration of `sys_errlist' *** Error code 1 Stop in /home/waynep/src/fping-2.2b1. Does anyone know how to get around this ? -- - 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 17 6:38:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.resfeber.se (Resfeber-gw.customer.internet5.net [195.66.48.230]) by hub.freebsd.org (Postfix) with ESMTP id 811FB37B403 for ; Tue, 17 Jul 2001 06:38:37 -0700 (PDT) (envelope-from jon.molin@resfeber.se) Received: from resfeber.se ([212.75.72.9]) by mail2.resfeber.se (8.9.3/8.9.3) with ESMTP id QAA04521 for ; Tue, 17 Jul 2001 16:02:01 +0200 Message-ID: <3B5440D7.C0AD7D96@resfeber.se> Date: Tue, 17 Jul 2001 15:42:47 +0200 From: Jon Molin 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: sb vibra 16 problem References: <3B543441.E8153B50@resfeber.se> 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 Got it working, it was my bios that gave irq 9 to the blaster and 5 to my usb. Switching them did the trick /jon Jon Molin wrote: > > Hi list, > > I've got some problem with an old sb vibra card: > bash-2.04$ dmesg |grep -A 1 BRA16 > sbc0: at port 0x220-0x22f,0x300-0x301,0x388-0x38b > irq 9 drq 1,5 on isa0 > pcm0: on sbc0 > > in my kernel configfile i've got: > device pcm > device sbc > as it says in the handbook > (i've also tried with: > device pcm > device sbc0 at isa? port 0x220 irq 9 drq 1 flags 0x15 > ) > > the sndstat file says all's fine: > bash-2.04$ cat /dev/sndstat > FreeBSD Audio Driver (newpcm) Jul 12 2001 14:50:59 > Installed devices: > pcm0: at io 0x220 irq 9 drq 1:5 (1p/1r channels duplex) > > jmo# sh MAKEDEV snd0 > jmo# > seems to work fine as well. > > Now the problem is that there's no 'real' sound. I just hear a short > very loud noise and then silence again when i do > jmo# cat /home/jmo/sound.au > /dev/dsp > > Any suggestions? > > /jon > > 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 17 7: 5:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from po4.wam.umd.edu (po4.wam.umd.edu [128.8.10.166]) by hub.freebsd.org (Postfix) with ESMTP id 9BB7C37B406 for ; Tue, 17 Jul 2001 07:05:17 -0700 (PDT) (envelope-from culverk@wam.umd.edu) Received: from rac1.wam.umd.edu (IDENT:root@rac1.wam.umd.edu [128.8.10.141]) by po4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id KAA13525; Tue, 17 Jul 2001 10:05:10 -0400 (EDT) Received: from rac1.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id KAA27753; Tue, 17 Jul 2001 10:05:10 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id KAA27749; Tue, 17 Jul 2001 10:05:10 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Tue, 17 Jul 2001 10:05:10 -0400 (EDT) From: Kenneth Wayne Culver To: Jon Molin Cc: freebsd-questions@FreeBSD.ORG Subject: Re: sb vibra 16 problem In-Reply-To: <3B543441.E8153B50@resfeber.se> 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 try catting that sound to /dev/audio /dev/dsp is for programs like xmms, you can't cat audio directly to it. On Tue, 17 Jul 2001, Jon Molin wrote: > Hi list, > > I've got some problem with an old sb vibra card: > bash-2.04$ dmesg |grep -A 1 BRA16 > sbc0: at port 0x220-0x22f,0x300-0x301,0x388-0x38b > irq 9 drq 1,5 on isa0 > pcm0: on sbc0 > > in my kernel configfile i've got: > device pcm > device sbc > as it says in the handbook > (i've also tried with: > device pcm > device sbc0 at isa? port 0x220 irq 9 drq 1 flags 0x15 > ) > > the sndstat file says all's fine: > bash-2.04$ cat /dev/sndstat > FreeBSD Audio Driver (newpcm) Jul 12 2001 14:50:59 > Installed devices: > pcm0: at io 0x220 irq 9 drq 1:5 (1p/1r channels duplex) > > > jmo# sh MAKEDEV snd0 > jmo# > seems to work fine as well. > > > Now the problem is that there's no 'real' sound. I just hear a short > very loud noise and then silence again when i do > jmo# cat /home/jmo/sound.au > /dev/dsp > > Any suggestions? > > > /jon > > 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 17 7:18: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mx7.port.ru (mx7.port.ru [194.67.23.44]) by hub.freebsd.org (Postfix) with ESMTP id 1B02B37B403 for ; Tue, 17 Jul 2001 07:18:00 -0700 (PDT) (envelope-from saltanov@mail.ru) Received: from as0-l112.kiev.sovam.net.ua ([212.109.45.112] helo=comp) by mx7.port.ru with smtp (Exim 3.14 #1) id 15MVfi-0002WA-00; Tue, 17 Jul 2001 18:17:58 +0400 Message-ID: <001301c10ecb$08995120$702d6dd4@comp> From: "Vladislav Saltanov" To: "Ian Dowse" Cc: References: <200107171051.aa18834@salmon.maths.tcd.ie> Subject: Re: I can't mount FAT16 disk - Now I can :-) Date: Tue, 17 Jul 2001 17:16:10 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2417.2000 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 After #kldunload msdos All works properly: #mount_msdos /dev/ad0s4 /mnt # :-) However, it loads the module 'msdos.ko' afresh. Then if I dismount this disk, I should unload 'msdos.ko' again before I can mount anything else. However, if at least one 'dos'disk is being mounted, the second and others mounts without any problems. Thank you very much. ----- Original Message ----- From: Ian Dowse To: Vladislav Saltanov Sent: Tuesday, July 17, 2001 12:51 PM Subject: Re: I can't mount FAT16 disk > In message <001301c10ea1$e9cf8760$c2326dd4@comp>, Vladislav Saltanov writes: > > >> What is the output from the "kldstat" program? > > > >ID Refs Address Size Name > > 1 11 0xc0100000 346718 kernel > > 3 1 0xc0450000 e518 msdos.ko > > Ok, the msdos module seems to be loaded, but I think support for > msdos filestems is built into the kernel by default, so this should > not be necessary. > > Are you by any chance loading the msdos module from the loader or > via a line in /boot/loader.conf? If so, try removing that line. > > Maybe also try > > kldunload msdos > > and retry the mount, but I'm not sure if that will work. > > Ian > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 7:27: 3 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 1AF3F37B405 for ; Tue, 17 Jul 2001 07:27:01 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 94113 invoked by uid 100); 17 Jul 2001 14:27:00 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15188.19252.343240.851549@guru.mired.org> Date: Tue, 17 Jul 2001 09:27:00 -0500 To: Heiner Strauss Cc: questions@freebsd.org Subject: Re: Zope and module new problem (Zope doesn't start) In-Reply-To: <97325739@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 Heiner Strauss types: > Hi, > > I have a Problem with Zope. The makefile is: [...] > line 1, in ? > ImportError: No module named new > > Where can I find the module new ? It's in the Python distribution, but is normally not built. The FreeBSD ports enable it by default. If you installed python from ports, updating your port should make it show up. If you installed python "by hand", you can either delete that and install the port, or edit the Python config file to enable the module. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 7:39:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailout1.nyroc.rr.com (mailout1-0.nyroc.rr.com [24.92.226.81]) by hub.freebsd.org (Postfix) with ESMTP id 7A9C537B401 for ; Tue, 17 Jul 2001 07:39:43 -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 mailout1.nyroc.rr.com (8.11.2/RoadRunner 1.03) with SMTP id f6HEcR120019; Tue, 17 Jul 2001 10:38:28 -0400 (EDT) Content-Type: text/plain; charset="iso-8859-1" From: Justin C Sherrill To: questions@freebsd.org Subject: Re: Recommend a NIC Date: Tue, 17 Jul 2001 10:45:26 -0400 X-Mailer: KMail [version 1.2] References: <20010717111807.19659.qmail@web20008.mail.yahoo.com> In-Reply-To: <20010717111807.19659.qmail@web20008.mail.yahoo.com> Cc: Gavin Kenny MIME-Version: 1.0 Message-Id: <01071710452601.00402@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 Tuesday 17 July 2001 07:18, you wrote: > My boss has said I can buy some new NIC's. So what > does everyone suggest? Other than the occasional glitch, there's very little difference between Ethernet cards by manufacturer. Find a cheap one (or 10, in your case), make sure it's supported, and you will probably be OK. The difference between, say, a 3Com card and a generic card with a RealTek chipset is only the price. My workplace (cable ISP) installs/supplies several hundred Ethernet cards each week to new customers, and the average results have borne this out. Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 7:50:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from yertle.kciLink.com (yertle.kcilink.com [216.194.193.105]) by hub.freebsd.org (Postfix) with ESMTP id 1EB1137B41D for ; Tue, 17 Jul 2001 07:50:14 -0700 (PDT) (envelope-from khera@kcilink.com) Received: from onceler.kciLink.com (onceler.kciLink.com [216.194.193.106]) by yertle.kciLink.com (Postfix) with ESMTP id 62EE92E45F; Tue, 17 Jul 2001 10:50:13 -0400 (EDT) Received: (from khera@localhost) by onceler.kciLink.com (8.11.4/8.11.4) id f6HEoDK62656; Tue, 17 Jul 2001 10:50:13 -0400 (EDT) (envelope-from khera@kcilink.com) X-Authentication-Warning: onceler.kciLink.com: khera set sender to khera@kcilink.com using -f To: Gary Kline , questions@freebsd.org Newsgroups: ml.freebsd.questions Subject: Re: how to change SECURELEVEL back? References: <20010716222645.A19000@tmd.df.ru> <20010716201525.A34642@tao.thought.org> From: Vivek Khera Date: 17 Jul 2001 10:50:07 -0400 Message-ID: Organization: Khera Communications, Inc., Rockville, MD Lines: 23 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) In-Reply-To: <20010716201525.A34642@tao.thought.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Posted-To: ml.freebsd.questions Sender: owner-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 following message is a courtesy copy of an article that has been posted to ml.freebsd.questions as well. >>>>> "GK" == Gary Kline writes: GK> On Mon, Jul 16, 2001 at 10:26:45PM -0400, Mark wrote: >> >> re, >> >> how do go about changing securelevel from 2 back to 0 or -1? :) i've changed it using "sysctl" but appears i can't >> change it back.. >> >> reply to e-mail please. >> GK> Shutdown to signle-user; then reset the value in rc.conf; then ^D GK> back up. Won't work. You *must* reboot. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Vivek Khera, Ph.D. Khera Communications, Inc. Internet: khera@kciLink.com Rockville, MD +1-240-453-8497 AIM: vivekkhera Y!: vivek_khera http://www.khera.org/~vivek/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 7:56:13 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 1E3C137B406 for ; Tue, 17 Jul 2001 07:56:11 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 94778 invoked by uid 100); 17 Jul 2001 14:56:09 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15188.21001.910316.306262@guru.mired.org> Date: Tue, 17 Jul 2001 09:56:09 -0500 To: Mark V Bermal Cc: questions@freebsd.org Subject: Re: Olympus/Smart Media/USB Camera In-Reply-To: <116228174@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 Mark V Bermal types: > Hello, > > I am in the market for a digital camera, and some of the models I have > looked at are from Olympus, which uses SmartMedia (not Compact Flash) as > the memory and also USB is available. I searched the archives and found > that a certain Sandisk Compact Flash reader works on FBSD using USB (as a > umass device), but has anyone found a working reader (or one that more > than likely will work) for reading SmartMedia cards? Alternatively, has > anyone hooked up an Olympus camera through USB directly using the umass > device? What is the filesystem on the cards? As other have stated, the file system is FAT. I've got an Olympus camera, and use a Fujitsu SM-R2 reader - the SM-R1 has also been reported to work - to read the SmartMedia cards from it. You have to use camcontrol eject to get the drive to stop being "ready" so you can take the card out. That's a minor inconvenience, and makes me wish that "mount" had an "eject" option. If you've got a SCSI system, there are other headaches, but those are shared by all the USB media readers. > P.S. Please cc me a reply, I am not on the list. That's SOP on the list. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 7:58:44 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 492C637B408 for ; Tue, 17 Jul 2001 07:58:41 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 94866 invoked by uid 100); 17 Jul 2001 14:58:40 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15188.21152.724481.930384@guru.mired.org> Date: Tue, 17 Jul 2001 09:58:40 -0500 To: GH Cc: questions@freebsd.org, "Jerry Murdock" Subject: Re: Softupdates Negatives? In-Reply-To: <8807778@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 GH types: > On Mon, Jul 09, 2001 at 08:11:22PM -0400, some SMTP stream spewed forth: > > Is there any reason NOT to use softupdates? > > > > Everything I've read is only positive, save a couple of warnings in a 7/2000 > > readme about chronically full file systems and multiple processes deleting > > large numbers of files. Neither of these would apply. > One of the reasons is less certainty of integrity than async or > sync sync. Isn't that half backwards? I thought softupdates had better integrity than async, though not as good as sync. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 8:14:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imf08bis.bellsouth.net (mail008.mail.bellsouth.net [205.152.58.28]) by hub.freebsd.org (Postfix) with ESMTP id ED16337B403 for ; Tue, 17 Jul 2001 08:14:26 -0700 (PDT) (envelope-from jmurdock@itraktech.com) Received: from dc12 ([208.61.49.80]) by imf08bis.bellsouth.net (InterMail vM.5.01.01.01 201-252-104) with SMTP id <20010717151519.IHJA28581.imf08bis.bellsouth.net@dc12>; Tue, 17 Jul 2001 11:15:19 -0400 Message-ID: <017c01c10ed3$28dc5060$0201a8c0@bellsouth.net> From: "Jerry Murdock" To: "Justin C Sherrill" , Cc: "Gavin Kenny" References: <20010717111807.19659.qmail@web20008.mail.yahoo.com> <01071710452601.00402@roc-24-169-96-227.rochester.rr.com> Subject: Re: Recommend a NIC Date: Tue, 17 Jul 2001 11:08:50 -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.2479.0006 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2479.0006 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG But I have been bitten twice with situations where RealTek's caused BSODs under NT. Considering I usually stick with Intel/3com, that's a fairly high percentage. The first case was isolated, but reproducible, the second case is a commonly known issue for iMail (an NT SMTP/POP/IMAP... server) users. It's probably just a problem with the Windoze driver, and unlikely to affect FreeBSD, but the incidents were over a year apart, and the problems went away with other NICs. It's not worth the time to deal with problems, so I usually spend the extra $40 and get Intel for servers. I'm less picky about workstations. Jerry ----- Original Message ----- From: "Justin C Sherrill" To: Cc: "Gavin Kenny" Sent: Tuesday, July 17, 2001 10:45 AM Subject: Re: Recommend a NIC > On Tuesday 17 July 2001 07:18, you wrote: > > > My boss has said I can buy some new NIC's. So what > > does everyone suggest? > > Other than the occasional glitch, there's very little difference between > Ethernet cards by manufacturer. Find a cheap one (or 10, in your case), make > sure it's supported, and you will probably be OK. > > The difference between, say, a 3Com card and a generic card with a RealTek > chipset is only the price. My workplace (cable ISP) installs/supplies > several hundred Ethernet cards each week to new customers, and the average > results have borne this out. > > Justin > > 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 17 8:16:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web20010.mail.yahoo.com (web20010.mail.yahoo.com [216.136.225.73]) by hub.freebsd.org (Postfix) with SMTP id 3102B37B405 for ; Tue, 17 Jul 2001 08:16:20 -0700 (PDT) (envelope-from gavinkenny@yahoo.co.uk) Message-ID: <20010717151619.49830.qmail@web20010.mail.yahoo.com> Received: from [193.123.204.66] by web20010.mail.yahoo.com via HTTP; Tue, 17 Jul 2001 16:16:19 BST Date: Tue, 17 Jul 2001 16:16:19 +0100 (BST) From: =?iso-8859-1?q?Gavin=20Kenny?= Subject: Re: Recommend a NIC To: Justin C Sherrill , questions@freebsd.org Cc: Gavin Kenny In-Reply-To: <01071710452601.00402@roc-24-169-96-227.rochester.rr.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 The trouble with the 3Com 509 is that it uses the ep driver, which according to the archives of this list, is flakey and I keep getting "No Buffer space Available" messages which I have been told is down to the ep driver. If this isn't the case and someone knows how to fix it without using another type of NIC (and therefore driver) please let me know. Cheers Gavin --- Justin C Sherrill wrote: > On Tuesday 17 July 2001 07:18, you wrote: > > > My boss has said I can buy some new NIC's. So what > > does everyone suggest? > > Other than the occasional glitch, there's very > little difference between > Ethernet cards by manufacturer. Find a cheap one > (or 10, in your case), make > sure it's supported, and you will probably be OK. > > The difference between, say, a 3Com card and a > generic card with a RealTek > chipset is only the price. My workplace (cable ISP) > installs/supplies > several hundred Ethernet cards each week to new > customers, and the average > results have borne this out. > > Justin ____________________________________________________________ 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 17 8:23: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web9302.mail.yahoo.com (web9302.mail.yahoo.com [216.136.129.51]) by hub.freebsd.org (Postfix) with SMTP id 0F44F37B406 for ; Tue, 17 Jul 2001 08:23:01 -0700 (PDT) (envelope-from radhika_narendran@yahoo.com) Message-ID: <20010717152300.20571.qmail@web9302.mail.yahoo.com> Received: from [199.66.15.252] by web9302.mail.yahoo.com via HTTP; Tue, 17 Jul 2001 08:23:00 PDT Date: Tue, 17 Jul 2001 08:23:00 -0700 (PDT) From: Radhika Sambamurti Subject: Mounting cdrom - failing To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I am trying to mount my cdrom drive and every time I give the command: mount -t cd9660 /dev/cd0a /cdrom it comes back with the error: cd9660: device not configured I also tried it with /dev/cd1a and /dev/cd1b. the mount for cdrom line is not present in my fstab file. Any help on this would be appreciated. Thanks, Radhika. ===== 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 Tue Jul 17 8:28:33 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 7DE5E37B403 for ; Tue, 17 Jul 2001 08:28:29 -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 A99B1462027E; Tue, 17 Jul 2001 08:28:27 -0700 Message-ID: <3B54599B.644DF3B5@urx.com> Date: Tue, 17 Jul 2001 08:28:27 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Gavin Cameron Cc: freebsd-questions@FreeBSD.ORG Subject: Re: cvsup failing References: <044e01c10ebd$bd60f3a0$6501a8c0@dale> 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 Gavin Cameron wrote: > > Hi all, > > For the last week or so the cvsup of ports from cvsup.freebsd.org, > cvsup.au.freebsd.org and a local cvsup mirror have been failing with the > following error. > > Delete ports/www/jakarta-tomcat/files > Updater failed: Cannot delete > "/home2/src/ports/ports/www/jakarta-tomcat/files": Directory not empty > > This has happened on two server, both in tomcat... > See the fix almost at the bottom of http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27495 Kent -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 8:37:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.ottawa.com (mail.ottawa.com [209.217.94.166]) by hub.freebsd.org (Postfix) with ESMTP id AC15837B403; Tue, 17 Jul 2001 08:37:28 -0700 (PDT) (envelope-from 18923@mail.ottawa.com) Received: (from ottawa@localhost) by mail.ottawa.com (8.9.2-aidan/8.9.2) id LAA00182; Tue, 17 Jul 2001 11:47:01 -0400 (EDT) Date: Tue, 17 Jul 2001 11:47:01 -0400 (EDT) Message-Id: <200107171547.LAA00182@mail.ottawa.com> To: Ruslan Ermilov From: Mark Livingstone Subject: Re: how to change SECURELEVEL back? Cc: freebsd-questions@FreeBSD.ORG X-Account: 18923 X-Sender-IP: 24.43.203.140 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 re, what's DDB? thanks. On Jul 17, Ruslan Ermilov wrote: > > > On Mon, Jul 16, 2001 at 10:26:45PM -0400, Mark wrote: > > > > re, > > > > how do go about changing securelevel from 2 back to 0 or -1? :) > > i've changed it using "sysctl" but appears i can't change it back.. > > > > reply to e-mail please. > > > If you have DDB compiled in, that should be pretty easy. > > > Cheers, > -- > Ruslan Ermilov Oracle Developer/DBA, > ru@sunbay.com Sunbay Software AG, > ru@FreeBSD.org FreeBSD committer, > +380.652.512.251 Simferopol, Ukraine > > http://www.FreeBSD.org The Power To Serve > http://www.oracle.com Enabling The Information Age > > Get your Free email at http://mail.ottawa.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 17 8:37:54 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 B025637B406 for ; Tue, 17 Jul 2001 08:37:49 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 98129 invoked by uid 100); 17 Jul 2001 15:37:49 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15188.23500.936661.82769@guru.mired.org> Date: Tue, 17 Jul 2001 10:37:48 -0500 To: Louis LeBlanc Cc: questions@freebsd.org Subject: Re: ARRGH Netscape stinks! In-Reply-To: <21096630@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 Louis LeBlanc types: > You know, I have to agree. Unfortunately many of the alternatives are > pretty unstable. I would like to see a basic web browser that handles > current java/script, css, HTML/1.? etc without being so bloated that > it is unusable and unstable enough to make surfing a nightmare. JavaScript is a security nightmare. Java isn't quit so bad, but CERT recommends turning them both off. I turn off Flash because I haven't had time to investigate the security issues. > Preferably, this hypothetical browser would let me *choose* my own > mail client (there's a new concept). No, there's an *old* concept. Ibrowse did that back in 97 or so. Of course, IBrowse pretty much did *everything* right as far as the user was concerned. To bad it doesn't run on Unix. w3m is in the ports tree, and lets you choose a mail client. Also your editor for multiline input fields, and up to three external browsers. > Maybe the FreeBSD community should get together and define the > 'perfect' web client? Then maybe someone would actually write one for > a change. As far as I'm concerned, the web browser should be > mousable (web browsers are the only thing that bring me to my mouse > anymore), but should be completely workable from the keyboard - one > advantage to Lynx. Still sounds like w3m to me. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 8:38:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.ottawa.com (mail.ottawa.com [209.217.94.166]) by hub.freebsd.org (Postfix) with ESMTP id 3839437B401; Tue, 17 Jul 2001 08:38:16 -0700 (PDT) (envelope-from 18923@mail.ottawa.com) Received: (from ottawa@localhost) by mail.ottawa.com (8.9.2-aidan/8.9.2) id LAA00298; Tue, 17 Jul 2001 11:47:47 -0400 (EDT) Date: Tue, 17 Jul 2001 11:47:47 -0400 (EDT) Message-Id: <200107171547.LAA00298@mail.ottawa.com> To: Ruslan Ermilov From: Mark Livingstone Subject: Re: how to change SECURELEVEL back? Cc: freebsd-questions@FreeBSD.ORG X-Account: 18923 X-Sender-IP: 24.43.203.140 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 re, what's DDB? thanks. On Jul 17, Ruslan Ermilov wrote: > > > On Mon, Jul 16, 2001 at 10:26:45PM -0400, Mark wrote: > > > > re, > > > > how do go about changing securelevel from 2 back to 0 or -1? :) > > i've changed it using "sysctl" but appears i can't change it back.. > > > > reply to e-mail please. > > > If you have DDB compiled in, that should be pretty easy. > > > Cheers, > -- > Ruslan Ermilov Oracle Developer/DBA, > ru@sunbay.com Sunbay Software AG, > ru@FreeBSD.org FreeBSD committer, > +380.652.512.251 Simferopol, Ukraine > > http://www.FreeBSD.org The Power To Serve > http://www.oracle.com Enabling The Information Age > > Get your Free email at http://mail.ottawa.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 17 8:42:27 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 D5A0937B405 for ; Tue, 17 Jul 2001 08:42:23 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 18005 invoked by uid 100); 17 Jul 2001 15:42:22 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15188.23771.128210.907073@guru.mired.org> Date: Tue, 17 Jul 2001 10:42:19 -0500 To: Eric Boucher Cc: questions@freebsd.org Subject: Re: Giving some restriction to some user In-Reply-To: <131691525@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 Eric Boucher types: > Hi everyone, > > I wanted to know if there is a way to give some user > access to read, write or execute some files even if > these users are not in the same group as mine. I heard > that there is something like this on AIX machines, a > program called acl???? or something like that. Access Control Lists (acl) is a facility, not a program. It's been added to a number of Unix variants. There are some signs that some kind of acl facility will be in 5.0, but there's nothing in 4. Ryan Thompson gave provided a nice writeup on using standard unix facilities for doing this. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 8:44:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 07DA837B403 for ; Tue, 17 Jul 2001 08:44:22 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.2/8.11.2) id f6HFgcu22114; Tue, 17 Jul 2001 18:42:38 +0300 (EEST) (envelope-from ru) Date: Tue, 17 Jul 2001 18:42:38 +0300 From: Ruslan Ermilov To: Mark Livingstone Cc: freebsd-questions@FreeBSD.ORG Subject: Re: how to change SECURELEVEL back? Message-ID: <20010717184238.C16518@sunbay.com> Mail-Followup-To: Mark Livingstone , freebsd-questions@FreeBSD.ORG References: <200107171547.LAA00182@mail.ottawa.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200107171547.LAA00182@mail.ottawa.com>; from mlivingstone@ottawa.com on Tue, Jul 17, 2001 at 11:47:01AM -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 17, 2001 at 11:47:01AM -0400, Mark Livingstone wrote: > re, > > what's DDB? > Ask this question to your box. :-) $ whatis ddb ddb(4) - interactive kernel debugger Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 8:45:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from transporter.cybertours.com (transporter.cybertours.com [208.130.42.17]) by hub.freebsd.org (Postfix) with ESMTP id 57EF437B406; Tue, 17 Jul 2001 08:45:39 -0700 (PDT) (envelope-from misterb@cybertours.com) Received: from pretorian (skywalker.cybertours.com [208.130.43.221]) by transporter.cybertours.com (8.9.3/8.9.1) with SMTP id LAA28468; Tue, 17 Jul 2001 11:45:38 -0400 (EDT) Message-ID: <001201c10ed7$7db29e60$0eb4a8c0@pretorian> From: "Brent Bailey" To: "Ruslan Ermilov" , "Mark Livingstone" Cc: References: <200107171547.LAA00182@mail.ottawa.com> Subject: Re: how to change SECURELEVEL back? Date: Tue, 17 Jul 2001 11:45:22 -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.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG you can change it by editing /etc/rc.conf with the lines kern_securelevel="0" kern_securelevel_enable="NO" B ----- Original Message ----- From: Mark Livingstone To: Ruslan Ermilov Cc: Sent: Tuesday, July 17, 2001 11:47 AM Subject: Re: how to change SECURELEVEL back? re, what's DDB? thanks. On Jul 17, Ruslan Ermilov wrote: > > > On Mon, Jul 16, 2001 at 10:26:45PM -0400, Mark wrote: > > > > re, > > > > how do go about changing securelevel from 2 back to 0 or -1? :) > > i've changed it using "sysctl" but appears i can't change it back.. > > > > reply to e-mail please. > > > If you have DDB compiled in, that should be pretty easy. > > > Cheers, > -- > Ruslan Ermilov Oracle Developer/DBA, > ru@sunbay.com Sunbay Software AG, > ru@FreeBSD.org FreeBSD committer, > +380.652.512.251 Simferopol, Ukraine > > http://www.FreeBSD.org The Power To Serve > http://www.oracle.com Enabling The Information Age > > Get your Free email at http://mail.ottawa.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 17 8:46: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-1.enteract.com (smtp-1.enteract.com [207.229.143.33]) by hub.freebsd.org (Postfix) with ESMTP id 83C2F37B406 for ; Tue, 17 Jul 2001 08:45:58 -0700 (PDT) (envelope-from dscheidt@tumbolia.com) Received: from shell-2.enteract.com (shell-2.enteract.com [207.229.143.41]) by smtp-1.enteract.com (Postfix) with ESMTP id AA40B6E3F; Tue, 17 Jul 2001 10:45:56 -0500 (CDT) Date: Tue, 17 Jul 2001 10:45:56 -0500 (CDT) From: David Scheidt X-X-Sender: To: Mark Livingstone Cc: Subject: Re: how to change SECURELEVEL back? In-Reply-To: <200107171547.LAA00182@mail.ottawa.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, 17 Jul 2001, Mark Livingstone wrote: :re, : :what's DDB? : :thanks. Please don't top post. DDB is the kernel debugger. If you don't know what it is, you're going to to break things trying to use it to set the securelevel. Much safer, and easier to reboot into singleuser mode, fix rc.conf, and bring it to multiuser. -- dscheidt@tumbolia.com Bipedalism is only a fad. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 8:46:32 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 0061437B401 for ; Tue, 17 Jul 2001 08:46:22 -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.3) with SMTP id f6HFhRo84704; Tue, 17 Jul 2001 11:43:27 -0400 (EDT) (envelope-from freymann@scaryg.shacknet.nu) Message-ID: <02d001c10ed7$aac80fc0$0f01a8c0@phantom> From: "Gerald T. Freymann" To: "Radhika Sambamurti" , References: <20010717152300.20571.qmail@web9302.mail.yahoo.com> Subject: Re: Mounting cdrom - failing Date: Tue, 17 Jul 2001 11:46:38 -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 am trying to mount my cdrom drive and every time I give > the command: mount -t cd9660 /dev/cd0a /cdrom > it comes back with the error: cd9660: device not configured Try: mount_cd9660 /dev/acd0c /cdrom Also, why not create (as root) the following two files? in /usr/local/bin create a file called "cdin" with two lines #!/bin/sh mount_cd9660 /dev/acd0c /cdrom Then: chmod 744 /usr/local/bin/cdin Now you can insert a CD, type "cdin" and voila. Alternatively, to unmount the sucker.. in /usr/local/bin create a file called "cdout" with these 3 lines: #!/bin/sh umount /cdrom cdcontrol -f /dev/acd0c eject Then: chmod 744 /usr/local/bin/cdout Now you can type "cdout" and voila (taken from freebsd cheat cheats site I believe http://www.mostgraveconcern.com/freebsd/) -gf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 8:48:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cpimssmtpu04.email.msn.com (cpimssmtpu04.email.msn.com [207.46.181.80]) by hub.freebsd.org (Postfix) with ESMTP id 7926A37B401 for ; Tue, 17 Jul 2001 08:48:20 -0700 (PDT) (envelope-from john-n-judy@msn.com) Received: from desktop ([63.44.161.171]) by cpimssmtpu04.email.msn.com with Microsoft SMTPSVC(5.0.2195.3225); Tue, 17 Jul 2001 08:48:06 -0700 Reply-To: From: "john-n-judy" To: Subject: Newbie, X server not working. Date: Tue, 17 Jul 2001 10:52:01 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 X-OriginalArrivalTime: 17 Jul 2001 15:48:06.0913 (UTC) FILETIME=[DF3C8F10:01C10ED7] Sender: owner-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 the user w/xwindow distribution 4.2 successfully except for one thing. I cannot get the xwindows to start. When I was in the X86Config through /stand/sysinstall, it recognized my mouse and I was configuring it in an xwindow environment, but when trying to start xwindows, it could not do it. I have an ATI All in wonder video card. I used the Mach64 drivers like it specified, but still no luck. Any ideas for this newbie? I really want to switch over to Unix/Linux from Windows. Any help would greatly be appreciated. John Ellison john-n-judy@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 17 8:55: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 63C6937B405 for ; Tue, 17 Jul 2001 08:55:38 -0700 (PDT) (envelope-from Michael.Pelletier@sycamorenet.com) Received: by coconut.sycamorenet.com with Internet Mail Service (5.5.2653.19) id <3YX8VT07>; Tue, 17 Jul 2001 11:51:32 -0400 Message-ID: <4993EB20A01FD411B22700D0B77CF68801D394FF@ash.sycamorenet.com> From: "Pelletier, Michael" To: "'freebsd-questions@freebsd.org'" Subject: Thinking about buying two CPU Tyan Thunder K7... Date: Tue, 17 Jul 2001 12:02:41 -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 Has anyone heard anything negative about the new Thunder K7 (S2462) with two ADM Athlon CPUs? I would really appreciate any responses as I am thinking about buying one. Please help as this server with be place at a location far from me... 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 17 8:57:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web11705.mail.yahoo.com (web11705.mail.yahoo.com [216.136.172.71]) by hub.freebsd.org (Postfix) with SMTP id 3AD8337B403 for ; Tue, 17 Jul 2001 08:57:29 -0700 (PDT) (envelope-from tperlin@yahoo.com) Message-ID: <20010717155729.27212.qmail@web11705.mail.yahoo.com> Received: from [64.81.48.149] by web11705.mail.yahoo.com via HTTP; Tue, 17 Jul 2001 08:57:29 PDT Date: Tue, 17 Jul 2001 08:57:29 -0700 (PDT) From: Tim Erlin Subject: Re: Newbie, X server not working. To: john-n-judy@msn.com, 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 Do you see any error messages in the terminal after it crashes? Does it crash, or just hang? XFree86 was the hardest thing for me to get set up as a newbie. It was a good learning moment... --Tim --- john-n-judy wrote: > I installed the user w/xwindow distribution 4.2 > successfully except for one > thing. I cannot get the xwindows to start. When I > was in the X86Config > through /stand/sysinstall, it recognized my mouse > and I was configuring it > in an xwindow environment, but when trying to start > xwindows, it could not > do it. I have an ATI All in wonder video card. I > used the Mach64 drivers > like it specified, but still no luck. Any ideas for > this newbie? I really > want to switch over to Unix/Linux from Windows. Any > help would greatly be > appreciated. > John Ellison > john-n-judy@msn.com > > > 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 Tue Jul 17 9: 6: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tmd.df.ru (cr775576-e.rchrd1.on.wave.home.com [24.43.202.49]) by hub.freebsd.org (Postfix) with ESMTP id AF64037B409 for ; Tue, 17 Jul 2001 09:06:00 -0700 (PDT) (envelope-from tmd@tmd.df.ru) Received: by tmd.df.ru (Postfix, from userid 1000) id BDC5C7A4F; Tue, 17 Jul 2001 12:05:56 -0400 (EDT) Date: Tue, 17 Jul 2001 12:05:56 -0400 From: Mark To: freebsd-questions@freebsd.org Subject: how could this PACKET get through?! Message-ID: <20010717120556.A28512@tmd.df.ru> Mail-Followup-To: Mark , freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.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 Re, I am blocking most incoming icmp traffic: icmp-type 0 icmp-type unreach code 3 icmp-type unreach code 4 icmp-type timex also.. im running jail, but icmp doesn't work from there.. how could this packet get through my firewall: Jul 17 05:12:53 ml ipmon[18381]: 05:12:52.177910 2x ed0 @0:35 p 0.so-3-0-0.XR1.ATL1.ALTER.NET -> jail PR icmp len 20 56 icmp 11/0 for jail,3366 - 63.108.161.50,1439 PR tcp len 20 40 IN Please, reply by e-mail. thanks in advance! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 9:10: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from shell.tsoft.com (shell.tsoft.com [198.144.192.5]) by hub.freebsd.org (Postfix) with ESMTP id E8EB637B40B for ; Tue, 17 Jul 2001 09:10:02 -0700 (PDT) (envelope-from ekr@shell.tsoft.com) Received: (from ekr@localhost) by shell.tsoft.com (8.8.7/8.8.7) id JAA17010 for freebsd-questions@freebsd.org; Tue, 17 Jul 2001 09:10:02 -0700 (PDT) Date: Tue, 17 Jul 2001 09:10:02 -0700 (PDT) From: Eric Rescorta Message-Id: <200107171610.JAA17010@shell.tsoft.com> To: freebsd-questions@freebsd.org Subject: Lockups with AOpen/AK73 Pro(A) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I just installed FreeBSD on my machine, an Athlon 1.2 with an AOpen AK73 Pro(A) mobo. Unfortunately, I see an enormous number of hard lockups that can only be fixed with the reset key. The only consistent pattern I've been able to find is that it gets worse under heavy load (like kernel compiles). On the other hand I've seen it happen when the machine was essentially idle and several times during the install Has anyone else seen anything like this? Were you able to fix it? Any ideas? Machine: Athlon 1.2 AOpen AK73 Pro(A) (KT133 chipset) 256 megs of ram (CAS 2) Adaptec 29160 Seagate ST31840LW S3/Trio AGP video card Operating system: 4.3-RELEASE 4.2-RELEASE Thanks in advance, -Ekr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 9:19:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id 5994337B401 for ; Tue, 17 Jul 2001 09:19:40 -0700 (PDT) (envelope-from jcm@freebsd-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97] ident=root) by probity.mcc.ac.uk with esmtp (Exim 2.05 #7) id 15MXZS-000EGg-00 for freebsd-questions@freebsd.org; Tue, 17 Jul 2001 17:19:38 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.3/8.11.1) id f6HGJbc62017 for freebsd-questions@freebsd.org; Tue, 17 Jul 2001 17:19:37 +0100 (BST) (envelope-from jcm) Date: Tue, 17 Jul 2001 17:19:37 +0100 From: j mckitrick To: freebsd-questions@freebsd.org Subject: any benefits to XFree86 4 on a laptop? Message-ID: <20010717171937.A61988@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 No fancy graphics chips or anything, I just wondered if it is more efficient, stable, or otherwise better. jcm -- o-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-o | ~~~~~~~~~~~~ Jonathon McKitrick ~~~~~~~~~~~~~ | | "I prefer the term 'Artificial Person' myself." | o-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-o To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 9:21:53 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 7A68C37B408 for ; Tue, 17 Jul 2001 09:21:45 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id B78AC55407; Tue, 17 Jul 2001 09:19:06 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id A7EFC51610; Tue, 17 Jul 2001 09:19:06 -0700 (PDT) Date: Tue, 17 Jul 2001 09:19:06 -0700 (PDT) From: Linh Pham To: "Pelletier, Michael" Cc: "'freebsd-questions@freebsd.org'" Subject: Re: Thinking about buying two CPU Tyan Thunder K7... In-Reply-To: <4993EB20A01FD411B22700D0B77CF68801D394FF@ash.sycamorenet.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-17, Pelletier, Michael scribbled: # Has anyone heard anything negative about the new Thunder K7 (S2462) with two # ADM Athlon CPUs? I would really appreciate any responses as I am thinking # about buying one. Please help as this server with be place at a location far # from me... The motherboard requires a case that can house an extended ATX motherboard (since the form factor of the Thunder K7 is quite larger than your typical Athlon motherboard) and requires a proprietary power supply. The motherboard also requires Registered ECC PC2100 DDR SDRAM modules (which are a little bit more expensive than your standard DDR SDRAM modules). Of the reviews that I have read, make sure that if you do choose to get the motherboard that you upgrade the BIOS to at least version 2.0 and that you need to keep IDE cables to about 18" (some people have run into issues with 24" IDE cables). The northbridge gets very hot (it comes with an integrated heat spreader, but no heatsink or fan) and you might be able to stick on a small heatsink with strong thermal tape to help cool it 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 Tue Jul 17 9:24:21 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 4ADD437B405 for ; Tue, 17 Jul 2001 09:24:17 -0700 (PDT) (envelope-from j.carlson@snet.net) Received: from ENKIL ([204.60.24.243]) by mx2.snet.net (8.11.1/8.11.1/SNET-mx-1.4/D-1.10/O-1.7) with SMTP id f6HGOFq12217 for ; Tue, 17 Jul 2001 12:24:15 -0400 (EDT) Message-ID: <01a501c10edd$28330c80$020aa8c0@ENKIL> From: "Jae Carlson" To: "freebsd-questions" Subject: Metworking Date: Tue, 17 Jul 2001 12:25:55 -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, I have FreeBSD 4.2 installed on a P 133 with 48 megs ram it is networked to an Windows XP beta and a Windows98 SE machine. Thew problem is that I am not sure how to set up the samba for FreeBSD, although I am familar with Linux's Samba. The FreeBSD box is accessable via putty, a ssh client for windows, but I have been un able o get shares working on the FreeBSD box. Another problem that I have is I can ping the FBSD box with Windows XP but it can not ping the XP box. It has no problem pinging the 98 SE box. Any help would be appressiated. 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 Tue Jul 17 9:30:16 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 7AF7337B406 for ; Tue, 17 Jul 2001 09:30: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 542D5177; Tue, 17 Jul 2001 08:29:57 -0800 (AKDT) Content-Type: text/plain; charset="iso-8859-1" From: Beech Rintoul To: "Ted Mittelstaedt" , "Morsal Roudbay" Subject: Re: [Re: spammers] Date: Tue, 17 Jul 2001 08:29:57 -0800 X-Mailer: KMail [version 1.2] Cc: "J S" , "Giorgos Keramidas" , References: <000901c10e68$98d88980$1401a8c0@tedm.placo.com> In-Reply-To: <000901c10e68$98d88980$1401a8c0@tedm.placo.com> MIME-Version: 1.0 Message-Id: <01071708295700.03664@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 16 July 2001 06:31 pm, Ted Mittelstaedt wrote: > >-----Original Message----- > > From: owner-freebsd-questions@FreeBSD.ORG > > >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Morsal Roudbay > >Sent: Monday, July 16, 2001 4:04 AM > > > >Ted, > >As u say, the ISPs dont bother if they get a single complaint.. that's > > what I have experienced... I really dont see why this list cant be > > closed, feel free to explain why it would work better open as it is now.. > > I frankly don't have a preference myself - however I don't run this list. > While I could concoct reasons why it is open I really don't know why the > list maintainer has chosen it to be open. I do know that managing the > servers and this list does create work for somebody, and I wouldn't > presume to tell that person how to do their job unless I was prepared to > take it over. ;-) > > Let me point out one thing though - since the list is publically searchable > there's nothing preventing a spammer from harvesting lots of juicy e-mail > addresses from the archives. While blocking spam from the list does have > a certain attraction, it's like sticking a finger in a dike made of Swiss > cheese. > > Just a FYI - I've written plenty of material on various sites on how to > block spam, if you want to pursue some of it I can give you the links > offline. One thing I've come to the conclusion is that nothing works > as well as content filtering. After all, how many legitimate piece of > mail do you get that contain the string "This message sent in accordance > with the federal regulations (insert ficticious house bill number here)" > or containing the word "cum" (is that even a word?) However content > filtering is very political to a number of people who don't like the > Big Brotherish aspect or are afraid that even the most carefully > constructed filtration database will block legitimate mail. > > When given a choice between constructing a system where the onus is on the > users to do something, or the onus is on the administrator to do something, > the BSD folks have generally opted for local control over administrative > control. This is a paradigm thing and your not going to change it. System > V by contrast to BSD has voted for the strong administrative control. So I > guess it's no surprise that the BSD mailing lists are set up to where the > onus is on the users to block spam if they so choose. Inefficient, > perhaps, but there's a certain freedom to that system that isn't present in > one where filtering was done at the central mailing host. > > Ted Mittelstaedt > tedm@toybox.placo.com Author of: The FreeBSD > Corporate Networker's Guide Book website: > http://www.freebsd-corp-net-guide.com > While it may be true that some ISP's don't respond to spam complaints, most take the problem seriously. As an example here's a response I received this morning: On Mon, Jul 16, 2001 at 09:22:59 -0800, Beech Rintoul wrote: > Hello, > The spammer below is either using your resources to send out bulk > unsolicited commercial e-mail ("spam") or is deceptively trying to make it > look like he is. In either case, a legitimate company like yours probably > would not approve. The information below should be all you need. > > Beech Rintoul - IT Manager Hello Mr. Rintoul, thank you for the important message. Some our customers have a problem with your own Mailserver (relaying problem). We ask to for apology. We set appropriate filters for the three Mailserver of our customers. Excuse me and a nice day from Hamburg -[ Germany] Sascha Wilkniss If we don't complain the problem isn't going to get better. 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 Tue Jul 17 9:31:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from blade.elitsat.net (blade.elitsat.net [209.239.78.129]) by hub.freebsd.org (Postfix) with ESMTP id BF8A837B401 for ; Tue, 17 Jul 2001 09:31:17 -0700 (PDT) (envelope-from amour@blade.elitsat.net) Received: from localhost (amour@localhost) by blade.elitsat.net (8.11.3/8.11.3) with ESMTP id f6HGV5V31977 for ; Tue, 17 Jul 2001 19:31:06 +0300 (EEST) (envelope-from amour@blade.elitsat.net) Date: Tue, 17 Jul 2001 19:31:05 +0300 (EEST) From: Alexander To: Subject: YAMAHA OPL3-SAx Message-ID: <20010717192806.M31946-100000@blade.elitsat.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a YAMAHA (isa) card on my PC and I want to make it running I precompiled the kernel, adding the "device opl0 at isa? port 0x388" but when the kernel was compiling I get the error: linking kernel isa_compat.o(.data+0xc): undefined reference to `opldriver' *** Error code 1 P.S. include my mail when you reply because i'm not subscribed for the mailing list. 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 17 9:39:48 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 D9C5037B405 for ; Tue, 17 Jul 2001 09:39:44 -0700 (PDT) (envelope-from uwi@delfi.lv) Received: from delfi.lv (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 TAA04638 for ; Tue, 17 Jul 2001 19:39:43 +0300 Date: Tue, 17 Jul 2001 19:40:35 +0000 From: uwi mAn To: questions@freebsd.org Subject: Re: shutdown -p now doesnt work Message-ID: <20010717194035.A460@elexis.uwiland.com> References: <20010717103909.A451@elexis.uwiland.com> <20010717180540.W70499@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit In-Reply-To: <20010717180540.W70499@wantadilla.lemis.com>; from grog@FreeBSD.org on Tue, Jul 17, 2001 at 08:35:40 +0000 X-Mailer: Balsa 1.1.3 Lines: 23 Sender: owner-freebsd-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.17 08:35 Greg Lehey wrote: > On Tuesday, 17 July 2001 at 10:39:09 +0000, uwi mAn wrote: > > I enabled the following string in kernel, but bsd still doesnt shut > > the power down :( > > Based on this statement, the first question would be "do you have a > computer?". More information would be helpful. > > > device apm0 at nexus? disable flags 0x20 > > > > Any ideas? > > Ever wondered what the 'disable' keyword does? Yeah,right ;-) I removed that keyword....now bsd shuts the power down quite nicely. whats done: compiled the kernel with "device apm0" then "added apmd_enable="YES"" to etc/rc.conf 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 Tue Jul 17 9:43:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailout01.sul.t-online.de (mailout01.sul.t-online.com [194.25.134.80]) by hub.freebsd.org (Postfix) with ESMTP id 3825C37B403 for ; Tue, 17 Jul 2001 09:43:42 -0700 (PDT) (envelope-from reichmuth@web.de) Received: from fwd06.sul.t-online.de by mailout01.sul.t-online.de with smtp id 15MXwj-0006Zj-01; Tue, 17 Jul 2001 18:43:41 +0200 Received: from sunrise.cs.uni-bonn.de (520055305743-0001@[217.80.167.240]) by fmrl06.sul.t-online.com with esmtp id 15MXwT-0480X2C; Tue, 17 Jul 2001 18:43:25 +0200 Received: from 192.168.0.23 (dojo.wg [192.168.0.23]) by sunrise.cs.uni-bonn.de (8.11.1/8.9.3) with ESMTP id f6HHwdn00395 for ; Tue, 17 Jul 2001 19:58:39 +0200 (CEST) (envelope-from reichmuth@web.de) Date: Tue, 17 Jul 2001 18:49:05 +0200 From: Philipp Reichmuth X-Mailer: The Bat! (v1.51) Personal Reply-To: Philipp Reichmuth X-Priority: 3 (Normal) Message-ID: <1094291862.20010717184905@web.de> To: questions@freebsd.org Subject: Unicode support MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Sender: 520055305743-0001@t-dialin.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello Questions crew, I am wondering how far we have got with Unicode support under FreeBSD; i.e. can I use Unicode (UTF8) as input encoding as an alternative to, say, the various ISO 8859-x variants, on the following levels in the system: - Filesystem (Does FFS support UTF8? The only necessity, in theory, for UTF8 support in the filesystem is that it allows for every character except NULL to occur in filenames. I'm no FFS expert, though.) - System console (Does the system console support UTF8 screen output and/or keystroke conversion? Is UTF8 available as an input encoding on the console? Can I use unicode-based locales?) - X Windows (Can I use an unicode xterm, even when the system console does NOT support unicode?) Thanks in advance Philipp mailto:reichmuth@web.de __________________________ The code was willing / It considered your request / But the chips were weak To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 9:48:12 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 B276237B405 for ; Tue, 17 Jul 2001 09:47:59 -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 f6HGjWt98775; Tue, 17 Jul 2001 13:45:38 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Tue, 17 Jul 2001 13:45:32 -0300 (ART) From: Fernando Gleiser To: Mark Cc: Subject: Re: how could this PACKET get through?! In-Reply-To: <20010717120556.A28512@tmd.df.ru> Message-ID: <20010717134041.G96585-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 Without knowing your firewall rules it is difficult to tell, but a good guess is you are keeping state on the outgoing connections and the icmp packet was in response to one of those outgoing connections. Fer On Tue, 17 Jul 2001, Mark wrote: > Re, > > I am blocking most incoming icmp traffic: > > icmp-type 0 > icmp-type unreach code 3 > icmp-type unreach code 4 > icmp-type timex > > also.. im running jail, but icmp doesn't work from there.. how could this packet get through my firewall: > > Jul 17 05:12:53 ml ipmon[18381]: 05:12:52.177910 2x ed0 @0:35 p 0.so-3-0-0.XR1.ATL1.ALTER.NET -> jail PR icmp len 20 > 56 icmp 11/0 for jail,3366 - 63.108.161.50,1439 PR tcp len 20 40 IN > > Please, reply by e-mail. > > thanks in advance! > > > 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 17 9:51:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp012.mail.yahoo.com (smtp012.mail.yahoo.com [216.136.173.32]) by hub.freebsd.org (Postfix) with SMTP id 570E837B401 for ; Tue, 17 Jul 2001 09:51:25 -0700 (PDT) (envelope-from malmoeksjo@yahoo.com) Received: from h249n2fls33o912.telia.com (HELO smtp.mail.yahoo.com) (213.67.34.249) by smtp.mail.vip.sc5.yahoo.com with SMTP; 17 Jul 2001 16:51:24 -0000 X-Apparently-From: From: LOVE nberg Bernt To: freebsd-questions@freebsd.org Subject: One Card Express Date: 17 Jul 2001 18:55:07 +0200 Expiry-Date: 26 Jun 2001 00:28:00 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_M6ljls4s_mkbkqJPD_MA" Message-Id: <20010717165125.570E837B401@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 ------=_M6ljls4s_mkbkqJPD_MA Content-Type: text/plain Content-Transfer-Encoding: 8bit -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- (This safeguard is not inserted when using the registered version) -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- (This safeguard is not inserted when using the registered version) -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- ------=_M6ljls4s_mkbkqJPD_MA Content-Type: text/html Content-Transfer-Encoding: 8bit Ny sida 3
Special offer for freebsd-questions@freebsd.org
- here it is - check it out!
------=_M6ljls4s_mkbkqJPD_MA-- _________________________________________________________ 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 17 9:53:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from grumpy.dyndns.org (user-24-214-76-217.knology.net [24.214.76.217]) by hub.freebsd.org (Postfix) with ESMTP id AB98237B406 for ; Tue, 17 Jul 2001 09:53:52 -0700 (PDT) (envelope-from dkelly@grumpy.dyndns.org) Received: (from dkelly@localhost) by grumpy.dyndns.org (8.11.3/8.11.4) id f6HGrkb18807; Tue, 17 Jul 2001 11:53:46 -0500 (CDT) (envelope-from dkelly) Date: Tue, 17 Jul 2001 11:53:46 -0500 From: David Kelly To: Mike Meyer Cc: questions@FreeBSD.ORG Subject: Re: ARRGH Netscape stinks! Message-ID: <20010717115346.A18795@grumpy.dyndns.org> References: <21096630@toto.iv> <15188.23500.936661.82769@guru.mired.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <15188.23500.936661.82769@guru.mired.org>; from mwm@mired.org on Tue, Jul 17, 2001 at 10:37:48AM -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 17, 2001 at 10:37:48AM -0500, Mike Meyer wrote: > > JavaScript is a security nightmare. Java isn't quit so bad, but CERT > recommends turning them both off. I turn off Flash because I haven't > had time to investigate the security issues. Uh, don't you have Java and Javascript crossed? -- David Kelly N4HHE, dkelly@hiwaay.net ===================================================================== The human mind ordinarily operates at only ten percent of its capacity -- the rest is overhead for the operating system. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 11: 6:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.ottawa.com (mail.ottawa.com [209.217.94.166]) by hub.freebsd.org (Postfix) with ESMTP id C37E937B403 for ; Tue, 17 Jul 2001 11:06:40 -0700 (PDT) (envelope-from 18923@mail.ottawa.com) Received: (from ottawa@localhost) by mail.ottawa.com (8.9.2-aidan/8.9.2) id OAA19997; Tue, 17 Jul 2001 14:15:52 -0400 (EDT) Date: Tue, 17 Jul 2001 14:15:52 -0400 (EDT) Message-Id: <200107171815.OAA19997@mail.ottawa.com> To: Fernando Gleiser From: Mark Livingstone Subject: Re: how could this PACKET get through?! Cc: X-Account: 18923 X-Sender-IP: 24.43.203.140 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 thank for your reply. perhaps you're right "pass out quick on ed0 proto icmp from any to any keep state keep frags" might be doing it, right? here are my rules: ***************************************************************** block in log on ed0 count in on ed0 all count out on ed0 all block in log quick on ed0 proto tcp from any to any flags SF/SFRA block in log quick on ed0 proto tcp from any to any flags /SFRA block in quick on ed0 all with ipopts block in quick on ed0 all with short block in quick on ed0 all with frag block in quick on ed0 all with opt lsrr block in quick on ed0 all with opt ssrr block in log quick on ed0 proto tcp from any port = 80 to any port > 1023 flags F/F block in log quick on ed0 proto tcp from any port = 80 to any port > 1023 flags R/R block in log quick on ed0 proto tcp from any to any flags FUP block in log quick on ed0 from 192.168.0.0/16 to any block in log quick on ed0 from 172.16.0.0/12 to any block in log quick on ed0 from 127.0.0.0/8 to any block in log quick on ed0 proto udp from 0.0.0.0/32 to any port = 67 block in log quick on ed0 proto udp from 0.0.0.0/32 to any port = 68 block in log quick on ed0 proto udp from 255.255.255.255/32 to any port = 67 block out log quick on ed0 from any to 192.168.0.0/16 block out log quick on ed0 from any to 172.16.0.0/12 block out log quick on ed0 from any to 127.0.0.0/8 pass in log quick on ed0 proto icmp from any to any icmp-type 0 pass in log quick on ed0 proto icmp from any to any icmp-type unreach code 3 pass in log quick on ed0 proto icmp from any to any icmp-type unreach code 4 pass in log quick on ed0 proto icmp from any to any icmp-type timex pass out quick on ed0 proto icmp from any to any keep state keep frags block in log quick on ed0 # final 'catch all' rules block in log quick on all block out log quick on all ***************************************************************** On Jul 17, Fernando Gleiser wrote: > > > Without knowing your firewall rules it is difficult to tell, but a good > guess is you are keeping state on the outgoing connections and the icmp > packet was in response to one of those outgoing connections. > > > Fer > > > On Tue, 17 Jul 2001, Mark wrote: > > > Re, > > > > I am blocking most incoming icmp traffic: > > > > icmp-type 0 > > icmp-type unreach code 3 > > icmp-type unreach code 4 > > icmp-type timex > > > > also.. im running jail, but icmp doesn't work from there.. how could this packet get through my firewall: > > > > Jul 17 05:12:53 ml ipmon[18381]: 05:12:52.177910 2x ed0 @0:35 p 0.so-3-0- 0.XR1.ATL1.ALTER.NET -> jail PR icmp len 20 > > 56 icmp 11/0 for jail,3366 - 63.108.161.50,1439 PR tcp len 20 40 IN > > > > Please, reply by e-mail. > > > > thanks in advance! > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > Get your Free email at http://mail.ottawa.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 17 11: 7:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.ottawa.com (mail.ottawa.com [209.217.94.166]) by hub.freebsd.org (Postfix) with ESMTP id 2F51A37B408 for ; Tue, 17 Jul 2001 11:07:05 -0700 (PDT) (envelope-from 18923@mail.ottawa.com) Received: (from ottawa@localhost) by mail.ottawa.com (8.9.2-aidan/8.9.2) id OAA20052; Tue, 17 Jul 2001 14:16:22 -0400 (EDT) Date: Tue, 17 Jul 2001 14:16:22 -0400 (EDT) Message-Id: <200107171816.OAA20052@mail.ottawa.com> To: Fernando Gleiser From: Mark Livingstone Subject: Re: how could this PACKET get through?! Cc: X-Account: 18923 X-Sender-IP: 24.43.203.140 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 thank for your reply. perhaps you're right "pass out quick on ed0 proto icmp from any to any keep state keep frags" might be doing it, right? here are my rules: ***************************************************************** block in log on ed0 count in on ed0 all count out on ed0 all block in log quick on ed0 proto tcp from any to any flags SF/SFRA block in log quick on ed0 proto tcp from any to any flags /SFRA block in quick on ed0 all with ipopts block in quick on ed0 all with short block in quick on ed0 all with frag block in quick on ed0 all with opt lsrr block in quick on ed0 all with opt ssrr block in log quick on ed0 proto tcp from any port = 80 to any port > 1023 flags F/F block in log quick on ed0 proto tcp from any port = 80 to any port > 1023 flags R/R block in log quick on ed0 proto tcp from any to any flags FUP block in log quick on ed0 from 192.168.0.0/16 to any block in log quick on ed0 from 172.16.0.0/12 to any block in log quick on ed0 from 127.0.0.0/8 to any block in log quick on ed0 proto udp from 0.0.0.0/32 to any port = 67 block in log quick on ed0 proto udp from 0.0.0.0/32 to any port = 68 block in log quick on ed0 proto udp from 255.255.255.255/32 to any port = 67 block out log quick on ed0 from any to 192.168.0.0/16 block out log quick on ed0 from any to 172.16.0.0/12 block out log quick on ed0 from any to 127.0.0.0/8 pass in log quick on ed0 proto icmp from any to any icmp-type 0 pass in log quick on ed0 proto icmp from any to any icmp-type unreach code 3 pass in log quick on ed0 proto icmp from any to any icmp-type unreach code 4 pass in log quick on ed0 proto icmp from any to any icmp-type timex pass out quick on ed0 proto icmp from any to any keep state keep frags block in log quick on ed0 # final 'catch all' rules block in log quick on all block out log quick on all ***************************************************************** On Jul 17, Fernando Gleiser wrote: > > > Without knowing your firewall rules it is difficult to tell, but a good > guess is you are keeping state on the outgoing connections and the icmp > packet was in response to one of those outgoing connections. > > > Fer > > > On Tue, 17 Jul 2001, Mark wrote: > > > Re, > > > > I am blocking most incoming icmp traffic: > > > > icmp-type 0 > > icmp-type unreach code 3 > > icmp-type unreach code 4 > > icmp-type timex > > > > also.. im running jail, but icmp doesn't work from there.. how could this packet get through my firewall: > > > > Jul 17 05:12:53 ml ipmon[18381]: 05:12:52.177910 2x ed0 @0:35 p 0.so-3-0- 0.XR1.ATL1.ALTER.NET -> jail PR icmp len 20 > > 56 icmp 11/0 for jail,3366 - 63.108.161.50,1439 PR tcp len 20 40 IN > > > > Please, reply by e-mail. > > > > thanks in advance! > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > Get your Free email at http://mail.ottawa.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 17 11:14:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailonline.cultonline.culturainglesaonline.int (214-122-188-200.corp.rj.psinet.com.br [200.188.122.214]) by hub.freebsd.org (Postfix) with ESMTP id CC3BA37B403 for ; Tue, 17 Jul 2001 11:14:47 -0700 (PDT) (envelope-from guilherme.sanchez@culturainglesaonline.com) Received: by mailonline.cultonline.culturainglesaonline.int with Internet Mail Service (5.5.2653.19) id <3LBY88LQ>; Tue, 17 Jul 2001 15:15:24 -0300 Message-ID: From: Guilherme Sanchez To: "'freebsd-questions@FreeBSD.ORG'" Subject: Version 5 iso image Date: Tue, 17 Jul 2001 15:15:23 -0300 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) 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, my name is Guilherme Sanchez and I'd like to know is if there's an = iso image for the FreeBSD version 5 in anywhere. If positive, can you send = me url for me to download it, please? Thanks for your atention. =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 Seja Livre, Use FREE SOFTWARE! "N=E3o combata os monstros tornando-se um deles. Se vc olhar para dentro do abismo, o abismo olhar=E1 para dentro de vc!" Nietzche Guilherme Sanchez T=E9cnico de Suporte guilherme.sanchez@culturainglesaonline.com www.culturainglesaonline.com =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 Tue Jul 17 11:18:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail13.sdc1.sfba.home.com (femail13.sdc1.sfba.home.com [24.0.95.140]) by hub.freebsd.org (Postfix) with ESMTP id 2F26C37B401 for ; Tue, 17 Jul 2001 11:18:48 -0700 (PDT) (envelope-from btdang@home.com) Received: from home.com ([24.248.85.196]) by femail13.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010717181847.SIDB20529.femail13.sdc1.sfba.home.com@home.com>; Tue, 17 Jul 2001 11:18:47 -0700 Message-ID: <3B5482C5.3E4EB091@home.com> Date: Tue, 17 Jul 2001 11:24:05 -0700 From: Bruce Dang Organization: Boys & Girls Clubs X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: john-n-judy@msn.com Cc: questions@FreeBSD.ORG Subject: Re: Newbie, X server not working. 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 what is the error message when you 'startx'? try just using the SVGA server. Bruce Dang www.tbug.org john-n-judy wrote: > > I installed the user w/xwindow distribution 4.2 successfully except for one > thing. I cannot get the xwindows to start. When I was in the X86Config > through /stand/sysinstall, it recognized my mouse and I was configuring it > in an xwindow environment, but when trying to start xwindows, it could not > do it. I have an ATI All in wonder video card. I used the Mach64 drivers > like it specified, but still no luck. Any ideas for this newbie? I really > want to switch over to Unix/Linux from Windows. Any help would greatly be > appreciated. > John Ellison > john-n-judy@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 Tue Jul 17 11:19:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id 26E0237B405 for ; Tue, 17 Jul 2001 11:19:42 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from opal (cs.binghamton.edu [128.226.123.101]) by bingnet2.cc.binghamton.edu (8.11.4/8.11.4) with ESMTP id f6HIJen22651 for ; Tue, 17 Jul 2001 14:19:40 -0400 (EDT) Date: Tue, 17 Jul 2001 14:19:33 -0400 (EDT) From: Zhihui Zhang X-Sender: zzhang@opal To: freebsd-questions@freebsd.org Subject: Read entire contents of CD-ROM 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 burn CD-ROM on Windows and each time I leave the CD-ROM open so that I can add new files to it incrementally. However, on FreeBSD, it seems I can only read the files burned in the *first* session: #mount -t cd9660 /dev/acd0c /cdrom How to read the *entire* contents of the CD-ROM? Thanks. -Zhihui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 11:20: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from buug.homeip.net (we-66-27-250-19.we.mediaone.net [66.27.250.19]) by hub.freebsd.org (Postfix) with ESMTP id DE77337B409 for ; Tue, 17 Jul 2001 11:19:56 -0700 (PDT) (envelope-from bear@buug.homeip.net) Received: from localhost (localhost [127.0.0.1]) by buug.homeip.net (8.11.4/8.11.4) with ESMTP id f6HIJnt10202; Tue, 17 Jul 2001 11:19:50 -0700 (PDT) (envelope-from bear@buug.homeip.net) Date: Tue, 17 Jul 2001 11:19:49 -0700 (PDT) From: Joey Garcia X-X-Sender: To: Alexander Cc: Subject: Re: YAMAHA OPL3-SAx In-Reply-To: <20010717192806.M31946-100000@blade.elitsat.net> Message-ID: <20010717111800.A10143-100000@localhost> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a similar card in my PC. The problem is that you're using the wrong device driver. Instead of using device opl0, use device pcm and then rebuild your kernel. Everything should work okay after that - at least it does on my box. :) I hope that helps. Joey On Tue, 17 Jul 2001, Alexander wrote: > I have a YAMAHA (isa) card on my PC and I want to make it running > I precompiled the kernel, adding the "device opl0 at isa? port 0x388" > but when the kernel was compiling I get the error: > linking kernel > isa_compat.o(.data+0xc): undefined reference to `opldriver' > *** Error code 1 > > P.S. include my mail when you reply because i'm not subscribed for the > mailing list. > > thanks > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 11:20:48 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 F2B4137B403 for ; Tue, 17 Jul 2001 11:20:38 -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 f6HIIZt99989; Tue, 17 Jul 2001 15:18:35 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Tue, 17 Jul 2001 15:18:35 -0300 (ART) From: Fernando Gleiser To: Mark Livingstone Cc: Subject: Re: how could this PACKET get through?! In-Reply-To: <200107171815.OAA19997@mail.ottawa.com> Message-ID: <20010717151034.C96585-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 Tue, 17 Jul 2001, Mark Livingstone wrote: [snip] > > pass in log quick on ed0 proto icmp from any to any icmp-type 0 > pass in log quick on ed0 proto icmp from any to any icmp-type unreach code 3 > pass in log quick on ed0 proto icmp from any to any icmp-type unreach code 4 > pass in log quick on ed0 proto icmp from any to any icmp-type timex ^^^^^^^^ Here is: you allow incomming icmp time exeeded, and log it. The packet you received was a time exeeded in transit (11/0). Those seem the rules to make traceroute work. If you keep state on outgoing udp packets you won't need them, the state code can tell icmp packets which are responses to outgoing packets from icmp packets which aren't (because an icmp error has the first bytes of the packet which caused it). Fer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 11:23: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from coloradosurf.com (c1520339-a.lakwod1.co.home.com [24.179.159.58]) by hub.freebsd.org (Postfix) with ESMTP id 41D8537B40B for ; Tue, 17 Jul 2001 11:22:55 -0700 (PDT) (envelope-from mike@coloradosurf.com) Received: (from root@localhost) by coloradosurf.com (8.9.3/8.9.3) id MAA15768; Tue, 17 Jul 2001 12:13:15 -0600 (MDT) (envelope-from mike) Received: (from mike@localhost) by coloradosurf.com (8.9.3/8.9.3av) id MAA15760; Tue, 17 Jul 2001 12:13:13 -0600 (MDT) (envelope-from mike) Date: Tue, 17 Jul 2001 12:13:13 -0600 From: mike To: freebsd-questions@freebsd.org Subject: Problems with apache13-fp (installed from ports) Message-ID: <20010717121313.A15752@coloradosurf.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i 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 Forgive me if this is posted somewhere. I searched the mail lists and www.rmr.com and couldn't find a solution ( that actually worked ): I am also extremely unfamiliar with how the front page extensions work with regard to install and actual running. Anyhow... #uname -a FreeBSD maildog.officeonweb.net 4.3-STABLE FreeBSD 4.3-STABLE #0: Thu May 10 12:59:38 MDT 2001 mike@femail.officeonweb.net:/usr/obj/usr/src/sys/EDDY i386 (yes, I know I still need to patch my kernel) I am installing apache13-fp from ports. The install goes ok but I cannot connect via an fp client. I get the error: [Tue Jul 17 11:29:13 2001] [error] [client 209.245.8.244] File does not exist: $HOME/wwwfp/_vti_bin/shtml.exe/_vti_rpc The path $HOME/wwwfp/_vti_bin/ does exist, but only the directories: vti_adm and _vti_aut are in there. www.rmr.com suggested that it might be a uid/gid issues. So I (re-installed several times) changed thefp user and fp group (by both making them and exiting user with a uid/gid > 1000 and also by changing the default apache's uid/gid to > 1000). Neither worked --> same error. I also saw in the -isp or -questions maillist that running fpsveradmin.exe (or something like that) and doing an upgrade or a check might work. Did that --> didn't work. I also saw that it might be a permissions issue. That didn't seem like the right answer. Please correct me if I'm wrong. Does anybody know this one?? whining (like my month old daughter), 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 17 11:24:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from buug.homeip.net (we-66-27-250-19.we.mediaone.net [66.27.250.19]) by hub.freebsd.org (Postfix) with ESMTP id C91A437B407 for ; Tue, 17 Jul 2001 11:24:10 -0700 (PDT) (envelope-from bear@buug.homeip.net) Received: from localhost (localhost [127.0.0.1]) by buug.homeip.net (8.11.4/8.11.4) with ESMTP id f6HINbt10225; Tue, 17 Jul 2001 11:23:37 -0700 (PDT) (envelope-from bear@buug.homeip.net) Date: Tue, 17 Jul 2001 11:23:37 -0700 (PDT) From: Joey Garcia X-X-Sender: To: john-n-judy Cc: Subject: Re: Newbie, X server not working. In-Reply-To: Message-ID: <20010717112057.Y10143-100000@localhost> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ummm, try this command startx &> xerrors.log and then post the contents of the file (xerrors.log) so that we can see what's going on. Also, it will help to see the XF86Config file that you have in the /etc directory in order to debug your problem. Otherwise, it's kind of hard to figure out what's going on. Cheers, Joey On Tue, 17 Jul 2001, john-n-judy wrote: > I installed the user w/xwindow distribution 4.2 successfully except for one > thing. I cannot get the xwindows to start. When I was in the X86Config > through /stand/sysinstall, it recognized my mouse and I was configuring it > in an xwindow environment, but when trying to start xwindows, it could not > do it. I have an ATI All in wonder video card. I used the Mach64 drivers > like it specified, but still no luck. Any ideas for this newbie? I really > want to switch over to Unix/Linux from Windows. Any help would greatly be > appreciated. > John Ellison > john-n-judy@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 Tue Jul 17 11:24:24 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 94D7B37B403 for ; Tue, 17 Jul 2001 11:24:20 -0700 (PDT) (envelope-from achornback@worldnet.att.net) Received: from tomcat ([12.93.210.195]) by mtiwmhc22.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with SMTP id <20010717182410.ZYGF13460.mtiwmhc22.worldnet.att.net@tomcat>; Tue, 17 Jul 2001 18:24:10 +0000 From: "Andrew C. Hornback" To: "Justin C Sherrill" , Cc: "Gavin Kenny" Subject: RE: Recommend a NIC Date: Tue, 17 Jul 2001 14:16:33 -0400 Message-ID: <001001c10eec$9be918e0$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 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 In-Reply-To: <01071710452601.00402@roc-24-169-96-227.rochester.rr.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Justin C > Sherrill > Sent: Tuesday, July 17, 2001 10:45 AM > To: questions@freebsd.org > Cc: Gavin Kenny > Subject: Re: Recommend a NIC > > > On Tuesday 17 July 2001 07:18, you wrote: > > > My boss has said I can buy some new NIC's. So what > > does everyone suggest? > > Other than the occasional glitch, there's very little difference between > Ethernet cards by manufacturer. Find a cheap one (or 10, in your > case), make > sure it's supported, and you will probably be OK. > > The difference between, say, a 3Com card and a generic card with > a RealTek > chipset is only the price. My workplace (cable ISP) installs/supplies > several hundred Ethernet cards each week to new customers, and > the average > results have borne this out. You DIDN'T just say that... DID you?!? *falls over laughing* The difference between a 3Com and a RealTek is only the price? *shakes his head and makes a note not to get a cable modem...* 3Com NICs have some problems under FreeBSD, from what I've gathered on the various lists. RealTeks aren't even worth bothering with if you're planning on having a useful system. The consensus seems to be that you can't go wrong with an Intel NIC. While I personally don't have or use any Intel NICs, I do use SMC and have never had a problem with one. Hey, Justin, thanks for the laugh... --- Andy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 11:28:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay3.adelphia.net (smtprelay3.adelphia.net [64.8.25.8]) by hub.freebsd.org (Postfix) with ESMTP id 2930337B408 for ; Tue, 17 Jul 2001 11:28:50 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay3.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGMRCL02.71B; Tue, 17 Jul 2001 14:29:09 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.3/8.11.3) id f6HIQqm01861; Tue, 17 Jul 2001 14:26:52 -0400 (EDT) (envelope-from ipt) Date: Tue, 17 Jul 2001 14:26:52 -0400 From: User & Ian Patrick Thomas To: Fernando Gleiser Cc: freebsd-questions@freebsd.org Subject: Re: how could this PACKET get through?! Message-ID: <20010717142652.A1048@localhost> References: <200107171815.OAA19997@mail.ottawa.com> <20010717151034.C96585-100000@cactus.fi.uba.ar> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010717151034.C96585-100000@cactus.fi.uba.ar>; from fgleiser@cactus.fi.uba.ar on Tue, Jul 17, 2001 at 03:18:35PM -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 How do you keep state on UDP packets, when UDP is a stateless protocol? Ian As it was put forth by Fernando Gleiser on Tue, Jul 17, 2001 at 03:18:35PM -0300... > On Tue, 17 Jul 2001, Mark Livingstone wrote: > [snip] > > > > > pass in log quick on ed0 proto icmp from any to any icmp-type 0 > > pass in log quick on ed0 proto icmp from any to any icmp-type unreach code 3 > > pass in log quick on ed0 proto icmp from any to any icmp-type unreach code 4 > > pass in log quick on ed0 proto icmp from any to any icmp-type timex > ^^^^^^^^ > Here is: you allow incomming icmp time exeeded, and log it. The packet you > received was a time exeeded in transit (11/0). > > Those seem the rules to make traceroute work. If you keep state on > outgoing udp packets you won't need them, the state code can tell > icmp packets which are responses to outgoing packets from icmp packets > which aren't (because an icmp error has the first bytes of the packet which > caused it). > > > > Fer > > > 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 17 11:30:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id 1E93C37B407 for ; Tue, 17 Jul 2001 11:30:53 -0700 (PDT) (envelope-from daemon@mips.inka.de) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 15MZcR-000895-00; Tue, 17 Jul 2001 20:30:51 +0200 Received: (from daemon@localhost) by kemoauc.mips.inka.de (8.11.4/8.11.1) id f6HISE451697 for freebsd-questions@freebsd.org; Tue, 17 Jul 2001 20:28:14 +0200 (CEST) (envelope-from daemon) From: naddy@mips.inka.de (Christian Weisgerber) Subject: Re: Unicode support Date: Tue, 17 Jul 2001 18:28:12 +0000 (UTC) Message-ID: <9j203s$1if8$1@kemoauc.mips.inka.de> References: <1094291862.20010717184905@web.de> Originator: naddy@mips.inka.de (Christian Weisgerber) To: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Philipp Reichmuth wrote: > Hello Questions crew, Actually, the people you are looking for probably hang out on the freebsd-i18n list. > I am wondering how far we have got with Unicode support under > FreeBSD; Nowhere, but read on. > - Filesystem (Does FFS support UTF8? Not applicable. Unix filesystems support all byte values in file names except 0x2F ('/') and 0, which serve as directory separator and string terminator, respectively. So you can just go ahead and use UTF-8 for file names. > - System console (Does the system console support UTF8 screen output > and/or keystroke conversion? No. UTF-8 screen output is problematical, because the VGA character mode only supports 256/512 glyphs, although one could use a graphics mode if desperate, I guess. > Is UTF8 available as an input encoding on the console? As far as I can tell, the current keyboard framework is limited to one octet per key. > Can I use unicode-based locales?) No. This is rather the most serious shortcoming at the moment. > - X Windows (Can I use an unicode xterm, even when the system console > does NOT support unicode?) "X Windows"? Never heard of such a thing. If you mean X11, see the X(1) man page for proper ways to refer to it. Yes, you can use a Unicode xterm. In fact, if you install XFree86 4, the standard xterm is already UTF-8-capable (use -u8 to enable) and some Unicode fonts are included. -- Christian "naddy" Weisgerber naddy@mips.inka.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 11:32:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from falcon.opencon.com (mail.opencon.com [38.246.253.2]) by hub.freebsd.org (Postfix) with ESMTP id 5B27837B403 for ; Tue, 17 Jul 2001 11:32:22 -0700 (PDT) (envelope-from krishna@falcon.opencon.com) Received: from krishna.opencon.com (krishna.opencon.com [100.0.0.206] (may be forged)) by falcon.opencon.com (8.8.8+Sun/8.8.8) with SMTP id OAA16384 for ; Tue, 17 Jul 2001 14:43:54 -0400 (EDT) Received: by krishna.opencon.com with Microsoft Mail id <01C10ECD.DDC82310@krishna.opencon.com>; Tue, 17 Jul 2001 14:36:29 -0400 Message-ID: <01C10ECD.DDC82310@krishna.opencon.com> From: Rama Krishna Kumar To: "'freebsd-questions@freebsd.org'" Subject: RFCs supported Date: Tue, 17 Jul 2001 14:36:27 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, Our team is planning to use TCP/IP package in FreeBSD for one of the = projects. We like to know the RFCs currently supported by the FreeBSD = TCP/IP package. Also, if FreeBSD does not support the full features of = some of the RFCs, we like to know the list of non-conformances.=20 We would appreciate if anyone can answer the question or give = references to get the answers. Thanks, - Krishna To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 11:32:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay2.adelphia.net (smtprelay2.adelphia.net [64.8.25.7]) by hub.freebsd.org (Postfix) with ESMTP id 34FC037B403 for ; Tue, 17 Jul 2001 11:32:37 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay2.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGMRJ200.C19; Tue, 17 Jul 2001 14:33:02 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.3/8.11.3) id f6HIUdL01884; Tue, 17 Jul 2001 14:30:39 -0400 (EDT) (envelope-from ipt) Date: Tue, 17 Jul 2001 14:30:39 -0400 From: User & Ian Patrick Thomas To: zaid Cc: freebsd-questions@freebsd.org Subject: Re: freebsd v4,3 KDE dialer Message-ID: <20010717143039.B1048@localhost> References: <20010716183931.L83678-100000@FreeBSD.KuwaitNet.Net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010716183931.L83678-100000@FreeBSD.KuwaitNet.Net>; from zaid@DashtiTeam.Com on Mon, Jul 16, 2001 at 06:41:41PM -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 Send a copy of your ppp.conf file which should be in /etc. I've never used KDE's dialer on FreeBSD, although it worked fine for me on Caldera 2.1. I find it easier to edit config files by hand then to use the graphicals tools. I learn more this way and it seems it is easier to debug problems this way. Ian As it was put forth by zaid on Mon, Jul 16, 2001 at 06:41:41PM -0700... > hi > i installed the FreeBSD 4.3 > when i run internet dialer under KDE > it's connecting ok but after 2 second it's will disconnect me > why ?? > thanks > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 11:42:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from flojo.cse.ucsc.edu (flojo.cse.ucsc.edu [128.114.49.49]) by hub.freebsd.org (Postfix) with SMTP id 78BAB37B406; Tue, 17 Jul 2001 11:42:04 -0700 (PDT) (envelope-from carvalho@soe.ucsc.edu) Received: from localhost (carvalho@localhost) by flojo.cse.ucsc.edu (8.6.10/8.6.12) with ESMTP id LAA29846; Tue, 17 Jul 2001 11:42:02 -0700 X-Authentication-Warning: flojo.cse.ucsc.edu: carvalho owned process doing -bs Date: Tue, 17 Jul 2001 11:42:01 -0700 (PDT) From: Marcelo Carvalho X-Sender: carvalho@flojo.cse.ucsc.edu To: doc@FreeBSD.org Cc: questions@FreeBSD.org Subject: Missing chapter Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I'm currently trying to find information of how to modify and compile the kernel in FreeBSD. Apparently, you guys have a mistake in the main page of the handbook. I found a "chapter 23" about debbuging the kernel that is not included in the table of contents. Furthermore, if you go forward, clicking on the "next" link, you end up at the chapter 22 (???). I would like to take the opportunity and ask more information on kernel debugging. I'm supposed to change the files under /sys/netinet and I have no idea on how to get started. In other words, what are the procedures, after changing some files, to compile the kernel? Do I have to create a new kernel just because I changed some files in the netinet directory? Please, let me know some directions, guides, guidelines, whatever, as soon as possible. I would really appreciate some help in this journey. I found FreeBSD very convenient to work and I won't to take as much as possible from this great OS! Congratulations!!! Thanks, -- Marcelo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 11:48:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cm1.ethome.net.tw (cm1.ethome.net.tw [210.58.94.21]) by hub.freebsd.org (Postfix) with SMTP id 7AE8437B403 for ; Tue, 17 Jul 2001 11:48:15 -0700 (PDT) (envelope-from donny@CoreBit.com) Received: (qmail 15568 invoked from network); 17 Jul 2001 18:47:36 -0000 Received: from 61.c210-58-186.ethome.net.tw (HELO CoreBit.com) (210.58.186.61) by cm1.ethome.net.tw with SMTP; 17 Jul 2001 18:47:36 -0000 Message-ID: <3B548889.418C6D71@CoreBit.com> Date: Wed, 18 Jul 2001 02:48:41 +0800 From: Donny Lee X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Subject: No mail agent with Linux-Netscape 6.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 Hi there, hope this question will not be too silly. i just pkg_add the linux-netscape 6.01 into my 5.0-C box, and found there is no mail agent with netscape, a address book there though. did i miss any step installing? or this is the default? -- // Donny To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 12: 8:24 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 3092737B406 for ; Tue, 17 Jul 2001 12:08:15 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.208] (helo=mrvdom01.kundenserver.de) by moutvdom00.kundenserver.de with esmtp (Exim 2.12 #2) id 15MaCR-0005e7-00; Tue, 17 Jul 2001 21:08:03 +0200 Received: from pd90172b8.dip.t-dialin.net ([217.1.114.184]) by mrvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 15MaCQ-00035O-00; Tue, 17 Jul 2001 21:08:03 +0200 Date: Tue, 17 Jul 2001 21:08:58 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: Donny Lee Cc: Subject: Re: No mail agent with Linux-Netscape 6.01 In-Reply-To: <3B548889.418C6D71@CoreBit.com> Message-ID: <20010717210130.U10115-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 > i just pkg_add the linux-netscape 6.01 into my 5.0-C box, > and found there is no mail agent with netscape, a address > book there though. > > did i miss any step installing? or this is the default? I cannot remember exactly. But I think you have to register with netscape before mail is enabled (some sort of white and blue splash screen will ask you for it when you start Netscape6. In case this was the reason (please check yourself) and you dislike being registered everywhere, use mozilla (I think 0.9.2 is the latest release) it can do anything as well as netscape6 [Both only lack one feature: JAVA-support , you wil have to use good ol' netscape 4.77 or hotjava for that] 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 Tue Jul 17 12:20:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from FreeBSD.KuwaitNet.Net (FreeBSD.KuwaitNet.Net [209.85.227.165]) by hub.freebsd.org (Postfix) with ESMTP id 8410037B406 for ; Tue, 17 Jul 2001 12:20:33 -0700 (PDT) (envelope-from zaid@DashtiTeam.Com) Received: from localhost (zaid@localhost) by FreeBSD.KuwaitNet.Net (8.11.3/8.11.0) with ESMTP id f6HJKW982040; Tue, 17 Jul 2001 12:20:32 -0700 (PDT) Date: Tue, 17 Jul 2001 12:20:32 -0700 (PDT) From: zaid X-X-Sender: To: User & Ian Patrick Thomas Cc: Subject: Re: freebsd v4,3 KDE dialer In-Reply-To: <20010717143039.B1048@localhost> Message-ID: <20010717121837.M54365-100000@FreeBSD.KuwaitNet.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 this is my ppp.conf -------------------------------------------------------- ################################################################# # PPP Sample Configuration File # Originally written by Toshiharu OHNO # Simplified 5/14/1999 by wself@cdrom.com # # $FreeBSD: src/etc/ppp/ppp.conf,v 1.2 1999/08/27 23:24:08 peter Exp $ ################################################################# default: # # Make sure that "device" references the correct serial port # for your modem. (cuaa0 = COM1, cuaa1 = COM2) # set device /dev/cuaa1 set log Phase Chat LCP IPCP CCP tun command set speed 115200 set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" AT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 40 CONNECT" set timeout 120 set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 add default HISADDR enable dns papchap: # # edit the next three lines and replace the items in caps with # the values which have been assigned by your ISP. # set phone PHONE_NUBER set authname USER_NAME set authkey PASSWORD qnet: set phone 811811 set login "TIMEOUT 5 login:-\\r-login: ppp word: qqq" set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 add default HISADDR accept chap deny pap disable chap disable pap set authname TheUser set authkey ThePass enable dns ----------------------------------------------------------------- On Tue, 17 Jul 2001, User & Ian Patrick Thomas wrote: > Send a copy of your ppp.conf file which should be in /etc. I've never used KDE's > dialer on FreeBSD, although it worked fine for me on Caldera 2.1. I find it easier to > edit config files by hand then to use the graphicals tools. I learn more this way > and it seems it is easier to debug problems this way. > > Ian > > As it was put forth by zaid on Mon, Jul 16, 2001 at 06:41:41PM -0700... > > hi > > i installed the FreeBSD 4.3 > > when i run internet dialer under KDE > > it's connecting ok but after 2 second it's will disconnect me > > why ?? > > thanks > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 12:25:43 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 D155837B405 for ; Tue, 17 Jul 2001 12:25:33 -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 f6HJNOt01078; Tue, 17 Jul 2001 16:23:29 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Tue, 17 Jul 2001 16:23:24 -0300 (ART) From: Fernando Gleiser To: User & Ian Patrick Thomas Cc: Subject: Re: how could this PACKET get through?! In-Reply-To: <20010717142652.A1048@localhost> Message-ID: <20010717160034.T96585-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 When you "keep state" on UDP packets, the firewall automagically punches a hole to allow the reply. For example: pass out on tun0 proto udp from to any port = 53 keep state If you do a dns query to, say 10.1.1.53 the packets coming from 10.1.1.53 port 53 will pass through the firewall, but packets from another ip won't. Fer On Tue, 17 Jul 2001, User & Ian Patrick Thomas wrote: > How do you keep state on UDP packets, when UDP is a stateless protocol? > > Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 12:51:35 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe52.law12.hotmail.com [64.4.18.41]) by hub.freebsd.org (Postfix) with ESMTP id BF0D637B405 for ; Tue, 17 Jul 2001 12:51:32 -0700 (PDT) (envelope-from default013subscriptions@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 17 Jul 2001 12:51:32 -0700 X-Originating-IP: [24.14.93.185] Reply-To: "default013 - subscriptions" From: "default013 - subscriptions" To: Subject: creating a local area network Date: Tue, 17 Jul 2001 14:52:09 -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 Message-ID: X-OriginalArrivalTime: 17 Jul 2001 19:51:32.0639 (UTC) FILETIME=[E0ED7AF0:01C10EF9] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I'm trying to create a local area network so that when I connect to my UNIX machines, I connect to them through the local area network instead of having to go through the internet... (mostly because sometimes I have trouble connecting to my machines through the regular internet... not sure why, but they do use different gateways so, I figure that sometimes they may have trouble communicating with eachother) I am not quite sure on how to go about doing this. I am reading up on networking right now, and I'm thinking that I may be able to setup a local area network I.P. address on each system that I could access it with... someone has also told me that I could use a switch? ... I am not quite sure how either one would work... If anyone could give me some pointers I would appreciate it greatly. Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 13: 1: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cm1.ethome.net.tw (cm1.ethome.net.tw [210.58.94.21]) by hub.freebsd.org (Postfix) with SMTP id B14E137B403 for ; Tue, 17 Jul 2001 13:00:57 -0700 (PDT) (envelope-from donny@CoreBit.com) Received: (qmail 24642 invoked from network); 17 Jul 2001 20:00:18 -0000 Received: from 61.c210-58-186.ethome.net.tw (HELO CoreBit.com) (210.58.186.61) by cm1.ethome.net.tw with SMTP; 17 Jul 2001 20:00:18 -0000 Message-ID: <3B549994.2FE4B4C4@CoreBit.com> Date: Wed, 18 Jul 2001 04:01:24 +0800 From: Donny Lee X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Re: No mail agent with Linux-Netscape 6.01 References: <20010717210130.U10115-100000@localhost.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 "P. U. (Uli) Kruppa" wrote: > > i just pkg_add the linux-netscape 6.01 into my 5.0-C box, > > and found there is no mail agent with netscape, a address > I cannot remember exactly. But I think you have to register > with netscape before mail is enabled (some sort of white and > blue splash screen will ask you for it when you start > Netscape6. it seems not the case since i finished the registere and the mail agent is still out of the box. strange... I used 6.0 a while ago, and it is a full browser/mail/news package. > In case this was the reason (please check yourself) and you > dislike being registered everywhere, use mozilla (I think > 0.9.2 is the latest release) it can do anything as well as > netscape6 > [Both only lack one feature: JAVA-support , you > wil have to use good ol' netscape 4.77 or hotjava for that] I'm not sure mozilla fit my needs the best since I need Chinese/Japanese read/write abilaty in both browser and mails, and so far netscape seems my best choice.... ummm i'm not quite sure since i haven't tried too many others. :) -- // Donny To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 13: 2: 4 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 EF8D237B406 for ; Tue, 17 Jul 2001 13:02:00 -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 f6HK2id14984 for ; Tue, 17 Jul 2001 16:02:50 -0400 (EDT) (envelope-from hawk@fac13.ds.psu.edu) Message-Id: <200107172002.f6HK2id14984@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: Re: Hello, your friend recommended openxxx to you In-Reply-To: Your message of "Sat, 14 Jul 2001 12:05:29 PDT." <20010714190529.9B9DD37B401@hub.freebsd.org> From: dochawk@psu.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 17 Jul 2001 16:02:44 -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 > You have been invited to check out this adult site > by one of your friends who visited us. Some friend! We preferr freexxx to openxxx, thank you. And don't try to sell us netxxx or linxxx, either :) -- 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 Tue Jul 17 13: 4:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.guest-tek.com (mail.guesttek.com [139.142.1.74]) by hub.freebsd.org (Postfix) with ESMTP id 0207F37B405 for ; Tue, 17 Jul 2001 13:04:20 -0700 (PDT) (envelope-from peter@guest-tek.com) Received: from localhost ([139.142.135.115]) by mail.guest-tek.com (8.9.3/8.8.7) with ESMTP id OAA10267; Tue, 17 Jul 2001 14:01:27 -0600 Message-Id: <200107172001.OAA10267@mail.guest-tek.com> Date: Tue, 17 Jul 2001 14:04:20 -0600 From: Peter Warrick Content-Type: text/plain; format=flowed; charset=us-ascii Subject: Re: Routing Cc: freebsd-questions@freebsd.org To: Michel Quadflieg X-Mailer: Apple Mail (2.388) In-Reply-To: <20010717110555.A80241@euro.net> Mime-Version: 1.0 (Apple Message framework v388) 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 This still does not seem to work.. I also do not wish to bring the entire subnet on either. For instance say I had the same IP if 1.2.3.4 and the gateway this time was 1.3.4.1. This would require a subnet similar to 255.0.0.0. This I do not want because while I would like 1.2.3.4 and 1.3.4.1 to be able to talk to each other I would also like to be able to find an IP say of 1.4.5.2 out on the internet that may have a web server.. (I know this may all sound confusing but if we keep in mind that I just need two arbitrary IPs to be able to talk to each other.. I do not want the entire subnet.) Here's what I have now.. ifconfig -a produces... en1: flags=8963 mtu 1500 inet 192.168.0.1 netmask 0xffffff00 broadcast 192.168.0.255 inet 1.2.3.1 netmask 0xffffffff broadcast 1.255.255.255 ether 00:00:c5:53:07:ac media: autoselect (100baseTX ) status: active supported media: 10baseT/UTP 100baseTX 10baseT/UTP 100base (I've stripped off the rest of the ifconfig listing. :) and netstat -nr produces... Destination Gateway Flags Refs Use Netif Expire 1.2.3/24 1.2.3.1 UGSc 2 94052 en1 1.2.3.1 0:0:c5:53:7:ac UHLW 2 385 lo0 => 1.2.3.1/32 link#4 UC 0 0 en1 1.2.3.5 1.2.3.1 UGHS 1 294 en1 127.0.0.1 127.0.0.1 UH 22 9515756 lo0 192.168 link#4 UC 0 0 en1 When I try to ping from my server I get no response.. Also when I do a tcpdump on en1 I can see the traffic coming from 1.2.3.4 trying to get to 1.2.3.1 but 1.2.3.1 does not respond.. Also 1.2.3.4 doesn't appear in the arp table. Thanks again for any help. Pete On Tuesday, July 17, 2001, at 03:05 AM, Michel Quadflieg wrote: > A long time ago, in an e-mail far away, Peter Warrick wrote: >> Ok.. Hopefully I have sent this to the right place. >> >> I sent in a question to freebsd-net earlier but maybe some >> clarification >> here might help. I am trying to reproduce the same functionality that I >> have achieved on Redhat Linux on a BSD box. >> >> In Redhat linux if I issue these commands.. >> >> ifconfig eth1:0 1.2.3.1 netmask 255.255.255.255 >> route add -host 1.2.3.4 dev eth1:0 >> >> A computer connected to my BSD box (1.2.3.4) can then start pinging >> 1.2.3.1 immediately. Additionally this does NOT bring the entire >> 1.2.3.x >> subnet onto my BSD box and this is what I want. I simply want to route >> these two IPs together so they can talk to each other. > > This is because you have entered the wrong netmask. If you want to have > the > entire 1.2.3.x subnet up you should have a netmask of 255.255.255.0 > Another possibility if you still want to use the 255.255.255.255 (this > subnet specifies JUST 1 host is in this subnet) you could do a : > route add -net 1.2.3.0 > > >> On BSD I have tried the following without success... >> >> ifconfig en1 1.2.3.1 netmask 255.255.255.255 broadcast 1.255.255.255 >> alias >> route add -host 1.2.3.4 -interface en1 > > this should have been > route add -host 1.2.3.4 1.2.3.1 > > But once again change the subnetmask! > >> I added the broadcast to the ifconfig line in BSD because I noticed in >> linux my broadcast was 1.255.255.255 by default and BSD wasn't doing >> this. Yet this still did not help. >> >> Is there anything else someone may suggest that I need to do to get >> this >> working? Again I have this working on my Redhat Linux box but not my >> BSD >> box and I am kind of under the gun to prove that it can be done in BSD >> as it has been done in Redhat. > > As you can see this can be done :) > > ---end quoted text--- > > > -- > Michel Quadflieg > IS/IT Operations EuroNet * Internet BV > > "It took the computing power of three C-64s to fly to the Moon. > It takes a 486 to run Windows 95. Something is wrong here." > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 13: 7:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from meow.osd.bsdi.com (meow.osd.bsdi.com [204.216.28.88]) by hub.freebsd.org (Postfix) with ESMTP id 512D137B401; Tue, 17 Jul 2001 13:07:09 -0700 (PDT) (envelope-from murray@meow.osd.bsdi.com) Received: (from murray@localhost) by meow.osd.bsdi.com (8.11.4/8.11.2) id f6HK6R592283; Tue, 17 Jul 2001 13:06:27 -0700 (PDT) (envelope-from murray) Date: Tue, 17 Jul 2001 13:06:27 -0700 From: Murray Stokely To: Marcelo Carvalho Cc: doc@FreeBSD.ORG, questions@FreeBSD.ORG Subject: Re: Missing chapter Message-ID: <20010717130627.I88943@meow.osd.bsdi.com> 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 carvalho@soe.ucsc.edu on Tue, Jul 17, 2001 at 11:42:01AM -0700 X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D Sender: owner-freebsd-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 17, 2001 at 11:42:01AM -0700, Marcelo Carvalho wrote: > I'm currently trying to find information of how to modify and > compile the kernel in FreeBSD. Apparently, you guys have a mistake in the > main page of the handbook. I found a "chapter 23" about debbuging the > kernel that is not included in the table of contents. Furthermore, if you > go forward, clicking on the "next" link, you end up at the chapter 22 > (???). Uhm, That chapter is in the process of being moved to the Developer's Handbook, since this information is a little out of scope for the Handbook-proper. I'm not sure where you are seeing this on the table of contents though. If I go to http://www.freebsd.org/handbook there is no Chapter 23 present, which is correct. > I would like to take the opportunity and ask more information on > kernel debugging. I'm supposed to change the files under /sys/netinet and > I have no idea on how to get started. In other words, what are the > procedures, after changing some files, to compile the kernel? Do I have to > create a new kernel just because I changed some files in the netinet > directory? For the time being you can get a copy of the Handbook with this Chapter 23 from : http://docs.freebsd.org/handbook/en/4.3R/ This is a copy of the Handbook as it shipped with FreeBSD 4.3, which contains the information you are looking for. Sorry for the confusion, - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 13:10:40 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 4D79837B403 for ; Tue, 17 Jul 2001 13:10:37 -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 f6HKCLd30572; Tue, 17 Jul 2001 16:12:22 -0400 (EDT) (envelope-from hawk@fac13.ds.psu.edu) Message-Id: <200107172012.f6HKCLd30572@fac13.ds.psu.edu> X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: zero@zerosys.de Cc: questions@FreeBSD.ORG Subject: Re: selling FreeBSD In-Reply-To: Your message of "Mon, 16 Jul 2001 15:48:53 +0200." <3B52F0C5.986C1769@web.de> From: dochawk@psu.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 17 Jul 2001 16:12:21 -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 > We are a small company offering Linux & GNU-System Support. really? and you don't know better than to send html messages??? -- 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 Tue Jul 17 13:11:25 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 2641A37B405 for ; Tue, 17 Jul 2001 13:11:21 -0700 (PDT) (envelope-from radhika_narendran@yahoo.com) Message-ID: <20010717201120.26457.qmail@web9303.mail.yahoo.com> Received: from [199.66.15.252] by web9303.mail.yahoo.com via HTTP; Tue, 17 Jul 2001 13:11:20 PDT Date: Tue, 17 Jul 2001 13:11:20 -0700 (PDT) From: Radhika Sambamurti Subject: FreeBSD 4.3 - ports for sawfish 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 am running FreeBSD 4.3. I have been trying to install the ports for SAWFISH window manager. I downloaded the ports from ftp.freebsd.org/pub/ports/stable..... but the make failed. It did not compile. The error was stop exit code 1. Is there a particular ftp site I can go to that has been tried and tested for ports, with the 4.3 environment? Thx, Radhika ===== 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 Tue Jul 17 13:12:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from issv0171.isis.de (issv0171.isis.de [195.158.131.223]) by hub.freebsd.org (Postfix) with SMTP id DBE3A37B401 for ; Tue, 17 Jul 2001 13:12:49 -0700 (PDT) (envelope-from jerfa@yahoo.com) Received: (qmail 20769 invoked by uid 1010); 17 Jul 2001 20:12:47 -0000 Received: from unknown (HELO diana.ww) ([195.158.135.234]) (envelope-sender ) by 0 (qmail-ldap-1.03) with SMTP for ; 17 Jul 2001 20:12:47 -0000 Received: from localhost (127.0.0.1) by diana.ww (172.25.25.7) with smtp ; Tue, 17 Jul 2001 22:11:39 +0200 X-Posting-Agent: Hamster/1.3.22.0 Posted-and-Mailed: no Subject: Slow file transfers from NT4 to FreeBSD From: jerfa@yahoo.com (Johann Frisch) User-Agent: Xnews/4.05.11 To: freebsd-questions@freebsd.org Message-Id: <20010717201249.DBE3A37B401@hub.freebsd.org> Date: Tue, 17 Jul 2001 13:12:49 -0700 (PDT) Sender: owner-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, file transfers with scp or ftp are much slower from NT to FreeBSD than the opposite direction. System info: Windows box: NT4, SP6a, Celeron 500, Intel EtherExpress Pro/100B FreeBSD box: FreeBSD 4.3-RELEASE, generic kernel, Pentium 75, 3Com 905B-TX, IBM Etherjet ISA The network cards are connected with a crossover cable. Some examples, files were stored on a ramdisc: Intel NIC <-> 3Com NIC FreeBSD->NT: FTP >1 MB/s, scp 300 KB/s NT->FreeBSD: FTP 38 KB/s, scp 30 KB/s Intel NIC <-> IBM Etherjet FreeBSD->NT: FTP 520 KB/s, scp 300 KB/s NT->FreeBSD: FTP 250 KB/s, scp 130 KB/s So scp transfers from the Intel to the 3Com are particularly bad. The same systems reached 300 KB/s (using the same encryption, of course, blowfish/MD5) when I transferred from NT to OpenBSD. dmesg output: FreeBSD 4.3-RELEASE #0: Sat Apr 21 10:54:49 GMT 2001 jkh@narf.osd.bsdi.com:/usr/src/sys/compile/GENERIC Timecounter "i8254" frequency 1193182 Hz CPU: Pentium/P54C (74.88-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x525 Stepping = 5 Features=0x1bf real memory = 16777216 (16384K bytes) config> di sn0 config> di lnc0 config> di ie0 config> di fe0 config> di ed0 config> di bt0 config> di aic0 config> di aha0 config> di adv0 config> en cs0 config> po cs0 0x210 config> ir cs0 0 config> f cs0 0 config> q avail memory = 12132352 (11848K bytes) Preloaded elf kernel "kernel" at 0xc044d000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc044d09c. Intel Pentium detected, installing workaround for F00F bug md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: (vendor=0x10b9, dev=0x1449) at 2.0 atapci0: at device 3.0 on pci0 atapci0: Busmastering DMA not supported atapci0: Busmastering DMA disabled pci0: at 4.0 ncr0: port 0xd100-0xd1ff mem 0x4000100- 0x40001ff irq 5 at device 14.0 on pci0 xl0: <3Com 3c905B-TX Fast Etherlink XL> port 0xd000-0xd07f mem 0x4000000-0x400007f irq 11 at device 15.0 on pci0 xl0: Ethernet address: 00:50:04:43:e8:df miibus0: on xl0 ukphy0: on miibus0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto isa0: on motherboard 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 ata0 at port 0x1f0-0x1f7,0x3f6 irq 14 on isa0 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: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 cs0 at port 0x210-0x22f irq 10 drq 0 on isa0 ad0: 516MB [1049/16/63] at ata0-master BIOSPIO ad1: 405MB [989/15/56] at ata0-slave BIOSPIO Waiting 15 seconds for SCSI devices to settle Mounting root from ufs:/dev/ad1s1a da0 at ncr0 bus 0 target 6 lun 0 da0: Removable Optical SCSI-2 device da0: 5.000MB/s transfers (5.000MHz, offset 8) da0: 217MB (446325 512 byte sectors: 64H 32S/T 217C) xl0: transmission error: 90 xl0: tx underrun, increasing tx start threshold to 120 bytes xl0: transmission error: 90 xl0: tx underrun, increasing tx start threshold to 180 bytes xl0: transmission error: 90 xl0: tx underrun, increasing tx start threshold to 240 bytes xl0: transmission error: 90 xl0: tx underrun, increasing tx start threshold to 300 bytes xl0: transmission error: 90 xl0: tx underrun, increasing tx start threshold to 360 bytes Any ideas how I can speed up things a little bit? Thanks, Johann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 13:24:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe65.law12.hotmail.com [64.4.18.200]) by hub.freebsd.org (Postfix) with ESMTP id 628E837B401 for ; Tue, 17 Jul 2001 13:24:31 -0700 (PDT) (envelope-from default013subscriptions@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 17 Jul 2001 13:24:31 -0700 X-Originating-IP: [24.14.93.185] Reply-To: "default013 - subscriptions" From: "default013 - subscriptions" To: Cc: References: <868zhn71si.fsf@pan.home.penguinpowered.org.uk> Subject: Re: creating a local area network Date: Tue, 17 Jul 2001 15:25:09 -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 Message-ID: X-OriginalArrivalTime: 17 Jul 2001 20:24:31.0172 (UTC) FILETIME=[7C39A840:01C10EFE] Sender: owner-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 advice, I guess all I am really needing to do (I am on a cable modem, at&t@home that is) is to setup a local I.P. address...? Ideally I was thinking that I could have some kinda routing table setup that would know which I.P. addresses are local and others would default to outside internet... but... I guess one would need a router for that :) I will try just setting up a local I.P. address (a 192.168 #), thanks for the help. Jordan ----- Original Message ----- From: "Wayne Pascoe" To: "default013 - subscriptions" Sent: Tuesday, July 17, 2001 3:12 PM Subject: Re: creating a local area network > "default013 - subscriptions" writes: > > > Hello, > > > > I'm trying to create a local area network so that when I connect to my UNIX > > machines, I connect to them through the local area network instead of having > > to go through the internet... (mostly because sometimes I have trouble > > connecting to my machines through the regular internet... not sure why, but > > they do use different gateways so, I figure that sometimes they may have > > trouble communicating with eachother) > > > > I am not quite sure on how to go about doing this. I am reading up on > > networking right now, and I'm thinking that I may be able to setup a local > > area network I.P. address on each system that I could access it with... > > someone has also told me that I could use a switch? ... I am not quite sure > > how either one would work... If anyone could give me some pointers I would > > appreciate it greatly. > > I'm not sure how your machines are connected to the internet, but I am > confused :) > > What you need to connect them on a LAN is the following : > > 1 Network Interface Card per machine > 1 Hub / switch if you have more than two machines > > If you only want to connect two machines together, you can use a cross > over ethernet cable. If you want more than two, then you will need a > hub or switch. These are hardware devices. Think of them as a HI-FI > amp... It is the bit that cd player gets noise to the speakers via. > A hub will be cheaper. When using a hub, all traffic is sent to all > ports. The machine that is supposed to get the data picks it up, the > others ignore it. With a switch, the switch learns what machine is > connected to what port (well, it learns what MAC address is connected > to each port, and maintains an ARP cache of IP -> MAC addresses). This > means that the data is sent ONLY to the machine that should be > receiving it. > > You will then need to give each machine an IP address. I can't > remember the RFC off the top of my head that details private IP ranges > (1918 I think - but I'm probably wrong). You should use addresses that > are reserved for private networks and not routable on the > Internet. You should not try and route these to the Internet! > > If you only have a few machines, use a Class C private address > (192.168.x.x) > > Each machine needs a unique IP address. > > 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 Tue Jul 17 13:25: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta07-svc.ntlworld.com (mta07-svc.ntlworld.com [62.253.162.47]) by hub.freebsd.org (Postfix) with ESMTP id 3682637B405 for ; Tue, 17 Jul 2001 13:24:57 -0700 (PDT) (envelope-from james-list@ntlworld.com) Received: from eclipse.bloodflowers.org ([213.107.104.10]) by mta07-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with SMTP id <20010717202453.RVJH283.mta07-svc.ntlworld.com@eclipse.bloodflowers.org> for ; Tue, 17 Jul 2001 21:24:53 +0100 Date: Tue, 17 Jul 2001 21:24:54 +0100 From: James Greenhalgh To: freebsd-questions@FreeBSD.org Subject: Re: ARRGH Netscape stinks! Message-Id: <20010717212454.621f41f2.james-list@ntlworld.com> In-Reply-To: <20010716112845.D19358@acadia.ne.mediaone.net> References: <911D8F660DF6D411B61F00500462BA01C58B7B@exchange.twowaytv.co.uk> <20010716162332.57676ab4.james@bloodflowers.org> <20010716112845.D19358@acadia.ne.mediaone.net> X-Mailer: Sylpheed version 0.4.66 (GTK+ 1.2.10; i386--freebsd4.3) 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 It might have been in the past - now it just has a small area of the toolbar showing adverts changing every now and again. I can live with that for a browser that runs javascript but only resizes the logical window rather than the one on my desktop, and opens popups within its own workspace. That's where I think it scores - multiple windows don't have to use multiple windows on your desktop, they can just be tab switched a bit like fvwm2-95 or that other OS I'm not going to mention. It's not perfect though, no java or flash, which some sites dumbly rely on, and saving link documents requires a keyboard shortcut many window managers intercept. I've seen one or two pages misrender due to bad HTML that netscape is a bit more intelligent about the display of. Doesn't crash anywhere near as often, though - not even slightly close. james On Mon, 16 Jul 2001 11:28:45 -0400 Louis LeBlanc wrote: > Isn't Opera a nagware item? IIRC you can only use it as long as you > are willing to deal with the shareware nag popups or else pay for it. > I'd rather use Nutscrape and deal with the hassles there - IMHO, its > just as good as Opera in the long run. > > L > On 07/16/01 04:23 PM, James Greenhalgh sat at the `puter and typed: > > On Mon, 16 Jul 2001 15:07:51 +0100 > > Alex Dyas wrote: > > > > > > On Mon, Jul 16, 2001 at 09:01:54AM -0400, Steve Tremblett wrote: > > > > > Is there ANY alternative to Netscape? I'm running Linux > > > > Netscape 4.77 > > > > > and I'm fed up with having it freeze or crash every hour. Is the > > > > > native Netscape any better? Is there another alternative? > > > > I've tried > > > > > Mozilla, but it crashed on the first site I went to, so I > > > > deinstalled > > > > > it. > > > > > > > > > > Any suggestions? (please no jokers suggesting lynx! :) > > > > > > > > > > -- > > > > > Steve Tremblett > > > > > > > > > > > > > I've been using Mozilla since 0.9 release and have very few problems. > > > > Currently they're at 0.9.2. I build from ports collection (rather > > > > than Mozilla's binary) > > > > > > The current Mozilla 0.9.2 has been steady as a rock for me. Earlier .8.x > > > versions were admitidly shakey but this one has renewed my faith in the > > > project. Renders like lightning too. Give it a go (got my port from the > > > dutch mirror which tends to be more up to date ftp.nl.freebsd.org ). > > > > > > alex.. > > > > My personal choice currently is Opera - which rules out looking at flash sites > > but I'm willing to live without that. Mozilla renders quickly, but I find the > > UI itself to be astonishingly slow (on a dual p2-400..) > > > > james > > > > -- > > > > 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 > > > > -- > Louis LeBlanc leblanc@acadia.ne.mediaone.net > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > http://acadia.ne.mediaone.net Ô¿Ô¬ > > QOTD: > "Even the Statue of Liberty shaves her pits." > > > 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 Tue Jul 17 13:41:20 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 013EC37B405 for ; Tue, 17 Jul 2001 13:41: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 f6HKlFd73079; Tue, 17 Jul 2001 16:47:15 -0400 (EDT) (envelope-from hawk@fac13.ds.psu.edu) Message-Id: <200107172047.f6HKlFd73079@fac13.ds.psu.edu> X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: James Greenhalgh Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ARRGH Netscape stinks! In-Reply-To: Your message of "Tue, 17 Jul 2001 21:24:54 BST." <20010717212454.621f41f2.james-list@ntlworld.com> From: dochawk@psu.edu Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Date: Tue, 17 Jul 2001 16:47:14 -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 > It might have been in the past - now it just has a small area of the to= olbar > showing adverts changing every now and again. I can live with that for= a > browser that runs javascript but only resizes the logical window rather= than > the one on my desktop, and opens popups within its own workspace. That= 's > where I think it scores - multiple windows don't have to use multiple w= indows > on your desktop, they can just be tab switched a bit like fvwm2-95 or t= hat > other OS I'm not going to mention. that's a *good* thing? I *demand* that windows be independent so that = I can put them where I want them, not in some big window that an = application hogs with the arrogant assumption that it's the most = important application, and kindly offers me a new desktop . . . -- = Prof. Richard E. Hawkins, Esq. /"\ ASCII ribbon cam= paign = dochawk@psu.edu Smeal 178 (814) 375-4700 \ / against HTML mai= l 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 Tue Jul 17 13:43:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from drex.staff.izr.com (drex.staff.izr.com [195.26.38.16]) by hub.freebsd.org (Postfix) with ESMTP id DE0F237B405 for ; Tue, 17 Jul 2001 13:43:49 -0700 (PDT) (envelope-from mark@drex.staff.izr.com) Received: by drex.staff.izr.com (Postfix, from userid 1001) id 890823379E; Tue, 17 Jul 2001 21:43:14 +0100 (BST) Date: Tue, 17 Jul 2001 21:43:14 +0100 From: Mark Drayton To: freebsd-questions@freebsd.org Subject: sh for loop Message-ID: <20010717214314.A2960@drex.staff.izr.com> 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 As part of a shell script I need to write a for loop that iterates from 1 to 10 inclusive. I know I can use this: for i in 1 2 3 4 5 6 7 8 9 10; do echo $i done However, that's a pretty nasty way of doing it. I've seen a function that will create the list "1 2 3 4 5 6 7 8 9 10" but I can't for the life of me remember what it is. I think it's something like (range 1 10) or (list 1 10), but no amount of google searching has jogged my memory. Any ideas? -- 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 17 13:46:44 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 7F1F337B403 for ; Tue, 17 Jul 2001 13:46:41 -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 PAA01689; Tue, 17 Jul 2001 15:46:38 -0500 (CDT) Content-Type: text/plain; charset="iso-8859-1" From: Jim Couch Reply-To: jcouch@netdoor.com Organization: AmberSkogg Development To: "Roberto Ruffinengo" , freebsd-questions@FreeBSD.ORG Subject: Re: obtaining FreeBSD Date: Tue, 17 Jul 2001 15:46:34 -0500 X-Mailer: KMail [version 1.2] References: <200107170751.JAA30191@posta.teoresi.it> In-Reply-To: <200107170751.JAA30191@posta.teoresi.it> MIME-Version: 1.0 Message-Id: <01071715463400.41137@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 The easiest way I have found to get FreeBSD over the internet is to download the kern and mfsroot images and the utility to write them to floppies and then do an ftp install. You cannot merely copy the flp files to a floppy you must use the writing tool for them to work. I have used this method 4 or 5 times with 4.3 while waiting for my CD set from wind River. Jim On Tuesday 17 July 2001 02:50 am, Roberto Ruffinengo wrote: > Hi all, > i am experiencing some difficulties in getting FreeBSD from the net. > the 4.3 ISO image seems to be broken . I have downloaded it but the > md5 signature does't correspond whith the one i downloaded from the > server. I tried two times. > -- More than any time in history, mankind now faces a crossroads. One path leads to despair and utter hopelessness, the other to total extinction. Let us pray that we have the wisdom to choose correctly. -- Woody Allen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 13:47:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe55.law12.hotmail.com [64.4.18.63]) by hub.freebsd.org (Postfix) with ESMTP id 62B0E37B401 for ; Tue, 17 Jul 2001 13:47:38 -0700 (PDT) (envelope-from default013subscriptions@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 17 Jul 2001 13:47:38 -0700 X-Originating-IP: [24.14.93.185] Reply-To: "default013 - subscriptions" From: "default013 - subscriptions" To: Subject: setting up a local I.P. addy Date: Tue, 17 Jul 2001 15:48:16 -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 Message-ID: X-OriginalArrivalTime: 17 Jul 2001 20:47:38.0318 (UTC) FILETIME=[B70756E0:01C10F01] Sender: owner-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 setting up a local I.P. address and I'm not quite sure how it works... I added this to my rc.conf: ifconfig_dc0_alias1="inet 192.168.0.2 netmask 255.255.255.0" I am not sure if this is the right thing to do but... this is not working... I believe I need some way to let my workstation machine know how to get to this I.P. address... Forgive me, I'm basically a networking newbie... Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 13:55: 2 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 BD23937B401 for ; Tue, 17 Jul 2001 13:55:00 -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 f6HL2Fd86052 for ; Tue, 17 Jul 2001 17:02:16 -0400 (EDT) (envelope-from hawk@fac13.ds.psu.edu) Message-Id: <200107172102.f6HL2Fd86052@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: xcircuit-2.3.3 checksum From: "Richard E. Hawkins" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 17 Jul 2001 17:02:15 -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 xcircuit-2.3.3 has had the wrong checksum for very long time in the ports collection (last summer?). That I can get around, but now it has a patch failing to apply, as well. Is there a source-based solution? 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 Tue Jul 17 14: 2:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nu.cuk.nu (nu.cuk.nu [212.30.95.50]) by hub.freebsd.org (Postfix) with ESMTP id 2C59E37B403 for ; Tue, 17 Jul 2001 14:02:30 -0700 (PDT) (envelope-from cuk@cuk.nu) Received: from localhost (localhost.nu.cuk.nu [127.0.0.1]) by nu.cuk.nu (Postfix) with ESMTP id 96BA71AB72 for ; Tue, 17 Jul 2001 23:02:36 +0200 (CEST) Received: from cuk.nu (iris.localnet [192.168.6.12]) by nu.cuk.nu (Postfix) with ESMTP id 080191AB6F for ; Tue, 17 Jul 2001 23:02:35 +0200 (CEST) Message-ID: <3B54A7AF.E9C2F9C5@cuk.nu> Date: Tue, 17 Jul 2001 23:01:35 +0200 From: Marko Cuk X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: IPFW, multihoming Content-Type: text/plain; charset=iso-8859-2 Content-Transfer-Encoding: 7bit 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 Hello ! I have a few problems, because I'd like to merge two maschines because of small room and heating problems there. One maschine has its own link and other too. Now i'd like to merge them into one maschine with four ethernet cards. How can I do, that packets from one subnet/host will go through one outgoing link and packets from other subnet/host will go through NAT to the default gateway, wich will be the default gw for FreeBSD itself too? I am using ipfw and I have read lot of documentation and I still don't have enough idea, how to do it. With ipfw fwd, like at transparent proxy, or ? It is a kind of source routing, isn't it ? Please, help me. Many thanks. Marko To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 14: 4:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from maine.60north.net (maine.60north.net [198.143.201.10]) by hub.freebsd.org (Postfix) with ESMTP id 6861737B406 for ; Tue, 17 Jul 2001 14:04:50 -0700 (PDT) (envelope-from bill@maine.60north.net) Received: from localhost (bill@localhost) by maine.60north.net (8.11.3/8.11.3) with ESMTP id f6HL4kK90801 for ; Tue, 17 Jul 2001 17:04:46 -0400 (EDT) Date: Tue, 17 Jul 2001 17:04:46 -0400 (EDT) From: bill To: freebsd-questions@freebsd.org Subject: maxtor 81Gig hd as dedicated disk. 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 there, Im trying to set up a maxtor 81gig hd as a 'dangerously dedicated' drive on my 4.3 stable system. My problem is FreeBSD is seeing this disk as: ad3: 78167MB [158816/16/63] at ata1-slave UDMA66. where the PC's BIOS is seeing: SIZE CYLS HEAD PRECOMP LANDZ SECTORS 81G 9964 255 39235 63 LBA and the geometry stamped on the disk is: CYLS HEAD SECTORS 16389 16 63 Now I can live without the 2 gigs FreeBSD seems to have misplaced but by the time im done running `exerpt from handbook`: # dd if=/dev/zero of=/dev/rda1 bs=1k count=1 # disklabel -Brw ad3 auto # disklabel -e ad3 # create the partition # newfs -d0 /dev/rad3c df shows the partition being 70gigs, so now thats 10 gigs lost... One interesting thing is when I do the newfs -d0 /dev/rad3c I get the following message: Warning: 1536 sector(s) in last cylinder unallocated. Could this be where my 8 gigs are dissapering to? If so how do I get them back without making another partition? Oh yeah heres a continuation of the newfs command: I cut it short: Warning: 1536 sector(s) in last cylinder unallocated /dev/rad3c: 160086528 sectors in 39084 cylinders of 1 tracks, 4096 sectors 78167.2MB in 2443 cyl groups (16 c/g, 32.00MB/g, 7936 i/g) super-block backups (for fsck -b #) at: 32, 65568, 131104, 196640, 262176, 327712,^C thanks for any and all of your advice! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 14: 6:42 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 1CA2637B403 for ; Tue, 17 Jul 2001 14:06:37 -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 f6HL8cv10677 for ; Tue, 17 Jul 2001 14:08:39 -0700 (PDT) Message-ID: <000801c10f05$3fc32010$450a6441@Hunter> Reply-To: "Jason" From: "Jason" To: Subject: sendmail and solidpop3d can't receive messages remotely Date: Tue, 17 Jul 2001 14:12:55 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C10ECA.92F95140" 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_01C10ECA.92F95140 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I installed sendmail (8.11.4) and solidpop3d (0.15) and I am having a = problem receiving mail. I can send mail to whom ever from where ever. I = can only receive and read mail from the server. I tried to setup outlook = to get my mail, but it is not working. It checks the server and doesn't = pull in any new messages. But, if I go to the server and login I have = new mail in my account. I have no idea why outlook won't fetch new = messages (I know outlook is configured correctly). What could I have = done wrong??? Please help. Jason ------=_NextPart_000_0005_01C10ECA.92F95140 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I installed sendmail (8.11.4) and = solidpop3d (0.15)=20 and I am having a problem receiving mail. I can send mail to whom ever = from=20 where ever. I can only receive and read mail from the server. I tried to = setup=20 outlook to get my mail, but it is not working. It checks the server and = doesn't=20 pull in any new messages. But, if I go to the server and login I have = new mail=20 in my account. I have no idea why outlook won't fetch new messages (I = know=20 outlook is configured correctly). What could I have done wrong??? Please = help.
 
Jason
------=_NextPart_000_0005_01C10ECA.92F95140-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 14: 7:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailonline.cultonline.culturainglesaonline.int (214-122-188-200.corp.rj.psinet.com.br [200.188.122.214]) by hub.freebsd.org (Postfix) with ESMTP id 25DE037B406 for ; Tue, 17 Jul 2001 14:07:40 -0700 (PDT) (envelope-from guilherme.sanchez@culturainglesaonline.com) Received: by mailonline.cultonline.culturainglesaonline.int with Internet Mail Service (5.5.2653.19) id <3LBY88WY>; Tue, 17 Jul 2001 18:08:17 -0300 Message-ID: From: Guilherme Sanchez To: "'freebsd-questions@Freebsd.org'" Subject: Version 5 Date: Tue, 17 Jul 2001 18:08:16 -0300 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, my name is Guilherme Sanchez and I'd like to know is if there's an iso image for the FreeBSD version 5 in anywhere. If positive, can you send me url for me to download it, please? Thanks for your atention. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 14: 7:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from maine.60north.net (maine.60north.net [198.143.201.10]) by hub.freebsd.org (Postfix) with ESMTP id EF2BC37B405 for ; Tue, 17 Jul 2001 14:07:50 -0700 (PDT) (envelope-from bill@maine.60north.net) Received: from localhost (bill@localhost) by maine.60north.net (8.11.3/8.11.3) with ESMTP id f6HL7jO90823; Tue, 17 Jul 2001 17:07:45 -0400 (EDT) Date: Tue, 17 Jul 2001 17:07:45 -0400 (EDT) From: bill To: Mark Drayton Cc: freebsd-questions@FreeBSD.ORG Subject: Re: sh for loop In-Reply-To: <20010717214314.A2960@drex.staff.izr.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 would do this... INC=`expr $INC + 1` cheers! On Tue, 17 Jul 2001, Mark Drayton wrote: > Hi > > As part of a shell script I need to write a for loop that iterates from > 1 to 10 inclusive. I know I can use this: > > for i in 1 2 3 4 5 6 7 8 9 10; do > echo $i > done > > However, that's a pretty nasty way of doing it. I've seen a function > that will create the list "1 2 3 4 5 6 7 8 9 10" but I can't for the > life of me remember what it is. I think it's something like (range 1 10) > or (list 1 10), but no amount of google searching has jogged my memory. > > Any ideas? > > -- > > Mark Drayton > > 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 17 14:14:43 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 B142D37B401 for ; Tue, 17 Jul 2001 14:14:40 -0700 (PDT) (envelope-from hamellr@1nova.com) Received: by heorot.1nova.com (Postfix, from userid 1000) id 8FE5B18DC; Tue, 17 Jul 2001 14:15:01 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 7E59018DB; Tue, 17 Jul 2001 14:15:01 -0700 (PDT) Date: Tue, 17 Jul 2001 14:15:01 -0700 (PDT) From: Rick Hamell To: Guilherme Sanchez Cc: "'freebsd-questions@Freebsd.org'" Subject: Re: Version 5 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, my name is Guilherme Sanchez and I'd like to know is if there's an iso > image for the FreeBSD version 5 in anywhere. If positive, can you send me > url for me to download it, please? Not until it gets rolled out as a -Release canidate with there be a 5.0 ISO... so for now you'll have to CVSUP to it. Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://hw.shatteredcrystal.com ***FreeBSD - The Power to Serve! http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 14:23:48 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 6834B37B409 for ; Tue, 17 Jul 2001 14:23:42 -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 f6HLNg323024 for ; Tue, 17 Jul 2001 14:23:42 -0700 (PDT) Message-ID: <3B54ADDE.B81C5206@loudcloud.com> Date: Tue, 17 Jul 2001 14:27:58 -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: (no subject) 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 subscribe -- 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 Tue Jul 17 14:33:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dhcp101054.res-hall.nwu.edu (c934452-a.grapid1.mi.home.com [24.178.160.128]) by hub.freebsd.org (Postfix) with SMTP id 13F7137B401 for ; Tue, 17 Jul 2001 14:33:29 -0700 (PDT) (envelope-from m-turk@nwu.edu) Received: (qmail 11515 invoked by uid 1000); 17 Jul 2001 21:35:15 -0000 Date: Tue, 17 Jul 2001 17:35:15 -0400 From: "Matthew J . Turk" To: freebsd-questions@freebsd.org Subject: Jailed, with one IP cut off... Message-ID: <20010717173515.A11505@dhcp101054.res-hall.nwu.edu> 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 there! I currently run a server that is allowed two IPs. "Fine!" you say, that'll run a jail just great. We currently jail apache and a number of other processes - and we're pretty durn happy with it. Well, we're having one IP cut off. Is there any way to keep it jailed, with only one IP - i.e., have most forwarded to the CHROOT'ed environment, but keep a few for the regular (i.e. ssh) environment? More to the point, at this stage, would it be just as efficient to set up a CHROOT'ed apache? Just as secure? Thanks a bunch! mjt -------------------------------------------------- Matthew J. Turk ICQ: 3856787 "Music is the Best." - FZ www.dailyvault.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 17 14:39:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mbox.com.au (smtp2.mbox.com.au [203.103.80.178]) by hub.freebsd.org (Postfix) with ESMTP id 1041437B401 for ; Tue, 17 Jul 2001 14:39:15 -0700 (PDT) (envelope-from bsd-freak@mbox.com.au) Received: from nms2.mbox.com.au (webmail.i7mail.com.au [192.168.20.4]) by smtp2.mbox.com.au (Sun Internet Mail Server sims.4.0.2000.05.17.04.13.p6) with ESMTP id <0GGN00ECE02TDA@smtp2.mbox.com.au> for freebsd-questions@FreeBSD.ORG; Wed, 18 Jul 2001 05:37:41 +0800 (WST) Received: from mbox.com.au ([127.0.0.1]) by nms2.mbox.com.au (Netscape Messaging Server 4.15) with ESMTP id GGN02T02.QSA for ; Wed, 18 Jul 2001 05:37:41 +0800 Date: Wed, 18 Jul 2001 07:37:41 +1000 From: BSD Freak Subject: SSL Certificates To: FreeBSD Questions Message-id: <2868b8280d90.280d902868b8@mbox.com.au> MIME-version: 1.0 X-Mailer: Netscape Webmail Content-type: text/plain; charset=us-ascii Content-language: en Content-disposition: inline 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 Hiya all, I need to host multiple SSL sites on my FreeBSD 4.3 box. I am currently using Apache 1.3 + mod_ssl and am using name based virtual hosts. I don have a lot of experience with SSL but maybe someone out ther has. My question is do I need a seperate digital certificate for each virtual host? Going by the Verisign documentation it seems so but is not 100% clear. Does anyone know there answer for certain? Thank in advance... --------------------------------------------- Receive faxes 24x7, no second line necessary. http://www.mbox.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 14:41:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mbox.com.au (smtp2.mbox.com.au [203.103.80.178]) by hub.freebsd.org (Postfix) with ESMTP id C11D137B403 for ; Tue, 17 Jul 2001 14:41:21 -0700 (PDT) (envelope-from bsd-freak@mbox.com.au) Received: from nms2.mbox.com.au (webmail.i7mail.com.au [192.168.20.4]) by smtp2.mbox.com.au (Sun Internet Mail Server sims.4.0.2000.05.17.04.13.p6) with ESMTP id <0GGN00EEO06DDA@smtp2.mbox.com.au> for freebsd-questions@FreeBSD.ORG; Wed, 18 Jul 2001 05:39:49 +0800 (WST) Received: from mbox.com.au ([127.0.0.1]) by nms2.mbox.com.au (Netscape Messaging Server 4.15) with ESMTP id GGN06D01.ETF for ; Wed, 18 Jul 2001 05:39:49 +0800 Date: Wed, 18 Jul 2001 07:39:49 +1000 From: BSD Freak Subject: .htaccess with name based virtual hosts To: FreeBSD Questions Message-id: <2819f4283b54.283b542819f4@mbox.com.au> MIME-version: 1.0 X-Mailer: Netscape Webmail Content-type: text/plain; charset=us-ascii Content-language: en Content-disposition: inline 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 Hi everyone... I have encountered a problem on my FreeBSD 4.3 box (running Apache 1.3 + mod_ssl). .htaccess is ignored when using name based virtual hosts.... anyone encountered / fixed this issue? Thanx --------------------------------------------- Receive faxes 24x7, no second line necessary. http://www.mbox.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 14:43:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mbox.com.au (smtp2.mbox.com.au [203.103.80.178]) by hub.freebsd.org (Postfix) with ESMTP id 1B7FD37B40D for ; Tue, 17 Jul 2001 14:43:22 -0700 (PDT) (envelope-from bsd-freak@mbox.com.au) Received: from nms2.mbox.com.au (webmail.i7mail.com.au [192.168.20.4]) by smtp2.mbox.com.au (Sun Internet Mail Server sims.4.0.2000.05.17.04.13.p6) with ESMTP id <0GGN00EG009PDA@smtp2.mbox.com.au> for freebsd-questions@FreeBSD.ORG; Wed, 18 Jul 2001 05:41:49 +0800 (WST) Received: from mbox.com.au ([127.0.0.1]) by nms2.mbox.com.au (Netscape Messaging Server 4.15) with ESMTP id GGN09O02.9UC for ; Wed, 18 Jul 2001 05:41:49 +0800 Date: Wed, 18 Jul 2001 07:41:48 +1000 From: BSD Freak Subject: Allowing a junior administrator add users To: FreeBSD Questions Message-id: <283a0a27f34a.27f34a283a0a@mbox.com.au> MIME-version: 1.0 X-Mailer: Netscape Webmail Content-type: text/plain; charset=us-ascii Content-language: en Content-disposition: inline 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 Hi all, I need to enable one of my junior admins to add /remove users without giving him the root account. I have added him to the wheel group but 'adduser' still insist you be root when doing this..... any solutions? thanks... --------------------------------------------- Receive faxes 24x7, no second line necessary. http://www.mbox.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 14:45:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail200.swst.com (mail200.swst.com [199.34.16.18]) by hub.freebsd.org (Postfix) with ESMTP id 1832D37B406 for ; Tue, 17 Jul 2001 14:45:38 -0700 (PDT) (envelope-from RClark@swst.com) Received: from assentor1.swst.com (assentor.swst.com [209.51.28.15]) by mail200.swst.com (8.10.2/8.10.2) with ESMTP id f6HLjbe18189 for ; Tue, 17 Jul 2001 16:45:37 -0500 (CDT) Received: from sws_excg3.swst.com (unverified) by assentor1.swst.com (Content Technologies SMTPRS 2.0.15) with ESMTP id ; Tue, 17 Jul 2001 16:45:55 -0500 Received: by sws-excg3.swst.com with Internet Mail Service (5.5.2654.52) id <3P0KTF78>; Tue, 17 Jul 2001 16:45:52 -0500 Message-Id: From: Ronnie Clark To: "'BSD Freak'" , FreeBSD Questions Subject: RE: SSL Certificates Date: Tue, 17 Jul 2001 16:42:28 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2654.52) 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 If your virtual domains are all based on the same abc123.com (.net, .org, etc.), then you can just use one SSL certificate. If they are different, (ex. - abc.com and 123.net) then you will need one for each site. Otherwise anyone hitting those sites will get a certificate error message if the domains do not match. Which is just a minor incontinence, the link will still be secure, just the end user hitting the site will have to manually approve the cert. Hope this helps. RC -----Original Message----- From: BSD Freak [mailto:bsd-freak@mbox.com.au] Sent: Tuesday, July 17, 2001 4:38 PM To: FreeBSD Questions Subject: SSL Certificates Hiya all, I need to host multiple SSL sites on my FreeBSD 4.3 box. I am currently using Apache 1.3 + mod_ssl and am using name based virtual hosts. I don have a lot of experience with SSL but maybe someone out ther has. My question is do I need a seperate digital certificate for each virtual host? Going by the Verisign documentation it seems so but is not 100% clear. Does anyone know there answer for certain? Thank in advance... --------------------------------------------- Receive faxes 24x7, no second line necessary. http://www.mbox.com.au/ 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 17 14:45:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from courier.netrail.net (courier.netrail.net [205.215.10.53]) by hub.freebsd.org (Postfix) with ESMTP id 1057C37B403 for ; Tue, 17 Jul 2001 14:45:35 -0700 (PDT) (envelope-from cschreiber@netrail.net) Received: by courier.netrail.net (Postfix, from userid 5408) id 82C90C8; Tue, 17 Jul 2001 17:45:34 -0400 (EDT) Date: Tue, 17 Jul 2001 17:45:34 -0400 From: "Christian S ." To: BSD Freak Cc: FreeBSD Questions Subject: Re: Allowing a junior administrator add users Message-ID: <20010717174534.C74386@netrail.net> References: <283a0a27f34a.27f34a283a0a@mbox.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <283a0a27f34a.27f34a283a0a@mbox.com.au>; from bsd-freak@mbox.com.au on Wed, Jul 18, 2001 at 07:41:48AM +1000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sudo? On Wed, Jul 18, 2001 at 07:41:48AM +1000, BSD Freak babbled: > Delivered-To: cschreiber@netrail.net > Delivered-To: freebsd-questions@freebsd.org > Date: Wed, 18 Jul 2001 07:41:48 +1000 > From: BSD Freak > Subject: Allowing a junior administrator add users > To: FreeBSD Questions > X-Mailer: Netscape Webmail > X-Accept-Language: en > List-ID: > List-Archive: (Web Archive) > List-Help: (List Instructions) > List-Subscribe: > List-Unsubscribe: > X-Loop: FreeBSD.ORG > Precedence: bulk > > Hi all, > > I need to enable one of my junior admins to add /remove users without > giving him the root account. I have added him to the wheel group but > 'adduser' still insist you be root when doing this..... any solutions? > > thanks... > > --------------------------------------------- > Receive faxes 24x7, no second line necessary. > http://www.mbox.com.au/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ---end quoted text--- -- Christian Schreiber, Netrail Network Security Engineer - Ape will not kill Ape To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 14:49:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail200.swst.com (mail200.swst.com [199.34.16.18]) by hub.freebsd.org (Postfix) with ESMTP id D858A37B401 for ; Tue, 17 Jul 2001 14:49:37 -0700 (PDT) (envelope-from RClark@swst.com) Received: from assentor1.swst.com (assentor.swst.com [209.51.28.15]) by mail200.swst.com (8.10.2/8.10.2) with ESMTP id f6HLnbe18441 for ; Tue, 17 Jul 2001 16:49:37 -0500 (CDT) Received: from sws_excg3.swst.com (unverified) by assentor1.swst.com (Content Technologies SMTPRS 2.0.15) with ESMTP id ; Tue, 17 Jul 2001 16:49:32 -0500 Received: by sws-excg3.swst.com with Internet Mail Service (5.5.2654.52) id <3P0KTF94>; Tue, 17 Jul 2001 16:49:28 -0500 Message-Id: From: Ronnie Clark To: Ronnie Clark , "'BSD Freak'" , FreeBSD Questions Subject: RE: SSL Certificates Date: Tue, 17 Jul 2001 16:46:04 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2654.52) 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 ** That is supposed to be "inconvenience", not incontinence. Stupid Outlook Spell checker !!! RC -----Original Message----- From: Ronnie Clark [mailto:RClark@swst.com] Sent: Tuesday, July 17, 2001 4:42 PM To: 'BSD Freak'; FreeBSD Questions Subject: RE: SSL Certificates If your virtual domains are all based on the same abc123.com (.net, .org, etc.), then you can just use one SSL certificate. If they are different, (ex. - abc.com and 123.net) then you will need one for each site. Otherwise anyone hitting those sites will get a certificate error message if the domains do not match. Which is just a minor incontinence, the link will still be secure, just the end user hitting the site will have to manually approve the cert. Hope this helps. RC -----Original Message----- From: BSD Freak [mailto:bsd-freak@mbox.com.au] Sent: Tuesday, July 17, 2001 4:38 PM To: FreeBSD Questions Subject: SSL Certificates Hiya all, I need to host multiple SSL sites on my FreeBSD 4.3 box. I am currently using Apache 1.3 + mod_ssl and am using name based virtual hosts. I don have a lot of experience with SSL but maybe someone out ther has. My question is do I need a seperate digital certificate for each virtual host? Going by the Verisign documentation it seems so but is not 100% clear. Does anyone know there answer for certain? Thank in advance... --------------------------------------------- Receive faxes 24x7, no second line necessary. http://www.mbox.com.au/ 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 17 15: 0:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kirdyk.msaab.ru (marino.cust.rinet.ru [195.91.164.58]) by hub.freebsd.org (Postfix) with ESMTP id B66C037B403 for ; Tue, 17 Jul 2001 15:00:28 -0700 (PDT) (envelope-from vasily@maryno.net) Received: from VASILY ([195.91.144.69]) by kirdyk.msaab.ru (8.11.1/8.9.3) with ESMTP id f6HM42k37648 for ; Wed, 18 Jul 2001 02:04:03 +0400 (MSD) (envelope-from vasily@maryno.net) Date: Tue, 17 Jul 2001 22:01:20 +0100 From: Vasily X-Mailer: The Bat! (v1.41) UNREG / CD5BF9353B3B7091 Reply-To: Vasily X-Priority: 3 (Normal) Message-ID: <4917.010717@maryno.net> To: freebsd-questions@FreeBSD.ORG Subject: Question about ipfw 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, ALL ! Would anybody be so kind to tell where is saved information about lines marked * ? In rc.conf name of type of firewall is "UNKNOWN". boss# ipfw list 00001 allow tcp from any to *.*.*.* 80 in recv ed1 00002 allow tcp from *.*.*.* to *.*.*.* 20,21 in recv ed1 00003 allow tcp from *.*.*.* to *.*.*.* 22 in recv ed1 00004 allow udp from any to any 53 00005 allow tcp from 192.168.1.0 to any 20,21,22,139 in recv ed1 *00050 divert 8668 ip from any to any via ed1 00051 reset tcp from any to *.*.*.* 1-1024 in recv ed1 00052 deny udp from any to any 1-1024 in recv ed1 00053 unreach port tcp from any to 212.42.60.107 1025-65535 in setup 00100 allow ip from any to any via lo0 00200 deny ip from any to 127.0.0.0/8 *00300 divert 8668 ip from 192.168.1.0 to any out xmit ed1 *00400 divert 8668 ip from any to *.*.*.* in recv ed1 *65535 allow ip from any to any It's rc.firewall ========================================= ############ # Setup system for firewall service. # $FreeBSD: src/etc/rc.firewall,v 1.30.2.4 2000/05/28 19:17:15 asmodai Exp $ # Suck in the configuration variables. if [ -r /etc/defaults/rc.conf ]; then . /etc/defaults/rc.conf source_rc_confs elif [ -r /etc/rc.conf ]; then . /etc/rc.conf fi ############ # Define the firewall type in /etc/rc.conf. Valid values are: # open - will allow anyone in # client - will try to protect just this machine # simple - will try to protect a whole network # closed - totally disables IP services except via lo0 interface # UNKNOWN - disables the loading of firewall rules. # filename - will load the rules in the given filename (full path required) # # For ``client'' and ``simple'' the entries below should be customized # appropriately. ############ # # If you don't know enough about packet filtering, we suggest that you # take time to read this book: # # Building Internet Firewalls # Brent Chapman and Elizabeth Zwicky # # O'Reilly & Associates, Inc # ISBN 1-56592-124-0 # http://www.ora.com/ # # For a more advanced treatment of Internet Security read: # # Firewalls & Internet Security # Repelling the wily hacker # William R. Cheswick, Steven M. Bellowin # # Addison-Wesley # ISBN 0-201-6337-4 # http://www.awl.com/ # if [ -n "${1}" ]; then firewall_type="${1}" fi ############ # Set quiet mode if requested # case ${firewall_quiet} in [Yy][Ee][Ss]) fwcmd="/sbin/ipfw -q" ;; *) fwcmd="/sbin/ipfw" ;; esac ############ # Flush out the list before we begin. # ${fwcmd} -f flush ############ # These rules are required for using natd. All packets are passed to # natd before they encounter your remaining rules. The firewall rules # will then be run again on each packet after translation by natd, # minus any divert rules (see natd(8)). # case ${natd_enable} in [Yy][Ee][Ss]) if [ -n "${natd_interface}" ]; then ${fwcmd} add 50 divert natd all from any to any via ${natd_interface} fi ;; esac ############ # If you just configured ipfw in the kernel as a tool to solve network # problems or you just want to disallow some particular kinds of traffic # then you will want to change the default policy to open. You can also # do this as your only action by setting the firewall_type to ``open''. # # ${fwcmd} add 65000 pass all from any to any ############ # Only in rare cases do you want to change these rules # ${fwcmd} add 100 pass all from any to any via lo0 ${fwcmd} add 200 deny all from any to 127.0.0.0/8 # If you're using 'options BRIDGE', uncomment the following line to pass ARP #${fwcmd} add 300 pass udp from 0.0.0.0 2054 to 0.0.0.0 # Prototype setups. # case ${firewall_type} in [Oo][Pp][Ee][Nn]) ${fwcmd} add 65000 pass all from any to any ;; [Cc][Ll][Ii][Ee][Nn][Tt]) ############ # This is a prototype setup that will protect your system somewhat # against people from outside your own network. ############ # set these to your network and netmask and ip net="192.0.2.0" mask="255.255.255.0" ip="192.0.2.1" # Allow any traffic to or from my own net. ${fwcmd} add pass all from ${ip} to ${net}:${mask} ${fwcmd} add pass all from ${net}:${mask} to ${ip} # Allow TCP through if setup succeeded ${fwcmd} add pass tcp from any to any established # Allow IP fragments to pass through ${fwcmd} add pass all from any to any frag # Allow setup of incoming email ${fwcmd} add pass tcp from any to ${ip} 25 setup # Allow setup of outgoing TCP connections only ${fwcmd} add pass tcp from ${ip} to any setup # Disallow setup of all other TCP connections ${fwcmd} add deny tcp from any to any setup # Allow DNS queries out in the world ${fwcmd} add pass udp from any 53 to ${ip} ${fwcmd} add pass udp from ${ip} to any 53 # Allow NTP queries out in the world ${fwcmd} add pass udp from any 123 to ${ip} ${fwcmd} add pass udp from ${ip} to any 123 # Everything else is denied by default, unless the # IPFIREWALL_DEFAULT_TO_ACCEPT option is set in your kernel # config file. ;; [Ss][Ii][Mm][Pp][Ll][Ee]) ############ # This is a prototype setup for a simple firewall. Configure this # machine as a named server and ntp server, and point all the machines # on the inside at this machine for those services. ############ # set these to your outside interface network and netmask and ip iif="ed0" inet="192.168.1.0" imask="255.255.255.0" iip="192.168.1.100" # set these to your inside interface network and netmask and ip oif="ed1" onet="*.*.*.*" omask="255.255.255.*" oip="*.*.*.*" # our rules must rule ${fwcmd} add divert natd ip from 192.168.1.0 to any out via ed1 ${fwcmd} add divert natd ip from any to 212.42.60.107 in via ed1 ${fwcmd} add divert all from any to any via ed1 # Stop spoofing ${fwcmd} add deny all from ${inet}:${imask} to any in via ${oif} ${fwcmd} add deny all from ${onet}:${omask} to any in via ${iif} # Stop RFC1918 nets on the outside interface ${fwcmd} add deny all from 10.0.0.0/8 to any via ${oif} ${fwcmd} add deny all from any to 10.0.0.0/8 via ${oif} ${fwcmd} add deny all from 172.16.0.0/12 to any via ${oif} ${fwcmd} add deny all from any to 172.16.0.0/12 via ${oif} ${fwcmd} add deny all from 192.168.0.0/16 to any via ${oif} ${fwcmd} add deny all from any to 192.168.0.0/16 via ${oif} # Stop draft-manning-dsua-01.txt nets on the outside interface ${fwcmd} add deny all from 0.0.0.0/8 to any via ${oif} ${fwcmd} add deny all from any to 0.0.0.0/8 via ${oif} ${fwcmd} add deny all from 169.254.0.0/16 to any via ${oif} ${fwcmd} add deny all from any to 169.254.0.0/16 via ${oif} ${fwcmd} add deny all from 192.0.2.0/24 to any via ${oif} ${fwcmd} add deny all from any to 192.0.2.0/24 via ${oif} ${fwcmd} add deny all from 224.0.0.0/4 to any via ${oif} ${fwcmd} add deny all from any to 224.0.0.0/4 via ${oif} ${fwcmd} add deny all from 240.0.0.0/4 to any via ${oif} ${fwcmd} add deny all from any to 240.0.0.0/4 via ${oif} # Allow TCP through if setup succeeded ${fwcmd} add pass tcp from any to any established # Allow IP fragments to pass through ${fwcmd} add pass all from any to any frag # Allow setup of incoming email ${fwcmd} add pass tcp from any to ${oip} 25 setup # Allow access to our DNS ${fwcmd} add pass tcp from any to ${oip} 53 setup ${fwcmd} add pass udp from any to ${oip} 53 ${fwcmd} add pass udp from ${oip} 53 to any # Allow access to our WWW ${fwcmd} add pass tcp from any to ${oip} 80 setup # Reject&Log all setup of incoming connections from the outside ${fwcmd} add deny log tcp from any to any in via ${oif} setup # Allow setup of any other TCP connection ${fwcmd} add pass tcp from any to any setup # Allow DNS queries out in the world ${fwcmd} add pass udp from any 53 to ${oip} ${fwcmd} add pass udp from ${oip} to any 53 # Allow NTP queries out in the world ${fwcmd} add pass udp from any 123 to ${oip} ${fwcmd} add pass udp from ${oip} to any 123 # Everything else is denied by default, unless the # IPFIREWALL_DEFAULT_TO_ACCEPT option is set in your kernel # config file. ;; [Uu][Nn][Kk][Nn][Oo][Ww][Nn]) # ;; #*) if [ -r "${firewall_type}" ]; then ${fwcmd} ${firewall_flags} ${firewall_type} fi ${fwcmd} add divert natd ip from 192.168.1.0 to any out via ed1 ${fwcmd} add divert natd ip from any to *.*.*.* in via ed1 ${fwcmd} add divert all from any to any via ed1 ${fwcmd} -q add 1 allow tcp from any to *.*.*.* 80 in via ed1 ${fwcmd} -q add 2 allow tcp from *.*.*.* to *.*.*.* 20,21 in via ed1 ${fwcmd} -q add 3 allow tcp from *.*.*.* to *.*.*.* 22 in via ed1 ${fwcmd} -q add 4 allow udp from any to any 53 ${fwcmd} -q add 5 allow tcp from 192.168.1.0 to any 20,21,22,139 in via ed1 ${fwcmd} -q add 51 reset tcp from any to *.*.*.* 1-1024 in via ed1 ${fwcmd} -q add 52 drop udp from any to any 1-1024 in via ed1 ${fwcmd} -q add 53 unreach port tcp from any to *.*.*.* 1025-65535 in setup ;; esac ========================================= -- Best regards, Vasily vasily@maryno.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 17 15: 1:49 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 280C037B406 for ; Tue, 17 Jul 2001 15:01:45 -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 15McuW-000MQ4-00 for freebsd-questions@freebsd.org; Tue, 17 Jul 2001 23:01:44 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.3/8.11.1) id f6HM1h664991 for freebsd-questions@freebsd.org; Tue, 17 Jul 2001 23:01:43 +0100 (BST) (envelope-from jcm) Date: Tue, 17 Jul 2001 23:01:42 +0100 From: j mckitrick To: freebsd-questions@freebsd.org Subject: TrueType fonts Message-ID: <20010717230142.A64878@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 hi all, I have been trying to follow the Daemonnews article from last November. I also installed the webfonts port. I copied the webfonts to the TrueType directory and ran ttmkfdir > fonts.dir in each. I installed xfstt, of course. According to 'top' it is running. I thought maybe it wouldn't show up because I have a 800x600 laptop display, but the fonts don't even show up in the list for Netscape, and according to the webfonts port, netscape is supposed to see them. Can somebody help? local:~> cat .xinitrc xset m 3.75 1 xset fp+ /usr/X11R6/lib/X11/fonts/webfonts xset fp+ /usr/X11R6/lib/X11/fonts/TrueType xset fp rehash exec /usr/local/bin/bbkeys -i& exec /usr/X11R6/bin/blackbox my relevant Xf86Config: Section "Files" FontPath "/usr/X11R6/lib/X11/fonts/local" FontPath "/usr/X11R6/lib/X11/fonts/misc" FontPath "/usr/X11R6/lib/X11/fonts/75dpi" FontPath "/usr/X11R6/lib/X11/fonts/URW" # FontPath "/usr/X11R6/lib/X11/fonts/webfonts" # FontPath "/usr/X11R6/lib/X11/fonts/TrueType" FontPath "/usr/local/applix/axfonts/all_pcf" EndSection Oddly enough, I had to comment out the 2 lines above because X complained it couldn't find them. How could this be? local:~> ls /usr/X11R6/lib/X11/fonts/webfonts/ LICENSE comic.ttf fonts.dir times.ttf trebucit.ttf andalemo.ttf comicbd.ttf fonts.scale timesbd.ttf verdana.ttf arial.ttf cour.ttf georgia.ttf timesbi.ttf verdanab.ttf arialbd.ttf courbd.ttf georgiab.ttf timesi.ttf verdanai.ttf arialbi.ttf courbi.ttf georgiai.ttf trebuc.ttf verdanaz.ttf ariali.ttf couri.ttf georgiaz.ttf trebucbd.ttf webdings.ttf ariblk.ttf fonts.alias impact.ttf trebucbi.ttf local:~> ls /usr/X11R6/lib/X11/fonts/TrueType/ LICENSE comicbd.ttf georgia.ttf timesi.ttf verdanab.ttf andalemo.ttf cour.ttf georgiab.ttf trebuc.ttf verdanai.ttf arial.ttf courbd.ttf georgiai.ttf trebucbd.ttf verdanaz.ttf arialbd.ttf courbi.ttf georgiaz.ttf trebucbi.ttf webdings.ttf arialbi.ttf couri.ttf impact.ttf trebucit.ttf ariali.ttf fonts.alias times.t local:~> cat /usr/X11R6/etc/rc.d/xfstt.sh #!/bin/sh PREFIX=/usr/X11R6 case "$1" in start) ${PREFIX}/bin/xfstt --sync >/dev/null ${PREFIX}/bin/xfstt --user nobody --notcp --daemon && echo -n ' xfstt' ;; stop) /usr/bin/killall xfstt 2>/dev/null && echo -n ' xfstt' ;; *) echo "$0 start | stop" ;; esac local:~> jcm -- o-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-o | ~~~~~~~~~~~~ Jonathon McKitrick ~~~~~~~~~~~~~ | | "I prefer the term 'Artificial Person' myself." | o-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-o To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 15:14:40 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 A0A3837B401 for ; Tue, 17 Jul 2001 15:14:38 -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 f6HMEc329215 for ; Tue, 17 Jul 2001 15:14:38 -0700 (PDT) Message-ID: <3B54B9CE.843B74D5@loudcloud.com> Date: Tue, 17 Jul 2001 15:18:54 -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: mod_jk.so binary for Freebsd 3.3 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 have a copy of this? I kept fixing code to get it to compile until I starting hitting unknown calls when deploying that should be there (thread related) So if anyone has gone through the trouble of building mod_jk.so for tomcat 3.2 I would appreciate a copy if possible. 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 Tue Jul 17 15:26:17 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 0A5D837B403 for ; Tue, 17 Jul 2001 15:26:14 -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 f6HMQCA10748; Tue, 17 Jul 2001 15:26:13 -0700 (PDT) Message-Id: <200107172226.f6HMQCA10748@ptavv.es.net> To: "Wing Tim" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Configuring Lucent WaveLAN products In-reply-to: Your message of "Mon, 16 Jul 2001 23:55:49 +0800." Date: Tue, 17 Jul 2001 15:26:12 -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 > From: "Wing Tim" > Date: Mon, 16 Jul 2001 23:55:49 +0800 > Sender: owner-freebsd-questions@FreeBSD.ORG > > Dear Kelvin, > Do you mean if I use an ISA adapter to connect the Lucent 11M WaveLAN > card, both the ISA adapter and the Lucent 11M WaveLAN card can be detected > automatically (as for 3Com Ethernet Card) during the FreeBSD installation > process? I just saw a message on mobile from Warner Losh that he has patches to support the PCI adapter. They are already in current and will be MFCed to stable if there are no problems found. So, if you can wait a couple of weeks, the PCI adapter should work, too. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 15:27:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cosmos.cosmic-cow.net (cosmic-cow.net [65.117.97.194]) by hub.freebsd.org (Postfix) with ESMTP id CE73937B407 for ; Tue, 17 Jul 2001 15:27:40 -0700 (PDT) (envelope-from jslivko@cosmic-cow.net) Received: from localhost (jslivko@localhost) by cosmos.cosmic-cow.net (8.11.3/8.9.3) with ESMTP id f6HMRFN97576; Tue, 17 Jul 2001 22:27:15 GMT Date: Tue, 17 Jul 2001 22:27:14 +0000 (GMT) From: "Jonathan M. Slivko" To: BSD Freak Cc: FreeBSD Questions Subject: Re: Allowing a junior administrator add users In-Reply-To: <283a0a27f34a.27f34a283a0a@mbox.com.au> 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 sudo :) --------------------------------------------------------------------------- Jonathan Slivko Tel: 917-655-3455 Technical Support Representative Fax: 212-663-1109 Cosmic-Cow Internet, We Power the Internet http://www.cosmic-cow.net On Wed, 18 Jul 2001, BSD Freak wrote: > Hi all, > > I need to enable one of my junior admins to add /remove users without > giving him the root account. I have added him to the wheel group but > 'adduser' still insist you be root when doing this..... any solutions? > > thanks... > > --------------------------------------------- > Receive faxes 24x7, no second line necessary. > http://www.mbox.com.au/ > > 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 17 15:53: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from benny.geektank.org (00-04-ac-38-0e-e8.bconnected.net [209.53.63.19]) by hub.freebsd.org (Postfix) with ESMTP id C5D9037B406 for ; Tue, 17 Jul 2001 15:53:01 -0700 (PDT) (envelope-from tmchow@sfu.ca) Received: from localhost (tmchow@localhost) by benny.geektank.org (8.11.3/8.11.3) with ESMTP id f6HMlWm77529 for ; Tue, 17 Jul 2001 15:47:33 -0700 (PDT) (envelope-from tmchow@sfu.ca) X-Authentication-Warning: benny.geektank.org: tmchow owned process doing -bs Date: Tue, 17 Jul 2001 15:47:32 -0700 (PDT) From: Trevin Chow X-X-Sender: To: Subject: How to use LAME port? Message-ID: <20010717154717.W77527-100000@benny.geektank.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'm trying to setup my system to stream MP3's via icecast, so I installed the icecast and LAME encode ports. However, when trying to compile some streaming systems that use LAME to reencode the MP3's, it says it can't find the LAME encoder. So i did some investigating, and can't seem to find the liblame or lame.h files that are supposed to be on the system after you install the LAME encoder. 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 Tue Jul 17 16: 6: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from aragorn.neomedia.it (aragorn.neomedia.it [195.103.207.6]) by hub.freebsd.org (Postfix) with ESMTP id A77DD37B409 for ; Tue, 17 Jul 2001 16:05:59 -0700 (PDT) (envelope-from bartequi@neomedia.it) Received: (from httpd@localhost) by aragorn.neomedia.it (8.11.4/8.11.4) id f6HN5m400435; Wed, 18 Jul 2001 01:05:48 +0200 (CEST) To: Gavin Kenny Subject: Re: Recommend a NIC Message-ID: <995411147.3b54c4cbd05d1@webmail.neomedia.it> Date: Wed, 18 Jul 2001 01:05:47 +0200 (CEST) From: Salvo Bartolotta Cc: freebsd-questions@freebsd.org 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-cvs X-WebMail-Company: Neomedia s.a.s. X-Originating-IP: 62.98.171.53 Sender: owner-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 been using a load of 3Com 509 NIC's and having > the usual Buffer/Driver problems. > My boss has said I can buy some new NIC's. So what > does everyone suggest? I recommend reading, inter alia, the following -questions thread: "Who's got the cheapest 100-BT Ethernet NIC?". :-) In this connection, you might want to browse the archives (http://www.freebsd.org/mail), or "google" (http://www.google.com). One aside. As to the Intel Etherexpress 100 B Pro (aka "PILA8460B"), it appears not to be currently available in Italy -- according to the responses I received a couple of weeks ago from a number of [Intel] distributors/resellers. Moreover, it would seem that, at the moment, the card isn't available in Europe, either. YMMV. -- Salvo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 16:14:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com [62.253.162.43]) by hub.freebsd.org (Postfix) with ESMTP id 3ADA137B407 for ; Tue, 17 Jul 2001 16:14:49 -0700 (PDT) (envelope-from james-list@ntlworld.com) Received: from eclipse.bloodflowers.org ([213.107.104.10]) by mta03-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with SMTP id <20010717231447.QEOS298.mta03-svc.ntlworld.com@eclipse.bloodflowers.org>; Wed, 18 Jul 2001 00:14:47 +0100 Date: Wed, 18 Jul 2001 00:14:48 +0100 From: James Greenhalgh To: dochawk@psu.edu Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ARRGH Netscape stinks! Message-Id: <20010718001448.0266ccff.james-list@ntlworld.com> In-Reply-To: <200107172047.f6HKlFd73079@fac13.ds.psu.edu> References: <20010717212454.621f41f2.james-list@ntlworld.com> <200107172047.f6HKlFd73079@fac13.ds.psu.edu> 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 Personally, I find it FAR less obtrusive when an application stays within the bounds I gave it rather than spawning more and more windows. It's nice to be able to visit a site that requests 100% screen width and have the window within the opera X window resize only logically (becoming scrollable), and it's nice to have popups pop up in a small logical window too, rather than the browser arrogantly assuming it's the most important application and splattering itself all over my xterms ;-) (like Netscape and Mozilla) If I put opera in the top left of the screen using say, half the screen width, it's nice to know that it will NEVER touch the rest of my desktop, for any reason. Perhaps my original description wasn't clear? At any rate - it's all personal preference, you can *demand* whatever you like - but we're all stuck using whatever is closest. james On Tue, 17 Jul 2001 16:47:14 -0400 dochawk@psu.edu wrote: > > It might have been in the past - now it just has a small area of the toolbar > > showing adverts changing every now and again. I can live with that for a > > browser that runs javascript but only resizes the logical window rather than > > the one on my desktop, and opens popups within its own workspace. That's > > where I think it scores - multiple windows don't have to use multiple windows > > on your desktop, they can just be tab switched a bit like fvwm2-95 or that > > other OS I'm not going to mention. > > that's a *good* thing? I *demand* that windows be independent so that > I can put them where I want them, not in some big window that an > application hogs with the arrogant assumption that it's the most > important application, and kindly offers me a new desktop . . . > > > -- > 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 -- 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 Tue Jul 17 16:14:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from buug.homeip.net (we-66-27-250-19.we.mediaone.net [66.27.250.19]) by hub.freebsd.org (Postfix) with ESMTP id 4676F37B406 for ; Tue, 17 Jul 2001 16:14:53 -0700 (PDT) (envelope-from bear@buug.homeip.net) Received: from localhost (localhost [127.0.0.1]) by buug.homeip.net (8.11.4/8.11.4) with ESMTP id f6HNF0t10710 for ; Tue, 17 Jul 2001 16:15:00 -0700 (PDT) (envelope-from bear@buug.homeip.net) Date: Tue, 17 Jul 2001 16:15:00 -0700 (PDT) From: Joey Garcia X-X-Sender: To: Subject: Re: setting up a local I.P. addy In-Reply-To: Message-ID: <20010717161328.B10704-100000@localhost> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 17 Jul 2001, default013 - subscriptions wrote: > Hello, > > I'm setting up a local I.P. address and I'm not quite sure how it works... > > I added this to my rc.conf: > ifconfig_dc0_alias1="inet 192.168.0.2 netmask 255.255.255.0" Change that to ifconfig_dc0="inet 192.168.0.2 netmask 255.255.255.0" and you'll be good to go. :) Joey To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 16:25:46 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 0D42E37B403 for ; Tue, 17 Jul 2001 16:25:43 -0700 (PDT) (envelope-from parv@worldnet.att.net) Received: from worldnet.att.net ([32.101.235.181]) by mtiwmhc26.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010717232541.GEBG2154.mtiwmhc26.worldnet.att.net@worldnet.att.net> for ; Tue, 17 Jul 2001 23:25:41 +0000 Received: by worldnet.att.net (Postfix, from userid 1001) id 7E74550D76; Tue, 17 Jul 2001 19:29:29 -0400 (EDT) Date: Tue, 17 Jul 2001 19:29:28 -0400 From: parv To: f-q Subject: need suggestions to filter make logs Message-ID: <20010717192928.A38890@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 hi, following is the regex (in perl) that i have came up w/ so far to filter large make logs, like (build|install)(world|kernel). does anybody have suggestions for other "interesting" regexes? ------- filter-log .perl -------- #!/usr/bin/perl -w use strict; # line-wise buffering $|=1; while (<>) { # print "status" & errors+warnings, but not compiler lines print if (m#[-=>]{3,}|\b(?:warning:|error|stop)#i && ! m#^cc.+#i); # print 'time' statistics print if m#(?:real|user|sys)\s+\d+m\d+\.\d{3}s# } ---------------------------- i use it like this... # cd /source/src && (make buildworld )>& /log/some/where & # # tail -f /log/some/where | filter-log ideally i would have done this, tail included... ------- filter-log .sh -------- #!/bin/sh if (test -f $1 -a -r $1) then tail -f | egrep -i '\-\-\-|===|warning:|error|stop|real.*m.s' | grep -v '^cc ' fi ---------------------------- ...but due to buffering, 2d grep would result in no output; otherwise i would have to sacrifice the 2d grep... any suggestions? -- 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 17 16:37: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailin2.email.bigpond.com (juicer14.bigpond.com [139.134.6.23]) by hub.freebsd.org (Postfix) with ESMTP id 4EFDC37B406 for ; Tue, 17 Jul 2001 16:36:46 -0700 (PDT) (envelope-from dannyho@bigpond.net.au) Received: from bigpond.net.au ([139.134.4.55]) by mailin2.email.bigpond.com (Netscape Messaging Server 4.15) with SMTP id GGN5UT00.7TR; Wed, 18 Jul 2001 09:42:29 +1000 Received: from CPE-203-45-116-14.nsw.bigpond.net.au ([203.45.116.14]) by mail4.bigpond.com(MailRouter V2.9g 7/6505203); 18 Jul 2001 09:36:32 Message-ID: <3B55657A.5EF1F8DD@bigpond.net.au> Date: Wed, 18 Jul 2001 10:31:22 +0000 From: Danny X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Todd Reed Cc: freebsd-questions@freebsd.org Subject: Re: Configuring Apache 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 Hello - After you changed httpd.conf don't you have to type in "kill -1 httpd" before the changes take effect? -Looking forward toyou feedback dannyho@bigpond.net.au Todd Reed wrote: > > I can't get my apache web server to pull up the correct pages. When I > change the configurations to go to a different directory, it will give me > "This page cannot be displayed". Here is my httpd.conf. The access.conf > and srm.conf are empty. I've got the following pages in the > /mnt/vdrv/inetpub/www/root: index.htm, index.html, index.php. If i replace > the httpd.conf with the httpd.conf.default (back to the original), it pulls > up the default Apache Page > > --Configs Start > > ServerType standalone > ServerRoot "/mnt/vdrv/inetpub/www" > PidFile /var/run/httpd.pid > ScoreBoardFile /var/run/httpd.scoreboard > Timeout 300 > KeepAlive On > MaxKeepAliveRequests 100 > KeepAliveTimeout 15 > MinSpareServers 5 > MaxSpareServers 10 > StartServers 5 > MaxClients 150 > MaxRequestsPerChild 0 > > LoadModule mmap_static_module libexec/apache/mod_mmap_static.so > LoadModule vhost_alias_module libexec/apache/mod_vhost_alias.so > LoadModule env_module libexec/apache/mod_env.so > LoadModule config_log_module libexec/apache/mod_log_config.so > LoadModule mime_magic_module libexec/apache/mod_mime_magic.so > LoadModule mime_module libexec/apache/mod_mime.so > LoadModule negotiation_module libexec/apache/mod_negotiation.so > LoadModule status_module libexec/apache/mod_status.so > LoadModule info_module libexec/apache/mod_info.so > LoadModule includes_module libexec/apache/mod_include.so > LoadModule autoindex_module libexec/apache/mod_autoindex.so > LoadModule dir_module libexec/apache/mod_dir.so > LoadModule cgi_module libexec/apache/mod_cgi.so > LoadModule asis_module libexec/apache/mod_asis.so > LoadModule imap_module libexec/apache/mod_imap.so > LoadModule action_module libexec/apache/mod_actions.so > LoadModule speling_module libexec/apache/mod_speling.so > LoadModule userdir_module libexec/apache/mod_userdir.so > LoadModule alias_module libexec/apache/mod_alias.so > LoadModule rewrite_module libexec/apache/mod_rewrite.so > LoadModule access_module libexec/apache/mod_access.so > LoadModule auth_module libexec/apache/mod_auth.so > LoadModule anon_auth_module libexec/apache/mod_auth_anon.so > LoadModule db_auth_module libexec/apache/mod_auth_db.so > LoadModule digest_module libexec/apache/mod_digest.so > LoadModule proxy_module libexec/apache/libproxy.so > LoadModule cern_meta_module libexec/apache/mod_cern_meta.so > LoadModule expires_module libexec/apache/mod_expires.so > LoadModule headers_module libexec/apache/mod_headers.so > LoadModule usertrack_module libexec/apache/mod_usertrack.so > LoadModule unique_id_module libexec/apache/mod_unique_id.so > LoadModule setenvif_module libexec/apache/mod_setenvif.so > > ClearModuleList > AddModule mod_mmap_static.c > AddModule mod_vhost_alias.c > AddModule mod_env.c > AddModule mod_log_config.c > AddModule mod_mime_magic.c > AddModule mod_mime.c > AddModule mod_negotiation.c > AddModule mod_status.c > AddModule mod_info.c > AddModule mod_include.c > AddModule mod_autoindex.c > AddModule mod_dir.c > AddModule mod_cgi.c > AddModule mod_asis.c > AddModule mod_imap.c > AddModule mod_actions.c > AddModule mod_speling.c > AddModule mod_userdir.c > AddModule mod_alias.c > AddModule mod_rewrite.c > AddModule mod_access.c > AddModule mod_auth.c > AddModule mod_auth_anon.c > AddModule mod_auth_db.c > AddModule mod_digest.c > AddModule mod_proxy.c > AddModule mod_cern_meta.c > AddModule mod_expires.c > AddModule mod_headers.c > AddModule mod_usertrack.c > AddModule mod_unique_id.c > AddModule mod_so.c > AddModule mod_setenvif.c > > Port 80 > User nobody > Group nogroup > ServerAdmin admin@saera.neaclinic.com > DocumentRoot "/mnt/vdrv/inetpub/www/root" > > > Options FollowSymLinks > AllowOverride None > > > > > Options Indexes FollowSymLinks MultiViews > AllowOverride None > Order allow,deny > Allow from all > > > > UserDir public_html > > > > > > DirectoryIndex index.php index.php3 index.html > > > DirectoryIndex index.php3 index.html > > > > > DirectoryIndex index.php index.html > > > DirectoryIndex index.html > > > > > AccessFileName .htaccess > > Order allow,deny > Deny from all > > > UseCanonicalName On > > > TypesConfig /usr/local/etc/apache/mime.types > > > DefaultType text/plain > > > MIMEMagicFile /usr/local/etc/apache/magic > > > HostnameLookups Off > > ErrorLog /var/log/httpd-error.log > > LogLevel warn > > 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 > > CustomLog /var/log/httpd-access.log combined > > ServerSignature On > > > Alias /icons/ "/mnt/vdrv/inptpub/www/icons/" > > > Options Indexes MultiViews > AllowOverride None > Order allow,deny > Allow from all > > > ScriptAlias /cgi-bin/ "/mnt/vdrv/inetpub/www/cgi-bin/" > > > AllowOverride None > Options None > Order allow,deny > Allow from all > > > > > > > IndexOptions FancyIndexing > > AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip > > AddIconByType (TXT,/icons/text.gif) text/* > AddIconByType (IMG,/icons/image2.gif) image/* > AddIconByType (SND,/icons/sound2.gif) audio/* > AddIconByType (VID,/icons/movie.gif) video/* > > AddIcon /icons/binary.gif .bin .exe > AddIcon /icons/binhex.gif .hqx > AddIcon /icons/tar.gif .tar > AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv > AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip > AddIcon /icons/a.gif .ps .ai .eps > AddIcon /icons/layout.gif .html .shtml .htm .pdf > AddIcon /icons/text.gif .txt > AddIcon /icons/c.gif .c > AddIcon /icons/p.gif .pl .py > AddIcon /icons/f.gif .for > AddIcon /icons/dvi.gif .dvi > AddIcon /icons/uuencoded.gif .uu > AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl > AddIcon /icons/tex.gif .tex > AddIcon /icons/bomb.gif core > > AddIcon /icons/back.gif .. > AddIcon /icons/hand.right.gif README > AddIcon /icons/folder.gif ^^DIRECTORY^^ > AddIcon /icons/blank.gif ^^BLANKICON^^ > > DefaultIcon /icons/unknown.gif > > ReadmeName README > HeaderName HEADER > > IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t > > > > AddEncoding x-compress Z > AddEncoding x-gzip gz tgz > AddLanguage da .dk > AddLanguage nl .nl > AddLanguage en .en > AddLanguage et .ee > AddLanguage fr .fr > AddLanguage de .de > AddLanguage el .el > AddLanguage he .he > AddCharset ISO-8859-8 .iso8859-8 > AddLanguage it .it > AddLanguage ja .ja > AddCharset ISO-2022-JP .jis > AddLanguage kr .kr > AddCharset ISO-2022-KR .iso-kr > AddLanguage no .no > AddLanguage pl .po > AddCharset ISO-8859-2 .iso-pl > AddLanguage pt .pt > AddLanguage pt-br .pt-br > AddLanguage ltz .lu > AddLanguage ca .ca > AddLanguage es .es > AddLanguage sv .se > AddLanguage cz .cz > AddLanguage ru .ru > AddLanguage tw .tw > AddCharset Big5 .Big5 .big5 > AddCharset WINDOWS-1251 .cp-1251 > AddCharset CP866 .cp866 > AddCharset ISO-8859-5 .iso-ru > AddCharset KOI8-R .koi8-r > AddCharset UCS-2 .ucs2 > AddCharset UCS-4 .ucs4 > AddCharset UTF-8 .utf8 > > > LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz > ca es sv tw > > > > AddType application/x-httpd-php3 .php3 > AddType application/x-httpd-php3-source .php3s > > > AddType application/x-httpd-php .php > AddType application/x-httpd-php-source .phps > > > AddType application/x-tar .tgz > > > BrowserMatch "Mozilla/2" nokeepalive > BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0 > BrowserMatch "RealPlayer 4\.0" force-response-1.0 > BrowserMatch "Java/1\.0" force-response-1.0 > BrowserMatch "JDK/1\.0" force-response-1.0 > > _________________________________________________________________ > 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 Tue Jul 17 17: 6:35 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 B094637B403 for ; Tue, 17 Jul 2001 17:06:31 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 83034 invoked by uid 100); 18 Jul 2001 00:06:30 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15188.54022.876036.338916@guru.mired.org> Date: Tue, 17 Jul 2001 19:06:30 -0500 To: David Kelly Cc: questions@FreeBSD.ORG Subject: Re: ARRGH Netscape stinks! In-Reply-To: <20010717115346.A18795@grumpy.dyndns.org> References: <21096630@toto.iv> <15188.23500.936661.82769@guru.mired.org> <20010717115346.A18795@grumpy.dyndns.org> 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 David Kelly types: > On Tue, Jul 17, 2001 at 10:37:48AM -0500, Mike Meyer wrote: > > JavaScript is a security nightmare. Java isn't quit so bad, but CERT > > recommends turning them both off. I turn off Flash because I haven't > > had time to investigate the security issues. > Uh, don't you have Java and Javascript crossed? I don't think so. The people at Sun who worked on Java at demonstrably thought about the security implications of what they were doing, and dealt with the worst excesses in the design. As a result, Java security problems tend to be bugs in the implementation, with "in violation of security policies" being a common phrase. JavaScript tends to have bugs along the lines of "we never thought anyone would do that", like sending email to an arbitrary address at page load time, or putting java script in a cookie file then loading the cookie file to get access to the disk. The net result is that JavaScript tends to have nastier bugs than Java. Of course, I've had both of them turned off pretty much since they were introduced, and base this on watching CERT advisories and a quick check of the CERT site just now. This may not be representative of the problems seen by people who leave those enabled by default. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 17:32: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from lcmail2.lc.ca.gov (lcmail2.lc.ca.gov [165.107.12.11]) by hub.freebsd.org (Postfix) with ESMTP id B063137B405 for ; Tue, 17 Jul 2001 17:31:58 -0700 (PDT) (envelope-from drewt@writeme.com) Received: from CONVERSION-DAEMON by lcmail2.lc.ca.gov (PMDF V5.2-27 #40821) id <0GGN00I01834RW@lcmail2.lc.ca.gov> for freebsd-questions@FreeBSD.org; Tue, 17 Jul 2001 17:31:19 -0700 (PDT) Received: from tagalong ([165.66.11.104]) by lcmail2.lc.ca.gov (PMDF V5.2-27 #40821) with SMTP id <0GGN006O681MD9@lcmail2.lc.ca.gov> for freebsd-questions@FreeBSD.org; Tue, 17 Jul 2001 17:29:47 -0700 (PDT) Date: Tue, 17 Jul 2001 17:29:12 -0700 From: Drew Tomlinson Subject: RE: Problems with apache13-fp (installed from ports) In-reply-to: <20010717121313.A15752@coloradosurf.com> To: 'mike' Cc: "FreeBSD Questions (E-mail)" Message-id: <5CD46247635BD511B6B100A0CC3F0239259FF8@ldcmsx01.lc.ca.gov> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > -----Original Message----- > From: mike [mailto:mike@coloradosurf.com] > Sent: Tuesday, July 17, 2001 11:13 AM > To: freebsd-questions@freebsd.org > Subject: Problems with apache13-fp (installed from ports) > > > > Forgive me if this is posted somewhere. I searched the mail lists and > www.rmr.com and couldn't find a solution ( that actually worked ): > > I am also extremely unfamiliar with how the front page extensions work > with regard to install and actual running. > > > Anyhow... > > #uname -a > FreeBSD maildog.officeonweb.net 4.3-STABLE FreeBSD 4.3-STABLE > #0: Thu May 10 > 12:59:38 MDT 2001 > mike@femail.officeonweb.net:/usr/obj/usr/src/sys/EDDY > i386 > (yes, I know I still need to patch my kernel) > > > I am installing apache13-fp from ports. The install goes ok > but I cannot > connect via an fp client. > > I get the error: > > [Tue Jul 17 11:29:13 2001] [error] [client 209.245.8.244] > File does not > exist: $HOME/wwwfp/_vti_bin/shtml.exe/_vti_rpc > > > The path $HOME/wwwfp/_vti_bin/ does exist, but only the directories: > vti_adm and _vti_aut are in there. > > www.rmr.com suggested that it might be a uid/gid issues. So I > (re-installed > several times) changed thefp user and fp group (by both > making them and > exiting user with a uid/gid > 1000 and also by changing the > default apache's > uid/gid to > 1000). > Neither worked --> same error. > > I also saw in the -isp or -questions maillist that running > fpsveradmin.exe > (or something like that) and doing an upgrade or a check > might work. Did > that --> didn't work. Did you run this program and create a root web? I don't know a lot but I do know that you need to create a root web. HTH, Drew > I also saw that it might be a permissions issue. That didn't > seem like the > right answer. Please correct me if I'm wrong. > > > Does anybody know this one?? > > whining (like my month old daughter), > > > mike > > > > > 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 17 17:40:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-2.enteract.com (smtp-2.enteract.com [207.229.143.4]) by hub.freebsd.org (Postfix) with ESMTP id BFE0737B403 for ; Tue, 17 Jul 2001 17:40:28 -0700 (PDT) (envelope-from dscheidt@tumbolia.com) Received: from shell-1.enteract.com (shell-1.enteract.com [207.229.143.40]) by smtp-2.enteract.com (Postfix) with ESMTP id 09B0B5FAC; Tue, 17 Jul 2001 19:40:28 -0500 (CDT) Date: Tue, 17 Jul 2001 19:40:28 -0500 (CDT) From: David Scheidt X-X-Sender: To: Mark Drayton Cc: Subject: Re: sh for loop In-Reply-To: <20010717214314.A2960@drex.staff.izr.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, 17 Jul 2001, Mark Drayton wrote: :1 to 10 inclusive. I know I can use this: : :for i in 1 2 3 4 5 6 7 8 9 10; do : echo $i :done : :However, that's a pretty nasty way of doing it. I've seen a function :that will create the list "1 2 3 4 5 6 7 8 9 10" but I can't for the :life of me remember what it is. I think it's something like (range 1 10) :or (list 1 10), but no amount of google searching has jogged my memory. for i in ` jot 10 1` do foo done will do what you want. Unfortunatly, jot doesn't exist on all Unixes, so if the script is to be portable, you should do it with shell math -- dscheidt@tumbolia.com Bipedalism is only a fad. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 17:57:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from lcmail2.lc.ca.gov (lcmail2.lc.ca.gov [165.107.12.11]) by hub.freebsd.org (Postfix) with ESMTP id 8AA4437B401 for ; Tue, 17 Jul 2001 17:57:09 -0700 (PDT) (envelope-from drewt@writeme.com) Received: from CONVERSION-DAEMON by lcmail2.lc.ca.gov (PMDF V5.2-27 #40821) id <0GGN003018UIBA@lcmail2.lc.ca.gov> for freebsd-questions@FreeBSD.ORG; Tue, 17 Jul 2001 17:52:38 -0700 (PDT) Received: from tagalong ([165.66.11.104]) by lcmail2.lc.ca.gov (PMDF V5.2-27 #40821) with SMTP id <0GGN00N3Q8USA0@lcmail2.lc.ca.gov> for freebsd-questions@FreeBSD.ORG; Tue, 17 Jul 2001 17:47:16 -0700 (PDT) Date: Tue, 17 Jul 2001 17:35:14 -0700 From: Drew Tomlinson Subject: RE: Version 5 iso image In-reply-to: To: 'Guilherme Sanchez' , freebsd-questions@FreeBSD.ORG Message-id: <5CD46247635BD511B6B100A0CC3F0239259FF9@ldcmsx01.lc.ca.gov> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) Content-type: text/plain; charset="iso-8859-1" Content-transfer-encoding: 7bit Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > -----Original Message----- > From: Guilherme Sanchez > [mailto:guilherme.sanchez@culturainglesaonline.com] > Sent: Tuesday, July 17, 2001 11:15 AM > To: 'freebsd-questions@FreeBSD.ORG' > Subject: Version 5 iso image > > > Hi, my name is Guilherme Sanchez and I'd like to know is if > there's an iso > image for the FreeBSD version 5 in anywhere. If positive, can > you send me > url for me to download it, please? > Thanks for your atention. If you need an ISO then you don't want 5.0. Please see http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/current-stable.htm l to learn the difference between STABLE and CURRENT. Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 18: 1: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f107.law15.hotmail.com [64.4.23.107]) by hub.freebsd.org (Postfix) with ESMTP id C8CA737B401 for ; Tue, 17 Jul 2001 18:00:58 -0700 (PDT) (envelope-from michael_jw_bartlett@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 17 Jul 2001 18:00:58 -0700 Received: from 195.92.67.69 by lw15fd.law15.hotmail.msn.com with HTTP; Wed, 18 Jul 2001 01:00:57 GMT X-Originating-IP: [195.92.67.69] From: "Michael Bartlett" To: freebsd-questions@freebsd.org Subject: moving 3.5-STABLE -> 4.3-STABLE Date: Wed, 18 Jul 2001 02:00:57 +0100 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 18 Jul 2001 01:00:58.0085 (UTC) FILETIME=[1ACBB950:01C10F25] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG evening all! i've left a box running with a port/source update for over a year now. recently i've had a couple of load problems with the machine, so i wanted to put mrtg and net-snmp on the box to graph some stuff. i updated the ports and tried to do makes on the relevant ports, but got a message that my system was too old or something along those lines and that i must upgrade. so i thought it was a good opportunity to do so! its been a while since i've source built, so maybe i've done something stupid (hey no flames!). anyway. this is my source-supfile that i run cvsup against: ------------------------- su-2.03# cat /root/cvsup/source-supfile *default host=cvsup2.za.freebsd.org *default base=/usr *default prefix=/usr *default release=cvs tag=RELENG_4 *default delete use-rel-suffix *default compress src-all src-crypto src-eBones src-secure ports-all tag=. ------------------------- when i make world (or make buildworld) from /usr/src, i get the following after about a minute: ===> doc 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/gnu/usr.bin/gperf -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/bool-array.cc 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/gnu/usr.bin/gperf -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/gen-perf.cc 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/gnu/usr.bin/gperf -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/hash-table.cc 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/gnu/usr.bin/gperf -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/iterator.cc 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/gnu/usr.bin/gperf -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/key-list.cc 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/gnu/usr.bin/gperf -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/list-node.cc 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/gnu/usr.bin/gperf -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/main.cc 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/gnu/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 Stop. *** Error code 1 --------------- is there something wrong with my source (hey waiter, there's a fly in my sauce...) cheers mike (please reply to me as i am not subscribed to the list right now due to a lack of connectivity at home - and hotmail is not that subdusive to large amounts of email!!) _________________________________________________________________________ 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 17 18:17:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta01.chello.no (mta01.chello.no [212.186.255.12]) by hub.freebsd.org (Postfix) with ESMTP id 99A2F37B406 for ; Tue, 17 Jul 2001 18:17:00 -0700 (PDT) (envelope-from handaa@chello.no) Received: from magnus ([62.179.146.41]) by mta01.chello.no (InterMail vK.4.03.00.00 201-232-121 license e9baf6250a3e09baf933190ee5f5f2b0) with SMTP id <20010718011828.EQYG19663.mta01@magnus> for ; Wed, 18 Jul 2001 03:18:28 +0200 Message-ID: <000701c10f26$e381e800$0200a8c0@chello.no> From: "Magnus" To: Subject: System unable to resolve hostnames Date: Wed, 18 Jul 2001 03:13:43 +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 FreeBSD Alpha.chello.no 4.3-RELEASE FreeBSD I have a wierd problem, where the system is unable to resolve hostnames. Even though I have configured resolv.conf, here is the output of the file: search chello.no nameserver 212.186.255.29 nameserver 212.186.255.30 I have checked the addresses, and they are correct. Have also tried using those DNS server on a win box, wich works fine. I am able to ping numerical addresses, however, when I try to ping hostnames I get: "ping: cannot resolve freebsd.org: unknown host" Have tried several adresses, all with the same result. This happens also when I try to ftp, http with lynx, ntp update, they all fail to connect when I use hostnames. What makes it even more wierd, is that I am able to resolv hostnames by using 'nslookup'. prompt # nslookup freebsd.org server: dnscache01.chello.no address: 212.186.255.29 Name: Freebsd.org address: 216.136.204.21 Wich means I am able to resolve hostnames, DNS is working, however applications like ping, ftp etc. fails to resolve hostnames. How does the application resolve hostnames, what can cause what I am experiencing ? I would like to resolve this problem, if someone could shed some light on this problem. I would greatly appreciate it. If you need more feedback, to trouble shoot this problem. Let me know, and I will reply as soon as possible. Magnus Oslo, Norway To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 18:26:57 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 E5F0637B406 for ; Tue, 17 Jul 2001 18:26:50 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 84324 invoked by uid 100); 18 Jul 2001 00:58:48 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15188.57160.799562.343400@guru.mired.org> Date: Tue, 17 Jul 2001 19:58:48 -0500 To: Mark Drayton , bill Cc: questions@freebsd.org Subject: Re: sh for loop In-Reply-To: <52572270@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 Mark Drayton types: > Hi > As part of a shell script I need to write a for loop that iterates from > 1 to 10 inclusive. I know I can use this: > > for i in 1 2 3 4 5 6 7 8 9 10; do > echo $i > done bill types: > I would do this... > INC=`expr $INC + 1` > cheers! Personally, I'd use jot: for i in `jot 10` do echo $i done See the jot man page for more information. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 18:28:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hamster.eecs.harvard.edu (hamster.eecs.harvard.edu [140.247.62.33]) by hub.freebsd.org (Postfix) with ESMTP id 7F8AA37B405 for ; Tue, 17 Jul 2001 18:28:22 -0700 (PDT) (envelope-from ellard@eecs.harvard.edu) Received: from localhost (ellard@localhost) by hamster.eecs.harvard.edu (8.9.3/8.9.3) with ESMTP id VAA00384; Tue, 17 Jul 2001 21:28:17 -0400 (EDT) X-Authentication-Warning: hamster.eecs.harvard.edu: ellard owned process doing -bs Date: Tue, 17 Jul 2001 21:28:17 -0400 (EDT) From: Dan Ellard To: freebsd-questions@freebsd.org Cc: Dan Ellard Subject: installing boot manager 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 just installed FreeBSD 4.3 on one of the disks on my PC. The PC has several SCSI disks: BSD/OS 4.1 is installed on disk 0 and FreeBSD 4.3 on disk 1. The install seemed to go OK, but although I indicated that I wanted to install the FreeBSD boot manager, it never asked me to configure it, and it didn't seem to get installed. This leaves me baffled because now I don't know how to boot into FreeBSD! When I reboot or reset the machine it goes straight to sd0 and boots BSD/OS, same as before. I need to have a choice for booting either OS. Any ideas? (Do you know if there is a BSD/OS boot manager of some kind?) Thanks, -Dan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 18:46:29 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 E680337B403 for ; Tue, 17 Jul 2001 18:46:25 -0700 (PDT) (envelope-from chris@vindaloo.com) Received: (from uucp@localhost) by fw.vindaloo.com (8.10.1/8.10.1) id f6I1kOg20007 for ; Tue, 17 Jul 2001 21:46:24 -0400 (EDT) Received: from andale.vindaloo.com(192.168.133.3) via SMTP by fw.vindaloo.com, id smtpdwA9119; Tue Jul 17 21:46:17 2001 Received: by andale.vindaloo.com (Postfix, from userid 1000) id A23AA4383; Tue, 17 Jul 2001 21:46:11 -0400 (EDT) Date: Tue, 17 Jul 2001 21:46:10 -0400 From: Christopher Sean Hilton To: freebsd-questions@freebsd.org Subject: Is the Yoyodyne KT-848 Multiport Serial card supported 8-)? Message-ID: <20010717214610.A18437@andale.vindaloo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Is this the appropriate forum for this type of question? I've asked several of this type of question here and I usually don't get an answer. -- 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 Tue Jul 17 18:50: 7 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 71D2537B401 for ; Tue, 17 Jul 2001 18:50:05 -0700 (PDT) (envelope-from chris@vindaloo.com) Received: (from uucp@localhost) by fw.vindaloo.com (8.10.1/8.10.1) id f6I1o5j08851 for ; Tue, 17 Jul 2001 21:50:05 -0400 (EDT) Received: from andale.vindaloo.com(192.168.133.3) via SMTP by fw.vindaloo.com, id smtpdl31959; Tue Jul 17 21:50:02 2001 Received: by andale.vindaloo.com (Postfix, from userid 1000) id B8C104383; Tue, 17 Jul 2001 21:49:56 -0400 (EDT) Date: Tue, 17 Jul 2001 21:49:55 -0400 From: Christopher Sean Hilton To: freebsd-questions@freebsd.org Subject: NFS - Make buildworld hangs over NFS mounted partition on one machine. Message-ID: <20010717214955.B18437@andale.vindaloo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This one is strange. I have a machine running 4.2-STABLE which NFS exports the FreeBSD /usr/src tree. I keep this one machine up to date via CVSup. I can export the src tree to any of my desktop machines and do a make buildworld with good success but when I try to do the same thing with my laptop it hangs hard. I'm just about to do the NFS mount with -i on. to see if that at least lets me break out of the make world process. -- 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 Tue Jul 17 18:54:43 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 6E13737B403 for ; Tue, 17 Jul 2001 18:54:39 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 84141 invoked by uid 100); 18 Jul 2001 00:54:38 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15188.56910.631404.477056@guru.mired.org> Date: Tue, 17 Jul 2001 19:54:38 -0500 To: James Greenhalgh Cc: questions@freebsd.org Subject: Re: ARRGH Netscape stinks! In-Reply-To: <76438007@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 James Greenhalgh types: > Personally, I find it FAR less obtrusive when an application stays within the > bounds I gave it rather than spawning more and more windows. It's nice to be > able to visit a site that requests 100% screen width and have the window > within the opera X window resize only logically (becoming scrollable), and > it's nice to have popups pop up in a small logical window too, rather than the > browser arrogantly assuming it's the most important application and > splattering itself all over my xterms ;-) (like Netscape and Mozilla) If I > put opera in the top left of the screen using say, half the screen width, it's > nice to know that it will NEVER touch the rest of my desktop, for any reason. The problem isn't the browser, it's the *sites* arrogantly assuming they are the most important thing on my desktop, and asking my browser to open new windows or expand the window to 100% of the desktop. Disabling JavaScript helps a lot, as well as making the Netscape both more secure and less prone to crashes. > Perhaps my original description wasn't clear? At any rate - it's all personal > preference, you can *demand* whatever you like - but we're all stuck using > whatever is closest. Yup, it's all personal preference. Unfortunately, many web site designers aren't aware that such things exist and depend on your browser - and system - being configured just like theirs. Simply running Unix on a 1600x1200 display is enough to break some sites. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 18:55:17 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 1F83137B401 for ; Tue, 17 Jul 2001 18:55:15 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 84200 invoked by uid 100); 18 Jul 2001 00:55:13 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15188.56945.124277.411411@guru.mired.org> Date: Tue, 17 Jul 2001 19:55:13 -0500 To: Guilherme Sanchez Cc: questions@freebsd.org Subject: Re: Version 5 iso image In-Reply-To: <5797606@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 Guilherme Sanchez types: > Hi, my name is Guilherme Sanchez and I'd like to know is if there's an = > iso > image for the FreeBSD version 5 in anywhere. If positive, can you send = > me > url for me to download it, please? Since version 5 hasn't been released, that doesn't seem very likely. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 19:11:26 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 1135A37B401 for ; Tue, 17 Jul 2001 19:11:23 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 78B1C6ACBC; Wed, 18 Jul 2001 11:41:19 +0930 (CST) Date: Wed, 18 Jul 2001 11:41:19 +0930 From: Greg Lehey To: Christopher Sean Hilton Cc: freebsd-questions@freebsd.org Subject: Re: Is the Yoyodyne KT-848 Multiport Serial card supported 8-)? Message-ID: <20010718114119.A69861@wantadilla.lemis.com> References: <20010717214610.A18437@andale.vindaloo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010717214610.A18437@andale.vindaloo.com>; from chris@vindaloo.com on Tue, Jul 17, 2001 at 09:46:10PM -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 Tuesday, 17 July 2001 at 21:46:10 -0400, Christopher Sean Hilton wrote: > Is this the appropriate forum for this type of question? No. > I've asked several of this type of question here and I usually don't > get an answer. Well, for a start, the Subject: line is to grab your attention to make you read the content. But there is no content. In this case, I'm wondering if the Subject: line is even serious. Is there such a beast? If so, I'd guess it's so obscure that nobody knows. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 19:11:40 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 E7FF237B401 for ; Tue, 17 Jul 2001 19:11:36 -0700 (PDT) (envelope-from chris@vindaloo.com) Received: (from uucp@localhost) by fw.vindaloo.com (8.10.1/8.10.1) id f6I2BaP00710 for ; Tue, 17 Jul 2001 22:11:36 -0400 (EDT) Received: from andale.vindaloo.com(192.168.133.3) via SMTP by fw.vindaloo.com, id smtpdmg5131; Tue Jul 17 22:11:33 2001 Received: by andale.vindaloo.com (Postfix, from userid 1000) id 92ECD4383; Tue, 17 Jul 2001 22:11:27 -0400 (EDT) Date: Tue, 17 Jul 2001 22:11:27 -0400 From: Christopher Sean Hilton To: freebsd-questions@FreeBSD.ORG Subject: Re: NFS - Make buildworld hangs over NFS mounted partition on one machine. Message-ID: <20010717221127.A16060@andale.vindaloo.com> References: <20010717214955.B18437@andale.vindaloo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010717214955.B18437@andale.vindaloo.com>; from chris@vindaloo.com on Tue, Jul 17, 2001 at 09:49:55PM -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 17, 2001 at 09:49:55PM -0400, Christopher Sean Hilton wrote: > This one is strange. I have a machine running 4.2-STABLE which NFS exports > the FreeBSD /usr/src tree. I keep this one machine up to date via CVSup. I > can export the src tree to any of my desktop machines and do a make > buildworld with good success but when I try to do the same thing with my > laptop it hangs hard. I'm just about to do the NFS mount with -i on. to see > if that at least lets me break out of the make world process. > Nix this, Mounting the code with TCP rather than UDP solved the problem. It seems as though the xl interface in the nfs server running at full duplex can really outrun the ed interface in the laptop. This isn't a problem with the other machines because they are all have reasonably fast interfaces. -- 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 Tue Jul 17 19:26:53 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 E79A037B401 for ; Tue, 17 Jul 2001 19:26:49 -0700 (PDT) (envelope-from wyldephyre2@yahoo.com) Received: from ae03195.powerup.com.au (HELO warhawk) (203.147.162.195) by smtp.mail.vip.sc5.yahoo.com with SMTP; 18 Jul 2001 02:26:48 -0000 X-Apparently-From: From: "Haikal Saadh" To: "Jae Carlson" , "freebsd-questions" Subject: RE: Metworking Date: Wed, 18 Jul 2001 12:31:06 +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) In-Reply-To: <01a501c10edd$28330c80$020aa8c0@ENKIL> 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 a look at the docs at /usr/local/share/doc/samba. Really helpful. Have a look at getting swat (included with samba, howtos in the above mentioned dir) working. > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Jae Carlson > Sent: Wednesday, 18 July 2001 2:26 AM > To: freebsd-questions > Subject: Metworking > > > Greetings, > I have FreeBSD 4.2 installed on a P 133 with 48 megs ram it is > networked to > an Windows XP beta and a Windows98 SE machine. Thew problem is that I am > not sure how to set up the samba for FreeBSD, although I am familar with > Linux's Samba. The FreeBSD box is accessable via putty, a ssh client for > windows, but I have been un able o get shares working on the FreeBSD box. > Another problem that I have is I can ping the FBSD box with Windows XP but > it can not ping the XP box. It has no problem pinging the 98 SE box. Any > help would be appressiated. > Thank you in advance, > Jae > > > > 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 19:28:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by hub.freebsd.org (Postfix) with ESMTP id CBEAB37B401 for ; Tue, 17 Jul 2001 19:28:23 -0700 (PDT) (envelope-from mike@sentex.net) Received: from chimp.simianscience.com (cage.simianscience.com [64.7.134.1]) by smtp1.sentex.ca (8.11.2/8.11.1) with SMTP id f6I2SLM51741; Tue, 17 Jul 2001 22:28:22 -0400 (EDT) (envelope-from mike@sentex.net) From: Mike Tancsa To: peter@guest-tek.com (Peter Warrick) Cc: questions@freebsd.org Subject: Re: Routing Date: Tue, 17 Jul 2001 22:28:21 -0400 Message-ID: References: In-Reply-To: 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 On 16 Jul 2001 21:18:35 -0400, in sentex.lists.freebsd.questions you = wrote: >Ok.. Hopefully I have sent this to the right place. > >I sent in a question to freebsd-net earlier but maybe some clarification= =20 >here might help. I am trying to reproduce the same functionality that I=20 >have achieved on Redhat Linux on a BSD box. > >In Redhat linux if I issue these commands.. > >ifconfig eth1:0 1.2.3.1 netmask 255.255.255.255 >route add -host 1.2.3.4 dev eth1:0 > >A computer connected to my BSD box (1.2.3.4) can then start pinging=20 >1.2.3.1 immediately. Additionally this does NOT bring the entire 1.2.3.x= =20 >subnet onto my BSD box and this is what I want. I simply want to route=20 >these two IPs together so they can talk to each other. > >On BSD I have tried the following without success... > >ifconfig en1 1.2.3.1 netmask 255.255.255.255 broadcast 1.255.255.255=20 >alias >route add -host 1.2.3.4 -interface en1 If you have 2 IP address that you want to alias onto the machine who has lets say 192.168.1.1/28,=20 ifconfig lo0 1.2.3.1 netmask 255.255.255.255 alias ifconfig lo0 1.2.3.4 netmask 255.255.255.255 alias As long as the *outside* world knows how to get to these 2 host routes, = you dont need to do anything else. ---Mike Mike Tancsa (mdtancsa@sentex.net) =09 Sentex Communications Corp, =09 Waterloo, Ontario, Canada "Given enough time, 100 monkeys on 100 routers=20 could setup a national IP network." (KDW2) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 19:34: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-62.dsl.lsan03.pacbell.net [63.207.60.62]) by hub.freebsd.org (Postfix) with ESMTP id A3E9337B405 for ; Tue, 17 Jul 2001 19:34:03 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 2CB1D66BA6; Tue, 17 Jul 2001 19:34:01 -0700 (PDT) Date: Tue, 17 Jul 2001 19:34:01 -0700 From: Kris Kennaway To: Rama Krishna Kumar Cc: "'freebsd-questions@freebsd.org'" Subject: Re: RFCs supported Message-ID: <20010717193401.A88680@xor.obsecurity.org> References: <01C10ECD.DDC82310@krishna.opencon.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="FL5UXtIhxfXey3p5" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <01C10ECD.DDC82310@krishna.opencon.com>; from krishna@falcon.opencon.com on Tue, Jul 17, 2001 at 02:36:27PM -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 --FL5UXtIhxfXey3p5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Jul 17, 2001 at 02:36:27PM -0400, Rama Krishna Kumar wrote: > Our team is planning to use TCP/IP package in FreeBSD for one of > the projects. We like to know the RFCs currently supported by the > FreeBSD TCP/IP package. Also, if FreeBSD does not support the full > features of some of the RFCs, we like to know the list of > non-conformances. We would appreciate if anyone can answer the > question or give references to get the answers. There is no such list. If you have a specific question ("Does FreeBSD support RFC X?") then you could ask it on the net@FreeBSD.org mailing list. Kris --FL5UXtIhxfXey3p5 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 iD8DBQE7VPWYWry0BWjoQKURAgUtAKCjmUbL+AVZEtVqWUlI7b6Mjak0RQCeJ6/I h3sS5BYdk79QrZVE16Y7oTs= =x01J -----END PGP SIGNATURE----- --FL5UXtIhxfXey3p5-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 19:39:22 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 72BD937B405 for ; Tue, 17 Jul 2001 19:39:18 -0700 (PDT) (envelope-from chris@vindaloo.com) Received: (from uucp@localhost) by fw.vindaloo.com (8.10.1/8.10.1) id f6I2dIx02696 for ; Tue, 17 Jul 2001 22:39:18 -0400 (EDT) Received: from andale.vindaloo.com(192.168.133.3) via SMTP by fw.vindaloo.com, id smtpdbI9734; Tue Jul 17 22:39:12 2001 Received: by andale.vindaloo.com (Postfix, from userid 1000) id 0AE9F4383; Tue, 17 Jul 2001 22:39:06 -0400 (EDT) Date: Tue, 17 Jul 2001 22:39:06 -0400 From: Christopher Sean Hilton To: freebsd-questions@freebsd.org Subject: Re: has anyone tried out the M-Systems Disk-On-Key devices? Message-ID: <20010717223906.C16060@andale.vindaloo.com> References: <20010717214610.A18437@andale.vindaloo.com> <20010718114119.A69861@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010718114119.A69861@wantadilla.lemis.com>; from grog@FreeBSD.ORG on Wed, Jul 18, 2001 at 11:41:19AM +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 Has anyone tried out the M-Systems DiskOnKey Flash disk on a keychain device? This device is an 8MB Flash Disk with a USB connector that attaches to your keychain like you car's alarm fob. When you plug this into your USB port it should act like an 8MB Disk Drive. I had hoped to use this to hold my SSH private key, my PGP private key, and a copy of Putty on an MSDOS Filesystem so I could have the keys and tools needed to access my systems remotely via SSH. When I plug the device into the USB port on my laptop the usbd sees it and loads the umass device. Then I get a drive entry: da0 but any attempt to access the device times out with a scsi sense error of 0x4. I'm in the midst of upgrading my laptop to 4.3 Release under the vain hope that the upgrade will solve the problem. However I wanted to know if anyone else has tried this device and what luck they may have had. -- 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 Tue Jul 17 19:46:46 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 5473237B403 for ; Tue, 17 Jul 2001 19:46:42 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 45DF96ACC3; Wed, 18 Jul 2001 12:16:40 +0930 (CST) Date: Wed, 18 Jul 2001 12:16:40 +0930 From: Greg Lehey To: j mckitrick Cc: freebsd-questions@freebsd.org Subject: Re: any benefits to XFree86 4 on a laptop? Message-ID: <20010718121640.E69861@wantadilla.lemis.com> References: <20010717171937.A61988@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010717171937.A61988@dogma.freebsd-uk.eu.org>; from jcm@FreeBSD-uk.eu.org on Tue, Jul 17, 2001 at 05:19:37PM +0100 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, 17 July 2001 at 17:19:37 +0100, j mckitrick wrote: > > No fancy graphics chips or anything, I just wondered if it is more > efficient, stable, or otherwise better. (looks for question.) Ah, > Subject: Re: any benefits to XFree86 4 on a laptop? Well, one significant benefit is that it supports more laptop graphics chip sets. Both of my latest laptops (Dell Inspiron 7500, IBM ThinkPad T22) need it to run at all . Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 19:52: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from coloradosurf.com (c1520339-a.lakwod1.co.home.com [24.179.159.58]) by hub.freebsd.org (Postfix) with ESMTP id 6F46C37B403 for ; Tue, 17 Jul 2001 19:51:58 -0700 (PDT) (envelope-from mike@coloradosurf.com) Received: (from root@localhost) by coloradosurf.com (8.9.3/8.9.3) id UAA16235; Tue, 17 Jul 2001 20:42:27 -0600 (MDT) (envelope-from mike@coloradosurf.com) Received: from heike (heike [172.16.1.2]) by coloradosurf.com (8.9.3/8.9.3av) with SMTP id UAA16226; Tue, 17 Jul 2001 20:42:25 -0600 (MDT) (envelope-from mike@coloradosurf.com) Message-ID: <001601c10f33$a2b368a0$020110ac@c769378a.lakwod3.co.home.com> From: "mike" To: "Drew Tomlinson" Cc: "FreeBSD Questions (E-mail)" References: <5CD46247635BD511B6B100A0CC3F0239259FF8@ldcmsx01.lc.ca.gov> Subject: Re: Problems with apache13-fp (installed from ports) Date: Tue, 17 Jul 2001 20:44:52 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 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 Drew, Thanks for your reply. Doing the basic 'make install' from ports automatically starts (what I believe is) change_server.sh which prompts you to install a root web (I created the root web, no sub web, tried a virtual web but that is another story). This is the web (the root web) from which I receive the error. It gave me an error when I tried to install a virtual web also but I'll worry about that one when I get the root web functioning properly. The error below is from my httpd-error.log: [Tue Jul 17 11:29:13 2001] [error] [client 209.245.8.244] File does not exist: $HOME/wwwfp/_vti_bin/shtml.exe/_vti_rpc thanks, mike ----- Original Message ----- From: "Drew Tomlinson" To: "'mike'" Cc: "FreeBSD Questions (E-mail)" Sent: Tuesday, July 17, 2001 6:29 PM Subject: RE: Problems with apache13-fp (installed from ports) > > -----Original Message----- > > From: mike [mailto:mike@coloradosurf.com] > > Sent: Tuesday, July 17, 2001 11:13 AM > > To: freebsd-questions@freebsd.org > > Subject: Problems with apache13-fp (installed from ports) > > > > > > > > Forgive me if this is posted somewhere. I searched the mail lists and > > www.rmr.com and couldn't find a solution ( that actually worked ): > > > > I am also extremely unfamiliar with how the front page extensions work > > with regard to install and actual running. > > > > > > Anyhow... > > > > #uname -a > > FreeBSD maildog.officeonweb.net 4.3-STABLE FreeBSD 4.3-STABLE > > #0: Thu May 10 > > 12:59:38 MDT 2001 > > mike@femail.officeonweb.net:/usr/obj/usr/src/sys/EDDY > > i386 > > (yes, I know I still need to patch my kernel) > > > > > > I am installing apache13-fp from ports. The install goes ok > > but I cannot > > connect via an fp client. > > > > I get the error: > > > > [Tue Jul 17 11:29:13 2001] [error] [client 209.245.8.244] > > File does not > > exist: $HOME/wwwfp/_vti_bin/shtml.exe/_vti_rpc > > > > > > The path $HOME/wwwfp/_vti_bin/ does exist, but only the directories: > > vti_adm and _vti_aut are in there. > > > > www.rmr.com suggested that it might be a uid/gid issues. So I > > (re-installed > > several times) changed thefp user and fp group (by both > > making them and > > exiting user with a uid/gid > 1000 and also by changing the > > default apache's > > uid/gid to > 1000). > > Neither worked --> same error. > > > > I also saw in the -isp or -questions maillist that running > > fpsveradmin.exe > > (or something like that) and doing an upgrade or a check > > might work. Did > > that --> didn't work. > > Did you run this program and create a root web? I don't know a lot but I do > know that you need to create a root web. > > HTH, > > Drew > > > I also saw that it might be a permissions issue. That didn't > > seem like the > > right answer. Please correct me if I'm wrong. > > > > > > Does anybody know this one?? > > > > whining (like my month old daughter), > > > > > > mike > > > > > > > > > > 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 17 19:53:52 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 C771537B403; Tue, 17 Jul 2001 19:53:46 -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 15MhT8-0003hR-00; Wed, 18 Jul 2001 03:53:46 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.3/8.11.1) id f6I2rjZ67322; Wed, 18 Jul 2001 03:53:45 +0100 (BST) (envelope-from jcm) Date: Wed, 18 Jul 2001 03:53:45 +0100 From: j mckitrick To: Greg Lehey Cc: freebsd-questions@FreeBSD.org Subject: Re: any benefits to XFree86 4 on a laptop? Message-ID: <20010718035344.A67305@dogma.freebsd-uk.eu.org> References: <20010717171937.A61988@dogma.freebsd-uk.eu.org> <20010718121640.E69861@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20010718121640.E69861@wantadilla.lemis.com>; from grog@FreeBSD.org on Wed, Jul 18, 2001 at 12:16:40PM +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 Wed, Jul 18, 2001 at 12:16:40PM +0930, Greg Lehey wrote: | On Tuesday, 17 July 2001 at 17:19:37 +0100, j mckitrick wrote: | > | > No fancy graphics chips or anything, I just wondered if it is more | > efficient, stable, or otherwise better. | | (looks for question.) | | Ah, | | > Subject: Re: any benefits to XFree86 4 on a laptop? | | Well, one significant benefit is that it supports more laptop graphics | chip sets. Both of my latest laptops (Dell Inspiron 7500, IBM | ThinkPad T22) need it to run at all . IIUC, I need to rebuild *ALL* of my X apps, correct? jcm -- o-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-o | ~~~~~~~~~~~~ Jonathon McKitrick ~~~~~~~~~~~~~ | | "I prefer the term 'Artificial Person' myself." | o-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-o To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 19:59:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from omsk.mushinsky.net (omsk.mushinsky.net [66.114.66.201]) by hub.freebsd.org (Postfix) with ESMTP id 9052037B401 for ; Tue, 17 Jul 2001 19:59:34 -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 f6I2uYQ00467; Tue, 17 Jul 2001 22:56:35 -0400 (EDT) (envelope-from imush@mail.ru) Content-Type: text/plain; charset="windows-1251" From: Isaac Mushinsky To: , "freebsd-questions" Subject: Re: Newbie, X server not working. Date: Tue, 17 Jul 2001 22:56:34 -0400 X-Mailer: KMail [version 1.2] References: In-Reply-To: MIME-Version: 1.0 Message-Id: <01071722563401.00413@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 Ra you sure the file XF86Config exists and is in the right place? I think= the=20 configuration utility only creates the file in you home directory. You th= en=20 examine and put it in /etc/X11. It appears you installed X v 3.x.x. Perhaps you should try 4.0.x in the=20 ports. I found it much better. On Tuesday 17 July 2001 11:52, you wrote: > I installed the user w/xwindow distribution 4.2 successfully except for= one > thing. I cannot get the xwindows to start. When I was in the X86Confi= g > through /stand/sysinstall, it recognized my mouse and I was configuring= it > in an xwindow environment, but when trying to start xwindows, it could = not > do it. I have an ATI All in wonder video card. I used the Mach64 driv= ers > like it specified, but still no luck. Any ideas for this newbie? I re= ally > want to switch over to Unix/Linux from Windows. Any help would greatly= be > appreciated. > John Ellison > john-n-judy@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 Tue Jul 17 20:11: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mbox.com.au (smtp2.mbox.com.au [203.103.80.178]) by hub.freebsd.org (Postfix) with ESMTP id 0588137B413 for ; Tue, 17 Jul 2001 20:11:01 -0700 (PDT) (envelope-from bsd-freak@mbox.com.au) Received: from nms2.mbox.com.au (webmail.i7mail.com.au [192.168.20.4]) by smtp2.mbox.com.au (Sun Internet Mail Server sims.4.0.2000.05.17.04.13.p6) with ESMTP id <0GGN00J7FFFQ6C@smtp2.mbox.com.au> for freebsd-questions@FreeBSD.ORG; Wed, 18 Jul 2001 11:09:26 +0800 (WST) Received: from mbox.com.au ([127.0.0.1]) by nms2.mbox.com.au (Netscape Messaging Server 4.15) with ESMTP id GGNFFQ02.EV1 for ; Wed, 18 Jul 2001 11:09:26 +0800 Date: Wed, 18 Jul 2001 13:09:26 +1000 From: BSD Freak Subject: Allowing Relaying on FreeBSD 4.3 To: FreeBSD Questions Message-id: <2b3ae22b9363.2b93632b3ae2@mbox.com.au> MIME-version: 1.0 X-Mailer: Netscape Webmail Content-type: text/plain; charset=us-ascii Content-language: en Content-disposition: inline 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 Hi all, I am having problems allowing someone to relay mail on our SMTP server. I have edited (created) the file /etc/mail/access to look as follows: 139.56.2.77 RELAY This allows relaying from 139.56.2.77 on my Linux box but not on FreeBSD. Any solutions to my dilemma? Thank in advance... --------------------------------------------- Receive faxes 24x7, no second line necessary. http://www.mbox.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 20:19:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from itouch.co.nz (itouch.co.nz [203.99.66.188]) by hub.freebsd.org (Postfix) with ESMTP id A387D37B403 for ; Tue, 17 Jul 2001 20:19:22 -0700 (PDT) (envelope-from jonc@itouch.co.nz) Received: (from jonc@localhost) by itouch.co.nz (8.11.3/8.11.1) id f6I3JIX98706; Wed, 18 Jul 2001 15:19:18 +1200 (NZST) (envelope-from jonc) Date: Wed, 18 Jul 2001 15:19:18 +1200 From: Jonathan Chen To: BSD Freak Cc: FreeBSD Questions Subject: Re: Allowing Relaying on FreeBSD 4.3 Message-ID: <20010718151918.B96624@itouchnz.itouch> References: <2b3ae22b9363.2b93632b3ae2@mbox.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <2b3ae22b9363.2b93632b3ae2@mbox.com.au>; from bsd-freak@mbox.com.au on Wed, Jul 18, 2001 at 01:09:26PM +1000 Sender: owner-freebsd-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 18, 2001 at 01:09:26PM +1000, BSD Freak wrote: > Hi all, > > I am having problems allowing someone to relay mail on our SMTP server. > > I have edited (created) the file /etc/mail/access to look as follows: > > 139.56.2.77 RELAY > > > > This allows relaying from 139.56.2.77 on my Linux box but not on > FreeBSD. > > Any solutions to my dilemma? Did you remember to do a `make' to build access.db? -- Jonathan Chen ---------------------------------------------------------------------- "Nyuck, nyuck, nyuck" - Curly To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 20:23:37 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 30EA537B403 for ; Tue, 17 Jul 2001 20:23:34 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 413646ACC1; Wed, 18 Jul 2001 12:53:31 +0930 (CST) Date: Wed, 18 Jul 2001 12:53:31 +0930 From: Greg Lehey To: j mckitrick Cc: freebsd-questions@FreeBSD.org Subject: Re: any benefits to XFree86 4 on a laptop? Message-ID: <20010718125331.F69861@wantadilla.lemis.com> References: <20010717171937.A61988@dogma.freebsd-uk.eu.org> <20010718121640.E69861@wantadilla.lemis.com> <20010718035344.A67305@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010718035344.A67305@dogma.freebsd-uk.eu.org>; from jcm@FreeBSD-uk.eu.org on Wed, Jul 18, 2001 at 03:53:45AM +0100 Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wednesday, 18 July 2001 at 3:53:45 +0100, j mckitrick wrote: > On Wed, Jul 18, 2001 at 12:16:40PM +0930, Greg Lehey wrote: >> On Tuesday, 17 July 2001 at 17:19:37 +0100, j mckitrick wrote: >>> >>> No fancy graphics chips or anything, I just wondered if it is more >>> efficient, stable, or otherwise better. >> >> (looks for question.) >> >> Ah, >> >>> Subject: Re: any benefits to XFree86 4 on a laptop? >> >> Well, one significant benefit is that it supports more laptop graphics >> chip sets. Both of my latest laptops (Dell Inspiron 7500, IBM >> ThinkPad T22) need it to run at all . > > IIUC, I need to rebuild *ALL* of my X apps, correct? No. They're clients, they'll work fine. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 20:32:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailout2-0.nyroc.rr.com (mailout2-0.nyroc.rr.com [24.92.226.121]) by hub.freebsd.org (Postfix) with ESMTP id 9EED137B403 for ; Tue, 17 Jul 2001 20:32:30 -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 f6I3VDW14542; Tue, 17 Jul 2001 23:31:14 -0400 (EDT) Content-Type: text/plain; charset="iso-8859-1" From: Justin C Sherrill To: questions@freebsd.org Subject: Re: Recommend a NIC Date: Tue, 17 Jul 2001 23:38:08 -0400 X-Mailer: KMail [version 1.2] References: <001001c10eec$9be918e0$0e00000a@tomcat> In-Reply-To: <001001c10eec$9be918e0$0e00000a@tomcat> Cc: "Andrew C. Hornback" , MIME-Version: 1.0 Message-Id: <01071723380800.01143@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 Tuesday 17 July 2001 14:16, you wrote: > You DIDN'T just say that... DID you?!? > > *falls over laughing* > > The difference between a 3Com and a RealTek is only the price? *shakes > his head and makes a note not to get a cable modem...* NICs come into our warehouse in sheets; 3Com cards cost us 3 times as much and invariably had some duds on every allotment. RealTek didn't when we ordered from them. I was using RealTek vs. 3Com because I've seen people attach value judgements to those brand names when overall, the brand name only made a difference in price. If you're going to make a recommendation, it'd be nice to have some evidence other than anecdotal. My personal best experience with network cards in FreeBSD came from Intel EtherExpress chipsets in two different machines. That's not a lot to judge from, of course. I've also had good luck with 3Com 9xx series cards, which use a different driver (xl instead of ep) from the troublesome ones Gavin mentioned. I unfortunately haven't experienced and don't know of a fix for the ep flakiness... That might be a question for the freebsd-hardware list. Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 20:47:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail13.sdc1.sfba.home.com (femail13.sdc1.sfba.home.com [24.0.95.140]) by hub.freebsd.org (Postfix) with ESMTP id 0984A37B401 for ; Tue, 17 Jul 2001 20:47:31 -0700 (PDT) (envelope-from btdang@home.com) Received: from home.com ([24.248.85.196]) by femail13.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010718034730.YTAK20529.femail13.sdc1.sfba.home.com@home.com>; Tue, 17 Jul 2001 20:47:30 -0700 Message-ID: <3B550811.B1F3515B@home.com> Date: Tue, 17 Jul 2001 20:52:49 -0700 From: Bruce Dang Organization: Boys & Girls Clubs X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Danny Cc: Todd Reed , freebsd-questions@FreeBSD.ORG Subject: Re: Configuring Apache References: <3B55657A.5EF1F8DD@bigpond.net.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG To restart apache, you shoudl use the apachectl command. /usr/local/apache/bin/apachectl restart Bruce Dang www.tbug.org Danny wrote: > > Hello > > - After you changed httpd.conf don't you have to type in "kill -1 httpd" > before the changes take effect? > > -Looking forward toyou feedback > > dannyho@bigpond.net.au > > Todd Reed wrote: > > > > I can't get my apache web server to pull up the correct pages. When I > > change the configurations to go to a different directory, it will give me > > "This page cannot be displayed". Here is my httpd.conf. The access.conf > > and srm.conf are empty. I've got the following pages in the > > /mnt/vdrv/inetpub/www/root: index.htm, index.html, index.php. If i replace > > the httpd.conf with the httpd.conf.default (back to the original), it pulls > > up the default Apache Page > > > > --Configs Start > > > > ServerType standalone > > ServerRoot "/mnt/vdrv/inetpub/www" > > PidFile /var/run/httpd.pid > > ScoreBoardFile /var/run/httpd.scoreboard > > Timeout 300 > > KeepAlive On > > MaxKeepAliveRequests 100 > > KeepAliveTimeout 15 > > MinSpareServers 5 > > MaxSpareServers 10 > > StartServers 5 > > MaxClients 150 > > MaxRequestsPerChild 0 > > > > LoadModule mmap_static_module libexec/apache/mod_mmap_static.so > > LoadModule vhost_alias_module libexec/apache/mod_vhost_alias.so > > LoadModule env_module libexec/apache/mod_env.so > > LoadModule config_log_module libexec/apache/mod_log_config.so > > LoadModule mime_magic_module libexec/apache/mod_mime_magic.so > > LoadModule mime_module libexec/apache/mod_mime.so > > LoadModule negotiation_module libexec/apache/mod_negotiation.so > > LoadModule status_module libexec/apache/mod_status.so > > LoadModule info_module libexec/apache/mod_info.so > > LoadModule includes_module libexec/apache/mod_include.so > > LoadModule autoindex_module libexec/apache/mod_autoindex.so > > LoadModule dir_module libexec/apache/mod_dir.so > > LoadModule cgi_module libexec/apache/mod_cgi.so > > LoadModule asis_module libexec/apache/mod_asis.so > > LoadModule imap_module libexec/apache/mod_imap.so > > LoadModule action_module libexec/apache/mod_actions.so > > LoadModule speling_module libexec/apache/mod_speling.so > > LoadModule userdir_module libexec/apache/mod_userdir.so > > LoadModule alias_module libexec/apache/mod_alias.so > > LoadModule rewrite_module libexec/apache/mod_rewrite.so > > LoadModule access_module libexec/apache/mod_access.so > > LoadModule auth_module libexec/apache/mod_auth.so > > LoadModule anon_auth_module libexec/apache/mod_auth_anon.so > > LoadModule db_auth_module libexec/apache/mod_auth_db.so > > LoadModule digest_module libexec/apache/mod_digest.so > > LoadModule proxy_module libexec/apache/libproxy.so > > LoadModule cern_meta_module libexec/apache/mod_cern_meta.so > > LoadModule expires_module libexec/apache/mod_expires.so > > LoadModule headers_module libexec/apache/mod_headers.so > > LoadModule usertrack_module libexec/apache/mod_usertrack.so > > LoadModule unique_id_module libexec/apache/mod_unique_id.so > > LoadModule setenvif_module libexec/apache/mod_setenvif.so > > > > ClearModuleList > > AddModule mod_mmap_static.c > > AddModule mod_vhost_alias.c > > AddModule mod_env.c > > AddModule mod_log_config.c > > AddModule mod_mime_magic.c > > AddModule mod_mime.c > > AddModule mod_negotiation.c > > AddModule mod_status.c > > AddModule mod_info.c > > AddModule mod_include.c > > AddModule mod_autoindex.c > > AddModule mod_dir.c > > AddModule mod_cgi.c > > AddModule mod_asis.c > > AddModule mod_imap.c > > AddModule mod_actions.c > > AddModule mod_speling.c > > AddModule mod_userdir.c > > AddModule mod_alias.c > > AddModule mod_rewrite.c > > AddModule mod_access.c > > AddModule mod_auth.c > > AddModule mod_auth_anon.c > > AddModule mod_auth_db.c > > AddModule mod_digest.c > > AddModule mod_proxy.c > > AddModule mod_cern_meta.c > > AddModule mod_expires.c > > AddModule mod_headers.c > > AddModule mod_usertrack.c > > AddModule mod_unique_id.c > > AddModule mod_so.c > > AddModule mod_setenvif.c > > > > Port 80 > > User nobody > > Group nogroup > > ServerAdmin admin@saera.neaclinic.com > > DocumentRoot "/mnt/vdrv/inetpub/www/root" > > > > > > Options FollowSymLinks > > AllowOverride None > > > > > > > > > > Options Indexes FollowSymLinks MultiViews > > AllowOverride None > > Order allow,deny > > Allow from all > > > > > > > > UserDir public_html > > > > > > > > > > > > DirectoryIndex index.php index.php3 index.html > > > > > > DirectoryIndex index.php3 index.html > > > > > > > > > > DirectoryIndex index.php index.html > > > > > > DirectoryIndex index.html > > > > > > > > > > AccessFileName .htaccess > > > > Order allow,deny > > Deny from all > > > > > > UseCanonicalName On > > > > > > TypesConfig /usr/local/etc/apache/mime.types > > > > > > DefaultType text/plain > > > > > > MIMEMagicFile /usr/local/etc/apache/magic > > > > > > HostnameLookups Off > > > > ErrorLog /var/log/httpd-error.log > > > > LogLevel warn > > > > 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 > > > > CustomLog /var/log/httpd-access.log combined > > > > ServerSignature On > > > > > > Alias /icons/ "/mnt/vdrv/inptpub/www/icons/" > > > > > > Options Indexes MultiViews > > AllowOverride None > > Order allow,deny > > Allow from all > > > > > > ScriptAlias /cgi-bin/ "/mnt/vdrv/inetpub/www/cgi-bin/" > > > > > > AllowOverride None > > Options None > > Order allow,deny > > Allow from all > > > > > > > > > > > > > > IndexOptions FancyIndexing > > > > AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip > > > > AddIconByType (TXT,/icons/text.gif) text/* > > AddIconByType (IMG,/icons/image2.gif) image/* > > AddIconByType (SND,/icons/sound2.gif) audio/* > > AddIconByType (VID,/icons/movie.gif) video/* > > > > AddIcon /icons/binary.gif .bin .exe > > AddIcon /icons/binhex.gif .hqx > > AddIcon /icons/tar.gif .tar > > AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv > > AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip > > AddIcon /icons/a.gif .ps .ai .eps > > AddIcon /icons/layout.gif .html .shtml .htm .pdf > > AddIcon /icons/text.gif .txt > > AddIcon /icons/c.gif .c > > AddIcon /icons/p.gif .pl .py > > AddIcon /icons/f.gif .for > > AddIcon /icons/dvi.gif .dvi > > AddIcon /icons/uuencoded.gif .uu > > AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl > > AddIcon /icons/tex.gif .tex > > AddIcon /icons/bomb.gif core > > > > AddIcon /icons/back.gif .. > > AddIcon /icons/hand.right.gif README > > AddIcon /icons/folder.gif ^^DIRECTORY^^ > > AddIcon /icons/blank.gif ^^BLANKICON^^ > > > > DefaultIcon /icons/unknown.gif > > > > ReadmeName README > > HeaderName HEADER > > > > IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t > > > > > > > > AddEncoding x-compress Z > > AddEncoding x-gzip gz tgz > > AddLanguage da .dk > > AddLanguage nl .nl > > AddLanguage en .en > > AddLanguage et .ee > > AddLanguage fr .fr > > AddLanguage de .de > > AddLanguage el .el > > AddLanguage he .he > > AddCharset ISO-8859-8 .iso8859-8 > > AddLanguage it .it > > AddLanguage ja .ja > > AddCharset ISO-2022-JP .jis > > AddLanguage kr .kr > > AddCharset ISO-2022-KR .iso-kr > > AddLanguage no .no > > AddLanguage pl .po > > AddCharset ISO-8859-2 .iso-pl > > AddLanguage pt .pt > > AddLanguage pt-br .pt-br > > AddLanguage ltz .lu > > AddLanguage ca .ca > > AddLanguage es .es > > AddLanguage sv .se > > AddLanguage cz .cz > > AddLanguage ru .ru > > AddLanguage tw .tw > > AddCharset Big5 .Big5 .big5 > > AddCharset WINDOWS-1251 .cp-1251 > > AddCharset CP866 .cp866 > > AddCharset ISO-8859-5 .iso-ru > > AddCharset KOI8-R .koi8-r > > AddCharset UCS-2 .ucs2 > > AddCharset UCS-4 .ucs4 > > AddCharset UTF-8 .utf8 > > > > > > LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz > > ca es sv tw > > > > > > > > AddType application/x-httpd-php3 .php3 > > AddType application/x-httpd-php3-source .php3s > > > > > > AddType application/x-httpd-php .php > > AddType application/x-httpd-php-source .phps > > > > > > AddType application/x-tar .tgz > > > > > > BrowserMatch "Mozilla/2" nokeepalive > > BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0 > > BrowserMatch "RealPlayer 4\.0" force-response-1.0 > > BrowserMatch "Java/1\.0" force-response-1.0 > > BrowserMatch "JDK/1\.0" force-response-1.0 > > > > _________________________________________________________________ > > 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 20:55: 8 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 151F937B407 for ; Tue, 17 Jul 2001 20:54: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 chmls20.mediaone.net (8.11.1/8.11.1) with ESMTP id f6I3svc22704 for ; Tue, 17 Jul 2001 23:54:58 -0400 (EDT) Received: (from leblanc@localhost) by acadia.ne.mediaone.net (8.9.3/8.9.3) id XAA04695; Tue, 17 Jul 2001 23:49:19 -0400 Date: Tue, 17 Jul 2001 23:49:19 -0400 From: Louis LeBlanc To: freebsd-questions@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: buildworld problems: can't build crypt-blowfish.c Message-ID: <20010717234918.A4569@acadia.ne.mediaone.net> Reply-To: freebsd-questions@FreeBSD.ORG Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <20010716120941.F19358@acadia.ne.mediaone.net> <20010716132506.K19358@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: <20010716132506.K19358@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 Ok, I got it. Turns out I wasn't updating any of the crypt sources (see cvsupfile in quotes). Changed it to update src-all and bippity boppity boo. Done. I even got a custom kernel build and installed without a hitch. Looks good so far. In the chance that anyone actually reads this message, what are some tests that might catch problems with a custom kernel on most systems? I didn't find anything of the sort in the docs. Is the 'if it boots, it works' assumption fairly safe? Thanks Lou On 07/16/01 01:25 PM, Louis LeBlanc sat at the `puter and typed: > More on the make buildworld problem: > The failure comes in the /usr/src/lib/libcrypt/ directory. Here is > where it dies: > > . . . > cd /usr/src/lib/libcrypt; make depend; make all; make install > make: don't know how to make crypt-blowfish.c. Stop > *** Error code 2 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > > listing of /usr/src/lib/libcrypt/ > $ ls > Makefile crypt.3 crypt.h > crypt-md5.c crypt.c misc.c > > The Makefile has the following lines in it: > .PATH: ${.CURDIR}/../../secure/lib/libcrypt > SRCS+= crypt-des.c crypt-blowfish.c blowfish.c > > And a listing of /usr/src/secure/lib/libcrypt/: > ls ../../secure/lib/libcrypt > Makefile crypt-des.c > > Any ideas what's up? > > Thanks > Lou > > On 07/16/01 12:09 PM, Louis LeBlanc sat at the `puter and typed: > > Hey all. Here are the problems: > > I am running the following: > > /usr/local/bin/cvsup -g -L 2 -z /etc/cvsupfile > > > > Everything updates fine, but the refuse file is ignored. > > > > Here is my /etc/cvsupfile: > > ------------------------------------------------------ > > *default host=cvsup.FreeBSD.org > > *default base=/usr > > *default prefix=/usr > > *default release=cvs > > *default tag=RELENG_4 > > *default delete use-rel-suffix > > > > src-base > > src-bin > > src-contrib > > src-etc > > src-games > > src-gnu > > src-include > > src-kerberosIV > > src-kerberos5 > > src-lib > > src-libexec > > src-release > > src-sbin > > src-share > > src-sys > > src-tools > > src-usrbin > > src-usrsbin > > *default tag=. > > ports-all > > doc-all > > ------------------------------------------------------ > > > > In /usr/sup/ I have the following refuse file: > > ------------------------------------------------------ > > doc/de > > doc/de_* > > doc/es > > doc/es_* > > doc/fr > > doc/fr_* > > doc/ja > > doc/ja_* > > doc/nl > > doc/nl_* > > doc/ru > > doc/ru_* > > doc/zh > > doc/zh_* > > ports/chinese > > ports/french > > ports/german > > ports/hebrew > > ports/japanese > > ports/korean > > ports/russian > > ports/ukrainian > > ports/vietnamese > > ------------------------------------------------------ > > > > Seems that should prevent the language ports from being updated, > > right? > > > > Next problem: make buildworld > > After the cvsup, I run mergemaster and install any changed files > > without merging (I am not changing any source myself at this point). > > the make buildworld goes for quite some time then fails. > > > > Now, I'm not one of those arrogant jerks that assumes the problem is > > with the compiler, someone else's source or whatever. I just need to > > know if anyone out there knows what I'm doing wrong. :| > > > > Thanks all. > > > > -- > > Louis LeBlanc leblanc@acadia.ne.mediaone.net > > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > > http://acadia.ne.mediaone.net Ô¿Ô¬ > > > > If an experiment works, something has gone wrong. > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > -- > Louis LeBlanc leblanc@acadia.ne.mediaone.net > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > http://acadia.ne.mediaone.net Ô¿Ô¬ > > philosophy: > The ability to bear with calmness the misfortunes of our friends. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- Louis LeBlanc leblanc@acadia.ne.mediaone.net Fully Funded Hobbyist, KeySlapper Extrordinaire :) http://acadia.ne.mediaone.net Ô¿Ô¬ Chemist who falls in acid will be tripping for weeks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 21:10:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web20107.mail.yahoo.com (web20107.mail.yahoo.com [216.136.226.44]) by hub.freebsd.org (Postfix) with SMTP id EEE4C37B403 for ; Tue, 17 Jul 2001 21:10:50 -0700 (PDT) (envelope-from bsdneophyte@yahoo.com) Message-ID: <20010718041050.79305.qmail@web20107.mail.yahoo.com> Received: from [63.193.147.188] by web20107.mail.yahoo.com via HTTP; Tue, 17 Jul 2001 21:10:50 PDT Date: Tue, 17 Jul 2001 21:10:50 -0700 (PDT) From: Bsd Newbie Subject: a fast windows manager? 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 an inexpensive bookpc that uses the SiS630 chipset. It's pulling 16mb from the system ram... The problem with this chipset is it's incredibly slow. I've tried KDE and Gnome which crawl along. Is there a windows manager that looks more like CDE and is much faster than these two? __________________________________________________ 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 17 21:11: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from infinity.infoinsights.com (infinity.infoinsights.com [208.151.124.145]) by hub.freebsd.org (Postfix) with ESMTP id 82DE437B405 for ; Tue, 17 Jul 2001 21:10:57 -0700 (PDT) (envelope-from chrisl@thethirdsector.com) Received: by infinity.thethirdsector.com with Internet Mail Service (5.5.2650.21) id ; Tue, 17 Jul 2001 20:06:46 -0800 Message-ID: <70CDD1EE3A2CD511993900104B0A30A201A785@infinity.thethirdsector.com> From: Chris Lott To: freebsd-questions@freebsd.org Subject: RE: has anyone tried out the M-Systems Disk-On-Key devices? Date: Tue, 17 Jul 2001 20:06:45 -0800 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 > Has anyone tried out the M-Systems DiskOnKey Flash disk on a keychain > device? I'd like to know the answer to this too, as the device is fantasticall handy and works great on my win2k boxes... but no joy on Linux or FreeBSD c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 21:15: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web20103.mail.yahoo.com (web20103.mail.yahoo.com [216.136.226.40]) by hub.freebsd.org (Postfix) with SMTP id 62D5F37B401 for ; Tue, 17 Jul 2001 21:14:59 -0700 (PDT) (envelope-from bsdneophyte@yahoo.com) Message-ID: <20010718041459.70062.qmail@web20103.mail.yahoo.com> Received: from [63.193.147.188] by web20103.mail.yahoo.com via HTTP; Tue, 17 Jul 2001 21:14:59 PDT Date: Tue, 17 Jul 2001 21:14:59 -0700 (PDT) From: Bsd Newbie Subject: any new suggestions on getting kerebos5 off my machine? To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've been told to copy over my old kernel and that will probably solve the problem. Someone also mentioned uninstalling kerebos5 would help. Then someone else suggested I reinstall FreeBSD. Are these the best methods is there anything else I can do... a shorter method that will let me get into the box? I booted into single user mode and redid the passwords and rebuilt the password file, but that didn't work. Do I need to uninstall kerebos5 to get the system working again... or should I build a kerebos password database? __________________________________________________ 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 17 21:18:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mbox.com.au (smtp2.mbox.com.au [203.103.80.178]) by hub.freebsd.org (Postfix) with ESMTP id EF66137B403 for ; Tue, 17 Jul 2001 21:18:46 -0700 (PDT) (envelope-from bsd-freak@mbox.com.au) Received: from nms2.mbox.com.au (webmail.i7mail.com.au [192.168.20.4]) by smtp2.mbox.com.au (Sun Internet Mail Server sims.4.0.2000.05.17.04.13.p6) with ESMTP id <0GGN00MM8IKHXM@smtp2.mbox.com.au> for freebsd-questions@FreeBSD.ORG; Wed, 18 Jul 2001 12:17:05 +0800 (WST) Received: from mbox.com.au ([127.0.0.1]) by nms2.mbox.com.au (Netscape Messaging Server 4.15) with ESMTP id GGNIKH02.1WO for ; Wed, 18 Jul 2001 12:17:05 +0800 Date: Wed, 18 Jul 2001 14:17:05 +1000 From: BSD Freak Subject: Accepting mail from unqualified mail servers To: FreeBSD Questions Message-id: <2c21652c6681.2c66812c2165@mbox.com.au> MIME-version: 1.0 X-Mailer: Netscape Webmail Content-type: text/plain; charset=us-ascii Content-language: en Content-disposition: inline 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 Hi all... I need to be able to accept mail from mail servers that are behind a DMZ (and hence their hostnames cannot be resolved). It seems by default FreeBSD does not accept mail from mail servers who hostname cannot be resloved in the public DNS. Is there anyway to modify this behaviour (under sendmail on FreeBSD 4.3)? I know this could open me up to spam but I need to do this.... Any help would be greatly appreciated..... --------------------------------------------- Receive faxes 24x7, no second line necessary. http://www.mbox.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 21:19:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from itouch.co.nz (itouch.co.nz [203.99.66.188]) by hub.freebsd.org (Postfix) with ESMTP id 3042937B403 for ; Tue, 17 Jul 2001 21:19:43 -0700 (PDT) (envelope-from jonc@itouch.co.nz) Received: (from jonc@localhost) by itouch.co.nz (8.11.3/8.11.1) id f6I4Jew04367; Wed, 18 Jul 2001 16:19:40 +1200 (NZST) (envelope-from jonc) Date: Wed, 18 Jul 2001 16:19:40 +1200 From: Jonathan Chen To: BSD Freak Cc: freebsd-questions@freebsd.org Subject: Re: Allowing Relaying on FreeBSD 4.3 Message-ID: <20010718161939.A4020@itouchnz.itouch> References: <2c2c352c350b.2c350b2c2c35@mbox.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <2c2c352c350b.2c350b2c2c35@mbox.com.au>; from bsd-freak@mbox.com.au on Wed, Jul 18, 2001 at 02:13:52PM +1000 Sender: owner-freebsd-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 18, 2001 at 02:13:52PM +1000, BSD Freak wrote: > no what is the command to do that. I am not aware as I never had to do > that under Linux. # cd /etc/mail # make Should do it. -- Jonathan Chen ------------------------------------------------------------------------ "We laugh in the face of danger, we drop icecubes down the vest of fear" - Edmond Blackadder III > > ----- Original Message ----- > From: Jonathan Chen > Date: Wednesday, July 18, 2001 1:19 pm > Subject: Re: Allowing Relaying on FreeBSD 4.3 > > > On Wed, Jul 18, 2001 at 01:09:26PM +1000, BSD Freak wrote: > > > Hi all, > > > > > > I am having problems allowing someone to relay mail on our SMTP > > server.> > > > I have edited (created) the file /etc/mai> > > > 139.56.2.77 RELAY > > > > > > > > > > > > This allows relaying from 139.56.2.77 on my Linux box but not on > > > FreeBSD. > > > > > > Any solutions to my dilemma? > > > > Did you remember to do a `make' to build access.db? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 21:20: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hp06.postech.ac.kr (smtp.postech.ac.kr [141.223.2.1]) by hub.freebsd.org (Postfix) with ESMTP id 8A50437B403 for ; Tue, 17 Jul 2001 21:19:56 -0700 (PDT) (envelope-from lahaye@users.sourceforge.net) Received: from users.sourceforge.net (surfion4.postech.ac.kr [141.223.126.84]) by hp06.postech.ac.kr (8.9.3/8.9.3) with ESMTP id NAA26235; Wed, 18 Jul 2001 13:20:41 +0900 (JST) Message-ID: <3B550EB6.69F8DDC@users.sourceforge.net> Date: Wed, 18 Jul 2001 13:21:10 +0900 From: "R. Lahaye" Organization: Postech X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Bsd Newbie Cc: freebsd-questions@freebsd.org Subject: Re: a fast windows manager? References: <20010718041050.79305.qmail@web20107.mail.yahoo.com> Content-Type: text/plain; charset=x-user-defined 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 Bsd Newbie wrote: > > I have an inexpensive bookpc that uses the SiS630 > chipset. It's pulling 16mb from the system ram... > > The problem with this chipset is it's incredibly slow. > > I've tried KDE and Gnome which crawl along. Is there > a windows manager that looks more like CDE and is much > faster than these two? Even on my fast Pentium III with lots of Mem, I find KDE and Gnome a waist of resources. Have a look at xfce at www.xfce.org. It's available as port and package for FreeBSD. Rob. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 21:22:35 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 5966037B403 for ; Tue, 17 Jul 2001 21:22:32 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 84C496ACC1; Wed, 18 Jul 2001 13:52:30 +0930 (CST) Date: Wed, 18 Jul 2001 13:52:30 +0930 From: Greg Lehey To: BSD Freak Cc: FreeBSD Questions Subject: Re: Accepting mail from unqualified mail servers Message-ID: <20010718135230.I69861@wantadilla.lemis.com> References: <2c21652c6681.2c66812c2165@mbox.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <2c21652c6681.2c66812c2165@mbox.com.au>; from bsd-freak@mbox.com.au on Wed, Jul 18, 2001 at 02:17:05PM +1000 Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wednesday, 18 July 2001 at 14:17:05 +1000, BSD Freak wrote: > Hi all... > > > I need to be able to accept mail from mail servers that are behind a DMZ > (and hence their hostnames cannot be resolved). It seems by default > FreeBSD does not accept mail from mail servers who hostname cannot be > resloved in the public DNS. Is there anyway to modify this behaviour > (under sendmail on FreeBSD 4.3)? I know this could open me up to spam > but I need to do this.... > > Any help would be greatly appreciated..... The safest way to do this is to add a dummy reverse zone to your DNS, so that *you* can resolve them and nobody else. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 21:33:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc23.worldnet.att.net (mtiwmhc23.worldnet.att.net [204.127.131.48]) by hub.freebsd.org (Postfix) with ESMTP id 0B19637B401 for ; Tue, 17 Jul 2001 21:33:12 -0700 (PDT) (envelope-from parv@worldnet.att.net) Received: from worldnet.att.net ([32.100.199.219]) by mtiwmhc23.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010718043310.GBCT1777.mtiwmhc23.worldnet.att.net@worldnet.att.net>; Wed, 18 Jul 2001 04:33:10 +0000 Received: by worldnet.att.net (Postfix, from userid 1001) id 82F2D50BC5; Wed, 18 Jul 2001 00:37:08 -0400 (EDT) Date: Wed, 18 Jul 2001 00:37:08 -0400 From: parv To: Bsd Newbie Cc: freebsd-questions@FreeBSD.ORG Subject: Re: a fast windows manager? Message-ID: <20010718003708.A12385@moo.holy.cow> Mail-Followup-To: Bsd Newbie , freebsd-questions@FreeBSD.ORG References: <20010718041050.79305.qmail@web20107.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010718041050.79305.qmail@web20107.mail.yahoo.com>; from bsdneophyte@yahoo.com on Tue, Jul 17, 2001 at 09:10:50PM -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 Jul 18 00:15, i got this from Bsd... > > I have an inexpensive bookpc that uses the SiS630 > chipset. It's pulling 16mb from the system ram... > > The problem with this chipset is it's incredibly slow. > > I've tried KDE and Gnome which crawl along. Is there > a windows manager that looks more like CDE and is much > faster than these two? > xfce is like cde, don't know about speed & memory usage. fvwm1, fvwm2, blackbox, vtwm, tvtwm -- all take about the same virtual/real memory, more or less ... fvwm2 would be ok for small RAM, as long as you don't run any modules. so, will blackbox, as long as you don't run bbkeys (for key binding) and bbpager (for _visual_ virtual desktop/pager) vtwm has crashed on me (freebsd >3.5-stable + XFree86 >3.3.6) while using key bindings or moving windows semi-randomly. tvtwm... ah, doesn't crash like vtwm... only problem is it's harder to resize/move windows via keyboard, unlike fvwm2, but that's a personal preference. if you have 3 mouse button, you should at least try wmx ... i gave up for creating root menu was unusually cumbersome... here are some comparisons & things... my comparison, nov 2000 http://www103.pair.com/parv/comp/unix/conf.x/compare-wm a list of wms http://www.xwinman.org/ another comparison: http://www.eos.ncsu.edu/wm/ -- 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 17 21:44: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from prince.inix.com (prince.inix.com [63.167.32.68]) by hub.freebsd.org (Postfix) with ESMTP id 6C0ED37B403 for ; Tue, 17 Jul 2001 21:44:03 -0700 (PDT) (envelope-from pat@inix.com) Received: from prince.inix.com (prince.inix.com [63.167.32.68]) by prince.inix.com (8.11.0/8.11.0) with ESMTP id f6I4hqc20822 for ; Tue, 17 Jul 2001 18:43:52 -1000 Date: Tue, 17 Jul 2001 18:43:52 -1000 (HST) From: Patrick Guerin To: Subject: Filename limitation 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 What is the maximum length for a filename, ie. 12345678901234567890.txt --pat To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 22:29:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-2.enteract.com (smtp-2.enteract.com [207.229.143.4]) by hub.freebsd.org (Postfix) with ESMTP id D05F437B40A for ; Tue, 17 Jul 2001 22:29:27 -0700 (PDT) (envelope-from dscheidt@tumbolia.com) Received: from shell-2.enteract.com (shell-2.enteract.com [207.229.143.41]) by smtp-2.enteract.com (Postfix) with ESMTP id 4DE5F62C2; Wed, 18 Jul 2001 00:29:14 -0500 (CDT) Date: Wed, 18 Jul 2001 00:29:14 -0500 (CDT) From: David Scheidt X-X-Sender: To: Bsd Newbie Cc: Subject: Re: a fast windows manager? In-Reply-To: <20010718041050.79305.qmail@web20107.mail.yahoo.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 17 Jul 2001, Bsd Newbie wrote: : :I have an inexpensive bookpc that uses the SiS630 :chipset. It's pulling 16mb from the system ram... : :The problem with this chipset is it's incredibly slow. : :I've tried KDE and Gnome which crawl along. Is there :a windows manager that looks more like CDE and is much :faster than these two? Anything that looks like CDE is going to be slow. A more minimal window manger is likely to provide livable performance, something like twm or fvwm2. -- dscheidt@tumbolia.com Bipedalism is only a fad. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 22:30: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from p1.cs.ohiou.edu (p1.cs.ohiou.edu [132.235.1.11]) by hub.freebsd.org (Postfix) with ESMTP id B797037B405 for ; Tue, 17 Jul 2001 22:30:03 -0700 (PDT) (envelope-from frussell@p1.cs.ohiou.edu) Received: from localhost (frussell@localhost) by p1.cs.ohiou.edu (8.9.3/8.9.3) with SMTP id BAA15346 for ; Wed, 18 Jul 2001 01:29:46 -0400 (EDT) Date: Wed, 18 Jul 2001 01:29:45 -0400 (EDT) From: Russell Francis X-Sender: frussell@p1 To: freebsd-questions@FreeBSD.ORG Subject: Re: a fast windows manager? In-Reply-To: <20010718003708.A12385@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 On Wed, 18 Jul 2001, parv wrote: > on Jul 18 00:15, i got this from Bsd... > > > > I have an inexpensive bookpc that uses the SiS630 > > chipset. It's pulling 16mb from the system ram... > > > > The problem with this chipset is it's incredibly slow. > > > > I've tried KDE and Gnome which crawl along. Is there > > a windows manager that looks more like CDE and is much > > faster than these two? > > > > xfce is like cde, don't know about speed & memory usage. > > fvwm1, fvwm2, blackbox, vtwm, tvtwm -- all take about the same > virtual/real memory, more or less ... These are all very minimalist window managers but I have found them to be unpleasant to work with. Window Maker is also a relatively small and fast window manager with a richer look and interface (modeled after NeXTSTEP). It is my wm/desktop of my choice over gnome/kde/enlightenment you might want to give it a try? http://www.windowmaker.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 17 22:31:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-2.enteract.com (smtp-2.enteract.com [207.229.143.4]) by hub.freebsd.org (Postfix) with ESMTP id C970437B403 for ; Tue, 17 Jul 2001 22:31:29 -0700 (PDT) (envelope-from dscheidt@tumbolia.com) Received: from shell-2.enteract.com (shell-2.enteract.com [207.229.143.41]) by smtp-2.enteract.com (Postfix) with ESMTP id 41B886206; Wed, 18 Jul 2001 00:31:29 -0500 (CDT) Date: Wed, 18 Jul 2001 00:31:29 -0500 (CDT) From: David Scheidt X-X-Sender: To: Patrick Guerin Cc: Subject: Re: Filename limitation 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 Tue, 17 Jul 2001, Patrick Guerin wrote: :What is the maximum length for a filename, ie. 12345678901234567890.txt : 255 bytes, including the complete path. -- dscheidt@tumbolia.com Bipedalism is only a fad. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 22:35: 8 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 1B89937B403 for ; Tue, 17 Jul 2001 22:35:03 -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 f6I5YM818951; Tue, 17 Jul 2001 22:34:23 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Gavin Kenny" , "Justin C Sherrill" , Subject: RE: Recommend a NIC Date: Tue, 17 Jul 2001 22:34:21 -0700 Message-ID: <000c01c10f4b$4c383380$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: <20010717151619.49830.qmail@web20010.mail.yahoo.com> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG There's 2 things you have to do to fix the 3c509 for any one that cares: 1) Run it in a fast system (Pentium 200 or better) 2) Run the 3c509b version of the card The original 509's were very bad and would cause lots of problems particularly on slower systems 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 Gavin Kenny >Sent: Tuesday, July 17, 2001 8:16 AM >To: Justin C Sherrill; questions@FreeBSD.ORG >Cc: Gavin Kenny >Subject: Re: Recommend a NIC > > >The trouble with the 3Com 509 is that it uses the ep >driver, which according to the archives of this list, >is flakey and I keep getting "No Buffer space >Available" messages which I have been told is down to >the ep driver. If this isn't the case and someone >knows how to fix it without using another type of NIC >(and therefore driver) please let me know. > >Cheers > >Gavin > > --- Justin C Sherrill >wrote: > On Tuesday 17 July 2001 07:18, you wrote: >> >> > My boss has said I can buy some new NIC's. So what >> > does everyone suggest? >> >> Other than the occasional glitch, there's very >> little difference between >> Ethernet cards by manufacturer. Find a cheap one >> (or 10, in your case), make >> sure it's supported, and you will probably be OK. >> >> The difference between, say, a 3Com card and a >> generic card with a RealTek >> chipset is only the price. My workplace (cable ISP) >> installs/supplies >> several hundred Ethernet cards each week to new >> customers, and the average >> results have borne this out. >> >> Justin > >____________________________________________________________ >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 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 22:50:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from fbsd.bosa.ca (cr1003901-a.rct1.bc.wave.home.com [24.113.37.99]) by hub.freebsd.org (Postfix) with ESMTP id 52A4D37B401 for ; Tue, 17 Jul 2001 22:50:19 -0700 (PDT) (envelope-from kulraj@bosa.ca) Received: from ska1 (h24-207-52-63.dlt.dccnet.com [24.207.52.63]) by fbsd.bosa.ca (Postfix) with SMTP id CF123158EB9; Tue, 17 Jul 2001 23:59:50 -0700 (PDT) Message-ID: <000c01c10f4d$5cc690a0$0ac8a8c0@kimsamy.com> From: "Kulraj Gurm (bosa.ca Account)" To: "Justin C Sherrill" , References: <000c01c10f4b$4c383380$1401a8c0@tedm.placo.com> Subject: Re: Recommend a NIC Date: Tue, 17 Jul 2001 22:49: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.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 To answer your original question.......... Intel EtherExpress Pro 10/100 uses fxp driver - never, ever had a problem But my experience is limited. Only have about 30'ish clients using this, plus two in my bsd box at home and two more at work! I don't think you'll regret buying Intel (at least as far as NIC's are concerned - CPU's are quite another matter) Regards, Kulraj Gurm ----- Original Message ----- From: "Ted Mittelstaedt" To: "Gavin Kenny" ; "Justin C Sherrill" ; Sent: Tuesday, July 17, 2001 10:34 PM Subject: RE: Recommend a NIC > There's 2 things you have to do to fix the 3c509 for any one that cares: > > 1) Run it in a fast system (Pentium 200 or better) > 2) Run the 3c509b version of the card > > The original 509's were very bad and would cause lots of problems particularly > on slower systems > > 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 Gavin Kenny > >Sent: Tuesday, July 17, 2001 8:16 AM > >To: Justin C Sherrill; questions@FreeBSD.ORG > >Cc: Gavin Kenny > >Subject: Re: Recommend a NIC > > > > > >The trouble with the 3Com 509 is that it uses the ep > >driver, which according to the archives of this list, > >is flakey and I keep getting "No Buffer space > >Available" messages which I have been told is down to > >the ep driver. If this isn't the case and someone > >knows how to fix it without using another type of NIC > >(and therefore driver) please let me know. > > > >Cheers > > > >Gavin > > > > --- Justin C Sherrill > >wrote: > On Tuesday 17 July 2001 07:18, you wrote: > >> > >> > My boss has said I can buy some new NIC's. So what > >> > does everyone suggest? > >> > >> Other than the occasional glitch, there's very > >> little difference between > >> Ethernet cards by manufacturer. Find a cheap one > >> (or 10, in your case), make > >> sure it's supported, and you will probably be OK. > >> > >> The difference between, say, a 3Com card and a > >> generic card with a RealTek > >> chipset is only the price. My workplace (cable ISP) > >> installs/supplies > >> several hundred Ethernet cards each week to new > >> customers, and the average > >> results have borne this out. > >> > >> Justin > > > >____________________________________________________________ > >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 > > > > > 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 17 22:56:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-62.dsl.lsan03.pacbell.net [63.207.60.62]) by hub.freebsd.org (Postfix) with ESMTP id 1CF5737B406 for ; Tue, 17 Jul 2001 22:56:33 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id CCA4366BA6; Tue, 17 Jul 2001 22:56:31 -0700 (PDT) Date: Tue, 17 Jul 2001 22:56:31 -0700 From: Kris Kennaway To: David Scheidt Cc: Patrick Guerin , freebsd-questions@FreeBSD.ORG Subject: Re: Filename limitation Message-ID: <20010717225630.A91509@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="M9NhX3UHpAaciwkO" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from dscheidt@tumbolia.com on Wed, Jul 18, 2001 at 12:31:29AM -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 --M9NhX3UHpAaciwkO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jul 18, 2001 at 12:31:29AM -0500, David Scheidt wrote: > On Tue, 17 Jul 2001, Patrick Guerin wrote: >=20 > :What is the maximum length for a filename, ie. 12345678901234567890.txt > : >=20 > 255 bytes, including the complete path. No, the complete path can be up to 1024 bytes (PATH_MAX) long. The individual filenames making up the path can be up to NAME_MAX (255 bytes) long. Kris --M9NhX3UHpAaciwkO 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 iD8DBQE7VSUOWry0BWjoQKURAhTsAKCe7TPGiCRJTstkDtXfRXxuD+2/rgCcDOUc FtAA9FfpuIYYfsuwdXCvFr0= =9NN0 -----END PGP SIGNATURE----- --M9NhX3UHpAaciwkO-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 23:13:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web12306.mail.yahoo.com (web12306.mail.yahoo.com [216.136.173.104]) by hub.freebsd.org (Postfix) with SMTP id 685DC37B401 for ; Tue, 17 Jul 2001 23:13:07 -0700 (PDT) (envelope-from kdagee2@yahoo.com) Message-ID: <20010718061301.25805.qmail@web12306.mail.yahoo.com> Received: from [32.100.100.38] by web12306.mail.yahoo.com via HTTP; Tue, 17 Jul 2001 23:13:01 PDT Date: Tue, 17 Jul 2001 23:13:01 -0700 (PDT) From: Karl Agee Subject: still cant cvsup--options needed To: freebsd-questions MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi again, well, I still cant get cvsup working in my freebsd 4.0 install. I dont have a fqdn registered--this is a single workstation on a simple dialup account. So, I dont know if it will even work--funny, I had pkg_add working before.... anyway I need some options before I dump this install. What should I do to get it working???? Or should I reinstall.... 8-p --karl __________________________________________________ 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 17 23:13:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sharmas.dhs.org (cpe-66-1-147-119.ca.sprintbbd.net [66.1.147.119]) by hub.freebsd.org (Postfix) with ESMTP id A0F8F37B401 for ; Tue, 17 Jul 2001 23:13:23 -0700 (PDT) (envelope-from adsharma@sharmas.dhs.org) Received: by sharmas.dhs.org (Postfix, from userid 500) id 46E575DD97; Tue, 17 Jul 2001 23:13:36 -0700 (PDT) Date: Tue, 17 Jul 2001 23:13:36 -0700 From: Arun Sharma To: questions@freebsd.org Subject: konqueror, kjas, XFree86 4.0.1 window swallow problem Message-ID: <20010717231336.A30745@sharmas.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.15i Sender: owner-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: arun-public@sharmas.dhs.org (Arun Sharma) Newsgroups: comp.windows.x.kde Subject: konqueror, kjas, XFree86 4.0.1 window swallow problem NNTP-Posting-Host: 24.221.162.16 Message-ID: <12d80d1c.0107172211.330306c1@posting.google.com> I was getting a gray window where I should've been seeing the java applet. Everything else seemed normal - the java process was there, debug messages looked fine, but no applet. Suspicious about my XFree86 version, I ran the same konqueror binary to display on a VNC server running on a different box. This time the swallow didn't happen, but I could see the applet in an external window, displaying exactly what it should. Is this a known problem ? Any solutions ? I'm on: FreeBSD 4.3-STABLE XFree86 - 4.0.1 $ pkg_info -xI kde kdebase-2.1.1 Base modules for the KDE integrated X11 desktop kdelibs-2.1.2 Libraries for KDE2 kdemultimedia-2.1.1 Utilities for the KDE integrated X11 desktop kdenetwork-2.1.1 Network modules for KDE2 kdesupport-2.1 Mime and UUENCODE/DECODE libraries for the KDE integrated X -Arun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 23:13:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (mail.pioneernet.net [207.115.64.224]) by hub.freebsd.org (Postfix) with ESMTP id 31F3F37B63A for ; Tue, 17 Jul 2001 23:13:45 -0700 (PDT) (envelope-from chip@wiegand.org) Received: from wiegand.org [66.114.152.128] by pioneernet.net with ESMTP (SMTPD32-6.06) id A95060EE0120; Tue, 17 Jul 2001 23:14:40 -0700 Message-ID: <3B552AF6.1E9CD31D@wiegand.org> Date: Tue, 17 Jul 2001 23:21:43 -0700 From: Chip X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Bsd Newbie Cc: freebsd-questions@FreeBSD.ORG Subject: Re: a fast windows manager? References: <20010718041050.79305.qmail@web20107.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 Bsd Newbie wrote: > I have an inexpensive bookpc that uses the SiS630 > chipset. It's pulling 16mb from the system ram... > > The problem with this chipset is it's incredibly slow. > > I've tried KDE and Gnome which crawl along. Is there > a windows manager that looks more like CDE and is much > faster than these two? XFCE would be a good choice, it's in the ports. -- Regards, -- Chip Wiegand CRW Computer Services www.wiegand.org chip@wiegand.org <------------------> Web page design Consulting PC Repair <------------------> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 23:14:29 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 909A337B405 for ; Tue, 17 Jul 2001 23:14:26 -0700 (PDT) (envelope-from btdang@home.com) Received: from home.com ([24.248.85.196]) by femail11.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010718061426.NMCB18785.femail11.sdc1.sfba.home.com@home.com>; Tue, 17 Jul 2001 23:14:26 -0700 Message-ID: <3B552A84.CBE4485C@home.com> Date: Tue, 17 Jul 2001 23:19:48 -0700 From: Bruce Dang Organization: Boys & Girls Clubs X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: BSD Freak Cc: FreeBSD Questions Subject: Re: Allowing a junior administrator add users References: <283a0a27f34a.27f34a283a0a@mbox.com.au> 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 Hehe..you have two options. 1) gie him the root password 2) install sudo BSD Freak wrote: > > Hi all, > > I need to enable one of my junior admins to add /remove users without > giving him the root account. I have added him to the wheel group but > 'adduser' still insist you be root when doing this..... any solutions? > > thanks... > > --------------------------------------------- > Receive faxes 24x7, no second line necessary. > http://www.mbox.com.au/ > > 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 17 23:17:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tomts13-srv.bellnexxia.net (tomts13.bellnexxia.net [209.226.175.34]) by hub.freebsd.org (Postfix) with ESMTP id 4C96937B405 for ; Tue, 17 Jul 2001 23:17:22 -0700 (PDT) (envelope-from david@skytrackercanada.com) Received: from d.tracker ([65.92.122.82]) by tomts13-srv.bellnexxia.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010718061721.ENCK29255.tomts13-srv.bellnexxia.net@d.tracker> for ; Wed, 18 Jul 2001 02:17:21 -0400 Received: (from david@localhost) by d.tracker (8.11.3/8.11.3) id f6I7HRL54390 for questions@freebsd.org; Wed, 18 Jul 2001 07:17:27 GMT (envelope-from david) Date: Wed, 18 Jul 2001 07:17:27 GMT From: David Banning Message-Id: <200107180717.f6I7HRL54390@d.tracker> To: questions@freebsd.org Subject: linux-png install error Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG When installing linux-png I get the following error from ports; su-2.03# make install ===> 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. su-2.03# Any idea what I can do with this? I have tried make --rebuilddb install and all possible combinations. I went into the directory where packages.rpm is and tries doing a rpm --rebuilddb packages.rpm I see a few other people on the list have had the same problem, and not gotten responses. Maybe I have to go to more drastic measures... deinstalling & reinstalling the whole linux-base? (could I do that without disturbing other linux applications on the machine? Maybe I have to rebuild the ports? I'm using; 4.3-STABLE Any pointers would be helpful. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 23:17:58 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 074DB37B401 for ; Tue, 17 Jul 2001 23:17:53 -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 f6I6Ho819045; Tue, 17 Jul 2001 23:17:50 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Justin C Sherrill" , Cc: "Gavin Kenny" Subject: RE: Recommend a NIC Date: Tue, 17 Jul 2001 23:17:50 -0700 Message-ID: <000f01c10f51$5f04c400$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: <01071710452601.00402@roc-24-169-96-227.rochester.rr.com> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG There are significant differences between NIC's. If you read any trade magazines regularly, such as Network Computing, periodically they do "bake-offs" ie. comparison studies between NICS. It's like their favorite thing to do. The poorer Ethernet designs are slower, use much more CPU and generate a lot more RFI. Also they have much more potential for problems in many more systems. Granted you may not have noticed what you might call a statistically significant problem but I can bet that when you DO run across a system with a problem that a better quality NIC would solve it. Also consider that hardware incompatibilities most frequently manifest themselves as intermittent problems, not bizarre showstoppers. There's probably many systems that you put cheap NICs in that appeared to work fine but weeks later had a much higher incidence of problems. Since Windows itself is not a very good OS, the general populace has been programmed these days to accept intermittent problems and crashes as a normal part of the computing experience. 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 Justin C >Sherrill >Sent: Tuesday, July 17, 2001 7:45 AM >To: questions@FreeBSD.ORG >Cc: Gavin Kenny >Subject: Re: Recommend a NIC > > >On Tuesday 17 July 2001 07:18, you wrote: > >> My boss has said I can buy some new NIC's. So what >> does everyone suggest? > >Other than the occasional glitch, there's very little difference between >Ethernet cards by manufacturer. Find a cheap one (or 10, in your >case), make >sure it's supported, and you will probably be OK. > >The difference between, say, a 3Com card and a generic card with a RealTek >chipset is only the price. My workplace (cable ISP) installs/supplies >several hundred Ethernet cards each week to new customers, and the average >results have borne this out. > >Justin > >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 17 23:21:44 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 D31E937B403 for ; Tue, 17 Jul 2001 23:21:41 -0700 (PDT) (envelope-from btdang@home.com) Received: from home.com ([24.248.85.196]) by femail11.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010718062141.NUJA18785.femail11.sdc1.sfba.home.com@home.com>; Tue, 17 Jul 2001 23:21:41 -0700 Message-ID: <3B552C37.E4523260@home.com> Date: Tue, 17 Jul 2001 23:27:03 -0700 From: Bruce Dang Organization: Boys & Girls Clubs X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Patrick Guerin Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Filename limitation 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 Umm..this is defined in /usr/include/sys/syslimits.h #define NAME_MAX 255 /* max bytes in a file name */ So there's your answer Bruce Dang www.tbug.org Patrick Guerin wrote: > > What is the maximum length for a filename, ie. 12345678901234567890.txt > > --pat > > 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 17 23:23: 5 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 285D437B405 for ; Tue, 17 Jul 2001 23:23:01 -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 f6I6Lk819068; Tue, 17 Jul 2001 23:21:47 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "BSD Freak" , "FreeBSD Questions" Subject: RE: Allowing a junior administrator add users Date: Tue, 17 Jul 2001 23:21:46 -0700 Message-ID: <001401c10f51$ebf42c20$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: <283a0a27f34a.27f34a283a0a@mbox.com.au> 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 What you want to do is install webmin. This will allow you to configure a restricted user access internally in webmin that will only allow him add-remove. In addition it will provide a web/graphical interface which if you don't trust him with the root password, he's most likely very, very junior in UNIX, and will probably appreciate greatly. 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 BSD Freak >Sent: Tuesday, July 17, 2001 2:42 PM >To: FreeBSD Questions >Subject: Allowing a junior administrator add users > > >Hi all, > >I need to enable one of my junior admins to add /remove users without >giving him the root account. I have added him to the wheel group but >'adduser' still insist you be root when doing this..... any solutions? > >thanks... > > --------------------------------------------- > Receive faxes 24x7, no second line necessary. > http://www.mbox.com.au/ > >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 17 23:46:18 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 5620637B401 for ; Tue, 17 Jul 2001 23:46:14 -0700 (PDT) (envelope-from stinch79@home.com) Received: from rcprotocalls ([24.79.15.191]) by mail2.rdc2.ab.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with SMTP id <20010718064613.XGXZ28924.mail2.rdc2.ab.home.com@rcprotocalls> for ; Tue, 17 Jul 2001 23:46:13 -0700 Message-ID: <000a01c10f56$843a4560$bf0f4f18@cg.shawcable.net> From: "stinch" To: Subject: installing boot problem ? Date: Wed, 18 Jul 2001 00:54:39 -0600 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C10F24.394447E0" 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_01C10F24.394447E0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable hi there, having a problem with installing freebsd on a p75 ibm. the = error says 'couldn't clone boot floppy to the root file system.' i = install through ftp / what i think is two things my internet connection = or block clusters on my hard drive might have to match up with bsd = before installing the two floppies root.flp mfsroot.flp/ i'm not sure = after stand/sysinstall and after configing to down load through ftp the = error pops up and and says installation complete with some errors . i = had freebsd running and so i figured to re install it with more options = / i,e besides average user (8)// so here i am stuck trying to = install it again // from badly dying to get freebsd up and running = again .... thx for your time in taking my error problem in to = consideration ! THX ------=_NextPart_000_0007_01C10F24.394447E0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
hi there, having a problem with = installing freebsd=20 on a p75 ibm.  the error says 'couldn't clone boot floppy to the = root file=20 system.'    i install through ftp / what i think is two = things my=20 internet connection or block clusters on my hard drive might have to = match up=20 with bsd before installing the two floppies root.flp mfsroot.flp/ i'm = not=20 sure  after stand/sysinstall and after configing to down load = through ftp=20 the error pops up and and says installation complete with some errors=20 .   i had freebsd running and so i figured to re install it = with more=20 options   / i,e  besides  average user (8)//  = so here i=20 am stuck trying to install it again //    from  = badly dying=20 to get freebsd up and running again  ....    thx for = your=20 time in taking my error problem in to consideration !=20 THX
------=_NextPart_000_0007_01C10F24.394447E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 23:51:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from home.sasknow.net (stimpy.sasknow.net [207.195.92.134]) by hub.freebsd.org (Postfix) with ESMTP id 5903B37B40A for ; Tue, 17 Jul 2001 23:51:54 -0700 (PDT) (envelope-from ryan@sasknow.com) Received: from localhost (ryan@localhost) by home.sasknow.net (8.11.3/8.11.3) with ESMTP id f6I0u5f00532; Wed, 18 Jul 2001 00:56:05 GMT (envelope-from ryan@sasknow.com) X-Authentication-Warning: home.sasknow.net: ryan owned process doing -bs Date: Wed, 18 Jul 2001 00:56:04 +0000 (GMT) From: Ryan Thompson X-X-Sender: To: BSD Freak Cc: FreeBSD Questions Subject: Re: SSL Certificates In-Reply-To: <2868b8280d90.280d902868b8@mbox.com.au> Message-ID: <20010718004526.E514-100000@home.sasknow.net> Organization: SaskNow Technologies [www.sasknow.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 BSD Freak wrote to FreeBSD Questions: > Hiya all, > > I need to host multiple SSL sites on my FreeBSD 4.3 box. I am > currently using Apache 1.3 + mod_ssl and am using name based virtual > hosts. I don have a lot of experience with SSL but maybe someone out > ther has. > > My question is do I need a seperate digital certificate for each > virtual host? Going by the Verisign documentation it seems so but is > not 100% clear. You normally need a different digital certificate for each common name (a common name is a complete hostname, like www.yourname.com). Verisign will, however, for a bigger price, issue wildcard certs based on a 2nd level domain, that will match *.yourname.com, for example. Some other cert issuers (like Thawte) offer the same. This assumes you do not want your users to go through the hassle or uncertainty of authorizing a certificate. If you don't care about that, you can self-sign your own certificates and not bother paying a CA, for that matter). And, unfortunately, name based virtual hosting does not work with SSL. Every different SSL virtual host needs a unique IP address. You must use IP-based virtual hosting. If you don't have access to spare IP addresses, virtually hosting multiple SSL sites won't work. > Does anyone know there answer for certain? Been there, done that, got the bigger netblock, so yes, quite certain. :-) - Ryan > > Thank in advance... > > --------------------------------------------- > Receive faxes 24x7, no second line necessary. > http://www.mbox.com.au/ > > 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 17 23:52:30 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 9D3EE37B405 for ; Tue, 17 Jul 2001 23:52:22 -0700 (PDT) (envelope-from jim@ohio.com) Received: from [192.168.0.102] (a1-1c148.neo.rr.com [24.93.162.148]) by clmboh1-smtp3.columbus.rr.com (8.11.2/8.11.2) with ESMTP id f6I6mrO11296 for ; Wed, 18 Jul 2001 02:48:53 -0400 (EDT) Mime-Version: 1.0 X-Sender: jimmail@hogan.ohio.com Message-Id: Date: Wed, 18 Jul 2001 02:50:59 -0400 To: freebsd-questions@freebsd.org From: Jim Arnold Subject: nfs won't run from rc.conf 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 trying to get NFS to run at startup. I have gotten it to work by manually restarting nfsd, portmap and mountd. I have followed the handbook but no dice. searches turned up nothing that worked. below is the relevant information for my setup. spike# uname -a FreeBSD spike.coyote 4.3-RELEASE FreeBSD 4.3-RELEASE #7: Sun Jul 15 23:17:05 EDT 2001 jim@spike.coyote:/usr/src/sys/compile/SPIKE i386 when i boot the box i get to this point: Starting final network daemons: mountd nfsd rpc.statd (when it gets to this point in the boot process the machine waits 20 or so seconds before continuing on, but then I get these messages below: nfsd:[154]: can't register with udp portmap mountd[152]: can't register mount this appears to be correct: spike# ifconfig lo0 lo0: flags=8049 mtu 16384 inet 127.0.0.1 netmask 0xff000000 atalk 0.0 range 0-0 phase 2 My rc.conf settings for nfs: spike# more /etc/rc.conf network_interfaces="fxp0 lo0" portmap_enable="YES" nfs_server_enable="YES" nfs_server_flags="-u -t -n 4" mountd_flags="-r" nfs_client_enable="YES" nfs_client_flags="-n 4" ------- when the system does start up portmap is *not* running, as a "ps aux | grep portmap" returns nothing. spike# ps aux | grep nfsd is running root 156 0.0 0.1 352 172 ?? I 1:42AM 0:00.00 nfsd: server (nfsd) root 157 0.0 0.1 352 172 ?? I 1:42AM 0:00.00 nfsd: server (nfsd) root 158 0.0 0.1 352 172 ?? I 1:42AM 0:00.00 nfsd: server (nfsd) root 159 0.0 0.1 352 172 ?? I 1:42AM 0:00.00 nfsd: server (nfsd) mountd and rpc.statd are also not running on startup. running rpcinfo -p returns: rpcinfo: can't contact portmapper: RPC: Remote system error - Connection refused next i run portmap and mountd manually and confirm that they are running: spike# ps aux | grep portmap daemon 371 0.0 0.2 924 512 ?? Ss 1:56AM 0:00.00 portmap spike# ps aux | grep mountd root 375 0.0 0.1 504 348 ?? Ss 1:57AM 0:00.00 mountd -r now when i run rpcinfo -p i get the following: program vers proto port 100000 2 tcp 111 portmapper 100000 2 udp 111 portmapper 100005 3 udp 1015 mountd 100005 3 tcp 1020 mountd 100005 1 udp 1015 mountd 100005 1 tcp 1020 mountd after everything is running I try to mount from the another server and get this message: angel# mount spike:/home /spike/home/ spike:/home: nfsd: RPCPROG_NFS: RPC: Program not registered here is my /etc/exports file: spike# more /etc/exports /cdrom -ro angel 192.168.0.3 /home -alldirs angel 192.168.0.3 angel# more /etc/hosts 127.0.0.1 localhost.coyote localhost 192.168.0.3 angel.coyote angel 192.168.0.3 angel.coyote. 192.168.0.2 spike /etc/hosts.allow ALL : localhost 127.0.0.1 : allow portmap : 192.168.0.3/255.255.255.224 : allow eventually by simply manually running # portmap # nfsd -u -t -n 4 # mountd -r (in which order or which one does the trick i'm not certain) I can get nfs to work on both boxes as a client or server. when i finally got the one box to work as a server I got this different output from rpcinfo -p showing that nfs is working. bash-2.05$ rpcinfo -p program vers proto port 100000 2 tcp 111 portmapper 100000 2 udp 111 portmapper 100024 1 udp 1009 status 100024 1 tcp 1020 status 100003 2 udp 2049 nfs 100003 3 udp 2049 nfs 100005 3 udp 1004 mountd 100005 3 tcp 1019 mountd 100005 1 udp 1004 mountd 100005 1 tcp 1019 mountd any clues to where i have gone astray in my setup? tia, jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jul 17 23:57:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from home.sasknow.net (stimpy.sasknow.net [207.195.92.134]) by hub.freebsd.org (Postfix) with ESMTP id C03C637B406 for ; Tue, 17 Jul 2001 23:57:21 -0700 (PDT) (envelope-from ryan@sasknow.com) Received: from localhost (ryan@localhost) by home.sasknow.net (8.11.3/8.11.3) with ESMTP id f6I11d800549; Wed, 18 Jul 2001 01:01:39 GMT (envelope-from ryan@sasknow.com) X-Authentication-Warning: home.sasknow.net: ryan owned process doing -bs Date: Wed, 18 Jul 2001 01:01:39 +0000 (GMT) From: Ryan Thompson X-X-Sender: To: BSD Freak Cc: FreeBSD Questions Subject: Re: .htaccess with name based virtual hosts In-Reply-To: <2819f4283b54.283b542819f4@mbox.com.au> Message-ID: <20010718005634.D514-100000@home.sasknow.net> Organization: SaskNow Technologies [www.sasknow.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 BSD Freak wrote to FreeBSD Questions: > Hi everyone... > > I have encountered a problem on my FreeBSD 4.3 box (running Apache 1.3 > + mod_ssl). .htaccess is ignored when using name based virtual > hosts.... anyone encountered / fixed this issue? In the virtual host record, you need to use the "AllowOverride" feature. Often, this is set to "None", meaning .htaccess will indeed be ignored. Consult the apache documentation for valid arguments to "AllowOverride". One such example is AllowOverride All Which parses all kinds of settings in .htaccess, which you may not want to do for security reasons. You can also specify AllowOverride on a per- directory basis within a virtual host container, if you need more granularity. - Ryan > > Thanx > > --------------------------------------------- > Receive faxes 24x7, no second line necessary. > http://www.mbox.com.au/ > > 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 17 23:59:11 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 2DEE437B403 for ; Tue, 17 Jul 2001 23:59:09 -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 f6I6xTS18289; Wed, 18 Jul 2001 01:59:29 -0500 (EST) (envelope-from rlucas@solidcomputing.com) Date: Wed, 18 Jul 2001 01:59:28 -0500 (EST) From: Richard Lucas X-X-Sender: To: BSD Freak Cc: FreeBSD Questions Subject: Re: .htaccess with name based virtual hosts In-Reply-To: <2819f4283b54.283b542819f4@mbox.com.au> Message-ID: <20010718015723.K18272-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 Wed, 18 Jul 2001, BSD Freak wrote: > Hi everyone... > > I have encountered a problem on my FreeBSD 4.3 box (running Apache 1.3 + > mod_ssl). .htaccess is ignored when using name based virtual hosts.... > anyone encountered / fixed this issue? > You might need to put something like the following in your VirtualHost container: AllowOverride AuthConfig Limit -Richard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 0:11:35 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 9302837B401 for ; Wed, 18 Jul 2001 00:11:32 -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 f6I79x819172; Wed, 18 Jul 2001 00:10:00 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Kris Kennaway" , "Rama Krishna Kumar" Cc: "'freebsd-questions@freebsd.org'" Subject: RE: RFCs supported Date: Wed, 18 Jul 2001 00:09:59 -0700 Message-ID: <002201c10f58$a81d0f60$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: <20010717193401.A88680@xor.obsecurity.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 I doubt that there is an operating system in existence that fully supports all the TCP/IP RFC's. 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 Kris Kennaway >Sent: Tuesday, July 17, 2001 7:34 PM >To: Rama Krishna Kumar >Cc: 'freebsd-questions@freebsd.org' >Subject: Re: RFCs supported > > >On Tue, Jul 17, 2001 at 02:36:27PM -0400, Rama Krishna Kumar wrote: > >> Our team is planning to use TCP/IP package in FreeBSD for one of >> the projects. We like to know the RFCs currently supported by the >> FreeBSD TCP/IP package. Also, if FreeBSD does not support the full >> features of some of the RFCs, we like to know the list of >> non-conformances. We would appreciate if anyone can answer the >> question or give references to get the answers. > >There is no such list. If you have a specific question ("Does FreeBSD >support RFC X?") then you could ask it on the net@FreeBSD.org mailing >list. > >Kris > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 0:45: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from omta03.mta.everyone.net (sitemail.everyone.net [216.200.145.35]) by hub.freebsd.org (Postfix) with ESMTP id 81C8A37B401 for ; Wed, 18 Jul 2001 00:45:04 -0700 (PDT) (envelope-from thaibinh@hocvien.com) Received: from sitemail.everyone.net (reports [216.200.145.62]) by omta03.mta.everyone.net (Postfix) with ESMTP id 179A049695 for ; Wed, 18 Jul 2001 00:45:04 -0700 (PDT) Received: by sitemail.everyone.net (Postfix, from userid 99) id D3EA23ECD; Wed, 18 Jul 2001 00:45:03 -0700 (PDT) Content-Type: text/plain Content-Disposition: inline Mime-Version: 1.0 X-Mailer: MIME-tools 4.104 (Entity 4.117) Date: Wed, 18 Jul 2001 00:45:03 -0700 (PDT) From: Thaibinh Nguyen To: freebsd-questions@FreeBSD.ORG Subject: Help..Please Reply-To: thaibinh@hocvien.com X-Originating-Ip: [64.40.41.209] Message-Id: <20010718074503.D3EA23ECD@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 Hello, I have PC (Pentium III, 90 GB hardrive, 128 MB memory), using win 2000. Now, I want to change my machine to using Unix, using freeBSD. Is It posible ? ...I mean I want to change my machine to use Unix system to run a web server. Please give me a advise. Thanks. Thaibinh, _____________________________________________________________ Sign up for FREE email from Hocvien at http://hocvien.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 0:51:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nwcst280.netaddress.usa.net (nwcst280.netaddress.usa.net [204.68.23.25]) by hub.freebsd.org (Postfix) with SMTP id BFA2A37B406 for ; Wed, 18 Jul 2001 00:51:48 -0700 (PDT) (envelope-from john_kernel@usa.net) Received: (qmail 6673 invoked by uid 60001); 18 Jul 2001 07:51:48 -0000 Message-ID: <20010718075148.6672.qmail@nwcst280.netaddress.usa.net> Received: from 204.68.23.25 by nwcst280 for [202.150.128.129] via web-mailer(34FM.0700.18.03B) on Wed Jul 18 07:51:48 GMT 2001 Date: 18 Jul 2001 01:51:48 MDT From: john kernel To: freebsd-questions@freebsd.org Subject: make boot floppy disk 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 john kernel wrote: i have a problem when i boot my freebsd from harddrive, how can i make bo= ot disk for freebsd os (not for instaltion boot disk) if from msdos-prompt 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 18 1:10:29 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 75DFD37B401 for ; Wed, 18 Jul 2001 01:10:26 -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 f6I8AOD07813 for ; Wed, 18 Jul 2001 16:10:25 +0800 (SGT) Received: from pacific.net.sg ([203.208.143.67]) by pop1.pacific.net.sg with ESMTP id QAA29284 for ; Wed, 18 Jul 2001 16:10:23 +0800 (SGT) Message-ID: <3B5545C8.A322B65@pacific.net.sg> Date: Wed, 18 Jul 2001 16:16:08 +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: Multiple NIC card 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 inserted 3 NIC cards into the FBSD to act as firewall . One interface holds private ip address whereas the other two intefaces hold public ip address . when I type "ping -S 165.21.100.1 203.120.60.90" , I able to ping to destination but I if I type "ping -S 165.21.100.1 www.cisco.com" , it seems my FBSD does not able to resolv the hostname into IP address although /etc/resolv has configured to lookup at specific domain name server . (Q1) I want to download kerberos service from internet . How do I manually to configure FBSD to use source IP address (public internet) of one of ethernet interface to access internet rather than use private IP address by default ? Please advise .... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 1:11:59 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 EB94A37B406 for ; Wed, 18 Jul 2001 01:11: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 KAA17812; Wed, 18 Jul 2001 10:19:42 +0200 Message-ID: <3B55454B.4928D15A@i-clue.de> Date: Wed, 18 Jul 2001 10:14:03 +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: thaibinh@hocvien.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Help..Please References: <20010718074503.D3EA23ECD@sitemail.everyone.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 [Your mailer is broken, it produces extremely long lines.] Thaibinh Nguyen schrieb: > > I have PC (Pentium III, 90 GB hardrive, 128 MB memory), using win > 2000. Now, I want to change my machine to using Unix, using freeBSD. > Is It posible ? ...I mean I want to change my machine to use Unix > system to run a web server. Have a look at http://www.freebsd.org/handbook/ . It explains how to obtain and install FreeBSD. Also, several web servers are included in the ports directories, among them apache, thttpd, and aolserver. All of them will do the job nicely. 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 Wed Jul 18 1:35:44 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 BE66A37B405 for ; Wed, 18 Jul 2001 01:35:40 -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 KAA18039; Wed, 18 Jul 2001 10:43:27 +0200 Message-ID: <3B554ADC.B7709CD5@i-clue.de> Date: Wed, 18 Jul 2001 10:37:48 +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: Dan Ellard Cc: freebsd-questions@FreeBSD.ORG Subject: Re: installing boot manager 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 Dan Ellard schrieb: > > I just installed FreeBSD 4.3 on one of the disks on my PC. The PC has > several SCSI disks: BSD/OS 4.1 is installed on disk 0 and FreeBSD 4.3 > on disk 1. > > The install seemed to go OK, but although I indicated that I wanted to > install the FreeBSD boot manager, it never asked me to configure it, > and it didn't seem to get installed. This leaves me baffled because > now I don't know how to boot into FreeBSD! > > When I reboot or reset the machine it goes straight to sd0 and boots > BSD/OS, same as before. I need to have a choice for booting either > OS. Any ideas? (Do you know if there is a BSD/OS boot manager of > some kind?) That's to be expected. If you configured da1 for FreeBSD, BootEasy (the FreeBSd standard bootmanager) sits on this disk's boot blocks. You BIOS will never see it because it already gets a bootable OS with standard MBR on disk da0, and will boot that. Install the BootEasy (or any other boot manager) onto da0 to get OSes from secondary disks to boot. Alternatively, use your SCSI BIOS to activate da1 as boot disk. 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 Wed Jul 18 1:39:57 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 A598137B401 for ; Wed, 18 Jul 2001 01:39:50 -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 KAA18095; Wed, 18 Jul 2001 10:47:38 +0200 Message-ID: <3B554BD7.8716AA32@i-clue.de> Date: Wed, 18 Jul 2001 10:41: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: Michael Bartlett Cc: freebsd-questions@FreeBSD.ORG Subject: Re: moving 3.5-STABLE -> 4.3-STABLE 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 AFAIR, You have to build intermediate steps first. Going from 3.x to 4.x involves a great deal of change. Read /usr/src/UPDATING _completely_ for explanations. HTH -Christoph Sold Michael Bartlett schrieb: > > evening all! > > i've left a box running with a port/source update for over a year now. > recently i've had a couple of load problems with the machine, so i wanted to > put mrtg and net-snmp on the box to graph some stuff. i updated the ports > and tried to do makes on the relevant ports, but got a message that my > system was too old or something along those lines and that i must upgrade. > so i thought it was a good opportunity to do so! its been a while since i've > source built, so maybe i've done something stupid (hey no flames!). > > anyway. this is my source-supfile that i run cvsup against: > ------------------------- > su-2.03# cat /root/cvsup/source-supfile > *default host=cvsup2.za.freebsd.org > *default base=/usr > *default prefix=/usr > *default release=cvs tag=RELENG_4 > *default delete use-rel-suffix > *default compress > > src-all > > src-crypto > src-eBones > src-secure > > ports-all tag=. > ------------------------- > > when i make world (or make buildworld) from /usr/src, i get the following > after about a minute: > > ===> doc > 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/gnu/usr.bin/gperf -c > /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/bool-array.cc > 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/gnu/usr.bin/gperf -c > /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/gen-perf.cc > 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/gnu/usr.bin/gperf -c > /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/hash-table.cc > 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/gnu/usr.bin/gperf -c > /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/iterator.cc > 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/gnu/usr.bin/gperf -c > /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/key-list.cc > 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/gnu/usr.bin/gperf -c > /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/list-node.cc > 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/gnu/usr.bin/gperf -c > /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/main.cc > 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/gnu/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 > > Stop. > *** Error code 1 > > --------------- > is there something wrong with my source (hey waiter, there's a fly in my > sauce...) > > cheers > mike > (please reply to me as i am not subscribed to the list right now due to a > lack of connectivity at home - and hotmail is not that subdusive to large > amounts of email!!) > > _________________________________________________________________________ > 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 -- Freundliche Grüße aus Waiblingen Christoph Sold -- Systemadministrator, i-clue GmbH, Endersbacher Str. 57, 71334 Waiblingen Fon: (0 71 51) 9 59 01-12, Fax: (0 71 51) 9 59 01-55, Mail: so@i-clue.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 1:45:16 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 984C837B401 for ; Wed, 18 Jul 2001 01:45:04 -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 KAA18147; Wed, 18 Jul 2001 10:52:25 +0200 Message-ID: <3B554CF6.2D16B769@i-clue.de> Date: Wed, 18 Jul 2001 10:46:46 +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: Vasily Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Question about ipfw References: <4917.010717@maryno.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 Apparently, this firewall has been configured by hand, neither rc.conf nor rc.firewall load any rules. I guess somebody wrote a custom firewall script and put it into one of the standard boot hooks such as rc.local or /usr/local/etc/rc.d. Best bet would be to grep for "ipfw add" in all files in the /etc and /usr/local/etc directories. HTH -Christoph Sold Vasily schrieb: > > Hi, ALL ! > > Would anybody be so kind to tell where is saved information about > lines marked * ? > In rc.conf name of type of firewall is "UNKNOWN". > > boss# ipfw list > > 00001 allow tcp from any to *.*.*.* 80 in recv ed1 > 00002 allow tcp from *.*.*.* to *.*.*.* 20,21 in recv ed1 > 00003 allow tcp from *.*.*.* to *.*.*.* 22 in recv ed1 > 00004 allow udp from any to any 53 > 00005 allow tcp from 192.168.1.0 to any 20,21,22,139 in recv ed1 > *00050 divert 8668 ip from any to any via ed1 > 00051 reset tcp from any to *.*.*.* 1-1024 in recv ed1 > 00052 deny udp from any to any 1-1024 in recv ed1 > 00053 unreach port tcp from any to 212.42.60.107 1025-65535 in setup > 00100 allow ip from any to any via lo0 > 00200 deny ip from any to 127.0.0.0/8 > *00300 divert 8668 ip from 192.168.1.0 to any out xmit ed1 > *00400 divert 8668 ip from any to *.*.*.* in recv ed1 > *65535 allow ip from any to any > > It's rc.firewall > ========================================= > ############ > # Setup system for firewall service. > # $FreeBSD: src/etc/rc.firewall,v 1.30.2.4 2000/05/28 19:17:15 asmodai Exp $ > > # Suck in the configuration variables. > if [ -r /etc/defaults/rc.conf ]; then > . /etc/defaults/rc.conf > source_rc_confs > elif [ -r /etc/rc.conf ]; then > . /etc/rc.conf > fi > > ############ > # Define the firewall type in /etc/rc.conf. Valid values are: > # open - will allow anyone in > # client - will try to protect just this machine > # simple - will try to protect a whole network > # closed - totally disables IP services except via lo0 interface > # UNKNOWN - disables the loading of firewall rules. > # filename - will load the rules in the given filename (full path required) > # > # For ``client'' and ``simple'' the entries below should be customized > # appropriately. > > ############ > # > # If you don't know enough about packet filtering, we suggest that you > # take time to read this book: > # > # Building Internet Firewalls > # Brent Chapman and Elizabeth Zwicky > # > # O'Reilly & Associates, Inc > # ISBN 1-56592-124-0 > # http://www.ora.com/ > # > # For a more advanced treatment of Internet Security read: > # > # Firewalls & Internet Security > # Repelling the wily hacker > # William R. Cheswick, Steven M. Bellowin > # > # Addison-Wesley > # ISBN 0-201-6337-4 > # http://www.awl.com/ > # > > if [ -n "${1}" ]; then > firewall_type="${1}" > fi > > ############ > # Set quiet mode if requested > # > case ${firewall_quiet} in > [Yy][Ee][Ss]) > fwcmd="/sbin/ipfw -q" > ;; > *) > fwcmd="/sbin/ipfw" > ;; > esac > > ############ > # Flush out the list before we begin. > # > ${fwcmd} -f flush > > ############ > # These rules are required for using natd. All packets are passed to > # natd before they encounter your remaining rules. The firewall rules > # will then be run again on each packet after translation by natd, > # minus any divert rules (see natd(8)). > # > case ${natd_enable} in > [Yy][Ee][Ss]) > if [ -n "${natd_interface}" ]; then > ${fwcmd} add 50 divert natd all from any to any via ${natd_interface} > fi > ;; > esac > > ############ > # If you just configured ipfw in the kernel as a tool to solve network > # problems or you just want to disallow some particular kinds of traffic > # then you will want to change the default policy to open. You can also > # do this as your only action by setting the firewall_type to ``open''. > # > # ${fwcmd} add 65000 pass all from any to any > > ############ > # Only in rare cases do you want to change these rules > # > ${fwcmd} add 100 pass all from any to any via lo0 > ${fwcmd} add 200 deny all from any to 127.0.0.0/8 > # If you're using 'options BRIDGE', uncomment the following line to pass ARP > #${fwcmd} add 300 pass udp from 0.0.0.0 2054 to 0.0.0.0 > > # Prototype setups. > # > case ${firewall_type} in > [Oo][Pp][Ee][Nn]) > ${fwcmd} add 65000 pass all from any to any > ;; > > [Cc][Ll][Ii][Ee][Nn][Tt]) > ############ > # This is a prototype setup that will protect your system somewhat > # against people from outside your own network. > ############ > > # set these to your network and netmask and ip > net="192.0.2.0" > mask="255.255.255.0" > ip="192.0.2.1" > > # Allow any traffic to or from my own net. > ${fwcmd} add pass all from ${ip} to ${net}:${mask} > ${fwcmd} add pass all from ${net}:${mask} to ${ip} > > # Allow TCP through if setup succeeded > ${fwcmd} add pass tcp from any to any established > > # Allow IP fragments to pass through > ${fwcmd} add pass all from any to any frag > > # Allow setup of incoming email > ${fwcmd} add pass tcp from any to ${ip} 25 setup > > # Allow setup of outgoing TCP connections only > ${fwcmd} add pass tcp from ${ip} to any setup > > # Disallow setup of all other TCP connections > ${fwcmd} add deny tcp from any to any setup > > # Allow DNS queries out in the world > ${fwcmd} add pass udp from any 53 to ${ip} > ${fwcmd} add pass udp from ${ip} to any 53 > > # Allow NTP queries out in the world > ${fwcmd} add pass udp from any 123 to ${ip} > ${fwcmd} add pass udp from ${ip} to any 123 > > # Everything else is denied by default, unless the > # IPFIREWALL_DEFAULT_TO_ACCEPT option is set in your kernel > # config file. > ;; > > [Ss][Ii][Mm][Pp][Ll][Ee]) > ############ > # This is a prototype setup for a simple firewall. Configure this > # machine as a named server and ntp server, and point all the machines > # on the inside at this machine for those services. > ############ > > # set these to your outside interface network and netmask and ip > iif="ed0" > inet="192.168.1.0" > imask="255.255.255.0" > iip="192.168.1.100" > > # set these to your inside interface network and netmask and ip > oif="ed1" > onet="*.*.*.*" > omask="255.255.255.*" > oip="*.*.*.*" > > # our rules must rule > ${fwcmd} add divert natd ip from 192.168.1.0 to any out via ed1 > ${fwcmd} add divert natd ip from any to 212.42.60.107 in via ed1 > ${fwcmd} add divert all from any to any via ed1 > > # Stop spoofing > ${fwcmd} add deny all from ${inet}:${imask} to any in via ${oif} > ${fwcmd} add deny all from ${onet}:${omask} to any in via ${iif} > > # Stop RFC1918 nets on the outside interface > ${fwcmd} add deny all from 10.0.0.0/8 to any via ${oif} > ${fwcmd} add deny all from any to 10.0.0.0/8 via ${oif} > ${fwcmd} add deny all from 172.16.0.0/12 to any via ${oif} > ${fwcmd} add deny all from any to 172.16.0.0/12 via ${oif} > ${fwcmd} add deny all from 192.168.0.0/16 to any via ${oif} > ${fwcmd} add deny all from any to 192.168.0.0/16 via ${oif} > > # Stop draft-manning-dsua-01.txt nets on the outside interface > ${fwcmd} add deny all from 0.0.0.0/8 to any via ${oif} > ${fwcmd} add deny all from any to 0.0.0.0/8 via ${oif} > ${fwcmd} add deny all from 169.254.0.0/16 to any via ${oif} > ${fwcmd} add deny all from any to 169.254.0.0/16 via ${oif} > ${fwcmd} add deny all from 192.0.2.0/24 to any via ${oif} > ${fwcmd} add deny all from any to 192.0.2.0/24 via ${oif} > ${fwcmd} add deny all from 224.0.0.0/4 to any via ${oif} > ${fwcmd} add deny all from any to 224.0.0.0/4 via ${oif} > ${fwcmd} add deny all from 240.0.0.0/4 to any via ${oif} > ${fwcmd} add deny all from any to 240.0.0.0/4 via ${oif} > > # Allow TCP through if setup succeeded > ${fwcmd} add pass tcp from any to any established > > # Allow IP fragments to pass through > ${fwcmd} add pass all from any to any frag > > # Allow setup of incoming email > ${fwcmd} add pass tcp from any to ${oip} 25 setup > > # Allow access to our DNS > ${fwcmd} add pass tcp from any to ${oip} 53 setup > ${fwcmd} add pass udp from any to ${oip} 53 > ${fwcmd} add pass udp from ${oip} 53 to any > > # Allow access to our WWW > ${fwcmd} add pass tcp from any to ${oip} 80 setup > > # Reject&Log all setup of incoming connections from the outside > ${fwcmd} add deny log tcp from any to any in via ${oif} setup > > # Allow setup of any other TCP connection > ${fwcmd} add pass tcp from any to any setup > > # Allow DNS queries out in the world > ${fwcmd} add pass udp from any 53 to ${oip} > ${fwcmd} add pass udp from ${oip} to any 53 > > # Allow NTP queries out in the world > ${fwcmd} add pass udp from any 123 to ${oip} > ${fwcmd} add pass udp from ${oip} to any 123 > > # Everything else is denied by default, unless the > # IPFIREWALL_DEFAULT_TO_ACCEPT option is set in your kernel > # config file. > ;; > > [Uu][Nn][Kk][Nn][Oo][Ww][Nn]) > # ;; > #*) > if [ -r "${firewall_type}" ]; then > ${fwcmd} ${firewall_flags} ${firewall_type} > fi > ${fwcmd} add divert natd ip from 192.168.1.0 to any out via ed1 > ${fwcmd} add divert natd ip from any to *.*.*.* in via ed1 > ${fwcmd} add divert all from any to any via ed1 > > ${fwcmd} -q add 1 allow tcp from any to *.*.*.* 80 in via ed1 > ${fwcmd} -q add 2 allow tcp from *.*.*.* to *.*.*.* 20,21 in via ed1 > ${fwcmd} -q add 3 allow tcp from *.*.*.* to *.*.*.* 22 in via ed1 > ${fwcmd} -q add 4 allow udp from any to any 53 > ${fwcmd} -q add 5 allow tcp from 192.168.1.0 to any 20,21,22,139 in via ed1 > ${fwcmd} -q add 51 reset tcp from any to *.*.*.* 1-1024 in via ed1 > ${fwcmd} -q add 52 drop udp from any to any 1-1024 in via ed1 > ${fwcmd} -q add 53 unreach port tcp from any to *.*.*.* 1025-65535 in setup > ;; > esac > ========================================= > > -- > Best regards, > Vasily > vasily@maryno.net > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Freundliche Grüße aus Waiblingen Christoph Sold -- Systemadministrator, i-clue GmbH, Endersbacher Str. 57, 71334 Waiblingen Fon: (0 71 51) 9 59 01-12, Fax: (0 71 51) 9 59 01-55, Mail: so@i-clue.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 1:54: 8 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 D116537B407 for ; Wed, 18 Jul 2001 01:54:04 -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 LAA18259; Wed, 18 Jul 2001 11:01:47 +0200 Message-ID: <3B554F28.89960778@i-clue.de> Date: Wed, 18 Jul 2001 10:56: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: Mark Hughes Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ppp -nat or natd? References: <014d01c10ebc$fe3ee5e0$0200a8c0@mark2> 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 Mark Hughes schrieb: > > I have a DSL connection, which uses PPPoA through a USB Alcatel Speedtouch > "modem". I've got the modem working fine, I was just wondering if there are > any benefits to switching to use natd rather than ppp -nat to gate the > connection to my network of four windows clients? The only reason I can think of would be if you want to use ipfw, too. Anyhow, having an external dynamic IP combined with ipfw would be a major hassle. Thus, if you do not need ipfw, you want to use ppp -natd instead. 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 Wed Jul 18 2:24:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web10702.mail.yahoo.com (web10702.mail.yahoo.com [216.136.130.210]) by hub.freebsd.org (Postfix) with SMTP id 4292737B401 for ; Wed, 18 Jul 2001 02:24:15 -0700 (PDT) (envelope-from bhatt_manas@yahoo.com) Message-ID: <20010718092415.48128.qmail@web10702.mail.yahoo.com> Received: from [203.200.52.16] by web10702.mail.yahoo.com via HTTP; Wed, 18 Jul 2001 02:24:15 PDT Date: Wed, 18 Jul 2001 02:24:15 -0700 (PDT) From: Manas Bhatt Subject: make depend failed To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi all, i tried upgrading from 4.0 to 4.3. But "make depend" fails with the following error : cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -g -nostdinc -I- -I. -I../.. -I../../../include -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 ../../i386/i386/genassym.c cc1: Invalid option `preferred-stack-boundary=2' cc1: Invalid option `-fformat-extensions' *** Error code 1 can anybody tell what is happening? If some more information is required, do let me know. thanks manas __________________________________________________ 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 Wed Jul 18 2:36:23 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 EE14A37B403 for ; Wed, 18 Jul 2001 02:36:20 -0700 (PDT) (envelope-from syanide1@earthlink.net) Received: from CONFIG (OL1-921.charter-stl.com [24.217.35.159]) by albatross.prod.itd.earthlink.net (EL-8_9_3_3/8.9.3) with SMTP id CAA28306 for ; Wed, 18 Jul 2001 02:36:20 -0700 (PDT) Message-ID: <001701c10f6e$9de6c390$9f23d918@CONFIG> From: "Yigit Demirelli" To: Subject: a bit beyond the docs Date: Wed, 18 Jul 2001 04:47:10 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0014_01C10F44.B4B1F9C0" 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 This is a multi-part message in MIME format. ------=_NextPart_000_0014_01C10F44.B4B1F9C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I am bit of a newbie to freebsd and thanx a load for the docs on your = site...they are very=20 informative...however, i have a nice machine that has two networks cards = i wanne set fbsd on it=20 to use it as a router on me lan....but the nics have no litrature with = them but they are both identical and have that "YES NetWare" stamp on = them .... i did search about netware on "supported hardwares" section of = your documentation it did not mention it there but im just double = checking because these cards worked on slackware linux/winnt ....=20 thank you ------=_NextPart_000_0014_01C10F44.B4B1F9C0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I am bit of a newbie to freebsd and = thanx a load=20 for the docs on your site...they are very
informative...however, i have a nice = machine that=20 has two networks cards i wanne set fbsd on it
to use it as a router on me lan....but = the nics=20 have no litrature with them but they are both identical and have that = "YES=20 NetWare" stamp on them .... i did search about netware on "supported = hardwares"=20 section of your documentation it did not mention it there but im just = double=20 checking because these cards worked on slackware linux/winnt .... =
 
thank you
 
------=_NextPart_000_0014_01C10F44.B4B1F9C0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 2:40:31 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 1AD1E37B403 for ; Wed, 18 Jul 2001 02:40:28 -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: AW: a bit beyond the docs X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 Date: Wed, 18 Jul 2001 11:40:26 +0100 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: a bit beyond the docs Thread-Index: AcEPdYEm1vYBmlcFRCO7p0Je19NeHAAAChxA From: "Heimes, Rene" To: "Yigit Demirelli" 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 hi yigit! at first, please do not send html-email to this mailing list - as to any other! your nic will have an "ordinary" realtek chipset or derivates like many other nics out there. freebsd supports that chipset by default. this two nics will obviously be named "rl0" and "rl1", once you installed your freebsd. hth ren=E9 -----Urspr=FCngliche Nachricht----- Von: Yigit Demirelli [mailto:syanide1@earthlink.net] Gesendet: Mittwoch, 18. Juli 2001 10:47 An: questions@FreeBSD.org Betreff: a bit beyond the docs I am bit of a newbie to freebsd and thanx a load for the docs on your site...they are very=20 informative...however, i have a nice machine that has two networks cards i wanne set fbsd on it=20 to use it as a router on me lan....but the nics have no litrature with them but they are both identical and have that "YES NetWare" stamp on them .... i did search about netware on "supported hardwares" section of your documentation it did not mention it there but im just double checking because these cards worked on slackware linux/winnt ....=20 thank you To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 2:46:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-62.dsl.lsan03.pacbell.net [63.207.60.62]) by hub.freebsd.org (Postfix) with ESMTP id 7C2F837B403 for ; Wed, 18 Jul 2001 02:46:24 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id DF43067378; Wed, 18 Jul 2001 02:46:22 -0700 (PDT) Date: Wed, 18 Jul 2001 02:46:22 -0700 From: Kris Kennaway To: Karl Agee Cc: freebsd-questions Subject: Re: still cant cvsup--options needed Message-ID: <20010718024621.A94366@xor.obsecurity.org> References: <20010718061301.25805.qmail@web12306.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="0F1p//8PRICkK4MW" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010718061301.25805.qmail@web12306.mail.yahoo.com>; from kdagee2@yahoo.com on Tue, Jul 17, 2001 at 11:13:01PM -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 --0F1p//8PRICkK4MW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jul 17, 2001 at 11:13:01PM -0700, Karl Agee wrote: > Hi again, well, I still cant get cvsup working in my > freebsd 4.0 install. I dont have a fqdn > registered--this is a single workstation on a simple > dialup account. So, I dont know if it will even > work--funny, I had pkg_add working before.... >=20 > anyway I need some options before I dump this install. > What should I do to get it working???? Or should I > reinstall.... 8-p I don't think you've been listening to the replies you've got so far. Perhaps searching the mailing list archives will help. Kris --0F1p//8PRICkK4MW 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 iD8DBQE7VVrtWry0BWjoQKURAi8aAJsG7njO2//UOFZbWSnarwiufbFNMQCeLq8Q nOUL8aiQkeZLbfIPfPjqyKM= =8g2w -----END PGP SIGNATURE----- --0F1p//8PRICkK4MW-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 2:59:36 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 26F8737B401 for ; Wed, 18 Jul 2001 02:59:32 -0700 (PDT) (envelope-from teo@gecadsoftware.com) Received: (qmail 32997 invoked from network); 18 Jul 2001 10:01:41 -0000 Received: from unknown (HELO taz.gecadsoftware.com) (193.230.245.17) by antares.gecadsoftware.com with SMTP; 18 Jul 2001 10:01:40 -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 P1RW87F8; Wed, 18 Jul 2001 12:57:06 +0300 Received: (qmail 967 invoked by uid 500); 18 Jul 2001 09:57:04 -0000 Date: Wed, 18 Jul 2001 12:57:04 +0300 From: teo@gecadsoftware.com To: freebsd-questions@freebsd.org Subject: Re: sh for loop Message-ID: <20010718125704.B909@gecadsoftware.com> Reply-To: teo@gecadsoftware.com Mail-Followup-To: teo@gecadsoftware.com, freebsd-questions@freebsd.org References: <20010717214314.A2960@drex.staff.izr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.15i In-Reply-To: <20010717214314.A2960@drex.staff.izr.com>; from mark.drayton@izr.com on Tue, Jul 17, 2001 at 09:43:14PM +0100 Organization: GeCAD Software Comment: Worry less, RAV is watching! X-Operating-System: Linux 2.2.16 i686 up 47 min Sender: owner-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 Mark! On Tue, 17 Jul 2001, Mark Drayton wrote: > Hi > > As part of a shell script I need to write a for loop that iterates from > 1 to 10 inclusive. I know I can use this: > > for i in 1 2 3 4 5 6 7 8 9 10; do > echo $i > done [bash magik] for((i=1;i<11;++i)); do echo $i; done > > However, that's a pretty nasty way of doing it. I've seen a function > that will create the list "1 2 3 4 5 6 7 8 9 10" but I can't for the > life of me remember what it is. I think it's something like (range 1 10) > or (list 1 10), but no amount of google searching has jogged my memory. > > Any ideas? > > -- > > Mark Drayton > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- teodor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 3:21: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 6DB5D37B401 for ; Wed, 18 Jul 2001 03:21: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 f6IAGbU02010; Wed, 18 Jul 2001 11:16:37 +0100 (BST) Date: Wed, 18 Jul 2001 11:16:36 +0100 From: Paul Branston To: teo@gecadsoftware.com Cc: freebsd-questions@freebsd.org Subject: Re: sh for loop Message-ID: <20010718111636.A253@rannoch.demon.co.uk> References: <20010717214314.A2960@drex.staff.izr.com> <20010718125704.B909@gecadsoftware.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010718125704.B909@gecadsoftware.com>; from teo@gecadsoftware.com on Wed, Jul 18, 2001 at 12:57:04PM +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 Wed, Jul 18, 2001 at 12:57:04PM +0300, teo@gecadsoftware.com wrote: > Hi Mark! > On Tue, 17 Jul 2001, Mark Drayton wrote: > > > Hi > > > > As part of a shell script I need to write a for loop that iterates from > > 1 to 10 inclusive. I know I can use this: > > > > for i in 1 2 3 4 5 6 7 8 9 10; do > > echo $i > > done > [bash magik] > for((i=1;i<11;++i)); do > echo $i; > done also works in zsh but not in ksh (not this version anyway); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 3:46:53 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 CAAAA37B401 for ; Wed, 18 Jul 2001 03:46:39 -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 TAA28994 for ; Wed, 18 Jul 2001 19:43:30 +1000 From: guardian@dark-rune.com Received: from 203.31.48.3 (SquirrelMail authenticated user guardian) by www.dark-rune.com with HTTP; Wed, 18 Jul 2001 19:43:33 +1000 (EST) Message-ID: <10375.203.31.48.3.995449413.squirrel@www.dark-rune.com> Date: Wed, 18 Jul 2001 19:43:33 +1000 (EST) Subject: Using PCI USB cards 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 Hi again, I'm still playing around with this PCI USB card trying to make it work. I've added in device OHCI and device USB and recompiled my kernel, now named KERNAL1. When I plug in the modem, no lights come on. The system brings up the card when the box is booted. My uname -a is: FreeBSD gordon.togo.private 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Mon Jul 2 22:59:10 GMT 2001 hyper@gordon.togo.private:/usr/src/sys/compile/KERNAL1 i386 Am I missing something here? Another setting I need to add in order to get this to work? While we're here (2 birds/1 stone) the modem should work once the card is working, correct? Thanks for any help you can give. G Oh, btw: I found the problem with SSH :) It was loading in both /usr/local/etc/rc.d and /etc/rc.conf. Problem fixed by removing references in /etc/rc.conf and it loads using the /usr/local/etc/rc.d. Thanks :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 3:49: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from netcabo.pt (mail1.netcabo.pt [212.113.161.135]) by hub.freebsd.org (Postfix) with ESMTP id 2B25337B407 for ; Wed, 18 Jul 2001 03:48:50 -0700 (PDT) (envelope-from OpsyDopsy@netcabo.pt) Received: from OpsyDopsy.net.dhis.org ([213.22.0.69]) by netcabo.pt with Microsoft SMTPSVC(5.5.1877.687.68); Wed, 18 Jul 2001 11:42:41 +0100 Content-Type: text/plain; charset="iso-8859-1" From: JF To: questions@freebsd.org Subject: IPF problem Date: Wed, 18 Jul 2001 11:52:17 +0100 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <01071811521700.00325@OpsyDopsy.net.dhis.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 Heys I've just finished setting up my IPF conf file (which I include at the end of t he mail) but something seems not to be working that fine... here's the log: Jul 18 11:42:27 OpsyDopsy ipmon[92]: 11:42:24.578068 STATE:NEW 213 .22.0.69,3769 -> ns2.netcabo.pt,domain PR udp Jul 18 11:42:27 OpsyDopsy ipmon[92]: 11:42:24.586186 STATE:NEW 213 .22.0.69,3770 -> ns2.netcabo.pt,domain PR udp Jul 18 11:42:27 OpsyDopsy ipmon[92]: 11:42:24.594343 STATE:NEW 213 .22.0.69,3771 -> ns2.netcabo.pt,domain PR udp Jul 18 11:42:27 OpsyDopsy ipmon[92]: 11:42:24.602029 STATE:NEW 213 .22.0.69,3772 -> ns2.netcabo.pt,domain PR udp and it keeps at it like, pages and pages of this sort of error. The network is working, but this does seem something worth taking a look at... any sugestions and/or help would be most apreciated. Thanks in advance. JF IPF Conf File: #Pass in on loopback device pass in quick on lo0 #Block unroutable packages block in quick on xl0 from 192.168.0.0/16 to any block in quick on xl0 from 172.16.0.0/12 to any block in quick on xl0 from 10.0.0.0/8 to any block out quick on xl0 from 192.168.0.0/16 to any block out quick on xl0 from 172.16.0.0/12 to any block out quick on xl0 from 10.0.0.0/8 to any #Block from possible spoofs block in quick on xl0 from 127.0.0.0/8 to any block in quick on xl0 from 0.0.0.0/8 to any block out quick on xl0 from 127.0.0.0/8 to any block out quick on xl0 from 0.0.0.0/8 to any #Services: smtp, web, portmap, syslogd, lpd, X block in log first quick on xl0 proto tcp from any to any port = 25 block in log first quick on xl0 proto tcp from any to any port = 80 block in log first quick on xl0 proto tcp/udp from any to any port = 111 block in log first quick on xl0 proto udp from any to any port = 514 block in log first quick on xl0 proto tcp from any to any port = 515 block in log first quick on xl0 proto tcp from any to any port = 6000 block in log first quick on xl0 proto tcp from any to any port = 4000 block in log first quick on xl0 proto tcp from any to any port = submission block in log first quick on xl0 proto udp from any to any port = bootpc #Pass all out pass out quick on xl0 proto tcp from any to any keep state pass out quick on xl0 proto udp from any to any keep state pass out quick on xl0 proto icmp from any to any keep state #Pass in for some ICMP types pass in quick on xl0 proto icmp from any to any icmp-type echo keep state pass in quick on xl0 proto icmp from any to any icmp-type echorep keep state pass in quick on xl0 proto icmp from any to any icmp-type unreach keep state pass in quick on xl0 proto icmp from any to any icmp-type squench keep state pass in quick on xl0 proto icmp from any to any icmp-type timex keep state #Pass in for ftpd, sshd and dhis pass in quick on xl0 proto tcp from any to any port = ftp flags S keep state keep frags pass in quick on xl0 proto tcp from any to any port = ftp-data flags S keep state keep frags pass in quick on xl0 proto tcp from any to any port = ssh flags S keep state keep frags pass in quick on xl0 proto udp from any to any port = 58800 keep state keep frags #Block the rest block in log first quick proto tcp from any to any block in log first quick proto udp from any to any block in log first quick proto icmp 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 Wed Jul 18 3:51:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from jhb-proxy.mweb.co.za (jhb-proxy.mweb.co.za [196.2.48.243]) by hub.freebsd.org (Postfix) with ESMTP id D774237B419 for ; Wed, 18 Jul 2001 03:51:25 -0700 (PDT) (envelope-from vikashb@mweb.co.za) Received: from Debug ([196.2.53.147]) by jhb-proxy.mweb.co.za (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) with SMTP id <0GGN004VPV0CKF@jhb-proxy.mweb.co.za> for freebsd-questions@FreeBSD.ORG; Wed, 18 Jul 2001 10:45:48 +0200 (GMT-2) Date: Wed, 18 Jul 2001 08:41:39 +0000 (GMT) From: vikashb@mweb.co.za Subject: Signal 11 when Install FreeBSD 4.3 To: freebsd-questions@FreeBSD.ORG Message-id: <0GGN004VQV0CKF@jhb-proxy.mweb.co.za> X-Mailer: Endymion MailMan Standard Edition v3.0.33 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Greetings, I downloaded the 4.3 iso images from a local mirror and wrote the image to cd. The install freaks out when installing the src distributions with signal 11. from the debug screen: ____________ DEBUG distExtract: parent : src, me :sbase DEBUG Parsing attributes file for distribution ssy DEBUG Signal 11 Caught! , That's Bad ! This is the only information that I've got. ( I set DEBUG to yes from the options menu) I have managed to install 4.2 on this machine without a hitch. I mounted the CD from my 3.5.1 Box and the MD5 checksums on sshare.* , ssys.* , stool.* , subin.* , susbin.* do not match the values in CHECKSUM.MD5. question: If i downloaded the src/ directory how can i recreate the iso image so that it's bootable. Note : I can complete the installation if i don't select the src, ports and X distribution sets , but I need the src to recompile the kernel. Please Advise Vikash --------------------------------------------- This message was sent using M-Web Airmail. http://airmail.mweb.co.za/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 4: 3:44 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hp06.postech.ac.kr (smtp.postech.ac.kr [141.223.2.1]) by hub.freebsd.org (Postfix) with ESMTP id DDCCA37B403 for ; Wed, 18 Jul 2001 04:03:41 -0700 (PDT) (envelope-from lahaye@users.sourceforge.net) Received: from users.sourceforge.net (surfion4.postech.ac.kr [141.223.126.84]) by hp06.postech.ac.kr (8.9.3/8.9.3) with ESMTP id UAA06734; Wed, 18 Jul 2001 20:04:10 +0900 (JST) Message-ID: <3B556D45.252328FD@users.sourceforge.net> Date: Wed, 18 Jul 2001 20:04:37 +0900 From: "R. Lahaye" Organization: Postech X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: vikashb@mweb.co.za Cc: freebsd-questions@freebsd.org Subject: Re: Signal 11 when Install FreeBSD 4.3 References: <0GGN004VQV0CKF@jhb-proxy.mweb.co.za> Content-Type: text/plain; charset=x-user-defined 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 vikashb@mweb.co.za wrote: > Note : > I can complete the installation if i don't select the src, ports and X > distribution sets , but I need the src to recompile the kernel. Could you finish the installation without the src and then (when the system is up and running) type, as root, /stand/sysinstall? This should let you select again additional parts of the installation; in your case you could go for the src. Then see what happens. Rob. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 4: 5:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f212.pav2.hotmail.com [64.4.37.212]) by hub.freebsd.org (Postfix) with ESMTP id 6BF6D37B401 for ; Wed, 18 Jul 2001 04:05:18 -0700 (PDT) (envelope-from twchim1@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 18 Jul 2001 04:05:18 -0700 Received: from 147.8.182.48 by pv2fd.pav2.hotmail.msn.com with HTTP; Wed, 18 Jul 2001 11:05:18 GMT X-Originating-IP: [147.8.182.48] From: "Wing Tim" To: freebsd-questions@FreeBSD.ORG Subject: 11 Mbit/s WaveLAN card Date: Wed, 18 Jul 2001 19:05:18 +0800 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 18 Jul 2001 11:05:18.0312 (UTC) FILETIME=[87934680:01C10F79] Sender: owner-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've bought a 11Mbit/s (instead of 2Mbit/s or 6Mbit/s as stated in some FreeBSD documentations) Lucent WaveLAN card. Does FreeBSD 4.2 support it? Thanks! _________________________________________________________________________ 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 Wed Jul 18 4: 8:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cartman.techsupport.co.uk (cabletel1.cableol.net [194.168.3.4]) by hub.freebsd.org (Postfix) with ESMTP id 8A72C37B405 for ; Wed, 18 Jul 2001 04:08:55 -0700 (PDT) (envelope-from ceri@techsupport.co.uk) Received: from ceri by cartman.techsupport.co.uk with local (Exim 3.31 #1) id 15MpDT-0006U3-00; Wed, 18 Jul 2001 12:10:07 +0100 Date: Wed, 18 Jul 2001 12:10:07 +0100 From: Ceri To: Patrick Guerin Cc: David Scheidt , freebsd-questions@FreeBSD.ORG Subject: Re: Filename limitation Message-ID: <20010718121007.A22510@cartman.techsupport.co.uk> References: <20010717225630.A91509@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010717225630.A91509@xor.obsecurity.org>; from kris@obsecurity.org on Tue, Jul 17, 2001 at 10:56:31PM -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 17, 2001 at 10:56:31PM -0700, Kris Kennaway said: > On Wed, Jul 18, 2001 at 12:31:29AM -0500, David Scheidt wrote: > > On Tue, 17 Jul 2001, Patrick Guerin wrote: > > > > :What is the maximum length for a filename, ie. 12345678901234567890.txt > > : > > > > 255 bytes, including the complete path. > > No, the complete path can be up to 1024 bytes (PATH_MAX) long. The > individual filenames making up the path can be up to NAME_MAX (255 > bytes) long. Yup. Check http://docs.freebsd.org/44doc/psd/05.sysman/paper-3.html#section45 for further confirmation/information. Ceri -- We've tried this God stuff long enough. It's time for a change. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 4:25:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cartman.techsupport.co.uk (cabletel1.cableol.net [194.168.3.4]) by hub.freebsd.org (Postfix) with ESMTP id 3FD9237B405 for ; Wed, 18 Jul 2001 04:25:30 -0700 (PDT) (envelope-from ceri@techsupport.co.uk) Received: from ceri by cartman.techsupport.co.uk with local (Exim 3.31 #1) id 15MpRw-0007Z3-00; Wed, 18 Jul 2001 12:25:04 +0100 Date: Wed, 18 Jul 2001 12:25:04 +0100 From: Ceri To: Christoph Sold Cc: Mark Hughes , freebsd-questions@FreeBSD.ORG Subject: Re: ppp -nat or natd? Message-ID: <20010718122504.C22510@cartman.techsupport.co.uk> References: <014d01c10ebc$fe3ee5e0$0200a8c0@mark2> <3B554F28.89960778@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: <3B554F28.89960778@i-clue.de>; from so@server.i-clue.de on Wed, Jul 18, 2001 at 10:56:08AM +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 Wed, Jul 18, 2001 at 10:56:08AM +0200, Christoph Sold said: > Mark Hughes schrieb: > > > > I have a DSL connection, which uses PPPoA through a USB Alcatel Speedtouch > > "modem". I've got the modem working fine, I was just wondering if there are > > any benefits to switching to use natd rather than ppp -nat to gate the > > connection to my network of four windows clients? > > The only reason I can think of would be if you want to use ipfw, too. > Anyhow, having an external dynamic IP combined with ipfw would be a > major hassle. Why ? Can't you just use the -u and -dynamic flags to natd and use the interface name in your ipfw ruleset ? I'm not having a go, but I'm going to be in this situation soon and that was my plan. Will it not work ? Ceri -- I probably wouldn't like you. Really. I really probably wouldn't like you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 5: 6:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imf02bis.bellsouth.net (mail102.mail.bellsouth.net [205.152.58.42]) by hub.freebsd.org (Postfix) with ESMTP id ACF0A37B401 for ; Wed, 18 Jul 2001 05:06:10 -0700 (PDT) (envelope-from leimbacd@bellsouth.net) Received: from mutt.home.net ([208.63.160.211]) by imf02bis.bellsouth.net (InterMail vM.5.01.01.01 201-252-104) with ESMTP id <20010718120703.GFIW4909.imf02bis.bellsouth.net@mutt.home.net>; Wed, 18 Jul 2001 08:07:03 -0400 Received: (from dave@localhost) by mutt.home.net (8.11.3/8.11.3) id f6ICARg00734; Wed, 18 Jul 2001 07:10:27 -0500 (CDT) (envelope-from dave) Date: Wed, 18 Jul 2001 07:10:27 -0500 From: David Leimbach To: Bsd Newbie , questions@freebsd.org Subject: Re: a fast windows manager? Message-ID: <20010718071027.A695@mutt.home.net> References: <20010718041050.79305.qmail@web20107.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: <20010718041050.79305.qmail@web20107.mail.yahoo.com>; from bsdneophyte@yahoo.com on Tue, Jul 17, 2001 at 09:10:50PM -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 Try WindowMaker or BlackBox. Lite and fast! :) WindowMaker is involved in the GNUStep collection which seems to be of growing popularity as it has libraries that can be coded in objective C. This is also similar to the NextStep stuff that works on Mac OSX! BlackBox is just plain fast :). But if you are one of those people who hate C++ and everything that comes out of it don't use it... BlackBox is 100% C++ code. Dave On Tue, Jul 17, 2001 at 09:10:50PM -0700, Bsd Newbie wrote: > > I have an inexpensive bookpc that uses the SiS630 > chipset. It's pulling 16mb from the system ram... > > The problem with this chipset is it's incredibly slow. > > I've tried KDE and Gnome which crawl along. Is there > a windows manager that looks more like CDE and is much > faster than these two? > > __________________________________________________ > 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 Wed Jul 18 5:15: 6 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 BA93337B405 for ; Wed, 18 Jul 2001 05:15:03 -0700 (PDT) (envelope-from chris@vindaloo.com) Received: (from uucp@localhost) by fw.vindaloo.com (8.10.1/8.10.1) id f6ICF3c28709; Wed, 18 Jul 2001 08:15:03 -0400 (EDT) Received: from andale.vindaloo.com(192.168.133.3) via SMTP by fw.vindaloo.com, id smtpdw29142; Wed Jul 18 08:14:55 2001 Received: by andale.vindaloo.com (Postfix, from userid 1000) id 573E54383; Wed, 18 Jul 2001 08:14:48 -0400 (EDT) Date: Wed, 18 Jul 2001 08:14:48 -0400 From: Christopher Sean Hilton To: Wing Tim Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 11 Mbit/s WaveLAN card Message-ID: <20010718081448.C14672@andale.vindaloo.com> 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 twchim1@hotmail.com on Wed, Jul 18, 2001 at 07:05:18PM +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 18, 2001 at 07:05:18PM +0800, Wing Tim wrote: > Dear all, > I've bought a 11Mbit/s (instead of 2Mbit/s or 6Mbit/s as stated in some > FreeBSD documentations) Lucent WaveLAN card. Does FreeBSD 4.2 support it? > Thanks! The Orinoco WaveLAN IEEE Bronze, Silver and Gold cards are well supported by the wi driver. If PCMCIA is configured correctly on your machine to know what resources, irqs and i/o ports, are available and running then the WaveLAN card should just work when you plug the card. You will need to familiarize yourself with wicontrol to set the parameter so you can use your network. If you wish to use IBSS mode you will want to update the firmware on your card to the latest (7.28) using the software from Lucent and a Windows box. -- 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 Wed Jul 18 5:16:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from moebius2.Space.Net (moebius2.Space.Net [195.30.1.100]) by hub.freebsd.org (Postfix) with SMTP id 9A80337B403 for ; Wed, 18 Jul 2001 05:15:48 -0700 (PDT) (envelope-from mh@Space.Net) Received: (qmail 15046 invoked by uid 1408); 18 Jul 2001 12:15:46 -0000 Date: Wed, 18 Jul 2001 14:15:46 +0200 From: Martin Hasenbein To: FreeBSD Questions Subject: XFree 4.1.0 und Gnome 1.4 Message-ID: <20010718141546.A13137@Space.Net> Reply-To: Martin Hasenbein Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit 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 Hi, does anyone has experiences installing XFree 4.1.0 and Gnome 1.4 from the ports? I tried to install X, which made no problems. after that I tried to install Gnome 1.4, but it doesn't work. I can't install X and Gnoem from /stand/sysinstall, because this installs X 3.3.6 and my graphics adapter doesn't work with that. I do make install clean and then: ===> Installing for gnome-1.2 ===> Warning: your umask is "0002". If this is not desired, set it to an appropriate value and install this port again by ``make reinstall''. ===> gnome-1.2 depends on file: /usr/X11R6/share/themes/Metal/ICON.png - found ===> gnome-1.2 depends on executable: another_clock_applet - found ===> gnome-1.2 depends on executable: gmc - found ===> gnome-1.2 depends on executable: bug-buddy - found ===> gnome-1.2 depends on executable: glade - found ===> gnome-1.2 depends on file: /usr/local/lib/python2.0/site-packages/_appletmodule.so - found ===> gnome-1.2 depends on file: /usr/X11R6/share/gnome/help/users-guide/C/aboutug.html - found ===> gnome-1.2 depends on executable: gcalc - found ===> gnome-1.2 depends on executable: gnomecard - found ===> gnome-1.2 depends on executable: gtcd - found ===> gnome-1.2 depends on executable: gnomine - found ===> gnome-1.2 depends on executable: ElectricEyes - found ===> gnome-1.2 depends on executable: gnumeric - not found ===> Verifying install for gnumeric in /usr/ports/math/gnumeric ===> Extracting for gnumeric-0.61 >> Checksum OK for gnumeric-0.61.tar.gz. ===> gnumeric-0.61 depends on file: /usr/local/bin/python2.0 - found ===> gnumeric-0.61 depends on executable: gmake - found ===> gnumeric-0.61 depends on executable: libtool - found ===> gnumeric-0.61 depends on shared library: gnomeprint.13 - found ===> gnumeric-0.61 depends on shared library: glade.4 - found ===> gnumeric-0.61 depends on shared library: guile.9 - found ===> gnumeric-0.61 depends on shared library: gnomeole2.0 - found ===> gnumeric-0.61 depends on shared library: gal.4 - not found ===> Verifying install for gal.4 in /usr/ports/x11-toolkits/gal ===> Extracting for gal-0.5 >> Checksum OK for gal-0.5.tar.gz. ===> gal-0.5 depends on executable: gmake - found ===> gal-0.5 depends on executable: libtool - found ===> gal-0.5 depends on shared library: gnomeprint.13 - found ===> gal-0.5 depends on shared library: glade.4 - found ===> gal-0.5 depends on shared library: unicode.0 - found ===> gal-0.5 depends on shared library: gnomevfs.0 - not found ===> Verifying install for gnomevfs.0 in /usr/ports/devel/gnomevfs ===> Extracting for gnomevfs-0.5 >> Checksum OK for gnome-vfs-0.5.tar.gz. ===> gnomevfs-0.5 depends on executable: gmake - found ===> gnomevfs-0.5 depends on executable: libtool - found ===> gnomevfs-0.5 depends on shared library: bonobo.2 - not found ===> Verifying install for bonobo.2 in /usr/ports/devel/bonobo ===> Configuring for bonobo-0.37 loading cache ./config.cache checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking whether gmake sets ${MAKE}... (cached) yes checking for working aclocal... found checking for working autoconf... found checking for working automake... found checking for working autoheader... found checking for working makeinfo... found checking whether to enable maintainer-specific portions of Makefiles... no checking for gnome-config... (cached) /usr/X11R6/bin/gnome-config checking if /usr/X11R6/bin/gnome-config works... yes checking for orbit-config... (cached) /usr/local/bin/orbit-config checking for orbit-idl... (cached) /usr/local/bin/orbit-idl checking for working ORBit environment... (cached) yes checking for gnorba libraries... (cached) yes checking for gcc... (cached) cc checking whether the C compiler (cc -O -pipe -I/usr/X11R6/include -L/usr/X11R6/lib) works... yes checking whether the C compiler (cc -O -pipe -I/usr/X11R6/include -L/usr/X11R6/lib) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether cc accepts -g... (cached) yes checking for POSIXized ISC... no checking for gcc... (cached) cc checking whether the C compiler (cc -O -pipe -I/usr/X11R6/include -L/usr/X11R6/lib) works... yes checking whether the C compiler (cc -O -pipe -I/usr/X11R6/include -L/usr/X11R6/lib) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether cc accepts -g... (cached) yes checking how to run the C preprocessor... (cached) cc -E checking for ANSI C header files... (cached) yes checking for bison... (cached) byacc checking host system type... i386--freebsd4.2 checking build system type... i386--freebsd4.2 checking for ranlib... (cached) ranlib checking for ld used by GCC... (cached) /usr/libexec/elf/ld checking if the linker (/usr/libexec/elf/ld) is GNU ld... (cached) yes checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking whether ln -s works... (cached) yes updating cache ./config.cache checking for object suffix... o checking for executable suffix... no checking for cc option to produce PIC... -fPIC checking if cc PIC flag -fPIC works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.lo... yes checking if cc supports -fno-rtti -fno-exceptions ... yes checking if cc static flag -static works... -static checking if the linker (/usr/libexec/elf/ld) is GNU ld... yes checking whether the linker (/usr/libexec/elf/ld) supports shared libraries... yes checking command to parse /usr/bin/nm -B output... ok checking how to hardcode library paths into programs... immediate checking for /usr/libexec/elf/ld option to reload object files... -r checking dynamic linker characteristics... freebsd4.2 ld.so checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for objdir... .libs creating libtool loading cache ./config.cache checking for perl... /usr/bin/perl checking what warning flags to pass to the C compiler... -Wall -Wunused checking what language compliance flags to pass to the C compiler... checking for pthread_create in -pthread... yes checking for gtk-config... /usr/X11R6/bin/gtk12-config checking for GTK - version >= 1.2.0... yes checking for SmcSaveYourselfDone in -lSM... yes checking for X11/SM/SMlib.h... yes checking for XpmFreeXpmImage in -lXpm... yes checking for working const... yes checking for inline... inline checking for off_t... yes checking for size_t... yes checking for working alloca.h... no checking for alloca... yes checking for unistd.h... yes checking for getpagesize... yes checking for working mmap... yes checking for argz.h... no checking for limits.h... yes checking for locale.h... yes checking for nl_types.h... yes checking for malloc.h... no checking for string.h... yes checking for unistd.h... (cached) yes checking for sys/param.h... yes checking for getcwd... yes checking for munmap... yes checking for putenv... yes checking for setenv... yes checking for setlocale... yes checking for strchr... yes checking for strcasecmp... yes checking for strdup... yes checking for __argz_count... no checking for __argz_stringify... no checking for __argz_next... no checking for stpcpy... no checking for LC_MESSAGES... yes checking whether NLS is requested... yes checking for libintl.h... yes checking for gettext in libc... no checking for bindtextdomain in -lintl... yes checking for gettext in libintl... checking for gettext in -lintl... yes yes checking for msgfmt... /usr/local/bin/msgfmt checking for dcgettext... no checking for gmsgfmt... /usr/local/bin/msgfmt checking for xgettext... /usr/local/bin/xgettext checking for catalogs to be installed... az ca da de el en_GB es fi fr ga gl hu it ja ko nl no pl pt_BR ro ru sk sl sv uk wa tr zh_CN.GB2312 checking ORBit version... 0.5.4 ===> Script "configure" failed: here are the contents of "config.log" This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:611: checking for a BSD compatible install configure:664: checking whether build environment is sane configure:721: checking whether gmake sets ${MAKE} configure:767: checking for working aclocal configure:780: checking for working autoconf configure:793: checking for working automake configure:806: checking for working autoheader configure:819: checking for working makeinfo configure:833: checking whether to enable maintainer-specific portions of Makefiles configure:926: checking for gnome-config configure:963: checking if /usr/X11R6/bin/gnome-config works configure:971: checking for orbit-config configure:1007: checking for orbit-idl configure:1041: checking for working ORBit environment configure:1077: checking for gnorba libraries configure:1185: checking for gcc configure:1298: checking whether the C compiler (cc -O -pipe -I/usr/X11R6/include -L/usr/X11R6/lib) works configure:1314: cc -o conftest -O -pipe -I/usr/X11R6/include -I/usr/local/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure:1340: checking whether the C compiler (cc -O -pipe -I/usr/X11R6/include -L/usr/X11R6/lib) is a cross-compiler configure:1345: checking whether we are using GNU C configure:1373: checking whether cc accepts -g configure:1405: checking for POSIXized ISC configure:1428: checking for gcc configure:1541: checking whether the C compiler (cc -O -pipe -I/usr/X11R6/include -L/usr/X11R6/lib) works configure:1557: cc -o conftest -O -pipe -I/usr/X11R6/include -I/usr/local/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure:1583: checking whether the C compiler (cc -O -pipe -I/usr/X11R6/include -L/usr/X11R6/lib) is a cross-compiler configure:1588: checking whether we are using GNU C configure:1616: checking whether cc accepts -g configure:1648: checking how to run the C preprocessor configure:1728: checking for ANSI C header files configure:1836: checking for bison configure:1961: checking host system type configure:1982: checking build system type configure:2002: checking for ranlib configure:2041: checking for ld used by GCC configure:2103: checking if the linker (/usr/libexec/elf/ld) is GNU ld configure:2119: checking for BSD-compatible nm configure:2155: checking whether ln -s works ltconfig:603: checking for object suffix ltconfig:604: cc -c -O -pipe -I/usr/X11R6/include -I/usr/local/include conftest.c 1>&5 ltconfig:629: checking for executable suffix ltconfig:630: cc -o conftest -O -pipe -I/usr/X11R6/include -I/usr/local/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 ltconfig:776: checking if cc PIC flag -fPIC works ltconfig:777: cc -c -O -pipe -I/usr/X11R6/include -fPIC -DPIC -I/usr/local/include conftest.c 1>&5 ltconfig:829: checking if cc supports -c -o file.o ltconfig:830: cc -c -O -pipe -I/usr/X11R6/include -o out/conftest2.o -I/usr/local/include conftest.c 1>&5 ltconfig:862: checking if cc supports -c -o file.lo ltconfig:863: cc -c -O -pipe -I/usr/X11R6/include -c -o conftest.lo -I/usr/local/include conftest.c 1>&5 ltconfig:914: checking if cc supports -fno-rtti -fno-exceptions ltconfig:915: cc -c -O -pipe -I/usr/X11R6/include -fno-rtti -fno-exceptions -c conftest.c -I/usr/local/include conftest.c 1>&5 ltconfig:958: checking if cc static flag -static works ltconfig:959: cc -o conftest -O -pipe -I/usr/X11R6/include -I/usr/local/include -L/usr/X11R6/lib -static conftest.c -L/usr/local/lib 1>&5 GNU ld version 2.10.0 (with BFD 2.10.0) ltconfig:1635: checking if global_symbol_pipe works ltconfig:1636: cc -c -O -pipe -I/usr/X11R6/include -I/usr/local/include conftest.c 1>&5 ltconfig:1639: eval "/usr/bin/nm -B conftest.o | sed -n -e 's/^.*[ ]\([ABCDGISTW]\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' > conftest.nm" ltconfig:1691: cc -o conftest -O -pipe -I/usr/X11R6/include -fno-builtin -fno-rtti -fno-exceptions -I/usr/local/include -L/usr/X11R6/lib conftest.c conftstm.o 1>&5 configure:2366: checking for perl configure:2423: checking what warning flags to pass to the C compiler configure:2455: checking what language compliance flags to pass to the C compiler configure:2480: checking for pthread_create in -pthread configure:2499: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -L/usr/X11R6/lib conftest.c -pthread -L/usr/local/lib 1>&5 configure:2704: checking for gtk-config configure:2739: checking for GTK - version >= 1.2.0 configure:2840: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include -L/usr/X11R6/lib conftest.c -L/usr/X11R6/lib -L/usr/X11R6/lib -lgtk12 -lgdk12 -L/usr/local/lib -Wl,-E -lgmodule12 -lglib12 -lintl -lxpg4 -lXext -lX11 -lm -L/usr/local/lib 1>&5 configure:2943: checking for SmcSaveYourselfDone in -lSM configure:2962: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib -L/usr/X11R6/lib -L/usr/X11R6/lib -lgtk12 -lgdk12 -L/usr/local/lib -Wl,-E -lgmodule12 -lglib12 -lintl -lxpg4 -lXext -lX11 -lm conftest.c -lSM -lICE -L/usr/local/lib 1>&5 configure:2991: checking for X11/SM/SMlib.h configure:3001: cc -E -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:3039: checking for XpmFreeXpmImage in -lXpm configure:3058: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib -L/usr/X11R6/lib -L/usr/X11R6/lib -lgtk12 -lgdk12 -L/usr/local/lib -Wl,-E -lgmodule12 -lglib12 -lintl -lxpg4 -lXext -lX11 -lm conftest.c -lXpm -L/usr/local/lib 1>&5 configure:3120: checking for working const configure:3174: cc -c -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include conftest.c 1>&5 configure: In function `main': configure:3148: warning: unused variable `s' configure:3168: warning: unused variable `foo' configure:3136: warning: unused variable `zero' configure:3130: warning: unused variable `x' configure:3147: warning: `t' might be used uninitialized in this function configure:3165: warning: `b' might be used uninitialized in this function configure:3195: checking for inline configure:3209: cc -c -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include conftest.c 1>&5 configure: In function `main': configure:3205: warning: control reaches end of non-void function configure: At top level: configure:3205: warning: return-type defaults to `int' configure:3235: checking for off_t configure:3268: checking for size_t configure:3303: checking for working alloca.h configure:3315: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure:3309: alloca.h: No such file or directory configure: In function `main': configure:3311: warning: unused variable `p' configure: failed program was: #line 3308 "configure" #include "confdefs.h" #include int main() { char *p = alloca(2 * sizeof(int)); ; return 0; } configure:3336: checking for alloca configure:3369: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure: In function `main': configure:3365: warning: unused variable `p' configure:3538: checking for unistd.h configure:3548: cc -E -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:3577: checking for getpagesize configure:3605: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure:3630: checking for working mmap configure:3778: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure: In function `main': configure:3719: warning: implicit declaration of function `getpagesize' configure:3728: warning: implicit declaration of function `rand' configure:3729: warning: implicit declaration of function `umask' configure:3733: warning: implicit declaration of function `write' configure:3735: warning: implicit declaration of function `close' configure:3766: warning: implicit declaration of function `read' configure:3772: warning: implicit declaration of function `unlink' configure:3806: checking for argz.h configure:3816: cc -E -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:3812: argz.h: No such file or directory configure: failed program was: #line 3811 "configure" #include "confdefs.h" #include configure:3806: checking for limits.h configure:3816: cc -E -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:3806: checking for locale.h configure:3816: cc -E -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:3806: checking for nl_types.h configure:3816: cc -E -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:3806: checking for malloc.h configure:3816: cc -E -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out In file included from configure:3812: /usr/include/malloc.h:2: warning: #warning "this file includes which is deprecated, use instead" configure: failed program was: #line 3811 "configure" #include "confdefs.h" #include configure:3806: checking for string.h configure:3816: cc -E -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:3806: checking for unistd.h configure:3806: checking for sys/param.h configure:3816: cc -E -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:3846: checking for getcwd configure:3874: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure:3846: checking for munmap configure:3874: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure:3846: checking for putenv configure:3874: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure:3846: checking for setenv configure:3874: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure:3846: checking for setlocale configure:3874: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure:3846: checking for strchr configure:3874: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure:3846: checking for strcasecmp configure:3874: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure:3846: checking for strdup configure:3874: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure:3846: checking for __argz_count configure:3874: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 /tmp/cci18745.o: In function `main': /tmp/cci18745.o(.text+0x7): undefined reference to `__argz_count' configure: failed program was: #line 3851 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char __argz_count(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char __argz_count(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub___argz_count) || defined (__stub_____argz_count) choke me #else __argz_count(); #endif ; return 0; } configure:3846: checking for __argz_stringify configure:3874: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 /tmp/ccv18759.o: In function `main': /tmp/ccv18759.o(.text+0x7): undefined reference to `__argz_stringify' configure: failed program was: #line 3851 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char __argz_stringify(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char __argz_stringify(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub___argz_stringify) || defined (__stub_____argz_stringify) choke me #else __argz_stringify(); #endif ; return 0; } configure:3846: checking for __argz_next configure:3874: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 /tmp/ccj18773.o: In function `main': /tmp/ccj18773.o(.text+0x7): undefined reference to `__argz_next' configure: failed program was: #line 3851 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char __argz_next(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char __argz_next(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub___argz_next) || defined (__stub_____argz_next) choke me #else __argz_next(); #endif ; return 0; } configure:3903: checking for stpcpy configure:3931: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 /tmp/ccg18788.o: In function `main': /tmp/ccg18788.o(.text+0x7): undefined reference to `stpcpy' configure: failed program was: #line 3908 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char stpcpy(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char stpcpy(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_stpcpy) || defined (__stub___stpcpy) choke me #else stpcpy(); #endif ; return 0; } configure:3965: checking for LC_MESSAGES configure:3977: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 configure:3998: checking whether NLS is requested configure:4030: checking for libintl.h configure:4040: cc -E -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:4057: checking for gettext in libc configure:4069: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 /tmp/ccL18839.o: In function `main': /tmp/ccL18839.o(.text+0xf): undefined reference to `gettext' configure: failed program was: #line 4062 "configure" #include "confdefs.h" #include int main() { return (int) gettext ("") ; return 0; } configure:4085: checking for bindtextdomain in -lintl configure:4104: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -lintl -L/usr/local/lib 1>&5 configure:4120: checking for gettext in libintl configure:4125: checking for gettext in -lintl configure:4144: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -lintl -L/usr/local/lib 1>&5 configure:4183: checking for msgfmt configure:4217: checking for dcgettext configure:4245: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 /tmp/ccA18911.o: In function `main': /tmp/ccA18911.o(.text+0x7): undefined reference to `dcgettext' configure: failed program was: #line 4222 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dcgettext(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dcgettext(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_dcgettext) || defined (__stub___dcgettext) choke me #else dcgettext(); #endif ; return 0; } configure:4272: checking for gmsgfmt configure:4308: checking for xgettext configure:4348: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib 1>&5 /tmp/ccl18962.o: In function `main': /tmp/ccl18962.o(.text+0x4): undefined reference to `_nl_msg_cat_cntr' configure: failed program was: #line 4340 "configure" #include "confdefs.h" int main() { extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr ; return 0; } configure:4624: checking for catalogs to be installed configure:4731: checking ORBit version (end of "config.log") *** Error code 1 Stop in /usr/ports/devel/bonobo. *** Error code 1 Stop in /usr/ports/devel/bonobo. *** Error code 1 Stop in /usr/ports/devel/bonobo. *** Error code 1 Stop in /usr/ports/devel/bonobo. *** Error code 1 Stop in /usr/ports/devel/bonobo. *** Error code 1 Stop in /usr/ports/devel/gnomevfs. *** Error code 1 Stop in /usr/ports/devel/gnomevfs. *** Error code 1 Stop in /usr/ports/devel/gnomevfs. *** Error code 1 Stop in /usr/ports/devel/gnomevfs. *** Error code 1 Stop in /usr/ports/devel/gnomevfs. *** Error code 1 Stop in /usr/ports/devel/gnomevfs. *** Error code 1 Stop in /usr/ports/devel/gnomevfs. *** Error code 1 Stop in /usr/ports/x11-toolkits/gal. *** Error code 1 Stop in /usr/ports/x11-toolkits/gal. *** Error code 1 Stop in /usr/ports/x11-toolkits/gal. *** Error code 1 Stop in /usr/ports/x11-toolkits/gal. *** Error code 1 Stop in /usr/ports/x11-toolkits/gal. *** Error code 1 Stop in /usr/ports/x11-toolkits/gal. *** Error code 1 Stop in /usr/ports/x11-toolkits/gal. *** Error code 1 Stop in /usr/ports/math/gnumeric. *** Error code 1 Stop in /usr/ports/math/gnumeric. *** Error code 1 Stop in /usr/ports/math/gnumeric. *** Error code 1 Stop in /usr/ports/math/gnumeric. *** Error code 1 Stop in /usr/ports/math/gnumeric. *** Error code 1 Stop in /usr/ports/math/gnumeric. *** Error code 1 Stop in /usr/ports/math/gnumeric. *** Error code 1 Stop in /usr/ports/x11/gnome14. *** Error code 1 Stop in /usr/ports/x11/gnome14. *** Error code 1 Stop in /usr/ports/x11/gnome14. Sorry for the long errors logs. Can anyone help me to solve this problem?? /martin --- -------------------------------------------------------------------- Martin Hasenbein Phone (Fax): (+49) 89 1216376-1 (3) \|/ Weiglstr.9 mailto:martin@hasenbein.com @ @ D-80636 München http://martin.hasenbein.com -oOO-(_)-OOo-------------------------------------------------------- B On the 8th day, god created Unix ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 5:22:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dv-db.com (dv-db.com [207.159.141.95]) by hub.freebsd.org (Postfix) with ESMTP id BCCC037B401 for ; Wed, 18 Jul 2001 05:22:44 -0700 (PDT) (envelope-from mark@dvdnews.co.uk) Received: from mark2 (host217-35-43-110.btopenworld.com [217.35.43.110]) by dv-db.com (8.9.3/8.9.3) with SMTP id NAA19506; Wed, 18 Jul 2001 13:22:27 +0100 (GMT/BST) Message-ID: <002d01c10f84$4aa4d260$0200a8c0@mark2> From: "Mark Hughes" To: "Ceri" , "Christoph Sold" Cc: References: <014d01c10ebc$fe3ee5e0$0200a8c0@mark2> <3B554F28.89960778@i-clue.de> <20010718122504.C22510@cartman.techsupport.co.uk> Subject: Re: ppp -nat or natd? Date: Wed, 18 Jul 2001 13:21:47 +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 > On Wed, Jul 18, 2001 at 10:56:08AM +0200, Christoph Sold said: > > Mark Hughes schrieb: > > > > > > I have a DSL connection, which uses PPPoA through a USB Alcatel Speedtouch > > > "modem". I've got the modem working fine, I was just wondering if there are > > > any benefits to switching to use natd rather than ppp -nat to gate the > > > connection to my network of four windows clients? > > > > The only reason I can think of would be if you want to use ipfw, too. > > Anyhow, having an external dynamic IP combined with ipfw would be a > > major hassle. > > Why ? > Can't you just use the -u and -dynamic flags to natd and use the interface > name in your ipfw ruleset ? > > I'm not having a go, but I'm going to be in this situation soon and that was > my plan. Will it not work ? Hmmmmm...now, I am already using IPFW - is this bad? It seems to be working fine for me right now (aside from some MSN Messenger issues, which I've got to sort out). I've attached my IPFW ruleset and ppp.conf bits, if anyone is interested in pointing out anything I may have done wrong. Thanks, Mark ----- ppp.conf ======== default: allow users * set log Phase Chat LCP IPCP CCP tun command set device /dev/cuaa0 set speed 115200 set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" AT OK-AT-OK \\dATDT\\T TIMEOUT 40 CONNECT" adsl: accept chap set device localhost:17071/udp set authname xxxxxxxxx set authkey yyyyyyyy set timeout 0 set reconnect 3 1000 set dial "" set ifaddr 10.0.0.1/0 10.0.0.2/0 0.0.0.0 0.0.0.0 add default HISADDR enable dns nat enable yes nat port tcp 192.168.0.2:3351 3351 nat port udp 192.168.0.2:7777 7777 nat port udp 192.168.0.2:7778 7778 nat port udp 192.168.0.2:7779 7779 nat port udp 192.168.0.2:29800 29800 ipfw.rules ========== #allow all traffic on the internal network interface as it's nice and trusted add 00400 allow all from any to any via rl0 #allow all rule for testing only #add 00401 allow all from any to any via tun0 #stateful tcp port opening for internet traffic add 00500 check-state add 00501 allow tcp from any to any out setup keep-state via tun0 #HTTP add 00502 pass tcp from any to any 80 in setup keep-state via tun0 #SSH add 00503 pass tcp from any to any 22 in setup keep-state via tun0 #FTP add 00504 pass tcp from any to any 21 in setup keep-state via tun0 add 00505 pass tcp from any 20 to any 1024-65535 setup #port for laptop for whatever add 00506 pass tcp from any to any 3351 via tun0 setup #unreal tourney add 00507 pass udp from any to any 7777 in via tun0 add 00508 pass udp from any to any 7777 out via tun0 add 00509 pass udp from any to any 7778 in via tun0 add 00510 pass udp from any to any 7778 out via tun0 add 00511 pass udp from any to any 7779 in via tun0 add 00512 pass udp from any to any 7779 out via tun0 add 00513 pass udp from any to any 29800 in via tun0 add 00514 pass udp from any to any 29800 out via tun0 #default deny incoming connections add 00550 deny tcp from any to any in established via tun0 #allow certain udp things in/out #DNS add 00700 pass udp from any to 213.120.62.99 53 add 00701 pass udp from 213.120.62.99 53 to any add 00702 pass udp from any to 213.120.62.100 53 add 00703 pass udp from 213.120.62.100 53 to any #allow outgoing pings #add 00800 pass icmp from any to any icmptypes 8 out via tun0 #add 00801 pass icmp from any to any icmptypes 0 in via tun0 add 00802 pass icmp from any to any icmptypes 0,3,4,8,11,12 via tun0 #..but deny all other packets add 00803 deny icmp from any to any #deny outside broadcats add 63000 deny ip from any to 0.0.0.255:0.0.0.255 in via tun0 #deny outside SMB monkeys add 64000 deny log udp from any to any 137-139 via tun0 #reject'n'log other connections from outside interface add 65000 deny log ip from any to any via tun0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 5:40:45 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 0BD5D37B401 for ; Wed, 18 Jul 2001 05:40:34 -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 OAA00631 for ; Wed, 18 Jul 2001 14:40:24 +0200 (SAST) (envelope-from patrick@mip.co.za) From: "Patrick O'Reilly" To: "FreeBSD Question List" Subject: IPFW and PPP interface Date: Wed, 18 Jul 2001 14:41:15 +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 I have recently set up a FreeBSD Firewall with a Cyclades PC300 card connected to a PPP link to my ISP. It seems that I cannot get IPFW to work (no doubt due to a lack of knowledge of PPP and it's associated protocols). I have used similar rulesets with Ethernet NICs, no problem. I've done an "ipfw add 5 allow lo all from any to any", and I see entries like this in the log, which I suspect might have something to do with my problem: > /kernel: ipfw: 5 Accept P:88 209.212.118.85 224.0.0.10 in via hdlc0 Can anyone explain what P:88 is, and how to construct a rule to accept/reject it? Also, why is the destination address 224.0.0.10 - That's a multicast address if I am not mistaken? You can tell that I'm a little out of my depth here - any help would be much appreciated. Regards, Patrick O'Reilly. ----------------- A little knowledge is dangerous... FEAR ME! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 5:43: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from APastourelles-102-1-2-26.abo.wanadoo.fr (APastourelles-102-1-2-26.abo.wanadoo.fr [217.128.208.26]) by hub.freebsd.org (Postfix) with ESMTP id 1401237B406 for ; Wed, 18 Jul 2001 05:42:57 -0700 (PDT) (envelope-from olive@deep-ocean.net) Received: by APastourelles-102-1-2-26.abo.wanadoo.fr (Postfix, from userid 1001) id 0B4D725601; Wed, 18 Jul 2001 14:42:55 +0200 (CEST) Date: Wed, 18 Jul 2001 14:42:55 +0200 From: Olivier Cortes To: Martin Hasenbein Cc: freebsd-questions@freebsd.org Subject: Re: XFree 4.1.0 und Gnome 1.4 Message-ID: <20010718144255.A33551@APastourelles-102-1-2-26.abo.wa> Mail-Followup-To: Olivier Cortes , Martin Hasenbein , freebsd-questions@freebsd.org References: <20010718141546.A13137@Space.Net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010718141546.A13137@Space.Net>; from mh-freebsd-questions@space.net on Wed, Jul 18, 2001 at 02:15:46PM +0200 X-Operating-System: FreeBSD 4.3-RC i386 up 2 days, 6:30 Organization: Deep-Ocean Network X-URL: http://www.deep-ocean.net/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jul 18, 2001 at 02:15:46PM +0200, Martin Hasenbein wrote: > > Hi, > > does anyone has experiences installing XFree 4.1.0 and Gnome 1.4 > from the ports? I tried to install X, which made no problems. > after that I tried to install Gnome 1.4, but it doesn't work. > I can't install X and Gnoem from /stand/sysinstall, because > this installs X 3.3.6 and my graphics adapter doesn't work with that. > I do make install clean and then: > > checking ORBit version... 0.5.4 > ===> Script "configure" failed: here are the contents of "config.log" > This file contains any messages produced by compilers while sometimes the ports are not all up to date. obviously in your case bonobo can't find the good version of ORBit. the solution: cd /usr/ports/devel/ORBit && make distclean install and return to the build of gnome1.4 i had the same kind of problem building galeon, and other heavy-gnomed stuff. when the build stops, find the "why", build it by hand (in the ports) and return to your first build. olivier --- Olivier Cortes free software admin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 6: 1:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from netcabo.pt (mail2.netcabo.pt [212.113.161.137]) by hub.freebsd.org (Postfix) with ESMTP id 72E5137B401 for ; Wed, 18 Jul 2001 06:01:05 -0700 (PDT) (envelope-from OpsyDopsy@netcabo.pt) Received: from OpsyDopsy.net.dhis.org ([213.22.0.69]) by netcabo.pt with Microsoft SMTPSVC(5.5.1877.687.68); Wed, 18 Jul 2001 13:56:35 +0100 Content-Type: text/plain; charset="iso-8859-1" From: JF To: questions@freebsd.org Subject: SB Live pcm0 unable to map? Date: Wed, 18 Jul 2001 14:04:32 +0100 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <01071814043200.00329@OpsyDopsy.net.dhis.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 Heys I've got a PnP PCI SB Live. In my kernel config according to what I have read I only needed to add: device pcm Which I have. I went to /dev and sh MAKEDEV snd0 Recompiled the kernel and restarted, and got an error msg: pcm0: at device 10.0 on pci0 pcm0: unable to map register space device_probe_and_attach: pcm0 attach returned 6 Hoping someone might be able to let me know what I may be doing wrong, or what I may trie to fix it. Thanks in advance JF PS: for what it may be worth, before I changed my NIC the sound worked at 4.2 with the changes I've said I made presently... uname -a FreeBSD OpsyDopsy.net.dhis.org 4.3-STABLE FreeBSD 4.3-STABLE #0: Wed Jul 18 13:34:42 WEST 2001 root@OpsyDopsy.net.dhis.org:/usr/obj/usr/src/sys/PIII-650 i386 complete 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 18 13:34:42 WEST 2001 root@OpsyDopsy.net.dhis.org:/usr/obj/usr/src/sys/PIII-650 Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (651.48-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x681 Stepping = 1 Features=0x383f9ff real memory = 402636800 (393200K 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> q avail memory = 388227072 (379128K bytes) Preloaded elf kernel "kernel" at 0xc0376000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc037609c. VESA: v3.0, 4096k memory, flags:0x1, mode table:0xc030b6c2 (1000022) VESA: NVidia Pentium Pro MTRR support enabled 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 pci1: at 0.0 irq 11 isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0xd800-0xd80f at device 4.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 4.2 irq 5 chip1: port 0xe800-0xe80f at device 4.3 on pci0 xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0xd000-0xd07f mem 0xd5800000-0xd580007f irq 5 at device 9.0 on pci0 xl0: Ethernet address: 00:04:76:8e:14:8c miibus0: on xl0 xlphy0: <3c905C 10/100 internal PHY> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pcm0: at device 10.0 on pci0 pcm0: unable to map register space device_probe_and_attach: pcm0 attach returned 6 orm0:
 


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 Wed Jul 18 10:50:32 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 8BCDB37B406 for ; Wed, 18 Jul 2001 10:50:21 -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 f6IHoGC52322 for ; Wed, 18 Jul 2001 10:50:16 -0700 (PDT) (envelope-from philip@adhesivemedia.com) Date: Wed, 18 Jul 2001 10:50:16 -0700 (PDT) From: Philip Hallstrom To: Subject: Anyone running FreeBSD on a VALinux 1150? Message-ID: <20010718104808.P52172-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 - I was wondering if anyone is running FreeBSD on a VALinux 1150. In particular: http://www.valinux.com/systems/ Model 1150 - Single 700Mhz PIII 2 x 256MB ECC RAM (512MB Total) Lancewood L440GX Motherboard 2 x 9.1GB SCSI HDD (7200 RPM) 1 x 40GB IDE UATA HDD (7200 RPM) 2 x 10/100 NIC's (1 integrated and 1 Intel EEPRO 10/100) Thanks! -philip To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 10:52: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from trinity.magpage.com (trinity.magpage.com [216.155.0.8]) by hub.freebsd.org (Postfix) with ESMTP id F281137B403 for ; Wed, 18 Jul 2001 10:52:01 -0700 (PDT) (envelope-from dfrazier@magpage.com) Received: from magpage.com (dfrazier@poomba.magpage.com [216.155.24.136]) by trinity.magpage.com (8.11.3/8.11.3) with ESMTP id f6IHpu829363; Wed, 18 Jul 2001 13:51:56 -0400 (EDT) Message-ID: <3B55CCBB.4030807@magpage.com> Date: Wed, 18 Jul 2001 13:51:55 -0400 From: Daniel Frazier User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.2) Gecko/20010702 X-Accept-Language: en-us MIME-Version: 1.0 To: Magnus Cc: questions@FreeBSD.ORG Subject: Re: System unable to resolve hostnames References: <000701c10f26$e381e800$0200a8c0@chello.no> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-RRT-Status: UNKNOWN Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Magnus wrote: > FreeBSD Alpha.chello.no 4.3-RELEASE FreeBSD > > What makes it even more wierd, is that I am able to resolv hostnames by > using 'nslookup'. this makes me think your /etc/host.conf is whacked. make sure the bind line is uncommented. mine looks like this... poomba:~ $ cat /etc/host.conf # $FreeBSD: src/etc/host.conf,v 1.6 1999/08/27 23:23:41 peter Exp $ # First try the /etc/hosts file hosts # Now try the nameserver next. bind # If you have YP/NIS configured, uncomment the next line # nis hope this helps... -- ---------------------------------------------------------------------- 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 From owner-freebsd-questions Wed Jul 18 10:52:28 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 662F437B406 for ; Wed, 18 Jul 2001 10:52:25 -0700 (PDT) (envelope-from greid@FreeBSD.org) Received: from sobek.lan ([62.252.8.178]) by mta06-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20010718175223.QAGA295.mta06-svc.ntlworld.com@sobek.lan>; Wed, 18 Jul 2001 18:52:23 +0100 Date: Wed, 18 Jul 2001 18:52:23 +0100 (BST) From: George Reid X-Sender: greid@sobek.lan To: scott.sapire@amg-la.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Take me Off Your Fucking Lists - You Are Killing My E-Mail!! 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 Wed, 18 Jul 2001, scott sapire wrote: > (Absolutely nothing of value) Take yourself off our fucking lists by reading the bloody instructions at the end of *every mail*. -- +-------------------+---------------------+ | George Reid | FreeBSD Committer | | +44 7740 197460 | greid@FreeBSD.org | +-------------------+---------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 10:54:29 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 DBB3137B401 for ; Wed, 18 Jul 2001 10:54:26 -0700 (PDT) (envelope-from greid@FreeBSD.org) Received: from sobek.lan ([62.252.8.178]) by mta06-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20010718175424.QBAC295.mta06-svc.ntlworld.com@sobek.lan>; Wed, 18 Jul 2001 18:54:24 +0100 Date: Wed, 18 Jul 2001 18:54:24 +0100 (BST) From: George Reid X-Sender: greid@sobek.lan To: JF Cc: questions@FreeBSD.ORG Subject: Re: SB Live pcm0 unable to map? In-Reply-To: <01071814043200.00329@OpsyDopsy.net.dhis.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 Wed, 18 Jul 2001, JF wrote: > I've got a PnP PCI SB Live. > > In my kernel config according to what I have read I only needed to add: > device pcm > Which I have. > > I went to /dev and sh MAKEDEV snd0 > Recompiled the kernel and restarted, and got an error msg: > pcm0: at device 10.0 on pci0 > pcm0: unable to map register space > device_probe_and_attach: pcm0 attach returned 6 You need to set "Plug & Play OS" to "NO" in your BIOS. -- +-------------------+---------------------+ | George Reid | FreeBSD Committer | | +44 7740 197460 | greid@FreeBSD.org | +-------------------+---------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 10:54:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.fasti.net (gateway.fasti.net [216.138.206.30]) by hub.freebsd.org (Postfix) with ESMTP id 701BE37B401 for ; Wed, 18 Jul 2001 10:54:42 -0700 (PDT) (envelope-from joe@fasti.net) Received: from localhost (joe@localhost) by gateway.fasti.net (8.11.3/8.11.0) with ESMTP id f6IHsZ596926; Wed, 18 Jul 2001 13:54:36 -0400 (EDT) (envelope-from joe@fasti.net) Date: Wed, 18 Jul 2001 13:54:35 -0400 (EDT) From: Joe To: scott.sapire@amg-la.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Take me Off Your Fucking Lists - You Are Killing My E-Mail!! 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 should learn how to read directions, besides, wtf did you subscribe for this list anyway? On Wed, 18 Jul 2001, scott sapire wrote: > > > _____________________________________________________________________________________________________________________________________________________________ > 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 Wed Jul 18 10:58:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cerebellum.za.net (cerebellum.za.net [196.34.172.103]) by hub.freebsd.org (Postfix) with ESMTP id 9CEA037B401 for ; Wed, 18 Jul 2001 10:58:04 -0700 (PDT) (envelope-from demi@god.za.net) Received: from mandy (nunetnt2.nutech.co.za [196.34.172.5]) by cerebellum.za.net (8.11.3/8.11.3) with SMTP id f6IHoj730302; Wed, 18 Jul 2001 19:50:47 +0200 (SAST) (envelope-from demi@god.za.net) Message-ID: <004901c10fb3$41d00900$3400a8c0@mandy> From: "feenikz" To: "Fernando Gleiser" References: <20010718143709.U18511-100000@cactus.fi.uba.ar> Subject: Re: IPNAT Date: Wed, 18 Jul 2001 19:58:28 +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.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 Hi, I just said ifconfig rl0 alias a.b.c.25 wrong? the arp -S ... command replies a.b.c.25 deleted. Also I notice .20 is no longer an entry, I need everything to stay the same only .25 must point to 192.168.10.10. I can ping 192.168.10.10 from the local box, but not a.b.c.25 When i ping it, rules are opened and all, but no responses etc???? Tx, Dave > Do you use proxy arp? > > You need to proxy ARP on the external NIC, bindig the external IP to the > MAC of external NIC of the firewall. You shouldnt configure a.b.c.25 as > an alias on rl0. > > arp -S a.b.c.25 pub > > > Fer > > > On Wed, 18 Jul 2001, Dave wrote: > > > *Notices the lack of information on his behalf* > > > > 192.168.10.10 is a NT IIS server, > > a.b.c.20 is the firewalls main address, *does web aswell etc* > > ifconfig rl0 shows that a.b.c.25 is also up. > > ipnat -l shows that a connection is made when i request one, > > but nothing is returned. (Tested this from a dialup and the local box.) > > > > Strange thing is, it works on ONE box, a.b.c.102. I goto a.b.c.25 and it > > gets the correct page and everything. > > > > I cant imaging why, no special settings, stock standard FBSD 4.3-STABLE box. > > Both of them. > > > > Any more ideas? > > > > > > > > > I already do nat for the whole 192.168.0.0/24 network, which works, > > > > but I cant get it to do the bimap. My normal ip is .20 but I have > > added > > > > .25 to use for the bimap. > > > > > > confirm that a.b.c.25 is bound to the external interface (i.e. whichever > > > interface is visible to the outside world) and that the bimap rule is > > placed > > > before the map rule... > > > > > > in /etc/ipnat.rules > > > -> bimap rules > > > -> rdr rules > > > -> map rule > > > > > > Phil > > > > > > > > > > > > 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 18 11:10:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.hostorama.com (208-128-72-15.ipv4.intur.net [208.128.72.15]) by hub.freebsd.org (Postfix) with SMTP id 8FBB037B405 for ; Wed, 18 Jul 2001 11:10:20 -0700 (PDT) (envelope-from ewalters@nms2001.com) Received: (qmail 60268 invoked from network); 18 Jul 2001 18:31:40 -0000 Received: from unknown (HELO netmon1) (12.45.139.50) by 0 with SMTP; 18 Jul 2001 18:31:40 -0000 From: "Eric Walters" To: Subject: Adding exec sh -E to login script Date: Wed, 18 Jul 2001 13:10:18 -0500 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_002D_01C10F8A.FE540FF0" 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 X-MS-TNEF-Correlator: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_002D_01C10F8A.FE540FF0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit I am trying to figure out how I can add the "exec sh -E" to my login script so that when I login I can up and down arrow through my command history? Thanks, Eric Õ¿Õ¬ ------=_NextPart_000_002D_01C10F8A.FE540FF0 Content-Type: application/ms-tnef; name="winmail.dat" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="winmail.dat" eJ8+IhISAQaQCAAEAAAAAAABAAEAAQeQBgAIAAAA5AQAAAAAAADoAAEIgAcAGAAAAElQTS5NaWNy b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAAAAAgACAAEGgAMADgAAANEHBwASAA0ACgAAAAMACwEB A5AGAAAFAAAiAAAACwACAAEAAAALACMAAAAAAAMAJgAAAAAACwApAAAAAAADADYAAAAAAB4AcAAB AAAAIgAAAEFkZGluZyBleGVjIHNoIC1FIHRvIGxvZ2luIHNjcmlwdAAAAAIBcQABAAAAFgAAAAHB D7Tjp2hUWyZ/yU2xs522H6pB44MAAAIBHQwBAAAAGgAAAFNNVFA6RVdBTFRFUlNATk1TMjAwMS5D T00AAAALAAEOAAAAAEAABg4ATNjbtA/BAQIBCg4BAAAAGAAAAAAAAABy3FKhjFnQEZV3AKAkqgkc 4oEAAAsAHw4BAAAAAgEJEAEAAABEAQAAQAEAAMMBAABMWkZ1kGAx+QMACgByY3BnMTI1FjIA+Atg bg4QMDMzTwH3AqQD4wIAY2gKwHPwZXQwIAcTAoMAUBBm+HBycQ5QEN8B8RLhA2NXEp8HbQKAfQqB dgiQd9JrC4BkNAxgYwBQCwMBC7UgSSBhbSB0FHJ5C4BnGRBvIGZkaWcIcGUgCGAFQGgWbwfgGNBj A5FhZGRFGRBoGhAiZXgFkCBAc2ggLUUiGYJtdHkgCQBnC4Ab4AUEc+sZoBtQYQVAdxtgA6AY0DMc xBq0dXAY4BeAIGR7GoAa8XIDYAfgG1ADYHVuZxwAHJEFoG0DgRswaPcEABmQGTA/CqIKhAqECzCC bhqAaWRjdGwKsYcR8RXAEyBua3MsIho+RQUQG9AUIwvwF6AnZPI1JiBiZiYkANESAwwBLyKJATEi IxbhACkgCwABgAggBgAAAAAAwAAAAAAAAEYAAAAAA4UAAAAAAAADAAOACCAGAAAAAADAAAAAAAAA RgAAAAAQhQAAAAAAAAMABoAIIAYAAAAAAMAAAAAAAABGAAAAAFKFAAA/cQEAHgAmgAggBgAAAAAA wAAAAAAAAEYAAAAAVIUAAAEAAAAEAAAAOS4wAAMAJ4AIIAYAAAAAAMAAAAAAAABGAAAAAAGFAAAA AAAACwAwgAggBgAAAAAAwAAAAAAAAEYAAAAADoUAAAAAAAADADGACCAGAAAAAADAAAAAAAAARgAA AAARhQAAAAAAAAMAM4AIIAYAAAAAAMAAAAAAAABGAAAAABiFAAAAAAAACwDngAggBgAAAAAAwAAA AAAAAEYAAAAAgoUAAAEAAAALABeBCCAGAAAAAADAAAAAAAAARgAAAAAGhQAAAAAAAAIB+A8BAAAA EAAAAHLcUqGMWdARlXcAoCSqCRwCAfoPAQAAABAAAABy3FKhjFnQEZV3AKAkqgkcAgH7DwEAAABW AAAAAAAAADihuxAF5RAaobsIACsqVsIAAFBTVFBSWC5ETEwAAAAAAAAAAE5JVEH5v7gBAKoAN9lu AAAARTpcRGF0YVxPdXRsb29rXGV3YWx0ZXJzLnBzdAAAAAMA/g8FAAAAAwANNP03AAACAX8AAQAA ADQAAAA8TkFCQkpGSEhIQ0hNSEdBTElGRUZPRURLSENBQS5ld2FsdGVyc0BubXMyMDAxLmNvbT4A AwAGEI9xyzUDAAcQgwAAAAMAEBAAAAAAAwAREAAAAAAeAAgQAQAAAGUAAABJQU1UUllJTkdUT0ZJ R1VSRU9VVEhPV0lDQU5BRERUSEUiRVhFQ1NILUUiVE9NWUxPR0lOU0NSSVBUU09USEFUV0hFTklM T0dJTklDQU5VUEFORERPV05BUlJPV1RIUk9VR0hNAAAAABcG ------=_NextPart_000_002D_01C10F8A.FE540FF0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 11:23:21 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 3BC4A37B401 for ; Wed, 18 Jul 2001 11:23:19 -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 f6IIN8312713; Wed, 18 Jul 2001 11:23:08 -0700 (PDT) Message-ID: <3B55D50E.4BFFB360@loudcloud.com> Date: Wed, 18 Jul 2001 11:27:26 -0700 From: Sean Peck X-Mailer: Mozilla 4.74 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Eric Walters Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Adding exec sh -E to login script 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 Are you tied to the SH shell? tcsh (and others) have this feature built in. Eric Walters wrote: > I am trying to figure out how I can add the "exec sh -E" to my login script > so that when I login I can up and down arrow through my command history? > > Thanks, > > Eric Õ¿Õ¬ > > ------------------------------------------------------------------------ > Name: winmail.dat > winmail.dat Type: application/ms-tnef > Encoding: base64 -- 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 Wed Jul 18 11:23:34 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 D897F37B40A for ; Wed, 18 Jul 2001 11:23:22 -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 f6IIL4v19241; Wed, 18 Jul 2001 15:21:04 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Wed, 18 Jul 2001 15:21:04 -0300 (ART) From: Fernando Gleiser To: feenikz Cc: Subject: Re: IPNAT In-Reply-To: <004901c10fb3$41d00900$3400a8c0@mandy> Message-ID: <20010718151044.I18511-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 Here's what I do (and it works). Let's say your firewall external address is 172.16.1.226, and you want 172.16.1.227 map to the internal host 192.168.1.25. The netmask of the public net is 0xfffffff8 then you say: # ifconfig rl0 172.16.1.226 netmask 0xfffffff8 Then, you lookup rl0's MAC (via ifconfig), and say # arp -S 172.16.1.227 pub And that's it. In other words: if you use bimap, you don't use the external IP as an alias. You use proxy arp. If you use rdr, you assign the external IP as an alias on rl0. Fer On Wed, 18 Jul 2001, feenikz wrote: > Hi, > I just said > ifconfig rl0 alias a.b.c.25 > wrong? > the arp -S ... command replies > a.b.c.25 deleted. > > Also I notice .20 is no longer an entry, I need everything to stay the > same only .25 must point to 192.168.10.10. > I can ping 192.168.10.10 from the local box, but not a.b.c.25 > When i ping it, rules are opened and all, but no responses etc???? > > Tx, Dave > > > > Do you use proxy arp? > > > > You need to proxy ARP on the external NIC, bindig the external IP to the > > MAC of external NIC of the firewall. You shouldnt configure a.b.c.25 as > > an alias on rl0. > > > > arp -S a.b.c.25 pub > > > > > > Fer > > > > > > On Wed, 18 Jul 2001, Dave wrote: > > > > > *Notices the lack of information on his behalf* > > > > > > 192.168.10.10 is a NT IIS server, > > > a.b.c.20 is the firewalls main address, *does web aswell etc* > > > ifconfig rl0 shows that a.b.c.25 is also up. > > > ipnat -l shows that a connection is made when i request one, > > > but nothing is returned. (Tested this from a dialup and the local box.) > > > > > > Strange thing is, it works on ONE box, a.b.c.102. I goto a.b.c.25 and it > > > gets the correct page and everything. > > > > > > I cant imaging why, no special settings, stock standard FBSD 4.3-STABLE > box. > > > Both of them. > > > > > > Any more ideas? > > > > > > > > > > > > I already do nat for the whole 192.168.0.0/24 network, which > works, > > > > > but I cant get it to do the bimap. My normal ip is .20 but I have > > > added > > > > > .25 to use for the bimap. > > > > > > > > confirm that a.b.c.25 is bound to the external interface (i.e. > whichever > > > > interface is visible to the outside world) and that the bimap rule is > > > placed > > > > before the map rule... > > > > > > > > in /etc/ipnat.rules > > > > -> bimap rules > > > > -> rdr rules > > > > -> map rule > > > > > > > > Phil > > > > > > > > > > > > > > > > > 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 18 11:31:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.activemessage.com (www.activemessage.com [206.86.226.202]) by hub.freebsd.org (Postfix) with ESMTP id 6D10D37B406 for ; Wed, 18 Jul 2001 11:31:26 -0700 (PDT) (envelope-from mloftis@wgops.com) Received: from wgops.com (adsl-64-173-25-200.dsl.sntc01.pacbell.net [64.173.25.200]) by mail1.activemessage.com (Postfix) with ESMTP id E3FE9BDE3C; Wed, 18 Jul 2001 11:32:35 -0700 (PDT) Message-ID: <3B55D595.A9FC28AA@wgops.com> Date: Wed, 18 Jul 2001 11:29:41 -0700 From: Michael Loftis X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Peter Warrick Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Routing References: <200107170112.TAA30503@mail.guest-tek.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 If you mean you want a single-ip alias you can... ifconfig en1 add 1.2.3.1 netmask 255.255.255.255 .... Peter Warrick wrote: > > Ok.. Hopefully I have sent this to the right place. > > I sent in a question to freebsd-net earlier but maybe some clarification > here might help. I am trying to reproduce the same functionality that I > have achieved on Redhat Linux on a BSD box. > > In Redhat linux if I issue these commands.. > > ifconfig eth1:0 1.2.3.1 netmask 255.255.255.255 > route add -host 1.2.3.4 dev eth1:0 > > A computer connected to my BSD box (1.2.3.4) can then start pinging > 1.2.3.1 immediately. Additionally this does NOT bring the entire 1.2.3.x > subnet onto my BSD box and this is what I want. I simply want to route > these two IPs together so they can talk to each other. > > On BSD I have tried the following without success... > > ifconfig en1 1.2.3.1 netmask 255.255.255.255 broadcast 1.255.255.255 > alias > route add -host 1.2.3.4 -interface en1 > > I added the broadcast to the ifconfig line in BSD because I noticed in > linux my broadcast was 1.255.255.255 by default and BSD wasn't doing > this. Yet this still did not help. > > Is there anything else someone may suggest that I need to do to get this > working? Again I have this working on my Redhat Linux box but not my BSD > box and I am kind of under the gun to prove that it can be done in BSD > as it has been done in Redhat. > > Thanks guys for any help. > > Pete > > 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 18 11:39:55 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.hostorama.com (208-128-72-15.ipv4.intur.net [208.128.72.15]) by hub.freebsd.org (Postfix) with SMTP id 0B16C37B405 for ; Wed, 18 Jul 2001 11:39:52 -0700 (PDT) (envelope-from eric@ericwalters.com) Received: (qmail 60573 invoked from network); 18 Jul 2001 19:01:12 -0000 Received: from unknown (HELO netmon1) (12.45.139.50) by 0 with SMTP; 18 Jul 2001 19:01:12 -0000 From: "Eric Walters" To: "Sean Peck" Cc: Subject: RE: Adding exec sh -E to login script Date: Wed, 18 Jul 2001 13:39:50 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 In-Reply-To: <3B55D50E.4BFFB360@loudcloud.com> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am not tied to SH. What might I lack/miss if I switch to tcsh? -----Original Message----- From: Sean Peck [mailto:seanp@loudcloud.com] Sent: Wednesday, July 18, 2001 1:27 PM To: Eric Walters Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Adding exec sh -E to login script Are you tied to the SH shell? tcsh (and others) have this feature built in. Eric Walters wrote: > I am trying to figure out how I can add the "exec sh -E" to my login script > so that when I login I can up and down arrow through my command history? > > Thanks, > > Eric Õ¿Õ¬ > > ------------------------------------------------------------------------ > Name: winmail.dat > winmail.dat Type: application/ms-tnef > Encoding: base64 -- 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 Wed Jul 18 11:41:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [64.0.106.45]) by hub.freebsd.org (Postfix) with ESMTP id 6A21737B406 for ; Wed, 18 Jul 2001 11:41:35 -0700 (PDT) (envelope-from scanner@jurai.net) Received: from localhost (scanner@localhost) by sasami.jurai.net (8.9.3/8.8.7) with ESMTP id OAA02834; Wed, 18 Jul 2001 14:41:30 -0400 (EDT) Date: Wed, 18 Jul 2001 14:41:30 -0400 (EDT) From: To: Eric Walters Cc: Sean Peck , freebsd-questions@FreeBSD.ORG Subject: RE: Adding exec sh -E to login script In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 18 Jul 2001, Eric Walters wrote: > I am not tied to SH. What might I lack/miss if I switch to tcsh? Portability. ============================================================================= -Chris Watson (316) 326-3862 | Sr. Unix Administrator Work: chris.watson@twa.com | Trans World Airlines, Kansas City, MO Home: scanner@jurai.net | http://www.twa.com ============================================================================= WINDOWS: "Where do you want to go today?" LINUX: "Where do you want to go tomorrow?" BSD: "Are you guys coming or what?" ============================================================================= irc.openprojects.net #FreeBSD -Join the revolution! ICQ: 20016186 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 11:44:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from be-well.ilk.org (lowellg.ne.mediaone.net [24.147.184.128]) by hub.freebsd.org (Postfix) with ESMTP id 5B83737B401 for ; Wed, 18 Jul 2001 11:44:08 -0700 (PDT) (envelope-from lowell@be-well.ilk.org) Received: (from lowell@localhost) by be-well.ilk.org (8.11.4/8.11.4) id f6IIhwN98250; Wed, 18 Jul 2001 14:43:58 -0400 (EDT) (envelope-from lowell) To: freebsd-questions@freebsd.org, ewalters@nms2001.com Subject: Re: Adding exec sh -E to login script References: From: Lowell Gilbert Date: 18 Jul 2001 14:43:57 -0400 In-Reply-To: ewalters@nms2001.com's message of "18 Jul 2001 20:10:51 +0200" Message-ID: <444rsaaxhu.fsf@lowellg.ne.mediaone.net> Lines: 17 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ewalters@nms2001.com (Eric Walters) writes: > I am trying to figure out how I can add the "exec sh -E" to my login script > so that when I login I can up and down arrow through my command history? That doesn't look like a good way to start a shell. A quick look at the 'Invocation' section of the sh(1) man page leads me to the following suggestion: Add: ENV=$HOME/.shinit; export ENV to your ~/.profile file, and then create a ~/.shinit file, which contains the line: set -o emacs I did a quick test, and it works. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 11:51:31 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 5232137B406 for ; Wed, 18 Jul 2001 11:51:17 -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.3/8.11.3) with SMTP id f6IIpEM25111 for ; Wed, 18 Jul 2001 19:51:15 +0100 (BST) (envelope-from neil@darlow.co.uk) From: Neil Darlow Date: Wed, 18 Jul 2001 18:51:14 GMT Message-ID: <20010718.18511400@ideal.darlow.co.uk> Subject: Source Update is incomplete? 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 All, I've just updated my system from 4.2-RELEASE to 4.3-RELENG_4_3 via a source rebuild. The build/installworld and build/installkernel went without errors but I find that the update is incomplete i.e.: 1) Some header files in /usr/include haven't been replaced 2) Some libraries in /usr/lib e.g. lib???_p.a were files under 4.2 and are symlinks under 4.3 haven't been updated How do I go about reconciling this mess? I'm beginning to think that source-level updates are not the way to go. Regards, Neil Darlow. -- 1024D/531F9048 1999-09-11 Neil Darlow GPG fingerprint =3D 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 Wed Jul 18 12:10: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from marble.fbcc.com (ns2.fbcc.com [216.54.252.3]) by hub.freebsd.org (Postfix) with SMTP id 5956237B406 for ; Wed, 18 Jul 2001 12:09:55 -0700 (PDT) (envelope-from info@hostco2000.com) Received: (qmail 29599 invoked from network); 18 Jul 2001 19:24:24 -0000 Received: from unknown (HELO 5ocelot) (207.70.162.223) by ns2.fbcc.com with SMTP; 18 Jul 2001 19:24:24 -0000 Reply-To: From: "HostCo2000.com" To: Subject: ASUS CUSL2 Motherboard Date: Wed, 18 Jul 2001 14:13:47 -0500 Organization: BCI Internet Message-ID: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0006_01C10F93.DCCD5D60" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Disposition-Notification-To: "HostCo2000.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 This is a multi-part message in MIME format. ------=_NextPart_000_0006_01C10F93.DCCD5D60 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hello, I am trying to do my first FreeBSD Version.4.1 install and config of xwindow in the XF386Config and can not find an option listed for the Intel 815E Graphics Memory Controller Hub (GMCH). I cannot get xwindow to run with a display res 0f 1024x768. Any suggestions would be greatly appreciated! Many Thanks in advance! Daniel Brumbaugh daniel@hostco2000.com http://www.hostco2000.com 281.693.5155 voice 281.693.2090 fax MSN Messenger Chat: hostco2000@hotmail.com ICQ 123658243 ------=_NextPart_000_0006_01C10F93.DCCD5D60 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable ASUS CUSL2 Motherboard

Hello,

I am = trying to do my first FreeBSD Version.4.1 install and config of xwindow = in the = XF386Config and can not find an = option = listed for the Intel 815E Graphics Memory Controller Hub = (GMCH).

I = cannot get xwindow to run with a display res 0f 1024x768.

Any = suggestions would be greatly appreciated!

Many = Thanks in advance!

Daniel = Brumbaugh

daniel@hostco2000.com

http://www.hostco2000.com =

281.693.5155 voice

281.693.2090 fax

MSN = Messenger Chat: hostco2000@hotmail.com

ICQ = 123658243

------=_NextPart_000_0006_01C10F93.DCCD5D60-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 12:15:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail12.sdc1.sfba.home.com (femail12.sdc1.sfba.home.com [24.0.95.108]) by hub.freebsd.org (Postfix) with ESMTP id C0C5E37B405 for ; Wed, 18 Jul 2001 12:15:07 -0700 (PDT) (envelope-from btdang@home.com) Received: from home.com ([24.248.85.196]) by femail12.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010718191502.RLRB16470.femail12.sdc1.sfba.home.com@home.com>; Wed, 18 Jul 2001 12:15:02 -0700 Message-ID: <3B55E17C.A8886F8B@home.com> Date: Wed, 18 Jul 2001 12:20:28 -0700 From: Bruce Dang Organization: Boys & Girls Clubs X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: thaibinh@hocvien.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Help..Please References: <20010718074503.D3EA23ECD@sitemail.everyone.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 There are a few things you want to do. First, please fix your MUA, it wrote everything in 1 line. Second, you want to go to www.freebsd.org and read the Handbook. Then after you install FreeBSD, you want to look at www.apache.org, read the docs on configuring the httpd.conf. That is it. Bruce Dang www.tbug.org Thaibinh Nguyen wrote: > > Hello, > > I have PC (Pentium III, 90 GB hardrive, 128 MB memory), using win 2000. Now, I want to change my machine to using Unix, using freeBSD. Is It posible ? ...I mean I want to change my machine to use Unix system to run a web server. Please give me a advise. Thanks. > > Thaibinh, > > _____________________________________________________________ > Sign up for FREE email from Hocvien at http://hocvien.com > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message Thaibinh Nguyen wrote: > > Hello, > > I have PC (Pentium III, 90 GB hardrive, 128 MB memory), using win 2000. Now, I want to change my machine to using Unix, using freeBSD. Is It posible ? ...I mean I want to change my machine to use Unix system to run a web server. Please give me a advise. Thanks. > > Thaibinh, > > _____________________________________________________________ > Sign up for FREE email from Hocvien at http://hocvien.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 18 12:19:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail12.sdc1.sfba.home.com (femail12.sdc1.sfba.home.com [24.0.95.108]) by hub.freebsd.org (Postfix) with ESMTP id 0B6EA37B405 for ; Wed, 18 Jul 2001 12:19:11 -0700 (PDT) (envelope-from btdang@home.com) Received: from home.com ([24.248.85.196]) by femail12.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010718191909.RRPW16470.femail12.sdc1.sfba.home.com@home.com>; Wed, 18 Jul 2001 12:19:09 -0700 Message-ID: <3B55E274.1513CD78@home.com> Date: Wed, 18 Jul 2001 12:24:36 -0700 From: Bruce Dang Organization: Boys & Girls Clubs X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Thomas Stratmann Cc: questions@FreeBSD.ORG Subject: Re: shutdown group References: <3B55B7B8.26500790@ruhr-uni-bochum.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 please look into sudo. bruce dang www.tbug.org Thomas Stratmann wrote: > > Hi folks, > > I would like to have a group of people on my machine being able to > reboot/halt/shutdown without having to su root. The only solution I have > seen before is to chgrp the executables halt and reboot into this group > and making them suid (both check for EUID being zero, I believe, so the > second step seems necessary). > > I would like you to advise me > - if there is a better solution > - what security issues will give me trouble with the above way (SUID > always rings alarm bells for me...) > > Thanks in advance! > Thomas Stratmann > > 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 18 12:23:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from herbelot.dyndns.org (d211.dhcp212-26.cybercable.fr [212.198.26.211]) by hub.freebsd.org (Postfix) with ESMTP id 2F84237B403 for ; Wed, 18 Jul 2001 12:23:09 -0700 (PDT) (envelope-from thierry@herbelot.com) Received: from herbelot.com (multi.herbelot.nom [192.168.1.2]) by herbelot.dyndns.org (8.9.3/8.9.3) with ESMTP id VAA03099; Wed, 18 Jul 2001 21:20:44 +0200 (CEST) (envelope-from thierry@herbelot.com) Message-ID: <3B55E20A.208B855B@herbelot.com> Date: Wed, 18 Jul 2001 21:22:50 +0200 From: Thierry Herbelot X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 Cc: JakeCatfox@aol.com, questions@freebsd.org Subject: Re: Linux_Base and X 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 [Question found on a NetBSD - nevertheless ...] > On Tue, 17 Jul 2001 JakeCatfox@aol.com wrote: > > > I installed linux_base-6.1 on my FreeBSD setup, but now X refuses to run! It > > starts spraying errors at random-- here's some of them .. > > > > Authentication System Failure, muissing or mangled PAM configuration file or > > module? > > Xwrapper: error reading PAM configuration file > > pam_star: failed to initialize handlers > > _X11TransSocketUNIXConnect: Can't connect: errno = 2 > > > > xinit: No such fiole or directory (errno 2): unable to connect to X server > > xinit: no such process (errno 3): Server error. > > > > I even tried pkg_delete'ing the linux_base package but no luck. > > you did install the xwrapper : maybe time to reinstall it ? (the Linux port may have changed your pam.conf file) -- Thierry Herbelot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 12:36:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from zaphod.adams.com.ar (host085102.arnet.net.ar [200.45.85.102]) by hub.freebsd.org (Postfix) with ESMTP id B14D537B401 for ; Wed, 18 Jul 2001 12:36:50 -0700 (PDT) (envelope-from snemiro@fi.uba.ar) Received: from sergio (trillian.adams.com.ar [192.168.1.2]) by zaphod.adams.com.ar (8.11.1/8.11.1) with SMTP id f6IJfmF00831 for ; Wed, 18 Jul 2001 16:41:50 -0300 (ART) (envelope-from snemiro@fi.uba.ar) Message-ID: <002f01c10fc2$caaa1220$0201a8c0@sergio> From: "Sergio Nemirovsky" To: Subject: Where is SOCKS? Date: Wed, 18 Jul 2001 16:49:42 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.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! I'm using FreeBSD 4.2, and I am looking for the SOCKS5 package...but I couldn't find it...when I do a make into the port directory (port/net/socks5), it says that I must download it from www.socks.nec.com,... but they dont have any product for FreeBSD. Any help? Thanks PS) Please, send your answer/suggestion directly to me, 'coz I'm not in the list! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 12:59:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprt15.wanadoo.fr (smtprt15.wanadoo.fr [193.252.19.210]) by hub.freebsd.org (Postfix) with ESMTP id 029CA37B401 for ; Wed, 18 Jul 2001 12:59:13 -0700 (PDT) (envelope-from jerome.bouat@wanadoo.fr) Received: from antholoma.wanadoo.fr (193.252.19.153) by smtprt15.wanadoo.fr; 18 Jul 2001 21:59:06 +0200 Received: from wanadoo.fr (193.249.42.103) by antholoma.wanadoo.fr; 18 Jul 2001 21:58:43 +0200 Message-ID: <3B563E6B.DE6247BD@wanadoo.fr> Date: Wed, 18 Jul 2001 21:56:59 -0400 From: =?iso-8859-1?Q?J=E9r=F4me?= Bouat X-Mailer: Mozilla 4.77 [fr] (X11; U; Linux 2.4.3-20mdk i686) X-Accept-Language: fr, en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: difference with Linux Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I don't know FreeBSD but I use Linux. What are the differences with Linux ? Thanks, Jérôme To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 13: 1:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dv-db.com (dv-db.com [207.159.141.95]) by hub.freebsd.org (Postfix) with ESMTP id 7086737B401 for ; Wed, 18 Jul 2001 13:01:57 -0700 (PDT) (envelope-from mark@dvdnews.co.uk) Received: from mark2 (host217-35-43-110.btopenworld.com [217.35.43.110]) by dv-db.com (8.9.3/8.9.3) with SMTP id VAA21168 for ; Wed, 18 Jul 2001 21:01:53 +0100 (GMT/BST) Message-ID: <045b01c10fc4$7813ba50$0200a8c0@mark2> From: "Mark Hughes" To: Subject: Closing PPP connection opened using ppp -auto Date: Wed, 18 Jul 2001 20:57:05 +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 If I've opened a PPP connection using the line... ppp -auto adsl (where adsl is the profile name) and the line has come up with usage, as is expected, how do I force a disconnect? The only way I can find to do it at the moment is by running killall ppp as root, which seems a little excessive and heavy handed, and also messes up the driver for my adsl modem - then requiring a reboot to reconnnect (as far as I can tell). How do I force a disconnect? Thanks, Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 13: 4:24 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 6768037B407 for ; Wed, 18 Jul 2001 13:04:19 -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 15MxYJ-0003cC-00 for freebsd-questions@freebsd.org; Wed, 18 Jul 2001 15:04:11 -0500 To: freebsd-questions@freebsd.org Subject: Remote Installation from CDROM via Serial Port Date: Wed, 18 Jul 2001 15:04:11 -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 This is kind of a repeat of an earlier question that got no response, so I will keep it simple. If I am using the standard 4.3 CDROM, is there any way I can redirect the installation procedure to a serial port? The other end of the connection is a vt100-style terminal. Many thanks. 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 Wed Jul 18 13:26:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from Veronica.wmol.com (veronica.wmol.com [208.242.83.241]) by hub.freebsd.org (Postfix) with ESMTP id C8C1337B405 for ; Wed, 18 Jul 2001 13:26:14 -0700 (PDT) (envelope-from david@phobia.ms) Received: from rain.hill.hom (081bc122.chartermi.net [24.247.81.122]) by Veronica.wmol.com (Vircom SMTPRS 4.6.189) with ESMTP id ; Wed, 18 Jul 2001 15:45:23 -0400 Date: Wed, 18 Jul 2001 15:47:08 -0400 From: David Hill To: "Sergio Nemirovsky" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Where is SOCKS? Message-Id: <20010718154708.5beb2781.david@phobia.ms> In-Reply-To: <002f01c10fc2$caaa1220$0201a8c0@sergio> References: <002f01c10fc2$caaa1220$0201a8c0@sergio> X-Mailer: Sylpheed version 0.5.1 (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 On Wed, 18 Jul 2001 16:49:42 -0300 "Sergio Nemirovsky" wrote: > Hi! I'm using FreeBSD 4.2, and I am looking for the SOCKS5 package...but I > couldn't find it...when I do a make into the port directory > (port/net/socks5), it says that I must download it from > www.socks.nec.com,... but they dont have any product for FreeBSD. > > Any help? > > Thanks > > PS) Please, send your answer/suggestion directly to me, 'coz I'm not in the > list! > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > You need to download the source file from www.socks.nec.com, then put it into distfiles under your ports directory. Its not a product for FreeBSD. You need to download the source code. - David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 13:26:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail200.swst.com (mail200.swst.com [199.34.16.18]) by hub.freebsd.org (Postfix) with ESMTP id 6644237B401 for ; Wed, 18 Jul 2001 13:26:25 -0700 (PDT) (envelope-from RClark@swst.com) Received: from assentor1.swst.com (assentor.swst.com [209.51.28.15]) by mail200.swst.com (8.10.2/8.10.2) with ESMTP id f6IKQOw19125 for ; Wed, 18 Jul 2001 15:26:24 -0500 (CDT) Received: from sws_excg3.swst.com (unverified) by assentor1.swst.com (Content Technologies SMTPRS 2.0.15) with ESMTP id for ; Wed, 18 Jul 2001 15:25:41 -0500 Received: by sws-excg3.swst.com with Internet Mail Service (5.5.2654.52) id <3P0KTXNC>; Wed, 18 Jul 2001 15:25:36 -0500 Message-Id: From: Ronnie Clark To: "'Freebsd-Questions (E-mail)" Subject: Has anyone tried to cvsup today? Date: Wed, 18 Jul 2001 15:22:11 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2654.52) 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 keep getting the following message: Parsing supfile "/usr/src/stable-supfile" Connecting to cvsup.FreeBSD.org Cannot connect to cvsup.FreeBSD.org: Connection refused Anyone have any ideas? Thank you, Ronnie Clark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 13:31:20 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 9683437B405 for ; Wed, 18 Jul 2001 13:31:17 -0700 (PDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.11.4/8.11.4) id f6IKUjW03265; Wed, 18 Jul 2001 15:30:45 -0500 (CDT) (envelope-from dan) Date: Wed, 18 Jul 2001 15:30:45 -0500 From: Dan Nelson To: Ronnie Clark Cc: "'Freebsd-Questions (E-mail)" Subject: Re: Has anyone tried to cvsup today? Message-ID: <20010718153044.A12506@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 18), Ronnie Clark said: > I keep getting the following message: > > Parsing supfile "/usr/src/stable-supfile" > Connecting to cvsup.FreeBSD.org > Cannot connect to cvsup.FreeBSD.org: Connection refused Try cvsup2..cvsup17.freebsd.org -- 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 Wed Jul 18 13:33:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from Veronica.wmol.com (veronica.wmol.com [208.242.83.241]) by hub.freebsd.org (Postfix) with ESMTP id AF38637B401 for ; Wed, 18 Jul 2001 13:33:36 -0700 (PDT) (envelope-from david@phobia.ms) Received: from rain.hill.hom (081bc122.chartermi.net [24.247.81.122]) by Veronica.wmol.com (Vircom SMTPRS 4.6.189) with ESMTP id ; Wed, 18 Jul 2001 16:26:28 -0400 Date: Wed, 18 Jul 2001 16:28:13 -0400 From: David Hill To: Ronnie Clark Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Has anyone tried to cvsup today? Message-Id: <20010718162813.7b275be7.david@phobia.ms> In-Reply-To: References: X-Mailer: Sylpheed version 0.5.1 (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 On Wed, 18 Jul 2001 15:22:11 -0500 Ronnie Clark wrote: > I keep getting the following message: > > Parsing supfile "/usr/src/stable-supfile" > Connecting to cvsup.FreeBSD.org > Cannot connect to cvsup.FreeBSD.org: Connection refused > > Anyone have any ideas? > > > Thank you, > Ronnie Clark > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > edit your stable-supfile. change the host to a different server. cvsupX.freebsd.org where X is a number. i know 1-9 exist. - David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 13:33:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.mediadesign.nl (md2.mediadesign.nl [212.19.205.67]) by hub.freebsd.org (Postfix) with SMTP id 044D237B403 for ; Wed, 18 Jul 2001 13:33:56 -0700 (PDT) (envelope-from alson@mediadesign.nl) Received: (qmail 11217 invoked by uid 1002); 18 Jul 2001 20:33:53 -0000 Date: Wed, 18 Jul 2001 22:33:53 +0200 From: Alson van der Meulen To: freebsd-questions@FreeBSD.ORG Subject: Re: difference with Linux Message-ID: <20010718223351.C15065@md2.mediadesign.nl> Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <3B563E6B.DE6247BD@wanadoo.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3B563E6B.DE6247BD@wanadoo.fr> User-Agent: Mutt/1.3.18i Sender: owner-freebsd-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 18, 2001 at 09:56:59PM -0400, J?r?me Bouat wrote: > Hello, > I don't know FreeBSD > but I use Linux. > > What are the differences > with Linux ? mount a linux fs on /linux, a freebsd fs on /freebsd, and run diff -urN /linux /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 18 13:36:43 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 8AB5237B403 for ; Wed, 18 Jul 2001 13:36:40 -0700 (PDT) (envelope-from hamellr@1nova.com) Received: by heorot.1nova.com (Postfix, from userid 1000) id A012C18DC; Wed, 18 Jul 2001 13:37:03 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 8E88818DB; Wed, 18 Jul 2001 13:37:03 -0700 (PDT) Date: Wed, 18 Jul 2001 13:37:03 -0700 (PDT) From: Rick Hamell To: Ronnie Clark Cc: "'Freebsd-Questions (E-mail)" Subject: Re: Has anyone tried to cvsup today? 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 keep getting the following message: > > Parsing supfile "/usr/src/stable-supfile" > Connecting to cvsup.FreeBSD.org > Cannot connect to cvsup.FreeBSD.org: Connection refused > > Anyone have any ideas? The connection between you and that server is having problems. Try cvsup2 through (7?) and see if any of those help. Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://hw.shatteredcrystal.com ***FreeBSD - The Power to Serve! http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 13:36:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nu.cuk.nu (nu.cuk.nu [212.30.95.50]) by hub.freebsd.org (Postfix) with ESMTP id 9AF4637B405 for ; Wed, 18 Jul 2001 13:36:53 -0700 (PDT) (envelope-from cuk@cuk.nu) Received: from localhost (localhost.nu.cuk.nu [127.0.0.1]) by nu.cuk.nu (Postfix) with ESMTP id 232761AB78; Wed, 18 Jul 2001 22:37:06 +0200 (CEST) Received: from cuk.nu (iris.localnet [192.168.6.12]) by nu.cuk.nu (Postfix) with ESMTP id C43CD1AB76; Wed, 18 Jul 2001 22:37:02 +0200 (CEST) Message-ID: <3B55F33B.F1A47ED2@cuk.nu> Date: Wed, 18 Jul 2001 22:36:11 +0200 From: Marko Cuk X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: =?iso-8859-2?Q?J=E9r=F4me?= Bouat , freebsd-questions@FreeBSD.ORG Subject: Re: difference with Linux References: <3B563E6B.DE6247BD@wanadoo.fr> Content-Type: text/plain; charset=iso-8859-2 Content-Transfer-Encoding: 8bit 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 http://www.freeBSD.org/news/press.html Jérôme Bouat wrote: > Hello, > I don't know FreeBSD > but I use Linux. > > What are the differences > with Linux ? > > Thanks, > > Jérôme > > 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 18 13:37:25 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 0D99B37B403 for ; Wed, 18 Jul 2001 13:37:23 -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 A38118EE0232; Wed, 18 Jul 2001 13:37:21 -0700 Message-ID: <3B55F37E.CB1DC6BC@urx.com> Date: Wed, 18 Jul 2001 13:37:18 -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: Ronnie Clark Cc: "'Freebsd-Questions (E-mail)" Subject: Re: Has anyone tried to cvsup today? 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 Ronnie Clark wrote: > > I keep getting the following message: > > Parsing supfile "/usr/src/stable-supfile" > Connecting to cvsup.FreeBSD.org > Cannot connect to cvsup.FreeBSD.org: Connection refused > > Anyone have any ideas? That means the quota has been exceeded. Try a less popular site. Kent > > Thank you, > Ronnie Clark > > 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 18 13:42:17 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 6B16437B405 for ; Wed, 18 Jul 2001 13:42:15 -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 f6IKgF327661 for ; Wed, 18 Jul 2001 13:42:15 -0700 (PDT) Message-ID: <3B55F5A9.7D223AC2@loudcloud.com> Date: Wed, 18 Jul 2001 13:46:33 -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: linux 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 attempting to run /usr/bin/linux results: kldload: can't load linux: Operation not permitted I am assuming that this box was not set up as Linux compatible. What do I need to do to get this to work? I am using FreeBSD 3.3 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 Wed Jul 18 13:43: 0 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 580FE37B408 for ; Wed, 18 Jul 2001 13:42:58 -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 f6IKwWd96269 for ; Wed, 18 Jul 2001 16:58:33 -0400 (EDT) (envelope-from hawk@fac13.ds.psu.edu) Message-Id: <200107182058.f6IKwWd96269@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: backup software for ms folks on unix server? From: "Richard E. Hawkins" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 18 Jul 2001 16:58:32 -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 The new server is here, and it's fortunately not my problem :) However, they want an automated/designed backup package. Even a script interface to tar to handle the nightly incremental and weekly full backups would probaly do it. I'm sure it's a port, but which one? :) 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 Wed Jul 18 13:44:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from Veronica.wmol.com (veronica.wmol.com [208.242.83.241]) by hub.freebsd.org (Postfix) with ESMTP id EEF4237B403 for ; Wed, 18 Jul 2001 13:44:47 -0700 (PDT) (envelope-from david@phobia.ms) Received: from rain.hill.hom (081bc122.chartermi.net [24.247.81.122]) by Veronica.wmol.com (Vircom SMTPRS 4.6.189) with ESMTP id ; Wed, 18 Jul 2001 16:42:17 -0400 Date: Wed, 18 Jul 2001 16:44:02 -0400 From: David Hill To: Sean Peck Cc: freebsd-questions@FreeBSD.ORG Subject: Re: linux problem Message-Id: <20010718164402.090638bb.david@phobia.ms> In-Reply-To: <3B55F5A9.7D223AC2@loudcloud.com> References: <3B55F5A9.7D223AC2@loudcloud.com> X-Mailer: Sylpheed version 0.5.1 (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 On Wed, 18 Jul 2001 13:46:33 -0700 Sean Peck wrote: > > attempting to run > /usr/bin/linux > > results: > kldload: can't load linux: Operation not permitted > > I am assuming that this box was not set up as Linux compatible. What do > I need to do to get this to work? I am using FreeBSD 3.3 > > 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 > Are you trying this as root? - David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 13:50:45 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 6438037B401 for ; Wed, 18 Jul 2001 13:50:37 -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.3) with SMTP id f6IKlYu10874; Wed, 18 Jul 2001 16:47:34 -0400 (EDT) (envelope-from freymann@scaryg.shacknet.nu) Message-ID: <02e101c10fcb$59bbc460$0f01a8c0@phantom> From: "Gerald T. Freymann" To: , "Richard E. Hawkins" References: <200107182058.f6IKwWd96269@fac13.ds.psu.edu> Subject: Re: backup software for ms folks on unix server? Date: Wed, 18 Jul 2001 16:50:59 -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 Amanda! Port: amanda24-client-2.4.2p2_1 Path: /usr/ports/misc/amanda24-client Info: The Advanced Maryland Automatic Network Disk Archiver Maint: jeh@FreeBSD.org Index: misc B-deps: gettext-0.10.35 gmake-3.79.1 gtar-1.13.19 libtool-1.3.4_2 R-deps: gettext-0.10.35 gtar-1.13.19 Port: amanda24-server-2.4.2p2_1 Path: /usr/ports/misc/amanda24-server Info: The Advanced Maryland Automatic Network Disk Archiver Maint: jeh@FreeBSD.org Index: misc B-deps: amanda24-client-2.4.2p2_1 gettext-0.10.35 gmake-3.79.1 gtar-1.13.19 libtool-1.3.4_2 R-deps: amanda24-client-2.4.2p2_1 gettext-0.10.35 gtar-1.13.19 -gf. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 13:52:24 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 1529C37B408 for ; Wed, 18 Jul 2001 13:52:21 -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.3) with SMTP id f6IKn6u11103; Wed, 18 Jul 2001 16:49:07 -0400 (EDT) (envelope-from freymann@scaryg.shacknet.nu) Message-ID: <02e701c10fcb$90d3ec70$0f01a8c0@phantom> From: "Gerald T. Freymann" To: "Sean Peck" , References: <3B55F5A9.7D223AC2@loudcloud.com> Subject: Re: linux problem Date: Wed, 18 Jul 2001 16:52:32 -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 >kldload: can't load linux: Operation not permitted > I am assuming that this box was not set up as Linux compatible. What do > I need to do to get this to work? I am using FreeBSD 3.3 Not sure about 3.3.. but FreeBsd 4 just requires: linux_enable="YES" # Linux binary compatibility loaded at startup added to /etc/rc.conf -gf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 13:53: 7 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 F1D5037B403 for ; Wed, 18 Jul 2001 13:52:58 -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 f6IKoQv21332; Wed, 18 Jul 2001 17:50:28 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Wed, 18 Jul 2001 17:50:26 -0300 (ART) From: Fernando Gleiser To: Sean Peck Cc: Subject: Re: linux problem In-Reply-To: <3B55F5A9.7D223AC2@loudcloud.com> Message-ID: <20010718174347.D18511-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 It may be that: 1) You need to be root in order to enable linux compatibility. maybe you are trying as an ordinary user 2) Maybe you raised the securelevel. You can't load KLDs if your securelevel is raised. add "linux_enable=YES" to /etc/rc.conf so it is loaded at boot time. Fer On Wed, 18 Jul 2001, Sean Peck wrote: > > attempting to run > /usr/bin/linux > > results: > kldload: can't load linux: Operation not permitted > > I am assuming that this box was not set up as Linux compatible. What do > I need to do to get this to work? I am using FreeBSD 3.3 > > 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 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 14: 1: 8 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 6A22C37B403 for ; Wed, 18 Jul 2001 14:01:05 -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 f6IL13300438; Wed, 18 Jul 2001 14:01:03 -0700 (PDT) Message-ID: <3B55FA12.41734303@loudcloud.com> Date: Wed, 18 Jul 2001 14:05:22 -0700 From: Sean Peck X-Mailer: Mozilla 4.74 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: David Hill Cc: freebsd-questions@FreeBSD.ORG Subject: Re: linux problem References: <3B55F5A9.7D223AC2@loudcloud.com> <20010718164402.090638bb.david@phobia.ms> 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 are right, It did run as root without problem, but I still believe there is something else missing, attempting to run Linux binary I get the following: ELF interpreter /compat/linux/lib/ld-linux.so.1 not found So I believe something else is still missing to run Linux on this box. Sean David Hill wrote: > On Wed, 18 Jul 2001 13:46:33 -0700 > Sean Peck wrote: > > > > > attempting to run > > /usr/bin/linux > > > > results: > > kldload: can't load linux: Operation not permitted > > > > I am assuming that this box was not set up as Linux compatible. What do > > I need to do to get this to work? I am using FreeBSD 3.3 > > > > 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 > > > > Are you trying this as root? > > - David -- 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 Wed Jul 18 14:19:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r01.mx.aol.com (imo-r01.mx.aol.com [152.163.225.97]) by hub.freebsd.org (Postfix) with ESMTP id C35E437B405 for ; Wed, 18 Jul 2001 14:19:11 -0700 (PDT) (envelope-from JakeCatfox@aol.com) Received: from JakeCatfox@aol.com by imo-r01.mx.aol.com (mail_out_v31.7.) id n.2d.e909025 (4403) for ; Wed, 18 Jul 2001 17:19:06 -0400 (EDT) From: JakeCatfox@aol.com Message-ID: <2d.e909025.2887574a@aol.com> Date: Wed, 18 Jul 2001 17:19:06 EDT Subject: Ectiva 1938 sound 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 138 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Does anyone know how I can configure my FreeBSD system to use my Ectiva 1938 sound card? I'm fairly certain it's a Creative card, and I found this message board posting: Re: Drivers for sound cards Which states that the driver is in /usr/src/sys/dev/pci/eap.c, but I don't know how to get it or install it .. my src dir is empty. Any suggestions? .. Thanks. -- Deven To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 14:34: 1 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 4974437B405 for ; Wed, 18 Jul 2001 14:33:59 -0700 (PDT) (envelope-from JakeCatfox@aol.com) Received: from JakeCatfox@aol.com by imo-m01.mx.aol.com (mail_out_v31.7.) id n.61.10acf68e (4403) for ; Wed, 18 Jul 2001 17:33:52 -0400 (EDT) From: JakeCatfox@aol.com Message-ID: <61.10acf68e.28875ac0@aol.com> Date: Wed, 18 Jul 2001 17:33:52 EDT Subject: ESS Maestro3(i)hw Sound Card 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 138 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Does anyone know if the ESS Maestro3(i)hw is compatible with FreeBSD, and, if so, how I would configure it to work on my laptop? Thanks. :) -- Deven To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 14:57:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.hostorama.com (208-128-72-15.ipv4.intur.net [208.128.72.15]) by hub.freebsd.org (Postfix) with SMTP id 37E7037B401 for ; Wed, 18 Jul 2001 14:57:19 -0700 (PDT) (envelope-from eric@ericwalters.com) Received: (qmail 62544 invoked from network); 18 Jul 2001 22:18:40 -0000 Received: from unknown (HELO netmon1) (12.45.139.50) by 0 with SMTP; 18 Jul 2001 22:18:40 -0000 From: "Eric Walters" Cc: Subject: RE: Adding exec sh -E to login script Date: Wed, 18 Jul 2001 16:57:17 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 In-Reply-To: <3B55D50E.4BFFB360@loudcloud.com> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks to everyone for your answers. I have decided to go with the tcsh approach. Thanks, Eric -----Original Message----- From: Sean Peck [mailto:seanp@loudcloud.com] Sent: Wednesday, July 18, 2001 1:27 PM To: Eric Walters Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Adding exec sh -E to login script Are you tied to the SH shell? tcsh (and others) have this feature built in. Eric Walters wrote: > I am trying to figure out how I can add the "exec sh -E" to my login script > so that when I login I can up and down arrow through my command history? > > Thanks, > > Eric Õ¿Õ¬ > > ------------------------------------------------------------------------ > Name: winmail.dat > winmail.dat Type: application/ms-tnef > Encoding: base64 -- 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 Wed Jul 18 14:59:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dsl-64-193-218-89.telocity.com (dsl-64-193-218-89.telocity.com [64.193.218.89]) by hub.freebsd.org (Postfix) with SMTP id 74FCB37B405 for ; Wed, 18 Jul 2001 14:59:24 -0700 (PDT) (envelope-from lucas@slb.to) Received: (qmail 23678 invoked by uid 1000); 18 Jul 2001 21:59:23 -0000 Date: Wed, 18 Jul 2001 16:59:22 -0500 From: Lucas Bergman To: Sean Peck Cc: freebsd-questions@freebsd.org Subject: Re: linux problem Message-ID: <20010718165922.A27687@billygoat.slb.to> Reply-To: lucas@slb.to References: <3B55F5A9.7D223AC2@loudcloud.com> <20010718164402.090638bb.david@phobia.ms> <3B55FA12.41734303@loudcloud.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B55FA12.41734303@loudcloud.com>; from seanp@loudcloud.com on Wed, Jul 18, 2001 at 02:05:22PM -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 > It did run as root without problem, but I still believe there is > something else missing, attempting to run Linux binary I get the > following: > > ELF interpreter /compat/linux/lib/ld-linux.so.1 not found You need the linux_base package. Lucas To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 15: 9:37 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 7AD8737B407 for ; Wed, 18 Jul 2001 15:09:22 -0700 (PDT) (envelope-from davec@frontiernet.net) Received: from mail2.rochester.rr.com (mail2-1 [24.92.226.140]) by mailout2-0.nyroc.rr.com (8.11.2/RoadRunner 1.03) with ESMTP id f6IM86W02162 for ; Wed, 18 Jul 2001 18:08:06 -0400 (EDT) Received: from prometheus ([24.93.15.103]) by mail2.rochester.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-59787U250000L250000S0V35) with SMTP id com for ; Wed, 18 Jul 2001 18:08:04 -0400 Message-ID: <001901c10fd6$7fe33820$670f5d18@lowroad.dhs.org> From: "Dave" To: Subject: Port 25 Problems Date: Wed, 18 Jul 2001 18:10:48 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0016_01C10FB4.F89615C0" 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_0016_01C10FB4.F89615C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Dear FreeBSD ubergeeks, Please help me with this, I've banged my head against the wall until my = forehead has taken on a flat bricklike appearance trying to figure out = how to fix my problem. I can't get my machine to respond to any = requests to port 25. It's not closed, I just get no response, as if the = port does not even exist. At first I had sendmail listening on 25, and = I thought the problem was there, so I installed qmail (and am much = happier with it), with the exact same results. Any request to port 25 = outside of my happy little class C is ignored. On the other hand, from = within my LAN, there is no problem whatsoever. Upon telneting into my = box on port 25, I'm greeted with "220 lowroad.dhs.org ESMTP", and mail = sent comes in fine. Here is a traceroute from an external network: traceroute -p 25 lowroad.dhs.org trying to get source for lowroad.dhs.org source should be 209.130.129.238 traceroute to lowroad.dhs.org (24.93.15.166) from 209.130.129.238 = (209.130.129.238), 30 hops max outgoing MTU =3D 1500 1 fe5-0-0.ar1.ROC.globalcenter.net (209.130.129.193) 2 ms 1 ms 1 ms 2 fe4-1-0-100M.br2.ROC.gblx.net (209.130.187.130) 2 ms 2 ms 1 ms 3 pos2-2-155M.cr2.ROC1.gblx.net (206.132.119.205) 2 ms 2 ms 2 ms 4 pos1-0-622M.cr1.WDC2.gblx.net (208.178.174.118) 20 ms 19 ms 19 ms 5 so1-1-0-622M.br1.WDC2.gblx.net (208.178.174.54) 20 ms 21 ms 20 ms 6 att.so2-1-0-622M.br1.WDC1.gblx.net (208.51.74.182) 21 ms 22 ms 23 = ms 7 gbr3-p50.wswdc.ip.att.net (12.123.9.50) 21 ms 20 ms 19 ms 8 gbr3-p80.n54ny.ip.att.net (12.122.2.165) 26 ms 26 ms 26 ms 9 gbr6-p60.n54ny.ip.att.net (12.122.5.113) 26 ms 25 ms 25 ms 10 gar2-p370.n54ny.ip.att.net (12.123.1.205) 26 ms 26 ms 26 ms 11 12.124.179.34 (12.124.179.34) 34 ms 34 ms 34 ms 12 syr-24-92-224-36.nyroc.rr.com (24.92.224.36) 41 ms 41 ms 41 ms 13 brighton-mcr2.nyroc.rr.com (24.93.0.170) 43 ms 45 ms 42 ms 14 brighton-mcr2.nyroc.rr.com (24.93.0.170) 43 ms 42 ms 43 ms 15 * roc-24-93-15-166.rochester.rr.com (24.93.15.166) 93 ms 56 ms (I want that little *SPLAT to go away) And now here is one to a Windoze machine on the same cable modem: traceroute -p 25 prometheus.lowroad.dhs.org trying to get source for prometheus.lowroad.dhs.org source should be 209.130.129.238 traceroute to prometheus.lowroad.dhs.org (24.93.15.103) from = 209.130.129.238 (209.130.129.238), 30 hops max outgoing MTU =3D 1500 1 fe5-0-0.ar1.ROC.globalcenter.net (209.130.129.193) 2 ms 1 ms 1 ms 2 fe4-1-0-100M.br2.ROC.gblx.net (209.130.187.130) 2 ms 1 ms 1 ms 3 pos2-2-155M.cr2.ROC1.gblx.net (206.132.119.205) 2 ms 2 ms 2 ms 4 pos1-0-622M.cr1.WDC2.gblx.net (208.178.174.118) 20 ms 19 ms 19 ms 5 so1-1-0-622M.br1.WDC2.gblx.net (208.178.174.54) 19 ms 19 ms 19 ms 6 att.so2-1-0-622M.br1.WDC1.gblx.net (208.51.74.182) 19 ms 20 ms 19 = ms 7 gbr3-p50.wswdc.ip.att.net (12.123.9.50) 19 ms 19 ms 19 ms 8 gbr3-p80.n54ny.ip.att.net (12.122.2.165) 26 ms 26 ms 26 ms 9 gbr5-p60.n54ny.ip.att.net (12.122.5.105) 26 ms 27 ms 26 ms 10 gar2-p360.n54ny.ip.att.net (12.123.1.201) 27 ms 29 ms 26 ms 11 12.124.179.34 (12.124.179.34) 34 ms 34 ms 34 ms 12 syr-24-92-224-36.nyroc.rr.com (24.92.224.36) 44 ms 44 ms 41 ms 13 brighton-mcr2.nyroc.rr.com (24.93.0.170) 42 ms 43 ms 43 ms 14 brighton-mcr2.nyroc.rr.com (24.93.0.170) 43 ms 43 ms 43 ms 15 roc-24-93-15-103.rochester.rr.com (24.93.15.103) 49 ms 58 ms 85 = ms I can't figure it out. My hosts.allow is wide open. My inetd.conf is = fine, as requests come through great if I request on the same subnet. = Every other port responds perfectly. I've got a very insecure little = box here, so I don't understand why it would do something like this. = Any help you can give would be greatly appreciated, I'm not looking for = a black and white solution to my problem (although it would be nice), = just the tools that I could use to track the problem down. Thanks, Dave. ------=_NextPart_000_0016_01C10FB4.F89615C0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Dear FreeBSD ubergeeks,

Please = help me with=20 this, I've banged my head against the wall until my forehead has taken = on a flat=20 bricklike appearance trying to figure out how to fix my problem.  I = can't=20 get my machine to respond to any requests to port 25.  It's not = closed, I=20 just get no response, as if the port does not even exist.  At first = I had=20 sendmail listening on 25, and I thought the problem was there, so I = installed=20 qmail (and am much happier with it), with the exact same results.  = Any=20 request to port 25 outside of my happy little class C is ignored.  = On the=20 other hand, from within my LAN, there is no problem whatsoever.  = Upon=20 telneting into my box on port 25, I'm greeted with "220 lowroad.dhs.org = ESMTP",=20 and mail sent comes in fine.  Here is a traceroute from an external = network:

traceroute -p 25 lowroad.dhs.org
trying to get source = for=20 lowroad.dhs.org
source should be 209.130.129.238
traceroute to=20 lowroad.dhs.org (24.93.15.166) from 209.130.129.238 (209.130.129.238), = 30 hops=20 max
outgoing MTU =3D 1500
 1  = fe5-0-0.ar1.ROC.globalcenter.net=20 (209.130.129.193)  2 ms  1 ms  1 ms
 2 =20 fe4-1-0-100M.br2.ROC.gblx.net (209.130.187.130)  2 ms  2 = ms  1=20 ms
 3  pos2-2-155M.cr2.ROC1.gblx.net = (206.132.119.205)  2=20 ms  2 ms  2 ms
 4  pos1-0-622M.cr1.WDC2.gblx.net=20 (208.178.174.118)  20 ms  19 ms  19 ms
 5 =20 so1-1-0-622M.br1.WDC2.gblx.net (208.178.174.54)  20 ms  21 = ms  20=20 ms
 6  att.so2-1-0-622M.br1.WDC1.gblx.net = (208.51.74.182)  21=20 ms  22 ms  23 ms
 7  gbr3-p50.wswdc.ip.att.net=20 (12.123.9.50)  21 ms  20 ms  19 ms
 8 =20 gbr3-p80.n54ny.ip.att.net (12.122.2.165)  26 ms  26 ms  = 26=20 ms
 9  gbr6-p60.n54ny.ip.att.net (12.122.5.113)  26 = ms =20 25 ms  25 ms
10  gar2-p370.n54ny.ip.att.net = (12.123.1.205)  26=20 ms  26 ms  26 ms
11  12.124.179.34 = (12.124.179.34)  34=20 ms  34 ms  34 ms
12  syr-24-92-224-36.nyroc.rr.com=20 (24.92.224.36)  41 ms  41 ms  41 ms
13 =20 brighton-mcr2.nyroc.rr.com (24.93.0.170)  43 ms  45 ms  = 42=20 ms
14  brighton-mcr2.nyroc.rr.com (24.93.0.170)  43 = ms  42=20 ms  43 ms
15  * roc-24-93-15-166.rochester.rr.com=20 (24.93.15.166)  93 ms  56 ms
(I want that little *SPLAT to = go=20 away)

And now here is one to a Windoze machine on the same cable=20 modem:

traceroute -p 25 prometheus.lowroad.dhs.org
trying to = get=20 source for prometheus.lowroad.dhs.org
source should be=20 209.130.129.238
traceroute to prometheus.lowroad.dhs.org = (24.93.15.103) from=20 209.130.129.238 (209.130.129.238), 30 hops max
outgoing MTU =3D=20 1500
 1  fe5-0-0.ar1.ROC.globalcenter.net = (209.130.129.193)  2=20 ms  1 ms  1 ms
 2  fe4-1-0-100M.br2.ROC.gblx.net=20 (209.130.187.130)  2 ms  1 ms  1 ms
 3 =20 pos2-2-155M.cr2.ROC1.gblx.net (206.132.119.205)  2 ms  2 = ms  2=20 ms
 4  pos1-0-622M.cr1.WDC2.gblx.net = (208.178.174.118)  20=20 ms  19 ms  19 ms
 5  = so1-1-0-622M.br1.WDC2.gblx.net=20 (208.178.174.54)  19 ms  19 ms  19 ms
 6 =20 att.so2-1-0-622M.br1.WDC1.gblx.net (208.51.74.182)  19 ms  20 = ms =20 19 ms
 7  gbr3-p50.wswdc.ip.att.net (12.123.9.50)  19 = ms =20 19 ms  19 ms
 8  gbr3-p80.n54ny.ip.att.net=20 (12.122.2.165)  26 ms  26 ms  26 ms
 9 =20 gbr5-p60.n54ny.ip.att.net (12.122.5.105)  26 ms  27 ms  = 26=20 ms
10  gar2-p360.n54ny.ip.att.net (12.123.1.201)  27 = ms  29=20 ms  26 ms
11  12.124.179.34 (12.124.179.34)  34 = ms  34=20 ms  34 ms
12  syr-24-92-224-36.nyroc.rr.com = (24.92.224.36)  44=20 ms  44 ms  41 ms
13  brighton-mcr2.nyroc.rr.com=20 (24.93.0.170)  42 ms  43 ms  43 ms
14 =20 brighton-mcr2.nyroc.rr.com (24.93.0.170)  43 ms  43 ms  = 43=20 ms
15  roc-24-93-15-103.rochester.rr.com (24.93.15.103)  49 = ms  58 ms  85 ms
 
I can't figure it out.  My = hosts.allow is wide=20 open.  My inetd.conf is fine, as requests come through great if I=20 request on the same subnet.  Every other port responds=20 perfectly.  I've got a very insecure little box here, so I don't = understand=20 why it would do something like this.  Any help you can give would = be=20 greatly appreciated, I'm not looking for a black and white solution to = my=20 problem (although it would be nice), just the tools that I could use to = track=20 the problem down.
 
Thanks,
Dave.
------=_NextPart_000_0016_01C10FB4.F89615C0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 15:29:23 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 2DE0837B405 for ; Wed, 18 Jul 2001 15:29:21 -0700 (PDT) (envelope-from spam@mail.org) Received: from cybertron ([213.10.151.186]) by smtp04.wxs.nl (Netscape Messaging Server 4.05) with SMTP id GGOX4V03.21B for ; Thu, 19 Jul 2001 00:29:19 +0200 Message-ID: <047f01c10fd9$1642a1f0$231fa8c0@speed.planet.nl> From: "Alex" X-Mailer: Microsoft Outlook Express 6.00.2462.0000 To: Subject: socks5 & inetd Date: Thu, 19 Jul 2001 00:28:58 +0200 X-Priority: 3 X-MSMail-Priority: 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 I like to run the socks5 package through inetd. I have added this to /etc/inetd.conf socks5 stream tcp nowait root /usr/local/bin/socks5 socks5 -i socks5 dgram udp wait root /usr/local/bin/socks5 socks5 -i Any idee's what i'm doing wrong? Running /usr/local/bin/socks5 from the promt works fine. Tanks, 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 18 15:46:24 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 1C6F537B403 for ; Wed, 18 Jul 2001 15:46:22 -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 f6IMkL313155 for ; Wed, 18 Jul 2001 15:46:21 -0700 (PDT) Message-ID: <3B5612C0.D0607382@loudcloud.com> Date: Wed, 18 Jul 2001 15:50:40 -0700 From: Sean Peck X-Mailer: Mozilla 4.74 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 Cc: freebsd-questions@FreeBSD.ORG Subject: Undefined Symbol ... References: <001901c10fd6$7fe33820$670f5d18@lowroad.dhs.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 I have compiled the mod_jk.so from the Jakarta Tomcat release, however when I attempt to use it I get the following: Cannot load /usr/local/libexec/apache/mod_jk.so into server: /usr/local/libexec/apache/mod_jk.so: Undefined symbol "pthread_mutex_unlock" No errors are occurring on compile and I have run dozens of different programs that were multithreaded on this box before. I have tried manually setting my LD_LIBRARY_PATH TO include the defaults /usr/lib /usr/local/lib yet I still get this problem..... Anyone have any ideas? Thanks in advance. Sean To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 15:57: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mbox.com.au (smtp2.mbox.com.au [203.103.80.178]) by hub.freebsd.org (Postfix) with ESMTP id D4F7337B401 for ; Wed, 18 Jul 2001 15:57:03 -0700 (PDT) (envelope-from bsd-freak@mbox.com.au) Received: from nms2.mbox.com.au (webmail.i7mail.com.au [192.168.20.4]) by smtp2.mbox.com.au (Sun Internet Mail Server sims.4.0.2000.05.17.04.13.p6) with ESMTP id <0GGO00J6LYCGNA@smtp2.mbox.com.au> for freebsd-questions@FreeBSD.ORG; Thu, 19 Jul 2001 06:55:29 +0800 (WST) Received: from mbox.com.au ([127.0.0.1]) by nms2.mbox.com.au (Netscape Messaging Server 4.15) with ESMTP id GGOYCG03.01F for ; Thu, 19 Jul 2001 06:55:28 +0800 Date: Thu, 19 Jul 2001 08:55:28 +1000 From: BSD Freak Subject: Shell scripting gurus I nedd your help To: FreeBSD Questions Message-id: <3320f53329d6.3329d63320f5@mbox.com.au> MIME-version: 1.0 X-Mailer: Netscape Webmail Content-type: text/plain; charset=us-ascii Content-language: en Content-disposition: inline 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 Here's one for the shell scripting gurus: I have a file (admins.txt) with list of the e-mail addresses of my systems administrators (on per line) eg. john@ourcompnay.com fred@ourcompany.com betty@ourcompany.com ... ...etc I need to be able to e-mail them all the same message from the command line or a shell script (with only one command) For example I might need to email them the output of an "ls -al". I could: ls -al | mail -s "Ouput of ls command" john@ourcompnay.com ls -al | mail -s "Ouput of ls command" fred@ourcompnay.com ls -al | mail -s "Ouput of ls command" betty@ourcompnay.com ... .etc.. how can I do this with only one command taking each persons e-mail address from the file admins.txt Thanks in advance... --------------------------------------------- Receive faxes 24x7, no second line necessary. http://www.mbox.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 15:59:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f133.law10.hotmail.com [64.4.15.133]) by hub.freebsd.org (Postfix) with ESMTP id 9C58837B401 for ; Wed, 18 Jul 2001 15:59:33 -0700 (PDT) (envelope-from ex279@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 18 Jul 2001 15:59:33 -0700 Received: from 205.228.172.82 by lw10fd.law10.hotmail.msn.com with HTTP; Wed, 18 Jul 2001 22:59:33 GMT X-Originating-IP: [205.228.172.82] From: "Todd Reed" To: so@server.i-clue.de Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Apache and SSL Date: Wed, 18 Jul 2001 17:59:33 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 18 Jul 2001 22:59:33.0469 (UTC) FILETIME=[4F3D48D0:01C10FDD] Sender: owner-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 originally tried installing it straight from the /stand/sysinstall. I had previously had apache setup. When I send to install the mod-ssl and the ssl, rebooted, and couldn't get it to work. I uninstalled everything and had to reinstall apache like it was. I've downloaded the latest mod-ssl, openssl, rsaref, and php. I thought I could download the files and install the options from the downloaded files. Is there a better way? Currently I have apache running like I want it to. I would like to ad SSL and PHP capabilities. Run a httpd and httpsd. Any suggestions on a good way to do this with Apache already installed? >From: Christoph Sold >Reply-To: so@server.i-clue.de >To: Todd Reed >CC: freebsd-questions@FreeBSD.ORG >Subject: Re: Apache and SSL >Date: Wed, 18 Jul 2001 19:18:07 +0200 > > > >Todd Reed schrieb: > > > > I've got my Apache web server up and running, but I'd like to also add >SSL. > > Does anyone have any good references for Apache and SSL? I've checked >out > > the modssl and openssl, but I'm having trouble getting them installed. > >Why don't you just install /usr/ports/www/apache+mod_ssl-1.3.x+2.8.x ? >It worked for me without any problems. > >HTH >-Christoph Sold _________________________________________________________________ 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 Wed Jul 18 16: 3:16 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 4B17837B406 for ; Wed, 18 Jul 2001 16:03:13 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id C1E5F55407; Wed, 18 Jul 2001 16:00:24 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id B403651610; Wed, 18 Jul 2001 16:00:24 -0700 (PDT) Date: Wed, 18 Jul 2001 16:00:24 -0700 (PDT) From: Linh Pham To: BSD Freak Cc: FreeBSD Questions Subject: Re: Shell scripting gurus I nedd your help In-Reply-To: <3320f53329d6.3329d63320f5@mbox.com.au> 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-19, BSD Freak scribbled: # Here's one for the shell scripting gurus: # # I have a file (admins.txt) with list of the e-mail addresses of my # systems administrators (on per line) eg. # # john@ourcompnay.com # fred@ourcompany.com # betty@ourcompany.com # ... # ...etc # # # I need to be able to e-mail them all the same message from the command # line or a shell script (with only one command) # # For example I might need to email them the output of an "ls -al". I # could: # # ls -al | mail -s "Ouput of ls command" john@ourcompnay.com # ls -al | mail -s "Ouput of ls command" fred@ourcompnay.com # ls -al | mail -s "Ouput of ls command" betty@ourcompnay.com # ... # .etc.. # # how can I do this with only one command taking each persons e-mail # address from the file admins.txt If you reformatted the file (or use Perl) so that each name is separated by a comma and a space, then you can do something like: ls -al | mail -s "Output" `cat admins.txt` Dunno if or how well it would work... -- 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 Wed Jul 18 16: 4:10 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 3706237B406 for ; Wed, 18 Jul 2001 16:04:04 -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 GGOYO300.ZAY for ; Wed, 18 Jul 2001 19:02:27 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6IN23654798 for freebsd-questions@freebsd.org; Wed, 18 Jul 2001 19:02:03 -0400 (EDT) (envelope-from ipt) Date: Wed, 18 Jul 2001 19:02:03 -0400 From: User & Ian Patrick Thomas To: freebsd-questions@freebsd.org Subject: /dev/lpt0 is always busy Message-ID: <20010718190203.A51074@localhost> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="uAKRQypu60I7Lcqm" 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 --uAKRQypu60I7Lcqm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline I have never attempted to get a printer working on FreeBSD until now so excuse my very limited knowledge. I just obtained an HP LaserJet IIP and after attempting the printer test as described in the handbook lptest > /dev/lpt0 I get /dev/lpt0: Device busy. After trying to change the Printer to polling mode using lptcontrol -p, I get lptcontrol: open: Device busy lpd is not running. Here is the output from dmesg. I could not find any IRQ conflicts with the one that is assigned, 7. I sent it as an attachment. Ian --uAKRQypu60I7Lcqm Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="dmesg.txt" 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 #1: Wed Jul 18 17:48:45 EDT 2001 ipt@scraemondaemon.my.domain:/usr/obj/usr/src/sys/SCRAEMON Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Pentium II Xeon/Celeron (501.14-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x665 Stepping = 5 Features=0x183fbff real memory = 134152192 (131008K bytes) avail memory = 127524864 (124536K bytes) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 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 0xc02ff000. Pentium Pro MTRR support enabled apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard IOAPIC #0 intpin 17 -> irq 2 IOAPIC #0 intpin 16 -> irq 5 IOAPIC #0 intpin 18 -> irq 9 pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 5 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 pci0: at 7.2 irq 9 Timecounter "PIIX" frequency 3579545 Hz chip1: port 0x5000-0x500f at device 7.3 on pci0 fxp0: port 0xc400-0xc43f mem 0xec000000-0xec01ffff,0xec020000-0xec020fff irq 2 at device 13.0 on pci0 fxp0: Ethernet address 00:02:b3:1a:b2:81 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pcm0: port 0xc800-0xc83f irq 5 at device 15.0 on pci0 atapci1: port 0xd400-0xd4ff,0xd000-0xd003,0xcc00-0xcc07 irq 9 at device 19.0 on pci0 ata2: at 0xcc00 on atapci1 atapci2: port 0xe000-0xe0ff,0xdc00-0xdc03,0xd800-0xd807 irq 9 at device 19.1 on pci0 ata3: at 0xd800 on atapci2 orm0: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz" ### [arg]: arg optional #Option "NoAccel" # [] #Option "SWcursor" # [] #Option "Dac6Bit" # [] #Option "Dac8Bit" # [] #Option "ForcePCIMode" # [] #Option "CPPIOMode" # [] #Option "CPusecTimeout" # #Option "AGPMode" # #Option "AGPSize" # #Option "RingSize" # #Option "BufferSize" # #Option "EnableDepthMoves" # [] #Option "UseFBDev" # [] Identifier "Card0" Driver "ati" VendorName "ATI" BoardName "Radeon QD" BusID "PCI:1:0:0" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" DefaultColorDepth 16 SubSection "Display" Depth 16 Modes "1024x768" EndSubSection EndSection Xwindows startx output... XFree86 Version 4.1.0 / X Window System (protocol Version 11, revision 0, vendor release 6510) Release Date: 2 June 2001 If the server is older than 6-12 months, or if your card is newer than the above date, look for a newer version before reporting problems. (See http://www.XFree86.Org/FAQ) Build Operating System: FreeBSD 4.3-RELEASE i386 [ELF] Module Loader present (==) Log file: "/var/log/XFree86.0.log", Time: Thu Jul 19 00:52:39 2001 (==) Using config file: "/etc/X11/XF86Config" Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) ServerLayout "XFree86 Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Card0" (**) |-->Input Device "Mouse0" (**) |-->Input Device "Keyboard0" (**) FontPath set to "//usr/X11R6/lib/X11/fonts/misc//,//usr/X11R6/lib/X11/fonts/Speedo//,//usr/X11R6/lib/X11/fonts/Type1/,//usr/X11R6/lib/X11/fonts/CID//,//usr/X11R6/lib/X11/fonts/75dpi//,/usr/X11R6/lib/X11/fonts/100dpi//" (**) RgbPath set to "/usr/X11R6/lib/X11/rgb" (**) ModulePath set to "/usr/X11R6/lib/modules" (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a (II) Module bitmap: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/libpcidata.a (II) Module pcidata: vendor="The XFree86 Project" compiled for 4.1.0, module version = 0.1.0 (II) Loading /usr/X11R6/lib/modules/libscanpci.a (II) Module scanpci: vendor="The XFree86 Project" compiled for 4.1.0, module version = 0.1.0 (II) Unloading /usr/X11R6/lib/modules/libscanpci.a (--) PCI: (0:14:0) BrookTree unknown chipset (0x036e) rev 2, Mem @ 0xdf031000/12 (--) PCI:*(1:0:0) ATI Radeon QD rev 0, Mem @ 0xd0000000/27, 0xdd000000/19, I/O @ 0x9000/8 (II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a (II) Module extmod: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/extensions/libxie.a (II) Module xie: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/extensions/libpex5.a (II) Module pex5: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/extensions/libglx.a (II) Module glx: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a (II) Module GLcore: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/extensions/libdri.a (II) Module dri: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/freebsd/libdrm.a (II) Module drm: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a (II) Module dbe: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/extensions/librecord.a (II) Module record: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.13.0 (II) Loading /usr/X11R6/lib/modules/drivers/ati_drv.o (II) Module ati: vendor="The XFree86 Project" compiled for 4.1.0, module version = 6.3.6 (II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o (II) Module mouse: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) ATI: ATI driver (version 6.3.6) for chipsets: ati, ativga (II) R128: Driver for ATI Rage 128 chipsets: ATI Rage 128 RE (PCI), ATI Rage 128 RF (AGP), ATI Rage 128 RG (AGP), ATI Rage 128 RK (PCI), ATI Rage 128 RL (AGP), ATI Rage 128 Pro PD (PCI), ATI Rage 128 Pro PF (AGP), ATI Rage 128 Mobility LE (PCI), ATI Rage 128 Mobility LF (AGP), ATI Rage 128 Mobility MF (AGP), ATI Rage 128 Mobility ML (AGP) (II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon QD (AGP), ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP), ATI Radeon VE (AGP) (--) Chipset ATI Radeon QD (AGP) found (II) Loading /usr/X11R6/lib/modules/drivers/radeon_drv.o (II) Module radeon: vendor="The XFree86 Project" compiled for 4.1.0, module version = 4.0.1 (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 (II) RADEON(0): PCI bus 1 card 0 func 0 (**) RADEON(0): Depth 16, (--) framebuffer bpp 16 (II) RADEON(0): Pixel depth = 16 bits stored in 2 bytes (16 bpp pixmaps) (==) RADEON(0): Default visual is TrueColor (==) RADEON(0): RGB weight 565 (II) RADEON(0): Using 6 bits per RGB (8 bit DAC) (II) Loading /usr/X11R6/lib/modules/libint10.a (II) Module int10: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) RADEON(0): initializing int10 (==) RADEON(0): Write-combining range (0xa0000,0x20000) was already clear (==) RADEON(0): Write-combining range (0xf0000,0x10000) (II) RADEON(0): Primary V_BIOS segment is: 0xc000 (--) RADEON(0): Chipset: "ATI Radeon QD (AGP)" (ChipID = 0x5144) (--) RADEON(0): Linear framebuffer at 0xd0000000 (--) RADEON(0): MMIO registers at 0xdd000000 (==) RADEON(0): Write-combining range (0xdd000000,0x80000) was already clear (--) RADEON(0): VideoRAM: 32768 kByte (64-bit DDR SDRAM) (II) RADEON(0): PLL parameters: rf=2700 rd=60 min=12000 max=35000; xclk=16600 (II) Loading /usr/X11R6/lib/modules/libddc.a (II) Module ddc: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/libvbe.a (II) Module vbe: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) RADEON(0): VESA BIOS detected (II) RADEON(0): VESA VBE DDC supported (II) RADEON(0): Manufacturer: SPT Model: 5110 Serial#: 1992 (II) RADEON(0): Year: 1997 Week: 46 (II) RADEON(0): EDID Version: 1.0 (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V (II) RADEON(0): Sync: Separate Composite (II) RADEON(0): Max H-Image Size [cm]: horiz.: 28 vert.: 21 (II) RADEON(0): Gamma: 2.22 (II) RADEON(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display (II) RADEON(0): redX: 0.609 redY: 0.342 greenX: 0.423 greenY: 0.588 (II) RADEON(0): blueX: 0.150 blueY: 0.064 whiteX: 0.281 whiteY: 0.311 (II) RADEON(0): Supported VESA Video Modes: (II) RADEON(0): 720x400@70Hz (II) RADEON(0): 720x400@88Hz (II) RADEON(0): 640x480@60Hz (II) RADEON(0): 640x480@67Hz (II) RADEON(0): 640x480@72Hz (II) RADEON(0): 640x480@75Hz (II) RADEON(0): 800x600@56Hz (II) RADEON(0): 800x600@60Hz (II) RADEON(0): 800x600@72Hz (II) RADEON(0): 800x600@75Hz (II) RADEON(0): 832x624@75Hz (II) RADEON(0): 1024x768@87Hz (interlaced) (II) RADEON(0): 1024x768@60Hz (II) RADEON(0): 1024x768@70Hz (II) RADEON(0): 1024x768@75Hz (II) RADEON(0): Manufacturer's mask: 40 (II) RADEON(0): Supported Future Video Modes: (II) RADEON(0): #0: hsize: 1280 vsize 960 refresh: 60 vid: 16513 (II) RADEON(0): Supported additional Video Mode: (II) RADEON(0): clock: 107.0 MHz Image Size: 260 x 195 mm (II) RADEON(0): h_active: 1280 h_sync: 1319 h_sync_end 1423 h_blank_end 1664 h_border: 0 (II) RADEON(0): v_active: 1024 v_sync: 1030 v_sync_end 1033 v_blanking: 1072 v_border: 0 (==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0) (II) RADEON(0): Monitor0: Using hsync range of 30.00-66.00 kHz (II) RADEON(0): Monitor0: Using vrefresh range of 50.00-120.00 Hz (II) RADEON(0): Clock range: 12.00 to 350.00 MHz (II) RADEON(0): Not using default mode "1024x768" (hsync out of range) (II) RADEON(0): Not using default mode "1152x864" (hsync out of range) (II) RADEON(0): Not using default mode "1280x960" (hsync out of range) (II) RADEON(0): Not using default mode "1280x1024" (hsync out of range) (II) RADEON(0): Not using default mode "1280x1024" (hsync out of range) (II) RADEON(0): Not using default mode "1600x1200" (hsync out of range) (II) RADEON(0): Not using default mode "1600x1200" (hsync out of range) (II) RADEON(0): Not using default mode "1600x1200" (hsync out of range) (II) RADEON(0): Not using default mode "1600x1200" (hsync out of range) (II) RADEON(0): Not using default mode "1600x1200" (hsync out of range) (II) RADEON(0): Not using default mode "1792x1344" (hsync out of range) (II) RADEON(0): Not using default mode "1792x1344" (hsync out of range) (II) RADEON(0): Not using default mode "1856x1392" (hsync out of range) (II) RADEON(0): Not using default mode "1856x1392" (hsync out of range) (II) RADEON(0): Not using default mode "1920x1440" (hsync out of range) (II) RADEON(0): Not using default mode "1920x1440" (hsync out of range) (II) RADEON(0): Not using default mode "1400x1050" (hsync out of range) (II) RADEON(0): Not using mode "1027x768" (no mode of this name) (II) RADEON(0): Not using mode "800X600" (no mode of this name) (--) RADEON(0): Virtual size is 1400x1050 (pitch 1408) (**) RADEON(0): Default mode "1400x1050": 122.0 MHz, 64.9 kHz, 60.0 Hz (--) RADEON(0): Display dimensions: (28, 21) cm (--) RADEON(0): DPI set to (127, 127) (II) Loading /usr/X11R6/lib/modules/libfb.a (II) Module fb: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/libramdac.a (II) Module ramdac: vendor="The XFree86 Project" compiled for 4.1.0, module version = 0.1.0 (II) Loading /usr/X11R6/lib/modules/libxaa.a (II) Module xaa: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 (II) RADEON(0): Depth moves disabled by default (==) RADEON(0): Write-combining range (0xdd000000,0x80000) was already clear (==) RADEON(0): Write-combining range (0xd0000000,0x2000000) (==) RADEON(0): Write-combining range (0xa0000,0x10000) was already clear (II) RADEON(0): [drm] drmOpen failed (EE) RADEON(0): [dri] DRIScreenInit failed. Disabling DRI. (II) RADEON(0): Memory manager initialized to (0,0) (1408,8191) (II) RADEON(0): Reserved area from (0,1050) to (1408,1052) (II) RADEON(0): Largest offscreen area available: 1408 x 7139 (==) RADEON(0): Backing store disabled (==) RADEON(0): Silken mouse enabled (II) RADEON(0): Using XFree86 Acceleration Architecture (XAA) Screen to screen bit blits Solid filled rectangles 8x8 mono pattern filled rectangles Indirect CPU to Screen color expansion Solid Lines Dashed Lines Scanline Image Writes Offscreen Pixmaps Setting up tile and stipple cache: 32 128x128 slots 32 256x256 slots 16 512x512 slots (II) RADEON(0): Acceleration enabled (II) RADEON(0): Using hardware cursor (scanline 2104) (II) RADEON(0): Largest offscreen area available: 1408 x 7137 (II) RADEON(0): Direct rendering disabled (**) Mouse0: Protocol: "auto" (**) Mouse0: Core Pointer (==) Mouse0: Buttons: 3 (II) Keyboard "Keyboard0" handled by legacy driver (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE) 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! Detected colordepth : 16. Loading configuration ...AfterStep(non-configurable/0_feel.16bpp:257):unknown function name in function specification [CirculateWindowUp]. .... Done. accepted module connection accepted module connection asetroot: loaded root background for desk# 0 (pixmap id is 8388609). asetroot: loaded root background for desk# 1 (pixmap id is 8388613). asetroot: loaded root background for desk# 2 (pixmap id is 8388617). asetroot: loaded root background for desk# 3 (pixmap id is 8388621). Wharf:invalid option BalloonFore Black Wharf:invalid option BalloonBack Grey70 Wharf:invalid option BalloonFont -adobe-helvetica-bold-o-*-*-12-*-*-*-*-*-*-* ./run-mozilla.sh ./mozilla-bin MOZILLA_FIVE_HOME=. LD_LIBRARY_PATH=.:./plugins LIBRARY_PATH=.:./components SHLIB_PATH=. LIBPATH=. ADDON_PATH=. MOZ_PROGRAM=./mozilla-bin MOZ_TOOLKIT= moz_debug=0 moz_debugger= accepted module connection accepted module connection accepted module connection Gdk-ERROR **: BadWindow (invalid Window parameter) serial 12942 error_code 3 request_code 40 minor_code 0 Using system wide defaults from '/usr/local/share/afterstep' waiting for X server to shut down (==) RADEON(0): Write-combining range (0xa0000,0x10000) was already clear Best Regards, Brian lee To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 22:37:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from otidan.hermans.ca (189.209-115-183-0.interbaun.com [209.115.183.189]) by hub.freebsd.org (Postfix) with ESMTP id CB2A237B403 for ; Wed, 18 Jul 2001 22:37:31 -0700 (PDT) (envelope-from freebsd@hermans.ca) Received: from jhermans.hermans.ca (jhermans.inside [192.168.24.100]) by otidan.hermans.ca (8.11.4/8.11.4) with ESMTP id f6J5bxg09592 for ; Wed, 18 Jul 2001 23:37:59 -0600 (MDT) (envelope-from freebsd@hermans.ca) Message-Id: <5.1.0.14.2.20010718233302.00a435d0@imap> X-Sender: freebsd@imap X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Wed, 18 Jul 2001 23:37:20 -0600 To: questions@freebsd.org From: Jamie Hermans Subject: Compaq Smart 2/E Controller Support... 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 Hi.... Reading through http://seeberg.dk/freebsd/idaraid/smart-2_controllers.html, I noticed the line: "The EISA controllers are not supported yet." My questions is are EISA controllers (the 2/E in particular) now supported? If no, can I use the old 3.x (non-newbus) driver with 4.3 ... and how? For what it's worth, 4.3-RELEASE identifies the controller on boot up, and then promptly panics :( Regards... Jamie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 22:43: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f79.law8.hotmail.com [216.33.241.79]) by hub.freebsd.org (Postfix) with ESMTP id 8B41737B401; Wed, 18 Jul 2001 22:42:58 -0700 (PDT) (envelope-from modaya72@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 18 Jul 2001 22:42:58 -0700 Received: from 203.39.46.163 by lw8fd.law8.hotmail.msn.com with HTTP; Thu, 19 Jul 2001 05:42:58 GMT X-Originating-IP: [203.39.46.163] From: "Kashyap Kumar" To: freebsd-stable@freebsd.org Cc: questions@freebsd.org Date: Thu, 19 Jul 2001 05:42:58 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 19 Jul 2001 05:42:58.0562 (UTC) FILETIME=[AA995E20:01C11015] Sender: owner-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 asked this problem earlier but nobody help me. I have this problem since i cvsuped one of my servers last week. and again i cvsuped today 19/07/2001. But the problem is there.. make buildworld stops at following location. i am using freebsd 4.3 Stable.. FreeBSD bsd.bg.com 4.3-STABLE FreeBSD 4.3-STABLE #0: Wed May 30 12:25:43 EST 2001 root@bsd.bg.com:/usr/src/sys/compile/BSG i386 here is where it stops cd /usr/src/lib/libncurses; make build-tools sh /usr/src/lib/libncurses/../../contrib/ncurses/include/MKhashsize.sh /usr/src/lib/libncurses/../../contrib/ncurses/include/Caps > hashsize.h Segmentation fault - core dumped sed curses.h -e "/@NCURSES_MAJOR@/s//5/" -e "/@NCURSES_MINOR@/s//1/" -e "/@NCURSES_PATCH@/s//20001009/" -e "/@NCURSES_CONST@/s///" -e "s/@cf_cv_builtin_bool@/1/g" -e "s/@cf_cv_cc_bool_type@/0/g" -e "s/@cf_cv_type_of_bool@/char/g" -e "s/@cf_cv_typeof_chtype@/long/g" -e "s/@cf_cv_widec_shift@/8/g" -e "s/@cf_cv_shift_limit@/32/g" -e "s/@cf_cv_1UL@/1UL/g" AWK=awk sh /usr/src/lib/libncurses/../../contrib/ncurses/include/MKncurses_def.sh /usr/src/lib/libncurses/../../contrib/ncurses/include/ncurses_defs > ncurses_def.h cc -o make_hash -O -pipe -I. -I/usr/src/lib/libncurses -I/usr/src/lib/libncurses/../../contrib/ncurses/ncurses -I/usr/src/lib/libncurses/../../contrib/ncurses/include -Wall -DFREEBSD_NATIVE -DNDEBUG -DHAVE_CONFIG_H -DTERMIOS -DMAIN_PROGRAM /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c: In function `_nc_make_hash_table': /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:78: syntax error before `;' /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:78: syntax error before `)' /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:75: warning: `hashvalue' might be used uninitialized in this function /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c: At top level: /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:90: syntax error before `}' /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:54: warning: `hash_function' declared `static' but never defined /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:73: warning: `_nc_make_hash_table' defined but not used *** Error code 1 Stop in /usr/src/lib/libncurses. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 22:45:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail13.sdc1.sfba.home.com (femail13.sdc1.sfba.home.com [24.0.95.140]) by hub.freebsd.org (Postfix) with ESMTP id 6334537B403 for ; Wed, 18 Jul 2001 22:45:04 -0700 (PDT) (envelope-from btdang@home.com) Received: from home.com ([24.248.85.196]) by femail13.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010719054504.BCVV20529.femail13.sdc1.sfba.home.com@home.com>; Wed, 18 Jul 2001 22:45:04 -0700 Message-ID: <3B567529.3850835B@home.com> Date: Wed, 18 Jul 2001 22:50:33 -0700 From: Bruce Dang Organization: Boys & Girls Clubs X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Drew Tomlinson Cc: "FreeBSD Questions (E-mail)" Subject: Re: Help Installing Korn Shell from Ports? References: <5CD46247635BD511B6B100A0CC3F023925A000@ldcmsx01.lc.ca.gov> 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 Drew, the ksh port is outdated. The file requested is no longer hosted on ATT 's archive. Download a newer snapshot, from the webpage . Bruce Dang www.tbug.org Drew Tomlinson wrote: > > I tried to install the korn shell from ports but the file was not found: > > blacklamb# pwd > /usr/ports/shells/ksh93 > blacklamb# make > >> INIT.2001-01-01.0000.tgz doesn't seem to exist in /usr/ports/distfiles/. > >> Attempting to fetch from http://www.research.att.com/~gsf/download/tgz/. > fetch: INIT.2001-01-01.0000.tgz: Not Found > >> Attempting to fetch from > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. > fetch: INIT.2001-01-01.0000.tgz: File unavailable (e.g., file not found, no > acce > ss) > >> Couldn't fetch it - please try to retrieve this > >> port manually into /usr/ports/distfiles/ and try again. > > I also tried from /stand/sysinstall but it's not listed in packages. Does > anyone have any idea why I'm not finding it? > > Thanks, > > Drew > > 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 18 23:26:57 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 4319E37B407 for ; Wed, 18 Jul 2001 23:26:52 -0700 (PDT) (envelope-from irwanhadi@phxby.com) Received: by irwanhadi.dorms.usu.edu (Postfix, from userid 501) id 38472B42C6; Thu, 19 Jul 2001 00:30:12 -0600 (MDT) Date: Thu, 19 Jul 2001 00:30:12 -0600 From: Irwan Hadi To: freebsd-questions@freebsd.org Subject: Ground Station Message-ID: <20010719003012.A7876@phxby.com> 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 Our university's electrical engineering department is designing a mini satellite to be launched. For this satellite of course we need a ground station to control the satellite. In the original blue plan, the ground station is designed to use a SUN Sparc Station with SunOS. But of course it is very risky to use an old Sparc Station to be the ground station of the satellite, since if the terminal crash, we can say bye bye to the thousands of dollars satellite. As right now, the ground station hasn't been built, is it possible if we use FreeBSD in this project to be the ground station O/S ? because it has some similarities with SunOS (the same UFS filesystem for example) ? How about the reability of FreeBSD in the super critical environment like this as the O/S mustn't crash or hang at all ? Does anyone has any suggestion in building the ground station then (hardware, security, networking) ? Thank you in advance for your reply. I really appreciate that. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 23:29: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from omsk.mushinsky.net (omsk.mushinsky.net [66.114.66.201]) by hub.freebsd.org (Postfix) with ESMTP id 7040A37B403 for ; Wed, 18 Jul 2001 23:28:53 -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 f6J6SE102129 for ; Thu, 19 Jul 2001 02:28:14 -0400 (EDT) (envelope-from imush@mail.ru) Content-Type: text/plain; charset="windows-1251" From: Isaac Mushinsky To: questions@FreeBSD.ORG Subject: Re: a fast windows manager? Date: Thu, 19 Jul 2001 02:28:14 -0400 X-Mailer: KMail [version 1.2] References: <15190.10112.605392.523694@guru.mired.org> In-Reply-To: <15190.10112.605392.523694@guru.mired.org> MIME-Version: 1.0 Message-Id: <01071902281400.00303@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 personally prefer IceWM. Very fast and highly configurable. Links in yo= ur=20 KDE menus too. On Wednesday 18 July 2001 20:19, Mike Meyer wrote: > > On Tue, Jul 17, 2001 at 09:10:50PM -0700, Bsd Newbie wrote: > > > I have an inexpensive bookpc that uses the SiS630 > > > chipset. It's pulling 16mb from the system ram... > > > > > > The problem with this chipset is it's incredibly slow. > > > > > > I've tried KDE and Gnome which crawl along. Is there > > > a windows manager that looks more like CDE and is much > > > faster than these two? > > I've fixed the top-posting. Please don't do that here. > > David Leimbach types: > > Try WindowMaker or BlackBox. Lite and fast! :) > > > > WindowMaker is involved in the GNUStep collection which seems to be o= f > > growing popularity as it has libraries that can be coded in objective= C.=20 > > This is also similar to the NextStep stuff that works on Mac OSX! > > > > BlackBox is just plain fast :). But if you are one of those people wh= o > > hate C++ and everything that comes out of it don't use it... BlackBox= is > > 100% C++ code. > > I haven't added my favorite - lwm - because it isn't much like CDE. If > you're interested in working on a window manager and don't want C++, > you might give it a look. It's a minimalist window manager - one > button in the window decorations and one menu are all the controls it > provides - but the code is 100% C, and all very clean. > > =09 -- > Mike Meyer =09=09=09http://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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 23:38:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from omsk.mushinsky.net (omsk.mushinsky.net [66.114.66.201]) by hub.freebsd.org (Postfix) with ESMTP id 2C3A537B406 for ; Wed, 18 Jul 2001 23:38:06 -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 f6J6ac102153; Thu, 19 Jul 2001 02:36:38 -0400 (EDT) (envelope-from imush@mail.ru) Content-Type: text/plain; charset="windows-1251" From: Isaac Mushinsky To: elina , "freebsd-questions" Subject: Re: BSD for PentiumII Date: Thu, 19 Jul 2001 02:36:38 -0400 X-Mailer: KMail [version 1.2] References: <3B563377.179CA889@cloudfactory.org> In-Reply-To: <3B563377.179CA889@cloudfactory.org> MIME-Version: 1.0 Message-Id: <01071902363801.00303@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 Wednesday 18 July 2001 21:10, you wrote: > I downloaded freeBSD and burned the installation files onto cd, but my > computer with not recognize it as a bootable CD? What do I do? Do you mean=20 1. your BIOS cannot boot from CD at all? or perhaps=20 2.you did not burn the image correctly?=20 In case (1) make boot floppies (it is explained in the handbook where to = get=20 the images to make floppies). In case (2) make sure you actually create a CD from image and not just co= py=20 it as a file. Also make sure it is burned to iso9660 format and not the=20 Microsoft joliet something. > > I am using an old computer, I somehow acquired. It's has a PentiumII > 180mhz processor, 2gbhd and 128mb of ram and I can't remember the > motherboard. Anyway, I want to put BSD on it, just to get familiar with > a unix-based os. Good luck. > > thanks, > elina > > > 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 18 23:42:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.riic.uni-linz.ac.at (mail.riic.uni-linz.ac.at [140.78.161.130]) by hub.freebsd.org (Postfix) with ESMTP id 67D9137B405 for ; Wed, 18 Jul 2001 23:42:14 -0700 (PDT) (envelope-from hueber@riic.at) Received: from hawkings.riic.uni-linz.ac.at (hawkings.riic.uni-linz.ac.at [140.78.161.239]) by mail.riic.uni-linz.ac.at (8.9.3/8.9.3) with ESMTP id IAA14357; Thu, 19 Jul 2001 08:35:10 +0200 Message-Id: <5.1.0.14.0.20010719083509.04c50210@postoffice.riic.at> X-Sender: hueber@postoffice.riic.at X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Thu, 19 Jul 2001 08:35:49 +0200 To: "Mark Hughes" , From: Gernot Hueber Subject: Re: Closing PPP connection opened using ppp -auto In-Reply-To: <045b01c10fc4$7813ba50$0200a8c0@mark2> 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 Have a look at pppctl. In the man pages there are sample scripts, too Gernot At 20:57 18.07.01 +0100, Mark Hughes wrote: >If I've opened a PPP connection using the line... > >ppp -auto adsl > >(where adsl is the profile name) > >and the line has come up with usage, as is expected, how do I force a >disconnect? The only way I can find to do it at the moment is by running >killall ppp as root, which seems a little excessive and heavy handed, and >also messes up the driver for my adsl modem - then requiring a reboot to >reconnnect (as far as I can tell). > >How do I force a disconnect? > >Thanks, >Mark > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message Dipl.-Ing. Gernot Hueber Institut f=FCr Integrierte Schaltungen Freist=E4dter Strasse 315/2 A-4040 Linz Tel: +43 732 2468-7118, Fax: -7126 E-mail: hueber@riic.at To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jul 18 23:43:53 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 678E937B401 for ; Wed, 18 Jul 2001 23:43:50 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 26955 invoked by uid 100); 19 Jul 2001 06:43:49 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15190.33189.436956.629617@guru.mired.org> Date: Thu, 19 Jul 2001 01:43:49 -0500 To: Gary Kline Cc: questions@freebsd.org Subject: Re: emachine's cheap sound config... In-Reply-To: <53908674@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 Gary Kline types: > A year ago I bought a cheap emachine-500ix box to try > out SuSE Linux on. To my surprise, everything auto- > installed. The box has a cheap sound chip, but it's > okay for sound effects. > > What FBSD sound config should I add to the KERNEL > config file? Also, what X driver will get X11 up? X should be the same as for Linux; they both use XFree86. Sound - try pcm with and without the sbc bridge driver. > This box has a solid Maxtor drive and I'm planning to > use it as my gateway DNS server; behind a firewall or > firewalls, everything else.... Why do you need - or even want - X or sound on such a box? 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 19 0:14: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tao.thought.org (sense-kline-248.oz.net [216.39.168.248]) by hub.freebsd.org (Postfix) with ESMTP id 2A79537B403 for ; Thu, 19 Jul 2001 00:13:58 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.11.3/8.11.0) id f6J7DpU42682; Thu, 19 Jul 2001 00:13:51 -0700 (PDT) (envelope-from kline) Date: Thu, 19 Jul 2001 00:13:51 -0700 From: Gary Kline To: Mike Meyer Cc: Gary Kline , questions@FreeBSD.ORG Subject: Re: emachine's cheap sound config... Message-ID: <20010719001351.A42638@tao.thought.org> References: <53908674@toto.iv> <15190.33189.436956.629617@guru.mired.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <15190.33189.436956.629617@guru.mired.org>; from mwm@mired.org on Thu, Jul 19, 2001 at 01:43:49AM -0500 X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 15 years of service to the Unix community Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jul 19, 2001 at 01:43:49AM -0500, Mike Meyer wrote: > Gary Kline types: > > A year ago I bought a cheap emachine-500ix box to try > > out SuSE Linux on. To my surprise, everything auto- > > installed. The box has a cheap sound chip, but it's > > okay for sound effects. > > > > What FBSD sound config should I add to the KERNEL > > config file? Also, what X driver will get X11 up? > > X should be the same as for Linux; they both use XFree86. Sound - try > pcm with and without the sbc bridge driver. > > > This box has a solid Maxtor drive and I'm planning to > > use it as my gateway DNS server; behind a firewall or > > firewalls, everything else.... > > Why do you need - or even want - X or sound on such a box? > Sound, don't need, obviously; just wondering. This box, the next to be replaced, is antique enough to not be able to support sound.... and there are NPR broadcasts I'd like to listen to. X is another matter:: true, I'll rarely touch my DNS server once it's set, but it'd shore be nice to use two or more xterms and be able to cut and paste while getting things tuned. BTW, I checked the mail archives:: the ATI chip seems to need the Mach64 driver.... gary -- Gary D. Kline kline@thought.org www.thought.org Public service Unix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 0:20:59 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 E856F37B405; Thu, 19 Jul 2001 00:20:45 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id CFD526ACC3; Thu, 19 Jul 2001 16:50:39 +0930 (CST) Date: Thu, 19 Jul 2001 16:50:39 +0930 From: Greg Lehey To: Lucian Cosinschi Cc: FreeBSD advocacy list Subject: Re: Exposure Message-ID: <20010719165039.F24616@wantadilla.lemis.com> References: <27260074.995510764486.JavaMail.imail@swirly> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <27260074.995510764486.JavaMail.imail@swirly>; from lucian_cosinschi@excite.com on Wed, Jul 18, 2001 at 07:46:04PM -0700 Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wednesday, 18 July 2001 at 19:46:04 -0700, Lucian Cosinschi wrote: > > I'm from Romania and I'm almost a newbie to freeBSD but I can realize > that it is better than Linux. But I don't see almost any exposure as it > should. I'm studying now Public Relations and I want to help you with that. > Wouldn't it be a pity to lose in front of others that are not as good as you > all are. I think that the open source concept is about having what is right. > > So, I think that a way to get a better exposure is to introduce some on > line or/and off line tests followed by a kind of certification that will > make BSD even more atractive for someone who's looking for a job. And I > think there are a lot of people. I would like to help (for Romania at least) > in creating a FreeBSD Center (or any other flavoure of BSD) or in drawing a > public relations plan for you. > I have many more ideas of what to do but I need your help in many ways. Well, those are the aims of the FreeBSD advocacy people, so I'm following up there. There's quite a bit of advocacy going on already; the best I can recommend is for you to publish an article in a magazine or newspaper. If you don't have anything suitable, consider what's published in Daemon News and ask the author if you can translate it. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 0:33:38 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 4FD1D37B403 for ; Thu, 19 Jul 2001 00:33:35 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 28644 invoked by uid 100); 19 Jul 2001 07:33:34 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15190.36174.480460.404173@guru.mired.org> Date: Thu, 19 Jul 2001 02:33:34 -0500 To: Gary Kline Cc: questions@FreeBSD.ORG Subject: Re: emachine's cheap sound config... In-Reply-To: <20010719001351.A42638@tao.thought.org> References: <53908674@toto.iv> <15190.33189.436956.629617@guru.mired.org> <20010719001351.A42638@tao.thought.org> 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 Gary Kline types: > On Thu, Jul 19, 2001 at 01:43:49AM -0500, Mike Meyer wrote: > > Gary Kline types: > > > A year ago I bought a cheap emachine-500ix box to try > > > out SuSE Linux on. To my surprise, everything auto- > > > installed. The box has a cheap sound chip, but it's > > > okay for sound effects. > > > > > > What FBSD sound config should I add to the KERNEL > > > config file? Also, what X driver will get X11 up? > > > > X should be the same as for Linux; they both use XFree86. Sound - try > > pcm with and without the sbc bridge driver. > > > > > This box has a solid Maxtor drive and I'm planning to > > > use it as my gateway DNS server; behind a firewall or > > > firewalls, everything else.... > > > > Why do you need - or even want - X or sound on such a box? > X is another matter:: true, I'll rarely touch my DNS > server once it's set, but it'd shore be nice to use > two or more xterms and be able to cut and paste while > getting things tuned. You don't need an X driver for that. You don't even need the X client software for that. Put it on the network, and just log in from multiple xterms on a workstation. Or multiple puttys, if that's the client you're using. If you want to do it in single user mode, you'll need to isntall X, but you won't need to get the server working. Once you're in single user mode with the network configured, start an xterm displaying on a remote X server. You can then start more xterms, etc. from there. Having X installed without bothering to configure a working driver means you can run other clients - gkrellm, for instance - on it to display on your workstation as well. 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 19 0:37: 8 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 3E6AD37B401 for ; Thu, 19 Jul 2001 00:37:05 -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.3/8.11.3) with SMTP id f6J7b0A10662; Thu, 19 Jul 2001 08:37:00 +0100 (BST) (envelope-from neil@darlow.co.uk) From: Neil Darlow Date: Thu, 19 Jul 2001 07:37:00 GMT Message-ID: <20010719.7370000@ideal.darlow.co.uk> Subject: Re: Source Update is incomplete? To: User & Ian Patrick Thomas Cc: freebsd-questions@freebsd.org In-Reply-To: <20010718200516.H51074@localhost> References: <20010718.18511400@ideal.darlow.co.uk> <20010718200516.H51074@localhost> 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 Ian and others, Thank you for your suggestions. Re. the compat libs, there are COMPAT(1X|20|21|22|3X|4X) definitions in /etc/defaults/make.conf. I haven't come across any good documentation on these so which do I need to enable. I'm guessing that these are for compatibility with older versions of FreeBSD and if I'm not running anything from 3.x, and earlier, should I just enable COMPAT4X? I understand the primary purpose of the FreeBSD source tree is to create= releases but it would be nice to have documentation on the files that are obsoleted by this version (so that they may be more easily deleted).= 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/19/01, 1:05:16 AM, User & Ian Patrick Thomas wrote: > I'm going to guess here, but there is a section in /etc/make.conf that= > asks if you wnat to install compat libs for 4x. Maybe this needs to b= e > uncommented? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 0:57:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nwcst317.netaddress.usa.net (nwcst31g.netaddress.usa.net [204.68.23.62]) by hub.freebsd.org (Postfix) with SMTP id 48F6837B405 for ; Thu, 19 Jul 2001 00:57:26 -0700 (PDT) (envelope-from spl1t_h0r1z0n@usa.net) Received: (qmail 19309 invoked by uid 60001); 19 Jul 2001 07:57:19 -0000 Message-ID: <20010719075719.19308.qmail@nwcst317.netaddress.usa.net> Received: from 204.68.23.62 by nwcst31g for [165.212.15.106] via web-mailer(34FM.0700.18.03B) on Thu Jul 19 07:57:18 GMT 2001 Date: 19 Jul 2001 01:57:18 MDT From: J S To: questions@freebsd.org Subject: re: spammers X-Mailer: USANET web-mailer (34FM.0700.18.03B) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="----NetAddressPart-00--=_sH6s4560S1g5ac812ce" Sender: owner-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. ------NetAddressPart-00--=_sH6s4560S1g5ac812ce Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable sometimes it does work to email the abuse teams. = Joshua Smith, CCNA Data Center Technian USA.NET joshua.smith@corp.usa.net "Walk with me through the Universe, And along the way see how all of us are Connected. Feast the eyes of your Soul, On the Love that abounds. In all places at once, seemingly endless, Like your own existence." - Stephen Hawking - ------NetAddressPart-00--=_sH6s4560S1g5ac812ce Content-Type: message/rfc822; name="Forwarded Message" Content-Transfer-Encoding: 7bit Content-Disposition: inline Received: from nwcst038 [127.0.0.1] by nmcst150 via mtad (34FM.0700.19.01A) with ESMTP id 672FgqkZY0937M21; Tue, 17 Jul 2001 10:25:50 GMT Received: from ogma.tuatha.org [62.17.27.130] by nwcst038 via mtad (34FM.0700.19.01A); Tue, 17 Jul 2001 10:25:50 GMT Received: from there (localhost [127.0.0.1]) by ogma.tuatha.org (Postfix) with SMTP id 18C8E19408 for ; Tue, 17 Jul 2001 11:25:48 +0100 (IST) Content-Type: text/plain; charset="iso-8859-15" From: Colm Buckley Organization: NewWorld Commerce To: J S Subject: Re: Fwd: [Save Up To 70% On Music For Your Business!] Date: Tue, 17 Jul 2001 11:25:47 +0100 X-Mailer: KMail [version 1.2.9] References: <20010717063221.6951.qmail@nwcst294> In-Reply-To: <20010717063221.6951.qmail@nwcst294> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20010717102548.18C8E19408@ogma.tuatha.org> Please accept my apologies; this unsolicited email was sent by a customer of ours in explicit violation of our terms of service, which prohibit mail being sent except to consenting customers where a previous business relationship exists. We have blocked the account in question, and will be taking further action against them. Colm -- Colm Buckley : Systems Architect @ NewWorld Commerce Business: +353 1 4334334 / colm@nwcgroup.com / http://www.nwcgroup.com/ Personal: +353 87 2469146 / colm@tuatha.org / http://www.tuatha.org/~colm/ To know recursion, you must first know recursion. ------NetAddressPart-00--=_sH6s4560S1g5ac812ce-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 1: 6: 2 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 6805237B401 for ; Thu, 19 Jul 2001 01:05:58 -0700 (PDT) (envelope-from ADyas@twowaytv.com) Received: by exchange.twowaytv.co.uk with Internet Mail Service (5.5.2653.19) id <36F0R64N>; Thu, 19 Jul 2001 09:02:23 +0100 Message-ID: <911D8F660DF6D411B61F00500462BA01CC7C06@exchange.twowaytv.co.uk> From: Alex Dyas To: BSD Freak , FreeBSD Questions Subject: RE: Shell scripting gurus I nedd your help Date: Thu, 19 Jul 2001 09:02:22 +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 $ for address in `cat admins.txt`;do ls -al | mail -s "Ouput of ls command" $address;done alex.. > Here's one for the shell scripting gurus: > > I have a file (admins.txt) with list of the e-mail addresses of my > systems administrators (on per line) eg. > > john@ourcompnay.com > fred@ourcompany.com > betty@ourcompany.com > ... > ...etc > > > I need to be able to e-mail them all the same message from the command > line or a shell script (with only one command) > > For example I might need to email them the output of an "ls -al". I > could: > > ls -al | mail -s "Ouput of ls command" john@ourcompnay.com > ls -al | mail -s "Ouput of ls command" fred@ourcompnay.com > ls -al | mail -s "Ouput of ls command" betty@ourcompnay.com > ... > .etc.. > > how can I do this with only one command taking each persons e-mail > address from the file admins.txt > > > Thanks in advance... > > --------------------------------------------- > Receive faxes 24x7, no second line necessary. > http://www.mbox.com.au/ > > 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 19 1:24: 5 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 613BF37B403 for ; Thu, 19 Jul 2001 01:24:01 -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 f6J8Nn822661; Thu, 19 Jul 2001 01:23:49 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Irwan Hadi" , Subject: RE: Ground Station Date: Thu, 19 Jul 2001 01:23:48 -0700 Message-ID: <002f01c1102c$22a92380$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: <20010719003012.A7876@phxby.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 There's a 6th sense that you have to develop that you need to have in order to cross the line from a server that has 98% reliability to one that has 99.99999999999% reliability. I've built several servers using both FreeBSD and Solaris that I've felt crossed that line, and that I would be willing to trust to breath for me during an operation, or something like that. But, I've built many more that I've always had that little flicker of mistrust about. Frankly, I belive that it would be quite possible to build a ground station running on an old Sun Sparc that would have more reliability than a ground station running FreeBSD on new hardware. The capability of creating a highly reliable server has less to do with the platform and OS used and more to do with the skill and experience of the builder, and how much testing they put it through. My advice if you want to build a highly reliable ground station is that it needs to be completed and online at least 6 months, preferably a year, before your satellite is launched. It also needs many hundreds hours of simulation and testing to prove it out. Perhaps you should concentrate on not only building a ground station but building a second server that's principle goal is to simulate the sattellite that the ground station is supposed to be controlling. Then plug them in to each other and program the fake satellite server to throw everything it's got to the ground station to try to blow it up. 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 Irwan Hadi >Sent: Wednesday, July 18, 2001 11:30 PM >To: freebsd-questions@FreeBSD.ORG >Subject: Ground Station > > >Our university's electrical engineering department is designing a mini >satellite to be launched. For this satellite of course we need a ground >station to control the satellite. In the original blue plan, the >ground station is >designed to use a SUN Sparc Station with SunOS. But of course it is >very risky >to use an old Sparc Station to be the ground station of the satellite, since >if the terminal crash, we can say bye bye to the thousands of dollars >satellite. > >As right now, the ground station hasn't been built, is it possible if we use >FreeBSD in this project to be the ground station O/S ? because it has some >similarities with SunOS (the same UFS filesystem for example) ? How about the >reability of FreeBSD in the super critical environment like this as the O/S >mustn't crash or hang at all ? Does anyone has any suggestion in building the >ground station then (hardware, security, networking) ? > >Thank you in advance for your reply. I really appreciate that. > > >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 19 1:37:34 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 ADC4D37B401 for ; Thu, 19 Jul 2001 01:37:30 -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 KAA26422; Thu, 19 Jul 2001 10:45:20 +0200 Message-ID: <3B569CCD.A81C192@i-clue.de> Date: Thu, 19 Jul 2001 10:39:41 +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: JakeCatfox@aol.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: NullModem Networking 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 JakeCatfox@aol.com schrieb: > > Hi, I want to set up a Null-Modem network between my desktop and laptop, both > running FreeBSD 4.3-RELEASE. How would I do this? I want to be able to share > files between the two, and run a server application on one, and have the > other machine be able to connect as a client [using an IP address]. The > servers I'd like to try are games [quake 2, quake 3, UT] and Telnet. SLIP will do that. If you want faster connection rates, I suggest PLIP instead -- connecting both printer ports. Just my EUR.02 -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 1:53:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from northpole.globalvc.co.uk (northpole.globalvc.co.uk [193.118.4.3]) by hub.freebsd.org (Postfix) with ESMTP id A492837B403 for ; Thu, 19 Jul 2001 01:53:39 -0700 (PDT) (envelope-from robc@globalvc.co.uk) Received: from rabat (rabat.globalvc.co.uk [193.82.151.39]) by northpole.globalvc.co.uk with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id 3YSSVQJJ; Thu, 19 Jul 2001 09:53:34 +0100 Received: by localhost with Microsoft MAPI; Thu, 19 Jul 2001 09:53:34 +0100 Message-ID: <01C11038.AC75D160.robc@globalvc.co.uk> From: Rob Carmichael To: "'questions@freebsd.org'" Subject: Cannot change a passwd ... Date: Thu, 19 Jul 2001 09:53:32 +0100 Organization: Global VideoCom X-Mailer: Microsoft Internet E-mail/MAPI - 8.0.0.4211 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 wonder if anyone can help me. When i try (as root) to change a password for one of the accounts with the 'passwd' utility i get the following error message immdiately after i have confirmed the password: /usr/libexec/ld-elf.so.1: /usr/lib/libcrypt.so.2: Undefined symbol "MD5Init" Oh yeah, the version is 4.3, which was last rebuilt to 'stable' on 11/07/01. thanks for any help, rob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 1:58:25 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 7FA3F37B406 for ; Thu, 19 Jul 2001 01:58: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 LAA26620; Thu, 19 Jul 2001 11:05:52 +0200 Message-ID: <3B56A19C.5F8693D2@i-clue.de> Date: Thu, 19 Jul 2001 11:00:12 +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: j mckitrick Cc: freebsd-questions@FreeBSD.ORG Subject: Re: cvsup from dhcp client References: <20010718183741.B75011@dogma.freebsd-uk.eu.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 j mckitrick schrieb: > > I'm running dhclient for the first time after running a ppp connection most > of the time. When I try to connect to any of the cvsup sites, I am told > 'connection refused.' Any idea why? Reverse lookup for your IP failed. > I have a firewall for ppp, but I haven't started using one for dhclient. My > network is apparently behind a firewall already, here at the office. What > other info should I provide? CVSup builds two connections: one from the client to the server to send the version information of all the files you got to the server, another one from the server to the client to send all the edits and changes to your box. > I have ed0 and bpf in my kernel, and I used 'dhclient ed0' to connect. > Everything else works fine: ssh, ftp, and netscape. You have to allow incoming connections for the CVSup data port. See it's manpage. Additional literature may be found at Mr. Polstra's website. (www.polstra.com, IIRC.) 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 Thu Jul 19 2: 3:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from issv0170.isis.de (issv0170.isis.de [195.158.131.222]) by hub.freebsd.org (Postfix) with SMTP id 6349337B405 for ; Thu, 19 Jul 2001 02:03:17 -0700 (PDT) (envelope-from jerfa@yahoo.com) Received: (qmail 8031 invoked by uid 1010); 19 Jul 2001 09:03:15 -0000 Received: from unknown (HELO diana.ww) ([195.158.135.76]) (envelope-sender ) by 0 (qmail-ldap-1.03) with SMTP for ; 19 Jul 2001 09:03:15 -0000 Received: from localhost (127.0.0.1) by diana.ww (172.25.25.7) with smtp ; Thu, 19 Jul 2001 11:03:20 +0200 X-Posting-Agent: Hamster/1.3.22.0 Posted-and-Mailed: no Subject: Re: Help Installing Korn Shell from Ports? From: jerfa@yahoo.com (Johann Frisch) References: <5CD46247635BD511B6B100A0CC3F023925A000@ldcmsx01.lc.ca.gov> User-Agent: Xnews/4.05.11 To: freebsd-questions@freebsd.org Message-Id: <20010719090317.6349337B405@hub.freebsd.org> Date: Thu, 19 Jul 2001 02:03:17 -0700 (PDT) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 19 Jul 2001, you wrote in internal.freebsd.questions: > I also tried from /stand/sysinstall but it's not listed in > packages. Does anyone have any idea why I'm not finding it? Is that a different version of ksh? I use pdksh-5.2.14 which I found on the 4.3-CD. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 2:17:34 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 EFEB437B405 for ; Thu, 19 Jul 2001 02:17:29 -0700 (PDT) (envelope-from ertr1013@student.uu.se) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by mailb.telia.com (8.9.3/8.9.3) with ESMTP id LAA08997 for ; Thu, 19 Jul 2001 11:17:28 +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 LAA17904 for ; Thu, 19 Jul 2001 11:17:22 +0200 (CEST) Received: (qmail 749 invoked by uid 1001); 19 Jul 2001 09:16:40 -0000 Date: Thu, 19 Jul 2001 11:16:40 +0200 From: Erik Trulsson To: Johann Frisch Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Help Installing Korn Shell from Ports? Message-ID: <20010719111640.A733@student.uu.se> Mail-Followup-To: Johann Frisch , freebsd-questions@FreeBSD.ORG References: <5CD46247635BD511B6B100A0CC3F023925A000@ldcmsx01.lc.ca.gov> <20010719090317.6349337B405@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010719090317.6349337B405@hub.freebsd.org> 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 Thu, Jul 19, 2001 at 02:03:17AM -0700, Johann Frisch wrote: > On 19 Jul 2001, you wrote in internal.freebsd.questions: > > I also tried from /stand/sysinstall but it's not listed in > > packages. Does anyone have any idea why I'm not finding it? ksh93 is not in the packages because the license is so incomprehensible that nobody is sure if it is allowed to put the binaries on the CD-ROM. > Is that a different version of ksh? I use pdksh-5.2.14 which I found on > the 4.3-CD. Yes, ksh93 and pdksh are different versions. ksh93 is the "real" thing, while pdksh is basically an attempt to write a free shell that is compatible to ksh. It is only recently that the source code to ksh93 has been released. -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 3:31:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from APastourelles-102-1-2-26.abo.wanadoo.fr (APastourelles-102-1-2-26.abo.wanadoo.fr [217.128.208.26]) by hub.freebsd.org (Postfix) with ESMTP id 7674737B435 for ; Thu, 19 Jul 2001 03:31:11 -0700 (PDT) (envelope-from olive@deep-ocean.net) Received: by APastourelles-102-1-2-26.abo.wanadoo.fr (Postfix, from userid 1001) id 51EFA2561E; Thu, 19 Jul 2001 12:31:10 +0200 (CEST) Date: Thu, 19 Jul 2001 12:31:10 +0200 From: Olivier Cortes To: BSD Freak Cc: freebsd-questions@freebsd.org Subject: Re: Shell scripting gurus I nedd your help Message-ID: <20010719123110.C2150@APastourelles-102-1-2-26.abo.wa> Mail-Followup-To: Olivier Cortes , BSD Freak , freebsd-questions@freebsd.org References: <3320f53329d6.3329d63320f5@mbox.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3320f53329d6.3329d63320f5@mbox.com.au>; from bsd-freak@mbox.com.au on Thu, Jul 19, 2001 at 08:55:28AM +1000 X-Operating-System: FreeBSD 4.3-RC i386 up 7:36 Organization: Deep-Ocean Network X-URL: http://www.deep-ocean.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 ----------------------------------- #!/bin/blash COMMAND='ls -la' MSGFILE="my_temp_fic_1012380293476234" ADDRFILE="admins.txt" $COMMAND > $MSGFILE 2>&1 while read ADDR do mail -s "$COMMAND" $ADDR < $MSGFILE done < $ADDRFILE ---------------------------------- not perfect but it works (i didn't test it). --- Olivier Cortes free software admin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 4:19:25 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 20F6D37B408 for ; Thu, 19 Jul 2001 04:19:21 -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 f6JBP5F30399 for ; Thu, 19 Jul 2001 17:25:11 +0600 (YEKST) Date: Thu, 19 Jul 2001 17:25:05 +0600 (YEKST) From: Victor M To: questions@freebsd.org Subject: 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 I can't add packages to my FreeBSD 4.1.1 from the primary ftp.FreeBSD site. /stand/sysinstall crashes with the message: Segmentation fault. What happened? There were no problems with this earlier. I had to install all I needed from the France ftp.freebsd site. 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 19 4:34:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc25.worldnet.att.net (mtiwmhc25.worldnet.att.net [204.127.131.50]) by hub.freebsd.org (Postfix) with ESMTP id B004A37B407 for ; Thu, 19 Jul 2001 04:34:29 -0700 (PDT) (envelope-from parv@worldnet.att.net) Received: from worldnet.att.net ([32.100.199.53]) by mtiwmhc25.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010719113428.UOSP5127.mtiwmhc25.worldnet.att.net@worldnet.att.net>; Thu, 19 Jul 2001 11:34:28 +0000 Received: by worldnet.att.net (Postfix, from userid 1001) id 09EA550BC5; Thu, 19 Jul 2001 07:38:22 -0400 (EDT) Date: Thu, 19 Jul 2001 07:38:21 -0400 From: parv To: Gernot Hueber Cc: Mark Hughes , freebsd-questions@FreeBSD.ORG Subject: Re: Closing PPP connection opened using ppp -auto Message-ID: <20010719073821.A73037@moo.holy.cow> Mail-Followup-To: Gernot Hueber , Mark Hughes , freebsd-questions@FreeBSD.ORG References: <045b01c10fc4$7813ba50$0200a8c0@mark2> <5.1.0.14.0.20010719083509.04c50210@postoffice.riic.at> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5.1.0.14.0.20010719083509.04c50210@postoffice.riic.at>; from hueber@riic.at on Thu, Jul 19, 2001 at 08:35:49AM +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 Jul 19 03:22, i got this from Gernot... > Have a look at pppctl. In the man pages there are sample scripts, too > > Gernot > i tried from the command line by setting server to /var/run/internet; worked only when pppctl is used (& ppp is started) as root... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 4:39: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from argo.ripn.net (argo.ripn.net [195.19.26.210]) by hub.freebsd.org (Postfix) with ESMTP id 4F06837B408 for ; Thu, 19 Jul 2001 04:39:00 -0700 (PDT) (envelope-from mnk@argo.ripn.net) Received: (from mnk@localhost) by argo.ripn.net (8.9.3/8.9.3) id PAA21906 for questions@FreeBSD.ORG; Thu, 19 Jul 2001 15:38:56 +0400 (MSK/MSD) Message-Id: <200107191138.PAA21906@argo.ripn.net> Subject: FreeBSD and HP DLT1 To: questions@FreeBSD.ORG Date: Thu, 19 Jul 2001 15:38:56 +0400 (MSK/MSD) From: Mary N Koroleva Organization: Russian Institute for Public Networks X-NCC-REGID: ru.rosniiros X-Mailer: ELM [version 2.4ME+ PL22 (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 Hi all, I am beginner at this list ;-) Could you please advice me on one problem: We need to connect HP DLT1 to computer operating under FreeBSD 4.3-RELEASE. Is it possible? And where can I get drivers for HP DLT1? Thank you in advance, Mary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 4:52: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from trinity.noc.clara.net (trinity.noc.clara.net [195.8.70.14]) by hub.freebsd.org (Postfix) with ESMTP id D83EF37B401; Thu, 19 Jul 2001 04:51:59 -0700 (PDT) (envelope-from jamie@trinity.noc.clara.net) Received: from jamie by trinity.noc.clara.net with local (Exim 3.22 #1) id 15NCLd-0001y0-00; Thu, 19 Jul 2001 12:52:05 +0100 Date: Thu, 19 Jul 2001 12:52:05 +0100 From: Jamie Heckford To: freebsd-questions@freebsd.org Cc: freebsd-stable@freebsd.org Subject: Vinum Mirroring question Message-ID: <20010719125205.A7545@trinity.noc.clara.net> Reply-To: jamie@uk.clara.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 Hi, Not sure if this is supposed to be like this or if I have set it up wrong. I have a vinum mirror with the total size supposed to be 1024M. But, here is what df -h reports: /dev/vinum/mirror 1.9G 1.0K 1.8G 0% /usr/local/var/nntpcache-map which makes it appear as if the disks are striping. However, vinum reports the following under list: S mirror.p0.s0 State: up PO: 0 B Size: 1023 MB S mirror.p0.s1 State: up PO: 1023 MB Size: 1023 MB Im confused. Is this a bug or have I set something up wrong? I thought mirroring a drive would allow you to have a partition on one disk drive, and when its written it writes to both drives at the same time. Below is my Vinum configuration (Ignore the vinum0 volume, that is setup and works fine :) ) # Vinum configuration, saved at Thu Jul 19 10:34:27 2001 - Jamie drive vinumdrive0 device /dev/da1e drive vinumdrive1 device /dev/da2e drive vinumdrive2 device /dev/da3e volume vinum0 plex name vinum0.p0 org striped 512s vol vinum0 sd name vinum0.p0.s0 drive vinumdrive0 plex vinum0.p0 len 69584384s driveoffset 265s plexoffset 0s sd name vinum0.p0.s1 drive vinumdrive1 plex vinum0.p0 len 69584384s driveoffset 265s plexoffset 512s sd name vinum0.p0.s2 drive vinumdrive2 plex vinum0.p0 len 69584384s driveoffset 265s plexoffset 1024s # Mirror drive vinumdrive3 device /dev/da3a drive vinumdrive4 device /dev/da2a volume mirror setupstate plex name mirror.p0 org concat sd name mirror.p0.s0 drive vinumdrive3 size 0b sd name mirror.p0.s1 drive vinumdrive4 size 0b Please let me know if I have miss-configured something. Cross posted to stable incase it is a bug, more than likely i've got something wrong somewhere though so apologies in advance ;) Thanks, -- ======================================================== Jamie Heckford | jamie@uk.clara.net Systems Administrator | 020 7903 3015 Clara.Net | www.clara.net ======================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 4:54:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imf10bis.bellsouth.net (mail110.mail.bellsouth.net [205.152.58.50]) by hub.freebsd.org (Postfix) with ESMTP id 2B8AD37B401 for ; Thu, 19 Jul 2001 04:54:10 -0700 (PDT) (envelope-from leimbacd@bellsouth.net) Received: from mutt.home.net ([208.63.160.211]) by imf10bis.bellsouth.net (InterMail vM.5.01.01.01 201-252-104) with ESMTP id <20010719115502.DSLF19060.imf10bis.bellsouth.net@mutt.home.net>; Thu, 19 Jul 2001 07:55:02 -0400 Received: (from dave@localhost) by mutt.home.net (8.11.3/8.11.3) id f6JBwSo00731; Thu, 19 Jul 2001 06:58:28 -0500 (CDT) (envelope-from dave) Date: Thu, 19 Jul 2001 06:58:28 -0500 From: David Leimbach To: Luiz Emerson , questions@freebsd.org Subject: Re: Duron and FreeBSD Message-ID: <20010719065828.A710@mutt.home.net> References: <20010719031235.95892.qmail@web14307.mail.yahoo.com> 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 In-Reply-To: <20010719031235.95892.qmail@web14307.mail.yahoo.com>; from forkbsd@yahoo.com.br on Thu, Jul 19, 2001 at 12:12:35AM -0300 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 writing to you from a DURON 800Mhz running FreeBSD 4.3 and I have not had any problems yet :). On Thu, Jul 19, 2001 at 12:12:35AM -0300, Luiz Emerson wrote: > Hello...!!!! > I'm making upgrade of the my computer for DURON 700MHz > > I would like to know if exists incompatibility of the > FreeBSD with the DURON. > > Thank's > > []'s > > L. Emerson > > _______________________________________________________________________________________________ > Yahoo! GeoCities > Tenha seu lugar na Web. Construa hoje mesmo sua home page no Yahoo! GeoCities. É fácil e grátis! > http://br.geocities.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 Thu Jul 19 5:12: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 4FC2737B401 for ; Thu, 19 Jul 2001 05:12: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 OAA28362; Thu, 19 Jul 2001 14:20:13 +0200 Message-ID: <3B56CF29.E13C3B00@i-clue.de> Date: Thu, 19 Jul 2001 14:14:33 +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: Mary N Koroleva Cc: questions@FreeBSD.ORG Subject: Re: FreeBSD and HP DLT1 References: <200107191138.PAA21906@argo.ripn.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 Mary N Koroleva schrieb: > > Hi all, > > I am beginner at this list ;-) > > Could you please advice me on one problem: > We need to connect HP DLT1 to computer > operating under FreeBSD 4.3-RELEASE. > Is it possible? And where can I get drivers > for HP DLT1? You need a U160-SCSI interface to connect physically. The drive itself will be recognized automatically as scsi tape drive, without any configuration neccessary. You may dump to it immediately, it's device nodes are /dev/nrst0 and /dev/st0 if it's the first tape you connect. No special drivers neccessary. 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 Thu Jul 19 5:19:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay2.adelphia.net (smtprelay2.adelphia.net [64.8.25.7]) by hub.freebsd.org (Postfix) with ESMTP id 664CF37B401 for ; Thu, 19 Jul 2001 05:19:29 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay2.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGPZL702.OBW; Thu, 19 Jul 2001 08:19:55 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6JCHTt00601; Thu, 19 Jul 2001 08:17:29 -0400 (EDT) (envelope-from ipt) Date: Thu, 19 Jul 2001 08:17:29 -0400 From: User & Ian Patrick Thomas To: Neil Darlow Cc: freebsd-questions@freebsd.org Subject: Re: Source Update is incomplete? Message-ID: <20010719081729.A360@localhost> References: <20010718.18511400@ideal.darlow.co.uk> <20010718200516.H51074@localhost> <20010719.7370000@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: <20010719.7370000@ideal.darlow.co.uk>; from neil@darlow.co.uk on Thu, Jul 19, 2001 at 07:37:00AM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG As it was put forth by Neil Darlow on Thu, Jul 19, 2001 at 07:37:00AM +0000... > Hi Ian and others, > > Thank you for your suggestions. > > Re. the compat libs, there are COMPAT(1X|20|21|22|3X|4X) definitions > in /etc/defaults/make.conf. > > I haven't come across any good documentation on these so which do I > need to enable. I'm guessing that these are for compatibility with > older versions of FreeBSD and if I'm not running anything from 3.x, > and earlier, should I just enable COMPAT4X? > > I understand the primary purpose of the FreeBSD source tree is to create > releases but it would be nice to have documentation on the files that > are obsoleted by this version (so that they may be more easily deleted). > > Regards, > Neil Darlow. > > -- > 1024D/531F9048 1999-09-11 Neil Darlow > GPG fingerprint = 359D B8FF 6273 6C32 BEAA 43F9 E579 E24A 531F 9048 > > > On 7/19/01, 1:05:16 AM, User & Ian Patrick Thomas wrote: > > > I'm going to guess here, but there is a section in /etc/make.conf that > > asks if you wnat to install compat libs for 4x. Maybe this needs to be > > uncommented? > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message There is a list that sends out what files were changed and other differences in the OS from release to release. Check www.freebsd.org and check under mailing lists for the list. The cvs list is the one you want. Before enabling COMPAT4X I would check this list and see if these files were just taken out or moved to a new location. I'm not sure what COMPAT4X is used for but I know that a COMPAT? was needed for Netscape to build. Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 5:20:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from zeus.dnt.md (dnt.md [195.138.124.37]) by hub.freebsd.org (Postfix) with ESMTP id 7B45B37B403 for ; Thu, 19 Jul 2001 05:20:42 -0700 (PDT) (envelope-from sl@zeus.dnt.md) Received: (from sl@localhost) by zeus.dnt.md (8.11.1/8.11.1) id f6JCKcL17284 for freebsd-questions@freebsd.org; Thu, 19 Jul 2001 15:20:38 +0300 (EEST) Date: Thu, 19 Jul 2001 15:20:38 +0300 From: Veaceslav Revutchi To: freebsd-questions@freebsd.org Subject: underscore in hostnames (dns problem) Message-ID: <20010719152038.A16848@zeus.dnt.md> 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 Troubleshooting a mail problem today I discovered that the MX record for the destination address has an underscore in it, something like that: acb_def.domain.org when I use dig it reports the IP for this weird hostname, but if I try to ping or telnet to it I get respectively: ping: cannot resolve abc_def.domain.org: Unknown server error abc.def.domain.org: Non-recoverable failure in name resolution ping and telnet is able to resolve the name on linux though. Do I have to contact those responsible for that domain and point them to the problem of is underscore allowed in zone file? thanks, slava To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 5:26:54 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 5595937B406 for ; Thu, 19 Jul 2001 05:26:50 -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 OAA28562; Thu, 19 Jul 2001 14:34:29 +0200 Message-ID: <3B56D281.70BB9885@i-clue.de> Date: Thu, 19 Jul 2001 14:28:49 +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: so@server.ms-agentur.de Cc: Mary N Koroleva , questions@FreeBSD.ORG Subject: Re: FreeBSD and HP DLT1 References: <200107191138.PAA21906@argo.ripn.net> <3B56CF29.E13C3B00@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 Christoph Sold schrieb: > > Mary N Koroleva schrieb: > > > > Hi all, > > > > I am beginner at this list ;-) > > > > Could you please advice me on one problem: > > We need to connect HP DLT1 to computer > > operating under FreeBSD 4.3-RELEASE. > > Is it possible? And where can I get drivers > > for HP DLT1? > > You need a U160-SCSI interface to connect physically. The drive itself > will be recognized automatically as scsi tape drive, without any > configuration neccessary. You may dump to it immediately, it's device > nodes are /dev/nrst0 and /dev/st0 if it's the first tape you connect. No > special drivers neccessary. Ups... pilot error. Nowadays it's /dev/nsa0 and /dev/sa0 for the non-rewinding rsp. rewinding devices. man mt tells how to acces the drive. 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 Thu Jul 19 5:29: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from res142a-005.rh.rit.edu (res142a-005.rh.rit.edu [129.21.142.5]) by hub.freebsd.org (Postfix) with ESMTP id 7096B37B406 for ; Thu, 19 Jul 2001 05:29:05 -0700 (PDT) (envelope-from vega@res142a-005.rh.rit.edu) Received: by res142a-005.rh.rit.edu (Postfix, from userid 1000) id 71ECA901A03; Thu, 19 Jul 2001 08:28:52 -0400 (EDT) Date: Thu, 19 Jul 2001 08:28:52 -0400 From: Michael Dungan To: Ronnie Clark Cc: questions@freebsd.org Subject: Re: Has anyone tried to cvsup today? Message-ID: <20010719082852.A54798@rit.edu> Reply-To: mpd6334@cs.rit.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 RClark@swst.com on Wed, Jul 18, 2001 at 03:22:11PM -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 Wed, Jul 18, 2001 at 03:22:11PM -0500, Ronnie Clark wrote: > I keep getting the following message: > > Parsing supfile "/usr/src/stable-supfile" > Connecting to cvsup.FreeBSD.org > Cannot connect to cvsup.FreeBSD.org: Connection refused > > Anyone have any ideas? Try another cvsup server. cvsup[2-whatever].freebsd.org exist. Try one of those. > > > Thank you, > Ronnie Clark > mpd -- ___________________________________________________________ "GOOD DAY POKEY! YOU ARE RIGHT! ONLY PROPER GARDENING WILL MAKE YOUR GARDEN GROW!" - Mr. Nutty from "WHAT WILL MAKE YOUR GARDEN GROW" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 5:30:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from rottweiler.gulfaero.com (rottweiler.gulfaero.com [134.216.26.1]) by hub.freebsd.org (Postfix) with ESMTP id A2BF737B401 for ; Thu, 19 Jul 2001 05:30:06 -0700 (PDT) (envelope-from bobf@gulfaero.com) Received: from rottweiler.gulfaero.com (root@localhost) by rottweiler.gulfaero.com with ESMTP id IAA08599 for ; Thu, 19 Jul 2001 08:30:06 -0400 (EDT) Received: from vpsrv02.sav.gulfaero.com (proxy.sav.gulfaero.com [134.216.99.102]) by rottweiler.gulfaero.com with SMTP id IAA08595 for ; Thu, 19 Jul 2001 08:30:05 -0400 (EDT) Received: from 134.216.99.100 by vpsrv02.sav.gulfaero.com (InterScan E-Mail VirusWall NT); Thu, 19 Jul 2001 08:22:12 -0400 (Eastern Daylight Time) Received: from steed-100.catia.gulfaero.com by mailman.gulfaero.com (AIX 4.1/UCB 5.64/4.03) id AA54870; Thu, 19 Jul 2001 08:30:08 -0400 Received: from df9x2w ([134.216.16.201] (may be forged)) by steed-100.catia.gulfaero.com with ESMTP (8.8.6 (PHNE_17190)/8.7.1) id IAA19456 for ; Thu, 19 Jul 2001 08:30:04 -0400 (EDT) From: "Bob Fawcett" To: freebsd-questions@FreeBSD.ORG Date: Thu, 19 Jul 2001 08:29:46 -0400 Subject: laptop and Xircom ethernet Message-Id: <3B569A7A.23142.528F30C@localhost> X-Mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a Dell C600 laptop and a Xircom CE3 credit card ethernet adapter. I can't get freebsd 4.3 stable to recognize the card. It keeps telling me that xe0 does not exist. Anyone have any idea what I might be doing wrong?? Thanks Bob Fawcett bobf@gulfaero.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 19 5:33:23 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 44BE037B405 for ; Thu, 19 Jul 2001 05:33:18 -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 GGQ04U02.FC7; Thu, 19 Jul 2001 08:31:42 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6JCVJF00631; Thu, 19 Jul 2001 08:31:19 -0400 (EDT) (envelope-from ipt) Date: Thu, 19 Jul 2001 08:31:18 -0400 From: User & Ian Patrick Thomas To: David Scheidt Cc: freebsd-questions@freebsd.org Subject: Re: [freebsd-questions] shutdown group Message-ID: <20010719083118.B360@localhost> References: <20010718232520.G80368@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from dscheidt@tumbolia.com on Wed, Jul 18, 2001 at 10:54:09PM -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 As it was put forth by David Scheidt on Wed, Jul 18, 2001 at 10:54:09PM -0500... > On Wed, 18 Jul 2001, User & Ian Patrick Thomas wrote: > > : > :As it was put forth by David Scheidt on Wed, Jul 18, 2001 at 10:13:47PM -0500... > :> > :> I can't come up with a single good reason why a non-root user should be > :> allowed to use the halt(8) or reboot(8) commands. I can't come up with many > :> for root using them, either. > :> > : I'm the only one who uses my workstation and I am trying to get into > :the habit of logging into root as little as possible. It is more convenient > :and more secure to use sudo to shutdown, then to log in as root and do the > :same thing, for me.:) > : > :Ian > > Please don't top post. > > There's no need to use sudo for this. If you put the set of users who need > to use the shutdown command into the operator group, they can use > shutdown(8). (There are some other priveledges gained from being in the > operator group, such as being able to read to read raw disk devices, which > is needed to run dump(8)). I certainly understand why non-root users would > want to run shutdown(8); halt and reboot have options which can cause > serious damage, so I don't see why a non-root user should be allowed to use > them. > > -- > dscheidt@tumbolia.com > Bipedalism is only a fad. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message Had no idea what top posting was, thanks for the heads up. At any rate, does this sound like sound thinking as far as security goes 1. I cannot login to root remotely. From what I've heard, this is a good thing. 2. I can login as myself remotely using only openssh. I am not in the wheel group. Hypothetical situation: Someone, somehow gets my password, and roots password, and logs in remotely as me. They can't su to root, and the only root commands they can execute are the ones that I have set up through sudo, shutdown being one of them, hanging up a root initiated ppp connection is the other. This person would not be able to trash the system, right? I know this is a worst case scenario and maybe I'm being paranoid, but I think that this setup works quite well as a failsafe against a completely compromised system. Am I missing some other way that would be safer, better? Maybe I should start a new thread, this is veering away from the original topic. Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 5:44: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web11004.mail.yahoo.com (web11004.mail.yahoo.com [216.136.131.54]) by hub.freebsd.org (Postfix) with SMTP id 7D04337B401 for ; Thu, 19 Jul 2001 05:43:57 -0700 (PDT) (envelope-from sumitmurgai@yahoo.com) Message-ID: <20010719124357.51594.qmail@web11004.mail.yahoo.com> Received: from [61.11.33.18] by web11004.mail.yahoo.com via HTTP; Thu, 19 Jul 2001 05:43:57 PDT Date: Thu, 19 Jul 2001 05:43:57 -0700 (PDT) From: sumit murgai Subject: Please Reply Back 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 To, freebsd-questions@FreeBSD.ORG Sub : Request for help on trapping kernel generated exceptions in Windows NT. Sir, I am Sumit Murgai , a student of MCA(Master of comp.appl.) ,final year in India.As a part of the final semester project I am trying to build a system diagnostics utility for Windows NT. For this I need to understand how to trap the kernel generated exceptions in Windows NT. I would be very grateful to you if you could help me in this context. Thank You Yours truly, Sumit Murgai __________________________________________________ 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 19 5:49:25 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtpg.casema.net (smtpg.casema.net [195.96.96.160]) by hub.freebsd.org (Postfix) with SMTP id B2CBA37B406 for ; Thu, 19 Jul 2001 05:49:20 -0700 (PDT) (envelope-from walter@binity.com) Received: (qmail 23572 invoked by uid 0); 19 Jul 2001 12:49:18 -0000 Received: from unknown (HELO slash.b118.binity.net) (212.64.76.102) by smtpg.casema.net with SMTP; 19 Jul 2001 12:49:18 -0000 Received: from silver.b118.binity.net (silver.b118.binity.net [172.18.3.10]) by slash.b118.binity.net (Postfix) with ESMTP id 20134151; Thu, 19 Jul 2001 14:48:03 +0200 (CEST) Date: Thu, 19 Jul 2001 14:50:45 +0200 From: Walter Hop X-Mailer: The Bat! (v1.52f) Educational Organization: Binity X-Priority: 3 (Normal) Message-ID: <4022871066.20010719145045@binity.com> To: Veaceslav Revutchi Cc: freebsd-questions@freebsd.org Subject: Re: underscore in hostnames (dns problem) In-Reply-To: <20010719152038.A16848@zeus.dnt.md> References: <20010719152038.A16848@zeus.dnt.md> 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 [in reply to sl@zeus.dnt.md, 19-07-2001] > Do I have to contact those responsible for that domain and > point them to the problem of is underscore allowed in zone file? That would be a good thing. Underscores are not allowed, although many implementations of DNS allow it and it has become a common error since. See also RFC 1035, available at ftp://ftp.isi.edu/in-notes/rfc1035.txt -- Walter Hop | +31 6 24290808 | Finger for public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 5:53:48 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 B487237B405 for ; Thu, 19 Jul 2001 05:53: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 PAA28871; Thu, 19 Jul 2001 15:01:33 +0200 Message-ID: <3B56D8DA.272A046@i-clue.de> Date: Thu, 19 Jul 2001 14:55: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: sumit murgai Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Please Reply Back References: <20010719124357.51594.qmail@web11004.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 sumit murgai schrieb: > > To, > freebsd-questions@FreeBSD.ORG > Sub : Request for help on trapping kernel > > generated exceptions in Windows NT. > > Sir, > > I am Sumit Murgai , a student of MCA(Master of > comp.appl.) ,final year in India.As a part of the > final semester project I am trying to build a system > diagnostics utility for Windows NT. For this I need to > understand how to trap the kernel generated exceptions > in Windows NT. I would be very grateful to you if you > could help me in this context. Now why do you ask this Windoze-related questions at a BSD-centered help list? Sorry, we do Unix here. No NT expert in view. Regards -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 5:59:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe35.law12.hotmail.com [64.4.18.92]) by hub.freebsd.org (Postfix) with ESMTP id C4A1037B406 for ; Thu, 19 Jul 2001 05:59:25 -0700 (PDT) (envelope-from default013subscriptions@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 19 Jul 2001 05:59:25 -0700 X-Originating-IP: [24.14.93.185] Reply-To: "default013 - subscriptions" From: "default013 - subscriptions" To: Cc: References: <20010717180122.A1188@nvnsvch.org> Subject: Re: creating a local area network Date: Thu, 19 Jul 2001 08:00:03 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Message-ID: X-OriginalArrivalTime: 19 Jul 2001 12:59:25.0660 (UTC) FILETIME=[A35369C0:01C11052] Sender: owner-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 Gwen, Thanks for your help... I am still confused as to why one can't bind a 192.168 addy to the regular nic and access it that way... I tried it and was only able to access it from the server itself... I think what I am going to do is either do what you suggest (Someone told me about a decent tutorial with a basic IPFW ruleset on it here: http://www.bsdtoday.com/2000/December/Features359.html , I assume this is pretty much the setup that you have...) I am now trying to decide on whether I should do this, or whether I should just get one of those DSL routers with a firewall installed on it... I called SMC about this one: http://www.smc.com/smc/pages_html/homef.html and they told me that it was capable of doing this... of course the firewall isn't nearly as good as IPFW but... it's not bad either... What do you think? ... My main goal in mind is to create an internal network for myself so that I do not have to go through the internet from my workstations to reach back to my servers... Secondly I am interested in a firewall, but... for now I can deal with the bare necessities... I may just have to pay someone for consultation... I'm a pretty decent system administrator, but I don't really know much about networking :P ... yet :) Thanks, Jordan ----- Original Message ----- From: "Gwendolyn" To: "default013 - subscriptions" Sent: Tuesday, July 17, 2001 5:01 PM Subject: Re: creating a local area network > Look up natd. This will allow you to give private addressing to your LAN. > > What I do: > > DSL Modem --> Firewall --> hub > > The firewall has two NICs, eth1 is addressed with the Internet IP address > given by my ISP, eth0 is addressed with the private IP I assigned it from > the 10.x.x.x block. The firewall is also running natd and ipmasq (yes, it's > linux, shh) so that it knows what the private LAN configuration scheme is and > sends all the packets to the appropriate places. All the other machines are > plugged into my hub. > > I recommend "Bulding Linux and OpenBSD Firewalls" by Sonnenreich and Yates > for how to do the firewall schema. I'm sure others here have given you good > references for natd. :) > > gwen. > > * default013 - subscriptions (default013subscriptions@hotmail.com) [010717 15:53]: > > Hello, > > > > I'm trying to create a local area network so that when I connect to my UNIX > > machines, I connect to them through the local area network instead of having > > to go through the internet... (mostly because sometimes I have trouble > > connecting to my machines through the regular internet... not sure why, but > > they do use different gateways so, I figure that sometimes they may have > > trouble communicating with eachother) > > > > I am not quite sure on how to go about doing this. I am reading up on > > networking right now, and I'm thinking that I may be able to setup a local > > area network I.P. address on each system that I could access it with... > > someone has also told me that I could use a switch? ... I am not quite sure > > how either one would work... If anyone could give me some pointers I would > > appreciate it greatly. > > > > Jordan > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > -- > gwen. > Systems Adminstrator, pair Networks, Inc. > http://www.gw3n.com/ > > frogger# ls -ld /usr > drw------- 32 root wheel 512 Jul 19 1998 /usr > well, that's a pretty secure /usr all right > won't have any pesky users messing aound in 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 19 6:10: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web11405.mail.yahoo.com (web11405.mail.yahoo.com [216.136.131.235]) by hub.freebsd.org (Postfix) with SMTP id CD66937B401 for ; Thu, 19 Jul 2001 06:09:58 -0700 (PDT) (envelope-from bnm_susaram@yahoo.com) Message-ID: <20010719130958.71392.qmail@web11405.mail.yahoo.com> Received: from [202.53.78.162] by web11405.mail.yahoo.com via HTTP; Thu, 19 Jul 2001 06:09:58 PDT Date: Thu, 19 Jul 2001 06:09:58 -0700 (PDT) From: narasimha murthy 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 iam waiting for more information from you sir with regards bnm __________________________________________________ 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 19 6:16:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from argo.ripn.net (argo.ripn.net [195.19.26.210]) by hub.freebsd.org (Postfix) with ESMTP id 6FAD137B401 for ; Thu, 19 Jul 2001 06:16:08 -0700 (PDT) (envelope-from mnk@argo.ripn.net) Received: (from mnk@localhost) by argo.ripn.net (8.9.3/8.9.3) id RAA25610; Thu, 19 Jul 2001 17:15:53 +0400 (MSK/MSD) Message-Id: <200107191315.RAA25610@argo.ripn.net> Subject: Re: FreeBSD and HP DLT1 To: so@server.i-clue.de Date: Thu, 19 Jul 2001 17:15:53 +0400 (MSK/MSD) Cc: questions@FreeBSD.ORG In-Reply-To: <3B56D281.70BB9885@i-clue.de> from "Christoph Sold" at "Jul 19, 1 02:28:49 pm" From: Mary N Koroleva Organization: Russian Institute for Public Networks X-NCC-REGID: ru.rosniiros X-Mailer: ELM [version 2.4ME+ PL22 (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 According to Christoph Sold: > > > Christoph Sold schrieb: > > > > Mary N Koroleva schrieb: > > > > > > Hi all, > > > > > > I am beginner at this list ;-) > > > > > > Could you please advice me on one problem: > > > We need to connect HP DLT1 to computer > > > operating under FreeBSD 4.3-RELEASE. > > > Is it possible? And where can I get drivers > > > for HP DLT1? > > > > You need a U160-SCSI interface to connect physically. The drive itself > > will be recognized automatically as scsi tape drive, without any > > configuration neccessary. You may dump to it immediately, it's device > > nodes are /dev/nrst0 and /dev/st0 if it's the first tape you connect. No > > special drivers neccessary. > > Ups... pilot error. Nowadays it's /dev/nsa0 and /dev/sa0 for the > non-rewinding rsp. rewinding devices. man mt tells how to acces the > drive. Thank you for your help! -- Mary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 6:19:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from day.uws.edu.au (day.uws.edu.au [137.154.210.66]) by hub.freebsd.org (Postfix) with ESMTP id 929D137B403 for ; Thu, 19 Jul 2001 06:19:11 -0700 (PDT) (envelope-from 99053811@day.uws.edu.au) Received: from scholar.nepean.uws.edu.au (dho@[137.154.149.4]) by day.uws.edu.au (8.11.1/8.11.1) with SMTP id f6JDJ8912608 for ; Thu, 19 Jul 2001 23:19:08 +1000 (EST) From: Danny K Ho <99053811@day.uws.edu.au> Message-Id: <200107191319.f6JDJ8912608@day.uws.edu.au> Date: Thu, 19 Jul 2001 23:19:09 EST (EST) To: questions@freebsd.org Subject: PPPoE Problem X-Mailer: UWS Mail Gateway X-URL: http://www.cit.uws.edu.au Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello I am running FreeBSD 4.3 I have completed the following steps : - compiled the KERNEL with options NETGRAPH, options NETGRAPH_PPOE, options NETGRAPH_SOCKET according to the section 15.4.2 of the handbook - Added the following ppp.conf according to the freebsd handbook in section 15.4.3 - Starting PPP at Boot in /etc/rc.conf according to section 15.4.5 Why do I keep getting this error message in /var/log/ppp.log jul 19 18:49:03 freebsd ppp[146] tun0: Phase:deflink: connected ! jul 19 18:49:03 freebsd ppp[146] tun0: Phase:deflink: opening -> dial jul 19 18:49:03 freebsd ppp[146] tun0: Phase:deflink: dial -> carrier jul 19 18:49:03 freebsd ppp[146] tun0: Phase:deflink: disconnected ! jul 19 18:49:03 freebsd ppp[146] tun0: Phase:deflink: connection time jul 19 18:49:03 freebsd ppp[146] tun0: Phase:deflink: 0 Packets jul 19 18:49:03 freebsd ppp[146] tun0: Phase:deflink: hangup -> opening or redialing I also get the following error message in /var/log/messages Jul 19 18:46:45 freebsd / kernel: module register: module netgraph already exists Jul 19 18:46:45 freebsd / kernel: linker = file_sysinit netgraph .ko fialed to resolve What have I done incorrectly and how do I fix it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 6:36:29 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 E7BAA37B403 for ; Thu, 19 Jul 2001 06:36:27 -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 15NDya-00066H-00 for freebsd-questions@freebsd.org; Thu, 19 Jul 2001 08:36:24 -0500 To: freebsd-questions@freebsd.org Subject: Headless Installation from CDROM Date: Thu, 19 Jul 2001 08:36:24 -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 I posted a question yesterday about how to do a FreeBSD installation via serial port. A person nicely reminded me of the Handbook which has a chapter on "headless installations." I wondered how I missed that and then was reminded that I should have included two more things in my question so here I go again. How can I do a headless installation on a system that only has a CDROM? The good news is that the disk we are using was one we burned from an image on one of the FreeBSD mirrors so I could unpack it and modify whatever I need to and maybe burn another boot CDROM if that is necessary. The systems being installed are IBM Netfinity boxes that ship with only a CDROM as the boot source and have 2 serial ports. The headless installation as described in the Handbook is precisely what I need to do only I am not sure what must be modified on the CDROM to make it happen. This may be an increasingly common situation as more and more systems do not have 1.4MB floppies as part of their standard configuration. Martin McCormick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 6:38:54 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 1507237B401 for ; Thu, 19 Jul 2001 06:38:52 -0700 (PDT) (envelope-from wmoran@iowna.com) Received: (qmail 81864 invoked from network); 19 Jul 2001 13:48:55 -0000 Received: from unknown (HELO iowna.com) (151.201.71.193) by mail.the-i-pa.com with SMTP; 19 Jul 2001 13:48:55 -0000 Message-ID: <3B56E1F0.C65A0117@iowna.com> Date: Thu, 19 Jul 2001 09:34:40 -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: jamie@uk.clara.net Cc: freebsd-questions@freebsd.org Subject: Re: Vinum Mirroring question References: <20010719125205.A7545@trinity.noc.clara.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 You really shouldn't cross-post to -stable on questions like this. If you fear it's a bug, did you check the list archives first? Jamie Heckford wrote: > Not sure if this is supposed to be like this or if I have > set it up wrong. You've set it up wrong for what you want to do. > # Mirror > drive vinumdrive3 device /dev/da3a > drive vinumdrive4 device /dev/da2a > volume mirror setupstate > plex name mirror.p0 org concat > sd name mirror.p0.s0 drive vinumdrive3 size 0b > sd name mirror.p0.s1 drive vinumdrive4 size 0b This creates a contatenated plex, which joins the two partitions to make one large chunk. What you want is: # Mirror drive vinumdrive3 device /dev/da3a drive vinumdrive4 device /dev/da2a volume mirror setupstate plex name mirror.p0 org concat sd name mirror.p0.s0 drive vinumdrive3 size 0b plex name mirror.p1 org concat sd name mirror.p1.s0 drive vinumdrive4 size 0b Hope this helps, 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 19 6:39: 1 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 3E79437B406 for ; Thu, 19 Jul 2001 06:38:56 -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: a slightly off-topic question.... X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 Date: Thu, 19 Jul 2001 15:38:54 +0100 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: a slightly off-topic question.... Thread-Index: AcEQYIkpn1dlTbpgSqOfltKpKrU2kg== 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 everybody! at first, i might apologize for asking this non-bsd specific question, but i know this mailing list as a community of open-minded people, thus i expect this mail to be well accepted and answered. my question is as follows: which of the well-known network-management-systems is the one of your choice and why? what about all this cisco-works, hp openview, novell zenworks/ managewise, intel landesk? what is best for monitoring/ remote control of network equipment, what is best for servers (nt/novell) and workstations (win95/NT) [extremely sorry for mentioning that os =3D)] so, thanks in advance for your answers farewell! ren=E9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 6:40:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailrelay.somewhere.net (islay.demon.nl [212.238.39.75]) by hub.freebsd.org (Postfix) with ESMTP id D25F337B401; Thu, 19 Jul 2001 06:40:11 -0700 (PDT) (envelope-from jos@hoogehof.nl) Received: from mailhub. by mailrelay with ESMTP id f6JDe4j14726; Thu, 19 Jul 2001 15:40:04 +0200 (CEST) Received: from intranet by mailhub id f6JDe4s14720; Thu, 19 Jul 2001 15:40:04 +0200 (CEST) Received: from intranet by amavis id f6JDe3914704; Thu, 19 Jul 2001 15:40:03 +0200 (CEST) Date: Thu, 19 Jul 2001 15:40:03 +0200 From: Jos Vissers To: Jamie Heckford Cc: freebsd-questions@freebsd.org, freebsd-stable@freebsd.org Subject: Re: Vinum Mirroring question Message-ID: <20010719154003.A14666@hoogehof.nl> References: <20010719125205.A7545@trinity.noc.clara.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010719125205.A7545@trinity.noc.clara.net>; from jamie@uk.clara.net on Thu, Jul 19, 2001 at 12:52:05PM +0100 X-Operating-System: FreeBSD 4.3-STABLE X-Virus-Scanned: by AMaViS perl-10 HH Sender: owner-freebsd-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 19, 2001 at 12:52:05PM +0100, Jamie Heckford wrote: > Hi, > > Not sure if this is supposed to be like this or if I have > set it up wrong. > > I have a vinum mirror with the total size supposed to be > 1024M. > > But, here is what df -h reports: > > /dev/vinum/mirror 1.9G 1.0K 1.8G 0% /usr/local/var/nntpcache-map > > which makes it appear as if the disks are striping. > > However, vinum reports the following under list: > > S mirror.p0.s0 State: up PO: 0 B Size: 1023 MB > S mirror.p0.s1 State: up PO: 1023 MB Size: 1023 MB > > Im confused. Is this a bug or have I set something up wrong? I thought mirroring > a drive would allow you to have a partition on one disk drive, and when its written > it writes to both drives at the same time. > > Below is my Vinum configuration (Ignore the vinum0 volume, that is setup and > works fine :) ) > > # Vinum configuration, saved at Thu Jul 19 10:34:27 2001 - Jamie > drive vinumdrive0 device /dev/da1e > drive vinumdrive1 device /dev/da2e > drive vinumdrive2 device /dev/da3e > volume vinum0 > plex name vinum0.p0 org striped 512s vol vinum0 > sd name vinum0.p0.s0 drive vinumdrive0 plex vinum0.p0 len 69584384s driveoffset 265s plexoffset 0s > sd name vinum0.p0.s1 drive vinumdrive1 plex vinum0.p0 len 69584384s driveoffset 265s plexoffset 512s > sd name vinum0.p0.s2 drive vinumdrive2 plex vinum0.p0 len 69584384s driveoffset 265s plexoffset 1024s > # Mirror > drive vinumdrive3 device /dev/da3a > drive vinumdrive4 device /dev/da2a > volume mirror setupstate > plex name mirror.p0 org concat > sd name mirror.p0.s0 drive vinumdrive3 size 0b You forgot the mirror plex: plex name mirror.p1 org concat > sd name mirror.p0.s1 drive vinumdrive4 size 0b I would sugest: sd name mirror.p1.s0 drive vinumdrive4 size 0b > Please let me know if I have miss-configured something. A volume consists of at least 1 plex. You can create mirrors by creating additional plexes for a volume. Each plex consists of 1 or more subdisks that can be concatenated, striped or raid5. > Cross posted to stable incase it is a bug, more than likely i've got something > wrong somewhere though so apologies in advance ;) > > Thanks, > > -- > ======================================================== > Jamie Heckford | jamie@uk.clara.net > Systems Administrator | 020 7903 3015 > Clara.Net | www.clara.net > ======================================================== > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Jos Vissers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 6:41:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from kendra.ne.mediaone.net (kendra.ne.mediaone.net [24.218.227.234]) by hub.freebsd.org (Postfix) with ESMTP id 77B0637B401; Thu, 19 Jul 2001 06:41:08 -0700 (PDT) (envelope-from avatar+july2001@kew.com) Received: from xena (xena.hh.kew.com [192.168.203.148]) by kendra.ne.mediaone.net (Postfix) with SMTP id 94A8A15547; Thu, 19 Jul 2001 09:40:57 -0400 (EDT) Message-ID: <004501c11058$76b71140$94cba8c0@xena> From: "Drew Derbyshire" To: , References: <20010719125205.A7545@trinity.noc.clara.net> Subject: Re: Vinum Mirroring question Date: Thu, 19 Jul 2001 09:41:07 -0400 Organization: Kendra Electronic Wonderworks (http://www.kew.com/kendra) 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'll take a stab at this one and let the experts correct me. It's not a bug. If it makes you feel better, it took me 2 days get my volumes right. (Because it's not a bug, -stable changed to BCC to migrate topic to just -questions). > I have a vinum mirror with the total size supposed to be > 1024M. > > But, here is what df -h reports: > > /dev/vinum/mirror 1.9G 1.0K 1.8G 0% /usr/local/var/nntpcache-map > > which makes it appear as if the disks are striping. > > However, vinum reports the following under list: > > S mirror.p0.s0 State: up PO: 0 B Size: 1023 MB > S mirror.p0.s1 State: up PO: 1023 MB Size: 1023 MB They aren't striping (which would be an interweave of course), but are one after the other. > Im confused. Is this a bug or have I set something up wrong? I thought mirroring > a drive would allow you to have a partition on one disk drive, and when its written > it writes to both drives at the same time. You didn't put the subdisks in different plexes, so they appended, not mirrored. Note how for EACH of my three mirrored volumes, I have a plex on each physical volume: # Vinum configuration of sonata.hh.kew.com, saved at Thu Jul 19 09:26:13 2001 drive sonata-d0 device /dev/da0s2g drive sonata-d1 device /dev/da1s2g volume var volume usr volume export plex name var.p0 org concat vol var plex name var.p1 org concat vol var plex name usr.p0 org concat vol usr plex name usr.p1 org concat vol usr plex name export.p0 org concat vol export plex name export.p1 org concat vol export sd name var.p0.s0 drive sonata-d0 plex var.p0 len 1048576s driveoffset 265s plexoffset 0s sd name var.p1.s0 drive sonata-d1 plex var.p1 len 1048576s driveoffset 265s plexoffset 0s sd name usr.p0.s0 drive sonata-d0 plex usr.p0 len 6144000s driveoffset 1048841s plexoffset 0s sd name usr.p1.s0 drive sonata-d1 plex usr.p1 len 6144000s driveoffset 1048841s plexoffset 0s sd name export.p0.s0 drive sonata-d0 plex export.p0 len 9031680s driveoffset 7192841s plexoffset 0s sd name export.p1.s0 drive sonata-d1 plex export.p1 len 9031680s driveoffset 7192841s plexoffset 0s Of course, my configuration is a little funky because I did share the physical drives with three vinum volumes. > # Vinum configuration, saved at Thu Jul 19 10:34:27 2001 - Jamie > # Mirror > drive vinumdrive3 device /dev/da3a > drive vinumdrive4 device /dev/da2a > volume mirror setupstate > plex name mirror.p0 org concat > sd name mirror.p0.s0 drive vinumdrive3 size 0b > sd name mirror.p0.s1 drive vinumdrive4 size 0b So you need a mirror.p1 and mirror.p1.s0 not mirror.p0.s1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 7: 0:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from toledo.inf.pucrs.br (toledo.inf.pucrs.br [200.17.94.5]) by hub.freebsd.org (Postfix) with ESMTP id 9B97137B401 for ; Thu, 19 Jul 2001 07:00:00 -0700 (PDT) (envelope-from cargnini@cpad.pucrs.br) Received: from cpad.pucrs.br (santiago.inf.pucrs.br [200.17.94.4]) by toledo.inf.pucrs.br (8.10.1/8.10.1) with ESMTP id f6GCxSM05242 for ; Mon, 16 Jul 2001 09:59:29 -0300 (EST) Message-ID: <3B52E5F6.BF2CACF2@cpad.pucrs.br> Date: Mon, 16 Jul 2001 10:02:46 -0300 From: =?iso-8859-1?Q?Lu=EDs=20Vit=F3rio?= Cargnini Reply-To: cargnini@cpad.pucrs.br Organization: CPAD HP / PUC-RS X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.4.2 i686) X-Accept-Language: en, pt-BR MIME-Version: 1.0 To: FreeBSD Subject: Re: deleted /dev/null by mistake 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 inside /dev/ exist an script MAKEDEV use sh MAKEDEV null and them him must recreate all you r dev null's or use mknod -b major minor Child wrote: > hi all > one of my shell scripts did an rm -f /dev/null > > just wondering how I recreate it > > thanks! > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 7:11:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from jhb-imta.mweb.co.za (jhb-imta.mweb.co.za [196.2.48.244]) by hub.freebsd.org (Postfix) with ESMTP id 6C98A37B405 for ; Thu, 19 Jul 2001 07:11:49 -0700 (PDT) (envelope-from vikashb@mweb.co.za) Received: from Debug ([196.2.53.147]) by jhb-imta.mweb.co.za (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) with SMTP id <0GGP00DVGZ3X0K@jhb-imta.mweb.co.za> for freebsd-questions@freebsd.org; Thu, 19 Jul 2001 14:10:38 +0200 (GMT-2) Date: Thu, 19 Jul 2001 12:10:22 +0000 (GMT) From: vikashb@mweb.co.za Subject: Re: Signal 11 when Install FreeBSD 4.3 To: "R. Lahaye" , freebsd-questions@freebsd.org Message-id: <0GGP00DVHZ3X0K@jhb-imta.mweb.co.za> X-Mailer: Endymion MailMan Standard Edition v3.0.33 Sender: owner-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, Thanks for the help, I re-wrote the CD and the install when through without a hitch Regards Vikash > vikashb@mweb.co.za wrote: > > Note : > > I can complete the installation if i don't select the src, ports and X > > distribution sets , but I need the src to recompile the kernel. > > Could you finish the installation without the src and then (when the > system is up and running) type, as root, /stand/sysinstall? This > should let you select again additional parts of the installation; in > your case you could go for the src. Then see what happens. > > Rob. --------------------------------------------- This message was sent using M-Web Airmail. http://airmail.mweb.co.za/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 7:15:12 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 57B4E37B401; Thu, 19 Jul 2001 07:15:03 -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 f6JEEsZ25988; Thu, 19 Jul 2001 07:14:55 -0700 (PDT) Date: Thu, 19 Jul 2001 07:14:53 -0700 (PDT) From: Laurence Berland To: Kashyap Kumar Cc: freebsd-stable@FreeBSD.ORG, questions@FreeBSD.ORG Subject: Re: buildworld failing (was: No Subject) 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 Try putting a subject next time, so people who know how to help you will read the email, and everyone else doesn't need to waste time with it. Otherwise, the tendency is for everyone to ignore it. When you get hundreds of emails a day, it needs to be pretty obvious that you might be of help... On Thu, 19 Jul 2001, Kashyap Kumar wrote: > Hi, > > I asked this problem earlier but nobody help me. I have this problem since i > cvsuped one of my servers last week. and again i cvsuped today 19/07/2001. > But the problem is there.. make buildworld stops at following location. > > i am using freebsd 4.3 Stable.. > > FreeBSD bsd.bg.com 4.3-STABLE FreeBSD 4.3-STABLE #0: Wed May 30 12:25:43 EST > 2001 root@bsd.bg.com:/usr/src/sys/compile/BSG i386 > > > here is where it stops > > > cd /usr/src/lib/libncurses; make build-tools > sh /usr/src/lib/libncurses/../../contrib/ncurses/include/MKhashsize.sh > /usr/src/lib/libncurses/../../contrib/ncurses/include/Caps > hashsize.h > Segmentation fault - core dumped > sed >curses.h -e "/@NCURSES_MAJOR@/s//5/" -e "/@NCURSES_MINOR@/s//1/" -e > "/@NCURSES_PATCH@/s//20001009/" -e "/@NCURSES_CONST@/s///" -e > "s/@cf_cv_builtin_bool@/1/g" -e "s/@cf_cv_cc_bool_type@/0/g" -e > "s/@cf_cv_type_of_bool@/char/g" -e "s/@cf_cv_typeof_chtype@/long/g" -e > "s/@cf_cv_widec_shift@/8/g" -e "s/@cf_cv_shift_limit@/32/g" -e > "s/@cf_cv_1UL@/1UL/g" > AWK=awk sh > /usr/src/lib/libncurses/../../contrib/ncurses/include/MKncurses_def.sh > /usr/src/lib/libncurses/../../contrib/ncurses/include/ncurses_defs > > ncurses_def.h > cc -o make_hash -O -pipe -I. -I/usr/src/lib/libncurses > -I/usr/src/lib/libncurses/../../contrib/ncurses/ncurses > -I/usr/src/lib/libncurses/../../contrib/ncurses/include -Wall > -DFREEBSD_NATIVE -DNDEBUG -DHAVE_CONFIG_H -DTERMIOS -DMAIN_PROGRAM > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c: In > function `_nc_make_hash_table': > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:78: > syntax error before `;' > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:78: > syntax error before `)' > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:75: > warning: `hashvalue' might be used uninitialized in this function > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c: At > top level: > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:90: > syntax error before `}' > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:54: > warning: `hash_function' declared `static' but never defined > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:73: > warning: `_nc_make_hash_table' defined but not used > *** Error code 1 > > Stop in /usr/src/lib/libncurses. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > > > _________________________________________________________________ > Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > Laurence Berland http://www.isp.northwestern.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 19 7:17:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cartman.techsupport.co.uk (cabletel1.cableol.net [194.168.3.4]) by hub.freebsd.org (Postfix) with ESMTP id AAE8B37B419 for ; Thu, 19 Jul 2001 07:17:16 -0700 (PDT) (envelope-from ceri@techsupport.co.uk) Received: from ceri by cartman.techsupport.co.uk with local (Exim 3.31 #1) id 15NEdQ-0000ia-00; Thu, 19 Jul 2001 15:18:36 +0100 Date: Thu, 19 Jul 2001 15:18:36 +0100 From: Ceri To: User & Ian Patrick Thomas Cc: freebsd-questions@freebsd.org, marcs@draenor.org Subject: Re: ppp -nat or natd? Message-ID: <20010719151836.B28635@cartman.techsupport.co.uk> References: <014d01c10ebc$fe3ee5e0$0200a8c0@mark2> <3B554F28.89960778@i-clue.de> <20010718122504.C22510@cartman.techsupport.co.uk> <20010718191915.C51074@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010718191915.C51074@localhost>; from ipthomas_77@yahoo.com on Wed, Jul 18, 2001 at 07:19:15PM -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 18, 2001 at 07:19:15PM -0400, User & Ian Patrick Thomas said: > As it was put forth by Ceri on Wed, Jul 18, 2001 at 12:25:04PM +0100... > > On Wed, Jul 18, 2001 at 10:56:08AM +0200, Christoph Sold said: > > > Anyhow, having an external dynamic IP combined with ipfw would be a > > > major hassle. > > > > Why ? > > Can't you just use the -u and -dynamic flags to natd and use the interface > > name in your ipfw ruleset ? > > > > I'm not having a go, but I'm going to be in this situation soon and that was > > my plan. Will it not work ? > > > You can use ipfw fairly easily with a dynamic IP externally. Check out > this link > > www.freebsd.org/tutorials/dialup-firewall/index.html Excellent, that's pretty much exactly what I had planned (except for the PPP bit - this is going to be on a cable modem). I just got a freaked out when Christoph said it was hassle. By the way, the section regarding options TCP_RESTRICT_RST needs updating as that option no longer exists (hence cc'd to marcs@draenor.org). Ceri -- # There is this special biologist word we use for 'stable'. # It is 'dead'. -- Jack Cohen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 7:42:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp3.arnet.com.ar (smtp3.arnet.com.ar [200.45.191.14]) by hub.freebsd.org (Postfix) with SMTP id 7636537B403 for ; Thu, 19 Jul 2001 07:42:36 -0700 (PDT) (envelope-from pbendersky@mark-inc.com) Received: (qmail 15913 invoked from network); 19 Jul 2001 14:42:32 -0000 Received: from unknown (HELO barney) (200.45.181.137) by smtp3.arnet.com.ar with SMTP; 19 Jul 2001 14:42:32 -0000 From: "Pablo Bendersky" To: Subject: PPPoE, nat, firewall Date: Thu, 19 Jul 2001 11:42:53 -0300 Message-ID: <001301c11061$180f42d0$3700a8c0@mark> 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, Build 10.0.2627 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'm trying to configure a ADSL on a FreeBSD 4.2 box to share the internet connection on my lan. I wanted also to have a firewall. I have a cisco 677 connected to the dsl line, and on the other side connected to the xl1 device on my freebsd box. On xl0 of the bsd box I have a local IP address, 192.168.0.1, which I have configured as the default gateway on the other computers of the lan. As the Cisco has an IP address of 10.0.0.1, I put 10.0.0.2 on xl1 (Don't know if that's correct, though) The configuration is as follows: < from rc.conf > ifconfig_xl0="inet 192.168.0.1 netmask 255.255.255.0" ifconfig_xl1="inet 10.0.0.2 netmask 255.255.255.0 broadcast 10.0.0.255" ppp_enable="YES" ppp_mode="dedicated" ppp_nat="YES" ppp_profile="adsl" adsl: set device PPPoE:xl1 set mru 1492 set mru 1492 set authname USER set authkey PASSWD set log Phase tun command set dial set login set ifaddr 10.0.0.1/0 10.0.0.2/0 add default HISADDR Everything works ok, except that I cannot use ftp (from the windows computers and from the freebsd box also) When doing binary ftp it starts upload things, and then, when at 9% (for example) it gets stalled. I don't know why it's happenning, and what's the problem with the configuration. Mail and web works ok. Is my setup ok? Thanks a lot 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 19 7:43:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from spice.eahd.or.ug (spice.eahd.or.ug [216.250.215.140]) by hub.freebsd.org (Postfix) with ESMTP id 3087E37B403 for ; Thu, 19 Jul 2001 07:43:16 -0700 (PDT) (envelope-from patrick@eahd.or.ug) Received: by spice.eahd.or.ug (Postfix at spice.eahd.or.ug, from userid 542) id 69569F2ABD; Thu, 19 Jul 2001 17:58:00 +0300 (EAT) Received: from localhost (localhost [127.0.0.1]) by spice.eahd.or.ug (Postfix at spice.eahd.or.ug) with ESMTP id 64FF675835; Thu, 19 Jul 2001 17:58:00 +0300 (EAT) Date: Thu, 19 Jul 2001 17:58:00 +0300 (EAT) From: Patrick To: Cc: Subject: Re: Take me Off Your Fucking Lists - You Are Killing My E-Mail!! 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 Wed, 18 Jul 2001, scott sapire wrote: > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe > freebsd-questions" in the body of the message > Read your own e-mail as it came off the list and do just that. Patrick. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 7:44:41 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 1536037B401 for ; Thu, 19 Jul 2001 07:44:38 -0700 (PDT) (envelope-from achornback@worldnet.att.net) Received: from tomcat ([12.93.208.24]) by mtiwmhc26.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with SMTP id <20010719144435.BVRM2154.mtiwmhc26.worldnet.att.net@tomcat>; Thu, 19 Jul 2001 14:44:35 +0000 From: "Andrew C. Hornback" To: "sumit murgai" , Subject: RE: Please Reply Back Date: Thu, 19 Jul 2001 10:37:00 -0400 Message-ID: <002c01c11060$4525e220$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: <20010719124357.51594.qmail@web11004.mail.yahoo.com> 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: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of sumit murgai > Sent: Thursday, July 19, 2001 8:44 AM > To: freebsd-questions@FreeBSD.ORG > Subject: Please Reply Back > > To, > freebsd-questions@FreeBSD.ORG > Sub : Request for help on trapping kernel > > generated exceptions in Windows NT. > > Sir, > > I am Sumit Murgai , a student of MCA(Master of > comp.appl.) ,final year in India.As a part of the > final semester project I am trying to build a system > diagnostics utility for Windows NT. For this I need to > understand how to trap the kernel generated exceptions > in Windows NT. I would be very grateful to you if you > could help me in this context. Umm... you're in the wrong area, mate. The Windows NT playground is down the road aways, behind us. This list (and e-mail address) is for discussion of a real OS, FreeBSD (http://www.freebsd.org). --- 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 19 7:46: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from webserver.rtl.org (webserver2.rtl.org [63.94.12.188]) by hub.freebsd.org (Postfix) with ESMTP id 044CD37B401 for ; Thu, 19 Jul 2001 07:46:01 -0700 (PDT) (envelope-from jstewart@rtl.org) Received: from MIS3C.rtl.org ([63.106.163.130]) by webserver.rtl.org (8.11.4/8.11.4) with ESMTP id f6JEjO208872 for ; Thu, 19 Jul 2001 10:45:24 -0400 Message-Id: <5.0.2.1.0.20010719104512.00b024d8@63.94.12.188> X-Sender: jstewart@63.94.12.188 X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Thu, 19 Jul 2001 10:45:55 -0400 To: freebsd-questions@FreeBSD.ORG From: Jason Stewart Subject: Re: Please Reply Back In-Reply-To: <20010719124357.51594.qmail@web11004.mail.yahoo.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 Uhhh.... This is a FreeBSD list. We would be happy to help you with FreeBSD. Jason Stewart At 05:43 AM 7/19/2001 -0700, you wrote: >To, > freebsd-questions@FreeBSD.ORG >Sub : Request for help on trapping kernel > > generated exceptions in Windows NT. > >Sir, > > I am Sumit Murgai , a student of MCA(Master of >comp.appl.) ,final year in India.As a part of the >final semester project I am trying to build a system >diagnostics utility for Windows NT. For this I need to >understand how to trap the kernel generated exceptions >in Windows NT. I would be very grateful to you if you >could help me in this context. > > Thank You > Yours truly, > > Sumit Murgai > > >__________________________________________________ >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 Thu Jul 19 7:46:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from conn.mc.mpls.visi.com (conn.mc.mpls.visi.com [208.42.156.2]) by hub.freebsd.org (Postfix) with ESMTP id DA80D37B403 for ; Thu, 19 Jul 2001 07:46:13 -0700 (PDT) (envelope-from patm@visi.com) Received: from isis.visi.com (isis.visi.com [209.98.98.8]) by conn.mc.mpls.visi.com (Postfix) with ESMTP id 5A9A58182 for ; Thu, 19 Jul 2001 09:46:13 -0500 (CDT) Received: from localhost (patm@localhost) by isis.visi.com (8.8.8/8.8.8) with ESMTP id JAA09357 for ; Thu, 19 Jul 2001 09:46:13 -0500 (CDT) X-Authentication-Warning: isis.visi.com: patm owned process doing -bs Date: Thu, 19 Jul 2001 09:46:12 -0500 (CDT) From: "Patrick J. McNamee" To: freebsd-questions@FreeBSD.ORG Subject: RE: Apache and SSL In-Reply-To: <5CD46247635BD511B6B100A0CC3F0239259FFA@ldcmsx01.lc.ca.gov> 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 Have you looked at: http://www.modssl.org/example/ >Todd Reed schrieb: > > I've got my Apache web server up and running, but I'd > like to also add SSL. Does anyone have any good references > for Apache and SSL? I've checked out the modssl and openssl, > but I'm having trouble getting them installed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 7:55:28 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 D3EDB37B401 for ; Thu, 19 Jul 2001 07:55:25 -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 15NEEB-0006UX-00; Thu, 19 Jul 2001 16:52:31 +0300 Received: by mailserv.xpert.com with Internet Mail Service (5.5.2650.21) id ; Thu, 19 Jul 2001 17:55:10 +0300 Message-ID: From: Yonatan Bokovza To: "'Patrick J. McNamee'" , freebsd-questions@FreeBSD.ORG Subject: RE: Apache and SSL Date: Thu, 19 Jul 2001 17:55:09 +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 or ports/www/apache13-modssl for that matter? > -----Original Message----- > From: Patrick J. McNamee [mailto:patm@visi.com] > Sent: Thursday, July 19, 2001 17:46 > To: freebsd-questions@FreeBSD.ORG > Subject: RE: Apache and SSL > > > Have you looked at: > > http://www.modssl.org/example/ > > > >Todd Reed schrieb: > > > > I've got my Apache web server up and running, but I'd > > like to also add SSL. Does anyone have any good references > > for Apache and SSL? I've checked out the modssl and openssl, > > but I'm having trouble getting them installed. > > > 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 19 8:16:47 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 1ECE437B401 for ; Thu, 19 Jul 2001 08:16:41 -0700 (PDT) (envelope-from chris@vindaloo.com) Received: (from uucp@localhost) by fw.vindaloo.com (8.10.1/8.10.1) id f6JFGeO15498 for ; Thu, 19 Jul 2001 11:16:40 -0400 (EDT) Received: from andale.vindaloo.com(192.168.133.3) via SMTP by fw.vindaloo.com, id smtpdB26351; Thu Jul 19 11:16:32 2001 Received: by andale.vindaloo.com (Postfix, from userid 1000) id D38ED4383; Thu, 19 Jul 2001 11:16:24 -0400 (EDT) Date: Thu, 19 Jul 2001 11:16:23 -0400 From: Christopher Sean Hilton To: freebsd-questions@freebsd.org Subject: Missing man pages stop kernel make process Message-ID: <20010719111623.A23220@andale.vindaloo.com> References: <0GGP00DVHZ3X0K@jhb-imta.mweb.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <0GGP00DVHZ3X0K@jhb-imta.mweb.co.za>; from vikashb@mweb.co.za on Thu, Jul 19, 2001 at 12:10:22PM +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 Has anyone else noticed that there are several missing man pages which cause the kernel make process to fail. I've been having to do the make install with the -k for all the modules to get built and installed. Is this a known issue with a fix? -- 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 Thu Jul 19 8:27:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mx0.ecxnetwork.net (mx0.ecxnetwork.net [208.144.33.2]) by hub.freebsd.org (Postfix) with ESMTP id 56B4A37B408 for ; Thu, 19 Jul 2001 08:26:22 -0700 (PDT) (envelope-from JHilgeman@ecx.com) Received: from mailsvr.ecx.com (ecx-irv-ns100.ecxnetwork.net [208.144.33.1] (may be forged)) by mx0.ecxnetwork.net (8.11.3/8.11.3) with ESMTP id f6JFHSU10611 for ; Thu, 19 Jul 2001 08:17:28 -0700 (PDT) (envelope-from JHilgeman@ecx.com) Received: by mailsvr.ecx.com with Internet Mail Service (5.5.2653.19) id ; Thu, 19 Jul 2001 08:25:54 -0700 Message-ID: <5D90F61EB6FDD411836500508B137F1A2689A0@mailsvr.ecx.com> From: Jonathan Hilgeman To: "'freebsd-questions@FreeBSD.ORG'" Subject: Bash install also installs seti@home??? Date: Thu, 19 Jul 2001 08:25:48 -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 just did an install of FreeBSD-4.2-RELEASE and was trying to install the bash shell. So I went into /usr/ports and typed: make install bash2 However, it started to install lots of stuff. It installed tcl/tk/Xfree86/X-Windows and a bunch of other stuff (I wasn't watching the whole way through), and is installing packages in the "astro" directory as I write this. It just finished installing seti@home, I believe. What the heck is it doing, and why do I need all of this junk just for the bash shell? I'm assuming it's getting installed because a bigger program needs a smaller program which needs a smaller program, etc... but this is ridiculous. It's already consumed over 400 megs. Someone please help... - Jonathan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 8:30:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.forumone.com (snapper.forumone.com [207.197.141.11]) by hub.freebsd.org (Postfix) with ESMTP id 2B82F37B435 for ; Thu, 19 Jul 2001 08:28:08 -0700 (PDT) (envelope-from jryden@forumone.com) Received: from pluto.forumone.com (pluto.forumone.com [207.32.101.4]) by mail.forumone.com (Postfix) with ESMTP id A12D381FD for ; Thu, 19 Jul 2001 11:30:07 -0400 (EDT) X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable Subject: Ecrix Date: Thu, 19 Jul 2001 11:28:23 -0400 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Ecrix Thread-Index: AcEQZ3LA46BcqpyjTkCHbBMAU8pWBQ== From: "Joakim Ryden" 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 Hi - I have a FreeBSD 4.0-STABLE machine with an Ecrix VXA 33/66G tape drive in it. A full backup of the machine is ~19G and still I keep getting "end of tape" messages when backing up. The tape _is_ rewound before every backup. Command used to back up: dump 0ufa /dev/nrsa0 /dev/mlxd0s1a I just wanted to check if anyone else had experienced any weirdness like this? Thanks! Joakim Ryden To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 8:35: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from fnal.gov (heffalump.fnal.gov [131.225.9.20]) by hub.freebsd.org (Postfix) with ESMTP id C6F4B37B401 for ; Thu, 19 Jul 2001 08:35:05 -0700 (PDT) (envelope-from crawdad@gungnir.fnal.gov) Received: from gungnir.fnal.gov ([131.225.80.1]) by smtp.fnal.gov (PMDF V6.0-24 #37519) with ESMTP id <0GGQ000AU8MHSI@smtp.fnal.gov> for freebsd-questions@freebsd.org; Thu, 19 Jul 2001 10:35:05 -0500 (CDT) Received: from gungnir.fnal.gov (localhost [127.0.0.1]) by gungnir.fnal.gov (8.10.2+Sun/8.10.2) with ESMTP id f6JFYXF23511; Thu, 19 Jul 2001 10:34:33 -0500 (CDT) Date: Thu, 19 Jul 2001 10:34:33 -0500 From: Matt Crawford Subject: Problem with sysmouse protocol or XFree86 4.0 To: newbie@XFree86.Org, freebsd-questions@freebsd.org Message-id: <200107191534.f6JFYXF23511@gungnir.fnal.gov> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've just done a from-scratch reinstallation of FreeBSD 4.3 with XFree86 4.0.2 on a Sony Vaio laptop with an ALPS glidepoint touchpad. (I don't know how much of this is relevant.) If I run "moused -3 -p /dev/psm0" the mouse works find in the system console mode. But then using the following mouse definitions in XF86Config: Section "InputDevice" # Identifier and driver Identifier "Mouse1" Driver "mouse" Option "Protocol" "SysMouse" Option "Device" "/dev/sysmouse" EndSection # ... Section "ServerLayout" # The Identifier line must be present Identifier "Simple Layout" Screen "Screen 1" InputDevice "Mouse1" "CorePointer" InputDevice "Keyboard1" "CoreKeyboard" EndSection I diagnose the following problem with the help of xev: ButtonRelease events are not being received until the next ButtonPress or MotionNotify event. If I kill moused and run the server as 'XFree86 -layout "Raw Mouse Device"' with the following sections added to XF86Config, everything works great, including taps on the touchpad being interpretted as button 1: Section "InputDevice" # Identifier and driver Identifier "Mouse0" Driver "mouse" Option "Protocol" "PS/2" Option "Device" "/dev/psm0" # Emulate3Buttons is an option for 2-button Microsoft mice # Emulate3Timeout is the timeout in milliseconds (default is 50ms) Option "Emulate3Buttons" Option "Emulate3Timeout" "100" EndSection # ... Section "ServerLayout" # The Identifier line must be present Identifier "Raw Mouse Device" Screen "Screen 1" InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard1" "CoreKeyboard" EndSection So I don't know if this is a problem in moused or in X .. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 8:36:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cartman.techsupport.co.uk (cabletel1.cableol.net [194.168.3.4]) by hub.freebsd.org (Postfix) with ESMTP id 1370237B403 for ; Thu, 19 Jul 2001 08:36:43 -0700 (PDT) (envelope-from ceri@techsupport.co.uk) Received: from ceri by cartman.techsupport.co.uk with local (Exim 3.31 #1) id 15NFsC-0006b2-00; Thu, 19 Jul 2001 16:37:56 +0100 Date: Thu, 19 Jul 2001 16:37:56 +0100 From: Ceri To: Jonathan Hilgeman Cc: "'freebsd-questions@FreeBSD.ORG'" Subject: Re: Bash install also installs seti@home??? Message-ID: <20010719163756.A24788@cartman.techsupport.co.uk> References: <5D90F61EB6FDD411836500508B137F1A2689A0@mailsvr.ecx.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <5D90F61EB6FDD411836500508B137F1A2689A0@mailsvr.ecx.com>; from JHilgeman@ecx.com on Thu, Jul 19, 2001 at 08:25:48AM -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, Jul 19, 2001 at 08:25:48AM -0700, Jonathan Hilgeman said: > I just did an install of FreeBSD-4.2-RELEASE and was trying to install the > bash shell. So I went into /usr/ports and typed: > > make install bash2 You just told make to install everything in the ports tree. Sounds like you wanted : % cd /usr/ports/shells/bash2; make install Ceri -- I can please only one person per day. Today is not your day. Tomorrow isn't looking good either. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 8:36:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from wopr.caltech.edu (wopr.caltech.edu [131.215.102.114]) by hub.freebsd.org (Postfix) with ESMTP id EAB4E37B406 for ; Thu, 19 Jul 2001 08:36:45 -0700 (PDT) (envelope-from mph@wopr.caltech.edu) Received: (from mph@localhost) by wopr.caltech.edu (8.11.3/8.11.0) id f6JFaes41533; Thu, 19 Jul 2001 08:36:40 -0700 (PDT) (envelope-from mph) Date: Thu, 19 Jul 2001 05:36:40 -1000 From: Matthew Hunt To: Jonathan Hilgeman Cc: "'freebsd-questions@FreeBSD.ORG'" Subject: Re: Bash install also installs seti@home??? Message-ID: <20010719053640.A41402@wopr.caltech.edu> References: <5D90F61EB6FDD411836500508B137F1A2689A0@mailsvr.ecx.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <5D90F61EB6FDD411836500508B137F1A2689A0@mailsvr.ecx.com>; from JHilgeman@ecx.com on Thu, Jul 19, 2001 at 08:25:48AM -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, Jul 19, 2001 at 08:25:48AM -0700, Jonathan Hilgeman wrote: > I just did an install of FreeBSD-4.2-RELEASE and was trying to install the > bash shell. So I went into /usr/ports and typed: > > make install bash2 You're telling it to make the "install" target, and then the "bash2" target. In the /usr/ports directory, the "install" target installs all the ports. After doing that, it would tell you that there is no "bash2" target. What you want is: # cd /usr/ports/shells/bash2 # make install -- Matthew Hunt * Clearly there are more things in the http://www.pobox.com/~mph/ * heavens than anyone anticipated. -enp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 8:54:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns-exch05.jccc.net (ns-exch05.jccc.net [198.248.56.5]) by hub.freebsd.org (Postfix) with ESMTP id 2558937B408 for ; Thu, 19 Jul 2001 08:54:12 -0700 (PDT) (envelope-from ndunker@jccc.net) Received: by ns-exch05 with Internet Mail Service (5.5.2653.19) id <3MZQMW7X>; Thu, 19 Jul 2001 10:53:58 -0500 Message-ID: From: Noah Dunker To: 'Joey Garcia' Cc: "'freebsd-questions@freeBSD.org'" Subject: RE: microuptime problem Date: Thu, 19 Jul 2001 10:53:53 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG So far, 2 people have pointed out APM... :) Actually, I do have APM in the kernel, as I have a very nice 4.0 kernel on one of my laptops, including the mandatory IPFILTER and forwarding, bridging options. I didn't feel like compiling a kernel on a 486/66 (do you blame me? :) I don't know why this would suddenly start happening this way, almost 6 months after I shipped it out. I guess I'll compile a new 4.0 kernel here and install it on the firewall, because there isn't any way that host will stay up long enough for a kernel compile. Thnx Guys! Noah Dunker Systems Analyst/Technician Johnson County Community College -----Original Message----- From: Joey Garcia [mailto:bear@buug.homeip.net] Sent: Wednesday, July 18, 2001 10:37 PM To: Noah Dunker Cc: 'freebsd-questions@freeBSD.org' Subject: Re: microuptime problem any chance that you have apm enabled in the kernel? Joey To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 9: 6:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from draenor.org (draenor.org [196.36.119.129]) by hub.freebsd.org (Postfix) with ESMTP id 44DAA37B401 for ; Thu, 19 Jul 2001 09:06:20 -0700 (PDT) (envelope-from marcs@draenor.org) Received: from marcs by draenor.org with local (Exim 3.31 #1) id 15NGJB-0008xb-00; Thu, 19 Jul 2001 18:05:49 +0200 Date: Thu, 19 Jul 2001 18:05:49 +0200 From: Marc Silver To: Ceri Cc: User & Ian Patrick Thomas , freebsd-questions@freebsd.org Subject: Re: ppp -nat or natd? Message-ID: <20010719180549.F27226@draenor.org> References: <014d01c10ebc$fe3ee5e0$0200a8c0@mark2> <3B554F28.89960778@i-clue.de> <20010718122504.C22510@cartman.techsupport.co.uk> <20010718191915.C51074@localhost> <20010719151836.B28635@cartman.techsupport.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: <20010719151836.B28635@cartman.techsupport.co.uk>; from ceri@techsupport.co.uk on Thu, Jul 19, 2001 at 03:18:36PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hey there, Thanks for sending this. I've been meaning to change this, but haven't got around to it as I'm currently in the middle of moving continents. I will submit a patch within the next day or so. Cheers, Marc On Thu, Jul 19, 2001 at 03:18:36PM +0100, Ceri wrote: > On Wed, Jul 18, 2001 at 07:19:15PM -0400, User & Ian Patrick Thomas said: > > As it was put forth by Ceri on Wed, Jul 18, 2001 at 12:25:04PM +0100... > > > On Wed, Jul 18, 2001 at 10:56:08AM +0200, Christoph Sold said: > > > > Anyhow, having an external dynamic IP combined with ipfw would be a > > > > major hassle. > > > > > > Why ? > > > Can't you just use the -u and -dynamic flags to natd and use the interface > > > name in your ipfw ruleset ? > > > > > > I'm not having a go, but I'm going to be in this situation soon and that was > > > my plan. Will it not work ? > > > > > You can use ipfw fairly easily with a dynamic IP externally. Check out > > this link > > > > www.freebsd.org/tutorials/dialup-firewall/index.html > > Excellent, that's pretty much exactly what I had planned (except for the > PPP bit - this is going to be on a cable modem). > I just got a freaked out when Christoph said it was hassle. > > By the way, the section regarding options TCP_RESTRICT_RST needs updating as > that option no longer exists (hence cc'd to marcs@draenor.org). > > Ceri > > -- > # There is this special biologist word we use for 'stable'. > # It is 'dead'. -- Jack Cohen -- Change will happen whether we're still or moving... -- Toad the Wet Sprocket To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 9: 9:20 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 286AA37B406 for ; Thu, 19 Jul 2001 09:09:17 -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 EB365177; Thu, 19 Jul 2001 08:09:05 -0800 (AKDT) Content-Type: text/plain; charset="iso-8859-1" From: Beech Rintoul To: Gary Kline , freebsd-questions@FreeBSD.ORG (FreeBSD Mailing List) Subject: Re: emachine's cheap sound config... Date: Thu, 19 Jul 2001 08:09:05 -0800 X-Mailer: KMail [version 1.2] References: <200107190531.f6J5VBO42302@tao.thought.org> In-Reply-To: <200107190531.f6J5VBO42302@tao.thought.org> MIME-Version: 1.0 Message-Id: <01071908090501.04801@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 Wednesday 18 July 2001 09:31 pm, Gary Kline wrote: > A year ago I bought a cheap emachine-500ix box to try > out SuSE Linux on. To my surprise, everything auto- > installed. The box has a cheap sound chip, but it's > okay for sound effects. > > What FBSD sound config should I add to the KERNEL > config file? Also, what X driver will get X11 up? > > This box has a solid Maxtor drive and I'm planning to > use it as my gateway DNS server; behind a firewall or > firewalls, everything else.... > > thanks for any help here. > > gary Add: device pcm device csa 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 Thu Jul 19 9:13: 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 A150537B405 for ; Thu, 19 Jul 2001 09:12:56 -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 SAA30760; Thu, 19 Jul 2001 18:20:43 +0200 Message-ID: <3B570787.4E019CF7@i-clue.de> Date: Thu, 19 Jul 2001 18:15:03 +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: Joakim Ryden Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Ecrix 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 Joakim Ryden schrieb: > > Hi - > I have a FreeBSD 4.0-STABLE machine with an Ecrix VXA 33/66G tape drive > in it. A full backup of the machine is ~19G and still I keep getting > "end of tape" messages when backing up. The tape _is_ rewound before > every backup. Command used to back up: > > dump 0ufa /dev/nrsa0 /dev/mlxd0s1a > > I just wanted to check if anyone else had experienced any weirdness like > this? Check the size of the dump by piping dunps output to a regular file. If the resulting file is bigger than _uncompressed_ tape size, you know your answer. If there remains tape, your drive is dirty. Clean its head. 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 Thu Jul 19 9:24:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from relay.ultimanet.com (relay.ultimanet.com [205.179.129.1]) by hub.freebsd.org (Postfix) with ESMTP id 65E8037B405 for ; Thu, 19 Jul 2001 09:24:49 -0700 (PDT) (envelope-from elina@cloudfactory.org) Received: from cloudfactory (c11-125.006.popsite.net [64.24.217.125]) by relay.ultimanet.com (8.9.3/8.9.3) with SMTP id KAA20930; Thu, 19 Jul 2001 10:23:34 -0700 Message-ID: <003501c1106d$f734d900$95867ed8@org.cloudfactory.org> From: "elina" To: "Isaac Mushinsky" , "freebsd-questions" References: <3B563377.179CA889@cloudfactory.org> <01071902363801.00303@omsk.mushinsky.net> Subject: Re: BSD for PentiumII Date: Thu, 19 Jul 2001 09:14:17 -0700 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 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: Isaac Mushinsky To: elina ; freebsd-questions Sent: Wednesday, July 18, 2001 11:36 PM Subject: Re: BSD for PentiumII > On Wednesday 18 July 2001 21:10, you wrote: > > I downloaded freeBSD and burned the installation files onto cd, but my > > computer with not recognize it as a bootable CD? What do I do? > > Do you mean > 1. your BIOS cannot boot from CD at all? or perhaps This is the problem, my BIOS cannot boot from the CD. I know I burned the image to the CD correctly because I have another PC machine and it will boot up fine from that one. So, If I try making bootable floppies, will it work? if so what files, or where, do I get them? I got a lot of responses. Everyone is so willing to help on this list, it's nice. I'm sure I'll have more questions once I get the OS installed. Thanks everyone, elina To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 9:32:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (Postfix) with ESMTP id AB09037B405 for ; Thu, 19 Jul 2001 09:32:39 -0700 (PDT) (envelope-from marcus@apfel.sax.de) Received: (from uucp@localhost) by sax.sax.de (8.9.3/8.9.3) with UUCP id SAA29735 for freebsd-questions@freebsd.org; Thu, 19 Jul 2001 18:32:38 +0200 (CEST) Received: from marcus by apfel.sax.de with local (Exim 3.12 #1 (Debian)) id 15NGi2-0001sV-00 for ; Thu, 19 Jul 2001 18:31:30 +0200 Date: Thu, 19 Jul 2001 18:31:30 +0200 From: Marcus Obst To: freebsd-questions@freebsd.org Subject: close on non-blocking socket Message-ID: <20010719183130.A7106@apfel.sax.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I am in doubt about the following; what happens when a non-blocking socket that still has pending outgoing data is closed? In my network book (by R. Stevens) I read that TCP will try to flush the data already queued in the output buffer. But in the FreeBSD man page of close I got: on the last close of a socket(2) associated naming information and queued data are discarded ~~~~~~~~~~~~~~~~~~~~~~~~~ What's right ...? P.S.: Please send the answer with CC to me, I'm currently not on the mailing list. Thank you.! Best regards from Dresden/Germany! Marcus -- Marcus Obst To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 9:41:34 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 2A26637B403 for ; Thu, 19 Jul 2001 09:41:29 -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 GGQBOZ00.M62; Thu, 19 Jul 2001 12:41:23 -0400 From: "Matthew K. Cowger" To: "Heimes Rene" Cc: Message-ID: Date: Thu, 19 Jul 2001 12:41:23 -0400 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: Re: a slightly off-topic question.... X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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 Because we run a mainly cabletron network=2C we use NetSight Element = Manager (it used to be called SPEL)=2C and it works well=2C even with non= = Cabletron/Enterasys devices=2E) ----- Original Message ----- From=3A =22Heimes=2C Rene=22 =3Crh=40com-con=2Enet=3E Date=3A Thursday=2C July 19=2C 2001 10=3A38 am Subject=3A a slightly off-topic question=2E=2E=2E=2E =3E hello everybody! =3E = =3E at first=2C i might apologize for asking this non-bsd specific questi= on=2C =3E but i know this mailing list as a community of open-minded people=2C =3E thus i expect this mail to be well accepted and answered=2E =3E = =3E my question is as follows=3A =3E which of the well-known network-management-systems is the one of your= =3E choice and why=3F =3E what about all this cisco-works=2C hp openview=2C novell zenworks/ =3E managewise=2C intel landesk=3F =3E = =3E what is best for monitoring/ remote control of network equipment=2C w= hat =3E is best for servers (nt/novell) and workstations (win95/NT) =3E =5Bextremely sorry for mentioning that os =3D)=5D =3E = =3E so=2C thanks in advance for your answers =3E = =3E farewell! =3E = =3E ren=E9 =3E = =3E To Unsubscribe=3A send mail to majordomo=40FreeBSD=2Eorg =3E with =22unsubscribe freebsd-questions=22 in the body of the message =3E To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 9:44: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from everest.wananchi.com (everest.wananchi.com [62.8.64.4]) by hub.freebsd.org (Postfix) with ESMTP id 8E4A737B408; Thu, 19 Jul 2001 09:43:57 -0700 (PDT) (envelope-from wash@wananchi.com) Received: from wash by everest.wananchi.com with local (Exim 3.31 #3) id 15NGtm-000ECf-00; Thu, 19 Jul 2001 19:43:38 +0300 Date: Thu, 19 Jul 2001 19:43:38 +0300 From: Odhiambo Washington To: FBSD-Q Cc: FBSD-ISP Subject: OT: Help with Squid Message-ID: <20010719194337.C53666@everest.wananchi.com> Mail-Followup-To: Odhiambo Washington , FBSD-Q , FBSD-ISP Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dDRMvlgZJXvWKvBx" 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: 7:41PM up 6 days, 23:23, 2 users, load averages: 0.04, 0.12, 0.17 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --dDRMvlgZJXvWKvBx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, Please allow me to ask for help. Someone might have seen squid whinning with these messages and has a way to solve that problem: I don't seem to be able to find a solution from the squid's list archives. Thanks in advance. ## Jul 19 17:05:34 everest squid[7359]: comm_accept: FD 11: (53) Software caused connection abort Jul 19 17:05:34 everest squid[7359]: httpAccept: FD 11: accept failure: (53) Software caused connection abort Jul 19 17:05:40 everest squid[7359]: comm_accept: FD 11: (53) Software caused connection abort Jul 19 17:05:40 everest squid[7359]: httpAccept: FD 11: accept failure: (53) Software caused connection abort Jul 19 17:10:51 everest squid[7359]: comm_accept: FD 11: (53) Software caused connection abort Jul 19 17:10:51 everest squid[7359]: httpAccept: FD 11: accept failure: (53) Software caused connection abort 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. Nothing takes the taste out of peanut butter quite like unrequited love.=20 -Charlie Brown=20 (contributed by Chris Johnston)=20 --dDRMvlgZJXvWKvBx 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 iD8DBQE7Vw45n7LIsuxjem8RAmKzAJ9ogKQ++prmS7brknS14HipfpQJBACfcFEH RiItPp4cz2YYvlHvp61vvGM= =WwAS -----END PGP SIGNATURE----- --dDRMvlgZJXvWKvBx-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 9:49: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f128.law11.hotmail.com [64.4.17.128]) by hub.freebsd.org (Postfix) with ESMTP id 8F43937B401 for ; Thu, 19 Jul 2001 09:49:06 -0700 (PDT) (envelope-from calebwalker69@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 19 Jul 2001 09:49:06 -0700 Received: from 207.213.45.19 by lw11fd.law11.hotmail.msn.com with HTTP; Thu, 19 Jul 2001 16:49:03 GMT X-Originating-IP: [207.213.45.19] From: "Caleb Walker" To: questions@freebsd.org Subject: Sendmail aliases problems Date: Thu, 19 Jul 2001 16:49:03 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 19 Jul 2001 16:49:06.0430 (UTC) FILETIME=[B94E09E0:01C11072] Sender: owner-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 does this mean and how can I fix it. Thanks in advance... #newaliases Warning: .cf file is out of date: sendmail 8.11.3 supports version 9, .cf file is version 8 WARNING: World writable directory / WARNING: World writable directory / hash map "Alias0": unsafe map file /etc/aliases.db: World writable directory Jul 19 09:28:53 ns1 sendmail[73682]: NOQUEUE: SYSERR(root): hash map "Alias0": unsafe map file /etc/aliases.db: World writable directory Jul 19 09:28:53 ns1 sendmail[73682]: NOQUEUE: SYSERR(root): hash map "Alias0": unsafe map file /etc/aliases.db: World writable directory WARNING: cannot open alias database /etc/aliases Cannot create database for alias file /etc/aliases Jul 19 09:28:53 ns1 sendmail[73682]: NOQUEUE: SYSERR(root): Cannot create database for alias file /etc/aliases Jul 19 09:28:53 ns1 sendmail[73682]: NOQUEUE: SYSERR(root): Cannot create database for alias file /etc/aliases _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 9:54:23 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 3E39A37B408 for ; Thu, 19 Jul 2001 09:54:14 -0700 (PDT) (envelope-from wash@wananchi.com) Received: from wash by everest.wananchi.com with local (Exim 3.31 #3) id 15NFsH-000Bkk-00 for freebsd-questions@FreeBSD.org; Thu, 19 Jul 2001 18:38:01 +0300 Date: Thu, 19 Jul 2001 18:38:01 +0300 From: Odhiambo Washington To: FBSD-Q Subject: OT: Squid Message-ID: <20010719183801.P54831@everest.wananchi.com> Mail-Followup-To: Odhiambo Washington , FBSD-Q Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WhfpMioaduB5tiZL" 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: 6:36PM up 6 days, 22:18, 5 users, load averages: 1.03, 0.57, 0.28 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --WhfpMioaduB5tiZL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Has someone seen squid whinning with these messages (from the /var/log/messages)??? How did you solve that? I don't seem to find a clue in squid archives. ## Jul 19 17:05:34 everest squid[7359]: comm_accept: FD 11: (53) Software caused connection abort Jul 19 17:05:34 everest squid[7359]: httpAccept: FD 11: accept failure: (53) Software caused connection abort Jul 19 17:05:40 everest squid[7359]: comm_accept: FD 11: (53) Software caused connection abort Jul 19 17:05:40 everest squid[7359]: httpAccept: FD 11: accept failure: (53) Software caused connection abort Jul 19 17:10:51 everest squid[7359]: comm_accept: FD 11: (53) Software caused connection abort 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. Why isn't there some cheap and easy way to prove how much she means to me?= =20 --WhfpMioaduB5tiZL 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 iD8DBQE7Vv7Zn7LIsuxjem8RAgR2AJwJ7JIqpK4gdQs9H8jD0caZRJyt6gCdFjTE x58x1kRO82hbHHmYEJm89nk= =STQM -----END PGP SIGNATURE----- --WhfpMioaduB5tiZL-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 10: 6:53 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 0970E37B408 for ; Thu, 19 Jul 2001 10:06:47 -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 f6JH6SZ26687; Thu, 19 Jul 2001 10:06:29 -0700 (PDT) Date: Thu, 19 Jul 2001 10:06:28 -0700 (PDT) From: Laurence Berland To: Jonathan Hilgeman Cc: "'freebsd-questions@FreeBSD.ORG'" Subject: Re: Bash install also installs seti@home??? In-Reply-To: <5D90F61EB6FDD411836500508B137F1A2689A0@mailsvr.ecx.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 That's not how to install ports. You want to go to the directory of the port you want (in the case of bash, shells/bash2 ) and type make install. Typing make install in /usr/ports tells the system to install all the ports. astro starts with an a. L: On Thu, 19 Jul 2001, Jonathan Hilgeman wrote: > I just did an install of FreeBSD-4.2-RELEASE and was trying to install the > bash shell. So I went into /usr/ports and typed: > > make install bash2 > > However, it started to install lots of stuff. It installed > tcl/tk/Xfree86/X-Windows and a bunch of other stuff (I wasn't watching the > whole way through), and is installing packages in the "astro" directory as I > write this. It just finished installing seti@home, I believe. What the heck > is it doing, and why do I need all of this junk just for the bash shell? I'm > assuming it's getting installed because a bigger program needs a smaller > program which needs a smaller program, etc... but this is ridiculous. It's > already consumed over 400 megs. Someone please help... > > - Jonathan > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > Laurence Berland http://www.isp.northwestern.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 19 10: 7:55 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 98E7437B405 for ; Thu, 19 Jul 2001 10:07:50 -0700 (PDT) (envelope-from freymann@eagle.ca) Received: from phantom (staff.eagle.ca [209.167.16.15]) by marlo.eagle.ca (8.11.3/8.11.3) with SMTP id f6JH4Yu46333 for ; Thu, 19 Jul 2001 13:04:35 -0400 (EDT) (envelope-from freymann@eagle.ca) Message-ID: <002101c11075$64d3ba60$0f01a8c0@phantom> From: "Gerald T. Freymann" To: Subject: encyrtion method in perl ? Date: Thu, 19 Jul 2001 13:08:12 -0400 Organization: eagle.ca 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 Sorta off-topic, but does somebody have a handy routine that can take a string and encyrpt/decrypt it? I need to be able to write the encrypted string to a text file, and read it back later and decode it, print it on the screen... tried "pack" but it uses some characters that prevent you from reading it back successfully 100% of the time. -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 19 10:14:57 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 AA98837B401 for ; Thu, 19 Jul 2001 10:14:53 -0700 (PDT) (envelope-from et@quidel.com) Received: by mail.quidel.com with Internet Mail Service (5.5.2653.19) id ; Thu, 19 Jul 2001 10:21:57 -0700 Message-ID: <9D4A4E19244ED4119BE90050DAD5DD47BC554D@mail.quidel.com> From: Etienne de Bruin To: "'freebsd-questions@freebsd.org'" Subject: roll of /stand in mfsroot Date: Thu, 19 Jul 2001 10:21:55 -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 am in the process of building a mfsroot that I want to write_mfs_in_kernel. Because I don't really have any space constraints it is my understanding that all I need to do is build up my directories, gzip and copy to mfsroot.flp (with help of vnconfig ofcourse). My question relates to the required directories (reading release.8 in /usr/src/release/Makefile). Can I just use the directories stated in /usr/src/release/boot_crunch.config and copy them plainly to my mfsroot? Also, the /stand dir is bugging me - do I need it? or can I just use the plain /bin and /sbin directories? Thanks eT -- Etienne de Bruin : eT@quidel.com Quidel Corporation : http://www.quidel.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 19 10:16:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from webserver.rtl.org (webserver2.rtl.org [63.94.12.188]) by hub.freebsd.org (Postfix) with ESMTP id 23C3437B408 for ; Thu, 19 Jul 2001 10:16:21 -0700 (PDT) (envelope-from jstewart@rtl.org) Received: from MIS3C.rtl.org ([63.106.163.130]) by webserver.rtl.org (8.11.4/8.11.4) with ESMTP id f6JHFT210424; Thu, 19 Jul 2001 13:15:29 -0400 Message-Id: <5.0.2.1.0.20010719131445.00b12000@63.94.12.188> X-Sender: jstewart@63.94.12.188 X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Thu, 19 Jul 2001 13:16:00 -0400 To: "Gerald T. Freymann" From: Jason Stewart Subject: Re: encyrtion method in perl ? Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <002101c11075$64d3ba60$0f01a8c0@phantom> 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 go to cpan.org and look for the crypt or MD5 packages Good Luck, Jason At 01:08 PM 7/19/2001 -0400, you wrote: >Sorta off-topic, > >but does somebody have a handy routine that can take a string and >encyrpt/decrypt it? > >I need to be able to write the encrypted string to a text file, and read it >back later and decode it, print it on the screen... > >tried "pack" but it uses some characters that prevent you from reading it >back successfully 100% of the time. > >-gf > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 10:16:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail5.microsoft.com (mail5.microsoft.com [131.107.3.121]) by hub.freebsd.org (Postfix) with SMTP id 086FE37B405 for ; Thu, 19 Jul 2001 10:16:25 -0700 (PDT) (envelope-from gwheeler@microsoft.com) Received: from 157.54.7.67 by mail5.microsoft.com (InterScan E-Mail VirusWall NT); Thu, 19 Jul 2001 10:16:24 -0700 (Pacific Daylight Time) Received: from RED-MSG-11.redmond.corp.microsoft.com ([157.54.0.210]) by inet-imc-04.redmond.corp.microsoft.com with Microsoft SMTPSVC(5.0.2195.2966); Thu, 19 Jul 2001 10:15:49 -0700 X-MimeOLE: Produced By Microsoft Exchange V6.0.4712.0 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: Hard drive poked? Date: Thu, 19 Jul 2001 10:15:49 -0700 Message-ID: <790FAC90BABB834AAE3719C94B9A1A9701C6CDA2@RED-MSG-11.redmond.corp.microsoft.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Hard drive poked? Thread-Index: AcEQdYHxuwFG6Rd/TTqfpCxBnSjTGQAAOSoQ From: "Gram Wheeler" To: X-OriginalArrivalTime: 19 Jul 2001 17:15:49.0287 (UTC) FILETIME=[74AE9B70:01C11076] Sender: owner-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=20 When I last tried to cvsup, I get the following types of error messages on=20 the screen:=20 /kernel: ad0s2f: hard error reading fsbn 15273680 of 1999072-1999327 (ad0s2=20 bn 15273680 cn 1010 tn 39 sn 23) status=3D59 error=3D40=20 These keep repeating with different but similar values, and it sounds like=20 the disk is having a hard time.=20 Does this mean my disk is poked? Interestingly, 15273680 is out of the=20 range 1999072-1999327. Is it possibly some other form of corruption that has caused a logical inconsistency in the file system that fsck doesn't detect?=20 tx=20 Gram=20 PS I left this running for a while, and eventually had a read error of the cvsup file reported. I deleted the file, ran cvsup again, and this time the cvsup completed. But I am still concerned about whether I have just removed the symptom and not discovered the cause... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 10:19: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from webserver.rtl.org (webserver2.rtl.org [63.94.12.188]) by hub.freebsd.org (Postfix) with ESMTP id 0934637B405 for ; Thu, 19 Jul 2001 10:18:59 -0700 (PDT) (envelope-from jstewart@rtl.org) Received: from MIS3C.rtl.org ([63.106.163.130]) by webserver.rtl.org (8.11.4/8.11.4) with ESMTP id f6JHIM210454 for ; Thu, 19 Jul 2001 13:18:22 -0400 Message-Id: <5.0.2.1.0.20010719131657.02324598@63.94.12.188> X-Sender: jstewart@63.94.12.188 X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Thu, 19 Jul 2001 13:18:54 -0400 To: questions@FreeBSD.ORG From: Jason Stewart Subject: Re: Sendmail aliases problems In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is Completely covered in the Sendmail install documents. The problem is just what it says. It is insecure to have a map in a world writable directory. Jason Stewart At 04:49 PM 7/19/2001 +0000, you wrote: >What does this mean and how can I fix it. Thanks in advance... > >#newaliases >Warning: .cf file is out of date: sendmail 8.11.3 supports version 9, .cf >file is version 8 >WARNING: World writable directory / >WARNING: World writable directory / >hash map "Alias0": unsafe map file /etc/aliases.db: World writable directory >Jul 19 09:28:53 ns1 sendmail[73682]: NOQUEUE: SYSERR(root): hash map >"Alias0": unsafe map file /etc/aliases.db: World writable directory >Jul 19 09:28:53 ns1 sendmail[73682]: NOQUEUE: SYSERR(root): hash map >"Alias0": unsafe map file /etc/aliases.db: World writable directory >WARNING: cannot open alias database /etc/aliases >Cannot create database for alias file /etc/aliases >Jul 19 09:28:53 ns1 sendmail[73682]: NOQUEUE: SYSERR(root): Cannot create >database for alias file /etc/aliases >Jul 19 09:28:53 ns1 sendmail[73682]: NOQUEUE: SYSERR(root): Cannot create >database for alias file /etc/aliases > >_________________________________________________________________ >Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 10:31:35 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 81EEB37B403 for ; Thu, 19 Jul 2001 10:31:28 -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 TAA31367; Thu, 19 Jul 2001 19:39:19 +0200 Message-ID: <3B5719F4.C7EE3B12@i-clue.de> Date: Thu, 19 Jul 2001 19:33:40 +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: Gram Wheeler Cc: questions@FreeBSD.ORG Subject: Re: Hard drive poked? References: <790FAC90BABB834AAE3719C94B9A1A9701C6CDA2@RED-MSG-11.redmond.corp.microsoft.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 Gram Wheeler schrieb: > > Hi all > > When I last tried to cvsup, I get the following types of error messages > on > the screen: > > /kernel: ad0s2f: hard error reading fsbn 15273680 of 1999072-1999327 > (ad0s2 > bn 15273680 cn 1010 tn 39 sn 23) status=59 error=40 > > These keep repeating with different but similar values, and it sounds > like > the disk is having a hard time. > > Does this mean my disk is poked? Interestingly, 15273680 is out of the > range 1999072-1999327. Is it possibly some other form of corruption that > > has caused a logical inconsistency in the file system that fsck doesn't > detect? > > tx > Gram > > PS I left this running for a while, and eventually had a read error of > the cvsup file reported. I deleted the file, ran cvsup again, and this > time the cvsup completed. But I am still concerned about whether I have > just removed the symptom and not discovered the cause... Hard errors are a typical symptom of a hard disk in its death throws. For SCSI disks, the drive will be in a useable state for a while after the first hard error. IDE drives just go south soon after. I'd do 1) dump, 2) fsck, and 3) replace the disk. Note I do the dump before the fsck in case fsck causes the drive to goes belly up before you got the chance to fsck. Note: I assume that drive did it's job for at least a few months before. For new drives, or boxes with recent hardware changes, different rules apply. 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 Thu Jul 19 10:40:31 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 7562537B408 for ; Thu, 19 Jul 2001 10:40:29 -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 f6JHeQA00934; Thu, 19 Jul 2001 10:40:26 -0700 (PDT) Message-Id: <200107191740.f6JHeQA00934@ptavv.es.net> To: User & Ian Patrick Thomas Cc: David Scheidt , freebsd-questions@FreeBSD.ORG Subject: Re: [freebsd-questions] shutdown group In-reply-to: Your message of "Wed, 18 Jul 2001 23:25:20 EDT." <20010718232520.G80368@localhost> Date: Thu, 19 Jul 2001 10:40:26 -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 I suspect that you will also be very happy with the 3Com 2c905B. It uses the xl driver under V4 and I have had excellent results (as have others). Don't know about price comparisons, though. I think the problems with the 905 really hurt 3Com's reputation. (And it should have!) I can't blame those burned by the bad design for refusing to buy another 3Com product! 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 19 10:42:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from trinity.noc.clara.net (trinity.noc.clara.net [195.8.70.14]) by hub.freebsd.org (Postfix) with ESMTP id 449BF37B403 for ; Thu, 19 Jul 2001 10:42:10 -0700 (PDT) (envelope-from jamie@trinity.noc.clara.net) Received: from jamie by trinity.noc.clara.net with local (Exim 3.22 #1) id 15NHoP-0000Et-00; Thu, 19 Jul 2001 18:42:09 +0100 Date: Thu, 19 Jul 2001 18:42:09 +0100 From: Jamie Heckford To: Bill Moran Cc: freebsd-questions@freebsd.org Subject: Re: Vinum Mirroring question Message-ID: <20010719184209.A809@trinity.noc.clara.net> Reply-To: jamie@uk.clara.net References: <20010719125205.A7545@trinity.noc.clara.net> <3B56E1F0.C65A0117@iowna.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B56E1F0.C65A0117@iowna.com>; from wmoran@iowna.com on Thu, Jul 19, 2001 at 09:34:40AM -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 > You've set it up wrong for what you want to do. > > > # Mirror > > drive vinumdrive3 device /dev/da3a > > drive vinumdrive4 device /dev/da2a > > volume mirror setupstate > > plex name mirror.p0 org concat > > sd name mirror.p0.s0 drive vinumdrive3 size 0b > > sd name mirror.p0.s1 drive vinumdrive4 size 0b > > This creates a contatenated plex, which joins the two partitions to make > one large chunk. > What you want is: > > # Mirror > drive vinumdrive3 device /dev/da3a > drive vinumdrive4 device /dev/da2a > volume mirror setupstate > plex name mirror.p0 org concat > sd name mirror.p0.s0 drive vinumdrive3 size 0b > plex name mirror.p1 org concat > sd name mirror.p1.s0 drive vinumdrive4 size 0b > Thanks all for your help, it's working sweetly now :) Jamie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 10:46:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hades.hell.gr (patr530-a065.otenet.gr [212.205.215.65]) by hub.freebsd.org (Postfix) with ESMTP id 3A72937B408 for ; Thu, 19 Jul 2001 10:46:24 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: by hades.hell.gr (Postfix, from userid 1001) id 723432CB; Thu, 19 Jul 2001 19:09:52 +0300 (EEST) Date: Thu, 19 Jul 2001 19:09:52 +0300 From: Giorgos Keramidas To: Christopher Sean Hilton Cc: freebsd-questions@freebsd.org Subject: Re: Missing man pages stop kernel make process Message-ID: <20010719190951.A8507@hades.hell.gr> References: <0GGP00DVHZ3X0K@jhb-imta.mweb.co.za> <20010719111623.A23220@andale.vindaloo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010719111623.A23220@andale.vindaloo.com>; from chris@vindaloo.com on Thu, Jul 19, 2001 at 11:16:23AM -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 From: Christopher Sean Hilton Subject: Missing man pages stop kernel make process Date: Thu, Jul 19, 2001 at 11:16:23AM -0400 > Has anyone else noticed that there are several missing man pages which cause > the kernel make process to fail. I've been having to do the make install > with the -k for all the modules to get built and installed. > > Is this a known issue with a fix? What version of the sources ? What is the error you are getting while building ? Without a little more details, it's really hard to know what troubles you, and nobody can be of much assistance. -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 19 10:56:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hades.hell.gr (patr530-a065.otenet.gr [212.205.215.65]) by hub.freebsd.org (Postfix) with ESMTP id F34EE37B406 for ; Thu, 19 Jul 2001 10:56:21 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: by hades.hell.gr (Postfix, from userid 1001) id 9980B2CC; Thu, 19 Jul 2001 19:19:53 +0300 (EEST) Date: Thu, 19 Jul 2001 19:19:53 +0300 From: Giorgos Keramidas To: narasimha murthy Cc: freebsd-questions@FreeBSD.org Subject: Re: your mail Message-ID: <20010719191951.A20414@hades.hell.gr> References: <20010719130958.71392.qmail@web11405.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: <20010719130958.71392.qmail@web11405.mail.yahoo.com>; from bnm_susaram@yahoo.com on Thu, Jul 19, 2001 at 06:09:58AM -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 From: narasimha murthy Subject: Date: Thu, Jul 19, 2001 at 06:09:58AM -0700 > iam waiting for more information from you sir > with regards > bnm Information on what? Why? What for? Try to be more specific in what you ask, and you'll get way better answers. This applies in many places, this list included. -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 19 11: 9:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from aji.wilshire.net (worm.wilshire.net [64.161.77.242]) by hub.freebsd.org (Postfix) with ESMTP id 247A037B401 for ; Thu, 19 Jul 2001 11:09:27 -0700 (PDT) (envelope-from rjm@Wilshire.Net) Received: from emilyd (emilyd.wilshire.net [10.100.123.20]) by aji.wilshire.net (8.11.1/8.11.1) with SMTP id f6JI7QK19665 for ; Thu, 19 Jul 2001 11:07:34 -0700 (PDT) From: "Riley J. McIntire" To: "FreeBSD Questions" Subject: One drive, 2 drive entries during 4.3 install Date: Thu, 19 Jul 2001 11:08: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 Howdy, I'm installing 4.3 stable on a machine currently running 4.1-R. New install, but keeping the current partitions. The machine is an old p166 but has a single new IBM 20GB drive in it. What surprised me, and it didn't happen as I recall during the 4.1 install, is two drives are showing up. wd0 and ad0. The drive parameter are the same. What's happening here? Just a choice of drivers? Is this intended--should I be concerned? I chose the ad0 driver. Also am using the 4.1 /stand/sysinstall and editing the release to 4.3-20010718-STABLE. Thanks, Riley Arthur C. Clarke's Fourth Law : It has yet to be proven that intelligence has any survival value. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 11:15:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 89C4537B401 for ; Thu, 19 Jul 2001 11:15:00 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.4/8.11.4) with ESMTP id f6JIEwO34105 for ; Thu, 19 Jul 2001 14:14:59 -0400 (EDT) (envelope-from mi@aldan.algebra.com) Message-Id: <200107191814.f6JIEwO34105@aldan.algebra.com> Date: Thu, 19 Jul 2001 14:14:55 -0400 (EDT) From: Mikhail Teterin Subject: grep and \t (\r, etc.) 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'm trying to clean up the HTML pages from the MSDOS-style EOL characters. Actually removing them is easy: tr -d \\r < in > out does wonders, and, even better (removes spaces at EOL too): perl -pi -e 's/[\r ]+$//g' seems to work, but to find them (I don't want to touch the "good" pages). I can not think of anything but grep. Which I can not make work :( For example: find . -type -name '*.htm*' | xargs grep -E '\r$' just keeps listing all lines which end with ``r''... Any clues? I guess, I'll just write a mini-script in TCL to do checking and rewriting, but this seems like a problem with grep to me... Thanks! -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 11:18:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.corpex.de (mileena.corpex.de [213.61.99.25]) by hub.freebsd.org (Postfix) with ESMTP id A49E237B401 for ; Thu, 19 Jul 2001 11:18:11 -0700 (PDT) (envelope-from pg@philipp.de.com) Received: from saotome.staff.corpex.de ([213.61.99.34] helo=saotome) by mail.corpex.de with smtp (Exim 3.22 #3) id 15NING-0000Jt-00; Thu, 19 Jul 2001 20:18:10 +0200 From: =?us-ascii?Q?Philipp_Gaschutz?= To: "Mikhail Teterin" , Subject: AW: grep and \t (\r, etc.) Date: Thu, 19 Jul 2001 20:17:26 +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.2911.0) In-Reply-To: <200107191814.f6JIEwO34105@aldan.algebra.com> 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! > find . -type -name '*.htm*' | xargs grep -E '\r$' > > just keeps listing all lines which end with ``r''... Any clues? Have you tried to replace ' with " ? or ... \\r ? -p To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 11:30:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from luke.cpl.net (luke.cpl.net [63.169.72.3]) by hub.freebsd.org (Postfix) with ESMTP id 2485737B401 for ; Thu, 19 Jul 2001 11:30:06 -0700 (PDT) (envelope-from shawn@luke.cpl.net) Received: (from root@localhost) by luke.cpl.net (8.11.3/8.11.3) id f6JISZA25676; Thu, 19 Jul 2001 11:28:35 -0700 (PDT) Date: Thu, 19 Jul 2001 11:28:35 -0700 From: Shawn Ramsey To: elina Cc: Isaac Mushinsky , freebsd-questions Subject: Re: BSD for PentiumII Message-ID: <20010719112835.A17296@cpl.net> References: <3B563377.179CA889@cloudfactory.org> <01071902363801.00303@omsk.mushinsky.net> <003501c1106d$f734d900$95867ed8@org.cloudfactory.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <003501c1106d$f734d900$95867ed8@org.cloudfactory.org>; from elina@cloudfactory.org on Thu, Jul 19, 2001 at 09:14:17AM -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 > > Do you mean > > 1. your BIOS cannot boot from CD at all? or perhaps > > This is the problem, > my BIOS cannot boot from the CD. I know I burned the image to the CD > correctly because I have another PC machine and it will boot up fine from > that one. So, If I try making bootable floppies, will it work? if so what > files, or where, do I get them? > I got a lot of responses. Everyone is so willing to help on this list, it's > nice. I'm sure I'll have more questions once I get the OS installed. > > Thanks everyone, > elina You need fdimage.exe out of the tools directory. Then just write mfsroot.flp and kern.flp to the floppies. The images are in the "floppies" directory on the CD. Something like so : tools/fdimage floppies/mfsroot.flp a: See the install guide for more. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-guide.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 11:37:31 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 ADB7C37B401 for ; Thu, 19 Jul 2001 11:37:28 -0700 (PDT) (envelope-from uwi@delfi.lv) Received: from delfi.lv (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 VAA04621 for ; Thu, 19 Jul 2001 21:37:17 +0300 Date: Thu, 19 Jul 2001 21:38:13 +0000 From: uwi mAn To: questions@freebsd.org Subject: netscape6 (linux) Message-ID: <20010719213813.I507@elexis.uwiland.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Balsa 1.1.3 Lines: 8 Sender: owner-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 linux-rpm support though. %./netscape-installer ./netscape-installer-bin: error in loading shared libraries: libgtk-1.2.so.0: cannot open shared object file: No such file or directory No way to install Netscape 6.1 (linux) onto BSD 4.3 release ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 11:40:15 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 3866537B401 for ; Thu, 19 Jul 2001 11:40:13 -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 f6JIXG325514; Thu, 19 Jul 2001 11:33:16 -0700 (PDT) Message-ID: <3B5728F0.5032F985@loudcloud.com> Date: Thu, 19 Jul 2001 11:37:36 -0700 From: Sean Peck X-Mailer: Mozilla 4.74 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: elina Cc: Isaac Mushinsky , freebsd-questions Subject: Re: BSD for PentiumII References: <3B563377.179CA889@cloudfactory.org> <01071902363801.00303@omsk.mushinsky.net> <003501c1106d$f734d900$95867ed8@org.cloudfactory.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 You can create bootable floppies, the manual explains how... of course I would probably invest the time to see if a BIOS upgrade existed for the motherboard to allow CDROM booting.... Its hugely convienent to be able to do so. elina wrote: > ----- Original Message ----- > From: Isaac Mushinsky > To: elina ; freebsd-questions > > Sent: Wednesday, July 18, 2001 11:36 PM > Subject: Re: BSD for PentiumII > > > On Wednesday 18 July 2001 21:10, you wrote: > > > I downloaded freeBSD and burned the installation files onto cd, but my > > > computer with not recognize it as a bootable CD? What do I do? > > > > Do you mean > > 1. your BIOS cannot boot from CD at all? or perhaps > > This is the problem, > my BIOS cannot boot from the CD. I know I burned the image to the CD > correctly because I have another PC machine and it will boot up fine from > that one. So, If I try making bootable floppies, will it work? if so what > files, or where, do I get them? > I got a lot of responses. Everyone is so willing to help on this list, it's > nice. I'm sure I'll have more questions once I get the OS installed. > > Thanks everyone, > elina > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- 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 Thu Jul 19 11:51: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web11605.mail.yahoo.com (web11605.mail.yahoo.com [216.136.172.57]) by hub.freebsd.org (Postfix) with SMTP id 9035137B401 for ; Thu, 19 Jul 2001 11:51:07 -0700 (PDT) (envelope-from dennisjun@yahoo.com) Message-ID: <20010719185107.14311.qmail@web11605.mail.yahoo.com> Received: from [24.42.60.131] by web11605.mail.yahoo.com via HTTP; Thu, 19 Jul 2001 11:51:07 PDT Date: Thu, 19 Jul 2001 11:51:07 -0700 (PDT) From: Dennis Jun Subject: Why is root named "Charlie"? 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 Just outta curiosity, anyone know why root is named "Charlie"? I hope it's not in reference to the BSD Daemon which some people incorrectly refer to as "Chuckie." ;) __________________________________________________ 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 19 12: 4:52 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 06AAF37B409 for ; Thu, 19 Jul 2001 12:04:41 -0700 (PDT) (envelope-from parv@worldnet.att.net) Received: from worldnet.att.net ([32.101.235.74]) by mtiwmhc24.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010719190435.TSNE3707.mtiwmhc24.worldnet.att.net@worldnet.att.net>; Thu, 19 Jul 2001 19:04:35 +0000 Received: by worldnet.att.net (Postfix, from userid 1001) id E9B8550BC5; Thu, 19 Jul 2001 15:08:28 -0400 (EDT) Date: Thu, 19 Jul 2001 15:08:28 -0400 From: parv To: Philipp Gaschutz Cc: Mikhail Teterin , questions@freebsd.org Subject: Re: grep and \t (\r, etc.) Message-ID: <20010719150828.A96584@moo.holy.cow> Mail-Followup-To: Philipp Gaschutz , Mikhail Teterin , questions@freebsd.org References: <200107191814.f6JIEwO34105@aldan.algebra.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: ; from pg@philipp.de.com on Thu, Jul 19, 2001 at 08:17:26PM +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 Jul 19 14:52, i got this from Philipp... > Hi! > > > find . -type -name '*.htm*' | xargs grep -E '\r$' > > > > just keeps listing all lines which end with ``r''... Any clues? > > Have you tried to replace ' with " ? > or ... \\r ? > well i had a script logfile handy, and both of these... # egrep -v '\r' ' # egrep -v '\\r' ' ...didn't match the character right; but this seems to work... # egrep -v ' ' # is generated via ctrl-v,ctrl-m ...that printed only script start & end times. also, perl can use '\cM' to represent ctrl-v,ctrl-m character... -- 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 Thu Jul 19 12:15:32 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 048A537B406 for ; Thu, 19 Jul 2001 12:15:22 -0700 (PDT) (envelope-from ertr1013@student.uu.se) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by mailb.telia.com (8.9.3/8.9.3) with ESMTP id VAA12013 for ; Thu, 19 Jul 2001 21:15:19 +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 VAA16345 for ; Thu, 19 Jul 2001 21:15:17 +0200 (CEST) Received: (qmail 14804 invoked by uid 1001); 19 Jul 2001 19:14:34 -0000 Date: Thu, 19 Jul 2001 21:14:33 +0200 From: Erik Trulsson To: Philipp Gaschutz Cc: Mikhail Teterin , questions@FreeBSD.ORG Subject: Re: AW: grep and \t (\r, etc.) Message-ID: <20010719211433.A14600@student.uu.se> Mail-Followup-To: Philipp Gaschutz , Mikhail Teterin , questions@FreeBSD.ORG References: <200107191814.f6JIEwO34105@aldan.algebra.com> 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 Thu, Jul 19, 2001 at 08:17:26PM +0200, Philipp Gaschutz wrote: > Hi! > > > find . -type -name '*.htm*' | xargs grep -E '\r$' > > > > just keeps listing all lines which end with ``r''... Any clues? > > Have you tried to replace ' with " ? > or ... \\r ? Won't help. If you check the manpage for grep you will see that the regular expressions it use don't know anything about control characters (including carriage return.) One solution is to make sure that the search pattern which gets passed to grep contains an actual carriage return. (Then grep will match that character literally just as it would with any normal character.) The following little C program will invoke grep in such a manner. It takes one filename as an argument which is then passed on to grep as the file to search through. It could be invoked instead of "grep -E '\r$'" above as long as you only pass it one filename at a time. #include #include char * args[] = { "grep", "\015$", NULL, NULL }; char * envp[] = { NULL }; int main(int argc,char *argv[]) { if(argc < 2) return EXIT_FAILURE; args[2] = argv[1]; execve("/usr/bin/grep",args,envp); exit(EXIT_FAILURE); } -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 12:20:19 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-215.dsl.lsan03.pacbell.net [63.207.60.215]) by hub.freebsd.org (Postfix) with ESMTP id 944E937B401 for ; Thu, 19 Jul 2001 12:20:16 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 68CE366C4D; Thu, 19 Jul 2001 12:20:15 -0700 (PDT) Date: Thu, 19 Jul 2001 12:20:14 -0700 From: Kris Kennaway To: Veaceslav Revutchi Cc: freebsd-questions@FreeBSD.ORG Subject: Re: underscore in hostnames (dns problem) Message-ID: <20010719122014.G43977@xor.obsecurity.org> References: <20010719152038.A16848@zeus.dnt.md> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="hK8Uo4Yp55NZU70L" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010719152038.A16848@zeus.dnt.md>; from sl@zeus.dnt.md on Thu, Jul 19, 2001 at 03:20:38PM +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 --hK8Uo4Yp55NZU70L Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 19, 2001 at 03:20:38PM +0300, Veaceslav Revutchi wrote: >=20 > Troubleshooting a mail problem today I discovered that the MX record > for the destination address has an underscore in it, something like > that: acb_def.domain.org >=20 > when I use dig it reports the IP for this weird hostname, but > if I try to ping or telnet to it I get respectively: >=20 > ping: cannot resolve abc_def.domain.org: Unknown server error > abc.def.domain.org: Non-recoverable failure in name resolution >=20 > ping and telnet is able to resolve the name on linux though. >=20 > Do I have to contact those responsible for that domain and=20 > point them to the problem of is underscore allowed in zone file? Yes. They're probably MCSEs and used to naming machines with _'s in the name :-) Kris --hK8Uo4Yp55NZU70L 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 iD8DBQE7VzLtWry0BWjoQKURAqUpAJ0bzjzdSEb5wq1LrVD+qgmZlaVOowCbBCB8 1tRkmzWBc6l9tvHmtpzwnLg= =XJRd -----END PGP SIGNATURE----- --hK8Uo4Yp55NZU70L-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 12:23:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f299.law10.hotmail.com [64.4.14.174]) by hub.freebsd.org (Postfix) with ESMTP id 2E34837B408 for ; Thu, 19 Jul 2001 12:23:55 -0700 (PDT) (envelope-from ex279@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 19 Jul 2001 12:23:54 -0700 Received: from 205.228.172.82 by lw10fd.law10.hotmail.msn.com with HTTP; Thu, 19 Jul 2001 19:23:54 GMT X-Originating-IP: [205.228.172.82] From: "Todd Reed" To: jake@coolbluei.com Cc: freebsd-questions@freebsd.org Subject: Re: Apache and SSL Date: Thu, 19 Jul 2001 14:23:54 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 19 Jul 2001 19:23:54.0978 (UTC) FILETIME=[59B5FC20:01C11088] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm using the link I was given below and everything is going well, however, I've gotten to a point where I'm stuck. After I configure the mod_ssl, it tells me to cd into the apache install directory. I do that and when I type in: SSL_BASE=../openssl-0.9.6b RSA_BASE=../rsaref20/local I get a message saying command not found. I tried typing it in as it stated with the \, but that didn't work either. Any clues? --Todd >From: Jacob Smith >To: "Todd Reed" >Subject: Re: Apache and SSL >Date: Wed, 18 Jul 2001 19:18:53 -0400 > > >On Wednesday, July 18, 2001, at 06:59 PM, Todd Reed wrote: > >>I had originally tried installing it straight from the >>/stand/sysinstall. I had previously had apache setup. When I send to >>install the mod-ssl and the ssl, rebooted, and couldn't get it to >>work. I uninstalled everything and had to reinstall apache like it >>was. I've downloaded the latest mod-ssl, openssl, rsaref, and php. I >>thought I could download the files and install the options from the >>downloaded files. Is there a better way? >> >>Currently I have apache running like I want it to. I would like to ad >>SSL and PHP capabilities. Run a httpd and httpsd. Any suggestions on >>a good way to do this with Apache already installed? >> >> > >check out this article it should work great for this situation: > >http://devshed.com/Server_Side/PHP/SoothinglySeamless/ > >worked great for me > >Jake Smith > > > >>>From: Christoph Sold >>>Reply-To: so@server.i-clue.de >>>To: Todd Reed >>>CC: freebsd-questions@FreeBSD.ORG >>>Subject: Re: Apache and SSL >>>Date: Wed, 18 Jul 2001 19:18:07 +0200 >>> >>> >>> >>>Todd Reed schrieb: >>> > >>> > I've got my Apache web server up and running, but I'd like to also >>>add SSL. >>> > Does anyone have any good references for Apache and SSL? I've >>>checked out >>> > the modssl and openssl, but I'm having trouble getting them >>>installed. >>> >>>Why don't you just install /usr/ports/www/apache+mod_ssl-1.3.x+2.8.x ? >>>It worked for me without any problems. >>> >>>HTH >>>-Christoph Sold >> >>_________________________________________________________________ >>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 >> _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 12:34: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from quasar.phys.vt.edu (quasar.phys.vt.edu [128.173.176.36]) by hub.freebsd.org (Postfix) with ESMTP id 8417937B406; Thu, 19 Jul 2001 12:33:55 -0700 (PDT) (envelope-from sucho2@quasar.phys.vt.edu) Received: from localhost (sucho2@localhost) by quasar.phys.vt.edu (8.11.0/8.11.0) with ESMTP id f6JJXla03410; Thu, 19 Jul 2001 15:33:47 -0400 Date: Thu, 19 Jul 2001 15:33:47 -0400 (EDT) From: Sung Nae Cho To: Laurence Berland Cc: Kashyap Kumar , , Subject: Re: buildworld failing (was: No Subject) 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, What does your make.conf file look like? Are you making modifications to your /etc/defaults/make.conf file? I had similar problem when I had C++FLAGS turned on. Also, does anyone know that if Intel Celeron Processor should be classified as CPUTYPE=p2 or CPUTYPE=i686? I am using CPUTYPE=p2 since it's basically Pentium2 with smaller cache size. Yours sincerely, Sung N. Cho, Thursday, July 18, 2001. On Thu, 19 Jul 2001, Laurence Berland wrote: > > Try putting a subject next time, so people who know how to help you will > read the email, and everyone else doesn't need to waste time with it. > Otherwise, the tendency is for everyone to ignore it. When you get > hundreds of emails a day, it needs to be pretty obvious that you might be > of help... > > On Thu, 19 Jul 2001, Kashyap Kumar wrote: > > > Hi, > > > > I asked this problem earlier but nobody help me. I have this problem since i > > cvsuped one of my servers last week. and again i cvsuped today 19/07/2001. > > But the problem is there.. make buildworld stops at following location. > > > > i am using freebsd 4.3 Stable.. > > > > FreeBSD bsd.bg.com 4.3-STABLE FreeBSD 4.3-STABLE #0: Wed May 30 12:25:43 EST > > 2001 root@bsd.bg.com:/usr/src/sys/compile/BSG i386 > > > > > > here is where it stops > > > > > > cd /usr/src/lib/libncurses; make build-tools > > sh /usr/src/lib/libncurses/../../contrib/ncurses/include/MKhashsize.sh > > /usr/src/lib/libncurses/../../contrib/ncurses/include/Caps > hashsize.h > > Segmentation fault - core dumped > > sed > >curses.h -e "/@NCURSES_MAJOR@/s//5/" -e "/@NCURSES_MINOR@/s//1/" -e > > "/@NCURSES_PATCH@/s//20001009/" -e "/@NCURSES_CONST@/s///" -e > > "s/@cf_cv_builtin_bool@/1/g" -e "s/@cf_cv_cc_bool_type@/0/g" -e > > "s/@cf_cv_type_of_bool@/char/g" -e "s/@cf_cv_typeof_chtype@/long/g" -e > > "s/@cf_cv_widec_shift@/8/g" -e "s/@cf_cv_shift_limit@/32/g" -e > > "s/@cf_cv_1UL@/1UL/g" > > AWK=awk sh > > /usr/src/lib/libncurses/../../contrib/ncurses/include/MKncurses_def.sh > > /usr/src/lib/libncurses/../../contrib/ncurses/include/ncurses_defs > > > ncurses_def.h > > cc -o make_hash -O -pipe -I. -I/usr/src/lib/libncurses > > -I/usr/src/lib/libncurses/../../contrib/ncurses/ncurses > > -I/usr/src/lib/libncurses/../../contrib/ncurses/include -Wall > > -DFREEBSD_NATIVE -DNDEBUG -DHAVE_CONFIG_H -DTERMIOS -DMAIN_PROGRAM > > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c > > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c: In > > function `_nc_make_hash_table': > > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:78: > > syntax error before `;' > > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:78: > > syntax error before `)' > > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:75: > > warning: `hashvalue' might be used uninitialized in this function > > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c: At > > top level: > > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:90: > > syntax error before `}' > > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:54: > > warning: `hash_function' declared `static' but never defined > > /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:73: > > warning: `_nc_make_hash_table' defined but not used > > *** Error code 1 > > > > Stop in /usr/src/lib/libncurses. > > *** Error code 1 > > > > Stop in /usr/src. > > *** Error code 1 > > > > Stop in /usr/src. > > *** Error code 1 > > > > Stop in /usr/src. > > > > > > _________________________________________________________________ > > Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > Laurence Berland > http://www.isp.northwestern.edu > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 19 13: 1: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 148D137B409 for ; Thu, 19 Jul 2001 13:01:14 -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 f6JJxqe01583; Thu, 19 Jul 2001 16:59:53 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Thu, 19 Jul 2001 16:59:51 -0300 (ART) From: Fernando Gleiser To: "Gerald T. Freymann" Cc: Subject: Re: encyrtion method in perl ? In-Reply-To: <002101c11075$64d3ba60$0f01a8c0@phantom> Message-ID: <20010719154413.F615-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 Take a look at the p5-Crypt* ports. Fer On Thu, 19 Jul 2001, Gerald T. Freymann wrote: > Sorta off-topic, > > but does somebody have a handy routine that can take a string and > encyrpt/decrypt it? > > I need to be able to write the encrypted string to a text file, and read it > back later and decode it, print it on the screen... > > tried "pack" but it uses some characters that prevent you from reading it > back successfully 100% of the time. > > -gf > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 13: 8:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f13.law11.hotmail.com [64.4.17.13]) by hub.freebsd.org (Postfix) with ESMTP id EB7A837B401 for ; Thu, 19 Jul 2001 13:08:09 -0700 (PDT) (envelope-from nealster02@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 19 Jul 2001 13:08:09 -0700 Received: from 66.21.217.191 by lw11fd.law11.hotmail.msn.com with HTTP; Thu, 19 Jul 2001 20:08:09 GMT X-Originating-IP: [66.21.217.191] From: "Neal K." To: freebsd-questions@FreeBSD.ORG Subject: I need your help! Date: Thu, 19 Jul 2001 15:08:09 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 19 Jul 2001 20:08:09.0680 (UTC) FILETIME=[88095D00:01C1108E] Sender: owner-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 Whom It May Concern: It is recorded that thousands, if not millions, of people daily log on to the Internet to connect to many different chat communities and many different servers. However, not all servers can be trusted. Many servers are not fully cleaned of illegal material, such as pornography and warez, or inappropriate language, such as curse and hate words. This is not an environment that people need to be in. This will only cause peoples minds to get accustomed to the inappropriate and/or illegal materials, making them want to say or do the same. It has been my dream for the past year to create my own clean chat community. I wish to create a chat server, and provide the entire Internet with a clean and fun environment for the whole family to participate in! However, I need your help. It is apparent you’re your company is fervent in cleansing the Internet. It is time, now, to take the next step. Please help me sponsor this great endeavor by donating to this more than worthy cause. I have found a service, which will provide a domain name for us at a very low cost. If, however, your company wishes to help provide us with a registered domain name, we will be more than obliged. I have also discovered the software, which will become our clean chat server. The “Smart Checker” technology provided will be activated on all chat rooms, scanning the room for inappropriate language. For example smart checker will, in real time, accurately filter out banned words in messages, channel names, topics and nicknames, even when they are buried inside long continuous strings. My question to you is, would you like to help sponsor this great endevour? We are simply asking for a donation and your support with helping us get a domain name, website, and server that will keep our server running for us. This is a great idea, that people don't usually think of. I believe that this will be a server of great popularity over time. Our server will be run on the latest addition of IRCplus. If you would like to help support us in anyway you can, please respond to this e-mail. I thank you for your support, time and patience. Neal Kirby Paving the way for a cleaner chat experience. _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 13:17:19 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 45E6837B403 for ; Thu, 19 Jul 2001 13:17:15 -0700 (PDT) (envelope-from hamellr@1nova.com) Received: by heorot.1nova.com (Postfix, from userid 1000) id A510E18DC; Thu, 19 Jul 2001 13:17:16 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 9098A18DB; Thu, 19 Jul 2001 13:17:16 -0700 (PDT) Date: Thu, 19 Jul 2001 13:17:16 -0700 (PDT) From: Rick Hamell To: "Neal K." Cc: freebsd-questions@FreeBSD.ORG Subject: Re: I need your help! 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 Tell you what... I'll help if you: A. Get Microsoft to release a product that can stay turned on longer then 5 minutes without me saying "God *@$!(&)*(&#*(@!& @!@#king Microsoft! B.) Figure out to to make politicians honest so I don't have to shake my head and say ,"What the *(#@!)#*@(!_ were they thinking?" and C.) Teach people to drive so I don't have to say "Get )(&$@#!*()& out of the ()#&@!)(&!@()*&*#@*(!&@ stupid )#(@!*_)#(@!*#!*_@ moron before I ram this car up your #*@()*#&!@(*&#(! and send you back to *$(@!*@()*&#)*!@&^#&! California. There will be MUCH less cussing, at least on my part, if this all happened... :) Have a #@!*&#*(!@&* nice day! Rick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 13:45:44 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 3179E37B401 for ; Thu, 19 Jul 2001 13:45:41 -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 4E4AC177 for ; Thu, 19 Jul 2001 12:45:40 -0800 (AKDT) Content-Type: text/plain; charset="iso-8859-1" From: Beech Rintoul To: freebsd-questions@freebsd.org Subject: netcraft uptime Date: Thu, 19 Jul 2001 12:45:40 -0800 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <01071912454000.51519@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 I was looking at netcraft's site today and noticed that uptime doesn't work with FBSD servers. Anyboy have any info on this? Like how they do it and can my server be configured to show it? TIA 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 Thu Jul 19 13:54:42 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 8E33737B408 for ; Thu, 19 Jul 2001 13:54:33 -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 GGQNC803.LFM; Thu, 19 Jul 2001 16:52:56 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6JKqXS01586; Thu, 19 Jul 2001 16:52:33 -0400 (EDT) (envelope-from ipt) Date: Thu, 19 Jul 2001 16:52:30 -0400 From: User & Ian Patrick Thomas To: Victor M Cc: freebsd-questions@freebsd.org Subject: Re: problem Message-ID: <20010719165230.A1458@localhost> 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 vit@email.orgus.ru on Thu, Jul 19, 2001 at 05:25:05PM +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 As it was put forth by Victor M on Thu, Jul 19, 2001 at 05:25:05PM +0600... > I can't add packages to my FreeBSD 4.1.1 from the primary ftp.FreeBSD > site. > > /stand/sysinstall crashes with the message: Segmentation fault. > > What happened? > There were no problems with this earlier. > > I had to install all I needed from the France ftp.freebsd site. > > Victor. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message I don't think the main site tracks 4.1, only the packages and ports for the latest release. You can cvsup to 4.3 or use the ports. Either solution shouldn't prove to difficult. Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 14: 4:40 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 B526A37B405 for ; Thu, 19 Jul 2001 14:04:36 -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 f6JL1WQ01105; Thu, 19 Jul 2001 22:01:32 +0100 (BST) (envelope-from rdls) Date: Thu, 19 Jul 2001 22:01:31 +0100 From: Richard Smith To: Marcus Obst Cc: freebsd-questions@freebsd.org Subject: Re: close on non-blocking socket Message-ID: <20010719220131.A1027@gaia.home.rdls.net> References: <20010719183130.A7106@apfel.sax.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010719183130.A7106@apfel.sax.de>; from mobst@apfel.sax.de on Thu, Jul 19, 2001 at 06:31:30PM +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 19, 2001 at 06:31:30PM +0200, Marcus Obst wrote: > Hello, > > I am in doubt about the following; > what happens when a non-blocking socket that still has pending outgoing > data is closed? In my network book (by R. Stevens) I read that TCP will > try to flush the data already queued in the output buffer. But in the > FreeBSD man page of close I got: > > on the last close of a socket(2) associated naming information and > queued data are discarded > ~~~~~~~~~~~~~~~~~~~~~~~~~ > > What's right ...? The behaviour of close(2) in this case, is modified by SO_LINGER (see getsockopt(2)). 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 19 14: 4:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay2.adelphia.net (smtprelay2.adelphia.net [64.8.25.7]) by hub.freebsd.org (Postfix) with ESMTP id 0834937B403 for ; Thu, 19 Jul 2001 14:04:53 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay2.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGQNWU01.QF4; Thu, 19 Jul 2001 17:05:18 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6JL2rF01665; Thu, 19 Jul 2001 17:02:53 -0400 (EDT) (envelope-from ipt) Date: Thu, 19 Jul 2001 17:02:53 -0400 From: User & Ian Patrick Thomas To: Matt Crawford Cc: freebsd-questions@freebsd.org Subject: Re: Problem with sysmouse protocol or XFree86 4.0 Message-ID: <20010719170253.B1458@localhost> References: <200107191534.f6JFYXF23511@gungnir.fnal.gov> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200107191534.f6JFYXF23511@gungnir.fnal.gov>; from crawdad@fnal.gov on Thu, Jul 19, 2001 at 10:34:33AM -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 As it was put forth by Matt Crawford on Thu, Jul 19, 2001 at 10:34:33AM -0500... > I've just done a from-scratch reinstallation of FreeBSD 4.3 with > XFree86 4.0.2 on a Sony Vaio laptop with an ALPS glidepoint > touchpad. (I don't know how much of this is relevant.) If I run > "moused -3 -p /dev/psm0" the mouse works find in the system console > mode. But then using the following mouse definitions in XF86Config: > > Section "InputDevice" > # Identifier and driver > Identifier "Mouse1" > Driver "mouse" > Option "Protocol" "SysMouse" > Option "Device" "/dev/sysmouse" > EndSection > # ... > Section "ServerLayout" > # The Identifier line must be present > Identifier "Simple Layout" > Screen "Screen 1" > InputDevice "Mouse1" "CorePointer" > InputDevice "Keyboard1" "CoreKeyboard" > EndSection > > > I diagnose the following problem with the help of xev: ButtonRelease > events are not being received until the next ButtonPress or > MotionNotify event. > > If I kill moused and run the server as 'XFree86 -layout "Raw Mouse Device"' > with the following sections added to XF86Config, everything works > great, including taps on the touchpad being interpretted as button 1: > > > Section "InputDevice" > # Identifier and driver > Identifier "Mouse0" > Driver "mouse" > Option "Protocol" "PS/2" > Option "Device" "/dev/psm0" > # Emulate3Buttons is an option for 2-button Microsoft mice > # Emulate3Timeout is the timeout in milliseconds (default is 50ms) > Option "Emulate3Buttons" > Option "Emulate3Timeout" "100" > EndSection > # ... > Section "ServerLayout" > # The Identifier line must be present > Identifier "Raw Mouse Device" > Screen "Screen 1" > InputDevice "Mouse0" "CorePointer" > InputDevice "Keyboard1" "CoreKeyboard" > EndSection > > > So I don't know if this is a problem in moused or in X .. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message I have had problems using sysmouse in X also. This is a regular ps/2 logitech with three buttons. Buttons do not respond well and it takes alot more movement to get the pointer across the screen. I switched to using the raw mouse support in X as it works much better. I'm currently working on a script that would suspend moused or stop it once X starts and restart it once I exit out of an X session. I'll post it to the list if it is any good. Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 14: 9:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay2.adelphia.net (smtprelay2.adelphia.net [64.8.25.7]) by hub.freebsd.org (Postfix) with ESMTP id 8B26D37B403 for ; Thu, 19 Jul 2001 14:09:53 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay2.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGQO5702.8F8; Thu, 19 Jul 2001 17:10:19 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6JL7rr01704; Thu, 19 Jul 2001 17:07:53 -0400 (EDT) (envelope-from ipt) Date: Thu, 19 Jul 2001 17:07:53 -0400 From: User & Ian Patrick Thomas To: "Riley J. McIntire" Cc: freebsd-questions@freebsd.org Subject: Re: One drive, 2 drive entries during 4.3 install Message-ID: <20010719170753.C1458@localhost> 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 rjm@Wilshire.Net on Thu, Jul 19, 2001 at 11:08:56AM -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 As it was put forth by Riley J. McIntire on Thu, Jul 19, 2001 at 11:08:56AM -0700... > Howdy, > > I'm installing 4.3 stable on a machine currently running 4.1-R. New > install, but keeping the current partitions. > > The machine is an old p166 but has a single new IBM 20GB drive in it. > What surprised me, and it didn't happen as I recall during the 4.1 > install, is two drives are showing up. wd0 and ad0. The drive > parameter are the same. What's happening here? Just a choice of > drivers? Is this intended--should I be concerned? > > I chose the ad0 driver. Also am using the 4.1 /stand/sysinstall and > editing the release to 4.3-20010718-STABLE. > > Thanks, > > Riley > > Arthur C. Clarke's Fourth Law : It has yet to be proven that > intelligence has any survival value. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message This may have been when drive identifiers went from wd to ad. Both labels mean the same thing. /usr/src/UPDATING may have more information as well as the freebsd-stable mailing list. Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 14:20:56 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 6856F37B407 for ; Thu, 19 Jul 2001 14:20:52 -0700 (PDT) (envelope-from teo@gecadsoftware.com) Received: (qmail 8194 invoked from network); 19 Jul 2001 21:22:06 -0000 Received: from unknown (HELO taz.gecadsoftware.com) (193.230.245.17) by antares.gecadsoftware.com with SMTP; 19 Jul 2001 21:22:06 -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 PHC02LLV; Fri, 20 Jul 2001 00:18:23 +0300 Received: (qmail 939 invoked by uid 500); 19 Jul 2001 21:18:20 -0000 Date: Fri, 20 Jul 2001 00:18:20 +0300 From: teo@gecadsoftware.com To: freebsd-questions@freebsd.org Subject: Re: netcraft uptime Message-ID: <20010720001820.A585@gecadsoftware.com> Reply-To: teo@gecadsoftware.com Mail-Followup-To: teo@gecadsoftware.com, freebsd-questions@freebsd.org References: <01071912454000.51519@galaxy.anchoragerescue.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.15i In-Reply-To: <01071912454000.51519@galaxy.anchoragerescue.org>; from akbeech@anchoragerescue.org on Thu, Jul 19, 2001 at 12:45:40PM -0800 Organization: GeCAD Software Comment: Worry less, RAV is watching! X-Operating-System: Linux 2.2.16 i686 up 1 min, 1 user, load average: 0.63, 0.22, 0.08 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Beech! On Thu, 19 Jul 2001, Beech Rintoul wrote: > I was looking at netcraft's site today and noticed that uptime doesn't work > with FBSD servers. Anyboy have any info on this? Like how they do it and can > my server be configured to show it? > [wild guess] AFAIK the uptime is guessed using actually a flaw in TCP/IP; I saw that first time implemented in nmap, and I guess you cannot do it w/ FreeBSD -- teodor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 14:21:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from fnal.gov (heffalump.fnal.gov [131.225.9.20]) by hub.freebsd.org (Postfix) with ESMTP id 8C66437B403 for ; Thu, 19 Jul 2001 14:21:32 -0700 (PDT) (envelope-from crawdad@gungnir.fnal.gov) Received: from gungnir.fnal.gov ([131.225.80.1]) by smtp.fnal.gov (PMDF V6.0-24 #37519) with ESMTP id <0GGQ00LOMONVFX@smtp.fnal.gov> for freebsd-questions@freebsd.org; Thu, 19 Jul 2001 16:21:31 -0500 (CDT) Received: from gungnir.fnal.gov (localhost [127.0.0.1]) by gungnir.fnal.gov (8.10.2+Sun/8.10.2) with ESMTP id f6JLL0F01035; Thu, 19 Jul 2001 16:21:00 -0500 (CDT) Date: Thu, 19 Jul 2001 16:21:00 -0500 From: Matt Crawford Subject: Re: Problem with sysmouse protocol or XFree86 4.0 In-reply-to: "19 Jul 2001 17:02:53 EDT." <20010719170253.B1458@localhost> To: User & Ian Patrick Thomas Cc: freebsd-questions@freebsd.org Message-id: <200107192121.f6JLL0F01035@gungnir.fnal.gov> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > I diagnose the following problem with the help of xev: ButtonRelease > > events are not being received until the next ButtonPress or > > MotionNotify event. > > ... > I have had problems using sysmouse in X also. This is a regular > ps/2 logitech with three buttons. Buttons do not respond well and it > takes alot more movement to get the pointer across the screen. Someone from the xfree86 listed sent me a fast reply that I had to change Option "Protocol" "SysMouse" to Option "Protocol" "Auto" I did that and now it works perfectly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 14:26: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-215.dsl.lsan03.pacbell.net [63.207.60.215]) by hub.freebsd.org (Postfix) with ESMTP id 4AAE637B412 for ; Thu, 19 Jul 2001 14:25:55 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 7370B66C4D; Thu, 19 Jul 2001 14:25:53 -0700 (PDT) Date: Thu, 19 Jul 2001 14:25:52 -0700 From: Kris Kennaway To: Beech Rintoul Cc: freebsd-questions@FreeBSD.ORG Subject: Re: netcraft uptime Message-ID: <20010719142552.A73397@xor.obsecurity.org> References: <01071912454000.51519@galaxy.anchoragerescue.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="MGYHOYXEY6WxJCY8" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <01071912454000.51519@galaxy.anchoragerescue.org>; from akbeech@anchoragerescue.org on Thu, Jul 19, 2001 at 12:45:40PM -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 --MGYHOYXEY6WxJCY8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 19, 2001 at 12:45:40PM -0800, Beech Rintoul wrote: > I was looking at netcraft's site today and noticed that uptime doesn't wo= rk=20 > with FBSD servers. Anyboy have any info on this? Like how they do it and = can=20 > my server be configured to show it? Enable rfc 1323 extensions in rc.conf Kris --MGYHOYXEY6WxJCY8 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 iD8DBQE7V1BfWry0BWjoQKURAii1AKCP7cXl8abfwy0OkpdKtAU7NxfMWwCgkL0u EhUyHIXNguPziufxm3ODqmQ= =C8oJ -----END PGP SIGNATURE----- --MGYHOYXEY6WxJCY8-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 14:27:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f90.law3.hotmail.com [209.185.241.90]) by hub.freebsd.org (Postfix) with ESMTP id A212237B401 for ; Thu, 19 Jul 2001 14:27:36 -0700 (PDT) (envelope-from vungtau@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 19 Jul 2001 14:27:36 -0700 Received: from 64.174.64.235 by lw3fd.law3.hotmail.msn.com with HTTP; Thu, 19 Jul 2001 21:27:36 GMT X-Originating-IP: [64.174.64.235] From: "Phuoc Nguyen" To: ipthomas_77@yahoo.com Cc: freebsd-questions@freebsd.org Subject: Re: Can not configure XFree86 Server for ATI Rage Fury Pro 32MB AGP Date: Thu, 19 Jul 2001 21:27:36 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 19 Jul 2001 21:27:36.0539 (UTC) FILETIME=[A14E52B0:01C11099] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I use FreeBSD4.2; thus, I think my version is 4.X. BTW, what is the name of video card you had chosen? My video card is Rage Fury Pro 32 MB AGP but I do not see it in the video card list of FreeBSD4.2 Thanks. From: User & Ian Patrick Thomas To: Phuoc Nguyen CC: freebsd-questions@freebsd.org Subject: Re: Can not configure XFree86 Server for ATI Rage Fury Pro 32MB AGP Date: Wed, 18 Jul 2001 23:08:24 -0400 Which version of X are you using, 3.3.6 or 4 from the ports? I had problems with this card in 3.3.6, but it works well in 4. Ian As it was put forth by Phuoc Nguyen on Thu, Jul 19, 2001 at 02:30:58AM -0000... > Hi, > > I can not configure XFree86 Server for my ATI Rage Fury Pro 32MB AGP Video > Card. I had tried many ATI card names but it does not work! > > Please let me know how I can fix it or what is the name of the ATI card I > should choose. > > Thanks, > > Phuoc > _________________________________________________________________ > 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 _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 14:31:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from email03.aon.at (WARSL401PIP7.highway.telekom.at [195.3.96.115]) by hub.freebsd.org (Postfix) with SMTP id D8C2C37B401 for ; Thu, 19 Jul 2001 14:31:36 -0700 (PDT) (envelope-from sperber@w3.brgkepler.asn-graz.ac.at) Received: (qmail 431188 invoked from network); 19 Jul 2001 21:31:34 -0000 Received: from l0820p09.dipool.highway.telekom.at ([62.46.166.105]) (envelope-sender ) by qmail3.highway.telekom.at (qmail-ldap-1.03) with SMTP for ; 19 Jul 2001 21:31:34 -0000 Date: Thu, 19 Jul 2001 23:32:03 +0000 (GMT) From: Sperber X-X-Sender: To: , Subject: fxtv, to slow Message-ID: <20010719233047.U2656-100000@www.omega-project.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 Hi! I just upgraded my computer and since this upgrade my tv doesn't work properly any more. - It's too slow. I had a K6-2 500 and a PCI (Riva TNT2) graphic card, now i have a Thunderbird 1.2 Ghz and a Geforce 2 MX (AGP). When I maximise the fxtv window it is suddenly interlaced and shadows of former pictures stay... - I tried several things, but nothing worked... It's also intressting that my dga test is slower than the one of my cousin who has a Celeron 300, Matrox Milenium G450. I hope someone can help me. Thx in advance Sperber <-- dga output--> 1 addr:0x28400000, width 1600, bank size 33554432, depth 24 planes Framebuffer write speed: 199168K/s Framebuffer read speed: 6055K/s <-- --> <-- 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: Thu Jul 19 00:00:44 GMT 2001 root@www.omega-project.net:/usr/src/sys/compile/OMEGA Timecounter "i8254" frequency 1193182 Hz CPU: AMD Athlon(tm) Processor (1202.13-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x642 Stepping = 2 Features=0x183f9ff AMD Features=0xc0440000<,AMIE,DSP,3DNow!> real memory = 805240832 (786368K bytes) avail memory = 778756096 (760504K bytes) Preloaded elf kernel "kernel" at 0xc046d000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc046d09c. VESA: v3.0, 32768k memory, flags:0x1, mode table:0xc03e5bc2 (1000022) VESA: NVidia Pentium Pro MTRR support enabled 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 pci1: at 0.0 irq 11 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xd000-0xd00f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xd400-0xd41f irq 9 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered ums0: Microsoft Microsoft IntelliMouse\M-. Optical, rev 1.10/1.08, addr 2, iclass 3/1 ums0: 5 buttons and Z dir. uhid0: THRUSTMASTER Top Gun Afterburner, rev 1.10/1.00, addr 3, iclass 3/0 uhci1: port 0xd800-0xd81f irq 9 at device 7.3 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered chip1: at device 7.4 on pci0 sym0: <810a> port 0xdc00-0xdcff mem 0xdd000000-0xdd0000ff irq 11 at device 14.0 on pci0 sym0: No NVRAM, ID 7, Fast-10, SE, parity checking ed0: port 0xe000-0xe01f irq 5 at device 15.0 on pci0 ed0: address 48:54:e8:29:89:8c, type NE2000 (16 bit) isic0: port 0xe400-0xe41f mem 0xdd001000-0xdd00101f irq 9 at device 16.0 on pci0 isic0: ISAC 2085 Version A1/A2 or 2086/2186 Version 1.1 (IOM-2) bktr0: mem 0xdd002000-0xdd002fff irq 11 at device 17.0 on pci0 iicbb0: on bti2c0 iicbus0: on iicbb0 master-only smbus0: on bti2c0 bktr0: Hauppauge Model 61314 B1M bktr0: Detected a MSP3410D-B4 at 0x80 bktr0: Hauppauge WinCast/TV, Philips PAL I tuner, msp3400c stereo. pci0: (vendor=0x109e, dev=0x0878) at 17.1 irq 11 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 MouseMan+, 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 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,0x300-0x301,0x388-0x38b irq 10 drq 1,5 on isa0 pcm0: on sbc1 IPv6 packet filtering initialized, logging limited to 100 packets/entry i4b: ISDN call control device attached i4brbch: 4 raw B channel access device(s) attached i4bipr: 4 IP over raw HDLC ISDN device(s) attached (VJ header compression) i4bctl: ISDN system control port attached i4btrc: 4 ISDN trace device(s) attached i4bisppp: 4 ISDN SyncPPP device(s) attached IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to deny, logging limited to 100 packets/entry by default i4btel: 2 ISDN telephony interface device(s) attached IP Filter: v3.4.16 initialized. Default = pass all, Logging = enabled ad0: 3445MB [7000/16/63] at ata0-master WDMA2 ad1: 24405MB [49585/16/63] at ata0-slave UDMA66 ad2: 514MB [1046/16/63] at ata1-master PIO3 acd0: CDROM at ata1-slave using PIO4 Waiting 15 seconds for SCSI devices to settle Mounting root from ufs:/dev/ad1s1a cd0 at sym0 bus 0 target 0 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 10.000MB/s transfers (10.000MHz, offset 8) cd0: cd present [331608 x 2048 byte records] <-- --> ----------------------------* signature *----------------------------- | _ | | ~\\_ | | \\\\ | | ... .--. . .-. -... . .-. `\\\\\ | | |\\\\\ | | \\\\\|__.--~~\ | | _--~ / | | /~ ////// _-~~~~' | | sperber@w3.brgkepler.asn-graz.ac.at ('-//////-// | | http://sperber.cjb.net //////(((-) | | /////" | | _///" | | ~ | ---------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 14:33:12 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 2E3D537B403 for ; Thu, 19 Jul 2001 14:33:09 -0700 (PDT) (envelope-from jasapp@pelennor.net) Received: by mail.pelennor.net (Mail, from userid 1003) id EE94F79A; Thu, 19 Jul 2001 16:33:05 -0500 (CDT) Date: Thu, 19 Jul 2001 16:33:05 -0500 From: Jeff Sapp To: Beech Rintoul Cc: freebsd-questions@freebsd.org Subject: Re: netcraft uptime Message-ID: <20010719163305.A27165@pelennor.net> References: <01071912454000.51519@galaxy.anchoragerescue.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <01071912454000.51519@galaxy.anchoragerescue.org>; from akbeech@anchoragerescue.org on Thu, Jul 19, 2001 at 12:45:40PM -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 I believe that they figure a computer's uptime by looking at the timestamp option of tcp packets. The field is incremented every 500ms, and is set to 0 on reboot. You can turn the tcp options on by: sysctl -w net.inet.tcp.rfc1323=1 The rfc has lots of cool stuff and it's worth a read. Jeff On Thu, Jul 19, 2001 at 12:45:40PM -0800, Beech Rintoul wrote: > I was looking at netcraft's site today and noticed that uptime doesn't work > with FBSD servers. Anyboy have any info on this? Like how they do it and can > my server be configured to show it? > > TIA > > 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 14:36: 7 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 259CF37B403 for ; Thu, 19 Jul 2001 14:36:01 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id 7447055407; Thu, 19 Jul 2001 14:33:05 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id 64A8A51610; Thu, 19 Jul 2001 14:33:05 -0700 (PDT) Date: Thu, 19 Jul 2001 14:33:05 -0700 (PDT) From: Linh Pham To: uwi mAn Cc: Subject: Re: netscape6 (linux) In-Reply-To: <20010719213813.I507@elexis.uwiland.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-19, uwi mAn scribbled: # i installed linux-rpm support though. # # %./netscape-installer # ./netscape-installer-bin: error in loading shared libraries: # libgtk-1.2.so.0: cannot open shared object file: No such file or directory # # No way to install Netscape 6.1 (linux) onto BSD 4.3 release ? You can build Mozilla 0.92 (Netscape 6.1 is based on either Mozilla 0.8 or 0.9, but forgot which one) from the latest ports. I have 0.92 running on my laptop and it seems to do perfectly (with the exception of not liking the new theme... but the classic theme works without a problem). -- 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 19 14:43:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f5.law11.hotmail.com [64.4.17.5]) by hub.freebsd.org (Postfix) with ESMTP id 9669D37B403 for ; Thu, 19 Jul 2001 14:43:24 -0700 (PDT) (envelope-from calebwalker69@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 19 Jul 2001 14:43:24 -0700 Received: from 207.213.45.19 by lw11fd.law11.hotmail.msn.com with HTTP; Thu, 19 Jul 2001 21:43:24 GMT X-Originating-IP: [207.213.45.19] From: "Caleb Walker" To: questions@freebsd.org Subject: Sendmail Problems Date: Thu, 19 Jul 2001 21:43:24 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 19 Jul 2001 21:43:24.0459 (UTC) FILETIME=[D64F6FB0:01C1109B] Sender: owner-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 dont know if my earlier message got through or not or if you guys just will not reply to a message created from hotmail but this all I have right now because my mail server is down. This is the error I am getting and I do not know why. I am using a freshly installed sendmail 8.11.4/8.9.3 and am running Stable-4.3 Any help would be much appreciated. I apologize if there are any format problem with this email since hotmail is now converted to Windows this may suck now I dont know... #newaliases WARNING: World writable directory / WARNING: World writable directory / hash map "Alias0": unsafe map file /etc/aliases.db: World writable directory WARNING: cannot open alias database /etc/aliases Jul 19 14:39:28 ns1 sendmail[645]: NOQUEUE: SYSERR(root): hash map "Alias0": unsafe map file /etc/aliases.db: World writable directory Cannot create database for alias file /etc/aliases #Jul 19 14:39:28 ns1 sendmail[645]: NOQUEUE: SYSERR(root): hash map "Alias0": unsafe map file /etc/aliases.db: World writable directory Jul 19 14:39:28 ns1 sendmail[645]: NOQUEUE: SYSERR(root): Cannot create database for alias file /etc/aliases Jul 19 14:39:28 ns1 sendmail[645]: NOQUEUE: SYSERR(root): Cannot create database for alias file /etc/aliases _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 14:53: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from sirius.pbegames.com (sirius.pbegames.com [206.139.252.17]) by hub.freebsd.org (Postfix) with ESMTP id A639C37B401 for ; Thu, 19 Jul 2001 14:53:00 -0700 (PDT) (envelope-from thomas@pbegames.com) Received: from leviathan.pbegames.com (66-44-4-185.s1201.apx1.lnh.md.dialup.rcn.com [66.44.4.185]) by sirius.pbegames.com (8.9.3/8.9.3) with ESMTP id RAA04157 for ; Thu, 19 Jul 2001 17:52:58 -0400 (EDT) (envelope-from thomas@pbegames.com) Message-Id: <5.1.0.14.2.20010719175024.02510170@pbegames.com> X-Sender: thomas@pbegames.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Thu, 19 Jul 2001 17:53:13 -0400 To: freebsd-questions@freebsd.org From: Mark Thomas Subject: Crontab - Biweekly events? 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've been looking at man 5 crontab to see how to do this, but can't seem to puzzle through it. I have a task I want to run every other week on a specific day, say Tuesday. I can't see a way to convince cron to do this. Anyone know how? CC by mail please. Not subscribed. Thanks, Mark --- thomas@pbegames.com -------------> http://www.pbegames.com/~thomas Play by Electron Games ----------> http://www.pbegames.com [TM4463-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 19 15: 4:44 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 5F7C037B403 for ; Thu, 19 Jul 2001 15:04:27 -0700 (PDT) (envelope-from jake@coolbluei.com) Received: from localhost (adsl-20-72-88.asm.bellsouth.net [66.20.72.88]) by coolblueinteractive.org (8.10.2/8.10.2) with ESMTP id f6JM4OV03796; Thu, 19 Jul 2001 18:04:24 -0400 Message-Id: <200107192204.f6JM4OV03796@lucy.tbscom.com> Date: Thu, 19 Jul 2001 18:04:24 -0400 From: Jacob Smith Content-Type: multipart/alternative; boundary=Apple-Mail-2045144426-4 Subject: Re: Apache and SSL Cc: Freebsd-Questions To: "Todd Reed" X-Mailer: Apple Mail (2.388) In-Reply-To: Mime-Version: 1.0 (Apple Message framework v388) Sender: owner-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-2045144426-4 Content-Transfer-Encoding: 7bit Content-Type: text/plain; format=flowed; charset=us-ascii On Thursday, July 19, 2001, at 03:23 PM, Todd Reed wrote: > I'm using the link I was given below and everything is going well, > however, I've gotten to a point where I'm stuck. > > After I configure the mod_ssl, it tells me to cd into the apache > install directory. I do that and when I type in: > > SSL_BASE=../openssl-0.9.6b > RSA_BASE=../rsaref20/local > > I get a message saying command not found. > I tried typing it in as it stated with the \, but that didn't work > either. Any clues? > Todd, use a different shell, if you have bash installed just type bash might want to default to this, it is a much better shell in my very humble opinion Jake Smit > --Todd > > >> From: Jacob Smith >> To: "Todd Reed" >> Subject: Re: Apache and SSL >> Date: Wed, 18 Jul 2001 19:18:53 -0400 >> >> >> On Wednesday, July 18, 2001, at 06:59 PM, Todd Reed wrote: >> >>> I had originally tried installing it straight from the >>> /stand/sysinstall. I had previously had apache setup. When I send to >>> install the mod-ssl and the ssl, rebooted, and couldn't get it to >>> work. I uninstalled everything and had to reinstall apache like it >>> was. I've downloaded the latest mod-ssl, openssl, rsaref, and php. I >>> thought I could download the files and install the options from the >>> downloaded files. Is there a better way? >>> >>> Currently I have apache running like I want it to. I would like to ad >>> SSL and PHP capabilities. Run a httpd and httpsd. Any suggestions on >>> a good way to do this with Apache already installed? >>> >>> >> >> check out this article it should work great for this situation: >> >> http://devshed.com/Server_Side/PHP/SoothinglySeamless/ >> >> worked great for me >> >> Jake Smith >> >> >> >>>> From: Christoph Sold >>>> Reply-To: so@server.i-clue.de >>>> To: Todd Reed >>>> CC: freebsd-questions@FreeBSD.ORG >>>> Subject: Re: Apache and SSL >>>> Date: Wed, 18 Jul 2001 19:18:07 +0200 >>>> >>>> >>>> >>>> Todd Reed schrieb: >>>> > >>>> > I've got my Apache web server up and running, but I'd like to also >>>> add SSL. >>>> > Does anyone have any good references for Apache and SSL? I've >>>> checked out >>>> > the modssl and openssl, but I'm having trouble getting them >>>> installed. >>>> >>>> Why don't you just install >>>> /usr/ports/www/apache+mod_ssl-1.3.x+2.8.x ? >>>> It worked for me without any problems. >>>> >>>> HTH >>>> -Christoph Sold >>> >>> _________________________________________________________________ >>> 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 >>> > > > _________________________________________________________________ > Get your FREE download of MSN Explorer at > http://explorer.msn.com/intl.asp > --Apple-Mail-2045144426-4 Content-Transfer-Encoding: 7bit Content-Type: text/enriched; charset=us-ascii On Thursday, July 19, 2001, at 03:23 PM, Todd Reed wrote: I'm using the link I was given below and everything is going well, however, I've gotten to a point where I'm stuck. After I configure the mod_ssl, it tells me to cd into the apache install directory. I do that and when I type in: SSL_BASE=../openssl-0.9.6b RSA_BASE=../rsaref20/local I get a message saying command not found. I tried typing it in as it stated with the \, but that didn't work either. Any clues? Todd, use a different shell, if you have bash installed just type bash might want to default to this, it is a much better shell in my very humble opinion Jake Smit 0000,0000,DEB7 --Todd From: Jacob Smith < To: "Todd Reed" < Subject: Re: Apache and SSL Date: Wed, 18 Jul 2001 19:18:53 -0400 On Wednesday, July 18, 2001, at 06:59 PM, Todd Reed wrote: I had originally tried installing it straight from the /stand/sysinstall. I had previously had apache setup. When I send to install the mod-ssl and the ssl, rebooted, and couldn't get it to work. I uninstalled everything and had to reinstall apache like it was. I've downloaded the latest mod-ssl, openssl, rsaref, and php. I thought I could download the files and install the options from the downloaded files. Is there a better way? Currently I have apache running like I want it to. I would like to ad SSL and PHP capabilities. Run a httpd and httpsd. Any suggestions on a good way to do this with Apache already installed? check out this article it should work great for this situation: http://devshed.com/Server_Side/PHP/SoothinglySeamless/ worked great for me Jake Smith From: Christoph Sold < Reply-To: so@server.i-clue.de To: Todd Reed < CC: freebsd-questions@FreeBSD.ORG Subject: Re: Apache and SSL Date: Wed, 18 Jul 2001 19:18:07 +0200 Todd Reed schrieb: > > I've got my Apache web server up and running, but I'd like to also add SSL. > Does anyone have any good references for Apache and SSL? I've checked out > the modssl and openssl, but I'm having trouble getting them installed. Why don't you just install /usr/ports/www/apache+mod_ssl-1.3.x+2.8.x ? It worked for me without any problems. HTH -Christoph Sold _________________________________________________________________ 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 _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp --Apple-Mail-2045144426-4-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 15:16:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from itouch.co.nz (itouch.co.nz [203.99.66.188]) by hub.freebsd.org (Postfix) with ESMTP id 805E437B405 for ; Thu, 19 Jul 2001 15:16:56 -0700 (PDT) (envelope-from jonc@itouch.co.nz) Received: (from jonc@localhost) by itouch.co.nz (8.11.3/8.11.1) id f6JMGra03468; Fri, 20 Jul 2001 10:16:53 +1200 (NZST) (envelope-from jonc) Date: Fri, 20 Jul 2001 10:16:52 +1200 From: Jonathan Chen To: Phuoc Nguyen Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Can not configure XFree86 Server for ATI Rage Fury Pro 32MB AGP Message-ID: <20010720101652.A2823@itouchnz.itouch> 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 vungtau@hotmail.com on Thu, Jul 19, 2001 at 09:27:36PM +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 Thu, Jul 19, 2001 at 09:27:36PM +0000, Phuoc Nguyen wrote: > I use FreeBSD4.2; thus, I think my version is 4.X. > BTW, what is the name of video card you had chosen? > My video card is Rage Fury Pro 32 MB AGP but I > do not see it in the video card list of FreeBSD4.2 > Thanks. You need to build XFree86-4 from the ports system. The ATI Rage series is supported: http://www.xfree86.org/4.1.0/Status6.html Give that a try and then get back to us. -- Jonathan Chen ---------------------------------------------------------------------- Don't worry about avoiding temptation, as you grow older, it starts avoiding 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 19 15:21:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail200.swst.com (mail200.swst.com [199.34.16.18]) by hub.freebsd.org (Postfix) with ESMTP id 9355237B408 for ; Thu, 19 Jul 2001 15:21:25 -0700 (PDT) (envelope-from RClark@swst.com) Received: from assentor1.swst.com (assentor.swst.com [209.51.28.15]) by mail200.swst.com (8.10.2/8.10.2) with ESMTP id f6JMLOh13069 for ; Thu, 19 Jul 2001 17:21:24 -0500 (CDT) Received: from sws_excg3.swst.com (unverified) by assentor1.swst.com (Content Technologies SMTPRS 2.0.15) with ESMTP id for ; Thu, 19 Jul 2001 17:21:42 -0500 Received: by sws-excg3.swst.com with Internet Mail Service (5.5.2654.52) id <3P0K4N2H>; Thu, 19 Jul 2001 17:21:38 -0500 Message-Id: From: Ronnie Clark To: "'Freebsd-Questions (E-mail)" Subject: startup script Date: Thu, 19 Jul 2001 17:18:12 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2654.52) 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 Where would I put a start up script in FreeBSD 4.2? I thought it was /etc/rc.local, but I don't seem to have that file. Thank you, Ronnie Clark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 15:21:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from itouch.co.nz (itouch.co.nz [203.99.66.188]) by hub.freebsd.org (Postfix) with ESMTP id 4D2DD37B422 for ; Thu, 19 Jul 2001 15:21:31 -0700 (PDT) (envelope-from jonc@itouch.co.nz) Received: (from jonc@localhost) by itouch.co.nz (8.11.3/8.11.1) id f6JMLSt03635; Fri, 20 Jul 2001 10:21:28 +1200 (NZST) (envelope-from jonc) Date: Fri, 20 Jul 2001 10:21:28 +1200 From: Jonathan Chen To: Caleb Walker Cc: questions@FreeBSD.ORG Subject: Re: Sendmail Problems Message-ID: <20010720102128.B2823@itouchnz.itouch> 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 calebwalker69@hotmail.com on Thu, Jul 19, 2001 at 09:43:24PM +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 Thu, Jul 19, 2001 at 09:43:24PM +0000, Caleb Walker wrote: > I dont know if my earlier message got through or not or if you guys just > will not reply to a message created from hotmail but this all I have right > now because my mail server is down. This is the error I am getting and I do > not know why. > I am using a freshly installed sendmail 8.11.4/8.9.3 and am running > Stable-4.3 Any help would be much appreciated. > I apologize if there are any format problem with this email since hotmail is > now converted to Windows this may suck now I dont know... > > #newaliases > WARNING: World writable directory / > WARNING: World writable directory / This is bad. > hash map "Alias0": unsafe map file /etc/aliases.db: World writable directory So is this. > WARNING: cannot open alias database /etc/aliases Here's your problem. The aliases file is now located in /etc/mail. Did you not update your /etc/mail/sendmail.cf to reflect new locations? Best thing to do is to rebuild it from your m4 .mc file. Also, you need to run newaliases to actually create the alias file: aliases.db. Cheers. -- Jonathan Chen ---------------------------------------------------------------------- Opportunities are seldom labeled To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 15:21:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe39.law11.hotmail.com [64.4.16.96]) by hub.freebsd.org (Postfix) with ESMTP id 379F937B406 for ; Thu, 19 Jul 2001 15:21:09 -0700 (PDT) (envelope-from rxw44260@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 19 Jul 2001 15:21:09 -0700 X-Originating-IP: [207.90.208.144] From: "David Wen" To: Subject: FSCK PROBLEM Date: Thu, 19 Jul 2001 17:23:50 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_00B3_01C11077.93359700" 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: 19 Jul 2001 22:21:09.0018 (UTC) FILETIME=[1C17B7A0:01C110A1] Sender: owner-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_00B3_01C11077.93359700 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable One of my disk was dropped, I used fsck then was able to mounted it = back. But when machine was rebooted, it was not mounted. I found out = that no matter how many times I do the fsck, there is still a problem. = BAD SUPER BLOCK: VALUES IN SUPER BLOCK DISAGREE WITH THOSE IN FIRST = ALTERNATE See the attachment please. Please help me with to solve this problem. Thank you very much. David ruiwuwen@yahoo.com # fsck /dev/da2s1e ** /dev/da2s1e BAD SUPER BLOCK: VALUES IN SUPER BLOCK DISAGREE WITH THOSE IN FIRST = ALTERNATE LOOK FOR ALTERNATE SUPERBLOCKS? [yn] y USING ALTERNATE SUPERBLOCK AT 32 ** Last Mounted on /home1 ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts ** Phase 5 - Check Cyl groups FREE BLK COUNT(S) WRONG IN SUPERBLK SALVAGE? [yn] y 624 files, 2487640 used, 14881343 free (615 frags, 1860091 blocks, 0.0% = fragmentation) UPDATE STANDARD SUPERBLOCK? [yn] y ***** FILE SYSTEM WAS MODIFIED ***** # fsck /dev/da2s1e ** /dev/da2s1e BAD SUPER BLOCK: VALUES IN SUPER BLOCK DISAGREE WITH THOSE IN FIRST = ALTERNATE LOOK FOR ALTERNATE SUPERBLOCKS? [yn] y USING ALTERNATE SUPERBLOCK AT 32 ** Last Mounted on /home1 ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts ** Phase 5 - Check Cyl groups 624 files, 2487640 used, 14881343 free (615 frags, 1860091 blocks, 0.0% = fragmentation) UPDATE STANDARD SUPERBLOCK? [yn] y ***** FILE SYSTEM WAS MODIFIED ***** # ------=_NextPart_000_00B3_01C11077.93359700 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
One of my disk was dropped, I used = fsck then was able to mounted it back. = But when machine was=20 rebooted, it was not mounted. I found out that no matter how = many=20 times I do the fsck, there is still a problem. BAD SUPER BLOCK: VALUES IN SUPER BLOCK DISAGREE WITH THOSE IN = FIRST=20 ALTERNATE
 
See the attachment please.
 
Please help me with to solve this = problem. Thank=20 you very much.
 
David
ruiwuwen@yahoo.com
 
 
# fsck /dev/da2s1e
** = /dev/da2s1e
BAD SUPER=20 BLOCK: VALUES IN SUPER BLOCK DISAGREE WITH THOSE IN FIRST = ALTERNATE
 
LOOK FOR ALTERNATE SUPERBLOCKS? [yn] = y
 
USING ALTERNATE SUPERBLOCK AT 32
** = Last Mounted=20 on /home1
** Phase 1 - Check Blocks and Sizes
** Phase 2 - Check=20 Pathnames
** Phase 3 - Check Connectivity
** Phase 4 - Check = Reference=20 Counts
** Phase 5 - Check Cyl groups
FREE BLK COUNT(S) WRONG IN=20 SUPERBLK
SALVAGE? [yn] y
 
624 files, 2487640 used, 14881343 free = (615 frags,=20 1860091 blocks, 0.0% fragmentation)
 
UPDATE STANDARD SUPERBLOCK? [yn] = y
 

***** FILE SYSTEM WAS MODIFIED *****
# fsck = /dev/da2s1e
**=20 /dev/da2s1e
BAD SUPER BLOCK: VALUES IN SUPER BLOCK DISAGREE WITH = THOSE IN=20 FIRST ALTERNATE
 
LOOK FOR ALTERNATE SUPERBLOCKS? [yn] y
 
USING ALTERNATE SUPERBLOCK AT 32
** Last Mounted on /home1
** = Phase 1=20 - Check Blocks and Sizes
** Phase 2 - Check Pathnames
** Phase 3 - = Check=20 Connectivity
** Phase 4 - Check Reference Counts
** Phase 5 - = Check Cyl=20 groups
624 files, 2487640 used, 14881343 free (615 frags, 1860091 = blocks,=20 0.0% fragmentation)
 
UPDATE STANDARD SUPERBLOCK? [yn] y
 

***** FILE SYSTEM WAS MODIFIED=20 *****
#
------=_NextPart_000_00B3_01C11077.93359700-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 15:24:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.corpex.de (mileena.corpex.de [213.61.99.25]) by hub.freebsd.org (Postfix) with ESMTP id 5BDC337B406 for ; Thu, 19 Jul 2001 15:24:37 -0700 (PDT) (envelope-from pg@philipp.de.com) Received: from saotome.staff.corpex.de ([213.61.99.34] helo=saotome) by mail.corpex.de with smtp (Exim 3.22 #3) id 15NMDk-00017T-00; Fri, 20 Jul 2001 00:24:36 +0200 From: =?iso-8859-1?Q?Philipp_Gasch=FCtz?= To: "Ronnie Clark" , "'Freebsd-Questions (E-mail)" Subject: AW: startup script Date: Fri, 20 Jul 2001 00:23:51 +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) In-Reply-To: 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 > Where would I put a start up script in FreeBSD 4.2? I thought it was > /etc/rc.local, but I don't seem to have that file. hey, /usr/local/etc/rc.d ... -p To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 15:30:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f64.law11.hotmail.com [64.4.17.64]) by hub.freebsd.org (Postfix) with ESMTP id D9B7637B401 for ; Thu, 19 Jul 2001 15:30:45 -0700 (PDT) (envelope-from calebwalker69@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 19 Jul 2001 15:30:45 -0700 Received: from 207.213.45.19 by lw11fd.law11.hotmail.msn.com with HTTP; Thu, 19 Jul 2001 22:30:45 GMT X-Originating-IP: [207.213.45.19] From: "Caleb Walker" To: jonathan.chen@itouch.co.nz Cc: questions@FreeBSD.ORG Subject: Re: Sendmail Problems Date: Thu, 19 Jul 2001 22:30:45 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 19 Jul 2001 22:30:45.0749 (UTC) FILETIME=[73D9E250:01C110A2] Sender: owner-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 is what I needed I thought is to rebuild the sendmail.cf file and I cannot find any info on it. How do I do that? And how do I change the other "This is bad"s? >From: Jonathan Chen >To: Caleb Walker >CC: questions@FreeBSD.ORG >Subject: Re: Sendmail Problems >Date: Fri, 20 Jul 2001 10:21:28 +1200 > >On Thu, Jul 19, 2001 at 09:43:24PM +0000, Caleb Walker wrote: > > I dont know if my earlier message got through or not or if you guys just > > will not reply to a message created from hotmail but this all I have >right > > now because my mail server is down. This is the error I am getting and >I do > > not know why. > > I am using a freshly installed sendmail 8.11.4/8.9.3 and am running > > Stable-4.3 Any help would be much appreciated. > > I apologize if there are any format problem with this email since >hotmail is > > now converted to Windows this may suck now I dont know... > > > > #newaliases > > WARNING: World writable directory / > > WARNING: World writable directory / > >This is bad. > > > hash map "Alias0": unsafe map file /etc/aliases.db: World writable >directory > >So is this. > > > WARNING: cannot open alias database /etc/aliases > >Here's your problem. > >The aliases file is now located in /etc/mail. Did you not update your >/etc/mail/sendmail.cf to reflect new locations? Best thing to do is to >rebuild it from your m4 .mc file. > >Also, you need to run newaliases to actually create the alias file: >aliases.db. > >Cheers. >-- >Jonathan Chen >---------------------------------------------------------------------- > Opportunities are seldom labeled _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 15:32:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f237.law8.hotmail.com [216.33.241.237]) by hub.freebsd.org (Postfix) with ESMTP id 7781337B406 for ; Thu, 19 Jul 2001 15:32:34 -0700 (PDT) (envelope-from wildcards7@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 19 Jul 2001 15:32:34 -0700 Received: from 204.196.180.204 by lw8fd.law8.hotmail.msn.com with HTTP; Thu, 19 Jul 2001 22:32:34 GMT X-Originating-IP: [204.196.180.204] From: "Kyle j." To: freebsd-questions@freebsd.org Subject: win with freebsd 4.3 as gateway to internet Date: Thu, 19 Jul 2001 22:32:34 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 19 Jul 2001 22:32:34.0288 (UTC) FILETIME=[B48B9F00:01C110A2] Sender: owner-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 install freeBSD and use it as a gateway/router where other windows machines will connect to this computer with freebsd on it to share the bandwidth? please cc. thanks. _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 15:32:45 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 1A1B037B401 for ; Thu, 19 Jul 2001 15:32:41 -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 0280C177; Thu, 19 Jul 2001 14:32:39 -0800 (AKDT) Content-Type: text/plain; charset="iso-8859-1" From: Beech Rintoul To: freebsd-questions@freebsd.org, kris@obsecurity.org, jasapp@pelennor.net Subject: Re: netcraft uptime Date: Thu, 19 Jul 2001 14:32:39 -0800 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <01071914323901.51519@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 Thanks much! I'll check it out. 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 Thu Jul 19 15:40:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tao.thought.org (sense-kline-248.oz.net [216.39.168.248]) by hub.freebsd.org (Postfix) with ESMTP id 4A1DD37B405 for ; Thu, 19 Jul 2001 15:40:09 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.11.3/8.11.0) id f6JMe5u45259; Thu, 19 Jul 2001 15:40:05 -0700 (PDT) (envelope-from kline) Date: Thu, 19 Jul 2001 15:40:04 -0700 From: Gary Kline To: Mike Meyer Cc: Gary Kline , questions@FreeBSD.ORG Subject: Re: emachine's cheap sound config... Message-ID: <20010719154004.A45174@tao.thought.org> References: <53908674@toto.iv> <15190.33189.436956.629617@guru.mired.org> <20010719001351.A42638@tao.thought.org> <15190.36174.480460.404173@guru.mired.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <15190.36174.480460.404173@guru.mired.org>; from mwm@mired.org on Thu, Jul 19, 2001 at 02:33:34AM -0500 X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 15 years of service to the Unix community Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jul 19, 2001 at 02:33:34AM -0500, Mike Meyer wrote: > Gary Kline types: [[ ... ]] > > You don't need an X driver for that. You don't even need the X client > software for that. Put it on the network, and just log in from > multiple xterms on a workstation. Or multiple puttys, if that's the > client you're using. This was a concern yesterday: whether I could get the new box networked--as fubar.thought.org, or whatever. My ISP alloted me 4 IP's, though, and I discovered that by using a separate IP, ``fubar'' was on the net, going thru my router... And yep, I'm able to ssh to and fro using the xterms here. It'll be a few weekends before my gateway is tuned; but it's happening. > > If you want to do it in single user mode, you'll need to isntall X, > but you won't need to get the server working. Once you're in single > user mode with the network configured, start an xterm displaying on a > remote X server. You can then start more xterms, etc. from there. > > Having X installed without bothering to configure a working driver > means you can run other clients - gkrellm, for instance - on it to > display on your workstation as well. > This last sounds like some new wizardry. Is gkrellm anything like VNC? If you want to drop a few more helpful paragraphs this way, I'd be much obliged... Otherwise, I'll note it in my .ToDo file. thanks, gary -- Gary D. Kline kline@thought.org www.thought.org Public service Unix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 15:42:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay3.adelphia.net (smtprelay3.adelphia.net [64.8.25.8]) by hub.freebsd.org (Postfix) with ESMTP id 76A8437B406 for ; Thu, 19 Jul 2001 15:42:14 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay3.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGQSEY03.EBN; Thu, 19 Jul 2001 18:42:34 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6JMeFt02085; Thu, 19 Jul 2001 18:40:15 -0400 (EDT) (envelope-from ipt) Date: Thu, 19 Jul 2001 18:40:15 -0400 From: User & Ian Patrick Thomas To: Linh Pham Cc: freebsd-questions@freebsd.org Subject: Re: netscape6 (linux) Message-ID: <20010719184015.A1899@localhost> References: <20010719213813.I507@elexis.uwiland.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 lplist@closedsrc.org on Thu, Jul 19, 2001 at 02:33:05PM -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 As it was put forth by Linh Pham on Thu, Jul 19, 2001 at 02:33:05PM -0700... > On 2001-07-19, uwi mAn scribbled: > > # i installed linux-rpm support though. > # > # %./netscape-installer > # ./netscape-installer-bin: error in loading shared libraries: > # libgtk-1.2.so.0: cannot open shared object file: No such file or directory > # > # No way to install Netscape 6.1 (linux) onto BSD 4.3 release ? > > You can build Mozilla 0.92 (Netscape 6.1 is based on either Mozilla 0.8 > or 0.9, but forgot which one) from the latest ports. I have 0.92 running > on my laptop and it seems to do perfectly (with the exception of not > liking the new theme... but the classic theme works without a problem). I am also using mozilla 0.9.2,1 on my box. It's a huge leap forward in speed and reliability from the .8 series. Both modern and classic work on mine with no problems. Do you have an error message for when you try to change to the modern skin? Ian > > -- > 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 19 15:46:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from itouch.co.nz (itouch.co.nz [203.99.66.188]) by hub.freebsd.org (Postfix) with ESMTP id 6D81137B405 for ; Thu, 19 Jul 2001 15:46:34 -0700 (PDT) (envelope-from jonc@itouch.co.nz) Received: (from jonc@localhost) by itouch.co.nz (8.11.3/8.11.1) id f6JMkVf05702; Fri, 20 Jul 2001 10:46:31 +1200 (NZST) (envelope-from jonc) Date: Fri, 20 Jul 2001 10:46:31 +1200 From: Jonathan Chen To: Caleb Walker Cc: questions@FreeBSD.ORG Subject: Re: Sendmail Problems Message-ID: <20010720104631.C2823@itouchnz.itouch> 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 calebwalker69@hotmail.com on Thu, Jul 19, 2001 at 10:30:45PM +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 [Best to reply at the bottom] On Thu, Jul 19, 2001 at 10:30:45PM +0000, Caleb Walker wrote: > That is what I needed I thought is to rebuild the sendmail.cf file and I > cannot find any info on it. How do I do that? And how do I change the > other "This is bad"s? / and /etc should be owned by root, and be mode 755: # chmod 755 / /etc To build your own sendmail.cf, there's an example at /etc/mail/freebsd.mc, and a whole heap of instructions at: /usr/share/sendmail/cf/README -- Jonathan Chen ---------------------------------------------------------------------- "Opportunity does not knock, it presents itself when you beat down the door" - W.E. Channing To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 15:48:32 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tao.thought.org (sense-kline-248.oz.net [216.39.168.248]) by hub.freebsd.org (Postfix) with ESMTP id 5795437B407 for ; Thu, 19 Jul 2001 15:48:20 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.11.3/8.11.0) id f6JMm4A45302; Thu, 19 Jul 2001 15:48:04 -0700 (PDT) (envelope-from kline) Date: Thu, 19 Jul 2001 15:48:04 -0700 From: Gary Kline To: Beech Rintoul Cc: Gary Kline , FreeBSD Mailing List Subject: Re: emachine's cheap sound config... Message-ID: <20010719154804.B45174@tao.thought.org> References: <200107190531.f6J5VBO42302@tao.thought.org> <01071908090501.04801@galaxy.anchoragerescue.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <01071908090501.04801@galaxy.anchoragerescue.org>; from akbeech@anchoragerescue.org on Thu, Jul 19, 2001 at 08:09:05AM -0800 X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 15 years of service to the Unix community Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jul 19, 2001 at 08:09:05AM -0800, Beech Rintoul wrote: > On Wednesday 18 July 2001 09:31 pm, Gary Kline wrote: > > A year ago I bought a cheap emachine-500ix box to try > > out SuSE Linux on. To my surprise, everything auto- > > installed. The box has a cheap sound chip, but it's > > okay for sound effects. > > > > What FBSD sound config should I add to the KERNEL > > config file? Also, what X driver will get X11 up? > > > > This box has a solid Maxtor drive and I'm planning to > > use it as my gateway DNS server; behind a firewall or > > firewalls, everything else.... > > > > thanks for any help here. > > > > gary > > Add: > > device pcm > device csa > > Done! I've just finished upgrading from 4.2 --> 4.3 and about to launch the kernel build. gary > -- Gary D. Kline kline@thought.org www.thought.org Public service Unix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 15:48:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from expo1.asd.k12.ak.us (xmail.asd.k12.ak.us [209.165.180.2]) by hub.freebsd.org (Postfix) with ESMTP id 4871E37B40C for ; Thu, 19 Jul 2001 15:48:30 -0700 (PDT) (envelope-from Herring_Todd@xmail.asd.k12.ak.us) Received: by EXPO1 with Internet Mail Service (5.5.2653.19) id ; Thu, 19 Jul 2001 14:48:26 -0800 Message-ID: <9627DBCB3063D311BC4B00902785C55F03399E4D@EXPO1> From: Herring_Todd To: freebsd-questions@FreeBSD.ORG Subject: Certification Date: Thu, 19 Jul 2001 14:48:16 -0800 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C110A4.E5E314F0" Sender: owner-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_01C110A4.E5E314F0 Content-Type: text/plain; charset="iso-8859-1" Hello FreeBSD, I'm trying to find the certification and training area. I would like to get certified an the information I have for the BSDI has changed and no one can seem to direct me in the right direction. Please provide me with a number where I can call and order the correct training material in order to pick up this cert. Thank you, Todd ------_=_NextPart_001_01C110A4.E5E314F0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Certification

Hello FreeBSD,

I'm trying to find the certification = and training area.  I would like to get certified an the = information I have for the BSDI has changed and no one can seem to = direct me in the right direction.  Please provide me with a number = where I can call and order the correct training material in order to = pick up this cert. 

Thank you,


Todd

------_=_NextPart_001_01C110A4.E5E314F0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 15:49: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imo-d04.mx.aol.com (imo-d04.mx.aol.com [205.188.157.36]) by hub.freebsd.org (Postfix) with ESMTP id 1E50737B413 for ; Thu, 19 Jul 2001 15:48:43 -0700 (PDT) (envelope-from JediDenDen@netscape.net) Received: from JediDenDen@netscape.net by imo-d04.mx.aol.com (mail_out_v31.7.) id n.b1.85a2db (16217) for ; Thu, 19 Jul 2001 18:48:20 -0400 (EDT) Received: from netscape.com (mow-m02.webmail.aol.com [64.12.184.130]) by air-in01.mail.aol.com (v79.27) with ESMTP id MAILININ15-0719184819; Thu, 19 Jul 2001 18:48:19 -0400 Date: Thu, 19 Jul 2001 18:48:19 -0400 From: JediDenDen@netscape.net (jet_d) To: freebsd-questions@freebsd.org Subject: compile error Message-ID: <0B43D409.5FEB3AF6.0B8C12A6@netscape.net (jet_d X-Mailer: Atlas Mailer 1.0 Content-Type: text/plain; charset=iso-8859-1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have been trying to get the program "authforce" to work on FreeBSD 4.2 release. I can get it working just fine on a Linux environment but FreeBSD is not liking it. At first I came across this problem jet# make > make all-recursive > Making all in intl > Making all in data > Making all in src > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../intl > -DLOCALEDIR=\"/usr/local/share/locale\" -g -O2 -c main.c > main.c:9: getopt.h: No such file or directory > *** Error code 1 > > Stop in /tmp/authforce-0.9.5/src. > *** Error code 1 > > Stop in /tmp/authforce-0.9.5. > *** Error code 1 > > Stop in /tmp/authforce-0.9.5. > jet# After trying a few things this came up... jet# make make all-recursive Making all in intl Making all in data Making all in src gcc -g -O2 -o authforce config.o debug.o extract.o files.o http.o main.o methods.o misc.o signal.o ../intl/libintl.a -lreadline -lncurses main.o: In function `initialize_main': /usr/home/puto/authforce-0.9.6/src/main.c(.text+0x4e6): undefined reference to `getopt_long' *** Error code 1 Stop in /usr/home/puto/authforce-0.9.6/src. *** Error code 1 Stop in /usr/home/puto/authforce-0.9.6. *** Error code 1 Stop in /usr/home/puto/authforce-0.9.6. jet# I seem to be at a point where I'm out of ideas. Any suggestions as to what I can look for? Thanks __________________________________________________________________ Your favorite stores, helpful shopping tools and great gift ideas. Experience the convenience of buying online with Shop@Netscape! http://shopnow.netscape.com/ Get your own FREE, personal Netscape Mail account today at http://webmail.netscape.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 19 15:51:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from fedde.littleton.co.us (cfedde.dsl.frii.net [216.17.139.141]) by hub.freebsd.org (Postfix) with ESMTP id 10E2637B406 for ; Thu, 19 Jul 2001 15:51:49 -0700 (PDT) (envelope-from cfedde@fedde.littleton.co.us) Received: from fedde.littleton.co.us (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.4/8.11.4) with ESMTP id f6JMpmB55424 for ; Thu, 19 Jul 2001 16:51:48 -0600 (MDT) Message-Id: <200107192251.f6JMpmB55424@fedde.littleton.co.us> To: questions@FreeBSD.ORG From: Chris Fedde Subject: TCP connection limits? Date: Thu, 19 Jul 2001 16:51:48 -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 Is there a configuration that controls the number of tcp connections that a host can make to my server in some unit time? And by the way is there a document that describes what an the settings in sysctl -a mean? thanks -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 16: 1:35 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 4922F37B401 for ; Thu, 19 Jul 2001 16:01:33 -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 GGQT7W02.2GZ; Thu, 19 Jul 2001 18:59:56 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6JMxY902367; Thu, 19 Jul 2001 18:59:34 -0400 (EDT) (envelope-from ipt) Date: Thu, 19 Jul 2001 18:59:34 -0400 From: User & Ian Patrick Thomas To: Matt Crawford Cc: freebsd-questions@freebsd.org Subject: Re: Problem with sysmouse protocol or XFree86 4.0 Message-ID: <20010719185934.A2359@localhost> References: <20010719170253.B1458@localhost> <200107192121.f6JLL0F01035@gungnir.fnal.gov> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200107192121.f6JLL0F01035@gungnir.fnal.gov>; from crawdad@fnal.gov on Thu, Jul 19, 2001 at 04:21:00PM -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 As it was put forth by Matt Crawford on Thu, Jul 19, 2001 at 04:21:00PM -0500... > > > I diagnose the following problem with the help of xev: ButtonRelease > > > events are not being received until the next ButtonPress or > > > MotionNotify event. > > > ... > > I have had problems using sysmouse in X also. This is a regular > > ps/2 logitech with three buttons. Buttons do not respond well and it > > takes alot more movement to get the pointer across the screen. > > Someone from the xfree86 listed sent me a fast reply that I had to > change > > Option "Protocol" "SysMouse" > to > Option "Protocol" "Auto" > > I did that and now it works perfectly. I just did this and it works for me also. Thanks. A usable mouse in X and on the console. Ian > > > 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 19 16: 7:52 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 6CEC337B401 for ; Thu, 19 Jul 2001 16:07:46 -0700 (PDT) (envelope-from lplist@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1003) id BE33755407; Thu, 19 Jul 2001 16:04:49 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by q.closedsrc.org (Postfix) with ESMTP id AC88951610; Thu, 19 Jul 2001 16:04:49 -0700 (PDT) Date: Thu, 19 Jul 2001 16:04:49 -0700 (PDT) From: Linh Pham To: User & Ian Patrick Thomas Cc: Subject: Re: netscape6 (linux) In-Reply-To: <20010719184015.A1899@localhost> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 2001-07-19, User & Ian Patrick Thomas scribbled: # I am also using mozilla 0.9.2,1 on my box. It's a huge leap forward in # speed and reliability from the .8 series. Both modern and classic work on # mine with no problems. Do you have an error message for when you try to # change to the modern skin? No error... just sometimes Mozilla will continue to run, but artifacts start to appear, fonts are rendered incorrectly in the address bar or the menus. There are times where Mozilla will crash hard and the only thing coming back to the calling console would be, "Segmentation Fault". I'm happy with the Classic theme actually. Not as pretty as the Modern theme... but it works fine. Just in case you want to know what I'm running on: Hardware - IBM Thinkpad T21 with a P3-800, 384MB of RAM, 20GB hard drive, 14" display w/ Savage IX 8MB video chipset, and integrated Ethernet/Modem (Intel Ethernet). Software - FreeBSD 4.3-RELEASE, XFree86 4.1.0, KDE 2.1.0, Mozilla 0.92 -- 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 19 16:13:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta3n.bluewin.ch (mta3n.bluewin.ch [195.186.1.212]) by hub.freebsd.org (Postfix) with ESMTP id E149437B403 for ; Thu, 19 Jul 2001 16:13:13 -0700 (PDT) (envelope-from carloma@bluewin.ch) Received: from bluewin.ch (195.186.189.188) by mta3n.bluewin.ch (Bluewin AG MX engine5.5.034) id 3B53E92A000BA5F4 for freebsd-questions@FreeBSD.ORG; Fri, 20 Jul 2001 01:12:02 +0200 Message-ID: <3B576936.A2F3DE6C@bluewin.ch> Date: Fri, 20 Jul 2001 01:11:50 +0200 From: matteotti Reply-To: carloma@bluewin.ch 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: ltmdm.ko problem Content-Type: text/plain; charset=iso-8859-15 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 trying to make Lucent WinModem work with FreeBSD-4.3-RELEASE using ltmdm.ko. When I dial my ISP, ppp complains NO DIALTONE and hangs. Suggestions are very appreciated ! Best regards Carlo. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 16:19:35 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns.shellworld.net (ns.shellworld.net [64.29.16.176]) by hub.freebsd.org (Postfix) with ESMTP id B754837B401 for ; Thu, 19 Jul 2001 16:19:31 -0700 (PDT) (envelope-from tforrest@ns.shellworld.net) Received: (from tforrest@localhost) by ns.shellworld.net (8.9.3/8.9.3) id TAA24199; Thu, 19 Jul 2001 19:19:21 -0400 Message-Id: <200107192319.TAA24199@ns.shellworld.net> From: "Tommy Forrest - KE4PYM" To: "questions@FreeBSD.ORG" Date: Thu, 19 Jul 2001 19:20:06 -0400 Reply-To: "Tommy Forrest - KE4PYM" X-Mailer: BluePrint Software Works PMMail2000 with Bandit Tagger98 In-Reply-To: <20010720104631.C2823@itouchnz.itouch> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Tag: Bandit Tagger98 - Registered to : KE4PYM Subject: Re: Sendmail Problems Sender: owner-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 these entries mean?? Jul 19 05:52:21 weedwhacker /kernel: arp: 24.163.68.129 moved from 00:b0:64:b7:b3:8c to 00:b0:64:b7:b3:54 on xl0 Jul 19 06:43:16 weedwhacker /kernel: arp: 24.163.68.129 moved from 00:b0:64:b7:b3:54 to 00:b0:64:b7:b3:8c on xl0 Jul 19 06:59:21 weedwhacker /kernel: arp: 24.163.68.129 moved from 00:b0:64:b7:b3:8c to 00:b0:64:b7:b3:54 on xl0 Jul 19 07:45:48 weedwhacker login: 2 LOGIN FAILURES FROM clt163-68-134.carolina.rr.com Jul 19 07:45:48 weedwhacker login: 2 LOGIN FAILURES FROM clt163-68-134.carolina.rr.com, administrator Jul 19 11:44:52 weedwhacker /kernel: arp: 24.163.68.129 moved from 00:b0:64:b7:b3:54 to 00:b0:64:b7:b3:8c on xl0 Jul 19 11:45:37 weedwhacker /kernel: arp: 24.163.68.129 moved from 00:b0:64:b7:b3:8c to 00:b0:64:b7:b3:54 on xl0 Jul 19 15:43:51 weedwhacker /kernel: arp: 24.163.68.129 moved from 00:b0:64:b7:b3:54 to 00:b0:64:b7:b3:8c on xl0 Jul 19 15:44:00 weedwhacker /kernel: arp: 24.163.68.129 moved from 00:b0:64:b7:b3:8c to 00:b0:64:b7:b3:54 on xl0 Tommy Forrest - KE4PYM - tforrest@shellworld.net http://www.shellworld.net/~tforrest And now, its time, for some useless, bandwidth wasting words of wisdom: Windows NT - Nice Try PGP Public Key Fingerprint: B9ED C46F C92E 0101 4B4C BFC1 907C A0D0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 16:28:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp3.libero.it (smtp3.libero.it [193.70.192.53]) by hub.freebsd.org (Postfix) with ESMTP id 0114537B401 for ; Thu, 19 Jul 2001 16:28:19 -0700 (PDT) (envelope-from denis@libero.it) Received: from libero.it (193.70.192.61) by smtp3.libero.it (5.5.025) id 3AE98228012AD528 for freebsd-questions@FreeBSD.ORG; Fri, 20 Jul 2001 01:28:17 +0200 Date: Fri, 20 Jul 2001 01:31:20 +0200 Message-Id: Subject: unex md011 MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable From: "Denis" To: freebsd-questions@FreeBSD.ORG X-XaM3-API-Version: 1.1.9.1.39.1.1 X-SenderIP: 151.21.121.82 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Exist a driver for this pcmcia? ------------------------------------- Denis Pitzalis mailto: denis@libero.it movil : +393287478183 ------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 16:37:46 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 366FC37B406 for ; Thu, 19 Jul 2001 16:37:43 -0700 (PDT) (envelope-from ahl@austclear.com.au) Received: from tungsten.austclear.com.au (tungsten.austclear.com.au [192.168.166.65]) by ns2.austclear.com.au (8.11.2/8.11.3) with ESMTP id f6JNbfZ50090; Fri, 20 Jul 2001 09:37:41 +1000 (EST) (envelope-from ahl@austclear.com.au) Received: from tungsten (tungsten [192.168.166.65]) by tungsten.austclear.com.au (8.9.3/8.9.3) with ESMTP id JAA04489; Fri, 20 Jul 2001 09:37:41 +1000 (EST) Message-Id: <200107192337.JAA04489@tungsten.austclear.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: Mark Thomas Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Crontab - Biweekly events? In-Reply-To: Message from Mark Thomas of "Thu, 19 Jul 2001 17:53:13 -0400." <5.1.0.14.2.20010719175024.02510170@pbegames.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 20 Jul 2001 09:37:41 +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 thomas@pbegames.com said: > I have a task I want to run every other week on a specific day, say > Tuesday. I can't see a way to convince cron to do this. Anyone know > how? You can't. Cron doesn't support this. However, what you can do is wrap your stuff in a script that either creates a "flag" file somewhere (if it doesn't exist) and runs your stuff or deletes the flag file (if it exists) and exits. Then run that every Tuesday from crontab. Alternatively, you can use "at" to schedule the job initially, and then have it reschedule itself for two weeks time. You probably want it to email you a reminder that it's rescheduled itself too... Actually, I like the first one a lot, since you could also use it for every second day, month, ... Actually, a generic "wrapper" could even be made to run the task every of days/weeks/years/... 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 19 16:42: 8 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 B220F37B405 for ; Thu, 19 Jul 2001 16:42:03 -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 f6JNfwA07478; Thu, 19 Jul 2001 16:41:58 -0700 (PDT) Message-Id: <200107192341.f6JNfwA07478@ptavv.es.net> To: Karl Agee Cc: freebsd-questions Subject: Re: still cant cvsup--options needed In-reply-to: Your message of "Tue, 17 Jul 2001 23:13:01 PDT." <20010718061301.25805.qmail@web12306.mail.yahoo.com> Date: Thu, 19 Jul 2001 16:41:57 -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 Karl, Grasping at straws... Have you tried adding the result of the 'hostname' command to /etc/hosts? You can probably put it on the line for 127.0.0.1 localhost. 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 19 16:45:35 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 DF84B37B40B for ; Thu, 19 Jul 2001 16:45:30 -0700 (PDT) (envelope-from ahl@austclear.com.au) Received: from tungsten.austclear.com.au (tungsten.austclear.com.au [192.168.166.65]) by ns2.austclear.com.au (8.11.2/8.11.3) with ESMTP id f6JNjTZ50117; Fri, 20 Jul 2001 09:45:29 +1000 (EST) (envelope-from ahl@austclear.com.au) Received: from tungsten (tungsten [192.168.166.65]) by tungsten.austclear.com.au (8.9.3/8.9.3) with ESMTP id JAA04735; Fri, 20 Jul 2001 09:45:29 +1000 (EST) Message-Id: <200107192345.JAA04735@tungsten.austclear.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: "Tommy Forrest - KE4PYM" Cc: "questions@FreeBSD.ORG" Subject: Re: ARP errors [was Re: Sendmail Problems] In-Reply-To: Message from "Tommy Forrest - KE4PYM" of "Thu, 19 Jul 2001 19:20:06 -0400." <200107192319.TAA24199@ns.shellworld.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 20 Jul 2001 09:45:29 +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 For a start, use a subject that has something to do with the problem. This error has NOTHING to do with sendmail, and there is nothing that suggests that it might!!! The errors indicate that two MAC addresses are using the same IP address. If you're using a switch, you should be able to trace through it's MAC forwarding table to find the ports attached to these addresses, and then follow the cables back to the devices. 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 19 16:52: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from motgate3.mot.com (motgate3.mot.com [144.189.100.103]) by hub.freebsd.org (Postfix) with ESMTP id 6C4D237B406 for ; Thu, 19 Jul 2001 16:51:58 -0700 (PDT) (envelope-from venkatesh.pandurangi@motorola.com) Received: [from pobox.mot.com (pobox.mot.com [129.188.137.100]) by motgate3.mot.com (motgate3 2.1) with ESMTP id QAA05942 for ; Thu, 19 Jul 2001 16:44:44 -0700 (MST)] Received: [from il27exm07.cig.mot.com (IL27EXM07.cig.mot.com [136.182.15.116]) by pobox.mot.com (MOT-pobox 2.0) with ESMTP id QAA04172 for ; Thu, 19 Jul 2001 16:51:57 -0700 (MST)] Received: by IL27EXM07.cig.mot.com with Internet Mail Service (5.5.2653.19) id <3LL2QJCH>; Thu, 19 Jul 2001 18:51:57 -0500 Message-ID: <796456A0F96AD511A0AC009027B0F7412D0767@IL27EXM08.cig.mot.com> From: Pandurangi Venkatesh-AVP028 To: "'freebsd-questions@FreeBSD.ORG'" Subject: Question on FTP Date: Thu, 19 Jul 2001 18:51:56 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I am new to FreeBSD. I have installed FreeBSD 4.2 on two i386 PCs. These two PCs are connect to each other in a local network using CISCO routers. I am trying to run 'ftp' command from one FreeBSD PC to another FreeBSD PC. It takes very very long time to get to the FTP prompt. After the ftp command, it immediately displays 'connected to 77.1.63.1' (Ip address of PC2) and takes long time to get to the FTP prompt. I also tried different ways of FTPing to these FreeBSD PCs. I tried ftping from Windows PC to FreeBSD PC, it works fine without any delay. FreeBSD to Lynux also works fine. From FreeBSD to FreeBSD is a problem. Could you please help me to resolve this problem? Thanks in advance. Venki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 17:10:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from itouch.co.nz (itouch.co.nz [203.99.66.188]) by hub.freebsd.org (Postfix) with ESMTP id 4F18537B401 for ; Thu, 19 Jul 2001 17:10:15 -0700 (PDT) (envelope-from jonc@itouch.co.nz) Received: (from jonc@localhost) by itouch.co.nz (8.11.3/8.11.1) id f6K0A5410570; Fri, 20 Jul 2001 12:10:05 +1200 (NZST) (envelope-from jonc) Date: Fri, 20 Jul 2001 12:10:05 +1200 From: Jonathan Chen To: Pandurangi Venkatesh-AVP028 Cc: "'freebsd-questions@FreeBSD.ORG'" Subject: Re: Question on FTP Message-ID: <20010720121005.A10414@itouchnz.itouch> References: <796456A0F96AD511A0AC009027B0F7412D0767@IL27EXM08.cig.mot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <796456A0F96AD511A0AC009027B0F7412D0767@IL27EXM08.cig.mot.com>; from venkatesh.pandurangi@motorola.com on Thu, Jul 19, 2001 at 06:51:56PM -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 19, 2001 at 06:51:56PM -0500, Pandurangi Venkatesh-AVP028 wrote: > Hi, > > I am new to FreeBSD. I have installed FreeBSD 4.2 on two i386 PCs. These two > PCs are connect to each other in a local network using CISCO routers. I am > trying to run 'ftp' command from one FreeBSD PC to another FreeBSD PC. It > takes very very long time to get to the FTP prompt. After the ftp command, > it immediately displays 'connected to 77.1.63.1' (Ip address of PC2) and > takes long time to get to the FTP prompt. The ftp server box is attempting a reverse DNS lookup; which times out after a minute. Put in the appropriate entries in the DNS for 77.1.63.1, and everything will work a lot faster. -- Jonathan Chen ---------------------------------------------------------------------- When you don't know what you are doing, do it neatly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 17:10:31 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 6799437B401 for ; Thu, 19 Jul 2001 17:10:25 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 53968 invoked by uid 100); 20 Jul 2001 00:10:24 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15191.30448.454660.954651@guru.mired.org> Date: Thu, 19 Jul 2001 19:10:24 -0500 To: Gary Kline Cc: questions@FreeBSD.ORG Subject: Re: emachine's cheap sound config... In-Reply-To: <20010719154004.A45174@tao.thought.org> References: <53908674@toto.iv> <15190.33189.436956.629617@guru.mired.org> <20010719001351.A42638@tao.thought.org> <15190.36174.480460.404173@guru.mired.org> <20010719154004.A45174@tao.thought.org> 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 Gary Kline types: > > Having X installed without bothering to configure a working driver > > means you can run other clients - gkrellm, for instance - on it to > > display on your workstation as well. > This last sounds like some new wizardry. Is gkrellm anything > like VNC? If you want to drop a few more helpful paragraphs > this way, I'd be much obliged... Otherwise, I'll note it in > my .ToDo file. No wizardry at all. Log into the server via ssh, set DISPLAY to point back to your workstation, and any client you start will display on the workstation. If you are using ssh with X forwarding enabled, that takes care of everything for you. Otherwise, you may have to set up security on your server. gkrellm is a GUI system monitoring tool. When doing admin duties for a network with mutliple servers that I'm not using, I like to have a gkrellm from each client open on my desktop. Just a clock is sufficient, and lets me monitor that the system times are properly synced. If it stops, or gets badly behind, or vanishes - something is wrong, and I need to deal with that system. You can monitor configure gkrellm to monitor a lot of things, 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 19 17:12:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.ptt.yu (ns1.ptt.yu [212.62.32.1]) by hub.freebsd.org (Postfix) with ESMTP id 5462437B403 for ; Thu, 19 Jul 2001 17:12:32 -0700 (PDT) (envelope-from joxi@ptt.yu) Received: from deepspace (bg3-041.ptt.yu [212.62.35.41]) by ns1.ptt.yu (8.11.4/8.11.4) with SMTP id f6K0CUE20209 for ; Fri, 20 Jul 2001 02:12:30 +0200 Message-ID: <004001c110b0$e1056440$29233ed4@deepspace> From: "Jovan Ivankovic" To: Subject: CMI8738 High Sample Rate Problem Date: Fri, 20 Jul 2001 02:14:01 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have trouble playing sound with my CMI8738 sound card in FreeBSD 4.3Release. I recompiled the kernel and I am able to play sounds at low sample rate .... for example: #cat sample.au | /dev/audio works fine ..... and I am also able to play low sample-rate mp3's #mpg123 /dos/Program\ Files/Winamp/demo.mp3 But when I try to play a file with for example 44100 sample rate I just hear some weird knock from my speakers I also cannot make the sound work in KDE 2.1.1 ..... http://www.freebsd.org/releases/4.3R/notes.html says that my sound card is supported I have read the handbook,faqs, man pcm(4), lint ... but nothing seems to work ... 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 19 17:13:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dv-db.com (dv-db.com [207.159.141.95]) by hub.freebsd.org (Postfix) with ESMTP id 270ED37B403 for ; Thu, 19 Jul 2001 17:13:45 -0700 (PDT) (envelope-from mark@dvdnews.co.uk) Received: from mark2 (usr358-bh2.blueyonder.co.uk [62.30.233.114]) by dv-db.com (8.9.3/8.9.3) with SMTP id BAA05445; Fri, 20 Jul 2001 01:13:25 +0100 (GMT/BST) Message-ID: <011c01c110b0$cce56a00$72e91e3e@mark2> From: "Mark Hughes" To: "Kyle j." , References: Subject: Re: win with freebsd 4.3 as gateway to internet Date: Fri, 20 Jul 2001 00:28:58 +0100 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 > Can I install freeBSD and use it as a gateway/router where other windows > machines will connect to this computer with freebsd on it to share the > bandwidth? Yes is the short answer. ppp -nat for dialup/ppp connections natd & ipfw for cable/lan/DSL connections Or a combination of the above. Check out www.mostgraveconcern.com/freebsd for info on some of these things. 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 19 17:18:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web12005.mail.yahoo.com (web12005.mail.yahoo.com [216.136.172.213]) by hub.freebsd.org (Postfix) with SMTP id 3318537B405 for ; Thu, 19 Jul 2001 17:18:33 -0700 (PDT) (envelope-from bsd2000au@yahoo.com.au) Message-ID: <20010720001833.10577.qmail@web12005.mail.yahoo.com> Received: from [61.9.188.59] by web12005.mail.yahoo.com via HTTP; Fri, 20 Jul 2001 10:18:33 EST Date: Fri, 20 Jul 2001 10:18:33 +1000 (EST) From: =?iso-8859-1?q?Keith=20Spencer?= Subject: Q->how to redial if dhcp allocates bad IP ??? To: fbsd 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 have an interesting problem for the scripting wizards about the listserv. Telstra in Australia has implemented ADSL and I am a customer (my school) I got pppoe working no sweat. BUT the ISP can allocate randomaly an IP from 144..... or 61... address spaces They have an admitted issue routing 144 addresses & if my gateway gets one the schools net access drops out (telstra drops the connection about every 24 hrs. This is a pain in the butt! Q.. How can I have something a script etc fire after a dialin has occurred to check the ip and redial until a 61.9... address is allocated? TRICKY? I would have no idea where to start because I come from a windows background (coding etc) but I am a convert to FBSD it is very cool. TIA Keith _____________________________________________________________________________ http://messenger.yahoo.com.au - Yahoo! Messenger - Voice chat, mail alerts, stock quotes and favourite news and lots more! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 17:41:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from ns.shellworld.net (ns.shellworld.net [64.29.16.176]) by hub.freebsd.org (Postfix) with ESMTP id 6468E37B405 for ; Thu, 19 Jul 2001 17:41:35 -0700 (PDT) (envelope-from tforrest@ns.shellworld.net) Received: (from tforrest@localhost) by ns.shellworld.net (8.9.3/8.9.3) id UAA26145; Thu, 19 Jul 2001 20:41:21 -0400 Message-Id: <200107200041.UAA26145@ns.shellworld.net> From: "Tommy Forrest - KE4PYM" To: "FreeBSD Questions" , "Tony Landells" Date: Thu, 19 Jul 2001 20:42:07 -0400 Reply-To: "Tommy Forrest - KE4PYM" X-Mailer: BluePrint Software Works PMMail2000 with Bandit Tagger98 In-Reply-To: <200107192345.JAA04735@tungsten.austclear.com.au> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Tag: Bandit Tagger98 - Registered to : KE4PYM Subject: Re: ARP errors [was Re: Sendmail Problems] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Heh, OOPS. I dont usually recall the name of the list I want to send, so I picked a random message, deleted the contents and neglected to reset the subject. Sorry. The problem is the addresses are not on my network. I do have a switch, but its on xl1. xl0 connects directly to my cable modem. On Fri, 20 Jul 2001 09:45:29 +1000, Tony Landells wrote: >For a start, use a subject that has something to do with the problem. >This error has NOTHING to do with sendmail, and there is nothing that >suggests that it might!!! > >The errors indicate that two MAC addresses are using the same IP address. > >If you're using a switch, you should be able to trace through it's >MAC forwarding table to find the ports attached to these addresses, >and then follow the cables back to the devices. > >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 > > Tommy Forrest - KE4PYM - tforrest@shellworld.net http://www.shellworld.net/~tforrest And now, its time, for some useless, bandwidth wasting words of wisdom: Windows: Proof that Microsoft has a roomful of monkeys with keyboards. PGP Public Key Fingerprint: B9ED C46F C92E 0101 4B4C BFC1 907C A0D0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 17:44:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tao.thought.org (sense-kline-248.oz.net [216.39.168.248]) by hub.freebsd.org (Postfix) with ESMTP id BDFD637B420 for ; Thu, 19 Jul 2001 17:44:39 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.11.3/8.11.0) id f6K0idD45702 for freebsd-questions@FreeBSD.ORG; Thu, 19 Jul 2001 17:44:39 -0700 (PDT) (envelope-from kline) From: Gary Kline Message-Id: <200107200044.f6K0idD45702@tao.thought.org> Subject: ...strange.... To: freebsd-questions@FreeBSD.ORG (FreeBSD Mailing List) Date: Thu, 19 Jul 2001 17:44:38 -0700 (PDT) Organization: <> thought.org: pvblic service Unix since 1986... <> X-Mailer: ELM [version 2.5 PL3] 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 finished cvsup'ing 4.3-STABLE this afternoon, and according to my cookbook notes from last month, did a make buildworld; make buildkernel XYZ. The buildworld finished successfully; the kernel build stalls with these errs. I'm not sub'd//re-sub'd to -stable. Can anyone clue me in, please?? gary cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/../include -I/usr/src/sys/contrib/ipfilter -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 /usr/src/sys/pci/if_dc.c /usr/src/sys/pci/if_dc.c: In function `dc_start': /usr/src/sys/pci/if_dc.c:2853: syntax error before `static' /usr/src/sys/pci/if_dc.c:2856: `xsc' undeclared (first use in this function) /usr/src/sys/pci/if_dc.c:2856: (Each undeclared identifier is reported only once /usr/src/sys/pci/if_dc.c:2856: for each function it appears in.) /usr/src/sys/pci/if_dc.c:3019: syntax error before `static' /usr/src/sys/pci/if_dc.c:3037: warning: `return' with a value, in function returning void /usr/src/sys/pci/if_dc.c:3043: syntax error before `static' /usr/src/sys/pci/if_dc.c:3057: `ifmr' undeclared (first use in this function) /usr/src/sys/pci/if_dc.c:3068: syntax error before `static' /usr/src/sys/pci/if_dc.c:3074: `data' undeclared (first use in this function) /usr/src/sys/pci/if_dc.c:3080: `command' undeclared (first use in this function) /usr/src/sys/pci/if_dc.c:3084: warning: unreachable code at beginning of switch statement /usr/src/sys/pci/if_dc.c:3128: warning: `return' with a value, in function returning void /usr/src/sys/pci/if_dc.c:3131: syntax error before `static' /usr/src/sys/pci/if_dc.c:3155: syntax error before `static' /usr/src/sys/pci/if_dc.c:3211: syntax error before `static' /usr/src/sys/pci/if_dc.c:3216: `dev' undeclared (first use in this function) /usr/src/sys/pci/if_dc.c:3222: syntax error at end of input /usr/src/sys/pci/if_dc.c:202: warning: `dc_ioctl' used but never defined /usr/src/sys/pci/if_dc.c:203: warning: `dc_init' used but never defined /usr/src/sys/pci/if_dc.c:204: warning: `dc_stop' used but never defined /usr/src/sys/pci/if_dc.c:205: warning: `dc_watchdog' used but never defined /usr/src/sys/pci/if_dc.c:206: warning: `dc_shutdown' used but never defined /usr/src/sys/pci/if_dc.c:207: warning: `dc_ifmedia_upd' used but never defined /usr/src/sys/pci/if_dc.c:208: warning: `dc_ifmedia_sts' used but never defined *** Error code 1 Stop in /usr/obj/usr/src/sys/GENERIC. *** Error code 1 Stop in /usr/src. *** Error code 1 -- Gary D. Kline kline@thought.org www.thought.org Public service Unix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 17:48: 9 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 2740B37B405 for ; Thu, 19 Jul 2001 17:48:05 -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 f6K0j0N01574; Fri, 20 Jul 2001 01:45:01 +0100 (BST) (envelope-from rdls) Date: Fri, 20 Jul 2001 01:45:00 +0100 From: Richard Smith To: Tommy Forrest - KE4PYM Cc: "questions@FreeBSD.ORG" Subject: Re: ARP Problems (was: Re: Sendmail Problems) Message-ID: <20010720014459.A1401@gaia.home.rdls.net> References: <20010720104631.C2823@itouchnz.itouch> <200107192319.TAA24199@ns.shellworld.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200107192319.TAA24199@ns.shellworld.net>; from tforrest@shellworld.net on Thu, Jul 19, 2001 at 07:20:06PM -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 19, 2001 at 07:20:06PM -0400, Tommy Forrest - KE4PYM wrote: > What do these entries mean?? > > > Jul 19 05:52:21 weedwhacker /kernel: arp: 24.163.68.129 moved from > 00:b0:64:b7:b3:8c to 00:b0:64:b7:b3:54 > on xl0 > Jul 19 06:43:16 weedwhacker /kernel: arp: 24.163.68.129 moved from > 00:b0:64:b7:b3:54 to 00:b0:64:b7:b3:8c You have two machines on your network who both think they're 24.163.68.129. 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 19 17:52: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id B121B37B405 for ; Thu, 19 Jul 2001 17:51:59 -0700 (PDT) (envelope-from iedowse@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 20 Jul 2001 01:51:58 +0100 (BST) To: David Wen Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FSCK PROBLEM In-Reply-To: Your message of "Thu, 19 Jul 2001 17:23:50 CDT." Date: Fri, 20 Jul 2001 01:51:56 +0100 From: Ian Dowse Message-ID: <200107200151.aa52814@salmon.maths.tcd.ie> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message , David Wen writes: >One of my disk was dropped, I used fsck then was able to mounted it = >back. But when machine was rebooted, it was not mounted. I found out = >that no matter how many times I do the fsck, there is still a problem. = >BAD SUPER BLOCK: VALUES IN SUPER BLOCK DISAGREE WITH THOSE IN FIRST = >ALTERNATE My guess would be that the last superblock on the disk got corrupted; the "FIRST ALTERNATE" that fsck mentions is in fact the superblock copy nearest the end of the partition. You might be able to fix this with tunefs using the "-A" option, which updates all superblocks. Try running tunefs -A /dev/da2s1e and then retry the fsck. Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 17:59:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web5406.mail.yahoo.com (web5406.mail.yahoo.com [216.115.106.198]) by hub.freebsd.org (Postfix) with SMTP id 275C037B401 for ; Thu, 19 Jul 2001 17:59:12 -0700 (PDT) (envelope-from imgweb@yahoo.com) Message-ID: <20010720005912.15269.qmail@web5406.mail.yahoo.com> Received: from [66.31.18.196] by web5406.mail.yahoo.com; Thu, 19 Jul 2001 17:59:12 PDT Date: Thu, 19 Jul 2001 17:59:12 -0700 (PDT) From: Julian Steinberg Subject: Sharing a drive over network from other OS's To: questions@freebsd.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1653377373-995590752=:12583" Sender: owner-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-1653377373-995590752=:12583 Content-Type: text/plain; charset=us-ascii Hello all; You have been *extremely* helpful in the past... Can you: 1) Mount a tape drive running in rhat linux or solaris to a bsd box 2) If true can you then use dump[8] to it? 3) If 2&3 are both true is this accomplished via nfs? Thanx, J. Steinberg -jss check out the evolving art of www.imaginetrix.com/gallery "Freedom is complete unattachment" "When we sit we watch the movie of our lives" Suzuki Roshi --------------------------------- Do You Yahoo!? Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/ --0-1653377373-995590752=:12583 Content-Type: text/html; charset=us-ascii

Hello all;

You have been *extremely* helpful in the past...

Can you:

1) Mount a tape drive running in rhat linux or solaris to a bsd box

2) If true can you then use dump[8] to it?

3) If 2&3 are both true is this accomplished via nfs?

Thanx,

 

J. Steinberg



-jss

check out the evolving art of www.imaginetrix.com/gallery

"Freedom is complete unattachment"
"When we sit we watch the movie of our lives" Suzuki Roshi



Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 a year!
http://personal.mail.yahoo.com/ --0-1653377373-995590752=:12583-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 18:40: 3 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 577AE37B405 for ; Thu, 19 Jul 2001 18:39:57 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 56275 invoked by uid 100); 20 Jul 2001 01:39:56 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15191.35820.325672.101326@guru.mired.org> Date: Thu, 19 Jul 2001 20:39:56 -0500 To: Alex Dyas , Olivier Cortes Cc: questions@freebsd.org Subject: RE: Shell scripting gurus I nedd your help In-Reply-To: <55717934@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 Alex Dyas types: > $ for address in `cat admins.txt`;do ls -al | mail -s "Ouput of ls command" > $address;done You're running the ls once per address. This may not give the desired results, and certainly uses more CPU than generating the list once. Olivier Cortes types: > ----------------------------------- > #!/bin/blash > > COMMAND='ls -la' > MSGFILE="my_temp_fic_1012380293476234" > ADDRFILE="admins.txt" > > $COMMAND > $MSGFILE 2>&1 > > while read ADDR > do > mail -s "$COMMAND" $ADDR < $MSGFILE > done < $ADDRFILE Both of these work, but have the same basic problem - they create a mail process for every address, which uses a lot of resources. It also creates a message - with a different message id - for every user, which can screw up message threading. It also means you have to wait for the mail to be delivered before starting the next command, which can add up to quite a bit of real time. You could background the mail commands, but that risks running out of processes, or spool space, or some other resource. If you hand the message and addresses to the MTA properly, you should only have to wait for one message to be delivered. The MTA will then give it a messageid, and deliver it as efficiently as possible. In the extreme case, the MTA might deliver one message along with the destination addresses to a remote server, which would just keep one copy of the message along with pointers in each readers mailbox, meaning you've just multiplied cpu, network and disk usage by the number of addresses. Since the mail command can handle multiple addresses, sending the message to `cat admins.txt` is one way of handing things off to the MTA. Going with an alias gives the MTA an even better chance to lower usage, and makes the list available for other uses as well. 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 19 18:41:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pop3.icubed.com (pop3.icubed.com [208.0.145.4]) by hub.freebsd.org (Postfix) with ESMTP id 500E037B405 for ; Thu, 19 Jul 2001 18:41:35 -0700 (PDT) (envelope-from fredh2@icubed.com) Received: from root.icubed.com (du202p178.icubed.com [204.215.202.178]) by pop3.icubed.com (8.10.2/8.10.2) with ESMTP id f6K27A511510 for ; Thu, 19 Jul 2001 22:07:10 -0400 (EDT) Message-Id: <5.0.2.1.2.20010719214344.009ed890@pop.icubed.com> X-Sender: fredh2@pop.icubed.com X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Thu, 19 Jul 2001 21:45:44 -0400 To: questions@freebsd.org From: "Frederick K. Horman" Subject: Tape Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG What happened to floppy controller tape drive support in the FreeBSD 4.2 kernel? What little I can find in the manual is wrong and obsolete. Thanks Fredh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 18:53: 3 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 6A0DD37B401 for ; Thu, 19 Jul 2001 18:53:01 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 56653 invoked by uid 100); 20 Jul 2001 01:53:00 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15191.36604.577995.987796@guru.mired.org> Date: Thu, 19 Jul 2001 20:53:00 -0500 To: Neil Darlow Cc: questions@freebsd.org Subject: Re: Source Update is incomplete? In-Reply-To: <25723275@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 Neil Darlow types: > I haven't come across any good documentation on these so which do I > need to enable. I'm guessing that these are for compatibility with > older versions of FreeBSD and if I'm not running anything from 3.x, > and earlier, should I just enable COMPAT4X? You're right - they are for compatability with old versions of freebsd's C libraries. To run binaries from FreeBSD ?.X, you need to enable COMPAT?X. Note that some ports/packages install prebuilt binaries that may need those compat libraries, though I've not found anything that needs things prior to COMPAT3X. A message like '/usr/libexec/ld-elf.so.1: Shared object "libc.so.3" not found' from the binary is a good indication that it wants - in this case - COMPAT3X. As for COMPAT4X on 4-STABLE, it just creates old versions of some crypto libraries. You may not need it at all in that case. If you're running -current, you should read the description of -stable vs. -current at , then consider whether you really want to be doing 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 19 18:53: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tao.thought.org (sense-kline-248.oz.net [216.39.168.248]) by hub.freebsd.org (Postfix) with ESMTP id CB1EB37B408 for ; Thu, 19 Jul 2001 18:53:04 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.11.3/8.11.0) id f6K1r4i45848; Thu, 19 Jul 2001 18:53:04 -0700 (PDT) (envelope-from kline) Date: Thu, 19 Jul 2001 18:53:03 -0700 From: Gary Kline To: Gary Kline Cc: FreeBSD Mailing List Subject: Re: ...strange.... [fixed, hopefully] Message-ID: <20010719185303.A45782@tao.thought.org> References: <200107200044.f6K0idD45702@tao.thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200107200044.f6K0idD45702@tao.thought.org>; from kline@ns1.thought.org on Thu, Jul 19, 2001 at 05:44:38PM -0700 X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 15 years of service to the Unix community Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jul 19, 2001 at 05:44:38PM -0700, Gary Kline wrote: > > > I finished cvsup'ing 4.3-STABLE this afternoon, and > according to my cookbook notes from last month, > did a > > make buildworld; > make buildkernel XYZ. > > The buildworld finished successfully; the kernel build > stalls with these errs. I'm not sub'd//re-sub'd to > -stable. > > Can anyone clue me in, please?? > > gary > > > > > cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/../include -I/usr/src/sys/contrib/ipfilter -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 /usr/src/sys/pci/if_dc.c > /usr/src/sys/pci/if_dc.c: In function `dc_start': > /usr/src/sys/pci/if_dc.c:2853: syntax error before `static' [ .. ] The bug in if_dc.c was a missing closing brace in thr function above dc_start(). The kernel build is still munching along.... -g -- Gary D. Kline kline@thought.org www.thought.org Public service Unix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 19: 5:15 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 8FB5D37B405 for ; Thu, 19 Jul 2001 19:05:11 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 221356ACBC; Fri, 20 Jul 2001 11:35:09 +0930 (CST) Date: Fri, 20 Jul 2001 11:35:09 +0930 From: Greg Lehey To: Dennis Jun Cc: freebsd-questions@freebsd.org Subject: Re: Why is root named "Charlie"? Message-ID: <20010720113509.I56611@wantadilla.lemis.com> References: <20010719185107.14311.qmail@web11605.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: <20010719185107.14311.qmail@web11605.mail.yahoo.com>; from dennisjun@yahoo.com on Thu, Jul 19, 2001 at 11:51:07AM -0700 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 Thursday, 19 July 2001 at 11:51:07 -0700, Dennis Jun wrote: > Just outta curiosity, anyone know why root is > named "Charlie"? I hope it's not in reference > to the BSD Daemon which some people incorrectly > refer to as "Chuckie." ;) The most plausible thing I've heard is that it's a reference to a baseball player called Charlie Root. I don't know if he really existed, but if he did, it would seem to fit. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 19: 6:34 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 EE68837B401 for ; Thu, 19 Jul 2001 19:06:30 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 57027 invoked by uid 100); 20 Jul 2001 02:06:29 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15191.37413.795697.368820@guru.mired.org> Date: Thu, 19 Jul 2001 21:06:29 -0500 To: "Riley J. McIntire" Cc: questions@freebsd.org Subject: Re: One drive, 2 drive entries during 4.3 install In-Reply-To: <3814057@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 Riley J. McIntire types: > The machine is an old p166 but has a single new IBM 20GB drive in it. > What surprised me, and it didn't happen as I recall during the 4.1 > install, is two drives are showing up. wd0 and ad0. The drive > parameter are the same. What's happening here? Just a choice of > drivers? Is this intended--should I be concerned? You've nailed it. There are two drivers for IDE disks - ad and wd. It's showing you both of them. > I chose the ad0 driver. Also am using the 4.1 /stand/sysinstall and > editing the release to 4.3-20010718-STABLE. ad is the newer driver, and wd is slated for removal, so you made the correct choice. You probably shouldn't stretch sysinstall from 4.1 to 4.3-stable, 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 19 19:10:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.vkpc.com (cr1004613-a.rct1.bc.wave.home.com [24.113.38.121]) by hub.freebsd.org (Postfix) with SMTP id 0B8A337B405 for ; Thu, 19 Jul 2001 19:10:20 -0700 (PDT) (envelope-from danny@vkpc.com) Received: (qmail 1122 invoked from network); 20 Jul 2001 02:10:19 -0000 Received: from unknown (HELO dyoo) (192.168.1.10) by cr1004613-a.rct1.bc.wave.home.com with SMTP; 20 Jul 2001 02:10:19 -0000 From: "Danny Yoo" To: Subject: Illegal cable configuration?? (SCSI, new install of FreeBSD) Date: Thu, 19 Jul 2001 19:11:18 -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) 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'm trying to set up FreeBSD 4.3-RELEASE on an old IBM PC Server 330 (Pentium Pro 200). It's got an on-board Adaptec 7880 SCSI controller, and I've only got two SCSI devices inside: a Quantum HD and an IBM CD-ROM. My problem is that when the system boots up with mfsroot.flp (boot disk #2) AFTER the kernel configuration, I get a message akin to: ahc0: Illegal cable configuration!! Only two connectors on the adapter may be used at a time! And then a few lines later it hangs at: "Waiting 15 seconds for SCSI devices to settle" Now, the system is currently running Corel Linux just fine; I can access the HD and CD-ROM without a hitch. I'm _pretty_ sure that the SCSI connections are properly terminated (this is my first time using a SCSI system)... I say that solely based on the fact that Corel works just fine. I'd assume that an ill-configured SCSI system would create noticeable problems right away? I'm not sure what the system means by: "Only two connectors on the adapter may be used at a time!" The external connector isn't used and the external termination jumper is set (I've tried it in both positions); only the internal connector cable is used which connects first to the HD then to the CD-ROM. I've tried reversing the order, I've tried disconnecting the CD-ROM from the system to no avail. I've looked through the BIOS for "auto-termination/hardware-termination" options (suggested in an archive posting) but my system apparently does not have such a feature. I'm sorry if the specifications of my problem is too vague; I'll gladly try to offer more information if it is needed. I have spent about 1.5 hours searching google and the digest archives; one other person had the EXACT same problem as I did, but the only person to respond to him told him that he should post to this list (I guess he was posting somewhere else). Much thanks in advance, Danny Yoo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 19:18:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from willy.bluefeathertech.com (willy.bluefeathertech.com [63.226.233.139]) by hub.freebsd.org (Postfix) with SMTP id A817737B406 for ; Thu, 19 Jul 2001 19:18:42 -0700 (PDT) (envelope-from kyrrin@bluefeathertech.com) Received: (qmail 20701 invoked by uid 0); 20 Jul 2001 02:18:41 -0000 Received: from unknown (HELO seleth.bluefeathertech.com) (192.168.42.40) by bluefeathertech.com with SMTP; 20 Jul 2001 02:18:41 -0000 Content-Type: text/plain; charset="iso-8859-1" From: Bruce Lane Reply-To: kyrrin@bluefeathertech.com Organization: Blue Feather Technologies To: freebsd-questions@freebsd.org Subject: GNOME Install help, please (Long) Date: Thu, 19 Jul 2001 19:18:41 -0700 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <01071919184103.16386@seleth.bluefeathertech.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, folks, Before I get started, let me make it clear that I have no real coding experience (not since the late 70's), and I definitely don't speak C or any modern language other than a little shell scripting. Please keep that in mind when composing any reply. I'm running FreeBSD 4.3 on a 'clone' workstation with a FIC PA-2013 motherboard, 256MB RAM, and all-SCSI on the disk side. I've had some problems installing GNOME 1.4 with the Makefile downloaded from the FreeBSD FTP site. Specifically: It was going along great guns when my system, for reasons that I have yet to determine, suddenly froze. No core dump, no kernel panic, no indication of any trouble at all. It just simply stopped. I hard-rebooted. Everything cleaned up OK, apparently, and I tried restarting the makefile run. It got a little ways through, and then spat the following at me. -=-=-=-=-=-=-=-=- cc -shared -Wl,--rpath -Wl,/usr/X11R6/lib gnome-about.lo gnome-animator.lo gnome-app.lo gnome-appbar.lo gnome-app-helper.lo gnome-app-util.lo gnome-calculator.lo gnome-canvas.lo gnome-canvas-image.lo gnome-canvas-load.lo gnome-canvas-line.lo gnome-canvas-rect-ellipse.lo gnome-canvas-polygon.lo gnome-canvas-text.lo gnome-canvas-util.lo gnome-canvas-widget.lo gnome-client.lo gnome-color-picker.lo gnome-dateedit.lo gnome-dentry-edit.lo gnome-dialog.lo gnome-dialog-util.lo gnome-dns.lo gnome-dock.lo gnome-dock-band.lo gnome-dock-item.lo gnome-dock-layout.lo gnome-druid.lo gnome-druid-page.lo gnome-druid-page-start.lo gnome-druid-page-standard.lo gnome-druid-page-finish.lo gnome-geometry.lo gnome-guru.lo gnome-entry.lo gnome-file-entry.lo gnome-font-picker.lo gnome-font-selector.lo gnome-href.lo gnome-ice.lo gnome-icon-list.lo gnome-icon-item.lo gnome-icon-sel.lo gnome-icon-text.lo gnome-icon-entry.lo gnome-init.lo gnome-less.lo gnome-mdi.lo gnome-mdi-child.lo gnome-mdi-generic-child.lo gnome-mdi-session.lo gnome-messagebox.lo gnome-number-entry.lo gnome-pixmap.lo gnome-pixmap-entry.lo gnome-popup-menu.lo gnome-popup-help.lo gnome-preferences.lo gnome-propertybox.lo gnome-properties.lo gnome-property-entries.lo gnome-scores.lo gnome-spell.lo gnome-startup.lo gnome-stock.lo gnome-winhints.lo gnome-paper-selector.lo gnome-procbar.lo gnome-window.lo gnome-window-icon.lo gnometypes.lo gtkcauldron.lo gtk-clock.lo gtk-ted.lo gtkdial.lo gtkpixmapmenuitem.lo -L/usr/local/lib -lesd -laudiofile -lm -laudiofile -lm -lglib12 -L/usr/X11R6/lib -lgdk_imlib -ltiff -lungif -lpng -lz -lm -lgtk12 -lgdk12 -lgmodule12 -lglib12 -lintl -lxpg4 -lXext -lX11 -lm -lSM -lICE -lgtk12 -lgdk12 -lgmodule12 -lglib12 -lintl -lxpg4 -lXext -lX11 -lm -lz -lm -Wl,-soname -Wl,libgnomeui.so.4 -o .libs/libgnomeui.so.4 gnome-druid-page.lo: file not recognized: File format not recognized gmake[3]: *** [libgnomeui.la] Error 1 gmake[3]: Leaving directory `/usr/ports/x11/gnomelibs/work/gnome-libs-1.2.11/libgnomeui' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/x11/gnomelibs/work/gnome-libs-1.2.11/libgnomeui' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/x11/gnomelibs/work/gnome-libs-1.2.11' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop in /usr/ports/x11/gnomelibs. *** Error code 1 Stop in /usr/ports/x11/gnomelibs. *** Error code 1 Stop in /usr/ports/x11/gnomelibs. *** Error code 1 Stop in /usr/ports/x11/gnomelibs. *** Error code 1 Stop in /usr/home/kyrrin. *** Error code 1 Stop in /usr/home/kyrrin. *** Error code 1 Stop in /usr/home/kyrrin. *** Error code 1 Stop in /usr/home/kyrrin. *** Error code 1 Stop in /usr/home/kyrrin. seleth# -=-=-=-=-=-=-=-=-=- My questions: (a) What happened? (b) How can I clear it up? My speculation: The sudden halt corrupted one or more required files. Which ones, and where do I replace them from if this is indeed what happened? Thanks in advance. -- Bruce Lane, Owner & Head Hardware Heavy, Blue Feather Technologies -- http://www.bluefeathertech.com ARS KC7GR -- Formerly WD6EOS -- kyrrin@bluefeathertech.com "I'll get a life when someone demonstrates to me that it would be superior to what I have now..." (Taki Kogoma, AKA Gym Z. Quirk) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 19:24: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from relay2.bu.edu (relay2.bu.edu [128.197.27.102]) by hub.freebsd.org (Postfix) with ESMTP id DC9EE37B406 for ; Thu, 19 Jul 2001 19:23:57 -0700 (PDT) (envelope-from jhoder@bu.edu) Received: from bu.edu (dip12-ppp-218.bu.edu [168.122.12.218]) by relay2.bu.edu ((8.9.3.buoit.v1.0.ACS)/) with ESMTP id WAA01159 for ; Thu, 19 Jul 2001 22:23:21 -0400 Message-ID: <3B57A6D5.45B8FFDB@bu.edu> Date: Thu, 19 Jul 2001 22:34:45 -0500 From: John X-Mailer: Mozilla 4.61C-CCK-MCD BU99 (Macintosh; I; PPC) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: Kernel Question, 7-19 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 new at this, and would really appreciate some assistance. I am running FreeBSD 4.2 and have successfully installed the software YAY! I loaded the KDE desktop environment and haven't yet blown up my monitor. For a novice, I am relatively pleased.. ) So, here's my question: I have followed the website instructions to the letter for creating a custom kernel (what got me started was wanting to have sound capability). So, I copied the generic kernel to one named "MYKERNEL". I can see that this file exists, and I can open it with my "ee" editor. I added the necessary "device pcm" line. But now, I've tried compiling it with both of the procedures you list on your site. With procedure 1, I'm told that the file "MYKERNEL" doesn't exist. With procedure 2, I'm told that I "cannot make buildkernel". Obviously, I have made a silly blunder. Although I'm certainly not yet "worthy", and you FreeBSD gurus are probably getting a good chuckle right now, I have a sincere interest in this stuff and would be grateful if you have a suggestion or two. Clearly I'm getting into the deep end of the pool now. Any help is appreciated.. ) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 19:25:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from copland.udel.edu (copland.udel.edu [128.175.13.92]) by hub.freebsd.org (Postfix) with ESMTP id DA62437B405 for ; Thu, 19 Jul 2001 19:25:12 -0700 (PDT) (envelope-from elliot@UDel.Edu) Received: from copland.udel.edu (copland.udel.edu [128.175.13.92]) by copland.udel.edu (8.9.3/8.9.3) with ESMTP id WAA18171 for ; Thu, 19 Jul 2001 22:25:11 -0400 (EDT) Date: Thu, 19 Jul 2001 22:25:11 -0400 (EDT) From: "Elliot L. Tobin" To: Subject: NFS and ipfw 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 just setup NFS and created some rules to protect it, using ipfw. All the boxes, temporarily, are both servers and clients. box1 and box2 are having no problems talking to each other. Each can mount the other's shares. However, box1 and box3 are having problems. When box1 tries mounting a share on box3, syslog on box1 reads "NFS Portmap: RPC: Port mapper failure - RPC: Unable to send". The firewall on box3 allows tcp/udp on port 2049 and 111, from box1. The firewall on box1 has teh exact same setup for box2 and box3, so I'm not sure the problem. The syslog on box1 now spits of "/kernel nfsd send error 13" all the time, because box3 is trying to mount what box1 is offering. These are my rules on box1 .. ${fwcmd} add pass tcp from ${box2} to ${ip} 2049 ${fwcmd} add pass udp from ${box2} to ${ip} 2049 ${fwcmd} add pass tcp from ${box3} to ${ip} 2049 ${fwcmd} add pass udp from ${box3} to ${ip} 2049 ${fwcmd} add pass tcp from ${box2} to ${ip} 111 ${fwcmd} add pass udp from ${box2} to ${ip} 111 ${fwcmd} add pass tcp from ${box3} to ${ip} 111 ${fwcmd} add pass udp from ${box3} to ${ip} 111 Firewall on box3 is: ACCEPT tcp .. ip_of_box1 ip_of_box3 * -> 2049 ACCEPT udp .. ip_of_box1 ip_of_box3 * -> 2049 Any help is greatly appreciated.. If anyone can help me make it such I can mount from box1 <-> box3, I'd greatly appreciate it. box1 and box2 are FreeBSD 4.3-STABLE, box3 is Linux 2.2.18 Thanks.. And please respond directly, EllioT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 19:28:41 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 428DF37B409 for ; Thu, 19 Jul 2001 19:28:38 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 57766 invoked by uid 100); 20 Jul 2001 02:28:37 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15191.38741.225843.854067@guru.mired.org> Date: Thu, 19 Jul 2001 21:28:37 -0500 To: Mikhail Teterin Cc: questions@freebsd.org Subject: Re: grep and \t (\r, etc.) In-Reply-To: <78719817@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 Mikhail Teterin types: > Hi! > > I'm trying to clean up the HTML pages from the MSDOS-style > EOL characters. Actually removing them is easy: > > tr -d \\r < in > out > > does wonders, and, even better (removes spaces at EOL too): > > perl -pi -e 's/[\r ]+$//g' > > seems to work, but to find them (I don't want to touch the "good" > pages). I can not think of anything but grep. Which I can not make > work :( For example: > > find . -type -name '*.htm*' | xargs grep -E '\r$' > > just keeps listing all lines which end with ``r''... Any clues? Instead of trying to do this with home-grown tools, try installing tidy from the ports and just running it over all your html files. That will clean those up, among other things. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 19:32: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail5.mgfairfax.rr.com (fe5.southeast.rr.com [24.93.67.52]) by hub.freebsd.org (Postfix) with ESMTP id 3577B37B405 for ; Thu, 19 Jul 2001 19:32:01 -0700 (PDT) (envelope-from srichardson@peakei.com) Received: from oemcomputer ([24.168.201.87]) by mail5.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Thu, 19 Jul 2001 22:31:54 -0400 Reply-To: From: "Steve Richardson" To: Subject: New California Events! - IBM Business Partner Events program Date: Thu, 19 Jul 2001 22:25:32 -0300 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Date: 7/19/01 To: Sales Dept. FreeBSD, Inc. Subject: IBM Business Partner Events program New Event Opportunities Offered Through IBM's PartnerWorld... As an IBM Business Partner, FreeBSD, Inc. is eligible to participate with the IBM Business Partner Events program at leading industry trade shows throughout North America and Europe. The IBM Business Partner Events program is seeking your participation in the following events in 2001. By participating with the IBM BPE program, FreeBSD, Inc. and IBM can collaborate on meeting with customer prospects in these very lucrative and rapidly expanding business areas. FEATURED EVENTS Enterprise Web and Corporate Portals Conf. and Expo Santa Clara CC, Santa Clara, CA September 5-6, 2001 Conference Info at www.imgevents.com The Enterprise Web Corporate Portal Conference & Exposition is the only event that analyzes portals and content, application integration, Web extension and business integration, as well as application development and deployment, as a whole, emphasizing the interrelationships among them for the delivery of the next generation of enterprise class, Web-based systems CommVerge Conference and Exhibition Santa Clara CC, Santa Clara, CA September 19-21, 2001 CommVerge conference and exhibition serves the technical visionaries who are shaping the industry. Reach a wide range of professionals chartered with championing and developing innovative products, services, and network infrastructures that enable ubiquitous computing in the convergence era. The IBM BPE program at Enterprise Web and CommVerge provides a turn-key exhibit opportunity for IBM Premier, Advanced and Member Partners that includes: · Exhibit Space · The IBM Business Partner Display · Individual partner ped stations · Monitor · Signage · Exhibit staff registration · Electricity · Drayage (up to 150 lbs) · Lead retrieval · All set-up and dismantle services The turn-key cost to participate in Enterprise Web is $6,500 and for CommVerge is $5,250. Both events qualify for the use of co-marketing dollars, if you have them available. The BPE program provides IBM business partners the opportunity to leverage their relationship with IBM and to prospect for new customers and business opportunities. To take advantage of this opportunity to exhibit with the IBM Business Partner Events program, contact me by 5:00 p.m.(EST) on Friday, July 27, 2001 as noted below. We have a limited amount of space available offered on a first come-first serve basis. The complete list of the IBM BPE program's 2001 Calendar of Events can be found at www.ibm.com/partnerworld (Go to "Events") or at www.peakei.com. I look forward to talking with you. Terri Terri Pazirandeh IBM Business Partner Events program pazirandeh@peakei.com (703)931-9809 Direct (703)803-0465 Main Office (703)931-3326 Fax > > > Note: To remove yourself from future notices by the IBM Business Partner Events program, please REPLY to this email with REMOVE in the Subject line. *-All event figures as reported by show management To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 19:34: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 33FAF37B406 for ; Thu, 19 Jul 2001 19:34:41 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 57921 invoked by uid 100); 20 Jul 2001 02:34:40 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15191.39104.117314.161034@guru.mired.org> Date: Thu, 19 Jul 2001 21:34:40 -0500 To: Ronnie Clark Cc: questions@freebsd.org Subject: Re: startup script In-Reply-To: <104175447@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 Ronnie Clark types: > Where would I put a start up script in FreeBSD 4.2? I thought it was > /etc/rc.local, but I don't seem to have that file. It isn't used by the system, but will be run if it exists for backwards compatabillity. Most things now go in /usr/local/etc/rc.d as a script. It must be executable, and the name must end in .sh. It should also check for the arguments "start" and "stop" so it can be used at system startup and system shutdown time. Here's a trivial example: #!/bin/sh MIXERSTATE=/var/db/mixer-state case $1 in start) [ -r $MIXERSTATE ] && /usr/sbin/mixer `cat $MIXERSTATE` > /dev/null ;; stop) /usr/sbin/mixer -s > $MIXERSTATE ;; *) echo "usage: `basename $0` {start|stop}" >&2 exit 64 ;; esac 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 19 19:39:44 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dv-db.com (dv-db.com [207.159.141.95]) by hub.freebsd.org (Postfix) with ESMTP id 69E0537B405 for ; Thu, 19 Jul 2001 19:39:41 -0700 (PDT) (envelope-from mark@dvdnews.co.uk) Received: from mark2 (usr1533-bh2.blueyonder.co.uk [62.30.238.19]) by dv-db.com (8.9.3/8.9.3) with SMTP id DAA12168; Fri, 20 Jul 2001 03:39:37 +0100 (GMT/BST) Message-ID: <019401c110c5$37294da0$72e91e3e@mark2> From: "Mark Hughes" To: "John" , References: <3B57A6D5.45B8FFDB@bu.edu> Subject: Re: Kernel Question, 7-19 Date: Fri, 20 Jul 2001 03:36:18 +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 > I have followed the website instructions to the letter for creating a > custom kernel (what got me started was wanting to have sound > capability). So, I copied the generic kernel to one named "MYKERNEL". > I can see that this file exists, and I can open it with my "ee" editor. > I added the necessary "device pcm" line. > > But now, I've tried compiling it with both of the procedures you list on > your site. With procedure 1, I'm told that the file "MYKERNEL" doesn't > exist. With procedure 2, I'm told that I "cannot make buildkernel". Couple of ideas (from another newbie, relatively speaking, but I have recompiled the kernel successfully a couple of times).... Have you got MYKERNEL in /usr/src/sys/i386/conf? If so, with the first method, make sure you are in /usr/src/sys/i386/conf before running /usr/sbin/config MYKERNEL, and with the second make sure you are in /usr/src but the MYKERNEL file is in /usr/src/sys/i386/conf (I've only ever used the first method myself). That's about all I can think of that could cause it to not start in such a way. But as I said, I'm a newbie myself. > Obviously, I have made a silly blunder. Although I'm certainly not yet > "worthy", and you FreeBSD gurus are probably getting a good chuckle > right now, I have a sincere interest in this stuff and would be grateful > if you have a suggestion or two. Clearly I'm getting into the deep end > of the pool now. Any help is appreciated.. ) I'm sure most people here started out like you...one way or another, on one system or another. I know I'm learning as I go with FreeBSD, and having lots of fun doing it....got past kernel recompiling and adding audio support, just about got PPP working, IPFW and natd are my current challenges and I think I'm nearly on top of them. All good fun, as long as you're not doing it on a production system :+) I've not dared to go into x-windows yet...largely because I haven't seen the need yet, but I'm sure I'll have a play sometime soon. Hope that helps, anyway. If not, I'm sure someone more experienced will be able to help you out. Regards, Mark -------------------------------------------------------- Mark Hughes Chief Badger Groomer http://www.wellgroomedbadger.co.uk/ (not yet online....) -------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 19:40:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from earthquake.mweb.co.za (earthquake.mweb.co.za [196.2.53.139]) by hub.freebsd.org (Postfix) with ESMTP id 03F6937B405 for ; Thu, 19 Jul 2001 19:40:48 -0700 (PDT) (envelope-from psyv@root.org.za) Received: from pta-dial-196-31-186-240.mweb.co.za ([196.31.186.240]) by earthquake.mweb.co.za (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) with ESMTP id <0GGR00BAK3CXIP@earthquake.mweb.co.za> for questions@FreeBSD.ORG; Fri, 20 Jul 2001 04:40:35 +0200 (SAT) Date: Fri, 20 Jul 2001 04:40:42 +0200 (SAST) From: The Psychotic Viper Subject: Re: Sendmail Problems In-reply-to: <20010720102128.B2823@itouchnz.itouch> X-Sender: psyv@lucifer.fuzion.za.org To: Jonathan Chen Cc: Caleb Walker , questions@FreeBSD.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 On Fri, 20 Jul 2001, Jonathan Chen wrote: *snip *------8<------8<------8<------8<------8<------8<------8<------8<------ > *mail etiquette obeyed thus far..you want to know what they said...read that mail* :) > On Thu, Jul 19, 2001 at 09:43:24PM +0000, Caleb Walker wrote: > ---------------------------------------------------------------------- > Opportunities are seldom labeled Ok heres my stab at it, did you do a mergemaster after you did the make build*/install*, chances are you make have missed or skipped that but I could be wrong. Secondly easy way to remake ur .cf would be 'cd /usr/src/etc/sendmail && make && make install'. But I'd recommend the merge master as who knows what else may be missing not to mention it will create the /etc/mail and other dirs if they missing. PsyV /off topic btw...anyone know why the list seems to loath mail sent via dialup smtp. I prefer to use my own for speed and because I swop ISPs often and saves having to keep change my smtp.:) done/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 19:42: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from blueyonder.co.uk (pcow025o.blueyonder.co.uk [195.188.53.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A66737B406 for ; Thu, 19 Jul 2001 19:41:57 -0700 (PDT) (envelope-from andrew@cream.org) Received: from cream.org ([62.31.80.67]) by blueyonder.co.uk with Microsoft SMTPSVC(5.5.1877.687.68); Fri, 20 Jul 2001 03:41:53 +0100 Message-ID: <3B579A6F.7040602@cream.org> Date: Fri, 20 Jul 2001 03:41:51 +0100 From: Andrew Boothman User-Agent: Mozilla/5.0 (Windows; U; Win98; en-GB; m18) Gecko/20010131 Netscape6/6.01 X-Accept-Language: en MIME-Version: 1.0 To: John Cc: questions@freebsd.org Subject: Re: Kernel Question, 7-19 References: <3B57A6D5.45B8FFDB@bu.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi! Welcome to FreeBSD! Do you have the whole system sources installed, or just the kernel sources? You should have made this decision while installing. But basically, is there anything in /usr/src other than the sys directory? If there is, you should be using the "new" method as described in the handbook, otherwise you have to use the "old" way. But, the "old" way should work reguardless of what sources you have installed. Where you in the correct (/usr/src/sys/i386/conf/) directory when you typed "/usr/sbin/config MYKERNEL"? BTW, don't ever worry about being considered 'worthy' by anyone! We were all in your situation of 'just starting out' at some point, you are exactly as worthy as we are! :-) Don't hesitate to drop me a line with any other questions. Andrew. John wrote: > I have followed the website instructions to the letter for creating a > custom kernel (what got me started was wanting to have sound > capability). So, I copied the generic kernel to one named "MYKERNEL". > I can see that this file exists, and I can open it with my "ee" editor. > I added the necessary "device pcm" line. > > But now, I've tried compiling it with both of the procedures you list on > your site. With procedure 1, I'm told that the file "MYKERNEL" doesn't > exist. With procedure 2, I'm told that I "cannot make buildkernel". To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 19:43:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pemaquid.safeport.com (pemaquid.safeport.com [204.156.12.58]) by hub.freebsd.org (Postfix) with ESMTP id C3A9537B409 for ; Thu, 19 Jul 2001 19:43:10 -0700 (PDT) (envelope-from doug@safeport.com) Received: from localhost (doug@localhost) by pemaquid.safeport.com (8.11.1/8.11.1) with ESMTP id f6K2h9D75228 for ; Thu, 19 Jul 2001 22:43:10 -0400 (EDT) (envelope-from doug@safeport.com) X-Authentication-Warning: pemaquid.safeport.com: doug owned process doing -bs Date: Thu, 19 Jul 2001 22:43:09 -0400 (EDT) From: To: freebsd-questions@FreeBSD.ORG Subject: MESA/QT problem 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 In installing kde2 from a ports collection updated 7/18, the QT install fails with "shared library GLU.1 not found" This library is listed as a part of Mesa. The versions are: Mesa-3.4.2_1 qt-2.3.1 I got around the problem by mounting an older ports collection with qt-2.3.0. This required reinstalling Mesa even though the versions matched. This seems to have solved the problem although I will not know until morning (at the earliest) as the KDE install lumbers on. My conclusion is that one or both of Mesa-3.4.2_1 and/or qt-2.3.1 has a problem. Has anyone else hit this? Any ideas other than what I did? _____ Douglas Denault doug@safeport.com Voice: 301-469-8766 Fax: 301-469-0601 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 19:46:13 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 9414237B406 for ; Thu, 19 Jul 2001 19:46:09 -0700 (PDT) (envelope-from andrew@cream.org) Received: from cream.org ([62.31.80.67]) by blueyonder.co.uk with Microsoft SMTPSVC(5.5.1877.687.68); Fri, 20 Jul 2001 03:46:10 +0100 Message-ID: <3B579B70.8050108@cream.org> Date: Fri, 20 Jul 2001 03:46:08 +0100 From: Andrew Boothman User-Agent: Mozilla/5.0 (Windows; U; Win98; en-GB; m18) Gecko/20010131 Netscape6/6.01 X-Accept-Language: en MIME-Version: 1.0 To: Gary Kline Cc: FreeBSD Mailing List Subject: Re: ...strange.... [fixed, hopefully] References: <200107200044.f6K0idD45702@tao.thought.org> <20010719185303.A45782@tao.thought.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Gary Kline wrote: >> make buildworld; >> make buildkernel XYZ. If that second statement was supposed to build a kernel called XYZ, then don't forget that the command should be "make buildkernel KERNCONF=XYZ" Also, problems with making the world in FreeBSD-STABLE are better directed to stable@freebsd.org instead of questions, as the right 'sort' of people tend to be listening on -stable. :-) Andrew. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 19:58:29 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 8A44C37B405 for ; Thu, 19 Jul 2001 19:58:24 -0700 (PDT) (envelope-from andrew@cream.org) Received: from cream.org ([62.31.80.67]) by blueyonder.co.uk with Microsoft SMTPSVC(5.5.1877.687.68); Fri, 20 Jul 2001 03:58:25 +0100 Message-ID: <3B579E4F.5080600@cream.org> Date: Fri, 20 Jul 2001 03:58:23 +0100 From: Andrew Boothman User-Agent: Mozilla/5.0 (Windows; U; Win98; en-GB; m18) Gecko/20010131 Netscape6/6.01 X-Accept-Language: en MIME-Version: 1.0 To: Dave Cc: freebsd-questions@freebsd.org Subject: Re: Port 25 Problems References: <001901c10fd6$7fe33820$670f5d18@lowroad.dhs.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello Dave! (What are you doing Dave? - 2001 Joke :-) ) I'm not certain about this, but it seems possible that your cable modem provider could be blocking port 25 to external IPs. I know that my cable ISP would be none too chuffed if they found me running an SMTP server, but your situation could be different. If you can't find any other problems, then contact their technical support department to ask if this is the case. Just don't expect them to know what FreeBSD is when you call! :-) Also, even if the aren't blocking port 25, they may not like you running a server on it anyway; that is the situation I have with my cable ISP. So asking them about it may tip them off that you are trying to do it! Just a thought... Andrew. Dave wrote: > Dear FreeBSD ubergeeks, > > Please help me with this, I've banged my head against the wall until my > forehead has taken on a flat bricklike appearance trying to figure out > how to fix my problem. I can't get my machine to respond to any > requests to port 25. It's not closed, I just get no response, as if the > port does not even exist. At first I had sendmail listening on 25, and > I thought the problem was there, so I installed qmail (and am much > happier with it), with the exact same results. Any request to port 25 > outside of my happy little class C is ignored. On the other hand, from > within my LAN, there is no problem whatsoever. Upon telneting into my > box on port 25, I'm greeted with "220 lowroad.dhs.org ESMTP", and mail > sent comes in fine. Here is a traceroute from an external network: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 20: 5:23 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 98A3037B407 for ; Thu, 19 Jul 2001 20:05:19 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 58594 invoked by uid 100); 20 Jul 2001 03:05:18 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15191.40942.174740.826610@guru.mired.org> Date: Thu, 19 Jul 2001 22:05:18 -0500 To: "Danny Yoo" Cc: questions@freebsd.org Subject: Re: Illegal cable configuration?? (SCSI, new install of FreeBSD) In-Reply-To: <84311862@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 Danny Yoo types: > I'm trying to set up FreeBSD 4.3-RELEASE on an old IBM PC Server 330 > (Pentium Pro 200). It's got an on-board Adaptec 7880 SCSI controller, and > I've only got two SCSI devices inside: a Quantum HD and an IBM CD-ROM. > > My problem is that when the system boots up with mfsroot.flp (boot disk #2) > AFTER the kernel configuration, I get a message akin to: > > ahc0: Illegal cable configuration!! Only two connectors on the adapter may > be used at a time! > > And then a few lines later it hangs at: "Waiting 15 seconds for SCSI devices > to settle" > > Now, the system is currently running Corel Linux just fine; I can access the > HD and CD-ROM without a hitch. I'm _pretty_ sure that the SCSI connections > are properly terminated (this is my first time using a SCSI system)... I say > that solely based on the fact that Corel works just fine. I'd assume that an > ill-configured SCSI system would create noticeable problems right away? That assumption is in general wrong. While some problems - two devices on the same id, for instance - show up right away, some problems tend to require stressing the bus to reveal themselves. The more subtle the problem, the more you have to stress them to bring it out. I had a system that was working fine until I built and installed a world that included some performance enhancements to the SCSI drivers. After that, the SCSI bus would lock up trying to build the world. The problem was that one of the SCSI buses was just slightly to long, but it took a "make buildworld" on the system with the enhancements to put enough traffic on the bus to trigger it. Moving an external device to a shorter internal bus solved the problem. FreeBSD tends to load systems more than other OS's, so it's not uncommon for a hardware problem to show up under FreeBSD but not other OSs. This is as true for SCSI hardware as anything else in the system. The best way to avoid SCSI problems is to sacrifice one farm animal a month to the SCSI gods during the dark of the moon. > I'm not sure what the system means by: "Only two connectors on the adapter > may be used at a time!" The external connector isn't used and the external > termination jumper is set (I've tried it in both positions); only the > internal connector cable is used which connects first to the HD then to the > CD-ROM. I've tried reversing the order, I've tried disconnecting the CD-ROM > from the system to no avail. It's not unusual for a SCSI controller to have three connectors: one external, one internal for 50 pin, and one internal for 68 pin. Having all three in use at once violates the SCSI calbe spec. That's what you're being warned about. > I've looked through the BIOS for "auto-termination/hardware-termination" > options (suggested in an archive posting) but my system apparently does not > have such a feature. One possibility is that the FreeBSD drivers check to see how many of the connectors are enabled, and complains if that number is more than two, where the Linux drivers don't do that check. So I'd check for features to disable those in the board BIOS, not just terminate them. I'd also suggest you bring this up on freebsd-scsi, as you're more likely to find people who can help with the problem there. 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 19 20: 8: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-215.dsl.lsan03.pacbell.net [63.207.60.215]) by hub.freebsd.org (Postfix) with ESMTP id 2570137B406 for ; Thu, 19 Jul 2001 20:07:55 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id A28DA66C4D; Thu, 19 Jul 2001 20:07:53 -0700 (PDT) Date: Thu, 19 Jul 2001 20:07:53 -0700 From: Kris Kennaway To: teo@gecadsoftware.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: netcraft uptime Message-ID: <20010719200752.A77759@xor.obsecurity.org> References: <01071912454000.51519@galaxy.anchoragerescue.org> <20010720001820.A585@gecadsoftware.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="AhhlLboLdkugWU4S" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010720001820.A585@gecadsoftware.com>; from teo@gecadsoftware.com on Fri, Jul 20, 2001 at 12:18:20AM +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 --AhhlLboLdkugWU4S Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 20, 2001 at 12:18:20AM +0300, teo@gecadsoftware.com wrote: > Hi Beech! > On Thu, 19 Jul 2001, Beech Rintoul wrote: >=20 > > I was looking at netcraft's site today and noticed that uptime doesn't = work=20 > > with FBSD servers. Anyboy have any info on this? Like how they do it an= d can=20 > > my server be configured to show it? > >=20 > [wild guess] >=20 > AFAIK the uptime is guessed using actually a flaw in TCP/IP; I saw that f= irst > time implemented in nmap, and I guess you cannot do it w/ FreeBSD Well, it's not a flaw per se, i.e. it's in conformance with the relevant RFC (1323), but it's arguably an undesirable feature anyway (information leaks about exact system uptime not good for security, mmkay?). When I get enough free time I'll be making a sysctl to disable the information leak while still letting you enable RFC 1323 extensions (which are back on by default again thesedays). Kris --AhhlLboLdkugWU4S 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 iD8DBQE7V6CHWry0BWjoQKURAgMhAJ4uetvdkPZ3uPsl45KQE69cRjnYigCgmw58 x0UWVMGVDgCMP5VRHi7FDks= =OqmW -----END PGP SIGNATURE----- --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 19 20:11:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from blueyonder.co.uk (pcow025o.blueyonder.co.uk [195.188.53.125]) by hub.freebsd.org (Postfix) with ESMTP id C8B7037B406 for ; Thu, 19 Jul 2001 20:11:49 -0700 (PDT) (envelope-from andrew@cream.org) Received: from cream.org ([62.31.80.67]) by blueyonder.co.uk with Microsoft SMTPSVC(5.5.1877.687.68); Fri, 20 Jul 2001 04:11:04 +0100 Message-ID: <3B57A146.5050108@cream.org> Date: Fri, 20 Jul 2001 04:11:02 +0100 From: Andrew Boothman User-Agent: Mozilla/5.0 (Windows; U; Win98; en-GB; m18) Gecko/20010131 Netscape6/6.01 X-Accept-Language: en MIME-Version: 1.0 To: guardian@dark-rune.com Cc: freebsd-questions@freebsd.org Subject: Re: Using PCI USB cards References: <10375.203.31.48.3.995449413.squirrel@www.dark-rune.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 Hi! We really need more information than this in order to help you. Not giving enough information is a common reason for getting no replys on a mailing list like this. For that, and other useful information on this list, please read http://www.lemis.com/questions.html Can you give us exactly what USB devices you have in your kernel configuration? I'd suggest using the GENERIC kernel to begin with, as I think all USB support is already included in it. And then remove things from the GENERIC kernel, instead of starting at a minimum kernel and adding things to make them work. If you kernel config isn't huge, you could simply post the entire thing. Andrew. guardian@dark-rune.com wrote: > Hi again, > I'm still playing around with this PCI USB card trying to make it work. > I've added in device OHCI and device USB and recompiled my kernel, now > named KERNAL1. > When I plug in the modem, no lights come on. The system brings up the card > when the box is booted. > > My uname -a is: > FreeBSD gordon.togo.private 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Mon Jul 2 > 22:59:10 GMT 2001 > hyper@gordon.togo.private:/usr/src/sys/compile/KERNAL1 i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 20:12:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mx.pitdc1.stargate.net (smtp2.mx.pitdc1.stargate.net [206.210.69.142]) by hub.freebsd.org (Postfix) with SMTP id 9D35937B409 for ; Thu, 19 Jul 2001 20:12:52 -0700 (PDT) (envelope-from mav@wastegate.net) Received: (qmail 25364 invoked from network); 20 Jul 2001 03:11:33 -0000 Received: from unknown (HELO mother) (216.151.64.63) by smtp2.mx.pitdc1.stargate.net with SMTP; 20 Jul 2001 03:11:33 -0000 From: "Doug Reynolds" To: "freebsd-questions@freebsd.org" Date: Thu, 19 Jul 2001 23:09:23 -0400 Reply-To: "Doug Reynolds" X-Mailer: PMMail 98 Professional (2.01.1600) For Windows 98 (4.10.2222) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Adaptec 1522 Scuzzi Message-Id: <20010720031252.9D35937B409@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I just got my fbsd 4.3 cd's in the mail, and i want to start off with a fresh install on my server, on my 2.7G Seagate ST43400N (doubles as a _very_ large paperweight). I am running and all in one (read el-cheapo) k6-266 mb. I have a adaptec 1522 scsi controller (it is the same as the 1520, however it is the floppy interface on it which is disabled, and is one of the first production cards as it has no p-n-pray on it). it is @ port 0x340,irq11(have dm0,irq11 assign to legasy/isa in bios), it detects fine when it is probed, and it detect the hard drive too. the card & the drive as both terminated on either end (the drive side is terminated with a 50 active, and i have terminator power jumpered "on" on the hd itself). the problem is when i try to partition the drive, it wont bring up da0 (or any drives for that matter), which is a problem. I am sort of stumped, I've used fbsd as a server for about 3 years now (granted i rarely hack into since it always brings up the dod ppp and smtpd faithfully) so i am not a total moron. the drive and card worked Aok in my win98se box until i pulled it and got a 30g ide. the only other thing i can think of is that i tried to Dangerously Dedidate it as a 2nd drive b4, which means no partition table, but i was under the impression that fbsd accessed everything as low level as possible... thanx in advance. --- doug reynolds | the maverick | mav@wastegate.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 20:14:40 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 6F06037B405 for ; Thu, 19 Jul 2001 20:14:35 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 58845 invoked by uid 100); 20 Jul 2001 03:14:34 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15191.41498.693978.568006@guru.mired.org> Date: Thu, 19 Jul 2001 22:14:34 -0500 To: Julian Steinberg Cc: questions@freebsd.org Subject: Re: Sharing a drive over network from other OS's In-Reply-To: <5692893@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 Julian Steinberg types: > --0-1653377373-995590752=:12583 > Content-Type: text/plain; charset=us-ascii > You have been *extremely* helpful in the past... If you would send just plain text, and not both plain text and ASCII, you'd probably get even more help. > 1) Mount a tape drive running in rhat linux or solaris to a bsd box You don't mount tape drives on Unix(*), so this question doesn't make sense. > 2) If true can you then use dump[8] to it? The dump syntax for accessing remote tape drives is "host:file". It should work to a real Unix box. I'm not sure about Linux. However, the rmt protocols used by dump aren't very efficient. You're better off using ssh or similar, and just piping the data around. Use dd on the remote end to deal with blocking: dump 0uf / | rsh taped-system dd of=/dev/magtape obs=1m > 3) If 2&3 are both true is this accomplished via nfs? Nope. 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 19 20:17:52 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 A330B37B409 for ; Thu, 19 Jul 2001 20:17:47 -0700 (PDT) (envelope-from andrew@cream.org) Received: from cream.org ([62.31.80.67]) by blueyonder.co.uk with Microsoft SMTPSVC(5.5.1877.687.68); Fri, 20 Jul 2001 04:17:48 +0100 Message-ID: <3B57A2DA.7000303@cream.org> Date: Fri, 20 Jul 2001 04:17:46 +0100 From: Andrew Boothman User-Agent: Mozilla/5.0 (Windows; U; Win98; en-GB; m18) Gecko/20010131 Netscape6/6.01 X-Accept-Language: en MIME-Version: 1.0 To: Tommy Forrest - KE4PYM Cc: FreeBSD Questions Subject: Re: ARP errors [was Re: Sendmail Problems] References: <200107200041.UAA26145@ns.shellworld.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Tommy, Please don't do this, as your mailer will create a header that tells other mailers that you were answering another messaage. Seeing as you weren't answering another message, this breaks all sorts of funky mailer functions like message threading which makes it less likely that your message will be read by people. I'm sure your mailer has an address book or somesuch function that will let you store the oh-so-difficult to remember questions@freebsd.org address ;-) Andrew. Tommy Forrest - KE4PYM wrote: > Heh, OOPS. > > I dont usually recall the name of the list I want to send, so I picked > a random message, deleted the contents and neglected to reset the > subject. Sorry. The problem is the addresses are not on my network. > I do have a switch, but its on xl1. xl0 connects directly to my cable > modem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 21: 6:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.forumone.com (snapper.forumone.com [207.197.141.11]) by hub.freebsd.org (Postfix) with ESMTP id 5D0DA37B405 for ; Thu, 19 Jul 2001 21:06:15 -0700 (PDT) (envelope-from jryden@forumone.com) Received: from pluto.forumone.com (pluto.forumone.com [207.32.101.4]) by mail.forumone.com (Postfix) with ESMTP id 8F08C81FE; Fri, 20 Jul 2001 00:08:17 -0400 (EDT) content-class: urn:content-classes:message Subject: RE: Ecrix Date: Fri, 20 Jul 2001 00:06:25 -0400 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----_=_NextPart_001_01C110D1.57D9BD56" Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: X-MimeOLE: Produced By Microsoft Exchange V6.0.4712.0 Thread-Topic: Ecrix Thread-Index: AcEQb58YqTVxPd2xSvG4vTyCIhj0KAAYPVoh From: "Joakim Ryden" To: 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 This is a multi-part message in MIME format. ------_=_NextPart_001_01C110D1.57D9BD56 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable Thanks - that would be a great way of checking. Unfortunately one of the partitions is ~14G and there is no single drive in the machine able to hold the file output of dump. :-/ Cleaning the drive is always an option although it was bought a week and a half ago and I'm wondering how dirty it could have gotten during that time but I guess you never know. --Jo -----Original Message----- From: Christoph Sold Sent: Thu 7/19/2001 12:15 PM To: Joakim Ryden Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Ecrix Joakim Ryden schrieb: >=20 > Hi - > I have a FreeBSD 4.0-STABLE machine with an Ecrix VXA 33/66G tape drive > in it. A full backup of the machine is ~19G and still I keep getting > "end of tape" messages when backing up. The tape _is_ rewound before > every backup. Command used to back up: >=20 > dump 0ufa /dev/nrsa0 /dev/mlxd0s1a >=20 > I just wanted to check if anyone else had experienced any weirdness like > this? Check the size of the dump by piping dunps output to a regular file. If the resulting file is bigger than _uncompressed_ tape size, you know your answer. If there remains tape, your drive is dirty. Clean its head. HTH -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message ------_=_NextPart_001_01C110D1.57D9BD56 Content-Type: application/ms-tnef; name="winmail.dat" Content-Transfer-Encoding: base64 eJ8+IhsEAQaQCAAEAAAAAAABAAEAAQeQBgAIAAAA5AQAAAAAAADoAAEIgAcAGAAAAElQTS5NaWNy b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAAAAAgACAAEEgAEACgAAAFJFOiBFY3JpeADsAgEFgAMA DgAAANEHBwAUAAAABgAZAAUAFwEBIIADAA4AAADRBwcAFAAAAAYAGQAFABcBAQmAAQAhAAAAODhF OUUyQzMwM0RGQ0Y0NDk2NjAzNUJCMTg1MUJDMTgANwcBA5AGAKwKAAA3AAAAAwA2AAAAAABAADkA Vr3ZV9EQwQEeAD0AAQAAAAUAAABSRTogAAAAAAIBRwABAAAAIgAAAGM9VVM7YT0gO2w9UExVVE8t MDEwNzIwMDQwNjI1Wi0zMwAAAB4ASQABAAAACgAAAFJlOiBFY3JpeAAAAEAATgCAXVP3bRDBAR4A WgABAAAADwAAAENocmlzdG9waCBTb2xkAAACAVsAAQAAAEAAAAAAAAAAgSsfpL6jEBmdbgDdAQ9U AgAAAABDaHJpc3RvcGggU29sZABTTVRQAHNvQHNlcnZlci5pLWNsdWUuZGUAAgFcAAEAAAAZAAAA U01UUDpTT0BTRVJWRVIuSS1DTFVFLkRFAAAAAB4AXQABAAAADwAAAENocmlzdG9waCBTb2xkAAAC AV4AAQAAAEAAAAAAAAAAgSsfpL6jEBmdbgDdAQ9UAgAAAABDaHJpc3RvcGggU29sZABTTVRQAHNv QHNlcnZlci5pLWNsdWUuZGUAAgFfAAEAAAAZAAAAU01UUDpTT0BTRVJWRVIuSS1DTFVFLkRFAAAA AB4AZgABAAAABQAAAFNNVFAAAAAAHgBnAAEAAAAUAAAAc29Ac2VydmVyLmktY2x1ZS5kZQAeAGgA AQAAAAUAAABTTVRQAAAAAB4AaQABAAAAFAAAAHNvQHNlcnZlci5pLWNsdWUuZGUAHgBwAAEAAAAG AAAARWNyaXgAAAACAXEAAQAAABsAAAABwRBvnxipNXE93bFK8bi9PIIiGPQoABg9WiEAHgBzAAEA AAAeAAAAZnJlZWJzZC1xdWVzdGlvbnNARnJlZUJTRC5PUkcAAAAeAHQAAQAAAA0AAABKb2FraW0g UnlkZW4AAAAAHgAaDAEAAAANAAAASm9ha2ltIFJ5ZGVuAAAAAB4AHQ4BAAAABgAAAEVjcml4AAAA AgEJEAEAAACbBAAAlwQAAKIHAABMWkZ1qdTcWAMACgByY3BnMTI14jIDQ3RleAVBAQMB9/8KgAKk A+QHEwKAD/MAUARWPwhVB7IRJQ5RAwECAGNo4QrAc2V0MgYABsMRJfYzBEYTtzASLBEzCO8J97Y7 GB8OMDURIgxgYwBQMwsJAWQzNhZQC6YgVIkT4G5rBCAtIHQT4AUFQHcIYGxkIGJlGCBhIAnBHaJh eSBYb2YgE9AFkGsLgGcwLiBVbgIQACB1bukdoGVsHwFuHkAfIR2A8x5ACrF0aSGwAiAEIAQAoCB+ MTRHHlBuHhDHIUEYICIibm8gAJAfsOpsHkBkBRB2IzEDoCFCvQDBaAuAHkECYB5AdCOQZmgG8CLT IGYDECDxdQx0cCbgHxJkdW1w8R/QOi0vEiAj8ABwH6F/ITMkJQQgB0Ae4SlRA6BvnwUwIeEpYR2A CGBnaCIgvx7CBCAG4CrRBUAeYHcJ4C5rIqMeYBPgbB8wYWfjI5AiskknbR3BIsAGcecocSXwB+Bk aQAgHwArEf8FoB3yE+AkUS0gAkAJ8Cdhvy4jHYMhsAeAHiAnEUkecNsKUAQReQhgI3BlJFAFwHJr I4B3LgqiCoQKgC14LUpvMyo0jzPRNgFPfQUQZwuAB0AF0DHxLRBlazYDMypGA2E6DIISIGjVBRBz JcBwKvBTJgEzKh8GYAIwOKQc8DJQNy8xRDkvAdAwMSAOIDogMTUgUE0zKlRvmzikNABhH5AtsFJ5 AQBzC5AzOUNjOKQDUAngYrBzZC1xMeEh00A4YAEJ4EJTRC5PUkcxOet1YmoFkDrVUmXoOiBFBQF4 NO9EjzNmbz3qI6AT0AiBYjigMzk+8wrjSAhIaR1QR8wxsC+jAx5gQQUgNC4wLVPgVEFCTEUk5wPw HYADKdJDgyBWWEEgM7AzLzY2IpABkHAkBd9HzCSBIcAf0E3gZh3wAyDiYgDQa3VwIQYk9iIz3jki lECRUKExsGsJ4FEg7zcwAkAfoUfMIgnwHhAhEt1OgSIk4Db0BCB3H2ADoH9Q0ihiURAf0BzwJaFO gl/5BABfIBggHdEiwR4wIBG/Tw0ygh8AUNQf0AhQbQOB/R4QdRQQItEjkFDSV0FHv0NcuidyIDB1 Zh5gL9EBAHYvbhQAYRZQXvOIbWx4CZBzMWFcn/1J+2pbkB7CAjBbtB9TIiD9LPFuMjAg4SCQFBAs sR4Q5w7ATpAIgW5jW7Fj0SwBzS7AZCDgBBFsaVNwYHz7HYAEAD9FXz72Y1MhQgCQ1nog915TYh8A cAUgKGL5J3BucAQgJtUlwR5gGCCfMdALYAXAJoIf0ElmMyp7IUIYIHMd8FPyJnQiMWLfNnA3MAXA HYEDoF8gUAWgvyeQbtFboVhQTnNqAiwyI78y0jMqMjEFwABxLBBybZL/IuUYIADAC4AEIE5ycjMF wP8o5y6zWvEoIisBBCAfYGSg4zMbMypIVEgzKzkPeE//PSQf4W7wQCAFAR4wQ2AUEF8iwXURAyAl wQDAagWwZL0DcG9A9wWwVCtM4yIgULt9Rz/fc1XQJIUG4GQfA18kszb0e9+FfwqAfYcQAB4ANRAB AAAAPAAAADxDMTVFM0Q0NjQwODE5OTQ0OUU1MTE4QzczM0VEN0ZDRDA2NjhEQkBwbHV0by5mb3J1 bW9uZS5jb20+AB4ARxABAAAADwAAAG1lc3NhZ2UvcmZjODIyAAALAPIQAQAAAB8A8xABAAAAIAAA AFIARQAlADMAQQAgAEUAYwByAGkAeAAuAEUATQBMAAAACwD2EAAAAABAAAcw2sBwlNAQwQFAAAgw uM4LWNEQwQEDAN4/5AQAAAMA8T8AAAAAHgD4PwEAAAANAAAASm9ha2ltIFJ5ZGVuAAAAAAIB+T8B AAAAZQAAAAAAAADcp0DIwEIQGrS5CAArL+GCAQAAAAAAAAAvTz1GT1JVTSBPTkUgQ09NTVVOSUNB VElPTlMvT1U9QUxFWEFORFJJQSBPRkZJQ0UvQ049UkVDSVBJRU5UUy9DTj1KUllERU4AAAAAHgD6 PwEAAAAVAAAAU3lzdGVtIEFkbWluaXN0cmF0b3IAAAAAAgH7PwEAAAAeAAAAAAAAANynQMjAQhAa tLkIACsv4YIBAAAAAAAAAC4AAAADAP0/5AQAAAMAGUAAAAAAAwAaQAAAAAADAB1AAAAAAAMAHkAA AAAAHgAwQAEAAAAHAAAASlJZREVOAAAeADFAAQAAAAcAAABKUllERU4AAB4AMkABAAAAFAAAAHNv QHNlcnZlci5pLWNsdWUuZGUAHgAzQAEAAAAUAAAAc29Ac2VydmVyLmktY2x1ZS5kZQAeADhAAQAA AAcAAABKUllERU4AAB4AOUABAAAAAgAAAC4AAAALACkAAAAAAAsAIwAAAAAAAwAGEBL6nIEDAAcQ 8wMAAAMAEBAAAAAAAwAREAAAAAAeAAgQAQAAAGUAAABUSEFOS1MtVEhBVFdPVUxEQkVBR1JFQVRX QVlPRkNIRUNLSU5HVU5GT1JUVU5BVEVMWU9ORU9GVEhFUEFSVElUSU9OU0lTMTRHQU5EVEhFUkVJ U05PU0lOR0xFRFJJVkVJTlRIAAAAAAIBfwABAAAAPAAAADxDMTVFM0Q0NjQwODE5OTQ0OUU1MTE4 QzczM0VEN0ZDRDA2NjhEQkBwbHV0by5mb3J1bW9uZS5jb20+AC7B ------_=_NextPart_001_01C110D1.57D9BD56-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 21:31: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from cpt-proxy1.mweb.co.za (cpt-proxy1.mweb.co.za [196.2.48.247]) by hub.freebsd.org (Postfix) with ESMTP id 0C35137B405 for ; Thu, 19 Jul 2001 21:31:05 -0700 (PDT) (envelope-from psyv@root.org.za) Received: from pta-dial-196-31-186-240.mweb.co.za ([196.31.186.240]) by cpt-proxy1.mweb.co.za (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) with ESMTP id <0GGR00KID8M25K@cpt-proxy1.mweb.co.za> for freebsd-questions@FreeBSD.ORG; Fri, 20 Jul 2001 06:32:59 +0200 (GMT-2) Date: Fri, 20 Jul 2001 06:32:11 +0200 (SAST) From: The Psychotic Viper Subject: Re: Question on FTP In-reply-to: <796456A0F96AD511A0AC009027B0F7412D0767@IL27EXM08.cig.mot.com> X-Sender: psyv@lucifer.fuzion.za.org To: Pandurangi Venkatesh-AVP028 Cc: "'freebsd-questions@FreeBSD.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, On Thu, 19 Jul 2001, Pandurangi Venkatesh-AVP028 wrote: > PCs are connect to each other in a local network using CISCO routers. I am > trying to run 'ftp' command from one FreeBSD PC to another FreeBSD PC. It > takes very very long time to get to the FTP prompt. After the ftp command, > it immediately displays 'connected to 77.1.63.1' (Ip address of PC2) and > takes long time to get to the FTP prompt. try adding an entry for the connecting box into /etc/hosts in the following syntax (follow the example and change for your taste) 77.1.63.? freebsd2.network.domain.com freebsd2 PsyV To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 21:31:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f7.law10.hotmail.com [64.4.15.7]) by hub.freebsd.org (Postfix) with ESMTP id 0752937B405 for ; Thu, 19 Jul 2001 21:31:20 -0700 (PDT) (envelope-from ex279@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 19 Jul 2001 21:31:19 -0700 Received: from 66.76.118.238 by lw10fd.law10.hotmail.msn.com with HTTP; Fri, 20 Jul 2001 04:31:19 GMT X-Originating-IP: [66.76.118.238] From: "Todd Reed" To: freebsd-questions@FreeBSD.ORG Subject: Loading daemons upon boot Date: Thu, 19 Jul 2001 23:31:19 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 20 Jul 2001 04:31:19.0571 (UTC) FILETIME=[D29D2630:01C110D4] Sender: owner-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 finally got MySQL, Apache, and SSL working! Thanks for all the help, but I hope this is my last question on this topic! Question: How can I make MySQL and Apache load upon bootup? I saw the *.sh files in the /usr/local/etc/rc.d/ directory. Do I just create a start.sh file and insert the lines ./mnt/vdrv/dbms/bin/safe_mysqld & ./mnt/vdrv/inetpub/www/bin/apachectl startssl If that's the case, then is there anyway to bypass the passphrase to the ./apachectl startssl? _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 21:45: 7 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 E6FE837B406 for ; Thu, 19 Jul 2001 21:44:58 -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 GGR94902.5JR; Fri, 20 Jul 2001 00:43:21 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6K4gkx00736; Fri, 20 Jul 2001 00:42:46 -0400 (EDT) (envelope-from ipt) Date: Fri, 20 Jul 2001 00:42:46 -0400 From: User & Ian Patrick Thomas To: ipthomas_77@yahoo.com Cc: freebsd-questions@freebsd.org Subject: Re: /dev/lpt0 is always busy Message-ID: <20010720004246.A715@localhost> References: <20010718190203.A51074@localhost> <20010718192226.A69370@moo.holy.cow> <20010718231324.F80368@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010718231324.F80368@localhost>; from ipthomas_77@yahoo.com on Wed, Jul 18, 2001 at 11:13: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 As it was put forth by User & Ian Patrick Thomas on Wed, Jul 18, 2001 at 11:13:24PM -0400... > I did this > > lptcontrol -p -d /dev/lpctl0 > > and this time it did not give an error message, but I am still getting > the busy signal when I try to run the lptest. I am going to try and recompile > a kernel with the lpt0 set without an IRQ and see if this makes a difference. > I'll also try the rc.conf route. Thanks for the help. > > Ian > > As it was put forth by parv on Wed, Jul 18, 2001 at 07:22:26PM -0400... > > on Jul 18 19:11, i got this from User... > > > I have never attempted to get a printer working > > > on FreeBSD until now so excuse my very limited knowledge. > > > I just obtained an HP LaserJet IIP and after attempting the > > > printer test as described in the handbook > > > > > > lptest > /dev/lpt0 > > > > > > I get > > > > > > /dev/lpt0: Device busy. > > > > > > After trying to change the Printer to polling mode using > > > lptcontrol -p, I get > > > > > > lptcontrol: open: Device busy > > > > > > i don't know why lptest would give you a busy msg, but to put lpt in > > polling mode you need to do... > > > > # lptcontrol -p -d /dev/lpctl0 > > > > ...at least that's what i had to do after making kernel w/ updated > > source tree as of jun 24, 2001. lptcontrol didn't complain w/ old > > sources (don't remember the date) though. > > > > see man page for lptcontrol. > > > > > > 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 After recompiling the kernel with the printer set up to boot in polled mode and enabling debugging here is what dmesg has to say ppc0: at port 0x378-0x37f on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppi0: on ppbus0 plip0: on ppbus0 out=55 in=55 tout=10000 out=aa in=aa tout=10000 out=fe in=fe tout=10000 out=fd in=fd tout=10000 out=fb in=fb tout=10000 out=f7 in=f7 tout=10000 out=ef in=ef tout=10000 out=df in=df tout=10000 out=bf in=bf tout=10000 out=7f in=7f tout=10000 out=1 in=1 tout=10000 out=2 in=2 tout=10000 out=4 in=4 tout=10000 out=8 in=8 tout=10000 out=10 in=10 tout=10000 out=20 in=20 tout=10000 out=40 in=40 tout=10000 out=80 in=80 tout=10000 lpt0: on ppbus0 oldirq 0 lpt0: Polled port irq 0 0 After doing lpc status lpt0 I get the following unknown printer lpt0 which makes sense because I havn't put anything in /etc/printcap other than what is in there as default. The FreeBSD online handbook says that unless the printer is a PostScript language printer, mine isn't, then the following test should work lptest > /dev/lpt0 It doesn't and the device is supposedly busy doing nothing. The cord is hooked up correctly and the little lcd display says 00 Ready. This is an old HP LaserJet IIP so it should use PCL. Is there anything else I can try to get more info for troubleshooting or should I go and get a different printer? If so, what are Printers that work with BSD that don't cost to much(under $300, or $200 if possible)? Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 21:59:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta2.srv.hcvlny.cv.net (mta2.srv.hcvlny.cv.net [167.206.5.5]) by hub.freebsd.org (Postfix) with ESMTP id C4BF537B406 for ; Thu, 19 Jul 2001 21:59:07 -0700 (PDT) (envelope-from trini0@optonline.net) Received: from optonline.net (ool-18be012f.dyn.optonline.net [24.190.1.47]) by mta2.srv.hcvlny.cv.net (iPlanet Messaging Server 5.0 Patch 2 (built Dec 14 2000)) with ESMTP id <0GGR002HU9UC9J@mta2.srv.hcvlny.cv.net> for questions@FreeBSD.ORG; Fri, 20 Jul 2001 00:59:06 -0400 (EDT) Date: Fri, 20 Jul 2001 00:59:01 -0400 From: Gerard Samuel Subject: Re: Is RELENG_4_4 planned? To: Mario Doria Cc: FreeBSD Questions Message-id: <3B57BA95.4070805@optonline.net> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.2) Gecko/20010719 References: <008c01c11098$a79f6880$0a00a8c0@Valk> Sender: owner-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, but that wont be true until after 4.4 has been released.... Mario Doria wrote: > Hi, > > Is a RELENG_4_4 tag, like the RELENG_4_3 planned? > > Thanks > > > Mario Doria > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 19 22: 1: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from rm-rstar.sfu.ca (rm-rstar.sfu.ca [142.58.120.21]) by hub.freebsd.org (Postfix) with ESMTP id EEF7737B406 for ; Thu, 19 Jul 2001 22:01:06 -0700 (PDT) (envelope-from tmchow@sfu.ca) Received: from fraser.sfu.ca (tmchow@fraser.sfu.ca [142.58.101.25]) by rm-rstar.sfu.ca (8.10.1/8.10.1/SFU-5.0H) with ESMTP id f6K515e10517 for ; Thu, 19 Jul 2001 22:01:06 -0700 (PDT) Received: from localhost (tmchow@localhost) by fraser.sfu.ca (8.9.2/8.9.2/SFU-5.0C) with ESMTP id WAA20492 for ; Thu, 19 Jul 2001 22:01:05 -0700 (PDT) X-Authentication-Warning: fraser.sfu.ca: tmchow owned process doing -bs Date: Thu, 19 Jul 2001 22:01:05 -0700 (PDT) From: Trevin Chow To: Subject: can't login anymore? Bash recursive error? 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 For some reason, I can't login to my box anymore. I'm on the other side of the continent so I can't check if it's only doing this to remote logins or not. I can connect to the machine fine, but as soon as it connects, I get the error: Copyright (c) 1980, 1983, 1986, 1988, 1990, 1991, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.3-STABLE (BENNY) #2: Mon Apr 23 16:37:19 PDT 2001 You have new mail. -bash in malloc(): warning: recursive call. bash: xmalloc: cannot allocate 3 bytes (0 bytes allocated) Anyone have any ideas?? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 22:19:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web12003.mail.yahoo.com (web12003.mail.yahoo.com [216.136.172.211]) by hub.freebsd.org (Postfix) with SMTP id C848537B409 for ; Thu, 19 Jul 2001 22:19:14 -0700 (PDT) (envelope-from bsd2000au@yahoo.com.au) Message-ID: <20010720051914.19107.qmail@web12003.mail.yahoo.com> Received: from [61.9.188.59] by web12003.mail.yahoo.com via HTTP; Fri, 20 Jul 2001 15:19:14 EST Date: Fri, 20 Jul 2001 15:19:14 +1000 (EST) From: =?iso-8859-1?q?Keith=20Spencer?= Subject: errs -what do they mean To: fbsd 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 am getting these errors... I am not relaying from this machine! Whats it mean?? Thanks Keith Jul 20 14:15:19 smmcroute sendmail[1019]: f6K45JB01019: SYSERR(root): collect: I/O error on connection from [168.132.10.42], from= Jul 20 14:30:04 smmcroute sendmail[1068]: f6K4K7B01068: SYSERR(root): collect: I/O error on connection from [168.132.10.42], from= Jul 20 14:59:50 smmcroute sendmail[1164]: f6K4o8B01164: SYSERR(root): collect: I/O error on connection from cooee.airservices.gov.au, from= Jul 20 15:11:03 smmcroute login: ROOT LOGIN (root) ON ttyv1 _____________________________________________________________________________ http://messenger.yahoo.com.au - Yahoo! Messenger - Voice chat, mail alerts, stock quotes and favourite news and lots more! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 22:25:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from out3.mx.nwbl.wi.voyager.net (out3.mx.nwbl.wi.voyager.net [169.207.3.79]) by hub.freebsd.org (Postfix) with ESMTP id 5C2AC37B409 for ; Thu, 19 Jul 2001 22:25:50 -0700 (PDT) (envelope-from dpoland@execpc.com) Received: from earth.execpc.com (dpoland@earth.execpc.com [169.207.16.1]) by out3.mx.nwbl.wi.voyager.net (8.11.1/8.11.1) with ESMTP id f6K5Pjb37743; Fri, 20 Jul 2001 00:25:45 -0500 (CDT) Received: (from dpoland@localhost) by earth.execpc.com (8.9.0) id AAA09925; Fri, 20 Jul 2001 00:25:45 -0500 (CDT) Date: Fri, 20 Jul 2001 00:25:44 -0500 From: Doug Poland To: Doug Reynolds Cc: "freebsd-questions@freebsd.org" Subject: Re: Adaptec 1522 Scuzzi Message-ID: <20010720002544.B8424@polands.org> Mail-Followup-To: Doug Reynolds , "freebsd-questions@freebsd.org" References: <20010720031252.9D35937B409@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3us In-Reply-To: <20010720031252.9D35937B409@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 Please wrap your lines at 80 characters please On Thu, Jul 19, 2001 at 11:09:23PM -0400, Doug Reynolds wrote: > > 2.7G Seagate ST43400N / adaptec 1522 scsi controller > Yesterday I installed an AHA 1522A/ST5660N drive/16X SCSI CD-ROM and everything worked fine. > it is @ port 0x340,irq11(have dm0,irq11 assign to legasy/isa in bios), > Are there any other ISA cards in the system that might conflict with these settings? > it detects fine when it is probed, and it detect the hard drive too. > Does it report back the settings you mentioned above? > the card & the drive as both terminated on either end (the drive > side is terminated with a 50 active, and i have terminator power > jumpered "on" on the hd itself). > I'm not sure about using passive terminators on the drive, then configuring it to see powered termination. Someone with more expertise will have to chime in here. > the problem is when i try to partition the drive, it wont bring up > da0 (or any drives for that matter) > Are you getting any error messages? > the only other thing i can think of is that i tried to Dangerously > Dedidate it as a 2nd drive b4, which means no partition table, > but i was under the impression that fbsd accessed everything as > low level as possible... > My guess is an interrupt conflict. If not, your termination is suspicious. HTH, -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 22:38:53 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 A1E2537B407 for ; Thu, 19 Jul 2001 22:38:48 -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 f6K5ca825474; Thu, 19 Jul 2001 22:38:36 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Herring_Todd" , Subject: RE: Certification Date: Thu, 19 Jul 2001 22:38:36 -0700 Message-ID: <000301c110de$38a7f500$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: <9627DBCB3063D311BC4B00902785C55F03399E4D@EXPO1> 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 There is no cert. Please refer to the discussion 7/2/001 through 7/5/01 on this list for more information. (you can look it up using the web interface for the mailing list, subject "Certification" I would be very interested to hear your views 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 -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Herring_Todd Sent: Thursday, July 19, 2001 3:48 PM To: freebsd-questions@FreeBSD.ORG Subject: Certification Hello FreeBSD, I'm trying to find the certification and training area. I would like to get certified an the information I have for the BSDI has changed and no one can seem to direct me in the right direction. Please provide me with a number where I can call and order the correct training material in order to pick up this cert. Thank you, Todd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 22:45:56 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 9A35F37B407 for ; Thu, 19 Jul 2001 22:45:52 -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 f6K5jg825491; Thu, 19 Jul 2001 22:45:42 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Doug Reynolds" , "freebsd-questions@freebsd.org" Subject: RE: Adaptec 1522 Scuzzi Date: Thu, 19 Jul 2001 22:45:42 -0700 Message-ID: <000401c110df$36cc61c0$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: <20010720031252.9D35937B409@hub.freebsd.org> 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 I would guess that the BIOS on that card is too old to properly deal with the large disk drive. If you can round up a 500MB or smaller SCSI disk try putting that on the card at SCSI id 0 and the larger disk at ID 1. Another trick is to disable the 1522 BIOS totally and boot from an IDE disk. Once the FreeBSD kernel is loaded and the aic driver is loaded, you don't use BIOS and your fine. But before that time the system must get it's info from the BIOS code on the 1522 card and if I remember the original 1522's could only speak Cylinder/Head/Sector. I know that I've had problems with older 1522's and boot disks larger than 500MB. 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 Doug Reynolds >Sent: Thursday, July 19, 2001 8:09 PM >To: freebsd-questions@freebsd.org >Subject: Adaptec 1522 Scuzzi > > >I just got my fbsd 4.3 cd's in the mail, and i want to start off >with a fresh install on my server, on my 2.7G Seagate ST43400N >(doubles as a _very_ large paperweight). I >am running and all in one (read el-cheapo) k6-266 mb. I have a >adaptec 1522 scsi controller (it is the same as the 1520, however it >is the floppy interface on it which is >disabled, and is one of the first production cards as it has no >p-n-pray on it). it is @ port 0x340,irq11(have dm0,irq11 assign to >legasy/isa in bios), it detects fine when it >is probed, and it detect the hard drive too. the card & the drive >as both terminated on either end (the drive side is terminated with >a 50 active, and i have terminator >power jumpered "on" on the hd itself). the problem is when i try to >partition the drive, it wont bring up da0 (or any drives for that >matter), which is a problem. I am sort of >stumped, I've used fbsd as a server for about 3 years now (granted i >rarely hack into since it always brings up the dod ppp and smtpd >faithfully) so i am not a total moron. >the drive and card worked Aok in my win98se box until i pulled it >and got a 30g ide. the only other thing i can think of is that i >tried to Dangerously Dedidate it as a 2nd >drive b4, which means no partition table, but i was under the >impression that fbsd accessed everything as low level as possible... > >thanx in advance. > >--- >doug reynolds | the maverick | mav@wastegate.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 Thu Jul 19 23: 7:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailout2-0.nyroc.rr.com (mailout2-0.nyroc.rr.com [24.92.226.121]) by hub.freebsd.org (Postfix) with ESMTP id 468A137B403 for ; Thu, 19 Jul 2001 23:07:31 -0700 (PDT) (envelope-from chrisp@rochester.rr.com) Received: from chrisp (roc-24-95-204-85.rochester.rr.com [24.95.204.85]) by mailout2-0.nyroc.rr.com (8.11.2/RoadRunner 1.03) with SMTP id f6K66EW21640 for ; Fri, 20 Jul 2001 02:06:15 -0400 (EDT) From: "Christopher Piggott HOME" To: Subject: additional vnode devices Date: Fri, 20 Jul 2001 02:11:15 -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 Is it possible to add additional vnode devices (vn1, vn2, etc.) or is the driver not written for that? Is there a configuration parameter somewhere that would let me create more? --Chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 23: 9:23 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 C9F3737B405 for ; Thu, 19 Jul 2001 23:09:19 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.220] (helo=mrvdom04.kundenserver.de) by moutvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 15NTTG-00015C-00; Fri, 20 Jul 2001 08:09:06 +0200 Received: from pd950c79b.dip.t-dialin.net ([217.80.199.155]) by mrvdom04.kundenserver.de with esmtp (Exim 2.12 #2) id 15NTTF-0000A8-00; Fri, 20 Jul 2001 08:09:05 +0200 Date: Fri, 20 Jul 2001 08:09:57 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: Linh Pham Cc: uwi mAn , Subject: Re: netscape6 (linux) In-Reply-To: Message-ID: <20010720075930.X7390-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, 19 Jul 2001, Linh Pham wrote: > Date: Thu, 19 Jul 2001 14:33:05 -0700 (PDT) > From: Linh Pham > To: uwi mAn > Cc: questions@FreeBSD.ORG > Subject: Re: netscape6 (linux) > > On 2001-07-19, uwi mAn scribbled: > > # i installed linux-rpm support though. > # > # %./netscape-installer > # ./netscape-installer-bin: error in loading shared libraries: > # libgtk-1.2.so.0: cannot open shared object file: No such file or directory > # > # No way to install Netscape 6.1 (linux) onto BSD 4.3 release ? > > You can build Mozilla 0.92 (Netscape 6.1 is based on either Mozilla 0.8 > or 0.9, but forgot which one) from the latest ports. I have 0.92 running > on my laptop and it seems to do perfectly This is all-right. But if you insist on using netscape6, you can start installing the port (www.freebsd.org/ports) for netscape6 . This will provide you with all the lib*.so.* 's you need. Afterwards upgrading should not be a problem. 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 Thu Jul 19 23:20:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from spice.eahd.or.ug (spice.eahd.or.ug [216.250.215.140]) by hub.freebsd.org (Postfix) with ESMTP id 635C837B408 for ; Thu, 19 Jul 2001 23:20:05 -0700 (PDT) (envelope-from patrick@eahd.or.ug) Received: by spice.eahd.or.ug (Postfix at spice.eahd.or.ug, from userid 542) id 025A5F2AB2; Fri, 20 Jul 2001 09:35:09 +0300 (EAT) Received: from localhost (localhost [127.0.0.1]) by spice.eahd.or.ug (Postfix at spice.eahd.or.ug) with ESMTP id F03A4758C6; Fri, 20 Jul 2001 09:35:09 +0300 (EAT) Date: Fri, 20 Jul 2001 09:35:09 +0300 (EAT) From: Patrick To: Ronnie Clark Cc: "'Freebsd-Questions (E-mail)" Subject: Re: startup script In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 19 Jul 2001, Ronnie Clark wrote: > Where would I put a start up script in FreeBSD 4.2? I thought it was > /etc/rc.local, but I don't seem to have that file. create it. > > Thank you, > Ronnie Clark Patrick. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jul 19 23:49:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp6.port.ru (mx6.port.ru [194.67.23.42]) by hub.freebsd.org (Postfix) with ESMTP id 0D71137B412 for ; Thu, 19 Jul 2001 23:49:24 -0700 (PDT) (envelope-from saltanov@mail.ru) Received: from as0-l92.kiev.sovam.net.ua ([212.109.45.92] helo=comp) by smtp6.port.ru with smtp (Exim 3.14 #1) id 15NU6D-000D1A-00 for freebsd-questions@FreeBSD.ORG; Fri, 20 Jul 2001 10:49:22 +0400 Message-ID: <000901c110e7$da7b7ba0$5c2d6dd4@comp> From: "Vladislav Saltanov" To: References: <200107162111.aa65203@salmon.maths.tcd.ie> Subject: modem doesn't work in PPP Date: Fri, 20 Jul 2001 09:47:29 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2417.2000 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 Help me, please. When I start ppp in interactive mode, after set device /dev/sio4 set speed 115200 term I see the following: Jul 20 08:48:46 ppp[348]: Warning: deflink: /dev/sio4: Bad file descriptor Failed to open /dev/sio4 However when system is being loaded it writes: Jul 20 08:26:18 /kernel: sio4: at port 0x3e8-0x3ef irq 10 on isa0 Jul 20 08:26:18 /kernel: sio4: type 16550A To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 0: 6: 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 076FC37B401 for ; Fri, 20 Jul 2001 00:06:04 -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 KAA03661 for ; Fri, 20 Jul 2001 10:01:53 +0300 (EET DST) Message-ID: <3B57DA52.CDEE84D@egreta.gr> Date: Fri, 20 Jul 2001 10:14:26 +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 configuring radius 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 need help with configuring my radius server. I would like to distinguish on how my users log in depending on their contract with either 64 kbps isdn or 128 kbps isdn. So far I' m using the attribute NAS-Port-Type = ISDN, but this way every user that has this attribute can use both channels of the isdn even though they haven't subscribe for that. Any help would be appreciated. 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 20 0:37:33 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 3933C37B403 for ; Fri, 20 Jul 2001 00:37:29 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.208] (helo=mrvdom01.kundenserver.de) by moutvdom00.kundenserver.de with esmtp (Exim 2.12 #2) id 15NUqk-0004rH-00; Fri, 20 Jul 2001 09:37:26 +0200 Received: from pd950c79b.dip.t-dialin.net ([217.80.199.155]) by mrvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 15NUqi-0007A8-00; Fri, 20 Jul 2001 09:37:24 +0200 Date: Fri, 20 Jul 2001 09:38:17 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: Vladislav Saltanov Cc: Subject: Re: modem doesn't work in PPP In-Reply-To: <000901c110e7$da7b7ba0$5c2d6dd4@comp> Message-ID: <20010720093430.N7390-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 Hi! Not that I really do know what I am talking about: They say ppp uses "pseudo-devices": for your fisrst serial port (com1) this would be set device /dev/cuaa0 for the second set device /dev/cuaa1 etc... Good luck! Uli. On Fri, 20 Jul 2001, Vladislav Saltanov wrote: > Date: Fri, 20 Jul 2001 09:47:29 +0300 > From: Vladislav Saltanov > To: freebsd-questions@FreeBSD.ORG > Subject: modem doesn't work in PPP > > Help me, please. > > When I start ppp in interactive mode, after > > set device /dev/sio4 > set speed 115200 > term > > I see the following: > > Jul 20 08:48:46 ppp[348]: Warning: deflink: /dev/sio4: Bad file > descriptor > Failed to open /dev/sio4 > > > > However when system is being loaded it writes: > > Jul 20 08:26:18 /kernel: sio4: at port 0x3e8-0x3ef irq > 10 on isa0 > Jul 20 08:26:18 /kernel: sio4: type 16550A > > > > > 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 Fri Jul 20 0:46:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from clientmail.realtime.co.uk (simian.ehsrealtime.com [213.52.146.137]) by hub.freebsd.org (Postfix) with ESMTP id C9B5737B403 for ; Fri, 20 Jul 2001 00:46:21 -0700 (PDT) (envelope-from waynep@pan.ehsrealtime.com) Received: from pan.ehsrealtime.com ([213.52.146.196]) by clientmail.realtime.co.uk with esmtp (Exim 3.20 #1) id 15NUzL-0008Mu-01; Fri, 20 Jul 2001 08:46:19 +0100 Received: from waynep by pan.ehsrealtime.com with local (Exim 3.22 #1) id 15NUyg-0000KE-00; Fri, 20 Jul 2001 08:45:38 +0100 From: Wayne Pascoe To: "Todd Reed" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Loading daemons upon boot References: Reply-To: wayne.pascoe@realtime.co.uk Date: 20 Jul 2001 08:45:38 +0100 In-Reply-To: Message-ID: <86itgooxgd.fsf@pan.ehsrealtime.com> Lines: 18 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 "Todd Reed" writes: > I've finally got MySQL, Apache, and SSL working! Thanks for all the > help, but I hope this is my last question on this topic! > > > Question: How can I make MySQL and Apache load upon bootup? I saw > the *.sh files in the /usr/local/etc/rc.d/ directory. Do I just > create a start.sh file and insert the lines Normally, all scripts in /usr/local/etc/rc.d will be executed with an argument of start at boot time. -- - 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 Fri Jul 20 0:53:19 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 D8E5F37B401 for ; Fri, 20 Jul 2001 00:53:15 -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 KAA02352; Fri, 20 Jul 2001 10:01:07 +0200 Message-ID: <3B57E3F0.A230BD9F@i-clue.de> Date: Fri, 20 Jul 2001 09:55:28 +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: Christopher Piggott HOME Cc: freebsd-questions@FreeBSD.ORG Subject: Re: additional vnode devices 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 Christopher Piggott HOME schrieb: > > Is it possible to add additional vnode devices (vn1, vn2, etc.) or is the > driver not written for that? Is there a configuration parameter somewhere > that would let me create more? The vn driver should create additional devices on the fly. Just configure the device nodes: # cd /dev; sh MAKEDEV vn[n] with n the device you want to create. 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 Fri Jul 20 0:55:59 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 CEAA037B406 for ; Fri, 20 Jul 2001 00:55: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 KAA02398; Fri, 20 Jul 2001 10:03:48 +0200 Message-ID: <3B57E491.F235A613@i-clue.de> Date: Fri, 20 Jul 2001 09:58:09 +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: Todd Reed Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Loading daemons upon boot 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 Todd Reed schrieb: > > I've finally got MySQL, Apache, and SSL working! Thanks for all the help, > but I hope this is my last question on this topic! > > Question: How can I make MySQL and Apache load upon bootup? I saw the *.sh > files in the /usr/local/etc/rc.d/ directory. Do I just create a start.sh > file and insert the lines > > ./mnt/vdrv/dbms/bin/safe_mysqld & > ./mnt/vdrv/inetpub/www/bin/apachectl startssl Have a look at some other scripts. AFAIR you need to interpret both "start" and "stop" parameters in your startup script. > If that's the case, then is there anyway to bypass the passphrase to the > ./apachectl startssl? Generate a key without any passphrase. 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 Fri Jul 20 0:58: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 3218537B403 for ; Fri, 20 Jul 2001 00:58: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 KAA02422; Fri, 20 Jul 2001 10:06:36 +0200 Message-ID: <3B57E538.91543D6F@i-clue.de> Date: Fri, 20 Jul 2001 10:00:56 +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: Joakim Ryden Cc: so@server.ms-agentur.de, freebsd-questions@FreeBSD.ORG Subject: Re: Ecrix 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 Joakim Ryden schrieb: > > Thanks - that would be a great way of checking. Unfortunately one of the > partitions is ~14G and there is no single drive in the machine able to > hold the file output of dump. :-/ Cleaning the drive is always an option > although it was bought a week and a half ago and I'm wondering how dirty > it could have gotten during that time but I guess you never know. If a drive fails within the very first six months in any way, I generally return them. Boxes with bugs will continue to generate bugs, even if the first one has been fixed immediately. Insist on a replacement. If the replacement box starts to act up, too, it's time to think about another manufacturer or technology. Just my EUR.02 -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 1: 3: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 2E5D637B406 for ; Fri, 20 Jul 2001 01:03:40 -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 KAA02454; Fri, 20 Jul 2001 10:11:19 +0200 Message-ID: <3B57E654.43EB583A@i-clue.de> Date: Fri, 20 Jul 2001 10:05:40 +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: Mark Thomas Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Crontab - Biweekly events? References: <5.1.0.14.2.20010719175024.02510170@pbegames.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 Mark Thomas schrieb: > > I've been looking at man 5 crontab to see how to do this, but can't seem to > puzzle through it. > > I have a task I want to run every other week on a specific day, say > Tuesday. I can't see a way to convince cron to do this. Anyone know how? Have a weekly event call a script wich alternates between creating a flag file and deleting it. Call your thingy when you create the file, but not when you delete it. 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 Fri Jul 20 1: 5:44 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 697F737B401 for ; Fri, 20 Jul 2001 01:05:40 -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.3/8.11.3) with SMTP id f6K85V820751; Fri, 20 Jul 2001 09:05:31 +0100 (BST) (envelope-from neil@darlow.co.uk) From: Neil Darlow Date: Fri, 20 Jul 2001 08:05:31 GMT Message-ID: <20010720.8053100@ideal.darlow.co.uk> Subject: Re: Source Update is incomplete? To: Mike Meyer Cc: questions@freebsd.org In-Reply-To: <15191.36604.577995.987796@guru.mired.org> References: <15191.36604.577995.987796@guru.mired.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 Mike, On 7/20/01, 2:53:00 AM, Mike Meyer wrote: > As for COMPAT4X on 4-STABLE, it just creates old versions of some > crypto libraries. You may not need it at all in that case. If you're > running -current, you should read the description of -stable > vs. -current at =20 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/current-stable= .h tml > , then consider whether you really want to be doing that. I'm conservative as far as FreeBSD goes :-) I run RELEASE. For 4.3, I'm actually following RELENG_4_3 for the security and critical= updates. Regards, Neil Darlow. -- 1024D/531F9048 1999-09-11 Neil Darlow GPG fingerprint =3D 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 Fri Jul 20 1:26:13 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc25.worldnet.att.net (mtiwmhc25.worldnet.att.net [204.127.131.50]) by hub.freebsd.org (Postfix) with ESMTP id 9BB4237B401 for ; Fri, 20 Jul 2001 01:26:07 -0700 (PDT) (envelope-from parv@worldnet.att.net) Received: from worldnet.att.net ([32.100.199.84]) by mtiwmhc25.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010720082606.HXBD5127.mtiwmhc25.worldnet.att.net@worldnet.att.net>; Fri, 20 Jul 2001 08:26:06 +0000 Received: by worldnet.att.net (Postfix, from userid 1001) id 722D750BC5; Fri, 20 Jul 2001 03:08:22 -0400 (EDT) Date: Fri, 20 Jul 2001 03:08:22 -0400 From: parv To: Vladislav Saltanov Cc: freebsd-questions@FreeBSD.ORG Subject: Re: modem doesn't work in PPP Message-ID: <20010720030822.A49943@moo.holy.cow> Mail-Followup-To: Vladislav Saltanov , freebsd-questions@FreeBSD.ORG References: <200107162111.aa65203@salmon.maths.tcd.ie> <000901c110e7$da7b7ba0$5c2d6dd4@comp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000901c110e7$da7b7ba0$5c2d6dd4@comp>; from saltanov@mail.ru on Fri, Jul 20, 2001 at 09:47:29AM +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 Jul 20 03:00, i got this from Vladislav... > Help me, please. > > When I start ppp in interactive mode, after > > set device /dev/sio4 > set speed 115200 > term > > I see the following: > > Jul 20 08:48:46 ppp[348]: Warning: deflink: /dev/sio4: Bad file > descriptor > Failed to open /dev/sio4 > > > > However when system is being loaded it writes: > > Jul 20 08:26:18 /kernel: sio4: at port 0x3e8-0x3ef irq > 10 on isa0 > Jul 20 08:26:18 /kernel: sio4: type 16550A > see 'CONNECTING WITH YOUR INTERNET SERVICE PROVIDER' section of ppp man page, especially point number 4. in addition, search for '/dev/cuaa' and 'set device' in the man page. in short, you need /dev/cuaa4 instead of /dev/sio4. -- 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 20 1:52:29 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 B1ACE37B405 for ; Fri, 20 Jul 2001 01:52:24 -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 f6K8qH825806; Fri, 20 Jul 2001 01:52:17 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Panagiotis Skoulikaritis" , "FreeBSD Questions" Subject: RE: need help configuring radius Date: Fri, 20 Jul 2001 01:52:16 -0700 Message-ID: <003d01c110f9$46a368e0$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: <3B57DA52.CDEE84D@egreta.gr> 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 First, you don't want to ask this here, instead you want to subscribe to the portmaster-radius mailing list at http://www.livingston.com/tech/archive/ Secondly, what your asking is not simple. For example there's a couple of Reply attributes out there that might work - Port-Limit and MultLink Flag, but these are not standard. You must check your NAS documentation to see if it recognizes them and applies them to ISDN multilink calls. Further they only work if you only have a single NAS. The usual method of doing what your wanting to do is to use a RADIUS server such as cistron that has support for setting multiple login limits. The way these servers work is if you only permit a single session for a user they will authenticate the first session then deny all other auth attempts as long as that session is logged in. Therein is the difficulty, however, because RADIUS is a stateless protocol and as such there's no direct connection between the radius server and the NAS that the radius server can use to synchronize a database of who is logged in and who isn't. What some people do to track logins is to depend on the start and stop records, they increment a counter when they get a start record and decrement it when they get a stop record. This works OK for small NAS with just a few ports, there's a radius daemon at http://yardradius.on.openave.net/ that works quite well for that. However, for anything significant (more than 20 ports or so) you run into synchronization problems. Some NAS have piss-poor accounting record control, Portmasters have been known under heavy load to not bother sending start accounting records or sending duplicates. Also RADIUS is UDP so you could lose the packet anyway. Then you get into a situation where the radius server thinks a user is logged on when they really arent thus the next time they call in the NAS won't let them logon. More sophisticated servers like cistron get around this problem by issuing an SNMP query to the NAS every time they see what they think is a simultaneous login attempt, to check and see if the first login is really there. This requires some fooling around with scripts and ucd-snmp. Also it's very NAS dependent - if you have a collection of NAS from different manufacturer then your going to really be hosed and some NAS (USR for example) don't give out that data via SNMP so you have to do other scripting with Telnet scripts. At our site we started out with the free radius 2.01 daemon Livingston handed out then finally dumped it for YARD because of the simultaneous use thing. But I only lasted about 8 months with dealing with that because of the problems of keeping the radius daemon in sync with a big nas with many T1's coming into it. I finally scrapped all that and went to ICradius (ftp://ftp.innercite.com/pub/icradius) which is a modified cistron that runs on a mysql server. It also has several web-based interfaces to it which helped greatly because we have admins that I don't trust with UNIX command line access. Also having all the accounting in a SQL server is extremely useful, beforehand we used to have to futz with all these icky perl scripts to attempt to get reporting off the monthly detail files which were huge. Now we can query usage on the fly which helps with troubleshooting as well as the customers that call up claiming they never used the service and why are we billing them. There's also some other tiered billing things that become possible with SQL queries that I won't get into. But I will warn you, although it's a great radius server it's very complicated and not simple to setup on FreeBSD. It's easy to see why the commercial radius servers like Steel Belted Radius are selling so well. 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 Panagiotis >Skoulikaritis >Sent: Friday, July 20, 2001 12:14 AM >To: FreeBSD Questions >Subject: need help configuring radius > > >Hello > >I need help with configuring my radius server. >I would like to distinguish on how my users log in depending on their >contract with either 64 kbps isdn or 128 kbps isdn. So far I' m using >the attribute NAS-Port-Type = ISDN, but this way every user that has >this attribute can use both channels of the isdn even though they >haven't subscribe for that. Any help would be appreciated. > >Thanks > >Panagiotis > > >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 20 2:25: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from snow.postech.ac.kr (snow.postech.ac.kr [141.223.163.20]) by hub.freebsd.org (Postfix) with ESMTP id 7AAE437B405 for ; Fri, 20 Jul 2001 02:25:03 -0700 (PDT) (envelope-from year1984@snow.postech.ac.kr) Received: from crash.postech.ac.kr (crash.postech.ac.kr [141.223.163.5]) by snow.postech.ac.kr (8.9.3/8.9.3) with ESMTP id SAA05317 for ; Fri, 20 Jul 2001 18:29:00 +0900 (KST) Received: (from year1984@localhost) by crash.postech.ac.kr (8.9.3+Sun/8.9.1) id SAA04893 for questions@FreeBSD.org; Fri, 20 Jul 2001 18:29:00 +0900 (KST) Date: Fri, 20 Jul 2001 18:29:00 +0900 From: Kim Chi-Hun To: questions@FreeBSD.org Subject: Re: =?EUC-KR?B?Y3ZzdXC3ziDGxMDPILnewLogyMS/oSC5u8fYvt8gx9i/5D8=?= Message-ID: <20010720182900.A4889@postech.ac.kr> Reply-To: year1984@postech.ac.kr Mime-Version: 1.0 Content-Type: text/plain; charset=EUC-KR 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 ¿À·§µ¿¾È ¹ÞÀº ±× ¼ö¸¹Àº ÆÄÀÏÀ» ´Ù Áö¿ö¹ö¸®´Â ´ë´ãÇÔ°ú »õ·Î¿î supfile·Î ´Ù½Ã ´Ù ¹Þ¾Æ¾ß °Ú´Ù´Â ¹«´ë»Ç Á¤½ÅÀ» °¡Áö°í ÀÓÇß´õ´Ï ÀÌ ..,vÆÄÀϵéÀÌ ¾Ë¾Æ¼­ /usr/src¾Æ·¡ÀÇ ÆÄÀϵéÀ» »õ°É·Î ¹Ù²ãÁֳ׿ä~ :) ..,v°¡ ±×´ë·Î ³²¾ÆÀÖ¾ú´ø ÀÌÀ¯´Â supfile¿¡ Á¤ÇØÁø µð·ºÅ丮¿¡ °íÄ¥ ¼Ò½º°¡ ¾ø¾î¼­ ¸ÛÇÏ´Ï ³î°í ÀÖ¾ú´ø °Å±º¿ä? -- __ --------------------------------------------------------- (\ /) | Email : year1984@postech.ac.kr o o | Home : http://home.postech.ac.kr/~year1984 ~=*=~ | MSN m : year1984@postech.ac.kr Squeak? | CellP : 011-9570-1984 --------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 2:48: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nomad.com (dialup-53-141.dplanet.ch [212.35.53.141]) by hub.freebsd.org (Postfix) with ESMTP id EC54C37B406 for ; Fri, 20 Jul 2001 02:47:58 -0700 (PDT) (envelope-from a.l.meyers@consult-meyers.com) Received: from localhost (localhost [127.0.0.1]) by nomad.com (8.11.4/8.11.4) with ESMTP id f6K9v1P49859 for ; Fri, 20 Jul 2001 11:57:06 +0200 (CEST) (envelope-from a.l.meyers@consult-meyers.com) Date: Fri, 20 Jul 2001 11:57:00 +0200 (CEST) From: "A. L. Meyers" To: Subject: gnumeric and AbiWord ports broken? Message-ID: <20010720114811.E49851-100000@nomad.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! gnumeric and AbiWord ports, cvsupped current, appear to be broken and will not install. AbiWord compile quit after the following error messages (abbr): syntax error before `wvStream' syntax error before `ver' exporter anld.c in function `wvPutANLD' error 1 error 2 error 1 gnumeric compile quit after the following error messages (abbr): checking for libxml aka gnome-xml libraries 1.8.14 <= 2.0.0 error code 1 The libs are installed but > 2.0.0 Greetings, Lucien To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 2:53: 0 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 ACFF137B401 for ; Fri, 20 Jul 2001 02:52:54 -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 MAA17104 for ; Fri, 20 Jul 2001 12:48:42 +0300 (EET DST) Message-ID: <3B58016C.1BDFCA38@egreta.gr> Date: Fri, 20 Jul 2001 13:01:16 +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: Re: need help configuring radius References: <003d01c110f9$46a368e0$1401a8c0@tedm.placo.com> 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 Ted I would like to thank you, you were very informative. Thanks Panagiotis Ted Mittelstaedt wrote: > First, you don't want to ask this here, instead you want to subscribe to > the portmaster-radius mailing list at http://www.livingston.com/tech/archive/ > > Secondly, what your asking is not simple. For example there's a couple > of Reply attributes out there that might work - Port-Limit and MultLink Flag, > but these are not standard. You must check your NAS documentation to see > if it recognizes them and applies them to ISDN multilink calls. Further > they only work if you only have a single NAS. > > The usual method of doing what your wanting to do is to use a RADIUS server > such as cistron that has support for setting multiple login limits. The > way these servers work is if you only permit a single session for a user > they will authenticate the first session then deny all other auth attempts > as long as that session is logged in. Therein is the difficulty, however, > because RADIUS is a stateless protocol and as such there's no direct > connection > between the radius server and the NAS that the radius server can use to > synchronize a database of who is logged in and who isn't. > > What some people do to track logins is to depend on the start and stop > records, they increment a counter when they get a start record and > decrement it when they get a stop record. This works OK for small NAS > with just a few ports, there's a radius daemon at > > http://yardradius.on.openave.net/ > > that works quite well for that. > > However, for anything significant (more than 20 ports or so) you run into > synchronization problems. Some NAS have piss-poor accounting record control, > Portmasters have been known under heavy load to not bother sending start > accounting records or sending duplicates. Also RADIUS is UDP so you could > lose the packet anyway. Then you get into a situation where the radius > server thinks a user is logged on when they really arent thus the next time > they call in the NAS won't let them logon. > > More sophisticated servers like cistron get around this problem by issuing > an SNMP query to the NAS every time they see what they think is a simultaneous > login attempt, to check and see if the first login is really there. This > requires some fooling around with scripts and ucd-snmp. Also it's very > NAS dependent - if you have a collection of NAS from different manufacturer > then your going to really be hosed and some NAS (USR for example) don't > give out that data via SNMP so you have to do other scripting with Telnet > scripts. > > At our site we started out with the free radius 2.01 daemon Livingston handed > out > then finally dumped it for YARD because of the simultaneous use thing. But > I only lasted about 8 months with dealing with that because of the problems of > keeping the radius daemon in sync with a big nas with many T1's coming into > it. > I finally scrapped all that and went to ICradius > (ftp://ftp.innercite.com/pub/icradius) which is a modified cistron > that runs on a mysql server. It also has several web-based interfaces to > it which helped greatly because we have admins that I don't trust with UNIX > command line access. Also having all the accounting in a SQL server is > extremely > useful, beforehand we used to have to futz with all these icky perl scripts > to attempt to get reporting off the monthly detail files which were huge. Now > we can query usage on the fly which helps with troubleshooting as well as the > customers that call up claiming they never used the service and why are we > billing them. There's also some other tiered billing things that become > possible with SQL queries that I won't get into. But I will warn you, > although it's a great radius server it's very complicated and not simple to > setup on FreeBSD. It's easy to see why the commercial radius servers like > Steel Belted Radius are selling so well. > > 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 Panagiotis > >Skoulikaritis > >Sent: Friday, July 20, 2001 12:14 AM > >To: FreeBSD Questions > >Subject: need help configuring radius > > > > > >Hello > > > >I need help with configuring my radius server. > >I would like to distinguish on how my users log in depending on their > >contract with either 64 kbps isdn or 128 kbps isdn. So far I' m using > >the attribute NAS-Port-Type = ISDN, but this way every user that has > >this attribute can use both channels of the isdn even though they > >haven't subscribe for that. Any help would be appreciated. > > > >Thanks > > > >Panagiotis > > > > > >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 20 3:39: 2 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 D245C37B403 for ; Fri, 20 Jul 2001 03:38:13 -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 MAA41347 for ; Fri, 20 Jul 2001 12:37:22 +0200 (SAST) (envelope-from patrick@mip.co.za) From: "Patrick O'Reilly" To: "FreeBSD Question List" Subject: Make Install WONT! Date: Fri, 20 Jul 2001 12:38: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 Hi, I've done config, make depend, make -> all went OK as far as I can see. When I try "make install" I get: ------------------------------------------------ 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/zeppo. ------------------------------------------------ I did the whole process fine this morning, but now that I try again I get this !! How dumb am I being???? Regards, Patrick O'Reilly. ----------------- A little knowledge is dangerous... FEAR ME! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 3:52: 7 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 97CF737B406 for ; Fri, 20 Jul 2001 03:52:03 -0700 (PDT) (envelope-from parv@worldnet.att.net) Received: from worldnet.att.net ([32.100.199.84]) by mtiwmhc22.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010720105202.LRRV13460.mtiwmhc22.worldnet.att.net@worldnet.att.net>; Fri, 20 Jul 2001 10:52:02 +0000 Received: by worldnet.att.net (Postfix, from userid 1001) id D51F950BC5; Fri, 20 Jul 2001 06:55:56 -0400 (EDT) Date: Fri, 20 Jul 2001 06:55:56 -0400 From: parv To: Patrick O'Reilly Cc: FreeBSD Question List Subject: Re: Make Install WONT! Message-ID: <20010720065556.A63841@moo.holy.cow> Mail-Followup-To: Patrick O'Reilly , FreeBSD Question List References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: ; from patrick@mip.co.za on Fri, Jul 20, 2001 at 12:38:26PM +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 Jul 20 06:48, i got this from Patrick... > Hi, > > I've done config, make depend, make -> all went OK as far as I can see. > > When I try "make install" I get: > > ------------------------------------------------ > 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/zeppo. > ------------------------------------------------ > > I did the whole process fine this morning, but now that I try again I get > this !! while installingi as root, by chance, are you running at securelevel > -1 (or, >0)? see manpage for securelevel or init(8). -- 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 20 3:52:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp3.mx.pitdc1.stargate.net (smtp3.mx.pitdc1.stargate.net [206.210.69.143]) by hub.freebsd.org (Postfix) with SMTP id 2283537B401 for ; Fri, 20 Jul 2001 03:52:37 -0700 (PDT) (envelope-from mav@wastegate.net) Received: (qmail 5530 invoked from network); 20 Jul 2001 10:52:30 -0000 Received: from unknown (HELO mother) (216.151.64.63) by smtp3.mx.pitdc1.stargate.net with SMTP; 20 Jul 2001 10:52:30 -0000 From: "Doug Reynolds" To: "freebsd-questions@freebsd.org" Date: Fri, 20 Jul 2001 06:49:12 -0400 Reply-To: "Doug Reynolds" X-Mailer: PMMail 98 Professional (2.01.1600) For Windows 98 (4.10.2222) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: scsi controllers Message-Id: <20010720105237.2283537B401@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 alright, after guessing that my scsi controller is too ancient, I am going to ask what controller i could buy that works with fbsd, and it comperbly as fast as or faster than ATA 100. thanx --- doug reynolds | the maverick | mav@wastegate.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 20 3:54: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.ceeyes.com (mail.in.ceeyes.com [65.192.85.133]) by hub.freebsd.org (Postfix) with ESMTP id 8BFE837B401 for ; Fri, 20 Jul 2001 03:53:47 -0700 (PDT) (envelope-from ushaa@in.ceeyes.com) Received: from ushaa.in.ceeyes.com (net6-200 [10.1.6.200]) by mail.ceeyes.com (8.9.1b+Sun/8.9.3) with SMTP id QAA24576 for ; Fri, 20 Jul 2001 16:23:20 +0530 (INST) MIME-Version: 1.0 Message-Id: <3B580E0F.000005.81843@ushaa.in.ceeyes.com> Date: Fri, 20 Jul 2001 16:25:11 +0530 (India Standard Time) Content-Type: Multipart/Alternative; boundary="------------Boundary-00=_ZBQR6RO0000000000000" X-Mailer: IncrediMail 2001 (1500245) From: "usha" X-Priority: 3 X-FID: FLAVOR00-NONE-0000-0000-000000000000 To: Subject: NIC address? Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --------------Boundary-00=_ZBQR6RO0000000000000 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable hello all,=0D =0D =0D can you tell me the function for finding the address of the NIC cards connected to a system in free BSD.=0D And we are using ie code for our application.=0D =0D Reply ASAP.=0D =0D with Regards=0D =0D A.USHA RANI=0D Software Engineer=0D Ceeyes Software Technologies pvt. ltd.,=0D Hyderabad. --------------Boundary-00=_ZBQR6RO0000000000000 Content-Type: Text/HTML; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
hello all,
 
 
can you tell me the function for finding the add= ress of=20 the NIC cards connected to a system in free BSD.
And we are using ie code for our=20 application.
 
Reply ASAP.
 
with Regards
 
A.USHA  RANI
Software Engineer
Ceeyes Software Technologies pvt. ltd.,
Hyderabad.
=09 =09 =09 =09 =09 =09 =09
_________________________________________________
IncrediMail - Email has finally= =20 evolved -
Click=20 Here
--------------Boundary-00=_ZBQR6RO0000000000000-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 4:12:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from clientmail.realtime.co.uk (simian.ehsrealtime.com [213.52.146.137]) by hub.freebsd.org (Postfix) with ESMTP id A847C37B403 for ; Fri, 20 Jul 2001 04:12:22 -0700 (PDT) (envelope-from waynep@pan.ehsrealtime.com) Received: from pan.ehsrealtime.com ([213.52.146.196]) by clientmail.realtime.co.uk with esmtp (Exim 3.20 #1) id 15NYBk-0000FG-01; Fri, 20 Jul 2001 12:11:20 +0100 Received: from waynep by pan.ehsrealtime.com with local (Exim 3.22 #1) id 15NYB5-0000a4-00; Fri, 20 Jul 2001 12:10:39 +0100 From: Wayne Pascoe To: "usha" Cc: Subject: Re: NIC address? References: <3B580E0F.000005.81843@ushaa.in.ceeyes.com> Reply-To: wayne.pascoe@realtime.co.uk Date: 20 Jul 2001 12:10:39 +0100 In-Reply-To: <3B580E0F.000005.81843@ushaa.in.ceeyes.com> Message-ID: <86ofqfn9e8.fsf@pan.ehsrealtime.com> Lines: 17 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 "usha" writes: > can you tell me the function for finding the address of the NIC > cards connected to a system in free BSD. If you want the IP or MAC address of a device, use ifconfig devicename (eg ifconfig fxp0) If you want a list of MAC addresses of machines connected to the machine that it knows about, use arp -a -- - 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 Fri Jul 20 4:34: 0 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 7FF8B37B405 for ; Fri, 20 Jul 2001 04:33:58 -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 f6KBXvc21369 for ; Fri, 20 Jul 2001 07:33:57 -0400 (EDT) Received: (from leblanc@localhost) by acadia.ne.mediaone.net (8.9.3/8.9.3) id HAA17491 for freebsd-questions@FreeBSD.org; Fri, 20 Jul 2001 07:28:04 -0400 Date: Fri, 20 Jul 2001 07:28:04 -0400 From: Louis LeBlanc To: freebsd-questions@FreeBSD.org Subject: Keyboard reset question Message-ID: <20010720072803.A17486@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 Scenario: I have several machines on a keyboard/monitor switchbox. Just a plain turn the knob kind (Hey, it was a freebee). Anyway, the machines reboot while the keyboard is switched to another monitor. How can I reset the keyboard interface on FreeBSD? Assume I can ssh into the box. Of course if there is a way to do it without, or to make FreeBSD not care if there is a keyboard when it boots, then great. Thanks L -- Louis LeBlanc leblanc@acadia.ne.mediaone.net Fully Funded Hobbyist, KeySlapper Extrordinaire :) http://acadia.ne.mediaone.net Ô¿Ô¬ COBOL: An exercise in Artificial Inelegance. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 4:50:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id 9400F37B407 for ; Fri, 20 Jul 2001 04:50:14 -0700 (PDT) (envelope-from jcm@freebsd-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97] ident=root) by probity.mcc.ac.uk with esmtp (Exim 2.05 #7) id 15NYnN-000BLX-00 for freebsd-questions@freebsd.org; Fri, 20 Jul 2001 12:50:13 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.3/8.11.1) id f6KBoCn14641 for freebsd-questions@freebsd.org; Fri, 20 Jul 2001 12:50:12 +0100 (BST) (envelope-from jcm) Date: Fri, 20 Jul 2001 12:50:12 +0100 From: j mckitrick To: freebsd-questions@freebsd.org Subject: problems installing XFree86 4.0 Message-ID: <20010720125011.A14519@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 Hi all, I backed up /usr/X11R6, and did 'make' from XFree86-4-Server. I just cvsupped ports before running this. Here is where it failed: install in lib/Xrender done installing in lib/Xft... rm -f xftcfg.o unshared/xftcfg.o LD_LIBRARY_PATH=../../exports/lib cc -c -ansi -pedantic -Dasm=__asm -Wall -Wpoin ter-arith -I/usr/local/include/freetype2 -I/usr/local/include -I../.. -I../../ exports/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -DXTHREADS -D_REENT RANT -D_THREAD_SAFE -DXUSE_MTSAFE_API -DXNO_MTSAFE_PWDAPI -DXFT_DEFAULT_PATH= \"/usr/X11R6/lib/X11/XftConfig\" -DFREETYPE2 xftcfg.c -o unshared/xftcfg.o In file included from xftint.h:30, from xftcfg.c:28: XftFreetype.h:34: syntax error before `_XftFTlibrary' XftFreetype.h:34: warning: type defaults to `int' in declaration of `_XftFTlibra ry' XftFreetype.h:34: ANSI C forbids data definition with no type or storage class XftFreetype.h:37: syntax error before `FT_Face' XftFreetype.h:41: syntax error before `FT_F26Dot6' XftFreetype.h:54: syntax error before `FT_Matrix' XftFreetype.h:71: syntax error before `face' *** Error code 1 Stop in /usr/ports/x11/XFree86-4-li jcm -- o-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-o | ~~~~~~~~~~~~ Jonathon McKitrick ~~~~~~~~~~~~~ | | "I prefer the term 'Artificial Person' myself." | o-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-o To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 5:19: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from indigo.external.org (c1118643-b.chmpgn1.il.home.com [24.181.130.163]) by hub.freebsd.org (Postfix) with ESMTP id BC9AC37B401 for ; Fri, 20 Jul 2001 05:19:01 -0700 (PDT) (envelope-from james@indigo.external.org) Received: (from james@localhost) by indigo.external.org (8.11.3/8.11.3) id f6KCGxs86349 for questions@freebsd.org; Fri, 20 Jul 2001 07:16:59 -0500 (CDT) (envelope-from james) From: James Westbrooks Message-Id: <200107201216.f6KCGxs86349@indigo.external.org> Subject: FreeBSD Box as an Access Point To: questions@freebsd.org Date: Fri, 20 Jul 2001 07:16:58 -0500 (CDT) X-Mailer: ELM [version 2.4ME+ PL82 (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'm trying to set up a laptop as an Access Point. I've got an Orinoco Gold wireless card for receiving and a LinkSys Etherfast for the connect point to the wired network. I want to be able to have several other wireless devices reside on the same network as my wired devices. I've met w/ limited success. Wired machines could contact the AP (ping) and the wireless machines could contact the AP (ping as well) but couldn't ping each other. Any suggestions would be appreciated. 'me To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 5:23: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from grover.logicsquad.net (CPE-61-9-135-142.vic.bigpond.net.au [61.9.135.142]) by hub.freebsd.org (Postfix) with SMTP id EC21B37B407 for ; Fri, 20 Jul 2001 05:22:58 -0700 (PDT) (envelope-from paulh@logicsquad.net) Received: (qmail 83942 invoked by uid 65534); 20 Jul 2001 12:23:00 -0000 Received: from 10.0.0.3 (SquirrelMail authenticated user paulh) by grover.logicsquad.net with HTTP; Fri, 20 Jul 2001 21:53:00 +0930 (CST) Message-ID: <1484.10.0.0.3.995631780.squirrel@grover.logicsquad.net> Date: Fri, 20 Jul 2001 21:53:00 +0930 (CST) Subject: Re: startup script From: "Paul A. Hoadley" To: RClark@swst.com In-Reply-To: References: Cc: freebsd-questions@freebsd.org Reply-To: paulh@logicsquad.net X-Mailer: SquirrelMail (version 1.0.6) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Where would I put a start up script in FreeBSD 4.2? I thought it was > /etc/rc.local, but I don't seem to have that file. You can either create /etc/rc.local, or put a script in /usr/local/etc/rc.d/ -- anything in this directory with a suffix of ".sh" will be run at startup with an argument of "start" and run at shutdown with an argument of "stop". -- Paul. mailto:paulh@logicsquad.net mailto:paul.hoadley@student.adelaide.edu.au To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 5:24:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from oden.exmandato.se (oden.exmandato.se [192.71.33.1]) by hub.freebsd.org (Postfix) with ESMTP id 2566D37B403 for ; Fri, 20 Jul 2001 05:24:40 -0700 (PDT) (envelope-from jonas.bulow@servicefactory.se) Received: from servicefactory.se (root@oden.exmandato.se [192.71.33.1]) by oden.exmandato.se (8.8.8/8.8.5) with ESMTP id OAA15388 for ; Fri, 20 Jul 2001 14:24:38 +0200 (MET DST) Message-ID: <3B582303.1375517C@servicefactory.se> Date: Fri, 20 Jul 2001 14:24:35 +0200 From: jonas Organization: Service Factory 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: help with growfs on 4.3-STABLE 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, When I was young and stupid ( :-) ) I partitioned my hard drive as: Offset Size(ST) End Name PType Desc Subtype Flags 0 63 62 - 6 unused 0 63 4188177 4188239 ad0s1 2 fat 6 4188240 1043280 5231519 ad0s2 3 freebsd 165 C 5231520 8179920 13411439 ad0s3 4 extended 5 13411440 8179920 21591359 ad0s4 3 freebsd 165 21591360 1980720 23572079 - 6 unused 0 What I didn't know at that time was that I could only have four partitions. The problem: I would like to extend ad0s4 to use all the space availble on the disk. Then I would like to use growfs to grow the filesystem on that partition ( /usr ) to use the newly created space in the partition. Is that possible? Last time I tried to change the partition size I ended up with the ad0s4 unreadable. I managed to restore it by restoring the original valus in the partition table. So, the question is: How do I resize a partition without loosing it? The use of growfs seems quite simple after that initial problem is solved. regards, jonas To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 5:54:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailout01.sul.t-online.de (mailout01.sul.t-online.com [194.25.134.80]) by hub.freebsd.org (Postfix) with ESMTP id DEABE37B403 for ; Fri, 20 Jul 2001 05:54:14 -0700 (PDT) (envelope-from reichmuth@web.de) Received: from fwd02.sul.t-online.de by mailout01.sul.t-online.de with smtp id 15NZnJ-0003HH-07; Fri, 20 Jul 2001 14:54:13 +0200 Received: from sunrise.cs.uni-bonn.de (520055305743-0001@[217.0.186.169]) by fmrl02.sul.t-online.com with esmtp id 15NZn8-1QTLbUC; Fri, 20 Jul 2001 14:54:02 +0200 Received: from 192.168.0.23 (dojo.wg [192.168.0.23]) by sunrise.cs.uni-bonn.de (8.11.1/8.9.3) with ESMTP id f6KE9SK00348 for ; Fri, 20 Jul 2001 16:09:28 +0200 (CEST) (envelope-from reichmuth@web.de) Date: Fri, 20 Jul 2001 15:00:01 +0200 From: Philipp Reichmuth X-Mailer: The Bat! (v1.51) Personal Reply-To: Philipp Reichmuth X-Priority: 3 (Normal) Message-ID: <1801875181.20010720150001@web.de> To: questions@freebsd.org Subject: UTF-8 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Sender: 520055305743-0001@t-dialin.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello Questions-folks, I am currently experimenting with using Unicode in multilingual document processing, and since I use a central document repository on a FreeBSD-based server, I was wondering to what degree FreeBSD supports Unicode. I can probably use the UTF-8 compatible xterm that comes with XFree86 4.0.3 and higher with unicode-enabled fonts without problems; the interesting things start with system interaction. Does anyone know if and how I can enable UTF-8 as input/output encoding in the system console? Can I use UTF-8 encoded filenames? (NULL never occurs in UTF-8 strings, but I'm no FFS expert, so I don't know what other obstacles there might be.) The ultimate goal is to have a system that is completely Unicode-based, so that I'll never have to worry about character encodings and writing systems again. On another note, due to frequent power cuts where I'm living at the moment I really hate the age-long fscks on the server with the occasional data loss involved. Can I use a journaling filesystem with BSD? Thanks in advance Philipp mailto:reichmuth@web.de __________________________ Miten tämä vaikuttaa? - Tappaa. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 6: 1: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from anaconda.covysoft.net (anaconda.covysoft.net [217.13.33.3]) by hub.freebsd.org (Postfix) with ESMTP id 0BB4537B405 for ; Fri, 20 Jul 2001 06:01:00 -0700 (PDT) (envelope-from pc2@mail.covysoft.net) Received: by anaconda.covysoft.net (CovySoft MTA, from userid 1051) id 7C89F4693B; Fri, 20 Jul 2001 15:00:58 +0200 (CEST) Date: Fri, 20 Jul 2001 15:00:58 +0200 From: Pesics Be'la - The Independent To: freebsd-questions@freebsd.org Subject: smart card Message-ID: <20010720150058.A19674@covysoft.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 Hi! I wonder, if anybody has tried a smart card reader or rw. under FreeBSD? http://www.linuxnet.com/ : maybe, there are some not to low-level drivers, which could be ported easily (OS X is also supported...) So, i there is somebody who has experience in this, or making a port to FreeBSD please contact me. Thank you! -- Pesics Be'la - The Independent [+36 30 3589876] ask for more ;-* Aquila non captat muscas! ;-P ------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 6: 3:34 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f120.pav2.hotmail.com [64.4.37.120]) by hub.freebsd.org (Postfix) with ESMTP id 699A937B403 for ; Fri, 20 Jul 2001 06:03:32 -0700 (PDT) (envelope-from rezaj_@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 20 Jul 2001 06:03:32 -0700 Received: from 203.173.250.145 by pv2fd.pav2.hotmail.msn.com with HTTP; Fri, 20 Jul 2001 13:03:32 GMT X-Originating-IP: [203.173.250.145] From: "reza jamshid" To: freebsd-questions@freebsd.org Subject: ignore dial tone with ppp Date: Fri, 20 Jul 2001 22:33:32 +0930 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 20 Jul 2001 13:03:32.0429 (UTC) FILETIME=[60D31FD0:01C1111C] Sender: owner-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 live in Australia and use the Telstra message bank service which automatically changes the 'normal' dial tone when i get new messages. Is there a way I can have FreeBSD dial out without needing to recognise or listen to the dialtone? I had a look at the man page but couldnt seem to find anything.. I'm using user ppp and running FreeBSD 4.2-RELEASE Thanks very much _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 6:21:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from 2ainfo.it (ppp44.2ainfo.it [151.39.235.108]) by hub.freebsd.org (Postfix) with ESMTP id 67E4637B401 for ; Fri, 20 Jul 2001 06:21:23 -0700 (PDT) (envelope-from filippo@2ainfo.it) Received: (from filippo@localhost) by 2ainfo.it (8.11.4/8.11.4) id f6KDSEl00777 for freebsd-questions@freebsd.org; Fri, 20 Jul 2001 15:28:14 +0200 (CEST) (envelope-from filippo) Date: Fri, 20 Jul 2001 15:27:33 +0200 From: Filippo Moretti To: freebsd-questions@freebsd.org Subject: Re: TrueType fonts Message-ID: <20010720152733.B368@2ainfo.it> References: <20010717230142.A64878@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from khera@kcilink.com on Wed, Jul 18, 2001 at 10:20:20AM -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 Seeing your thread I have installed TTF in my 4.3_STABLE with XF86-4.1 without problems. Now I wonder how I could use them with Staroffice5.1 sincerely Filippoj To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 6:23:49 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 A2B9E37B407 for ; Fri, 20 Jul 2001 06:23:38 -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 f6KDMtY07051 for ; Fri, 20 Jul 2001 17:22:57 +0400 (MSD) (envelope-from matrix@ipform.ru) Message-ID: <006501c1111f$17415320$0c00a8c0@ipform.ru> From: "Artem Koutchine" To: Subject: JBuilder5 on FreeBSD! Date: Fri, 20 Jul 2001 17:22:41 +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 just installed JBuilder5 on FreeBSD. The installation proceeded fine. But, of course, the whole thing does not work. I edited the startup shell scripts (they need to be bash scripts, not sh) but still no luck. 1) java.awt.AWTException: cannot open XIM What's XIM and where do i get it? I am running XF 3.3.6 2) when i select a license it starts loading and after a while gives me: HotSpot Virtual Machine Error, Unexepcted Signal 11 blah blab blah Error ID: blah blah Problematic Thread: prio=1 tid=... nid=.. runnable Any idea? Anybody was lucky to get it working? Regards, 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 20 6:40:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.medisite.net (mail.medisite.net [194.98.201.15]) by hub.freebsd.org (Postfix) with ESMTP id 9721A37B401 for ; Fri, 20 Jul 2001 06:40:43 -0700 (PDT) (envelope-from jean-sebastien.pedron@medisite.net) Received: from medisite.net (gw2.medisite.net [194.98.201.3]) by mail.medisite.net (8.11.2/8.9.3) with ESMTP id f6KDeeq23566 for ; Fri, 20 Jul 2001 15:40:40 +0200 Message-ID: <3B5834DF.1010304@medisite.net> Date: Fri, 20 Jul 2001 15:40:47 +0200 From: =?ISO-8859-1?Q?Jean=2DS=E9bastien=20P=E9dron?= User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.2) Gecko/20010628 X-Accept-Language: en-us MIME-Version: 1.0 To: FreeBSD Questions Subject: ADSL disconnection Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello the list I have recently send a mail about disconnection of my ADSL line. The modem was not responding after, and i had to turn it off and back, so I can reconnect with ppp. I exchanged the modem with a new one, but the problem is still here. So it does not come from the modem. When I use it directly under Windows, there is no disconnection. Therefore, the problem must be in my configuration of PPP. I use the script found in the Handbook and tried to tune it with other scripts found on the web, but the disconnections persist... Here is my hardware : Pentium 166 MMX NIC Realtek 8029 10 Mbps with 'ed' driver Modem Alcatel Speed Touch Home (Ethernet) I use FreeBSD 4.3 with the included PPP. If you could help me... Thanks. Jean-Sebastien Pedron To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 7:18: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay3.adelphia.net (smtprelay3.adelphia.net [64.8.25.8]) by hub.freebsd.org (Postfix) with ESMTP id 9D32437B409 for ; Fri, 20 Jul 2001 07:17:43 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay3.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGRZQ300.RFV for ; Fri, 20 Jul 2001 10:18:03 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6KEFhq02028; Fri, 20 Jul 2001 10:15:43 -0400 (EDT) (envelope-from ipt) Date: Fri, 20 Jul 2001 10:15:42 -0400 From: User & Ian Patrick Thomas To: freebsd-questions@freebsd.org Cc: freebsd-questions@freebsd.org Subject: Re: Keyboard reset question Message-ID: <20010720101542.A1833@localhost> References: <20010720072803.A17486@acadia.ne.mediaone.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010720072803.A17486@acadia.ne.mediaone.net>; from leblanc+freebsd@acadia.ne.mediaone.net on Fri, Jul 20, 2001 at 07:28:04AM -0400 Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by scraemondaemon.my.domain id f6KEFhq02028 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG As it was put forth by Louis LeBlanc on Fri, Jul 20, 2001 at 07:28:04AM -= 0400... > Scenario: I have several machines on a keyboard/monitor switchbox. > Just a plain turn the knob kind (Hey, it was a freebee). Anyway, the > machines reboot while the keyboard is switched to another monitor. > How can I reset the keyboard interface on FreeBSD? Assume I can ssh > into the box. Of course if there is a way to do it without, or to > make FreeBSD not care if there is a keyboard when it boots, then > great. >=20 > Thanks > L > --=20 > Louis LeBlanc leblanc@acadia.ne.mediaone.net > Fully Funded Hobbyist, KeySlapper Extrordinaire :) > http://acadia.ne.mediaone.net =D4=BF=D4=AC >=20 > COBOL: > An exercise in Artificial Inelegance. >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message check out man atkbd. It appears that by default, FreeBSD doesn't care if there is a keyboard attached, so you should be o.k. The driver for on= e will be loaded anyway. Ian =20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 7:23: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smarthost-1.mail.telinco.net (smarthost-1.mail.telinco.net [212.1.128.90]) by hub.freebsd.org (Postfix) with ESMTP id 5C64537B401 for ; Fri, 20 Jul 2001 07:22:52 -0700 (PDT) (envelope-from wcp@pelissero.org) Received: from smtp1.cluster1.telinco.net ([212.1.128.150]) by smarthost-1.mail.telinco.net with esmtp (Exim 3.22 #1) id 15Nb9g-000LlR-00 for freebsd-questions@freebsd.org; Fri, 20 Jul 2001 15:21:24 +0100 Received: from daemon.lpds.sublink.org (ppp-2-80.cvx2.telinco.net [212.1.141.80]) by smtp1.cluster1.telinco.net (8.11.1/8.9.1) with ESMTP id f6KEMmT25456 for ; Fri, 20 Jul 2001 15:22:49 +0100 (BST) Received: from pelissero.org (hyde.lpds.sublink.org [10.0.0.2]) by daemon.lpds.sublink.org (8.11.4/8.9.3) with ESMTP id f6KE4Av00610 for ; Fri, 20 Jul 2001 15:04:10 +0100 (BST) (envelope-from wcp@pelissero.org) Received: (from wcp@localhost) by pelissero.org (8.11.4/8.9.3) id f6KBcsu27207; Fri, 20 Jul 2001 12:38:54 +0100 (BST) (envelope-from wcp) From: "Walter C. Pelissero" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15192.6222.142227.424250@hyde.lpds.sublink.org> Date: Fri, 20 Jul 2001 12:38:54 +0100 To: freebsd-questions@freebsd.org Subject: PPP stopped working X-Mailer: VM 6.90 under 21.1 (patch 13) "Crater Lake" XEmacs Lucid Reply-To: walter@pelissero.org X-Attribution: WP Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've recently upgraded my FreeBSD 3.4 box to 4.3-STABLE (cvsupped). Since then my PPP (user-ppp) stopped working properly. According to the log file and my few knowledge of PPP, it seems like struggling with the ISP about the right IP address to use and it gives up after too many NAKs. Currently my ppp.conf has got this ifaddr setting: set ifaddr 192.168.0.1/0 192.168.0.2/0 255.255.255.0 0.0.0.0 If I change it to set ifaddr 0 0 255.255.255.0 0.0.0.0 I'm able to connect manually (no -auto), but it's an invalid setting when in -auto mode. Does anybody know why the -auto mode doesn't work anymore? Here is ppp.log (amended and simplified): Phase: Connected to client from 10.0.0.2:29702 Command: 10.0.0.2:29702: passwd ******** Command: 10.0.0.2:29702: dial Phase: bundle: Establish Phase: deflink: closed -> opening Phase: deflink: Connected! Phase: deflink: opening -> dial Chat: Phone: ****-******* Chat: deflink: Dial attempt 1 of 1 Chat: Send: AT^M Chat: Expect(5): OK Phase: 10.0.0.2:29702: Client connection closed. Chat: Received: AT^M^M Chat: Received: OK^M Chat: Send: ATE1Q0^M Chat: Expect(5): OK Chat: Received: ATE1Q0^M^M Chat: Received: OK^M Chat: Send: ATZ^M Chat: Expect(5): OK Chat: Received: ATZ^M^M Chat: Received: OK^M Chat: Send: ATL1M1^M Chat: Expect(5): OK Chat: Received: ATL1M1^M^M Chat: Received: OK^M Chat: Send: ATDT****-*******^M Chat: Expect(40): CONNECT Chat: Received: ATDT****-*******^M^M Chat: Received: CONNECT Phase: deflink: dial -> carrier Phase: deflink: /dev/cuaa0: CD detected Phase: deflink: carrier -> login Phase: deflink: login -> lcp LCP: FSM: Using "deflink" as a transport LCP: deflink: State change Initial --> Closed LCP: deflink: State change Closed --> Stopped LCP: deflink: LayerStart LCP: deflink: SendConfigReq(1) state = Stopped LCP: ACFCOMP[2] LCP: PROTOCOMP[2] LCP: ACCMAP[6] 0x00000000 LCP: MRU[4] 1500 LCP: MAGICNUM[6] 0xa8b2b946 LCP: deflink: State change Stopped --> Req-Sent LCP: deflink: RecvConfigReq(1) state = Req-Sent LCP: MRU[4] 1500 LCP: ACCMAP[6] 0x000a0000 LCP: AUTHPROTO[4] 0xc023 (PAP) LCP: MAGICNUM[6] 0xf540166c LCP: PROTOCOMP[2] LCP: ACFCOMP[2] LCP: MRRU[4] 1506 LCP: deflink: SendConfigRej(1) state = Req-Sent LCP: MRRU[4] 1506 LCP: deflink: RecvConfigReq(2) state = Req-Sent LCP: MRU[4] 1500 LCP: ACCMAP[6] 0x000a0000 LCP: AUTHPROTO[4] 0xc023 (PAP) LCP: MAGICNUM[6] 0xf540166c LCP: PROTOCOMP[2] LCP: ACFCOMP[2] LCP: deflink: SendConfigAck(2) state = Req-Sent LCP: MRU[4] 1500 LCP: ACCMAP[6] 0x000a0000 LCP: AUTHPROTO[4] 0xc023 (PAP) LCP: MAGICNUM[6] 0xf540166c LCP: PROTOCOMP[2] LCP: ACFCOMP[2] LCP: deflink: State change Req-Sent --> Ack-Sent LCP: deflink: SendConfigReq(1) state = Ack-Sent LCP: ACFCOMP[2] LCP: PROTOCOMP[2] LCP: ACCMAP[6] 0x00000000 LCP: MRU[4] 1500 LCP: MAGICNUM[6] 0xa8b2b946 LCP: deflink: RecvConfigAck(1) state = Ack-Sent LCP: deflink: State change Ack-Sent --> Opened LCP: deflink: LayerUp Phase: bundle: Authenticate Phase: deflink: his = PAP, mine = none Phase: Pap Output: ******** ******** Phase: Pap Input: SUCCESS () IPCP: Using trigger address 0.0.0.0 CCP: FSM: Using "deflink" as a transport CCP: deflink: State change Initial --> Closed CCP: deflink: LayerStart. CCP: MPPE: Not usable without CHAP81 CCP: deflink: SendConfigReq(1) state = Closed CCP: DEFLATE[4] win 15 CCP: PRED1[2] CCP: deflink: State change Closed --> Req-Sent Phase: deflink: lcp -> open Phase: bundle: Network IPCP: FSM: Using "deflink" as a transport IPCP: deflink: State change Initial --> Closed IPCP: deflink: LayerStart. IPCP: deflink: SendConfigReq(1) state = Closed IPCP: IPADDR[6] 0.0.0.0 IPCP: COMPPROTO[6] 16 VJ slots with slot compression IPCP: deflink: State change Closed --> Req-Sent CCP: deflink: RecvConfigReq(1) state = Req-Sent CCP: MPPE[6] value 0x00000001 ( bits, stateful, compressed) CCP: MPPE: Not usable without CHAP81 CCP: deflink: SendConfigRej(1) state = Req-Sent CCP: MPPE[6] value 0x00000001 ( bits, stateful, compressed) CCP: deflink: RecvConfigRej(1) state = Req-Sent CCP: DEFLATE[4] win 15 CCP: PRED1[2] CCP: MPPE: Not usable without CHAP81 CCP: deflink: SendConfigReq(2) state = Req-Sent CCP: [EMPTY] IPCP: deflink: RecvConfigReq(1) state = Req-Sent IPCP: [EMPTY] IPCP: deflink: SendConfigNak(1) state = Req-Sent IPCP: IPADDR[6] 192.168.0.2 IPCP: deflink: RecvConfigRej(1) state = Req-Sent IPCP: COMPPROTO[6] 16 VJ slots with slot compression IPCP: deflink: SendConfigReq(2) state = Req-Sent IPCP: IPADDR[6] 0.0.0.0 CCP: deflink: RecvConfigReq(2) state = Req-Sent CCP: STAC[5] CCP: deflink: SendConfigRej(2) state = Req-Sent CCP: STAC[5] CCP: deflink: RecvConfigAck(2) state = Req-Sent CCP: deflink: State change Req-Sent --> Ack-Rcvd IPCP: deflink: RecvConfigReq(2) state = Req-Sent IPCP: [EMPTY] IPCP: deflink: SendConfigNak(2) state = Req-Sent IPCP: IPADDR[6] 192.168.0.2 IPCP: deflink: RecvConfigNak(2) state = Req-Sent IPCP: IPADDR[6] 212.1.137.154 IPCP: IPADDR[6] changing address: 0.0.0.0 --> 212.1.137.154 IPCP: deflink: SendConfigReq(3) state = Req-Sent IPCP: IPADDR[6] 212.1.137.154 CCP: deflink: RecvConfigReq(3) state = Ack-Rcvd CCP: STAC[5] CCP: deflink: SendConfigRej(3) state = Ack-Rcvd CCP: STAC[5] IPCP: deflink: RecvConfigReq(3) state = Req-Sent IPCP: [EMPTY] IPCP: deflink: SendConfigNak(3) state = Req-Sent IPCP: IPADDR[6] 192.168.0.2 IPCP: deflink: RecvConfigAck(3) state = Req-Sent IPCP: deflink: State change Req-Sent --> Ack-Rcvd CCP: deflink: RecvTerminateReq(1) state = Ack-Rcvd CCP: deflink: SendTerminateAck(1) state = Ack-Rcvd CCP: deflink: State change Ack-Rcvd --> Req-Sent IPCP: deflink: RecvConfigReq(4) state = Ack-Rcvd IPCP: [EMPTY] IPCP: deflink: SendConfigNak(4) state = Ack-Rcvd IPCP: IPADDR[6] 192.168.0.2 IPCP: deflink: RecvConfigReq(5) state = Ack-Rcvd IPCP: [EMPTY] IPCP: deflink: SendConfigNak(5) state = Ack-Rcvd IPCP: IPADDR[6] 192.168.0.2 IPCP: deflink: RecvConfigReq(6) state = Ack-Rcvd IPCP: [EMPTY] IPCP: deflink: SendConfigNak(6) state = Ack-Rcvd IPCP: IPADDR[6] 192.168.0.2 IPCP: deflink: RecvConfigReq(7) state = Ack-Rcvd IPCP: [EMPTY] IPCP: deflink: SendConfigNak(7) state = Ack-Rcvd IPCP: IPADDR[6] 192.168.0.2 IPCP: deflink: RecvConfigReq(8) state = Ack-Rcvd IPCP: [EMPTY] IPCP: deflink: SendConfigNak(8) state = Ack-Rcvd IPCP: IPADDR[6] 192.168.0.2 IPCP: deflink: RecvConfigReq(9) state = Ack-Rcvd IPCP: [EMPTY] IPCP: deflink: SendConfigNak(9) state = Ack-Rcvd IPCP: IPADDR[6] 192.168.0.2 IPCP: deflink: RecvConfigReq(10) state = Ack-Rcvd IPCP: [EMPTY] IPCP: deflink: SendConfigNak(10) state = Ack-Rcvd IPCP: IPADDR[6] 192.168.0.2 IPCP: deflink: RecvConfigReq(11) state = Ack-Rcvd IPCP: [EMPTY] IPCP: deflink: SendConfigNak(11) state = Ack-Rcvd IPCP: IPADDR[6] 192.168.0.2 IPCP: deflink: RecvConfigReq(12) state = Ack-Rcvd IPCP: [EMPTY] IPCP: deflink: SendConfigNak(12) state = Ack-Rcvd IPCP: IPADDR[6] 192.168.0.2 IPCP: deflink: RecvConfigReq(13) state = Ack-Rcvd IPCP: [EMPTY] IPCP: deflink: SendConfigNak(13) state = Ack-Rcvd IPCP: IPADDR[6] 192.168.0.2 IPCP: deflink: RecvConfigReq(14) state = Ack-Rcvd IPCP: [EMPTY] IPCP: deflink: SendConfigNak(14) state = Ack-Rcvd IPCP: IPADDR[6] 192.168.0.2 IPCP: deflink: RecvConfigReq(15) state = Ack-Rcvd IPCP: [EMPTY] IPCP: deflink: SendConfigNak(15) state = Ack-Rcvd IPCP: IPADDR[6] 192.168.0.2 Phase: deflink: Too many IPCP NAKs sent - abandoning negotiation IPCP: deflink: SendTerminateReq(4) state = Ack-Rcvd IPCP: deflink: State change Ack-Rcvd --> Closing IPCP: deflink: RecvConfigReq(16) state = Closing IPCP: deflink: Error: Got ConfigReq while state = Closing IPCP: deflink: RecvTerminateAck(4) state = Closing IPCP: deflink: LayerFinish. IPCP: Connect time: 2 secs: 0 octets in, 0 octets out IPCP: : 0 packets in, 0 packets out IPCP: total 0 bytes/sec, peak 0 bytes/sec on Fri Jul 20 11:54:55 2001 IPCP: deflink: State change Closing --> Closed Phase: bundle: Terminate CCP: deflink: State change Req-Sent --> Starting CCP: deflink: LayerFinish. CCP: deflink: State change Starting --> Initial LCP: deflink: LayerDown LCP: deflink: SendTerminateReq(2) state = Opened LCP: deflink: State change Opened --> Closing Phase: deflink: open -> lcp IPCP: deflink: State change Closed --> Initial Phase: deflink: Carrier lost LCP: deflink: LayerFinish LCP: deflink: State change Closing --> Initial Phase: deflink: Disconnected! Phase: deflink: lcp -> logout Phase: deflink: Disconnected! Phase: deflink: logout -> hangup Phase: deflink: Connect time: 33 secs: 526 octets in, 622 octets out Phase: deflink: : 26 packets in, 31 packets out Phase: total 34 bytes/sec, peak 221 bytes/sec on Fri Jul 20 11:54:57 2001 Phase: deflink: hangup -> closed Phase: bundle: Dead -- walter pelissero http://www.pelissero.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 20 7:28: 4 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 106FC37B403 for ; Fri, 20 Jul 2001 07:28:01 -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 GGS03Z03.0MQ; Fri, 20 Jul 2001 10:26:23 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6KEQ0902083; Fri, 20 Jul 2001 10:26:00 -0400 (EDT) (envelope-from ipt) Date: Fri, 20 Jul 2001 10:26:00 -0400 From: User & Ian Patrick Thomas To: =?iso-8859-1?Q?Jean-S=E9bastien_P=E9dron?= Cc: freebsd-questions@freebsd.org Subject: Re: ADSL disconnection Message-ID: <20010720102600.B1833@localhost> References: <3B5834DF.1010304@medisite.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B5834DF.1010304@medisite.net>; from jean-sebastien.pedron@medisite.net on Fri, Jul 20, 2001 at 03:40:47PM +0200 Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by scraemondaemon.my.domain id f6KEQ0902083 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG As it was put forth by Jean-S=E9bastien P=E9dron on Fri, Jul 20, 2001 at = 03:40:47PM +0200... > Hello the list >=20 > I have recently send a mail about disconnection of my ADSL line. The > modem was not responding after, and i had to turn it off and back, so I > can reconnect with ppp. I exchanged the modem with a new one, but the > problem is still here. So it does not come from the modem. When I use i= t > directly under Windows, there is no disconnection. Therefore, the > problem must be in my configuration of PPP. I use the script found in > the Handbook and tried to tune it with other scripts found on the web, > but the disconnections persist... >=20 > Here is my hardware : > Pentium 166 MMX > NIC Realtek 8029 10 Mbps with 'ed' driver > Modem Alcatel Speed Touch Home (Ethernet) >=20 > I use FreeBSD 4.3 with the included PPP. >=20 > If you could help me... > Thanks. >=20 > Jean-Sebastien Pedron >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message What do the scripts that you change look like? Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 7:47:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from lcmail2.lc.ca.gov (lcmail2.lc.ca.gov [165.107.12.11]) by hub.freebsd.org (Postfix) with ESMTP id 976E237B406 for ; Fri, 20 Jul 2001 07:47:51 -0700 (PDT) (envelope-from drewt@writeme.com) Received: from CONVERSION-DAEMON by lcmail2.lc.ca.gov (PMDF V5.2-27 #40821) id <0GGS00B0114JVK@lcmail2.lc.ca.gov> for freebsd-questions@FreeBSD.ORG; Fri, 20 Jul 2001 07:48:19 -0700 (PDT) Received: from tagalong ([165.66.11.103]) by lcmail2.lc.ca.gov (PMDF V5.2-27 #40821) with SMTP id <0GGS00GCE14IBC@lcmail2.lc.ca.gov> for freebsd-questions@FreeBSD.ORG; Fri, 20 Jul 2001 07:48:18 -0700 (PDT) Date: Fri, 20 Jul 2001 07:47:44 -0700 From: Drew Tomlinson Subject: RE: Help Installing Korn Shell from Ports? In-reply-to: <3B567529.3850835B@home.com> To: 'Bruce Dang' , Drew Tomlinson Cc: "FreeBSD Questions (E-mail)" Message-id: <5CD46247635BD511B6B100A0CC3F023925A005@ldcmsx01.lc.ca.gov> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > -----Original Message----- > From: Bruce Dang [mailto:btdang@home.com] > Sent: Wednesday, July 18, 2001 10:51 PM > To: Drew Tomlinson > Cc: FreeBSD Questions (E-mail) > Subject: Re: Help Installing Korn Shell from Ports? > > > Drew, the ksh port is outdated. The file requested is no longer hosted > on ATT 's archive. Download a newer snapshot, from the webpage . OK, thanks. I d/loaded the most current one and then changed the Makefile in the port to reflect the current name. However, this still failed during the patch phase of the make. Any ideas on how to get past this problem? Thanks, Drew > > Bruce Dang > www.tbug.org > > Drew Tomlinson wrote: > > > > I tried to install the korn shell from ports but the file > was not found: > > > > blacklamb# pwd > > /usr/ports/shells/ksh93 > > blacklamb# make > > >> INIT.2001-01-01.0000.tgz doesn't seem to exist in > /usr/ports/distfiles/. > > >> Attempting to fetch from > http://www.research.att.com/~gsf/download/tgz/. > > fetch: INIT.2001-01-01.0000.tgz: Not Found > > >> Attempting to fetch from > > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. > > fetch: INIT.2001-01-01.0000.tgz: File unavailable (e.g., > file not found, no > > acce > > ss) > > >> Couldn't fetch it - please try to retrieve this > > >> port manually into /usr/ports/distfiles/ and try again. > > > > I also tried from /stand/sysinstall but it's not listed in > packages. Does > > anyone have any idea why I'm not finding it? > > > > Thanks, > > > > Drew > > > > 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 20 8: 8:51 2001 Delivered-To: freebsd-questions@freebsd.org Received: from postino5.prima.com.ar (postino5.prima.com.ar [200.42.0.188]) by hub.freebsd.org (Postfix) with ESMTP id 1780137B403 for ; Fri, 20 Jul 2001 08:08:43 -0700 (PDT) (envelope-from PDGO@prima.com.ar) Received: from prima23.prima.com.ar (host032013.int.prima.com.ar [172.16.32.13]) by postino5.prima.com.ar (8.11.1/8.11.1) with ESMTP id f6KF8fp43666 for ; Fri, 20 Jul 2001 12:08:41 -0300 (ART) (envelope-from PDGO@prima.com.ar) Received: by prima23.prima.com.ar with Internet Mail Service (5.5.2653.19) id ; Fri, 20 Jul 2001 12:04:57 -0300 Message-ID: From: "Gutierrez Ochoa, Pablo Daniel" To: "'freebsd-questions@FreeBSD.ORG'" Subject: Need help Please Date: Fri, 20 Jul 2001 12:04:56 -0300 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C1112D.56A72680" Sender: owner-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_01C1112D.56A72680 Content-Type: text/plain; charset="iso-8859-1" The IIS cookie use a "+" to separate this : Mozilla/4.08+[en]+(Win95;+U) but the Apache cookie use this " ": Mozilla/4.02 [en]C-DIAL (Win95; U) I need both of them to be the same. Do you know how to set Apache cookie to use "+" ????? or viceversa ???? It's really important to me to do this Thanks Pablo Daniel Gutierrez Ochoa http://www.ciudad.com.ar http://www.ciudad.com.mx Unidad Internet - Grupo Clarin Gerencia de Operaciones, Redes y Sistemas ------_=_NextPart_001_01C1112D.56A72680 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Need help Please

The IIS cookie use a "+" to = separate this :  = Mozilla/4.08+[en]+(Win95;+U)
but the Apache cookie use this = " ":       Mozilla/4.02 [en]C-DIAL = (Win95; U)

I need both of them to be the same. = Do you know how to set Apache cookie to use "+" ????? or = viceversa ????

It's really important to me to do = this

Thanks


Pablo Daniel Gutierrez = Ochoa
http://www.ciudad.com.ar
http://www.ciudad.com.mx
Unidad Internet - Grupo Clarin
Gerencia de Operaciones, Redes y = Sistemas

------_=_NextPart_001_01C1112D.56A72680-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 8:34:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from grex.cyberspace.org (grex.cyberspace.org [216.93.104.34]) by hub.freebsd.org (Postfix) with SMTP id A249B37B405 for ; Fri, 20 Jul 2001 08:34:52 -0700 (PDT) (envelope-from caf33n@cyberspace.org) Received: (from caf33n@localhost) by grex.cyberspace.org (8.6.13/8.6.12) id LAA06776 for freebsd-questions@freebsd.org; Fri, 20 Jul 2001 11:35:17 -0400 Date: Fri, 20 Jul 2001 11:35:17 -0400 From: Fredric Aston Quansar Message-Id: <200107201535.LAA06776@grex.cyberspace.org> To: freebsd-questions@freebsd.org Subject: mfsroot 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 the line of subject may be incorrect relative this issue ive encountered, if so i appologize. during the installation of the 4.3 release, as i had issued 'committ', i (after format of disk concerned) received a message of the sort 'cannot mount /dev/acd0c on /dist, no file ...' something such as this. this problem i only encounter while using images from the 4.3 release iso image (sorry for the confusion, the first 'image' makes refrence to the kern and mfsroot files), and, implicitly noted, not the regular lot available which hadnt been presented as an iso 9660 image. its likely that this has allready been addressed, i couldnt see anything similar within 'news' section of your http display. if this is the case, again i appologize. if not, i wonder why this situation is as described... thanks for your time, and the wonderful resource. --cf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 8:41:53 2001 Delivered-To: freebsd-questions@freebsd.org Received: from grex.cyberspace.org (grex.cyberspace.org [216.93.104.34]) by hub.freebsd.org (Postfix) with SMTP id DB68237B403 for ; Fri, 20 Jul 2001 08:41:50 -0700 (PDT) (envelope-from caf33n@cyberspace.org) Received: (from caf33n@localhost) by grex.cyberspace.org (8.6.13/8.6.12) id LAA07444 for freebsd-questions@freebsd.org; Fri, 20 Jul 2001 11:42:16 -0400 Date: Fri, 20 Jul 2001 11:42:16 -0400 From: Fredric Aston Quansar Message-Id: <200107201542.LAA07444@grex.cyberspace.org> To: freebsd-questions@freebsd.org Subject: ammendment to previous 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 again. i do realize that the error message reported, which i relayed earlier, was indeed related with the inability of mount of cdrom acd0c, and meant to convey this so as to receive perhaps an answer more directly explained rather than some overly explained response related to this fact. i suppose i simply didnt want to seem as some automated luser spewing mysterious error messages hoping for a magic wand in the mail. rather, a referrence to an acutal reason why this problem excists. i simply use now other floppy images, so i dont require a tutorial, as well ive not really had much chance to examin things as far as i can with the installation programme used. at any rate sorry for the rambling, i just really hate 'consumer relations' resemblant situations. crap, im rambling again. thank you for your time. sorry for using the word 'resource'. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 8:48:47 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 E432637B403 for ; Fri, 20 Jul 2001 08:47:27 -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 CFC0BD3; Fri, 20 Jul 2001 07:47:16 -0800 (AKDT) Content-Type: text/plain; charset="iso-8859-1" From: Beech Rintoul To: "Patrick O'Reilly" , "FreeBSD Question List" Subject: Re: Make Install WONT! Date: Fri, 20 Jul 2001 07:47:16 -0800 X-Mailer: KMail [version 1.2] References: In-Reply-To: MIME-Version: 1.0 Message-Id: <01072007471600.55755@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 20 July 2001 02:38 am, Patrick O'Reilly wrote: > Hi, > > I've done config, make depend, make -> all went OK as far as I can see. > > When I try "make install" I get: > > ------------------------------------------------ > 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/zeppo. > ------------------------------------------------ > > I did the whole process fine this morning, but now that I try again I get > this !! > > How dumb am I being???? > > Regards, > Patrick O'Reilly. > ----------------- > A little knowledge is dangerous... > FEAR ME! Put the following in /etc/rc.conf and reboot: kern_securelevel_enable="YES" # kernel security level (see init(8)), kern_securelevel="-1" # range: -1..3 ; `-1' is the most insecure 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 Fri Jul 20 8:59:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe13.law11.hotmail.com [64.4.16.117]) by hub.freebsd.org (Postfix) with ESMTP id D625137B401 for ; Fri, 20 Jul 2001 08:59:22 -0700 (PDT) (envelope-from rxw44260@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 20 Jul 2001 08:59:22 -0700 X-Originating-IP: [207.90.208.144] From: "David Wen" To: "Ian Dowse" Cc: References: <200107200151.aa52814@salmon.maths.tcd.ie> Subject: Re: FSCK PROBLEM Date: Fri, 20 Jul 2001 11:01:47 -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 Message-ID: X-OriginalArrivalTime: 20 Jul 2001 15:59:22.0727 (UTC) FILETIME=[F14AD770:01C11134] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thank you Ian, It solved that problem. But it made up a /dev/ccd0c which I do think exist before, and file is mounted there. I can umount it, mount back /dev/da2s1e, but after reboot, it is still on /dev/ccd0. David ----- Original Message ----- From: "Ian Dowse" To: "David Wen" Cc: Sent: Thursday, July 19, 2001 7:51 PM Subject: Re: FSCK PROBLEM > In message , David Wen writes: > >One of my disk was dropped, I used fsck then was able to mounted it = > >back. But when machine was rebooted, it was not mounted. I found out = > >that no matter how many times I do the fsck, there is still a problem. = > >BAD SUPER BLOCK: VALUES IN SUPER BLOCK DISAGREE WITH THOSE IN FIRST = > >ALTERNATE > > My guess would be that the last superblock on the disk got corrupted; > the "FIRST ALTERNATE" that fsck mentions is in fact the superblock > copy nearest the end of the partition. > > You might be able to fix this with tunefs using the "-A" option, which > updates all superblocks. Try running > > tunefs -A /dev/da2s1e > > and then retry the fsck. > > Ian > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 9: 5:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hermes.niicommunications.com (hermes.niicommunications.com [207.207.35.34]) by hub.freebsd.org (Postfix) with ESMTP id F41C837B643 for ; Fri, 20 Jul 2001 09:05:55 -0700 (PDT) (envelope-from jason.hunt@niicommunications.com) Received: from niicommunications.com (lippisch [192.168.2.224]) by hermes.niicommunications.com (8.11.2/8.11.2) with ESMTP id f6KG5bd84589 for ; Fri, 20 Jul 2001 11:05:37 -0500 (CDT) (envelope-from jason.hunt@niicommunications.com) Message-ID: <3B5856D1.B6F8580F@niicommunications.com> Date: Fri, 20 Jul 2001 11:05:37 -0500 From: Jason Hunt X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: syslogd -a 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 greetings, I have several machines logging to a remote machine that is running syslogd with the -a option invoked. All machines that log to the remote machines have *.* @host in /etc/syslog.conf. The log server is running with -a hostname.domain.com and seems to be logging fine - I can generate messages as they would appear on the server itself. What I am interested in is the messages I receive from syslogd in debugging mode. I receive a lot of the follow errors: rejected in rule 0 due to name mismatch. rejected in rule 1 due to name mismatch. rejected in rule 2 due to name mismatch. accepted in rule 3. what is happening here? what is it saying mismatch then finally receives it on the fourth attempt? I have tried using syslogd -a IP/32:* as well and still receive the same messages. Any information on this topic would be appreciated. Thank you To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 9:29:49 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 3A6EF37B40A for ; Fri, 20 Jul 2001 09:29:43 -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 f6KGTgc27641 for ; Fri, 20 Jul 2001 12:29:42 -0400 (EDT) Received: (from leblanc@localhost) by acadia.ne.mediaone.net (8.9.3/8.9.3) id MAA18319; Fri, 20 Jul 2001 12:23:51 -0400 Date: Fri, 20 Jul 2001 12:23:51 -0400 From: Louis LeBlanc To: freebsd-questions@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: Keyboard reset question Message-ID: <20010720122351.B18262@acadia.ne.mediaone.net> Reply-To: freebsd-questions@FreeBSD.ORG Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <20010720072803.A17486@acadia.ne.mediaone.net> <20010720101542.A1833@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20010720101542.A1833@localhost> 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 07/20/01 10:15 AM, User & Ian Patrick Thomas sat at the `puter and typed: > check out man atkbd. It appears that by default, FreeBSD doesn't care > if there is a keyboard attached, so you should be o.k. The driver for one > will be loaded anyway. > > Ian > Hmm. So why does the keyboard come up dead if I boot the machine while the switch is on another system? I'll make sure I read that manpage in depth. I think I'll also check out the BIOS and see what gives there. Any other ideas are very welcome. Thanks Lou -- Louis LeBlanc leblanc@acadia.ne.mediaone.net Fully Funded Hobbyist, KeySlapper Extrordinaire :) http://acadia.ne.mediaone.net Ô¿Ô¬ If God had intended Man to Smoke, He would have set him on Fire. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 9:30:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from secfw2.sec.gov (mail.sec.gov [204.192.28.12]) by hub.freebsd.org (Postfix) with ESMTP id BA01D37B403 for ; Fri, 20 Jul 2001 09:30:20 -0700 (PDT) (envelope-from RothW@SEC.GOV) Received: by secfw2.sec.gov; id MAA31708; Fri, 20 Jul 2001 12:30:19 -0400 Received: from unknown(162.138.5.35) by secfw2.sec.gov via smap id xmaa31656; Fri, 20 Jul 01 12:30:01 -0400 Received: by HQ-SEC-MT1.sec.gov with Internet Mail Service (5.5.2650.21) id ; Fri, 20 Jul 2001 12:30:10 -0400 Message-ID: From: "Roth, William" To: "'freebsd-questions@freebsd.org'" Subject: KDE DCOPserver error from non-root user Date: Fri, 20 Jul 2001 12:30:15 -0400 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 I successfully configure X v4 and have successfully launched and tested KDE when launched as root. When I try to launch from a normal user account, however, the launch hangs at the KDE loading phase. Specifically the icon for interprocess communications shows itself to be the currently loading stage when the following error appears: Could not read network connection list: /home/bud/.DCOPserver_dick.oie_:0 Please check if dcopserver program is running. I click okay and X crashes, leaving a stream of error messaages that are not logged in /var/log/XFree86.0.log. Most of them are to the tune of: icetrans socket failed...failed to create listerner for local DCOPserver could not be started Socketcreatelistenerfailed() I checked and there is no .DCOPserver_dick.oie_:0 file in /home/bud, but there is one in root. The funny thing is that the root one does not exist really. What exists is a link, DCOPserver_dick.oie that links to DCOPserver_dick.oie_:0. Yet the latter file does not itself exist. So, I tried copying the link to /home/bud/ but that did not work either. Any suggestions would be most appreciated. Bud To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 9:46: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from asbestos.tsunamicreek.com (nat213.69.mpoweredpc.net [142.177.213.69]) by hub.freebsd.org (Postfix) with ESMTP id BF6D637B403 for ; Fri, 20 Jul 2001 09:46:00 -0700 (PDT) (envelope-from jeff@tsunamicreek.com) Received: from localhost (bignose@localhost) by asbestos.tsunamicreek.com (8.11.3/8.11.3) with ESMTP id f6KGkFm06343 for ; Fri, 20 Jul 2001 13:46:15 -0300 (ADT) (envelope-from jeff@tsunamicreek.com) X-Authentication-Warning: asbestos.tsunamicreek.com: bignose owned process doing -bs Date: Fri, 20 Jul 2001 13:46:13 -0300 (ADT) From: X-X-Sender: Reply-To: To: Subject: apache and natd are acting funny. Message-ID: <20010720134303.T311-100000@asbestos.wolf> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi All, I have the standard ADSL gateway setup and i'm doing port forwarding from 192.168.0.1 port 8080 - to - 192.168.0.2 port 80 Here's the issue/problem if i go to http://192.168.0.1:8080/~bignose the apache server on 192.168.0.1 responds if i go to http://192.168.0.1:8080/~bignose/ [notice the trailing slash] the 192.168.0.2 responds. [this is how i want it to work] does anyone have any light to shed on this ? thanks. jeff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 10: 5:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mozart.si.ualg.pt (mozart.si.ualg.pt [193.136.224.2]) by hub.freebsd.org (Postfix) with ESMTP id 684C137B406 for ; Fri, 20 Jul 2001 10:05:38 -0700 (PDT) (envelope-from cgomes@ualg.pt) Received: from G22-SI.ualg.pt ([10.10.180.198]) by mozart.si.ualg.pt (8.9.1/8.9.1) with ESMTP id SAA445385 for ; Fri, 20 Jul 2001 18:05:24 +0100 (WEST) Message-Id: <4.3.1.1.20010720180622.00af4478@mozart.si.ualg.pt> X-Sender: cgomes@mozart.si.ualg.pt (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 4.3.1 Date: Fri, 20 Jul 2001 18:08:48 +0100 To: freebsd-questions@FreeBSD.ORG From: Carlos Gomes Subject: I need some help 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 would like to know if the freebsd don't support the disk controler raid MYLEX DAC960 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 10: 8:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.forumone.com (snapper.forumone.com [207.197.141.11]) by hub.freebsd.org (Postfix) with ESMTP id 88DCF37B408 for ; Fri, 20 Jul 2001 10:08:32 -0700 (PDT) (envelope-from jryden@forumone.com) Received: from pluto.forumone.com (pluto.forumone.com [207.32.101.4]) by mail.forumone.com (Postfix) with ESMTP id DD5CC86C5; Fri, 20 Jul 2001 13:10:43 -0400 (EDT) X-MimeOLE: Produced By Microsoft Exchange V6.0.4712.0 content-class: urn:content-classes:message Subject: RE: I need some help MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----_=_NextPart_001_01C1113E.A29A6C02" Date: Fri, 20 Jul 2001 13:08:45 -0400 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: I need some help Thread-Index: AcERPkVVKGBB2ydESYKyLUKTNEDFVAAAEKzb From: "Joakim Ryden" To: "Carlos Gomes" , Sender: owner-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_001_01C1113E.A29A6C02 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable I assume it does... I'm running it on a machine with this controler. :-) --Jo -----Original Message----- From: Carlos Gomes Sent: Fri 7/20/2001 1:08 PM To: freebsd-questions@FreeBSD.ORG Cc:=09 Subject: I need some help I would like to know if the freebsd don't support the disk controler raid=20 MYLEX DAC960 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message ------_=_NextPart_001_01C1113E.A29A6C02 Content-Type: application/ms-tnef; name="winmail.dat" Content-Transfer-Encoding: base64 eJ8+Ii4RAQaQCAAEAAAAAAABAAEAAQeQBgAIAAAA5AQAAAAAAADoAAEIgAcAGAAAAElQTS5NaWNy b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAAAAAgACAAEEgAEAFgAAAFJFOiBJICBuZWVkIHNvbWUg aGVscACzBgEFgAMADgAAANEHBwAUAA0ACAAtAAUAOgEBIIADAA4AAADRBwcAFAANAAgALQAFADoB AQmAAQAhAAAAMkVFREFDQzU4MzlDRDE0MkFDM0FBQkI1OUYxNDQ2OTkAcAcBA5AGABwIAAA2AAAA AwA2AAAAAABAADkAAmyaoj4RwQEeAD0AAQAAAAUAAABSRTogAAAAAAIBRwABAAAAIwAAAGM9VVM7 YT0gO2w9UExVVE8tMDEwNzIwMTcwODQ1Wi0xNjkAAB4ASQABAAAAEgAAAEkgIG5lZWQgc29tZSBo ZWxwAAAAQABOAAAQ/aM+EcEBHgBaAAEAAAANAAAAQ2FybG9zIEdvbWVzAAAAAAIBWwABAAAAOQAA AAAAAACBKx+kvqMQGZ1uAN0BD1QCAAAAAENhcmxvcyBHb21lcwBTTVRQAGNnb21lc0B1YWxnLnB0 AAAAAAIBXAABAAAAFAAAAFNNVFA6Q0dPTUVTQFVBTEcuUFQAHgBdAAEAAAANAAAAQ2FybG9zIEdv bWVzAAAAAAIBXgABAAAAOQAAAAAAAACBKx+kvqMQGZ1uAN0BD1QCAAAAAENhcmxvcyBHb21lcwBT TVRQAGNnb21lc0B1YWxnLnB0AAAAAAIBXwABAAAAFAAAAFNNVFA6Q0dPTUVTQFVBTEcuUFQAHgBm AAEAAAAFAAAAU01UUAAAAAAeAGcAAQAAAA8AAABjZ29tZXNAdWFsZy5wdAAAHgBoAAEAAAAFAAAA U01UUAAAAAAeAGkAAQAAAA8AAABjZ29tZXNAdWFsZy5wdAAAHgBwAAEAAAASAAAASSAgbmVlZCBz b21lIGhlbHAAAAACAXEAAQAAABsAAAABwRE+RVUoYEHbJ0RJgrItQpM0QMVUAAAQrNsAHgB0AAEA AAAeAAAAZnJlZWJzZC1xdWVzdGlvbnNARnJlZUJTRC5PUkcAAAAeABoMAQAAAA0AAABKb2FraW0g UnlkZW4AAAAAHgAdDgEAAAASAAAASSAgbmVlZCBzb21lIGhlbHAAAAACAQkQAQAAABUCAAARAgAA jAMAAExaRnXr0BT5AwAKAHJjcGcxMjXiMgNDdGV4BUEBAwH3/wqAAqQD5AcTAoAP8wBQBFY/CFUH shElDlEDAQIAY2jhCsBzZXQyBgAGwxEl9jMERhO3MBIsETMI7wn3tjsYHw4wNREiDGBjAFAzCwkB ZDM2FlALpiBJlCBhBBB1B4AgaQVANGRvB5AuHfAc4CdtkCBydW4DAG5nHXLrAiAdACAAwWgLgB1g A/DYdGggIBAEACAFoAIwjQNgbASQHhA6LSkKosMKhAqALS1KbyF6It/rIccksU8FEGcLgAdABdBh B5BzYWdlJLMhekZ9A2E6DIISIArAF7AEIEd/A3AHkCF6BmACMCdUJxBpGCA3LwHQKiEwMSCAMTow OCBQTSF6HFRvJ1QDUAngYnNkRC1xClBzdGkCIHMGQCcQCeBCU0QuT2RSRyF6Q2MnVCh7ddxiagWQ KWUc8CAfwAmABCBzKDEgaGVscFUjnwoc8HcIYGwxYGwEaWsdYHRvIGtufm8H4AaQIDEdYCxlHaFu ZicFQB0wcHAXwTSjZH0EAGsgiB5gC3AxYCF6TQBZTEVYIERBQ545HDAyHzoPK8IgVQCA4zBABPJi ZToxcAnwMWDvAMADETQBAMBqBbAdsARg2y13BbBnIXof8yIegDvneSxfcyIdcAOgNLIG4GT+eR8Q NJQHgSXCOn9EHwqAAn1FsAAAAB4ANRABAAAAPAAAADxDMTVFM0Q0NjQwODE5OTQ0OUU1MTE4Qzcz M0VEN0ZDRDA2NjhFMkBwbHV0by5mb3J1bW9uZS5jb20+AB4ARxABAAAADwAAAG1lc3NhZ2UvcmZj ODIyAAALAPIQAQAAAB8A8xABAAAAOAAAAFIARQAlADMAQQAgAEkAIAAgAG4AZQBlAGQAIABzAG8A bQBlACAAaABlAGwAcAAuAEUATQBMAAAACwD2EAAAAABAAAcw8goGiD4RwQFAAAgwsjCfoj4RwQED AN4/5AQAAAMA8T8AAAAAHgD4PwEAAAANAAAASm9ha2ltIFJ5ZGVuAAAAAAIB+T8BAAAAZQAAAAAA AADcp0DIwEIQGrS5CAArL+GCAQAAAAAAAAAvTz1GT1JVTSBPTkUgQ09NTVVOSUNBVElPTlMvT1U9 QUxFWEFORFJJQSBPRkZJQ0UvQ049UkVDSVBJRU5UUy9DTj1KUllERU4AAAAAHgD6PwEAAAAVAAAA U3lzdGVtIEFkbWluaXN0cmF0b3IAAAAAAgH7PwEAAAAeAAAAAAAAANynQMjAQhAatLkIACsv4YIB AAAAAAAAAC4AAAADAP0/5AQAAAMAGUAAAAAAAwAaQAAAAAADAB1AAAAAAAMAHkAAAAAAHgAwQAEA AAAHAAAASlJZREVOAAAeADFAAQAAAAcAAABKUllERU4AAB4AMkABAAAADwAAAGNnb21lc0B1YWxn LnB0AAAeADNAAQAAAA8AAABjZ29tZXNAdWFsZy5wdAAAHgA4QAEAAAAHAAAASlJZREVOAAAeADlA AQAAAAIAAAAuAAAACwApAAAAAAALACMAAAAAAAMABhCJNzwqAwAHEFoBAAADABAQAAAAAAMAERAA AAAAHgAIEAEAAABlAAAASUFTU1VNRUlURE9FU0lNUlVOTklOR0lUT05BTUFDSElORVdJVEhUSElT Q09OVFJPTEVSOi0pLS1KTy0tLS0tT1JJR0lOQUxNRVNTQUdFLS0tLS1GUk9NOkNBUkxPU0dPTUVT UwAAAAACAX8AAQAAADwAAAA8QzE1RTNENDY0MDgxOTk0NDlFNTExOEM3MzNFRDdGQ0QwNjY4RTJA cGx1dG8uZm9ydW1vbmUuY29tPgCbzA== ------_=_NextPart_001_01C1113E.A29A6C02-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 10:10:16 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 EF8A137B406 for ; Fri, 20 Jul 2001 10:10:13 -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 4DD0016B32 for ; Fri, 20 Jul 2001 19:10:12 +0200 (CEST) Received: from IBM-HIRXKN66F0W.Go2France.com [195.115.185.184] by mail.Go2France.com with ESMTP (SMTPD32-6.06) id A80EA2700E6; Fri, 20 Jul 2001 19:19:10 +0200 Message-Id: <5.1.0.14.0.20010720191023.028534d0@mail.Go2France.com> X-Sender: LConrad@Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Fri, 20 Jul 2001 19:11:02 +0200 To: freebsd-questions@freebsd.org From: Len Conrad Subject: Re: I need some help In-Reply-To: <4.3.1.1.20010720180622.00af4478@mozart.si.ualg.pt> 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 would like to know if the freebsd don't support the disk controler raid >MYLEX DAC960 http://www.freebsd.org/releases/4.3R/notes.html 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 Fri Jul 20 10:10:39 2001 Delivered-To: freebsd-questions@freebsd.org Received: from central.ajboggs.com (central.ajboggs.com [209.69.173.4]) by hub.freebsd.org (Postfix) with ESMTP id 8954E37B406 for ; Fri, 20 Jul 2001 10:10:36 -0700 (PDT) (envelope-from russell@ajboggs.com) Received: from thecure.ajboggs.com (office.ajboggs.com [198.109.162.133]) by central.ajboggs.com (8.11.4/8.11.4) with ESMTP id f6KH7PG75374 for ; Fri, 20 Jul 2001 13:07:25 -0400 (EDT) Message-Id: <5.0.2.1.2.20010720131200.02183008@ajboggs.com> X-Sender: russell@ajboggs.com X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Fri, 20 Jul 2001 13:14:02 -0400 To: freebsd-questions@FreeBSD.ORG From: "Russell J. Lahti" Subject: Re: Keyboard reset question In-Reply-To: <20010720122351.B18262@acadia.ne.mediaone.net> References: <20010720101542.A1833@localhost> <20010720072803.A17486@acadia.ne.mediaone.net> <20010720101542.A1833@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 12:23 PM 7/20/2001 -0400, you wrote: >Hmm. So why does the keyboard come up dead if I boot the machine >while the switch is on another system? I'll make sure I read that >manpage in depth. > >I think I'll also check out the BIOS and see what gives there. > >Any other ideas are very welcome. In your kernel configuration, there is a line: device atkbd0 at atkbdc? irq 1 flags 0x1 Change it to this: device atkbd0 at atkbdc? irq 1 That fixed the problem for me. -Russell To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 10:16:17 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 53EE437B403 for ; Fri, 20 Jul 2001 10:16:14 -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 TAA06662; Fri, 20 Jul 2001 19:24:01 +0200 Message-ID: <3B5867DD.BF201562@i-clue.de> Date: Fri, 20 Jul 2001 19:18:21 +0200 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.78 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: Carlos Gomes Cc: freebsd-questions@FreeBSD.ORG Subject: Re: I need some help References: <4.3.1.1.20010720180622.00af4478@mozart.si.ualg.pt> 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 Carlos Gomes wrote: > > I would like to know if the freebsd don't support the disk controler raid > MYLEX DAC960 Quoting http://www.freebsd.org/releases/4.3R/notes.html : Mylex DAC960 and DAC1100 RAID controllers with 2.x, 3.x, 4.x and 5.x firmware: DAC960P DAC960PD DAC960PDU DAC960PL DAC960PJ DAC960PG AcceleRAID 150 AcceleRAID 250 eXtremeRAID 1100 Booting from these controllers is supported. EISA adapters are not supported. 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 Fri Jul 20 10:17:34 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 11CB837B408 for ; Fri, 20 Jul 2001 10:17:27 -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 f6KHHQ327229 for ; Fri, 20 Jul 2001 10:17:26 -0700 (PDT) Message-ID: <3B5868AD.740C1B9F@loudcloud.com> Date: Fri, 20 Jul 2001 10:21:50 -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: isatty hang 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 having trouble with a program hanging in "isatty" from within a strdup call. Does anyone know what/why this would be happening? I am using Freebsd 3.3 Release. -- 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 20 10:22:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from luke.cpl.net (luke.cpl.net [63.169.72.3]) by hub.freebsd.org (Postfix) with ESMTP id 70C0E37B432 for ; Fri, 20 Jul 2001 10:22:08 -0700 (PDT) (envelope-from shawn@luke.cpl.net) Received: (from shawn@localhost) by luke.cpl.net (8.11.3/8.11.3) id f6KHM7h88390 for questions@freebsd.org; Fri, 20 Jul 2001 10:22:07 -0700 (PDT) Date: Fri, 20 Jul 2001 10:22:07 -0700 From: Shawn Ramsey To: questions@freebsd.org Subject: currently running kernel? Message-ID: <20010720102207.C77810@cpl.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Is there anyway to tell which kernel that you booted from? I guess you coud use uname -a and use a different config file for each kernel, but is there an easier way? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 10:34:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from rhymer.cogsci.ed.ac.uk (rhymer.cogsci.ed.ac.uk [129.215.144.8]) by hub.freebsd.org (Postfix) with ESMTP id 04B0A37B401 for ; Fri, 20 Jul 2001 10:34:10 -0700 (PDT) (envelope-from richard@cogsci.ed.ac.uk) Received: (from richard@localhost) by rhymer.cogsci.ed.ac.uk (8.9.3/8.9.3) id SAA09157; Fri, 20 Jul 2001 18:34:08 +0100 (BST) Date: Fri, 20 Jul 2001 18:34:08 +0100 (BST) Message-Id: <200107201734.SAA09157@rhymer.cogsci.ed.ac.uk> From: Richard Tobin Subject: Re: UTF-8 To: Philipp Reichmuth , questions@FreeBSD.ORG In-Reply-To: Philipp Reichmuth's message of Fri, 20 Jul 2001 15:00:01 +0200 Organization: just say no Sender: owner-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 UTF-8 encoded filenames? I think so, but bear in mind that many standard programs will not behave usefully. For example, "ls" won't show the names properly, and the shell will treat each byte as a character when globbing. -- 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 20 10:34:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from romlx1.rom.on.ca (romlx1.rom.on.ca [192.75.204.6]) by hub.freebsd.org (Postfix) with ESMTP id DF8A437B401 for ; Fri, 20 Jul 2001 10:34:56 -0700 (PDT) (envelope-from gordonh@rom.on.ca) Received: from romfs7.rom.on.ca (romfs7.rom.on.ca [192.75.204.4]) by romlx1.rom.on.ca (8.9.3/8.9.3) with SMTP id NAA18762 for ; Fri, 20 Jul 2001 13:33:48 -0400 Received: from ROM-Message_Server by romfs7.rom.on.ca with Novell_GroupWise; Fri, 20 Jul 2001 13:33:42 -0400 Message-Id: X-Mailer: Novell GroupWise 5.5.4 Date: Fri, 20 Jul 2001 13:33:30 -0400 From: "Gord Howells" To: Subject: auth 690b6255 unsubscribe freebsd-questions gordonh@rom.on.ca 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 auth 690b6255 unsubscribe freebsd-questions gordonh@rom.on.ca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 10:49: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc25.worldnet.att.net (mtiwmhc25.worldnet.att.net [204.127.131.50]) by hub.freebsd.org (Postfix) with ESMTP id C6E4837B406 for ; Fri, 20 Jul 2001 10:48:58 -0700 (PDT) (envelope-from achornback@worldnet.att.net) Received: from tomcat ([12.93.208.95]) by mtiwmhc25.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with SMTP id <20010720174857.MQDC5127.mtiwmhc25.worldnet.att.net@tomcat> for ; Fri, 20 Jul 2001 17:48:57 +0000 From: "Andrew C. Hornback" To: Subject: RE: Keyboard reset question Date: Fri, 20 Jul 2001 13:41:33 -0400 Message-ID: <000201c11143$37584fa0$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: <20010720122351.B18262@acadia.ne.mediaone.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----- > On 07/20/01 10:15 AM, User & Ian Patrick Thomas sat at the `puter > and typed: > > check out man atkbd. It appears that by default, FreeBSD > doesn't care > > if there is a keyboard attached, so you should be o.k. The > driver for one > > will be loaded anyway. > > Hmm. So why does the keyboard come up dead if I boot the machine > while the switch is on another system? I'll make sure I read that > manpage in depth. > > I think I'll also check out the BIOS and see what gives there. It's my experience that this has to do with the fact that the system cannot find the keyboard at POST, so it boots without one and doesn't allow keyboard usage after the machine boots, as it figures that the machine doesn't have one. Try turning on the "Stop on all errors" switch in the BIOS, switch the keyboard switch to another machine, and reboot the affected system. It should halt once it detects that the keyboard is not there. This really isn't a FreeBSD issue, as far as I can tell. It's more of a "that's how the hardware was designed" issue... If you were using one of the more expensive "Smart" switches, this wouldn't happen as they emulate the keyboard BIOS responses. --- Andy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 10:54: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc25.worldnet.att.net (mtiwmhc25.worldnet.att.net [204.127.131.50]) by hub.freebsd.org (Postfix) with ESMTP id 3620137B405 for ; Fri, 20 Jul 2001 10:54:04 -0700 (PDT) (envelope-from achornback@worldnet.att.net) Received: from tomcat ([12.93.208.95]) by mtiwmhc25.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with SMTP id <20010720175403.MRNZ5127.mtiwmhc25.worldnet.att.net@tomcat>; Fri, 20 Jul 2001 17:54:03 +0000 From: "Andrew C. Hornback" To: "Carlos Gomes" , Subject: RE: I need some help Date: Fri, 20 Jul 2001 13:46:38 -0400 Message-ID: <000301c11143$ed778a80$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: <4.3.1.1.20010720180622.00af4478@mozart.si.ualg.pt> 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: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Carlos Gomes > Sent: Friday, July 20, 2001 1:09 PM > To: freebsd-questions@FreeBSD.ORG > Subject: I need some help > > I would like to know if the freebsd don't support the disk controler raid > MYLEX DAC960 If it's the EISA version, no. If it's the PCI version, yes. I'm not sure if the PCI version supports booting from a RAID array or not, as I've only worked with the EISA version under a different OS. The only Unix that I have had experience with that supports the EISA version of the DAC-960 is Solaris 7 (2.7). --- Andy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 11: 2:28 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 0585D37B405 for ; Fri, 20 Jul 2001 11:02:24 -0700 (PDT) (envelope-from dave@hawk-systems.com) Received: from WS1 (ws1.nexusinternetsolutions.net [204.50.158.15]) by hawk-systems.com (8.11.2) id f6KI2NW86358 for ; Fri, 20 Jul 2001 12:02:23 -0600 (MDT) From: "Dave VanAuken" To: Subject: Gigabyte GS-SR101 and GS-SR102 1U rackmount... Date: Fri, 20 Jul 2001 14:08:16 -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 Any experience using either of these in a FreeBSD 4.3 stable environment? have asked them for some answers on SCSI and ATA raid technology used for compatability purposes. Look forward to any first hand experience from a FreeBSD(possible?) usage and from a hardware construction(solid? looks shabby?). thanks Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 11: 7:32 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 8322E37B401 for ; Fri, 20 Jul 2001 11:07:26 -0700 (PDT) (envelope-from angelayu@ca.inter.net) Received: from ip67.toronto105.dialup.canada.psi.net ([154.20.99.67] helo=ca.inter.net) by smtp.ca.inter.net with esmtp (Exim 3.22 #1) id 15NegW-0005WL-00 for freebsd-questions@FreeBSD.ORG; Fri, 20 Jul 2001 14:07:32 -0400 Message-ID: <3B58738C.1A52112A@ca.inter.net> Date: Fri, 20 Jul 2001 14:08:12 -0400 From: angela X-Mailer: Mozilla 4.74 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: solaris & netscape 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 am wandering anyone have experience about Solaris + netscape? What is the different between it and Freebsd + apache? I mean it's stablility, security and speed From the netcraft, there are a lot of webserver running Apache? Why do they choose Netscape? Many thanks Regards To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 11:59:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from pogo.caustic.org (pogo.caustic.org [208.44.193.69]) by hub.freebsd.org (Postfix) with ESMTP id 40BA737B407 for ; Fri, 20 Jul 2001 11:59:14 -0700 (PDT) (envelope-from jan@caustic.org) Received: from localhost (jan@localhost) by pogo.caustic.org (8.11.0/ignatz) with ESMTP id f6KIx8W38604; Fri, 20 Jul 2001 11:59:08 -0700 (PDT) Date: Fri, 20 Jul 2001 11:59:08 -0700 (PDT) From: "f.johan.beisser" To: angela Cc: freebsd-questions@FreeBSD.ORG Subject: Re: solaris & netscape In-Reply-To: <3B58738C.1A52112A@ca.inter.net> Message-ID: X-Ignore: This statement isn't supposed to be read by you MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-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, 20 Jul 2001, angela wrote: > I am wandering anyone have experience about Solaris + netscape? > What is the different between it and Freebsd + apache? > I mean it's stablility, security and speed > >From the netcraft, there are a lot of webserver running Apache? > Why do they choose Netscape? the base reason is support. with solaris you have the support, and help of your Sun VAR, not to mention the Sun Techs. the same goes for the Netscape HTTPd. if something breaks, you have Netscape/iPlanet/AOL to help you get everything back in to a kosher state. performance wise, i'd put Apache on FreeBSD much higher than NS on Solaris. from a cost POV, you also have an advantage. it's all in the extended cost, though. will it cost you more to have to maintain FreeBSD machines and apache on your own, or be able to call up Sun or Netscape to assist you. in the long run, i see it all balancing out. -------/ f. johan beisser /--------------------------------------+ http://caustic.org/~jan jan@caustic.org "which then led me to realize leading my life by the motto 'i'm not as bad as jan' would still let me get away with A LOT" --- j. leah williams, University of Chicago, 19 Jan, 2001 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 12: 2: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f183.pav2.hotmail.com [64.4.37.183]) by hub.freebsd.org (Postfix) with ESMTP id 868C437B407 for ; Fri, 20 Jul 2001 12:02:07 -0700 (PDT) (envelope-from rezaj_@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 20 Jul 2001 12:02:07 -0700 Received: from 203.173.250.145 by pv2fd.pav2.hotmail.msn.com with HTTP; Fri, 20 Jul 2001 19:02:07 GMT X-Originating-IP: [203.173.250.145] From: "reza jamshid" To: freebsd-questions@freebsd.org Subject: ssh fatal: Timeout before authentication for 192.168.1.2 Date: Sat, 21 Jul 2001 04:32:07 +0930 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 20 Jul 2001 19:02:07.0467 (UTC) FILETIME=[78C963B0:01C1114E] Sender: owner-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, Recently when ive tried to ssh to my FreeBSD gateway box from my win2k box, i get this error pop up on the gateway: sshd[1847]: fatal: Timeout before authentication for 192.168.1.2 ive tried a number of different ssh clients but neither of them can make the connection. Putty just seems to hang after it asks me for the password. Any ideas? Thanks _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 12: 5: 8 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 6AFF437B407 for ; Fri, 20 Jul 2001 12:05:04 -0700 (PDT) (envelope-from unixverse@mac.com) Received: from [63.197.41.50] by mta5.snfc21.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0GGS00KM6D0F01@mta5.snfc21.pbi.net> for freebsd-questions@freebsd.org; Fri, 20 Jul 2001 12:05:03 -0700 (PDT) Date: Fri, 20 Jul 2001 12:05:05 -0700 From: Jim Krenz Subject: Telnet settings (Mac to FreeBSD) In-reply-to: <000301c11143$ed778a80$0e00000a@tomcat> To: freebsd-questions@FreeBSD.ORG Message-id: MIME-version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT User-Agent: Microsoft-Entourage/9.0.1.3108 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all, I am trying to figure out which settings are best in my Telnet client. I am using it to connect with a FreeBSD system (4.3) that I've just set up. I am trying to telnet in from my Mac OS 9.1 system. Since I am new to this stuff, I am asking advice as to which settings to use for the best results. Here are the options I can choose from: Emulation: VT100; VT220; ANSI; Linux *** Yes/no options: Xterm sequences Use VT wrap mode Eight bit connections Save Cleared lines Use jump scolling (faster) VT220 7-bit controls *** Port (currently set to 23, and that seems to work thus far). *** Protocol: Telnet; rlogin; rsh; rexec; ssh2; raw tcp. Which one is best? I suspect that it is ssh2, since that is the secure one, but I am asking to be sure that one of the others isn't better. Thanks for any advice, and being patient with this newbie FreeBSD user. Jim Jim Krenz Unixverse@mac.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 20 12:10:21 2001 Delivered-To: freebsd-questions@freebsd.org Received: from gopostal.digi.com (gopostal.digi.com [204.221.110.15]) by hub.freebsd.org (Postfix) with ESMTP id 6131637B407 for ; Fri, 20 Jul 2001 12:10:17 -0700 (PDT) (envelope-from chaegle@mediaone.net) Received: from minx.dgii.com (minx.digi.com [204.221.110.36]) by gopostal.digi.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id PJLHCHB7; Fri, 20 Jul 2001 14:10:12 -0500 Received: from hlc02 (hlc02.digi.com) by minx.dgii.com (5.x/SMI-SVR4) id AA08023; Sun, 8 Aug 1999 17:37:01 -0500 Message-Id: <000c01c1114f$d525fe10$420fbf8f@hlc02> From: "Cameron Haegle" To: Subject: Sending e-mail Date: Fri, 20 Jul 2001 14:11:51 -0500 Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0009_01C11125.EBFCA5F0" 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_0009_01C11125.EBFCA5F0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I thought that I had this issue resolved, but, alas, I was wrong. What I want to do is be able to send e-mail from the console.=20 The basic purpose for this is to be able have a script that compares the = currently DHCP assigned IP address of an interface. If the address is = different from the previously configured address, an e-mail message will = get sent to me at work with the new address. Because this system is at home, connected to my cable modem, I do not = have a permanent IP, nor do I have a registered domain name for my = system. Whenever I try to send an e-mail using snedmail I eventually get a = message stating the following: (reason: 501 5.1.8 = root@myhostname.myisps.name .. Sender domain must exist). Is there some configuration that I must do to sendmail to overcome this, = or is there another console-based e-mail client that I can use for this = purpose? Regards, Cameron ------=_NextPart_000_0009_01C11125.EBFCA5F0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I thought that I had this issue = resolved, =20 but, alas, I was wrong.
 
What I want to do is be able to send = e-mail from=20 the console.
 
The basic purpose for this is to be = able have a=20 script that compares the currently DHCP assigned IP address of an = interface. If=20 the address is different from the previously configured address, an = e-mail=20 message will get sent to me at work with the new address.
 
Because this system is at home, = connected to my=20 cable modem, I do not have a permanent IP, nor do I have a registered = domain=20 name for my system.
 
Whenever I try to send an e-mail using = snedmail I=20 eventually get a message stating the following: (reason: 501 5.1.8 root@myhostname.myisps.name=20 .. Sender domain must exist).
 
Is there some configuration that I must = do to=20 sendmail to overcome this, or is there another console-based e-mail = client that=20 I can use for this purpose?
 
Regards,
Cameron
------=_NextPart_000_0009_01C11125.EBFCA5F0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 12:17:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from grumpy.dyndns.org (user-24-214-76-217.knology.net [24.214.76.217]) by hub.freebsd.org (Postfix) with ESMTP id BD8D537B401 for ; Fri, 20 Jul 2001 12:17:06 -0700 (PDT) (envelope-from dkelly@grumpy.dyndns.org) Received: (from dkelly@localhost) by grumpy.dyndns.org (8.11.3/8.11.4) id f6KJH4B76050; Fri, 20 Jul 2001 14:17:04 -0500 (CDT) (envelope-from dkelly) Date: Fri, 20 Jul 2001 14:17:04 -0500 From: David Kelly To: Jim Krenz Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Telnet settings (Mac to FreeBSD) Message-ID: <20010720141704.A76032@grumpy.dyndns.org> References: <000301c11143$ed778a80$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: ; from unixverse@mac.com on Fri, Jul 20, 2001 at 12:05:05PM -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 Fri, Jul 20, 2001 at 12:05:05PM -0700, Jim Krenz wrote: > Hello all, > > I am trying to figure out which settings are best in my Telnet client. I am > using it to connect with a FreeBSD system (4.3) that I've just set up. I am > trying to telnet in from my Mac OS 9.1 system. Since I am new to this stuff, > I am asking advice as to which settings to use for the best results. > > Here are the options I can choose from: > > Emulation: VT100; VT220; ANSI; Linux [...] I use "Nifty Telnet 1.1 SSR r3" with "Delete Key Sends Backspace" unckecked, and "Backspace Wraps Bacwards" checked. VT102. -- David Kelly N4HHE, dkelly@hiwaay.net ===================================================================== The human mind ordinarily operates at only ten percent of its capacity -- the rest is overhead for the operating system. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 12:19:13 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 6CFD837B401 for ; Fri, 20 Jul 2001 12:19:10 -0700 (PDT) (envelope-from root@pukruppa.de) Received: from [195.20.224.220] (helo=mrvdom04.kundenserver.de) by moutvdom01.kundenserver.de with esmtp (Exim 2.12 #2) id 15Nfnk-0008I0-00; Fri, 20 Jul 2001 21:19:04 +0200 Received: from pd901727b.dip.t-dialin.net ([217.1.114.123]) by mrvdom04.kundenserver.de with esmtp (Exim 2.12 #2) id 15Nfnj-0007nt-00; Fri, 20 Jul 2001 21:19:03 +0200 Date: Fri, 20 Jul 2001 21:19:49 +0000 (GMT) From: "P. U. (Uli) Kruppa" X-X-Sender: To: Cameron Haegle Cc: Subject: Re: Sending e-mail In-Reply-To: <000c01c1114f$d525fe10$420fbf8f@hlc02> Message-ID: <20010720211506.I768-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 Fri, 20 Jul 2001, Cameron Haegle wrote: > What I want to do is be able to send e-mail from the console. This can easily be done. Type # mail user@provider.com and you will start a very simple mail-client. A more elaborated client would be pine (or mutt). Uli. > > The basic purpose for this is to be able have a script that compares the currently DHCP assigned IP address of an interface. If the address is different from the previously configured address, an e-mail message will get sent to me at work with the new address. > > Because this system is at home, connected to my cable modem, I do not have a permanent IP, nor do I have a registered domain name for my system. > > Whenever I try to send an e-mail using snedmail I eventually get a message stating the following: (reason: 501 5.1.8 root@myhostname.myisps.name .. Sender domain must exist). > > Is there some configuration that I must do to sendmail to overcome this, or is there another console-based e-mail client that I can use for this purpose? > > Regards, > Cameron > *--------------------------------------* | 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 Fri Jul 20 12:19:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from secfw2.sec.gov (mail.sec.gov [204.192.28.12]) by hub.freebsd.org (Postfix) with ESMTP id C4A5137B401 for ; Fri, 20 Jul 2001 12:19:39 -0700 (PDT) (envelope-from RothW@SEC.GOV) Received: by secfw2.sec.gov; id PAA19912; Fri, 20 Jul 2001 15:19:38 -0400 Received: from unknown(162.138.5.35) by secfw2.sec.gov via smap id xma019824; Fri, 20 Jul 01 15:19:14 -0400 Received: by HQ-SEC-MT1.sec.gov with Internet Mail Service (5.5.2650.21) id ; Fri, 20 Jul 2001 15:19:31 -0400 Message-ID: From: "Roth, William" To: "'freebsd-questions@freebsd.org'" Subject: Help-->KDE DCOPserver error from non-root user Date: Fri, 20 Jul 2001 15:19:28 -0400 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 Could anyone give me any insights on this or point me towards the proper forum for seeking assistance. I assume that because KDE runs okay from root, this is a file permissions problem somewhere, but don't know where to look. FYI, I am, of course, running FreeBSD. Here is my problem: I sucessfully configure X v4 and have successfully launched and tested KDE when launched as root. When I try to launch from a normal user account, however, the launch hangs at the KDE loading phase. Specifically the icon for interprocess communications shows itself to be the currently loading stage when the following error appears: Could not read network connection list: /home/bud/.DCOPserver_dick.oie_:0 Please check if dcopserver program is running. I click okay and X crashes, leaving a stream of error messaages that are not logged in /var/log/XFree86.0.log. Most of them are to the tune of: icetrans socket failed...failed to create listerner for local DCOPserver could not be started Socketcreatelistenerfailed() I checked and there is no .DCOPserver_dick.oie_:0 file in /home/bud, but there is one in root. The funny thing is that the root one does not exist really. What exists is a link, DCOPserver_dick.oie that links to DCOPserver_dick.oie_:0. Yet the latter file does not itself exist. So, I tried copying the link to /home/bud/ but that did not work either. Any suggestions would be most appreciated. Bud 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 20 12:42:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from vallesnet.org (vallesnet.org [194.224.210.5]) by hub.freebsd.org (Postfix) with ESMTP id B8DC537B401 for ; Fri, 20 Jul 2001 12:42:04 -0700 (PDT) (envelope-from undergra@vallesnet.org) Received: from daemon (79-BARC-X76.libre.retevision.es [62.82.26.79]) by vallesnet.org (8.10.2/8.10.2) with SMTP id f6KJg1k23712 for ; Fri, 20 Jul 2001 21:42:02 +0200 Message-ID: <000101c11154$87028960$0164a8c0@daemon> From: "undergra" To: Subject: kernel compilation error Date: Fri, 20 Jul 2001 21:45:25 +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 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, i upgrated to 4.3-STABLE but the kernel compilation (GENERIC) fails: # cd /usr/src # make buildkernel KERNCONF=GENERIC [....] cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -W missing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -an si -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/../include -I/usr/src/sy s/co ntrib/ipfilter -D_KERNEL -include pt_global.h -elf -mpreferred-stack-boundary =2 /usr/src/sys/pci/if_dc.c /usr/src/sys/pci/if_dc.c: In function `dc_start': /usr/src/sys/pci/if_dc.c:2853: syntax error before `static' /usr/src/sys/pci/if_dc.c:2856: `xsc' undeclared (first use in this function) /usr/src/sys/pci/if_dc.c:2856: (Each undeclared identifier is reported only once /usr/src/sys/pci/if_dc.c:2856: for each function it appears in.) /usr/src/sys/pci/if_dc.c:3019: syntax error before `static' /usr/src/sys/pci/if_dc.c:3037: warning: `return' with a value, in function retur ning void /usr/src/sys/pci/if_dc.c:3043: syntax error before `static' /usr/src/sys/pci/if_dc.c:3057: `ifmr' undeclared (first use in this function) /usr/src/sys/pci/if_dc.c:3068: syntax error before `static' /usr/src/sys/pci/if_dc.c:3074: `data' undeclared (first use in this function) /usr/src/sys/pci/if_dc.c:3080: `command' undeclared (first use in this function) /usr/src/sys/pci/if_dc.c:3084: warning: unreachable code at beginning of switch statement /usr/src/sys/pci/if_dc.c:3128: warning: `return' with a value, in function retur ning void /usr/src/sys/pci/if_dc.c:3131: syntax error before `static' /usr/src/sys/pci/if_dc.c:3155: syntax error before `static' /usr/src/sys/pci/if_dc.c:3211: syntax error before `static' /usr/src/sys/pci/if_dc.c:3216: `dev' undeclared (first use in this function) /usr/src/sys/pci/if_dc.c:3222: syntax error at end of input /usr/src/sys/pci/if_dc.c:202: warning: `dc_ioctl' used but never defined /usr/src/sys/pci/if_dc.c:203: warning: `dc_init' used but never defined /usr/src/sys/pci/if_dc.c:204: warning: `dc_stop' used but never defined /usr/src/sys/pci/if_dc.c:205: warning: `dc_watchdog' used but never defined /usr/src/sys/pci/if_dc.c:206: warning: `dc_shutdown' used but never defined /usr/src/sys/pci/if_dc.c:207: warning: `dc_ifmedia_upd' used but never defined /usr/src/sys/pci/if_dc.c:208: warning: `dc_ifmedia_sts' used but never defined *** Error code 1 Stop in /usr/obj/usr/src/sys/GENERIC. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. anyone help me please? thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 13:12:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f253.law10.hotmail.com [64.4.14.128]) by hub.freebsd.org (Postfix) with ESMTP id 19C6037B405 for ; Fri, 20 Jul 2001 13:12:27 -0700 (PDT) (envelope-from ex279@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 20 Jul 2001 13:12:26 -0700 Received: from 205.228.172.82 by lw10fd.law10.hotmail.msn.com with HTTP; Fri, 20 Jul 2001 20:12:26 GMT X-Originating-IP: [205.228.172.82] From: "Todd Reed" To: freebsd-questions@freebsd.org Subject: Startup Scripts version 2 Date: Fri, 20 Jul 2001 15:12:26 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 20 Jul 2001 20:12:26.0858 (UTC) FILETIME=[4BBD5CA0:01C11158] Sender: owner-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 created a /usr/local/rc.d called startup.sh. When I restart my machine, it doesn't seem to execute. Below is the code in the sh file. What am I doing wrong? Do I have to edit the rc.conf? #!/bin/sh # /sbin/ldconfig -m /usr/local/lib/mysql if [ -x /mnt/vdrv/dbms/bin/safe_mysqld ] then /mnt/vdrv/dbms/bin/safe_mysqld > /dev/null & && echo -n ` mysql` fi _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 13:19:36 2001 Delivered-To: freebsd-questions@freebsd.org Received: from voyager.galileo.edu (samsara.galileo.edu [216.230.140.134]) by hub.freebsd.org (Postfix) with SMTP id CB5AD37B405 for ; Fri, 20 Jul 2001 13:19:31 -0700 (PDT) (envelope-from obonilla@galileo.edu) Received: (qmail 9146 invoked by uid 1001); 20 Jul 2001 20:19:57 -0000 Date: Fri, 20 Jul 2001 14:19:57 -0600 From: Oscar Bonilla To: freebsd-questions@freebsd.org Subject: PF_LOCAL in getaddrinfo Message-ID: <20010720141957.A9133@galileo.edu> 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 X-Mailer: Mutt 1.2i (2000-05-09) Sender: owner-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 trying to compile OpenLDAP 2 with support for ldapi:/// which uses the PF_LOCAL family. However, I've discovered that the PF_LOCAL entry in getaddrinfo is ifdef'd out. This is the relevant code for /usr/src/lib/libc/net/getaddrinfo.c #if 0 { PF_LOCAL, 0, ANY, ANY, NULL, 0x01 }, #endif This causes a getaddrinfo call made by openldap with hints.ai_family set to AF_LOCAL to fail with an "ai_family not supported" error message. Is this an error in the way OpenLDAP uses getaddrinfo or is there a reason for not supporting AF_LOCAL in calls to getaddrinfo? Thanks, -Oscar -- pgp public key: finger obonilla@galileo.edu pgp fingerprint: 9735 2F52 D499 17E2 D03B 5960 241D 09EA 349F 923E To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 13:20:19 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 BF65437B408 for ; Fri, 20 Jul 2001 13:20:17 -0700 (PDT) (envelope-from unixverse@mac.com) Received: from [63.197.41.50] by mta5.snfc21.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0GGS004Q0GHS87@mta5.snfc21.pbi.net> for freebsd-questions@freebsd.org; Fri, 20 Jul 2001 13:20:17 -0700 (PDT) Date: Fri, 20 Jul 2001 13:20:20 -0700 From: Jim Krenz Subject: Program recommendations To: FreeBSD QUESTIONS Message-id: MIME-version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT User-Agent: Microsoft-Entourage/9.0.1.3108 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all, I have just installed FreeBSD 4.3, and am now attempting to figure out which programs to use for various tasks. I am completely new to Unix-like systems and the choices of options are plentiful (and somewhat confusing to my newbie mind). In particular, I would like opinions on the following three: Shell Text editor E-mail client I realize this is a slightly loaded question, as I suspect that everyone has their favorite program. But I am asking this because I am overwhelmed at the moment, and need some help to get started. My main concern is this: I don't want to spend a ton of time learning one program, and then six weeks later, find out that there is a better program that was already available. I don't care if a program is harder to initially learn--I just want the one that will serve me the best for the long term. Thanks for any advice! Jim Jim Krenz unixverse@mac.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 20 13:21: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from voyager.galileo.edu (samsara.galileo.edu [216.230.140.134]) by hub.freebsd.org (Postfix) with SMTP id 279E237B401 for ; Fri, 20 Jul 2001 13:21:01 -0700 (PDT) (envelope-from obonilla@galileo.edu) Received: (qmail 9168 invoked by uid 1001); 20 Jul 2001 20:21:31 -0000 Date: Fri, 20 Jul 2001 14:21:31 -0600 From: Oscar Bonilla To: Todd Reed Cc: freebsd-questions@freebsd.org Subject: Re: Startup Scripts version 2 Message-ID: <20010720142131.A9155@galileo.edu> Mail-Followup-To: Todd Reed , freebsd-questions@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from ex279@hotmail.com on Fri, Jul 20, 2001 at 03:12:26PM -0500 X-Mailer: Mutt 1.2i (2000-05-09) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I think you should have a directory called /usr/local/etc/rc.d and put your startup.sh script in this directory. regards, -oscar On Fri, Jul 20, 2001 at 03:12:26PM -0500, Todd Reed wrote: > I created a /usr/local/rc.d called startup.sh. When I restart my machine, > it doesn't seem to execute. Below is the code in the sh file. What am I > doing wrong? Do I have to edit the rc.conf? > > > #!/bin/sh > # > > /sbin/ldconfig -m /usr/local/lib/mysql > > if [ -x /mnt/vdrv/dbms/bin/safe_mysqld ] > then > /mnt/vdrv/dbms/bin/safe_mysqld > /dev/null & && echo -n ` mysql` > fi > > _________________________________________________________________ > Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- pgp public key: finger obonilla@galileo.edu pgp fingerprint: 9735 2F52 D499 17E2 D03B 5960 241D 09EA 349F 923E To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 13:22:58 2001 Delivered-To: freebsd-questions@freebsd.org Received: from asbestos.wolf (nat213.69.mpoweredpc.net [142.177.213.69]) by hub.freebsd.org (Postfix) with ESMTP id 5BF1537B401 for ; Fri, 20 Jul 2001 13:22:55 -0700 (PDT) (envelope-from jeff@tsunamicreek.com) Received: from localhost (bignose@localhost) by asbestos.wolf (8.11.3/8.11.3) with ESMTP id f6KKMrH00495; Fri, 20 Jul 2001 17:22:53 -0300 (ADT) (envelope-from jeff@tsunamicreek.com) X-Authentication-Warning: asbestos.tsunamicreek.com: bignose owned process doing -bs Date: Fri, 20 Jul 2001 17:22:52 -0300 (ADT) From: X-X-Sender: Reply-To: To: Jim Krenz Cc: FreeBSD QUESTIONS Subject: Re: Program recommendations In-Reply-To: Message-ID: <20010720172206.D409-100000@asbestos.wolf> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Shell bash or tsch shell, matter of opinion. > Text editor vi or emacs, matter of opinion. > E-mail client pine or mutt, matter opinion. in fact, much of UNIX is exactly that, matter of opinion. jeff > > I realize this is a slightly loaded question, as I suspect that everyone has > their favorite program. But I am asking this because I am overwhelmed at the > moment, and need some help to get started. > > My main concern is this: I don't want to spend a ton of time learning one > program, and then six weeks later, find out that there is a better program > that was already available. I don't care if a program is harder to initially > learn--I just want the one that will serve me the best for the long term. > > Thanks for any advice! > > Jim > Jim Krenz > unixverse@mac.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 20 13:24:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f84.law10.hotmail.com [64.4.15.84]) by hub.freebsd.org (Postfix) with ESMTP id DA88E37B403 for ; Fri, 20 Jul 2001 13:24:10 -0700 (PDT) (envelope-from ex279@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 20 Jul 2001 13:24:10 -0700 Received: from 205.228.172.82 by lw10fd.law10.hotmail.msn.com with HTTP; Fri, 20 Jul 2001 20:24:10 GMT X-Originating-IP: [205.228.172.82] From: "Todd Reed" To: obonilla@galileo.edu Cc: freebsd-questions@freebsd.org Subject: Re: Startup Scripts version 2 Date: Fri, 20 Jul 2001 15:24:10 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 20 Jul 2001 20:24:10.0821 (UTC) FILETIME=[EF559750:01C11159] Sender: owner-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 appoligize, that is an error on my part. It is in the /usr/local/etc/rc.d directory. >From: Oscar Bonilla >To: Todd Reed >CC: freebsd-questions@freebsd.org >Subject: Re: Startup Scripts version 2 >Date: Fri, 20 Jul 2001 14:21:31 -0600 > >I think you should have a directory called /usr/local/etc/rc.d and put >your startup.sh script in this directory. > >regards, > >-oscar > >On Fri, Jul 20, 2001 at 03:12:26PM -0500, Todd Reed wrote: > > I created a /usr/local/rc.d called startup.sh. When I restart my >machine, > > it doesn't seem to execute. Below is the code in the sh file. What am >I > > doing wrong? Do I have to edit the rc.conf? > > > > > > #!/bin/sh > > # > > > > /sbin/ldconfig -m /usr/local/lib/mysql > > > > if [ -x /mnt/vdrv/dbms/bin/safe_mysqld ] > > then > > /mnt/vdrv/dbms/bin/safe_mysqld > /dev/null & && echo -n ` mysql` > > fi > > > > _________________________________________________________________ > > Get your FREE download of MSN Explorer at >http://explorer.msn.com/intl.asp > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > >-- >pgp public key: finger obonilla@galileo.edu >pgp fingerprint: 9735 2F52 D499 17E2 D03B 5960 241D 09EA 349F 923E _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 13:28: 6 2001 Delivered-To: freebsd-questions@freebsd.org Received: from voyager.galileo.edu (samsara.galileo.edu [216.230.140.134]) by hub.freebsd.org (Postfix) with SMTP id A31AA37B401 for ; Fri, 20 Jul 2001 13:28:00 -0700 (PDT) (envelope-from obonilla@galileo.edu) Received: (qmail 9346 invoked by uid 1001); 20 Jul 2001 20:28:31 -0000 Date: Fri, 20 Jul 2001 14:28:31 -0600 From: Oscar Bonilla To: Jim Krenz Cc: FreeBSD QUESTIONS Subject: Re: Program recommendations Message-ID: <20010720142830.A9330@galileo.edu> Mail-Followup-To: Jim Krenz , FreeBSD QUESTIONS 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 unixverse@mac.com on Fri, Jul 20, 2001 at 01:20:20PM -0700 X-Mailer: Mutt 1.2i (2000-05-09) Sender: owner-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 what I use: Shell: tcsh Text Editor: xemacs for serious writing and vi for editing config scripts Email client: mutt In tcsh you'll find very convenient to put these lines in your .tcshrc set prompt="%B%m%b %~ %# " set autolist=ambiguous bindkey -k up history-search-backward bindkey -k down history-search-forward the first line gives you a prompt like machine /dir > the second allows you to use double tab for the autocompletion feature (like bash). the third and fourth lines allow you to recall history searching by the first letter, for instance, if you type l and press the up key it will let you select from the history all commands that start with the letter l. I like xemacs because it looks better on X and because it has a package manager that lets you upgrade really easy. it has all the features that emacs has. it's big though and you'll have to learn a lot. I use vi because it's what all systems have and it's sort of lightweight. I think Mutt is probably the best email client (it's not a graphical email client). regards, -oscar On Fri, Jul 20, 2001 at 01:20:20PM -0700, Jim Krenz wrote: > Hello all, > > I have just installed FreeBSD 4.3, and am now attempting to figure out which > programs to use for various tasks. I am completely new to Unix-like systems > and the choices of options are plentiful (and somewhat confusing to my > newbie mind). In particular, I would like opinions on the following three: > > Shell > Text editor > E-mail client > > I realize this is a slightly loaded question, as I suspect that everyone has > their favorite program. But I am asking this because I am overwhelmed at the > moment, and need some help to get started. > > My main concern is this: I don't want to spend a ton of time learning one > program, and then six weeks later, find out that there is a better program > that was already available. I don't care if a program is harder to initially > learn--I just want the one that will serve me the best for the long term. > > Thanks for any advice! > > Jim > Jim Krenz > unixverse@mac.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- pgp public key: finger obonilla@galileo.edu pgp fingerprint: 9735 2F52 D499 17E2 D03B 5960 241D 09EA 349F 923E To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 13:33:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from voyager.galileo.edu (samsara.galileo.edu [216.230.140.134]) by hub.freebsd.org (Postfix) with SMTP id 3EEDB37B403 for ; Fri, 20 Jul 2001 13:33:13 -0700 (PDT) (envelope-from obonilla@galileo.edu) Received: (qmail 9496 invoked by uid 1001); 20 Jul 2001 20:33:42 -0000 Date: Fri, 20 Jul 2001 14:33:42 -0600 From: Oscar Bonilla To: Todd Reed Cc: obonilla@galileo.edu, freebsd-questions@freebsd.org Subject: Re: Startup Scripts version 2 Message-ID: <20010720143342.A9483@galileo.edu> Mail-Followup-To: Todd Reed , freebsd-questions@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from ex279@hotmail.com on Fri, Jul 20, 2001 at 03:24:10PM -0500 X-Mailer: Mutt 1.2i (2000-05-09) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG do you have a line local_startup="/usr/local/etc/rc.d /usr/X11R6/etc/rc.d" # startup script dirs. in either your /etc/default/rc.conf or /etc/rc.conf? the former is read before the later, so if you have anything else in the later whatever you have in the former will be overriden. regards, -oscar On Fri, Jul 20, 2001 at 03:24:10PM -0500, Todd Reed wrote: > I appoligize, that is an error on my part. It is in the /usr/local/etc/rc.d > directory. > > > >From: Oscar Bonilla > >To: Todd Reed > >CC: freebsd-questions@freebsd.org > >Subject: Re: Startup Scripts version 2 > >Date: Fri, 20 Jul 2001 14:21:31 -0600 > > > >I think you should have a directory called /usr/local/etc/rc.d and put > >your startup.sh script in this directory. > > > >regards, > > > >-oscar > > > >On Fri, Jul 20, 2001 at 03:12:26PM -0500, Todd Reed wrote: > > > I created a /usr/local/rc.d called startup.sh. When I restart my > >machine, > > > it doesn't seem to execute. Below is the code in the sh file. What am > >I > > > doing wrong? Do I have to edit the rc.conf? > > > > > > > > > #!/bin/sh > > > # > > > > > > /sbin/ldconfig -m /usr/local/lib/mysql > > > > > > if [ -x /mnt/vdrv/dbms/bin/safe_mysqld ] > > > then > > > /mnt/vdrv/dbms/bin/safe_mysqld > /dev/null & && echo -n ` mysql` > > > fi > > > > > > _________________________________________________________________ > > > Get your FREE download of MSN Explorer at > >http://explorer.msn.com/intl.asp > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > >-- > >pgp public key: finger obonilla@galileo.edu > >pgp fingerprint: 9735 2F52 D499 17E2 D03B 5960 241D 09EA 349F 923E > > > _________________________________________________________________ > Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp -- pgp public key: finger obonilla@galileo.edu pgp fingerprint: 9735 2F52 D499 17E2 D03B 5960 241D 09EA 349F 923E To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 13:55:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from motgate.mot.com (motgate.mot.com [129.188.136.100]) by hub.freebsd.org (Postfix) with ESMTP id C7DE037B403 for ; Fri, 20 Jul 2001 13:55:12 -0700 (PDT) (envelope-from venkatesh.pandurangi@motorola.com) Received: [from pobox.mot.com (pobox.mot.com [129.188.137.100]) by motgate.mot.com (motgate 2.1) with ESMTP id NAA26279 for ; Fri, 20 Jul 2001 13:55:12 -0700 (MST)] Received: [from il75exm04.cig.mot.com ([136.182.110.113]) by pobox.mot.com (MOT-pobox 2.0) with ESMTP id NAA13442 for ; Fri, 20 Jul 2001 13:55:11 -0700 (MST)] Received: by IL75EXM04 with Internet Mail Service (5.5.2653.19) id ; Fri, 20 Jul 2001 15:55:10 -0500 Message-ID: <796456A0F96AD511A0AC009027B0F7412D0768@IL27EXM08.cig.mot.com> From: Pandurangi Venkatesh-AVP028 To: "'The Psychotic Viper'" , Pandurangi Venkatesh-AVP028 Cc: "'freebsd-questions@FreeBSD.ORG'" Subject: RE: Question on FTP Date: Fri, 20 Jul 2001 15:54:40 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, Thanks a lot, it worked for me. Regards Venki -----Original Message----- From: The Psychotic Viper [mailto:psyv@root.org.za] Sent: Thursday, July 19, 2001 11:32 PM To: Pandurangi Venkatesh-AVP028 Cc: 'freebsd-questions@FreeBSD.ORG' Subject: Re: Question on FTP Hi, On Thu, 19 Jul 2001, Pandurangi Venkatesh-AVP028 wrote: > PCs are connect to each other in a local network using CISCO routers. I am > trying to run 'ftp' command from one FreeBSD PC to another FreeBSD PC. It > takes very very long time to get to the FTP prompt. After the ftp command, > it immediately displays 'connected to 77.1.63.1' (Ip address of PC2) and > takes long time to get to the FTP prompt. try adding an entry for the connecting box into /etc/hosts in the following syntax (follow the example and change for your taste) 77.1.63.? freebsd2.network.domain.com freebsd2 PsyV To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 13:59:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r10.mx.aol.com (imo-r10.mx.aol.com [152.163.225.106]) by hub.freebsd.org (Postfix) with ESMTP id B244837B403 for ; Fri, 20 Jul 2001 13:59:37 -0700 (PDT) (envelope-from JakeCatfox@aol.com) Received: from JakeCatfox@aol.com by imo-r10.mx.aol.com (mail_out_v31.9.) id n.46.17d9ce15 (4008) for ; Fri, 20 Jul 2001 16:59:33 -0400 (EDT) From: JakeCatfox@aol.com Message-ID: <46.17d9ce15.2889f5b4@aol.com> Date: Fri, 20 Jul 2001 16:59:32 EDT Subject: Video Capture 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 138 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I bought a video capture USB device to let me capture video from external devices and Coaxial cable .. it works fine in Windows, but I'd like to set it up to run in FreeBSD. Is there a way I can set it up as a device and get a FreeBSD program for X-Windows to show me the incoming video and/or record it? I can also use a Linux program, since I have the full linux compatibility package running just fine. Thanks for your help, Deven To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 14: 6: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 7ED2F37B405; Fri, 20 Jul 2001 14:06:51 -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 f6KL6ob16506; Fri, 20 Jul 2001 14:06:51 -0700 (PDT) Message-Id: <200107202106.f6KL6ob16506@ptavv.es.net> To: Greg Lehey Cc: Dennis Jun , freebsd-questions@FreeBSD.ORG Subject: Re: Why is root named "Charlie"? In-reply-to: Your message of "Fri, 20 Jul 2001 11:35:09 +0930." <20010720113509.I56611@wantadilla.lemis.com> Date: Fri, 20 Jul 2001 14:06:50 -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: Fri, 20 Jul 2001 11:35:09 +0930 > From: Greg Lehey > Sender: owner-freebsd-questions@FreeBSD.ORG > > On Thursday, 19 July 2001 at 11:51:07 -0700, Dennis Jun wrote: > > Just outta curiosity, anyone know why root is > > named "Charlie"? I hope it's not in reference > > to the BSD Daemon which some people incorrectly > > refer to as "Chuckie." ;) > > The most plausible thing I've heard is that it's a reference to a > baseball player called Charlie Root. I don't know if he really > existed, but if he did, it would seem to fit. Getting way too far off topic... Not bad for someone not from the US! (Though I have no idea if Greg may have lived in the US at some time.) Charlie Root was a pitcher for the Chicago Cubs from about 1925 through about 1940. Career ERA of 3.59 and a lifetime record of 201 wins and 160 losses. He was a steady, very durable performer for many years. Sadly, his greatest claim to fame was giving up the "called shot" home run to Babe Ruth in the 1932 World Series. He was also named the Cubs all time right-handed pitcher in 1969 (and I'm not sure that any Cub since 69 has been better). I assume that whoever came up with the name on the root account had probably heard of the name from somewhere and used it as the name of the root user. How many famous "Root"s are there, after all. 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 20 14:36: 9 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imo-m02.mx.aol.com (imo-m02.mx.aol.com [64.12.136.5]) by hub.freebsd.org (Postfix) with ESMTP id 6771137B406 for ; Fri, 20 Jul 2001 14:36:07 -0700 (PDT) (envelope-from JakeCatfox@aol.com) Received: from JakeCatfox@aol.com by imo-m02.mx.aol.com (mail_out_v31.9.) id n.e8.17dd8d05 (4187) for ; Fri, 20 Jul 2001 17:36:01 -0400 (EDT) From: JakeCatfox@aol.com Message-ID: Date: Fri, 20 Jul 2001 17:36:00 EDT Subject: Where is the 4.x-current Source? 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 138 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Does anyone know where I can find the FreeBSD 4.x-Current source? ... -- Deven To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 14:46:54 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 0D1A137B406 for ; Fri, 20 Jul 2001 14:46:51 -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 f6KLkjb16875; Fri, 20 Jul 2001 14:46:45 -0700 (PDT) Message-Id: <200107202146.f6KLkjb16875@ptavv.es.net> To: JakeCatfox@aol.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Where is the 4.x-current Source? In-reply-to: Your message of "Fri, 20 Jul 2001 17:36:00 EDT." Date: Fri, 20 Jul 2001 14:46:45 -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 There is not such thing. Current is V5.0. Maybe you are looking for 4.x-Stable? That is the stable branch for general use. Current is mainly for developers and the foolish. At times it will crash a lot. (At other times it will not, but that's a crap shoot.) Generally speaking, if you don't know where to look for -current, you probably should not be running it. For more information on this, see: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cutting-edge.html 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 20 14:50:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-215.dsl.lsan03.pacbell.net [63.207.60.215]) by hub.freebsd.org (Postfix) with ESMTP id 7383E37B401 for ; Fri, 20 Jul 2001 14:50:16 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 56D2466C4D; Fri, 20 Jul 2001 14:50:15 -0700 (PDT) Date: Fri, 20 Jul 2001 14:50:14 -0700 From: Kris Kennaway To: Todd Reed Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Startup Scripts version 2 Message-ID: <20010720145014.A92915@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="wac7ysb48OaltWcw" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from ex279@hotmail.com on Fri, Jul 20, 2001 at 03:12:26PM -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 --wac7ysb48OaltWcw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 20, 2001 at 03:12:26PM -0500, Todd Reed wrote: > I created a /usr/local/rc.d called startup.sh. When I restart my machine= ,=20 > it doesn't seem to execute. Is it executable? Kris --wac7ysb48OaltWcw 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 iD8DBQE7WKeWWry0BWjoQKURAn4gAKCl/srQ2t774A+tCYBhdoe81bVKbQCgpEtC KqbF2KyPfusEZVOLkKvRBr0= =4sWa -----END PGP SIGNATURE----- --wac7ysb48OaltWcw-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 14:56:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from fnal.gov (heffalump.fnal.gov [131.225.9.20]) by hub.freebsd.org (Postfix) with ESMTP id D2E8037B401 for ; Fri, 20 Jul 2001 14:56:35 -0700 (PDT) (envelope-from crawdad@gungnir.fnal.gov) Received: from gungnir.fnal.gov ([131.225.80.1]) by smtp.fnal.gov (PMDF V6.0-24 #37519) with ESMTP id <0GGS00IJ3KYB16@smtp.fnal.gov> for questions@freebsd.org; Fri, 20 Jul 2001 16:56:35 -0500 (CDT) Received: from gungnir.fnal.gov (localhost [127.0.0.1]) by gungnir.fnal.gov (8.10.2+Sun/8.10.2) with ESMTP id f6KLu2F11821 for ; Fri, 20 Jul 2001 16:56:02 -0500 (CDT) Date: Fri, 20 Jul 2001 16:56:02 -0500 From: Matt Crawford Subject: Inserting Aironet 4800 card hangs FreeBSD 4.3-RELEASE GENERIC To: questions@freebsd.org Message-id: <200107202156.f6KLu2F11821@gungnir.fnal.gov> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a Sony Vaio Z505DX with a recent (last week) installation of FreeBSD 4.3. pccardd is enabled and running with no changes to /etc/defaults/pcard.conf. When I insert my Aironet 4800 card, the machine hangs, but solid. (Keyboard and touchpad are ignored, processes which were producing output to the screen no longer do, and if I kill it with the power switch and reboot, it hangs after probing the parallel port unless I unplug the power and the battery first. Now that's a hung system!) The same hardware dual-boots Windows 2000 and the same Aironet card works fine there. The same hardware and card used to work under 3.4-RELEASE after I made a one-line change to the one of the files in the pccard driver to turn on both the + and - voltages before reading out the card data. (That was a departure from spec in my Aironet card. I'm afraid I didn't save the change but I'm pretty sure it was "slt->pwr.vpp = 50;" in inserted() in sys/pccard/pccard.c and is now incorporated into the source tree. Ah yes, I see it at RELENG_4_2_0_RELEASE.) Here's uname -a ... FreeBSD gleipnir.dhcp.fnal.gov 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 14:57:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail7.nc.rr.com (fe7.southeast.rr.com [24.93.67.54]) by hub.freebsd.org (Postfix) with ESMTP id 8E0D037B403 for ; Fri, 20 Jul 2001 14:57:44 -0700 (PDT) (envelope-from freebsd@nc.rr.com) Received: from tbird-850-win2k ([66.26.225.2]) by mail7.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Fri, 20 Jul 2001 17:57:43 -0400 Date: Fri, 20 Jul 2001 18:03:07 -0400 From: Neill Robins X-Mailer: The Bat! (v1.48f) Personal Reply-To: Neill Robins X-Priority: 3 (Normal) Message-ID: <122211770169.20010720180307@nc.rr.com> To: "Todd Reed" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Startup Scripts version 2 In-reply-To: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Friday, July 20, 2001, 4:12:26 PM, Todd Reed wrote: TR> I created a /usr/local/rc.d called startup.sh. When I restart my machine, TR> it doesn't seem to execute. Below is the code in the sh file. What am I TR> doing wrong? Do I have to edit the rc.conf? TR> #!/bin/sh TR> # TR> /sbin/ldconfig -m /usr/local/lib/mysql TR> if [ -x /mnt/vdrv/dbms/bin/safe_mysqld ] TR> then TR> /mnt/vdrv/dbms/bin/safe_mysqld > /dev/null & && echo -n ` mysql` TR> fi Todd, Mike Meyer just might have the answer. Give this a try. From Mike Meyer: It should also check for the arguments "start" and "stop" so it can be used at system startup and system shutdown time. Here's a trivial example: #!/bin/sh MIXERSTATE=/var/db/mixer-state case $1 in start) [ -r $MIXERSTATE ] && /usr/sbin/mixer `cat $MIXERSTATE` > /dev/null ;; stop) /usr/sbin/mixer -s > $MIXERSTATE ;; *) echo "usage: `basename $0` {start|stop}" >&2 exit 64 ;; esac http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. -- Good Luck, -Neill freebsd@nc.rr.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 20 15:27:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe64.law10.hotmail.com [64.4.14.199]) by hub.freebsd.org (Postfix) with ESMTP id A468F37B401 for ; Fri, 20 Jul 2001 15:27:15 -0700 (PDT) (envelope-from mheitmeier@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 20 Jul 2001 15:27:15 -0700 X-Originating-IP: [156.153.255.243] From: "Michael Heitmeier" To: Subject: Etherboot config from rom-o-matic Date: Fri, 20 Jul 2001 15:27:14 -0700 Organization: HP MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0014_01C11130.73C865A0" 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: 20 Jul 2001 22:27:15.0519 (UTC) FILETIME=[20F514F0:01C1116B] Sender: owner-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_01C11130.73C865A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Would somebody please please post the configuration options that they = used to get an Etherboot 5.0.2 (http://rom-o-matic.net/5.0.2-mc1/) image = that works and boots FreeBSD (4.2)? Whatever configuration I choose Etherboot seems to look for an image = file and does not accept a Kernel as stated here:=20 http://etherboot.sourceforge.net/doc/html/freebsd.html ("copy your = kernel into you tftpboot directory") Thanks!! Michael ------=_NextPart_000_0014_01C11130.73C865A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Would somebody please please post the = configuration=20 options that they used to get an Etherboot 5.0.2 (http://rom-o-matic.net/5.0.2-m= c1/) image that works and boots FreeBSD = (4.2)?
 
Whatever configuration I choose = Etherboot seems to=20 look for an image file and does not accept a Kernel as stated here:=20
 http://etherboot.sourceforge.net/doc/html/freebsd.html=20 ("copy your kernel into you tftpboot directory")
 
Thanks!!
 
Michael
------=_NextPart_000_0014_01C11130.73C865A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 15:37:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web14408.mail.yahoo.com (web14408.mail.yahoo.com [216.136.174.78]) by hub.freebsd.org (Postfix) with SMTP id 3DE7B37B405 for ; Fri, 20 Jul 2001 15:37:25 -0700 (PDT) (envelope-from marcelomcarvalho@yahoo.com) Message-ID: <20010720223725.76454.qmail@web14408.mail.yahoo.com> Received: from [128.114.63.148] by web14408.mail.yahoo.com via HTTP; Fri, 20 Jul 2001 15:37:25 PDT Date: Fri, 20 Jul 2001 15:37:25 -0700 (PDT) From: Marcelo Carvalho Subject: porting BSD to Freebsd To: freebsd-questions@FreeBSD.org Cc: freebsd-net@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, In BSD, the /sys/malloc.h file has a list of definitions of "types of memory to be allocated" that doesn't appear in the corresponding file in Freebsd. Does anybody know where can I find the corresponding information in FreeBSD? Are they defined as well? 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 Fri Jul 20 15:43:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by hub.freebsd.org (Postfix) with ESMTP id EAB5D37B403; Fri, 20 Jul 2001 15:43:23 -0700 (PDT) (envelope-from brdavis@odin.ac.hmc.edu) Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.11.0/8.11.0) id f6KMhMW10423; Fri, 20 Jul 2001 15:43:22 -0700 Date: Fri, 20 Jul 2001 15:43:22 -0700 From: Brooks Davis To: Marcelo Carvalho Cc: freebsd-questions@FreeBSD.ORG, freebsd-net@FreeBSD.ORG Subject: Re: porting BSD to Freebsd Message-ID: <20010720154322.A9531@Odin.AC.HMC.Edu> References: <20010720223725.76454.qmail@web14408.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="jI8keyz6grp/JLjh" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010720223725.76454.qmail@web14408.mail.yahoo.com>; from marcelomcarvalho@yahoo.com on Fri, Jul 20, 2001 at 03:37:25PM -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 --jI8keyz6grp/JLjh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 20, 2001 at 03:37:25PM -0700, Marcelo Carvalho wrote: > In BSD, the /sys/malloc.h file has a list of > definitions of "types of memory to be allocated" that > doesn't appear in the corresponding file in Freebsd.=20 >=20 > Does anybody know where can I find the corresponding > information in FreeBSD? Are they defined as well? They are defined via the MALLOC_DEFINE macro. Current practice seems to be to create a malloc type for each driver so its memory can be tracked seperatly. If you want to find them all you need to grep the /usr/src/sys for them. I've found glimpse very handy for this sort of thing recently. -- Brooks --jI8keyz6grp/JLjh Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE7WLQJXY6L6fI4GtQRAuWhAJ9STclOAHzc4oupw3BevjdV8W6BQgCg2HHS QFqJqu8d6e+wEivumWNOY2o= =GXTX -----END PGP SIGNATURE----- --jI8keyz6grp/JLjh-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 16: 1:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imo-m08.mx.aol.com (imo-m08.mx.aol.com [64.12.136.163]) by hub.freebsd.org (Postfix) with ESMTP id 3BBC837B405 for ; Fri, 20 Jul 2001 16:01:13 -0700 (PDT) (envelope-from JakeCatfox@aol.com) Received: from JakeCatfox@aol.com by imo-m08.mx.aol.com (mail_out_v31.9.) id 3.a5.18ba2488 (3999); Fri, 20 Jul 2001 19:01:08 -0400 (EDT) From: JakeCatfox@aol.com Message-ID: Date: Fri, 20 Jul 2001 19:01:08 EDT Subject: Re: Where is the 4.x-current Source? To: oberman@es.net Cc: 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 138 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG K .. thanks a lot! I'll give it a shot and hope it works. What is a good program to use with the Hauppauge card (for video viewing and capture?) -- Deven To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 16:14:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay2.adelphia.net (smtprelay2.adelphia.net [64.8.25.7]) by hub.freebsd.org (Postfix) with ESMTP id 19F1937B401 for ; Fri, 20 Jul 2001 16:14:25 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay2.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGSOKQ02.5NE; Fri, 20 Jul 2001 19:14:50 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6KNBhP01318; Fri, 20 Jul 2001 19:11:43 -0400 (EDT) (envelope-from ipt) Date: Fri, 20 Jul 2001 19:11:37 -0400 From: User & Ian Patrick Thomas To: Jim Krenz Cc: freebsd-questions@freebsd.org Subject: Re: Program recommendations Message-ID: <20010720191137.A1278@localhost> 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 unixverse@mac.com on Fri, Jul 20, 2001 at 01:20:20PM -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 As it was put forth by Jim Krenz on Fri, Jul 20, 2001 at 01:20:20PM -0700... > Hello all, > > I have just installed FreeBSD 4.3, and am now attempting to figure out which > programs to use for various tasks. I am completely new to Unix-like systems > and the choices of options are plentiful (and somewhat confusing to my > newbie mind). In particular, I would like opinions on the following three: > > Shell > Text editor > E-mail client > > I realize this is a slightly loaded question, as I suspect that everyone has > their favorite program. But I am asking this because I am overwhelmed at the > moment, and need some help to get started. > > My main concern is this: I don't want to spend a ton of time learning one > program, and then six weeks later, find out that there is a better program > that was already available. I don't care if a program is harder to initially > learn--I just want the one that will serve me the best for the long term. > > Thanks for any advice! > > Jim > Jim Krenz > unixverse@mac.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message Here is what I use. For the shell, tcsh. For the editor, emacs, at the console and in X, along with vi For mail, mutt, and I used to use Elm but mutt has more features. Try some of these programs out. Look in the ports in editors,mail,and shells and just play around. Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 16:17:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tao.thought.org (sense-kline-248.oz.net [216.39.168.248]) by hub.freebsd.org (Postfix) with ESMTP id 8357237B408; Fri, 20 Jul 2001 16:17:13 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.11.3/8.11.0) id f6KNH0248658; Fri, 20 Jul 2001 16:17:00 -0700 (PDT) (envelope-from kline) Date: Fri, 20 Jul 2001 16:17:00 -0700 From: Gary Kline To: Kevin Oberman Cc: Greg Lehey , Dennis Jun , freebsd-questions@FreeBSD.ORG Subject: Re: Why is root named "Charlie"? Message-ID: <20010720161659.A48555@tao.thought.org> References: <20010720113509.I56611@wantadilla.lemis.com> <200107202106.f6KL6ob16506@ptavv.es.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200107202106.f6KL6ob16506@ptavv.es.net>; from oberman@es.net on Fri, Jul 20, 2001 at 02:06:50PM -0700 X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 15 years of service to the Unix community Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jul 20, 2001 at 02:06:50PM -0700, Kevin Oberman wrote: Hot damn; thanks for this neat trivia! I was an A's fan for the years I lived in Berkeley, but not enough of a b'ball enthusiast to know this. -g > > Charlie Root was a pitcher for the Chicago Cubs from about 1925 > through about 1940. Career ERA of 3.59 and a lifetime record of 201 > wins and 160 losses. > > He was a steady, very durable performer for many years. Sadly, his > greatest claim to fame was giving up the "called shot" home run to > Babe Ruth in the 1932 World Series. He was also named the Cubs all > time right-handed pitcher in 1969 (and I'm not sure that any Cub since > 69 has been better). > > I assume that whoever came up with the name on the root account had > probably heard of the name from somewhere and used it as the name of > the root user. How many famous "Root"s are there, after all. > > 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 -- Gary D. Kline kline@thought.org www.thought.org Public service Unix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 16:31:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from fnal.gov (heffalump.fnal.gov [131.225.9.20]) by hub.freebsd.org (Postfix) with ESMTP id 1DC5637B401 for ; Fri, 20 Jul 2001 16:31:24 -0700 (PDT) (envelope-from crawdad@gungnir.fnal.gov) Received: from gungnir.fnal.gov ([131.225.80.1]) by smtp.fnal.gov (PMDF V6.0-24 #37519) with ESMTP id <0GGS002AEPCB5C@smtp.fnal.gov> for questions@freebsd.org; Fri, 20 Jul 2001 18:31:23 -0500 (CDT) Received: from gungnir.fnal.gov (localhost [127.0.0.1]) by gungnir.fnal.gov (8.10.2+Sun/8.10.2) with ESMTP id f6KNUoF12098 for ; Fri, 20 Jul 2001 18:30:50 -0500 (CDT) Date: Fri, 20 Jul 2001 18:30:50 -0500 From: Matt Crawford Subject: Re: Inserting Aironet 4800 card hangs FreeBSD 4.3-RELEASE GENERIC To: questions@freebsd.org Message-id: <200107202330.f6KNUoF12098@gungnir.fnal.gov> References: <200107202156.f6KLu2F11821@gungnir.fnal.gov> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > I have a Sony Vaio Z505DX with a recent (last week) installation of > FreeBSD 4.3. ... > FreeBSD gleipnir.dhcp.fnal.gov 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's more information. I also tried a Panasonic PCMCIA CDROM controller and got pretty much the same result. So it's something endemic to pccards, and probably not the Aironet. The laptop has had the vendor's "Windows 2000 BIOS upgrade". Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.3-RELEASE #0: Sat Apr 21 10:54:49 GMT 2001 jkh@narf.osd.bsdi.com:/usr/src/sys/compile/GENERIC Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Pentium II Xeon/Celeron (331.58-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x66a Stepping = 10 Features=0x183f9ff real memory = 134152192 (131008K bytes) config> di sn0 config> di lnc0 config> di ie0 config> di fe0 config> di cs0 config> di bt0 config> di aic0 config> di aha0 config> di adv0 config> q avail memory = 126226432 (123268K bytes) Preloaded elf kernel "kernel" at 0xc044d000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc044d09c. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 fxp0: port 0xfcc0-0xfcff mem 0xfed00000-0xfedfffff,0xfecff000-0xfecfffff irq 9 at device 6.0 on pci0 fxp0: Ethernet address 08:00:46:04:03:e7 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xfcb0-0xfcbf at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xfc60-0xfc7f irq 9 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered chip1: port 0x2180-0x218f at device 7.3 on pci0 pci0: at 8.0 irq 9 chip2: mem 0xfea00000-0xfeafffff,0xfe000000-0xfe3fffff irq 9 at device 8.1 on pci0 chip3: at device 9.0 on pci0 pcic-pci0: at device 10.0 on pci0 pci0: (vendor=0x127a, dev=0x2005) at 11.0 fdc0: direction bit not set fdc0: cmd 3 failed at out byte 1 of 3 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model GlidePoint, 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> pcic0: at port 0x3e0 iomem 0xd0000 on isa0 pcic0: Polling mode pccard0: on pcic0 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 ata1-slave: ata_command: timeout waiting for intr ata1-slave: identify failed ad0: 6194MB [13424/15/63] at ata0-master UDMA33 ad2: 3MB [247/2/16] at ata1-master PIO1 Mounting root from ufs:/dev/ad0s2a WARNING: / was not properly dismounted To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 16:32:30 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 A863F37B403 for ; Fri, 20 Jul 2001 16:32:27 -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 f6KNWQb17814; Fri, 20 Jul 2001 16:32:26 -0700 (PDT) Message-Id: <200107202332.f6KNWQb17814@ptavv.es.net> To: Jim Krenz Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Program recommendations In-reply-to: Your message of "Fri, 20 Jul 2001 19:11:37 EDT." <20010720191137.A1278@localhost> Date: Fri, 20 Jul 2001 16:32:26 -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 As it was put forth by Jim Krenz on Fri, Jul 20, 2001 at 01:20:20PM -0700... > Hello all, > > I have just installed FreeBSD 4.3, and am now attempting to figure out which > programs to use for various tasks. I am completely new to Unix-like systems > and the choices of options are plentiful (and somewhat confusing to my > newbie mind). In particular, I would like opinions on the following three: > > Shell > Text editor > E-mail client I prefer: Shell: tcsh (which is csh or tcsh on FreeBSD systems) Text editor: XEmacs E-Mail client: exmh 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 20 16:47:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from blueyonder.co.uk (pcow024o.blueyonder.co.uk [195.188.53.126]) by hub.freebsd.org (Postfix) with ESMTP id A644937B403 for ; Fri, 20 Jul 2001 16:47:09 -0700 (PDT) (envelope-from steve@mail.yahoo.com) Received: from mail.yahoo.com ([62.30.71.240]) by blueyonder.co.uk with Microsoft SMTPSVC(5.5.1877.687.68); Sat, 21 Jul 2001 00:47:09 +0100 Received: (from steve@localhost) by mail.yahoo.com (8.11.3/8.11.3) id f6KNcsh06719 for freebsd-questions@freebsd.org; Sat, 21 Jul 2001 00:38:54 +0100 (BST) (envelope-from steve) Date: Sat, 21 Jul 2001 00:38:53 +0100 From: Steve Roome To: freebsd-questions@freebsd.org Subject: libvgl Message-ID: <20010721003853.A1437@dylan.home> 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 porting an X application I wrote to libvgl, and I need some help... The manpage is good, but it doesn't (seem to) contain any information on what modes you can call VGLInit with. (Yes, I'm stuck at VGLInit, but in my experience it was always XCreateWindow that stumped me and I was okay from there on, so this is familiar territory in a way!) Thank in advance, Steve Roome To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 17: 2: 5 2001 Delivered-To: freebsd-questions@freebsd.org Received: from new-smtp1.ihug.com.au (new-smtp1.ihug.com.au [203.109.250.27]) by hub.freebsd.org (Postfix) with ESMTP id 94F0937B403 for ; Fri, 20 Jul 2001 17:02:01 -0700 (PDT) (envelope-from john@jmv.com.au) Received: from [203.173.141.72] (p326-apx1.syd.ihug.com.au [203.173.141.72]) by new-smtp1.ihug.com.au (8.9.3/8.9.3) with ESMTP id KAA31204 for ; Sat, 21 Jul 2001 10:01:54 +1000 X-Authentication-Warning: new-smtp1.ihug.com.au: Host p326-apx1.syd.ihug.com.au [203.173.141.72] claimed to be [203.173.141.72] X-Sender: john/jmv@mail.webtapestry.net Message-Id: In-Reply-To: References: <000301c11143$ed778a80$0e00000a@tomcat> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Sat, 21 Jul 2001 10:07:08 +1000 To: freebsd-questions@freebsd.org From: John Vender Subject: Re: Telnet settings (Mac to FreeBSD) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG If you are using one of the common Mac OS telnet clients such as NiftyTelnet or BetterTelnet the defaults should work fine. Cheers...John p.s. make sure you add a line for the mac in /etc/hosts on the freebsd box or you'll be scratching your head why it takes forever to connect :) p.p.s. telnet is particularly insecure, have a look at ssh, you can use NiftyTelnet to do ssh1 or MacSSH to do ssh2. MacSSH also allows you to do port forwarding for securing other services such as ftp and mail. >Hello all, > >I am trying to figure out which settings are best in my Telnet client. I am >using it to connect with a FreeBSD system (4.3) that I've just set up. I am >trying to telnet in from my Mac OS 9.1 system. Since I am new to this stuff, >I am asking advice as to which settings to use for the best results. > >Here are the options I can choose from: > >Emulation: VT100; VT220; ANSI; Linux > >*** > >Yes/no options: >Xterm sequences >Use VT wrap mode >Eight bit connections >Save Cleared lines >Use jump scolling (faster) >VT220 7-bit controls > >*** > >Port (currently set to 23, and that seems to work thus far). > >*** > >Protocol: Telnet; rlogin; rsh; rexec; ssh2; raw tcp. Which one is best? I >suspect that it is ssh2, since that is the secure one, but I am asking to be >sure that one of the others isn't better. > >Thanks for any advice, and being patient with this newbie FreeBSD user. > >Jim >Jim Krenz >Unixverse@mac.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 20 17: 2:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id 7CEB137B403; Fri, 20 Jul 2001 17:02:11 -0700 (PDT) To: FreeBSD-questions@FreeBSD.org Subject: How to get best results from FreeBSD-questions Message-Id: <20010721000211.7CEB137B403@hub.freebsd.org> Date: Fri, 20 Jul 2001 17:02:11 -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 20 17: 3:16 2001 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id E6A1237B407; Fri, 20 Jul 2001 17:02:11 -0700 (PDT) To: FreeBSD-questions@FreeBSD.org Subject: "The Complete FreeBSD", third edition: errata and addenda Message-Id: <20010721000211.E6A1237B407@hub.freebsd.org> Date: Fri, 20 Jul 2001 17:02:11 -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 20 17: 3:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id A5D9E37B405; Fri, 20 Jul 2001 17:02:11 -0700 (PDT) To: FreeBSD-questions@FreeBSD.org Subject: "The Complete FreeBSD", second edition: errata and addenda Message-Id: <20010721000211.A5D9E37B405@hub.freebsd.org> Date: Fri, 20 Jul 2001 17:02:11 -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 20 17: 7:59 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 CCBF937B407 for ; Fri, 20 Jul 2001 17:07:56 -0700 (PDT) (envelope-from uwi@delfi.lv) Received: from delfi.lv (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 DAA21983 for ; Sat, 21 Jul 2001 03:07:55 +0300 Date: Sat, 21 Jul 2001 03:08:53 +0000 From: uwi mAn To: questions@freebsd.org Subject: licq Message-ID: <20010721030853.A2483@elexis.uwiland.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Balsa 1.1.3 Lines: 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 It doesnt go "online" sometimes.... gives the following string: [WRN] Licq: Ignoring stale lockfile (pid 1837) How to solve it? Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 17:10:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-215.dsl.lsan03.pacbell.net [63.207.60.215]) by hub.freebsd.org (Postfix) with ESMTP id 9E13537B401 for ; Fri, 20 Jul 2001 17:10:34 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 0895466C4D; Fri, 20 Jul 2001 17:10:29 -0700 (PDT) Date: Fri, 20 Jul 2001 17:10:29 -0700 From: Kris Kennaway To: Marcelo Carvalho Cc: freebsd-questions@FreeBSD.ORG Subject: Re: porting BSD to Freebsd Message-ID: <20010720171028.A94827@xor.obsecurity.org> References: <20010720223725.76454.qmail@web14408.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="fUYQa+Pmc3FrFX/N" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010720223725.76454.qmail@web14408.mail.yahoo.com>; from marcelomcarvalho@yahoo.com on Fri, Jul 20, 2001 at 03:37:25PM -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 --fUYQa+Pmc3FrFX/N Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 20, 2001 at 03:37:25PM -0700, Marcelo Carvalho wrote: > Hi, >=20 > In BSD, the /sys/malloc.h file has a list of > definitions of "types of memory to be allocated" that > doesn't appear in the corresponding file in Freebsd.=20 >=20 > Does anybody know where can I find the corresponding > information in FreeBSD? Are they defined as well? You'll have to include more information about what you're trying to do. Kris --fUYQa+Pmc3FrFX/N Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7WMh0Wry0BWjoQKURArlQAJ423IvMYsGO8iC48mz4ERXC9vqqHgCg3qoL ZzEYbGlMcHjJ6DfOrlDb1QM= =X1BO -----END PGP SIGNATURE----- --fUYQa+Pmc3FrFX/N-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 17:13:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from Veronica.wmol.com (veronica.wmol.com [208.242.83.241]) by hub.freebsd.org (Postfix) with ESMTP id 2C1C737B401 for ; Fri, 20 Jul 2001 17:13:52 -0700 (PDT) (envelope-from david@phobia.ms) Received: from rain.hill.hom (081bc122.chartermi.net [24.247.81.122]) by Veronica.wmol.com (Vircom SMTPRS 4.6.189) with ESMTP id ; Fri, 20 Jul 2001 20:11:17 -0400 Date: Fri, 20 Jul 2001 20:13:00 -0400 From: David Hill To: uwi mAn Cc: questions@FreeBSD.ORG Subject: Re: licq Message-Id: <20010720201300.678be021.david@phobia.ms> In-Reply-To: <20010721030853.A2483@elexis.uwiland.com> References: <20010721030853.A2483@elexis.uwiland.com> X-Mailer: Sylpheed version 0.5.1 (GTK+ 1.2.10; i386-unknown-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 21 Jul 2001 03:08:53 +0000 uwi mAn wrote: > It doesnt go "online" sometimes.... gives the following string: > [WRN] Licq: Ignoring stale lockfile (pid 1837) > How to solve it? > Thanks. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > kill -TERM 1837 rm ~/.licq/licq.pid - David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 17:30: 7 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 AEBB237B401 for ; Fri, 20 Jul 2001 17:29:57 -0700 (PDT) (envelope-from info@wpi2001.com) Received: from wpi2001.com (client-141-150-248-226.delval.dialup.bellatlantic.net [141.150.248.226]) by smtp4ve.mailsrvcs.net (8.9.1/8.9.1) with SMTP id AAA57471844 for ; Sat, 21 Jul 2001 00:29:56 GMT Message-Id: <200107210029.AAA57471844@smtp4ve.mailsrvcs.net> From: "Washington Promotions International" To: Subject: Official America's Cup Jubilee Announcement Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Fri, 20 Jul 2001 20:29:04 -0400 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 WASHINGTON PROMOTIONS INTERNATIONAL HONORED BY THE AMERICA'S CUP JUBILEE 2001 The America's Cup Jubilee Governing Committee in Cowes, United Kingdom has selected Washington Promotions International as the official U.S.A. merchandise licensee for the 150th Anniversary of the America's Cup. Please visit this web site to see the array of clothing, compasses, barometers and other commemorative items. http://wpi2001.com/index2.html Individuals, yacht and sailing clubs, and corporations everywhere, currently have the opportunity to acquire special items with ACJ2001 logo. Additionally, you may also choose to add your own logo to these fine items. This is a once in a lifetime opportunity to celebrate an event of this caliber and prestige. Please post to your newsletter or bulletin board. If you have any questions contact: Vassil C. Yanco (281)292-9810 Office (281)292-9331 Fax E-mail: info@wpi2001.com Web Site: http://wpi2001.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 20 17:30:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp5ve.mailsrvcs.net (smtp5vepub.gte.net [206.46.170.26]) by hub.freebsd.org (Postfix) with ESMTP id 30D5B37B40C for ; Fri, 20 Jul 2001 17:30:05 -0700 (PDT) (envelope-from info@wpi2001.com) Received: from wpi2001.com (client-141-150-248-226.delval.dialup.bellatlantic.net [141.150.248.226]) by smtp5ve.mailsrvcs.net (8.9.1/8.9.1) with SMTP id AAA30306952 for ; Sat, 21 Jul 2001 00:30:03 GMT Message-Id: <200107210030.AAA30306952@smtp5ve.mailsrvcs.net> From: "Washington Promotions International" To: Subject: Official America's Cup Jubilee Announcement Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Fri, 20 Jul 2001 20:29:12 -0400 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 WASHINGTON PROMOTIONS INTERNATIONAL HONORED BY THE AMERICA'S CUP JUBILEE 2001 The America's Cup Jubilee Governing Committee in Cowes, United Kingdom has selected Washington Promotions International as the official U.S.A. merchandise licensee for the 150th Anniversary of the America's Cup. Please visit this web site to see the array of clothing, compasses, barometers and other commemorative items. http://wpi2001.com/index2.html Individuals, yacht and sailing clubs, and corporations everywhere, currently have the opportunity to acquire special items with ACJ2001 logo. Additionally, you may also choose to add your own logo to these fine items. This is a once in a lifetime opportunity to celebrate an event of this caliber and prestige. Please post to your newsletter or bulletin board. If you have any questions contact: Vassil C. Yanco (281)292-9810 Office (281)292-9331 Fax E-mail: info@wpi2001.com Web Site: http://wpi2001.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 20 17:31: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from winmail.prismedia.com (mail.prismedia.com [63.113.218.100]) by hub.freebsd.org (Postfix) with ESMTP id A0DB437B40A for ; Fri, 20 Jul 2001 17:30:48 -0700 (PDT) (envelope-from caraya@prismedia.com) Received: from CarlosTemp (carlos-temp.prismedia.com [10.10.10.141]) by winmail.prismedia.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id NYKCHPYY; Fri, 20 Jul 2001 17:28:32 -0700 Message-ID: <01c901c1117c$18bcae40$8d0a0a0a@prismedia.com> From: "carlos araya" To: Subject: linuxthreads, mutexes, semaphores, and headaches Date: Fri, 20 Jul 2001 17:28:43 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_01C6_01C11141.6C5327E0" 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_01C6_01C11141.6C5327E0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I switched from using user level threads to using linuxthreads just = recently (for faster IO to a NAS) and now I'm having serious problems = with my sempathores and mutexes. The problem is very random however, = sometimes the server will run for a minute and sometimes only for 10 = seconds. My stack trace says it has something to do with sigsuspend. Is = anybody else having problems? I heard that libc 6 was better suited for = linuxthreads but I haven't found a port to freebsd. Anyway if anybody = has info linuxthreads and issues relating to semaphores and mutexes = please let me know. Cheers. ------=_NextPart_000_01C6_01C11141.6C5327E0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
    I switched from = using user level=20 threads to using linuxthreads just recently (for faster IO to a NAS) and = now I'm=20 having serious problems with my sempathores and mutexes. The problem is = very=20 random however, sometimes the server will run for a minute and sometimes = only=20 for 10 seconds. My stack trace says it has something to do with = sigsuspend. Is=20 anybody else having problems? I heard that libc 6 was better suited for=20 linuxthreads but I haven't found a port to freebsd. Anyway if anybody = has info=20 linuxthreads and issues relating to semaphores and mutexes please let me = know.=20 Cheers.
------=_NextPart_000_01C6_01C11141.6C5327E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 18: 3:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f161.law14.hotmail.com [64.4.21.161]) by hub.freebsd.org (Postfix) with ESMTP id E9C0B37B405 for ; Fri, 20 Jul 2001 18:03:21 -0700 (PDT) (envelope-from macklobell@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 20 Jul 2001 18:03:11 -0700 Received: from 195.198.148.116 by lw14fd.law14.hotmail.msn.com with HTTP; Sat, 21 Jul 2001 01:03:05 GMT X-Originating-IP: [195.198.148.116] From: "Mack Lobell" To: FREEBSD-QUESTIONS@freebsd.org Subject: vx0: driver is using old-style compatability shims Date: Sat, 21 Jul 2001 01:03:05 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 21 Jul 2001 01:03:11.0783 (UTC) FILETIME=[E9B9AB70:01C11180] Sender: owner-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 reboot my 4.2 RELEASE version of FreeBSD the following traces appear: vx0: <3COM 3C595 Fast Etherlink III PCI> port 0xcc00-0xcc1f irq 10 at device 20.0 on pci0 bpf: vx0 attached using shared irq10. vx0: driver is using old-style compatability shims The network card works, so i have no problems with it, but the last trace is troublesome. My question is about the last trace, should i worry? Is there a "new-style", if so where can i find information? Regards. _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 18: 9:20 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail10.sdc1.sfba.home.com (femail10.sdc1.sfba.home.com [24.0.95.106]) by hub.freebsd.org (Postfix) with ESMTP id B5DC637B401 for ; Fri, 20 Jul 2001 18:09:17 -0700 (PDT) (envelope-from lbrannon5@home.com) Received: from cmc3096760a ([24.252.198.130]) by femail10.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with SMTP id <20010721010917.TDUM10375.femail10.sdc1.sfba.home.com@cmc3096760a> for ; Fri, 20 Jul 2001 18:09:17 -0700 Message-ID: <000a01c11181$998b9680$82c6fc18@glfbr1.fl.home.com> From: "Lee Brannon" To: Subject: floppy problem Date: Fri, 20 Jul 2001 20:08:06 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C11157.B061A220" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C11157.B061A220 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Whenever I try to copy the files to a floppy disk, it will start and = then say "read fault". What do i do? ------=_NextPart_000_0007_01C11157.B061A220 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Whenever I try to copy the files to a = floppy disk,=20 it will start and then say "read fault". What do i=20 do?
------=_NextPart_000_0007_01C11157.B061A220-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 18:49:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from p1.cs.ohiou.edu (p1.cs.ohiou.edu [132.235.1.11]) by hub.freebsd.org (Postfix) with ESMTP id 64D4137B401 for ; Fri, 20 Jul 2001 18:49:13 -0700 (PDT) (envelope-from frussell@p1.cs.ohiou.edu) Received: from localhost (frussell@localhost) by p1.cs.ohiou.edu (8.9.3/8.9.3) with SMTP id VAA05982 for ; Fri, 20 Jul 2001 21:48:55 -0400 (EDT) Date: Fri, 20 Jul 2001 21:48:55 -0400 (EDT) From: Russell Francis X-Sender: frussell@p1 To: freebsd-questions@FreeBSD.org Subject: Re: Program recommendations In-Reply-To: <20010720172206.D409-100000@asbestos.wolf> 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, 20 Jul 2001 jeff@tsunamicreek.com wrote: > > Shell > > bash or tsch shell, matter of opinion. A handy feature is the [TAB] auto completion of filenames. I know bash has this, not sure of tsch??? > > Text editor > > vi or emacs, matter of opinion. Vi is a great editor. It is standard on almost any UNIX machine so your skills can be portable :-) If you do decide to go with a vi style editor, I recommend using something like vim or gvim as it has alot of nice extras that make serious editing easier. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 18:51: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id 0FCF137B407 for ; Fri, 20 Jul 2001 18:51:01 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from opal (cs.binghamton.edu [128.226.123.101]) by bingnet2.cc.binghamton.edu (8.11.4/8.11.4) with ESMTP id f6L1ox804682; Fri, 20 Jul 2001 21:50:59 -0400 (EDT) Date: Fri, 20 Jul 2001 21:50:49 -0400 (EDT) From: Zhihui Zhang X-Sender: zzhang@opal To: Lee Brannon Cc: questions@FreeBSD.ORG Subject: Re: floppy problem In-Reply-To: <000a01c11181$998b9680$82c6fc18@glfbr1.fl.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 You should tell us the format of your floppy (DOS or UNIX) and the commands you used. Maybe your floppy is going bad, try another new floppy. -Zhihui On Fri, 20 Jul 2001, Lee Brannon wrote: > Whenever I try to copy the files to a floppy disk, it will start and > then say "read fault". What do i do? > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 19: 9:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web14407.mail.yahoo.com (web14407.mail.yahoo.com [216.136.174.77]) by hub.freebsd.org (Postfix) with SMTP id A146037B403 for ; Fri, 20 Jul 2001 19:09:07 -0700 (PDT) (envelope-from marcelomcarvalho@yahoo.com) Message-ID: <20010721020907.99984.qmail@web14407.mail.yahoo.com> Received: from [128.114.63.148] by web14407.mail.yahoo.com via HTTP; Fri, 20 Jul 2001 19:09:07 PDT Date: Fri, 20 Jul 2001 19:09:07 -0700 (PDT) From: Marcelo Carvalho Subject: Re: porting BSD to Freebsd To: Kris Kennaway Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <20010720171028.A94827@xor.obsecurity.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 --- Kris Kennaway wrote: > You'll have to include more information about what > you're trying to > do. > > Kris > Thanks Kris. I'll try to be more specific: Currently, I'm porting a /sys/sys/malloc.h from BSD to FreeBSD. It turns out that the file I'm working on has some "types of memory" added to the original list that I've mentioned before ("types of memory"). I got an e-mail telling me that these definitions are now done through the MACRO_DEFINE file (in freebsd). However, I found out that not all definitions are there. They are now scattered in other files (as the guy also suggested me to find out). My problem is, since this is a NEW definition of type of memory, I need to know where I should include it appropriately. I have a very weak knowledge in kernel programming. I'm kind of lost now. It is supposed to be just two lines of definitions, but in which file now? Maybe I still didn't get the idea of how the macros work... I hope I was more clear now. I would really appreciate if some of you could give me some help on this thing. Thanks, Marcelo. __________________________________________________ Do You Yahoo!? Make international calls for as low as $.04/minute with Yahoo! Messenger http://phonecard.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 20 19:16:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 8FFEE37B405 for ; Fri, 20 Jul 2001 19:16:51 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.4) id f6L2GnI37288; Fri, 20 Jul 2001 22:16:49 -0400 (EDT) (envelope-from wollman) Date: Fri, 20 Jul 2001 22:16:49 -0400 (EDT) From: Garrett Wollman Message-Id: <200107210216.f6L2GnI37288@khavrinen.lcs.mit.edu> To: Marcelo Carvalho Cc: freebsd-questions@FreeBSD.ORG Subject: Re: porting BSD to Freebsd In-Reply-To: <20010721020907.99984.qmail@web14407.mail.yahoo.com> References: <20010720171028.A94827@xor.obsecurity.org> <20010721020907.99984.qmail@web14407.mail.yahoo.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG < said: > My problem is, since this is a NEW definition of type of memory, I > need to know where I should include it appropriately. Your new malloc type should be declared (using MALLOC_DECLARE) in whatever header file contains the declarations common to your source modules. It should be instantiated in exactly one of your source files. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 19:19:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from wilma.widomaker.com (wilma.widomaker.com [204.17.220.5]) by hub.freebsd.org (Postfix) with ESMTP id 2467A37B401 for ; Fri, 20 Jul 2001 19:19:37 -0700 (PDT) (envelope-from shannon@widomaker.com) Received: from [209.96.179.72] (helo=escape.shannon.net) by wilma.widomaker.com with esmtp (Exim 3.22 #2) id 15NmMh-0000fb-00 for freebsd-questions@FreeBSD.ORG; Fri, 20 Jul 2001 22:19:35 -0400 Received: (from shannon@localhost) by escape.shannon.net (8.11.0/8.8.8) id f6K0YDF00248 for freebsd-questions@FreeBSD.ORG; Thu, 19 Jul 2001 20:34:13 -0400 (EDT) Date: Thu, 19 Jul 2001 20:34:08 -0400 From: Shannon To: freebsd-questions@FreeBSD.ORG Subject: Re: a fast windows manager? Message-ID: <20010719203408.D29468@widomaker.com> Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <20010718041050.79305.qmail@web20107.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from dscheidt@tumbolia.com on Wed, Jul 18, 2001 at 12:29:14AM -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 Wed, Jul 18, 2001 at 12:29:14AM -0500, David Scheidt wrote: > Anything that looks like CDE is going to be slow. A more minimal window > manger is likely to provide livable performance, something like twm or > fvwm2. xfce is very fast, and looks a lot like CDE. It's not like Gnome or KDE, and is very light and simple. -- shannon@widomaker.com _________________________________________________ ______________________/ armchairrocketscientistgraffitiexenstentialist "And in billows of might swell the Saxons before her,-- Unite, oh unite! Or the billows burst o'er her!" -- Downfall of the Gael To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 19:19:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from wilma.widomaker.com (wilma.widomaker.com [204.17.220.5]) by hub.freebsd.org (Postfix) with ESMTP id DE93A37B401 for ; Fri, 20 Jul 2001 19:19:42 -0700 (PDT) (envelope-from shannon@widomaker.com) Received: from [209.96.179.72] (helo=escape.shannon.net) by wilma.widomaker.com with esmtp (Exim 3.22 #2) id 15NmMn-0000fb-00 for questions@FreeBSD.ORG; Fri, 20 Jul 2001 22:19:41 -0400 Received: (from shannon@localhost) by escape.shannon.net (8.11.0/8.8.8) id f6JNQTO29744 for questions@FreeBSD.ORG; Thu, 19 Jul 2001 19:26:29 -0400 (EDT) Date: Thu, 19 Jul 2001 19:26:29 -0400 From: Shannon To: questions@FreeBSD.ORG Subject: Re: ARRGH Netscape stinks! Message-ID: <20010719192629.C29468@widomaker.com> Mail-Followup-To: questions@FreeBSD.ORG References: <21096630@toto.iv> <15188.23500.936661.82769@guru.mired.org> <20010717115346.A18795@grumpy.dyndns.org> <15188.54022.876036.338916@guru.mired.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <15188.54022.876036.338916@guru.mired.org>; from mwm@mired.org on Tue, Jul 17, 2001 at 07:06:30PM -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 17, 2001 at 07:06:30PM -0500, Mike Meyer wrote: > David Kelly types: > > On Tue, Jul 17, 2001 at 10:37:48AM -0500, Mike Meyer wrote: > > > JavaScript is a security nightmare. Java isn't quit so bad, but CERT > > > recommends turning them both off. I turn off Flash because I haven't > > > had time to investigate the security issues. > > Uh, don't you have Java and Javascript crossed? > > I don't think so. The people at Sun who worked on Java at demonstrably > thought about the security implications of what they were doing, and > dealt with the worst excesses in the design. As a result, Java > security problems tend to be bugs in the implementation, with "in > violation of security policies" being a common phrase. JavaScript > tends to have bugs along the lines of "we never thought anyone would > do that", like sending email to an arbitrary address at page load > time, or putting java script in a cookie file then loading the cookie > file to get access to the disk. The net result is that JavaScript > tends to have nastier bugs than Java. Absolutely, although both are capable of doing very bad things, mostly because of braind-dead decisions by the browser authors. The worst comes when JavaScript is used to bootstrap Java virii (Javirii?). For example, both Java and JavaScript can reprogram your home page on some browsers and platforms, and other configuration items, and JavaScript can put code on your system which runs on browser startup, mostly through things like changing your home page to the little Javirus. Even if they don't hurt your local data, they are capable of irreperable damange to your sanity. I have some squid filter to eradicate a lot of them, but there are still some really annoying ones that get through. So far I've not seen this happen when hitting the same web sites or files with a UNIX version of the various browsers, but that could be because the JScript only hits Windows systems. It would not surprise me if Netscape/AOL has left some nasty little holes like that in the UNIX versions. I did have one JavaScript virus get my UNIX browser, and it basically started peppering me with ads related to every page I went to. The heavy integration of Java/Script in Mozilla worries me, besides it being so horribly slow. CERT is very correct in recommend these be disabled. Unfortunately there are some sites I use often that require it. It would be nice if you could turn scripting off for all but specific sites. -- shannon@widomaker.com _________________________________________________ ______________________/ armchairrocketscientistgraffitiexenstentialist "And in billows of might swell the Saxons before her,-- Unite, oh unite! Or the billows burst o'er her!" -- Downfall of the Gael To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 19:48: 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 4FBAE37B401 for ; Fri, 20 Jul 2001 19:47:59 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 94720 invoked by uid 100); 21 Jul 2001 02:47:58 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15192.60766.592020.140581@guru.mired.org> Date: Fri, 20 Jul 2001 21:47:58 -0500 To: Shawn Ramsey Cc: questions@freebsd.org Subject: Re: currently running kernel? In-Reply-To: <48007665@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 Shawn Ramsey types: > Is there anyway to tell which kernel that you booted from? I guess you coud > use uname -a and use a different config file for each kernel, but is there > an easier way? What do you mean by "which kernel"? uname -a gives you the config file name and the date it was built, which some would consider a sufficient identification. If you're doing proper change tracking with cvs or similar, that should allow you to recover the contents of the config file. If you want the contents of the config file without doing change tracking, you can use the INCLUDE_CONFIG_FILE option in the kernel build, and then extract the config file from the kernel with strings and sed. See LINT for details. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 19:48:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r06.mx.aol.com (imo-r06.mx.aol.com [152.163.225.102]) by hub.freebsd.org (Postfix) with ESMTP id D1D3E37B405 for ; Fri, 20 Jul 2001 19:48:56 -0700 (PDT) (envelope-from JakeCatfox@aol.com) Received: from JakeCatfox@aol.com by imo-r06.mx.aol.com (mail_out_v31.9.) id n.121.1f6de3c (4188) for ; Fri, 20 Jul 2001 22:48:52 -0400 (EDT) From: JakeCatfox@aol.com Message-ID: <121.1f6de3c.288a4794@aol.com> Date: Fri, 20 Jul 2001 22:48:52 EDT Subject: Making a FreeBSD CD-ROM 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 138 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm making a FreeBSD CD-ROM to install from. What is the directory structure for the src dir? I tried putting the files in their own folders (sbin, sinclude, sbase, etc.) in the src dir in the cdrom's / directory .. but no luck. What should I be doing? .. -- Deven To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 20: 1:54 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 DB17037B401 for ; Fri, 20 Jul 2001 20:01:50 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 95146 invoked by uid 100); 21 Jul 2001 03:01:49 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15192.61597.755372.771975@guru.mired.org> Date: Fri, 20 Jul 2001 22:01:49 -0500 To: jonas Cc: questions@freebsd.org Subject: Re: help with growfs on 4.3-STABLE In-Reply-To: <91587784@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 jonas types: > When I was young and stupid ( :-) ) I partitioned my hard drive as: > > Offset Size(ST) End Name PType Desc Subtype > Flags > > 0 63 62 - 6 unused > 0 > 63 4188177 4188239 ad0s1 2 fat 6 > 4188240 1043280 5231519 ad0s2 3 freebsd 165 > C > 5231520 8179920 13411439 ad0s3 4 extended 5 > 13411440 8179920 21591359 ad0s4 3 freebsd 165 > 21591360 1980720 23572079 - 6 unused 0 > > What I didn't know at that time was that I could only have four > partitions. BSD uses a different terminology than MS - the four disk segments identified by the standard boot block table are "slices". The disk segments inside a slice that BSD uses are "partitions" - and have been since the early 70s. > The problem: > > I would like to extend ad0s4 to use all the space availble on the disk. > Then I would like to use growfs to grow the filesystem on that partition > ( /usr ) to use the newly created space in the partition. > > Is that possible? Depends on what you mean by "all the space on the disk". If you are talking about the unused space that follows s4, yes. If you're talking about s1, s2, and s3 as well, then no. The first sectors of a disk segment are the critical ones. You can only safely add space to a slice or a partition if the space follows it on the disk, not if it precedes it. > Last time I tried to change the partition size I ended up with the ad0s4 > unreadable. I managed to restore it by restoring the original valus in > the partition table. > > So, the question is: > How do I resize a partition without loosing it? You should be able to just change the size on s4 to include the unused space. Once that's done and you have extra space in s4, you can use disklabel to do the same thing. As in the note above, you can only add space to /usr if that space directly follows /usr on the disk. After you've edited it with disklabel, you can use growfs to grow the file system to use the new space. If the last partition on ad0s4 isn't /usr, you have to move that partition by hand, or grow it instead of growing /usr. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 20: 3: 2 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 30D8A37B405 for ; Fri, 20 Jul 2001 20:02:56 -0700 (PDT) (envelope-from taylorm@bytecraftsystems.com) Received: from pc99101401.bytecraft.au.com (unknown [203.39.118.42]) by wombat.bytecraft.au.com (Postfix) with SMTP id E95573E9F; Sat, 21 Jul 2001 13:02:49 +1000 (EST) Message-ID: <00de01c11191$f2dbb660$2a7627cb@bytecraft.au.com> From: "MurrayTaylor" To: "Neill Robins" Cc: References: <122211770169.20010720180307@nc.rr.com> Subject: Re: Startup Scripts version 2 Date: Sat, 21 Jul 2001 13:05:08 +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 Really dumb response chmod u+x startup.sh to make it executable .... ----- Original Message ----- From: "Neill Robins" To: "Todd Reed" Cc: Sent: Saturday, July 21, 2001 8:03 AM Subject: Re: Startup Scripts version 2 > Friday, July 20, 2001, 4:12:26 PM, Todd Reed wrote: > TR> I created a /usr/local/rc.d called startup.sh. When I restart my machine, > TR> it doesn't seem to execute. Below is the code in the sh file. What am I > TR> doing wrong? Do I have to edit the rc.conf? > > > TR> #!/bin/sh > TR> # > > TR> /sbin/ldconfig -m /usr/local/lib/mysql > > TR> if [ -x /mnt/vdrv/dbms/bin/safe_mysqld ] > TR> then > TR> /mnt/vdrv/dbms/bin/safe_mysqld > /dev/null & && echo -n ` mysql` > TR> fi > > Todd, > > Mike Meyer just might have the answer. Give this a try. > > From Mike Meyer: > > It > should also check for the arguments "start" and "stop" so it can be > used at system startup and system shutdown time. Here's a trivial > example: > > #!/bin/sh > > MIXERSTATE=/var/db/mixer-state > > case $1 in > start) > [ -r $MIXERSTATE ] && /usr/sbin/mixer `cat $MIXERSTATE` > /dev/null > ;; > stop) > /usr/sbin/mixer -s > $MIXERSTATE > ;; > *) > echo "usage: `basename $0` {start|stop}" >&2 > exit 64 > ;; > esac > > -- > Mike Meyer http://www.mired.org/home/mwm/ > Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. > > > > > > -- > Good Luck, > -Neill > freebsd@nc.rr.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 20 20: 8:42 2001 Delivered-To: freebsd-questions@freebsd.org Received: from trevarno.llnl.gov (otsb-port-4.llnl.gov [128.15.179.204]) by hub.freebsd.org (Postfix) with ESMTP id AA2A337B406 for ; Fri, 20 Jul 2001 20:08:38 -0700 (PDT) (envelope-from alley1@llnl.gov) Received: from localhost (wea@localhost) by trevarno.llnl.gov (8.11.4/8.11.4) with ESMTP id f6L38aR00518; Fri, 20 Jul 2001 20:08:36 -0700 (PDT) Date: Fri, 20 Jul 2001 20:08:35 -0700 (PDT) From: Ed Alley To: freebsd-questions@freebsd.org Cc: wea@llnl.gov Subject: Why panic when mounting bad CD? 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 FreeBSD 4.3 with an HP 9500 ide CD-RW. The CD-RW works fine and I have burned many CD's with it. However, I mistakenly attempted to mount a CD that I forgot to fixate. I got a kernel panic. Fortunatly fsck was able to repair the damage after a reboot. My question is why does the kernel panic under these conditions? Does it get lost trying to find the disklabel or does the kernel think that the numbers it picked up are the disklabel and merrily goes off into some other world looking for the superblock? Wouldn't it be a good idea to have a magic number in with the disklabel that the kernel could test against before it believes what it finds? I am just looking for understanding here, no flames intended. :) Ed Alley wea@llnl.gov To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 20:45:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mydomain.com (61-218-44-20.HINET-IP.hinet.net [61.218.44.20]) by hub.freebsd.org (Postfix) with SMTP id 6742D37B405; Fri, 20 Jul 2001 20:45:13 -0700 (PDT) (envelope-from zQ516YQwYbwc2@ara.seed.net.tw) Received: from tcts by microsoft.com with SMTP id 4rvRKXErtPsjrH; Sat, 21 Jul 2001 11:49:22 +0800 Message-ID: From: coolme@com.tw To: mail@FreeBSD.ORG Subject:=?big5?Q?=A8=D3=B3o=AC=DD=BA=A9=B5e=B0=D5=A1I?= MIME-Version: 1.0 Content-Type: multipart/related; type="multipart/alternative"; boundary="----=_NextPart_UzdtXTlGlszlmc48m2WtE7G" X-Mailer: 5AYtpC1myz9ScJEjLbIc5 X-Priority: 3 X-MSMail-Priority: Normal Date: Fri, 20 Jul 2001 20:45:13 -0700 (PDT) Sender: owner-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_UzdtXTlGlszlmc48m2WtE7G Content-Type: multipart/alternative; boundary="----=_NextPart_UzdtXTlGlszlmc48m2WtE7GAA" ------=_NextPart_UzdtXTlGlszlmc48m2WtE7GAA Content-Type: text/html; charset="big5" Content-Transfer-Encoding: base64 PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT5Db29sbWUuLi5Db29sbWUuLi4uLjwvdGl0bGU+DQo8bWV0 YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1i aWc1Ij4NCjwvaGVhZD4NCg0KPGJvZHkgYmdjb2xvcj0iI0ZGRkZDQyIgdGV4dD0iIzAwMzMwMCIg bGluaz0iIzk5MDAwMCIgdmxpbms9IiMwMDMzMDAiIGFsaW5rPSIjMDA2NjY2Ij4NCjx0YWJsZSBi b3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMSIgYWxpZ249ImNlbnRlciI+ DQogIDx0cj4gDQogICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIj4gDQogICAg ICA8ZGl2IGFsaWduPSJjZW50ZXIiPiANCiAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHNw YWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIxIiBhbGlnbj0iY2VudGVyIj4NCiAgICAgICAgICA8dHI+ IA0KICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIGJnY29sb3I9IiNGRkNDNjYiIHZhbGln bj0ibWlkZGxlIj6huTxmb250IHNpemU9IjIiPrPfxXes3bqptWW23KFIqNM8L2ZvbnQ+PGEgaHJl Zj0iaHR0cDovL3d3dy5jb29sbWUuY29tLnR3IiB0YXJnZXQ9Il9ibGFuayI+PGZvbnQgc2l6ZT0i NCIgY29sb3I9IiM5OTAwMDAiPkNvb2xNZTwvZm9udD48L2E+PGZvbnQgc2l6ZT0iMiI+rN2s3aFJ PC9mb250PjwvdGQ+DQogICAgICAgICAgPC90cj4NCiAgICAgICAgICA8dHI+IA0KICAgICAgICAg ICAgPHRkIGFsaWduPSJjZW50ZXIiIGJnY29sb3I9IiNGRkZGOTkiIHZhbGlnbj0ibWlkZGxlIj6h uTxmb250IHNpemU9IjIiPrdRsW+o7LPMt3OzzKfWqrq6qbVlpHC7obnPpOW46rBUttyhSajTPC9m b250PjxhIGhyZWY9Imh0dHA6Ly93d3cuY29vbG1lLmNvbS50dyIgdGFyZ2V0PSJfYmxhbmsiPjxm b250IHNpemU9IjQiIGNvbG9yPSIjOTkwMDAwIj5Db29sTWU8L2ZvbnQ+PC9hPjxmb250IHNpemU9 IjIiPqzdrN2hSTwvZm9udD48L3RkPg0KICAgICAgICAgIDwvdHI+DQogICAgICAgICAgPHRyPiAN CiAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiBiZ2NvbG9yPSIjRkZDQzY2IiB2YWxpZ249 Im1pZGRsZSI+obk8Zm9udCBzaXplPSIyIj63UazdsOqkuqV+uqm1Za5hqrq69K22ttyhSKjTPC9m b250PjxhIGhyZWY9Imh0dHA6Ly93d3cuY29vbG1lLmNvbS50dyIgdGFyZ2V0PSJfYmxhbmsiPjxm b250IHNpemU9IjQiIGNvbG9yPSIjOTkwMDAwIj5Db29sTWU8L2ZvbnQ+PC9hPjxmb250IHNpemU9 IjIiPqzdrN2hSTwvZm9udD48L3RkPg0KICAgICAgICAgIDwvdHI+DQogICAgICAgICAgPHRyPiAN CiAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiBiZ2NvbG9yPSIjRkZGRjk5IiB2YWxpZ249 Im1pZGRsZSI+obk8Zm9udCBzaXplPSIyIj63UaqxpHC5Q8C4ttyhSKjTPC9mb250PjxhIGhyZWY9 Imh0dHA6Ly93d3cuY29vbG1lLmNvbS50dyIgdGFyZ2V0PSJfYmxhbmsiPjxmb250IHNpemU9IjQi IGNvbG9yPSIjOTkwMDAwIj5Db29sTWU8L2ZvbnQ+PC9hPjxmb250IHNpemU9IjIiPqzdrN2hSTwv Zm9udD48L3RkPg0KICAgICAgICAgIDwvdHI+DQogICAgICAgICAgPHRyPiANCiAgICAgICAgICAg IDx0ZCBhbGlnbj0iY2VudGVyIiBiZ2NvbG9yPSIjRkZDQzY2IiB2YWxpZ249Im1pZGRsZSI+obk8 Zm9udCBzaXplPSIyIj63Ua1xvly5caRss/i23KFIqNM8L2ZvbnQ+PGEgaHJlZj0iaHR0cDovL3d3 dy5jb29sbWUuY29tLnR3IiB0YXJnZXQ9Il9ibGFuayI+PGZvbnQgc2l6ZT0iNCIgY29sb3I9IiM5 OTAwMDAiPkNvb2xNZTwvZm9udD48L2E+PGZvbnQgc2l6ZT0iMiI+rN2s3aFJPC9mb250PjwvdGQ+ DQogICAgICAgICAgPC90cj4NCiAgICAgICAgICA8dHI+IA0KICAgICAgICAgICAgPHRkIGFsaWdu PSJjZW50ZXIiIGJnY29sb3I9IiNGRkZGOTkiIHZhbGlnbj0ibWlkZGxlIj6huTxmb250IHNpemU9 IjIiPrdRqr65RKS1pNGlWKqppEaksLvyt3Ou0bbcoUio0zwvZm9udD48YSBocmVmPSJodHRwOi8v d3d3LmNvb2xtZS5jb20udHciIHRhcmdldD0iX2JsYW5rIj48Zm9udCBzaXplPSI0IiBjb2xvcj0i Izk5MDAwMCI+Q29vbE1lPC9mb250PjwvYT48Zm9udCBzaXplPSIyIj6s3azdoUk8L2ZvbnQ+PC90 ZD4NCiAgICAgICAgICA8L3RyPg0KICAgICAgICAgIDx0cj4gDQogICAgICAgICAgICA8dGQgYWxp Z249ImNlbnRlciIgYmdjb2xvcj0iI0ZGQ0M2NiIgdmFsaWduPSJtaWRkbGUiPqG5PGZvbnQgc2l6 ZT0iMiI+t1Gxb6q+prPD9rDqpLqlfrqptWWhQaTlw8CkcLuhoUGqWqtMpHC7oaq6pECkwbjqsFSo 0zwvZm9udD48YSBocmVmPSJodHRwOi8vd3d3LmNvb2xtZS5jb20udHciPjxmb250IHNpemU9IjUi IGNvbG9yPSIjOTkwMDAwIj5Db29sTWU8L2ZvbnQ+PC9hPjxmb250IHNpemU9IjIiPrROqFO/+bDV oUk8L2ZvbnQ+PC90ZD4NCiAgICAgICAgICA8L3RyPg0KICAgICAgICA8L3RhYmxlPg0KICAgICAg PC9kaXY+DQogICAgPC90ZD4NCiAgPC90cj4NCiAgPHRyPiANCiAgICA8dGQgYWxpZ249ImNlbnRl ciIgdmFsaWduPSJtaWRkbGUiPg0KICAgICAgPHRhYmxlIGJvcmRlcj0iMyIgY2VsbHNwYWNpbmc9 IjAiIGNlbGxwYWRkaW5nPSIxIiBhbGlnbj0iY2VudGVyIiBib3JkZXJjb2xvcj0iIzY2MzMwMCI+ DQogICAgICAgIDx0cj4gDQogICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlk ZGxlIj4gDQogICAgICAgICAgICA8ZGl2IGFsaWduPSJjZW50ZXIiPjxpbWcgc3JjPSJodHRwOi8v aG9tZS5naWdpZ2FnYS5jb20vc2F5YWtvXzYzMTAwNy9tYWlsZ2lmLmdpZiIgd2lkdGg9IjUwMCIg aGVpZ2h0PSI0MDAiIHVzZW1hcD0iI01hcE1hcE1hcCIgYm9yZGVyPSIwIiBuYW1lPSJjb29sbWUi IGFsdD0iXisrKyteX7vFsGe69LWlp0Go065AoUkiPjwvZGl2Pg0KICAgICAgICAgIDwvdGQ+DQog ICAgICAgIDwvdHI+DQogICAgICA8L3RhYmxlPg0KICAgICAgPG1hcCBuYW1lPSJNYXBNYXBNYXAi PiANCiAgICAgICAgPGFyZWEgc2hhcGU9InJlY3QiIGNvb3Jkcz0iMjYwLDM1MCw0ODgsMzgyIiBo cmVmPSJodHRwOi8vd3d3LmNvb2xtZS5jb20udHciIHRhcmdldD0iX2JsYW5rIiBhbHQ9Imh0dHA6 Ly93d3cuY29vbG1lLmNvbS50dyIgdGl0bGU9Imh0dHA6Ly93d3cuY29vbG1lLmNvbS50dyI+DQog ICAgICA8L21hcD4NCiAgICA8L3RkPg0KICA8L3RyPg0KICA8dHI+IA0KICAgIDx0ZCBhbGlnbj0i Y2VudGVyIiB2YWxpZ249Im1pZGRsZSI+IA0KICAgICAgPGRpdiBhbGlnbj0iY2VudGVyIj48Zm9u dCBzaXplPSIyIj48Zm9udCBjb2xvcj0iIzMzMDAwMCI+IyMjIyMjIyMjpKOz38V3uqm1Zaq6qkKk zS4uLi4uLi4uLi6laaVIpKOlzrJ6t3yzb6RAq8pNYWlsLi4uLi4uLrftp9qoU6azsUi5TKdhoUkj IyMjIyMjIyMjIA0KICAgICAgICA8L2ZvbnQ+PC9mb250PiANCiAgICAgICAgPG1hcCBuYW1lPSJN YXBNYXAiPiANCiAgICAgICAgICA8YXJlYSBzaGFwZT0icmVjdCIgY29vcmRzPSIyNjAsMzUwLDQ4 OCwzODIiIGhyZWY9Imh0dHA6Ly93d3cuY29vbG1lLmNvbS50dyIgdGFyZ2V0PSJfYmxhbmsiIGFs dD0iaHR0cDovL3d3dy5jb29sbWUuY29tLnR3IiB0aXRsZT0iaHR0cDovL3d3dy5jb29sbWUuY29t LnR3Ij4NCiAgICAgICAgPC9tYXA+DQogICAgICA8L2Rpdj4NCiAgICA8L3RkPg0KICA8L3RyPg0K PC90YWJsZT4NCjxwIGFsaWduPSJjZW50ZXIiPiZuYnNwOzwvcD4NCjxicj4NCjxkaXYgYWxpZ249 ImNlbnRlciI+PGZvbnQgc2l6ZT0iMiI+PGJyPg0KICA8L2ZvbnQ+IA0KICA8bWFwIG5hbWU9Ik1h cCI+IA0KICAgIDxhcmVhIHNoYXBlPSJyZWN0IiBjb29yZHM9IjI2MCwzNTAsNDg4LDM4MiIgaHJl Zj0iaHR0cDovL3d3dy5jb29sbWUuY29tLnR3IiB0YXJnZXQ9Il9ibGFuayIgYWx0PSJodHRwOi8v d3d3LmNvb2xtZS5jb20udHciIHRpdGxlPSJodHRwOi8vd3d3LmNvb2xtZS5jb20udHciPg0KICA8 L21hcD4NCjwvZGl2Pg0KPC9ib2R5Pg0KPC9odG1sPiA= ------=_NextPart_UzdtXTlGlszlmc48m2WtE7GAA-- ------=_NextPart_UzdtXTlGlszlmc48m2WtE7G-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 20:49:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from wilma.widomaker.com (wilma.widomaker.com [204.17.220.5]) by hub.freebsd.org (Postfix) with ESMTP id 9473937B401 for ; Fri, 20 Jul 2001 20:49:34 -0700 (PDT) (envelope-from shannon@widomaker.com) Received: from [209.96.179.130] (helo=escape.shannon.net) by wilma.widomaker.com with esmtp (Exim 3.22 #2) id 15Nnlk-0004vR-00 for freebsd-questions@freebsd.org; Fri, 20 Jul 2001 23:49:33 -0400 Received: (from shannon@localhost) by escape.shannon.net (8.11.0/8.8.8) id f6L3k0310817 for freebsd-questions@freebsd.org; Fri, 20 Jul 2001 23:46:00 -0400 (EDT) Date: Fri, 20 Jul 2001 23:45:59 -0400 From: Shannon To: freebsd-questions@freebsd.org Subject: Re: netscape6 (linux) Message-ID: <20010720234559.B10722@widomaker.com> Mail-Followup-To: freebsd-questions@freebsd.org References: <20010719213813.I507@elexis.uwiland.com> <20010719184015.A1899@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010719184015.A1899@localhost>; from ipthomas_77@yahoo.com on Thu, Jul 19, 2001 at 06:40:15PM -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 19, 2001 at 06:40:15PM -0400, User & Ian Patrick Thomas wrote: > As it was put forth by Linh Pham on Thu, Jul 19, 2001 at 02:33:05PM -0700... > > On 2001-07-19, uwi mAn scribbled: > > > > # i installed linux-rpm support though. > > # > > # %./netscape-installer > > # ./netscape-installer-bin: error in loading shared libraries: > > # libgtk-1.2.so.0: cannot open shared object file: No such file or directory > > # > > # No way to install Netscape 6.1 (linux) onto BSD 4.3 release ? > > > > You can build Mozilla 0.92 (Netscape 6.1 is based on either Mozilla 0.8 > > or 0.9, but forgot which one) from the latest ports. I have 0.92 running > > on my laptop and it seems to do perfectly (with the exception of not > > liking the new theme... but the classic theme works without a problem). > I am also using mozilla 0.9.2,1 on my box. It's a huge leap forward in > speed and reliability from the .8 series. Both modern and classic work on > mine with no problems. Do you have an error message for when you try to > change to the modern skin? Do you happen to know if it is any kind of speed improvement over Mozilla 0.9.1? -- shannon@widomaker.com _________________________________________________ ______________________/ armchairrocketscientistgraffitiexenstentialist "And in billows of might swell the Saxons before her,-- Unite, oh unite! Or the billows burst o'er her!" -- Downfall of the Gael To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 20:51:21 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 67C2737B403 for ; Fri, 20 Jul 2001 20:51:19 -0700 (PDT) (envelope-from parv@worldnet.att.net) Received: from worldnet.att.net ([32.100.199.156]) by mtiwmhc26.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010721035114.YEIY2154.mtiwmhc26.worldnet.att.net@worldnet.att.net> for ; Sat, 21 Jul 2001 03:51:14 +0000 Received: by worldnet.att.net (Postfix, from userid 1001) id BE72250BC5; Fri, 20 Jul 2001 23:55:08 -0400 (EDT) Date: Fri, 20 Jul 2001 23:55:08 -0400 From: parv To: f-q Subject: knob(s) for making ports w/ debugging symbols & installing unstripped Message-ID: <20010720235508.A40888@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 is there a easy way to specify "-g" on per usage basis while building ports (to build them w/ debugging symbols) instead of editing Makefiles or /etc/make.conf? and, after i have built a port w/ debugging symbols, how do i go about installing a port unstripped? -- 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 20 20:55:54 2001 Delivered-To: freebsd-questions@freebsd.org Received: from out5.mx.nwbl.wi.voyager.net (out5.mx.nwbl.wi.voyager.net [169.207.2.77]) by hub.freebsd.org (Postfix) with ESMTP id CF6FC37B401 for ; Fri, 20 Jul 2001 20:55:47 -0700 (PDT) (envelope-from dpoland@execpc.com) Received: from earth.execpc.com (dpoland@earth.execpc.com [169.207.16.1]) by out5.mx.nwbl.wi.voyager.net (8.11.1/8.11.1) with ESMTP id f6L3tDK63716; Fri, 20 Jul 2001 22:55:29 -0500 (CDT) Received: (from dpoland@localhost) by earth.execpc.com (8.9.0) id WAA22265; Fri, 20 Jul 2001 22:55:07 -0500 (CDT) Date: Fri, 20 Jul 2001 22:55:07 -0500 From: Doug Poland To: Shannon Cc: freebsd-questions@freebsd.org Subject: Re: netscape6 (linux) Message-ID: <20010720225507.B21169@polands.org> Mail-Followup-To: Shannon , freebsd-questions@freebsd.org References: <20010719213813.I507@elexis.uwiland.com> <20010719184015.A1899@localhost> <20010720234559.B10722@widomaker.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3us In-Reply-To: <20010720234559.B10722@widomaker.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jul 20, 2001 at 11:45:59PM -0400, Shannon wrote: > On Thu, Jul 19, 2001 at 06:40:15PM -0400, User & Ian Patrick Thomas wrote: > > As it was put forth by Linh Pham on Thu, Jul 19, 2001 at 02:33:05PM -0700... > > > On 2001-07-19, uwi mAn scribbled: > > > > > > # i installed linux-rpm support though. > > > # > > > # %./netscape-installer > > > # ./netscape-installer-bin: error in loading shared libraries: > > > # libgtk-1.2.so.0: cannot open shared object file: No such file or directory > > > # > > > # No way to install Netscape 6.1 (linux) onto BSD 4.3 release ? > > > > > > You can build Mozilla 0.92 (Netscape 6.1 is based on either Mozilla 0.8 > > > or 0.9, but forgot which one) from the latest ports. I have 0.92 running > > > on my laptop and it seems to do perfectly (with the exception of not > > > liking the new theme... but the classic theme works without a problem). > > I am also using mozilla 0.9.2,1 on my box. It's a huge leap forward in > > speed and reliability from the .8 series. Both modern and classic work on > > mine with no problems. Do you have an error message for when you try to > > change to the modern skin? > > Do you happen to know if it is any kind of speed improvement over > Mozilla 0.9.1? > I can't quantify it but 0.9.2 seems considerably faster on a 900MHz Athalon and 866 PIII. The modern theme changed a little and looks more GNOMEish. The fonts seem to be smaller too. -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 21:20:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail12.sdc1.sfba.home.com (femail12.sdc1.sfba.home.com [24.0.95.108]) by hub.freebsd.org (Postfix) with ESMTP id 1E99A37B405 for ; Fri, 20 Jul 2001 21:20:21 -0700 (PDT) (envelope-from btdang@home.com) Received: from home.com ([24.248.85.196]) by femail12.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010721042020.GLIP28228.femail12.sdc1.sfba.home.com@home.com>; Fri, 20 Jul 2001 21:20:20 -0700 Message-ID: <3B59045F.A67B9135@home.com> Date: Fri, 20 Jul 2001 21:26:07 -0700 From: Bruce Dang Organization: Boys & Girls Clubs X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: JakeCatfox@aol.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Making a FreeBSD CD-ROM References: <121.1f6de3c.288a4794@aol.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 go download the iso from ftp.freebsd.org ;(. if u don't wnat to, just copy the directory structure on the 4.3-release JakeCatfox@aol.com wrote: > > I'm making a FreeBSD CD-ROM to install from. What is the directory structure > for the src dir? I tried putting the files in their own folders (sbin, > sinclude, sbase, etc.) in the src dir in the cdrom's / directory .. but no > luck. What should I be doing? .. > > -- Deven > > 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 20 22:14: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from day.uws.edu.au (day.uws.edu.au [137.154.210.66]) by hub.freebsd.org (Postfix) with ESMTP id 7DE8637B401 for ; Fri, 20 Jul 2001 22:13:57 -0700 (PDT) (envelope-from 99053811@day.uws.edu.au) Received: from scholar.nepean.uws.edu.au (dho@[137.154.149.4]) by day.uws.edu.au (8.11.1/8.11.1) with SMTP id f6L5DU913378; Sat, 21 Jul 2001 15:13:30 +1000 (EST) From: Danny K Ho <99053811@day.uws.edu.au> Message-Id: <200107210513.f6L5DU913378@day.uws.edu.au> Date: Sat, 21 Jul 2001 15:13:29 EST (EST) To: bsd2000au@yahoo.com.au Cc: questions@freebsd.org Subject: Re: PPPoE Problem X-Mailer: UWS Mail Gateway X-URL: http://www.cit.uws.edu.au Sender: owner-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 managed to get this the following error message fixed Jul 19 18:46:45 freebsd / kernel: module register: > > module netgraph already exists > > Jul 19 18:46:45 freebsd / kernel: linker = > > file_sysinit > > netgraph .ko fialed to resolve by adding a line in the options NETGRAPH_ENTHER -However, I constantly get the following error message in /var/log/ppp.log > > jul 19 18:49:03 freebsd ppp[146] tun0: > > Phase:deflink: connected ! > > jul 19 18:49:03 freebsd ppp[146] tun0: > > Phase:deflink: opening -> dial > > jul 19 18:49:03 freebsd ppp[146] tun0: > > Phase:deflink: dial -> carrier > > jul 19 18:49:03 freebsd ppp[146] tun0: > > Phase:deflink: disconnected ! > > jul 19 18:49:03 freebsd ppp[146] tun0: > > Phase:deflink: connection time > > jul 19 18:49:03 freebsd ppp[146] tun0: > > Phase:deflink: 0 Packets > > jul 19 18:49:03 freebsd ppp[146] tun0: > > Phase:deflink: hangup -> opening or redialing -I have followed the instruction on PPPoE in the FreeBSD handbook exactly and still get the following error message. - How would I go abvout getting rid of the error message in ppp.log? You wrote: > From: =?iso-8859-1?q?Keith=20Spencer?= > To: Danny K Ho <99053811@day.uws.edu.au> > Date: Fri, 20 Jul 2001 09:58:04 +1000 (EST) > Subject: Re: PPPoE Problem > > > Hi, > Known bug Danny. Did you ensure the PPPoE NIC > interface was "UP" first? > e.g. for a DE0 NIC do... > ifconfig DE0 UP > or simply reboot instead (so long as rc.conf is > configured ok > Bye > KEITH > > --- Danny K Ho <99053811@day.uws.edu.au> wrote: > > Hello > > > > I am running FreeBSD 4.3 > > I have completed the following steps : > > > > - compiled the KERNEL with options NETGRAPH, options > > NETGRAPH_PPOE, options NETGRAPH_SOCKET according to > > the section 15.4.2 of the handbook > > - Added the following ppp.conf according to the > > freebsd handbook in section 15.4.3 > > - Starting PPP at Boot in /etc/rc.conf according to > > section 15.4.5 > > > > Why do I keep getting this error message in > > /var/log/ppp.log > > > > jul 19 18:49:03 freebsd ppp[146] tun0: > > Phase:deflink: connected ! > > jul 19 18:49:03 freebsd ppp[146] tun0: > > Phase:deflink: opening -> dial > > jul 19 18:49:03 freebsd ppp[146] tun0: > > Phase:deflink: dial -> carrier > > jul 19 18:49:03 freebsd ppp[146] tun0: > > Phase:deflink: disconnected ! > > jul 19 18:49:03 freebsd ppp[146] tun0: > > Phase:deflink: connection time > > jul 19 18:49:03 freebsd ppp[146] tun0: > > Phase:deflink: 0 Packets > > jul 19 18:49:03 freebsd ppp[146] tun0: > > Phase:deflink: hangup -> opening or redialing > > > > I also get the following error message in > > /var/log/messages > > > > Jul 19 18:46:45 freebsd / kernel: module register: > > module netgraph already exists > > Jul 19 18:46:45 freebsd / kernel: linker = > > file_sysinit > > netgraph .ko fialed to resolve > > > > > > > > > > > > What have I done incorrectly and how do I fix it? > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of > > the message > > _____________________________________________________________________________ > http://messenger.yahoo.com.au - Yahoo! Messenger > - Voice chat, mail alerts, stock quotes and favourite news and lots more! > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 22:15:36 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 4B18837B405 for ; Fri, 20 Jul 2001 22:15:33 -0700 (PDT) (envelope-from dan_johnson@att.net) Received: from webmail.worldnet.att.net ([204.127.135.58]) by mtiwmhc24.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with SMTP id <20010721051532.NSUA3707.mtiwmhc24.worldnet.att.net@webmail.worldnet.att.net> for ; Sat, 21 Jul 2001 05:15:32 +0000 Received: from [146.186.226.185] by webmail.worldnet.att.net; Sat, 21 Jul 2001 05:15:31 +0000 From: dan_johnson@att.net To: freebsd-questions@freebsd.org Subject: FreeBSD as IPX gateway/router for Gaming Date: Sat, 21 Jul 2001 05:15:31 +0000 X-Mailer: AT&T Message Center Version 1 (May 2 2001) Message-Id: <20010721051532.NSUA3707.mtiwmhc24.worldnet.att.net@webmail.worldnet.att.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, currently i have my old 486/66 w/ 32mb ram setup as a gateway/router for TCP/IP on my ethernet lan, wireless 802.11b lan, and modem to the internet using 3.2- RELEASE. I was wondering what i need to get setup in order for the same box to forward ipx frames between the wireless and wired lan for ipx based gaming (Warcraft 2 :-D), i've looked around, but there seems to be a general lack (compared to everything else) of ipx documentation. Thanks in Advance, Daniel Johnson P.S. i am not currently subscribed to any mailing lists, so pleace forward responses to me directly as well. -- If knowledge is power, and power is sexy. Then why am i still single? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 22:30:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from web9301.mail.yahoo.com (web9301.mail.yahoo.com [216.136.129.50]) by hub.freebsd.org (Postfix) with SMTP id AD1E537B405 for ; Fri, 20 Jul 2001 22:30:36 -0700 (PDT) (envelope-from chadrbyars@yahoo.com) Message-ID: <20010721053036.63381.qmail@web9301.mail.yahoo.com> Received: from [172.183.6.143] by web9301.mail.yahoo.com via HTTP; Fri, 20 Jul 2001 22:30:36 PDT Date: Fri, 20 Jul 2001 22:30:36 -0700 (PDT) From: Chad Byars Subject: No documetation!!! Why!! 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 How come you don't seem to have any documentation on something as basic as configuring the IP address and subnet mask? The damn handbook covers dialup, ppp, slip and every other thing but ethernet. What gives? Chad Byars ===== test __________________________________________________ Do You Yahoo!? Make international calls for as low as $.04/minute with Yahoo! Messenger http://phonecard.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 20 22:41:49 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 5AA6237B401 for ; Fri, 20 Jul 2001 22:41:47 -0700 (PDT) (envelope-from achornback@worldnet.att.net) Received: from tomcat ([12.93.210.161]) by mtiwmhc21.worldnet.att.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with SMTP id <20010721054146.HOVZ3208.mtiwmhc21.worldnet.att.net@tomcat>; Sat, 21 Jul 2001 05:41:46 +0000 From: "Andrew C. Hornback" To: "Chad Byars" , Subject: RE: No documetation!!! Why!! Date: Sat, 21 Jul 2001 01:41:43 -0400 Message-ID: <003201c111a7$d2e7c5e0$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: <20010721053036.63381.qmail@web9301.mail.yahoo.com> 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: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Chad Byars > Sent: Saturday, July 21, 2001 1:31 AM > To: freebsd-questions@FreeBSD.ORG > Subject: No documetation!!! Why!! > > How come you don't seem to have any documentation on > something as basic as configuring the IP address and > subnet mask? The damn handbook covers dialup, ppp, > slip and every other thing but ethernet. What gives? Umm... man ifconfig. --- andy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 22:51:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mostgraveconcern.com (mostgraveconcern.com [216.82.145.240]) by hub.freebsd.org (Postfix) with ESMTP id EBA7937B401 for ; Fri, 20 Jul 2001 22:51:49 -0700 (PDT) (envelope-from dan@mostgraveconcern.com) Received: from dan (dan.mostgraveconcern.com [10.20.155.5]) by mostgraveconcern.com (8.11.1/8.11.1) with SMTP id f6L5pmo65691; Fri, 20 Jul 2001 22:51:48 -0700 (PDT) (envelope-from dan@mostgraveconcern.com) Message-ID: <002201c111a9$3adb99a0$059b140a@dan> From: "Dan O'Connor" To: "Chad Byars" , References: <20010721053036.63381.qmail@web9301.mail.yahoo.com> Subject: Re: No documetation!!! Why!! Date: Fri, 20 Jul 2001 22:51:47 -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 > How come you don't seem to have any documentation on > something as basic as configuring the IP address and > subnet mask? The damn handbook covers dialup, ppp, > slip and every other thing but ethernet. What gives? (Ethernet) networking is such an integral part of FreeBSD, that it's actually part of the basic install procedure. Check out Chapter 5 of the Handbook (Configuration and Tuning), specifically sections 5.3-5.7. Good luck, --Dan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 23:31:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from server.sarkweb.com (server.sarkweb.com [202.160.149.2]) by hub.freebsd.org (Postfix) with ESMTP id F2DBE37B403 for ; Fri, 20 Jul 2001 23:31:40 -0700 (PDT) (envelope-from fayez1@sarkweb.com) Received: from pc (gateway.sarkweb.com [202.160.149.3] (may be forged)) by server.sarkweb.com (8.9.3/8.9.2) with SMTP id QAA49337 for ; Sat, 21 Jul 2001 16:31:28 +1000 (EST) (envelope-from fayez1@sarkweb.com) Message-ID: <000a01c111af$421c8980$6400a8c0@sarkweb.com> From: "Fayez Sarkis" To: Subject: Hi Date: Sat, 21 Jul 2001 16:34:55 +1000 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C11203.133189A0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C11203.133189A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello im a Internet Provider using FreeBSD and i would like to know what = do i type to show how many people are on the internet and .... how can i = disconnect them individually? Thank You ------=_NextPart_000_0007_01C11203.133189A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hello im a Internet Provider using = FreeBSD and i=20 would like to know what do i type to show how many people are on the = internet=20 and .... how can i disconnect them individually?
 
 
Thank You
 
------=_NextPart_000_0007_01C11203.133189A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 23:38:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imo-d08.mx.aol.com (imo-d08.mx.aol.com [205.188.157.40]) by hub.freebsd.org (Postfix) with ESMTP id DDEC437B401 for ; Fri, 20 Jul 2001 23:38:47 -0700 (PDT) (envelope-from Gina1642@aol.com) Received: from Gina1642@aol.com by imo-d08.mx.aol.com (mail_out_v31.9.) id n.36.18d6fde9 (3934) for ; Sat, 21 Jul 2001 02:38:41 -0400 (EDT) From: Gina1642@aol.com Message-ID: <36.18d6fde9.288a7d70@aol.com> Date: Sat, 21 Jul 2001 02:38:40 EDT Subject: Having trouble getting sound support To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="part1_36.18d6fde9.288a7d70_boundary" X-Mailer: AOL 6.0 for Windows US sub 10528 Sender: owner-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_36.18d6fde9.288a7d70_boundary Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit I have FreeBSD 4.2 . I'm using Sound Blaster 16. Need help getting it to work. --part1_36.18d6fde9.288a7d70_boundary Content-Type: text/html; charset="US-ASCII" Content-Transfer-Encoding: 7bit I have FreeBSD 4.2 .  I'm using Sound Blaster 16. Need help getting it to
work.
--part1_36.18d6fde9.288a7d70_boundary-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jul 20 23:55:22 2001 Delivered-To: freebsd-questions@freebsd.org Received: from creme-brulee.marcuscom.com (rdu26-228-058.nc.rr.com [66.26.228.58]) by hub.freebsd.org (Postfix) with ESMTP id 4020E37B401 for ; Fri, 20 Jul 2001 23:54:05 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from shumai.marcuscom.com (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.11.3/8.11.3) with ESMTP id f6L6qhu53186; Sat, 21 Jul 2001 02:52:43 -0400 (EDT) (envelope-from marcus@marcuscom.com) Date: Sat, 21 Jul 2001 02:54:24 -0400 From: Joe Clarke To: Radhika Sambamurti Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD 4.3 - ports for sawfish Message-ID: <20010721025424.A65028@shumai.marcuscom.com> References: <20010717201120.26457.qmail@web9303.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit In-Reply-To: <20010717201120.26457.qmail@web9303.mail.yahoo.com>; from radhika_narendran@yahoo.com on Tue, Jul 17, 2001 at 16:11:20 -0400 X-Mailer: Balsa 1.1.7 Lines: 32 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Can you include some text from the make so that we can get a better idea of why things are failing? Joe Clarke On 2001.07.17 16:11 Radhika Sambamurti wrote: > I am running FreeBSD 4.3. I have been trying to install the > ports for SAWFISH window manager. > I downloaded the ports from > ftp.freebsd.org/pub/ports/stable..... but the make failed. > It did not compile. The error was stop exit code 1. > > Is there a particular ftp site I can go to that has been > tried and tested for ports, with the 4.3 environment? > > Thx, > Radhika > > ===== > 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 > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 0:56: 8 2001 Delivered-To: freebsd-questions@freebsd.org Received: from spice.eahd.or.ug (spice.eahd.or.ug [216.250.215.140]) by hub.freebsd.org (Postfix) with ESMTP id C50E137B403 for ; Sat, 21 Jul 2001 00:56:02 -0700 (PDT) (envelope-from begj@eahd.or.ug) Received: by spice.eahd.or.ug (Postfix at spice.eahd.or.ug, from userid 520) id C311DF2AB0; Sat, 21 Jul 2001 10:45:06 +0300 (EAT) Received: from localhost (localhost [127.0.0.1]) by spice.eahd.or.ug (Postfix at spice.eahd.or.ug) with ESMTP id C1B6175835; Sat, 21 Jul 2001 10:45:06 +0300 (EAT) Date: Sat, 21 Jul 2001 10:45:06 +0300 (EAT) From: Joseph Begumisa To: reza jamshid Cc: Subject: Re: ssh fatal: Timeout before authentication for 192.168.1.2 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 What do the ssh logs on the FreeBSD machine say? -- Joseph. On Sat, 21 Jul 2001, reza jamshid wrote: > > Hi, > > Recently when ive tried to ssh to my FreeBSD gateway box from my win2k box, > i get this error pop up on the gateway: > > sshd[1847]: fatal: Timeout before authentication for 192.168.1.2 > > ive tried a number of different ssh clients but neither of them can make the > connection. Putty just seems to hang after it asks me for the > password. > > > Any ideas? > > Thanks > > > > _________________________________________________________________ > Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 2: 8: 3 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hungry.spb.cityline.ru (hungry.spb.cityline.ru [212.46.192.3]) by hub.freebsd.org (Postfix) with ESMTP id 1ADE437B403 for ; Sat, 21 Jul 2001 02:07:51 -0700 (PDT) (envelope-from af@spb.cityline.ru) Received: from spb.cityline.ru (grumpy.spb.cityline.ru [212.46.192.200]) by hungry.spb.cityline.ru (8.11.2/8.8/CL) with ESMTP id f6L96v022451 for ; Sat, 21 Jul 2001 13:06:57 +0400 (MSD) Message-ID: <3B594624.9060702@spb.cityline.ru> Date: Sat, 21 Jul 2001 13:06:44 +0400 From: Anton Fedotow Reply-To: af@spb.cityline.ru User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.2) Gecko/20010709 X-Accept-Language: en, ru MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Subject: make fails Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello! when I say "make", I get this: ----------------- linking kernel umass.o: In function `umass_cam_attach_sim': umass.o(.text+0x1257): undefined reference to `cam_simq_alloc' umass.o(.text+0x127d): undefined reference to `cam_sim_alloc' umass.o(.text+0x1296): undefined reference to `xpt_bus_register' umass.o(.text+0x12a6): undefined reference to `cam_simq_free' umass.o: In function `umass_cam_rescan_callback': umass.o(.text+0x12bf): undefined reference to `xpt_free_path' umass.o: In function `umass_cam_rescan': umass.o(.text+0x1309): undefined reference to `xpt_periph' umass.o(.text+0x1312): undefined reference to `xpt_create_path' umass.o(.text+0x1325): undefined reference to `xpt_setup_ccb' umass.o(.text+0x1340): undefined reference to `xpt_action' umass.o: In function `umass_cam_detach_sim': umass.o(.text+0x13f7): undefined reference to `xpt_bus_deregister' umass.o(.text+0x1415): undefined reference to `cam_sim_free' umass.o: In function `umass_cam_detach': umass.o(.text+0x1456): undefined reference to `xpt_create_path' umass.o(.text+0x1477): undefined reference to `xpt_async' umass.o(.text+0x147f): undefined reference to `xpt_free_path' umass.o: In function `umass_cam_action': umass.o(.text+0x179d): undefined reference to `xpt_done' umass.o(.text+0x17ad): undefined reference to `xpt_done' umass.o: In function `umass_cam_cb': umass.o(.text+0x18a1): undefined reference to `xpt_done' umass.o: In function `umass_cam_sense_cb': umass.o(.text+0x1918): undefined reference to `xpt_done' umass.o(.text+0x1929): undefined reference to `xpt_done' *** Error code 1 Stop in /usr/src/sys/compile/NARR1. --------------- here is my kernel config NARR1: ---------------------------- # GENERIC -- Generic kernel configuration file for FreeBSD/i386 # machine i386 cpu I686_CPU ident NARR1 maxusers 8 options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options MFS #Memory Filesystem options MD_ROOT #MD is a potential root device options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device, NFS required options MSDOSFS #MSDOS Filesystem options CD9660 #ISO 9660 Filesystem options CD9660_ROOT #CD-ROM usable as root, CD9660 required options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev 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 # 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 # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 device sio2 at isa? disable port IO_COM3 irq 5 device sio3 at isa? disable port IO_COM4 irq 9 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') device fxp # Intel EtherExpress PRO/100B (82557, 82558) device tx # SMC 9432TX (83c170 ``EPIC'') device vx # 3Com 3c590, 3c595 (``Vortex'') device wx # Intel Gigabit Ethernet Card (``Wiseman'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support device dc # DEC/Intel 21143 and various workalikes device pcn # AMD Am79C79x PCI 10/100 NICs device rl # RealTek 8129/8139 device sf # Adaptec AIC-6915 (``Starfire'') device sis # Silicon Integrated Systems SiS 900/SiS 7016 device ste # Sundance ST201 (D-Link DFE-550TX) device tl # Texas Instruments ThunderLAN device vr # VIA Rhine, Rhine II device wb # Winbond W89C840F device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. device ed0 at isa? port 0x280 irq 10 iomem 0xd8000 device ex device ep device fe0 at isa? port 0x300 # Xircom Ethernet device xe # PRISM I IEEE 802.11b wireless NIC. device awi # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really # exists only as a PCMCIA device, so there is no ISA attachment needed # and resources will always be dynamically assigned by the pccard code. device wi # Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below will # work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP # mode (the factory default). If you set the switches on your ISA # card for a manually chosen I/O address and IRQ, you must specify # those parameters here. device an # The probe order of these is presently determined by i386/isa/isa_compat.c. device ie0 at isa? port 0x300 irq 10 iomem 0xd0000 #device le0 at isa? port 0x300 irq 5 iomem 0xd0000 device lnc0 at isa? port 0x280 irq 10 drq 0 device cs0 at isa? port 0x300 device sn0 at isa? port 0x300 irq 10 # Pseudo devices - the number indicates how many units to allocate. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support 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 device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device usb # USB Bus (required) device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse device uscanner # Scanners # USB Ethernet, requires mii device aue # ADMtek USB ethernet device cue # CATC USB ethernet device kue # Kawasaki LSI USB ethernet ------------------ thanks for your help, you do great work Anton Fedotow Cityline SPb +7(812)329-5504 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 2:33:31 2001 Delivered-To: freebsd-questions@freebsd.org Received: from maila.telia.com (maila.telia.com [194.22.194.231]) by hub.freebsd.org (Postfix) with ESMTP id D5F4837B405 for ; Sat, 21 Jul 2001 02:33:27 -0700 (PDT) (envelope-from watchman@ludd.luth.se) Received: from d1o907.telia.com (d1o907.telia.com [195.252.38.241]) by maila.telia.com (8.11.2/8.11.0) with ESMTP id f6L9XPu27857; Sat, 21 Jul 2001 11:33:26 +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 LAA16766; Sat, 21 Jul 2001 11:33:25 +0200 (CEST) Message-ID: <3B594C5A.F7221426@ludd.luth.se> Date: Sat, 21 Jul 2001 11:33:14 +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: uwi mAn Cc: questions@FreeBSD.ORG Subject: Re: licq References: <20010721030853.A2483@elexis.uwiland.com> 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! uwi mAn wrote: > > It doesnt go "online" sometimes.... gives the following string: > [WRN] Licq: Ignoring stale lockfile (pid 1837) > How to solve it? > Thanks. Prerequisite: Turn off all instances you know off (that you see). First, check if there are any stale licq process(es) running. Try for example: ~js>ps -aux | grep licq ~js>js 543 0.0 2.9 11900 7560 p3 S Tor09pm 6:57.20 licq If anything resembling this appears, kill those processes. Second, check in .licq/ if there are any file called licq.pid. If you find it then remove it. Now there shouldn't be any licq (belonging to your user) running, and none of them should have a stale pid-file (lock file) left. Try running licq again and it should now be ok. Good luck! -- 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 Sat Jul 21 2:33:57 2001 Delivered-To: freebsd-questions@freebsd.org Received: from everest.wananchi.com (everest.wananchi.com [62.8.64.4]) by hub.freebsd.org (Postfix) with ESMTP id 1569D37B403 for ; Sat, 21 Jul 2001 02:33:51 -0700 (PDT) (envelope-from wash@wananchi.com) Received: from wash by everest.wananchi.com with local (Exim 3.31 #5) id 15Nt8z-000LJH-00 for freebsd-questions@FreeBSD.org; Sat, 21 Jul 2001 12:33:53 +0300 Date: Sat, 21 Jul 2001 12:33:53 +0300 From: Odhiambo Washington To: FBSD-Q Subject: [soleil] Help with variable Message-ID: <20010721123353.K60521@everest.wananchi.com> Mail-Followup-To: Odhiambo Washington , FBSD-Q Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2/5bycvrmDh4d1IB" 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-Designation: Systems Administrator, Wananchi Online Ltd. X-Location: Nairobi, KE, East Africa. X-Uptime: 12:21PM up 18:43, 1 user, load averages: 0.06, 0.05, 0.06 Sender: owner-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/5bycvrmDh4d1IB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I am having a problem with a crontab entry. It's not so complicated but a variable seems not to work for me. Here is my crontab file (extracted from /var/cron/tabs) ;-) ################### SHELL=3D/bin/sh PATH=3D/etc:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin://usr/local/sbin HOME=3D/home/wash/Administration/logs FILE=3D/home/wash/Administration/Domains/ FILE2=3D/home/wash/possible-spam.log DATE=3D"`/bin/date +"%w"`" SQUID=3D"/usr/local/squid/logs/access.log" # Generate reports from Squid logs for analysis. CAL=3D"/usr/local/bin/calamaris" CALAMARIS1=3D"/usr/local/bin/calamaris -a -p new -mH" # Generate Squid cache summaries for later use. CALAMARIS2=3D"/usr/local/bin/calamaris -a -o" # Now get Weekly Statistics #STATS=3D"if [ $DAYOFWEEK =3D "0" ]; then /usr/local/bin/calamaris -a -i = daily.1:daily.2:daily.3:daily.4:daily.5:daily.6:daily.0 -zmH "Weekly Squid = Report" | mail wash tole fi" #E-mail domain registrations to Cherotich every first Thursday of every mon= th at#6.00 am 15 14 * * 5 sh $FILE/mailinfo.sh 15 4 * * 6 cp -f /dev/null $FILE2 30 12 * * * cat $SQUID | nice -39 $CALAMARIS1 | mail wash@wananchi.com tole= @wananchi.com=20 25 12 * * * cat $SQUID | nice -39 $CALAMARIS2 daily.$DATE > /dev/null 50 12 * * * if [ $DAYOFWEEK =3D "0" ]; then $CAL -a -i daily.1:daily.2:da= ily.3:daily.4:daily.5:daily.6:daily.0 -zmH "Weekly Squid Report" | mail adm= in@wananchi.com fi" Everytime the cron fails to run with this error "Can't open +"%w"`: No such file or directory" That is something to do with my date variable. On the command line when I try date=3D"`/bin/date +"%w"`" and do echo $date I get the correct thing. I use bash but when I use sh as my shell I also get the correct thing.=20 Where am I going wrong? Someone please help me. 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. I'm very old-fashioned. I believe that people should marry for life, like= =20 pigeons and Catholics.=20 -Woody Allen=20 --2/5bycvrmDh4d1IB 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 iD8DBQE7WUyBn7LIsuxjem8RAgU+AJ96w7+uAzjry7cVOXajzvbtbSu25gCfXsrq PUlMEIAUxanywSr1qVxXHxw= =wQv8 -----END PGP SIGNATURE----- --2/5bycvrmDh4d1IB-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 2:45:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from everest.wananchi.com (everest.wananchi.com [62.8.64.4]) by hub.freebsd.org (Postfix) with ESMTP id C936C37B401 for ; Sat, 21 Jul 2001 02:45:28 -0700 (PDT) (envelope-from wash@wananchi.com) Received: from wash by everest.wananchi.com with local (Exim 3.31 #5) id 15NtKC-000Lcm-00; Sat, 21 Jul 2001 12:45:28 +0300 Date: Sat, 21 Jul 2001 12:45:28 +0300 From: Odhiambo Washington To: freebsd-questions@FreeBSD.org Cc: af@spb.cityline.ru Subject: Re: make fails Message-ID: <20010721124528.L60521@everest.wananchi.com> Mail-Followup-To: Odhiambo Washington , freebsd-questions@FreeBSD.org, af@spb.cityline.ru References: <3B594624.9060702@spb.cityline.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: <3B594624.9060702@spb.cityline.ru> 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: 12:42PM up 19:04, 1 user, load averages: 0.21, 0.16, 0.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 * Anton Fedotow [20010721 12:08]: writing on the subje= ct 'make fails' Anton> Hello! Anton>=20 Anton> when I say "make", I get this: Anton> ----------------- Anton>=20 Anton> linking kernel Anton> umass.o: In function `umass_cam_attach_sim': Anton> umass.o(.text+0x1257): undefined reference to `cam_simq_alloc' Anton> umass.o(.text+0x127d): undefined reference to `cam_sim_alloc' Anton> umass.o(.text+0x1296): undefined reference to `xpt_bus_register' Anton> umass.o(.text+0x12a6): undefined reference to `cam_simq_free' Anton> umass.o: In function `umass_cam_rescan_callback': Anton> umass.o(.text+0x12bf): undefined reference to `xpt_free_path' Anton> umass.o: In function `umass_cam_rescan': Anton> umass.o(.text+0x1309): undefined reference to `xpt_periph' Anton> umass.o(.text+0x1312): undefined reference to `xpt_create_path' Anton> umass.o(.text+0x1325): undefined reference to `xpt_setup_ccb' Anton> umass.o(.text+0x1340): undefined reference to `xpt_action' Anton> umass.o: In function `umass_cam_detach_sim': Anton> umass.o(.text+0x13f7): undefined reference to `xpt_bus_deregister' Anton> umass.o(.text+0x1415): undefined reference to `cam_sim_free' Anton> umass.o: In function `umass_cam_detach': Anton> umass.o(.text+0x1456): undefined reference to `xpt_create_path' Anton> umass.o(.text+0x1477): undefined reference to `xpt_async' Anton> umass.o(.text+0x147f): undefined reference to `xpt_free_path' Anton> umass.o: In function `umass_cam_action': Anton> umass.o(.text+0x179d): undefined reference to `xpt_done' Anton> umass.o(.text+0x17ad): undefined reference to `xpt_done' Anton> umass.o: In function `umass_cam_cb': Anton> umass.o(.text+0x18a1): undefined reference to `xpt_done' Anton> umass.o: In function `umass_cam_sense_cb': Anton> umass.o(.text+0x1918): undefined reference to `xpt_done' Anton> umass.o(.text+0x1929): undefined reference to `xpt_done' Anton> *** Error code 1 Anton>=20 Anton> Stop in /usr/src/sys/compile/NARR1. Anton>=20 Anton>=20 Your problem seems to be that you removed an important section of the kernel that is required. umass requires scbus which you seem not to have! =46rom GENERIC, there is this section # SCSI peripherals device scbus # SCSI bus (required) device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) Try to add those to your kernel filr and recompile. Hope that helps. -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. Fear is that little darkroom where negatives are developed.=20 -Michael Pritchard=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 3:20:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mailin3.email.bigpond.com (juicer24.bigpond.com [139.134.6.34]) by hub.freebsd.org (Postfix) with ESMTP id F1CB037B406 for ; Sat, 21 Jul 2001 03:20:02 -0700 (PDT) (envelope-from harsanyi@bigpond.com) Received: from bigpond.com ([139.134.4.55]) by mailin3.email.bigpond.com (Netscape Messaging Server 4.15) with SMTP id GGTJN300.G1F for ; Sat, 21 Jul 2001 20:25:51 +1000 Received: from CWPP-p-203-54-207-112.prem.tmns.net.au ([203.54.207.112]) by mail4.bigpond.com(MailRouter V2.9g 7/8271451); 21 Jul 2001 20:20:10 Message-ID: <3B595731.5D225C0@bigpond.com> Date: Sat, 21 Jul 2001 18:19:29 +0800 From: Harsanyi Alexandru X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: kill -TERM pppd_pid does not hang-up modem 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 just installed FreeBSD 4.1.1 on my computer, and I'm new to the FreeBSD system. I have the following problem: when I try to shut down the ppp link via 'kill -TERM pppd_pid' pppd shuts down the ppp0 interface, but does not hang-up my modem (if I pick up the phone, I hear wisteling). I tried various options (crtscts, xonxoff and a disconnect script with a +++ and ATH command) and nothing worked. I also found no info on shuting down a ppp connection, only various ways to start it up. Can someone help me here, or at least point me to some info? BTW, is there a way to know the DNS addresses advertised by my ISP when using pppd? I only found info for it on ppp not pppd. Thanx, Alex. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 3:54:43 2001 Delivered-To: freebsd-questions@freebsd.org Received: from APastourelles-102-1-2-26.abo.wanadoo.fr (APastourelles-102-1-2-26.abo.wanadoo.fr [217.128.208.26]) by hub.freebsd.org (Postfix) with ESMTP id 1C5E037B406 for ; Sat, 21 Jul 2001 03:54:39 -0700 (PDT) (envelope-from olive@deep-ocean.net) Received: by APastourelles-102-1-2-26.abo.wanadoo.fr (Postfix, from userid 1001) id 271A4256D0; Sat, 21 Jul 2001 12:54:33 +0200 (CEST) Date: Sat, 21 Jul 2001 12:54:32 +0200 From: Olivier Cortes To: freebsd-questions@freebsd.org Subject: Re: Re: Program recommendations Message-ID: <20010721125432.A20261@APastourelles-102-1-2-26.abo.wa> Mail-Followup-To: Olivier Cortes , freebsd-questions@freebsd.org References: <20010720172206.D409-100000@asbestos.wolf> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from frussell@p1.cs.ohiou.edu on Fri, Jul 20, 2001 at 09:48:55PM -0400 X-Operating-System: FreeBSD 4.3-RC i386 up 2 days, 8:01, 1 user, load averages: 0.30, 0.28, 0.25 Organization: Deep-Ocean Network X-URL: http://www.deep-ocean.net/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jul 20, 2001 at 09:48:55PM -0400, Russell Francis wrote: > > > On Fri, 20 Jul 2001 jeff@tsunamicreek.com wrote: > > > > Shell > > > > bash or tsch shell, matter of opinion. > > A handy feature is the [TAB] auto completion of filenames. > I know bash has this, not sure of tsch??? why not zsh ? nobody here uses it ? it seems like bash, but a little more "intelligent" (one could say i'm a little more lazy). its options are outstanding. a bit hard to understand at first glance, but very useful (like "cd" completing with only dirs...). for editing, i use emacs and vi (considering the problem -respectively- as writing an entire .c file or just correcting a typo or editing rc.conf). the best mailer i ever used is mutt. i still use it. note that i didn't test gnus. text mailers have -at this time- still much more features than graphics mailers. in addition to mutt, consider using fetchmail and procmail. this trio (fetchmail/procmail/mutt) is... is... i lack words, but in conjonction they are probably one of the best part of my admin experience. if you can't understand my sentences, forgive me, i don't speak english very well... --- Olivier Cortes free software admin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 4:14: 7 2001 Delivered-To: freebsd-questions@freebsd.org Received: from plab.ku.dk (plab.ku.dk [130.225.105.65]) by hub.freebsd.org (Postfix) with ESMTP id D3BBA37B405 for ; Sat, 21 Jul 2001 04:14:04 -0700 (PDT) (envelope-from dk@plab.ku.dk) Received: (from dk@localhost) by plab.ku.dk (8.11.3/8.9.3) id f6LBE3C31719 for freebsd-questions@freebsd.org.AVP; Sat, 21 Jul 2001 13:14:03 +0200 (CEST) (envelope-from dk) Received: (from dk@localhost) by plab.ku.dk (8.11.3/8.9.3) id f6LBE3K31711; Sat, 21 Jul 2001 13:14:03 +0200 (CEST) (envelope-from dk) Mime-version: 1.0 Content-type: text/plain; charset="koi8-r" Content-transfer-encoding: 8bit Keywords: 2001334874 To: freebsd-questions@freebsd.org Subject: Howto? ATM SpeedStream 3010 From: Dmitry Karasik Date: 21 Jul 2001 13:14:03 +0200 Message-ID: <843d7q7cw4.fsf@plab.ku.dk> Lines: 20 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi! Is there any way to use PPPoA or whatever works with ATM SpeedStream 3010? I found some humble attempts, but they seems were never incorporated, and although driver (lanai0) looks alive, I can't figure out how to use it with PPP. Please help. -- Sincerely, Dmitry --- www.karasik.eu.org --- Life ain't fair, but the root password helps. - BOFH To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 4:18:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.ceeyes.com (mail.in.ceeyes.com [65.192.85.133]) by hub.freebsd.org (Postfix) with ESMTP id 6A3A837B403 for ; Sat, 21 Jul 2001 04:18:18 -0700 (PDT) (envelope-from prasadg@in.ceeyes.com) Received: from prasad (net6-124 [10.1.6.124]) by mail.ceeyes.com (8.9.1b+Sun/8.9.3) with SMTP id QAA17224 for ; Sat, 21 Jul 2001 16:48:13 +0530 (INST) Message-ID: <000901c111d6$9fcbed60$7c06010a@prasad.in.ceeyes.com> From: "prasadg" To: Subject: FAQ Date: Sat, 21 Jul 2001 16:46:43 +0530 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0006_01C11204.B8BABEE0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0006_01C11204.B8BABEE0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable hi all! iam using (ie) src code for my project application. And in the if_ie.c = file i found with a ieioctl() function. plz reply abt the calling of ieioctl function initialisation or the = ieioctl. with Regards, Bhanu Prasad Software Engineer Ceeyes Software Technologies Pvt. Ltd., Hyderabad. ------=_NextPart_000_0006_01C11204.B8BABEE0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
hi all!
 
iam using (ie) src code for my = project=20 application. And in the if_ie.c file i found with a = ieioctl()
function.
plz reply abt the  calling of ieioctl function=20 initialisation or the ieioctl.
 
 
with Regards,
 
 
Bhanu Prasad
Software=20 Engineer
Ceeyes Software Technologies Pvt. Ltd.,
Hyderabad.
------=_NextPart_000_0006_01C11204.B8BABEE0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 4:28:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from relay.flashnet.it (ems.flashnet.it [194.247.160.44]) by hub.freebsd.org (Postfix) with ESMTP id B2F6637B408 for ; Sat, 21 Jul 2001 04:28:15 -0700 (PDT) (envelope-from ml.ventu@flashnet.it) Received: from smtp.flashnet.it (ip078.pool-173.cyb.it [195.191.181.79]) by relay.flashnet.it (8.11.3/8.11.3) with SMTP id f6LBSDp32434 for ; Sat, 21 Jul 2001 13:28:13 +0200 Message-Id: <200107211128.f6LBSDp32434@relay.flashnet.it> To: FreeBSD Questions X-Mailer: Post Road Mailer for OS/2 (Green Edition Ver 3.0) Date: Sat, 21 Jul 2001 13:28:13 EST From: Andrea Venturoli Reply-To: Andrea Venturoli Subject: ADSL disconnection Sender: owner-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 =?ISO-8859-1?Q?Jean=2DS=E9bastien=20P=E9dron?= Fri, 20 Jul 2001 15:40:47 +0200 > Hello the list > > I have recently send a mail about disconnection of my ADSL line. The > modem was not responding after, and i had to turn it off and back, so I > can reconnect with ppp. > > Here is my hardware : > Pentium 166 MMX > NIC Realtek 8029 10 Mbps with 'ed' driver > Modem Alcatel Speed Touch Home (Ethernet) > > I use FreeBSD 4.3 with the included PPP. I had exactly the same problem, with that NIC and that MoDem; search freebsd-network for articles with the title "Meditations on rl driver" for the whole discussion. Basically, don't use half-duplex/full-duplex autoselection, but force the card explicitly to half-duplex. Bye av. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 4:49: 9 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 0278C37B403 for ; Sat, 21 Jul 2001 04:49:06 -0700 (PDT) (envelope-from greid@FreeBSD.org) Received: from sobek.lan ([62.252.11.239]) by mta01-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20010721114850.FVZH351.mta01-svc.ntlworld.com@sobek.lan>; Sat, 21 Jul 2001 12:48:50 +0100 Date: Sat, 21 Jul 2001 12:48:48 +0100 (BST) From: George Reid X-Sender: greid@sobek.lan To: Anton Fedotow Cc: freebsd-questions@FreeBSD.ORG Subject: Re: make fails In-Reply-To: <3B594624.9060702@spb.cityline.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 Sat, 21 Jul 2001, Anton Fedotow wrote: [...] > device umass # Disks/Mass storage - Requires scbus and da [...] There's your answer. -- +-------------------+---------------------+ | George Reid | FreeBSD Committer | | +44 7740 197460 | greid@FreeBSD.org | +-------------------+---------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 6:10:55 2001 Delivered-To: freebsd-questions@freebsd.org Received: from Kares.server (ppp109.cb.worldonline.cz [212.90.233.47]) by hub.freebsd.org (Postfix) with ESMTP id BE7ED37B408 for ; Sat, 21 Jul 2001 06:10:51 -0700 (PDT) (envelope-from vaclav.kares@worldonline.cz) Received: from localhost (vena@localhost) by Kares.server (8.11.3/8.11.3) with ESMTP id f6MDBHH00322 for ; Sun, 22 Jul 2001 15:11:17 +0200 (CEST) (envelope-from vena@Kares.server) Date: Sun, 22 Jul 2001 15:11:16 +0200 (CEST) From: Vaclav Kares To: Subject: FreeBSD 5 Current installation problem Message-ID: <20010722145310.O281-100000@Kares.server> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-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 try to install FreeBSD 5 with helps of the latest floppies the kernel stops on the last line of these kernel messages ad0: 3102MB [6304/16/63] at ata0-master UDMA33 Mounting root from ufs:/dev/md0c I have to note that the computer is notebook IBM ThinkPad 600 and when I try to install FreeBSD with the same floppies on my PC everything was ok. Moreover I have installed FreeBSD 4.3 without any problems on the notebook three months ago. Where is problem ? Your help will be very appreciated. Thank you, Kares To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 6:20:15 2001 Delivered-To: freebsd-questions@freebsd.org Received: from email02.aon.at (WARSL401PIP7.highway.telekom.at [195.3.96.115]) by hub.freebsd.org (Postfix) with SMTP id 4C55537B405 for ; Sat, 21 Jul 2001 06:20:13 -0700 (PDT) (envelope-from sperber@w3.brgkepler.asn-graz.ac.at) Received: (qmail 410638 invoked from network); 21 Jul 2001 13:20:04 -0000 Received: from l0823p14.dipool.highway.telekom.at ([62.46.166.206]) (envelope-sender ) by qmail2.highway.telekom.at (qmail-ldap-1.03) with SMTP for ; 21 Jul 2001 13:20:04 -0000 Date: Sat, 21 Jul 2001 15:20:31 +0000 (GMT) From: Sperber X-X-Sender: To: Subject: fbsd 5... Message-ID: <20010721151955.A340-100000@www.omega-project.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 Hi! How stable is the 5. version? Sperber ----------------------------* signature *----------------------------- | _ | | ~\\_ | | \\\\ | | ... .--. . .-. -... . .-. `\\\\\ | | |\\\\\ | | \\\\\|__.--~~\ | | _--~ / | | /~ ////// _-~~~~' | | sperber@w3.brgkepler.asn-graz.ac.at ('-//////-// | | http://sperber.cjb.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 21 6:30:23 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtpe.casema.net (smtpe.casema.net [195.96.96.172]) by hub.freebsd.org (Postfix) with SMTP id F423B37B407 for ; Sat, 21 Jul 2001 06:29:55 -0700 (PDT) (envelope-from engelman@wanadoo.nl) Received: (qmail 6506 invoked from network); 21 Jul 2001 13:29:49 -0000 Received: from unknown (HELO noveibf9zhfur3) (212.64.37.95) by smtpe.casema.net with SMTP; 21 Jul 2001 13:29:49 -0000 Reply-To: From: "fe" To: Subject: partitioning hd Date: Sat, 21 Jul 2001 15:26:25 +0200 Message-ID: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0002_01C111F9.813F1B10" 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.3018.1300 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0002_01C111F9.813F1B10 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hello all, I have recently obtained a set of FreeBSD 4.3 (on CD-ROMs) since I am seriously interested to see if FreeBSD offers an opportunity for me to live without windows, but wishing to install it I get confronted with FIPS, which shows a primary FAT32 partition and an extended part, and offers the opportunity to repartition the extended part, yet, as the table below shows, part of it is used already. I have used PartitionMagic to split up the 30Gb hard disk (on a Vaio f809): C 7,295.1 Mb Primary Windows 2000 D 3,302.4 Mb Extended data (E) (CD) F 5,004.6 Mb Empty G 5,004.6 Mb Empty H 5,004.6 Mb Empty I 3,000.3 Mb Empty Is it possible to get the installation procedure to install FreeBSD onto either the F, G, H, slice without it ruining my nicely laid out partition table, and wrecking my data partition? Or should I transfer all data of the logical D part to C, and repartition the extended part with the help of FIPS? Should the FreeBSD slice also be primary? Obviously, the first option would definitely be preferable to me. The Complete FreeBSD by Greg Lehey offers no help in this matter, so I would be very grateful for any suggestions I can get. Thank very much. Kind regards, FE. ------=_NextPart_000_0002_01C111F9.813F1B10 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

Hello = all,

 

I = have recently obtained a set of FreeBSD 4.3 (on CD-ROMs) since I am seriously interested to see if FreeBSD offers an opportunity for me to live = without windows, but wishing to install it I get confronted with FIPS, which = shows a primary FAT32 partition and an extended part, and offers the opportunity = to repartition the extended part, yet, as the table below shows, part of it = is used already. I have used PartitionMagic to split up the 30Gb hard disk = (on a Vaio f809):

 

C

7,295.1 = Mb

Primary =

Windows = 2000

D

3,302.4 = Mb

Extended =

data<= /span>

(E)

(CD)<= /span>

 

 

F

5,004.6 = Mb

 

Empty=

G

5,004.6 = Mb

 

Empty=

H

5,004.6 = Mb

 

Empty=

I

3,000.3 = Mb

 

Empty=

 

Is it = possible to get the installation procedure to install FreeBSD onto either the F, = G, H, slice without it ruining my nicely laid out partition table, and = wrecking my data partition? Or should I transfer all data of the logical D part to C, and = repartition the extended part with the help of FIPS? Should the FreeBSD slice also = be primary? Obviously, the first option would definitely be preferable to = me. The Complete FreeBSD by Greg = Lehey offers no help in this matter, so I would be very grateful for any suggestions = I can get. Thank very much.

 

Kind = regards,

 

FE.

------=_NextPart_000_0002_01C111F9.813F1B10-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 6:34:12 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail14.sdc1.sfba.home.com (femail14.sdc1.sfba.home.com [24.0.95.141]) by hub.freebsd.org (Postfix) with ESMTP id 3A3DB37B403 for ; Sat, 21 Jul 2001 06:34:09 -0700 (PDT) (envelope-from jshamlet@home.com) Received: from guinevere ([24.6.138.112]) by femail14.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with SMTP id <20010721133408.THFD2379.femail14.sdc1.sfba.home.com@guinevere> for ; Sat, 21 Jul 2001 06:34:08 -0700 From: "J. Seth Henry" To: Subject: moused and Xfree86 4.0.3 tangles Date: Sat, 21 Jul 2001 09:33:19 -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) 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 all, After a particularly bad move to my new apartment, resulting in a dead hard disk and a reinstall, I decided to try Xfree 4.0.3 - since I've been wanting to try a dual monitor setup (and at this point, have nothing to lose). All is fine and well graphically, but the mouse is exhibiting the signs of a conflict with moused (the cursor slides across the top of the screen). In XFree86 3.x, this was easily solved - but the same solution no longer works. I currently am running FreeBSD 4.3-RELEASE, with a Microsoft Intellimouse attached to the PS/2 port. Moused is running with the flags "-p /dev/psm0 -t auto -z 4", and my XF86Config file (excerpting the mouse section) is: Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "MouseSystems" Option "Buttons" "5" Option "ZAxisMapping" "4,5" Option "Device" "/dev/mouse" EndSection For completeness, the video board is an ATI Xpert@play with 8Mb of SGRAM. It's configuration is: Section "Device" ### Available Driver options are:- Option "accel" Option "crt_screen" Option "composite_sync" Option "linear" Option "mmio_cache" #Option "probe_clocks" #Option "reference_clock" #Option "shadow_fb" Identifier "Card0" Driver "ati" VendorName "ATI" BoardName "Mach64 GP" ChipSet "ati" ChipId 0x4750 ChipRev 0x5c BusID "PCI:0:15:0" EndSection I have tried every protocol (in XF86Config) that seemed to match, including "MouseSystems" "Auto" "Microsoft" "Intellimouse". I also tried attaching it directly to /dev/psm0 - but as long as moused is running, the mouse doesn't work correctly in X. Oddly enough, the mouse works fine for moused, but when I kill moused - the mouse refuses to work in X at all - not even the screwy movement across the top of the screen. I figure that may be due to locking though. I have looked in the mailing list, and found that this is not the first time someone has run across this problem. I was hoping someone had found a solution since March. Thanks, Seth Henry jshamlet@home.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 21 6:43:46 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay3.adelphia.net (smtprelay3.adelphia.net [64.8.25.8]) by hub.freebsd.org (Postfix) with ESMTP id 2EAED37B403 for ; Sat, 21 Jul 2001 06:43:44 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay3.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGTSTF02.5MI; Sat, 21 Jul 2001 09:44:03 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6LDfhS05221; Sat, 21 Jul 2001 09:41:43 -0400 (EDT) (envelope-from ipt) Date: Sat, 21 Jul 2001 09:41:43 -0400 From: User & Ian Patrick Thomas To: Shannon Cc: freebsd-questions@freebsd.org Subject: Re: netscape6 (linux) Message-ID: <20010721094143.A5115@localhost> References: <20010719213813.I507@elexis.uwiland.com> <20010719184015.A1899@localhost> <20010720234559.B10722@widomaker.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010720234559.B10722@widomaker.com>; from shannon@widomaker.com on Fri, Jul 20, 2001 at 11:45:59PM -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 As it was put forth by Shannon on Fri, Jul 20, 2001 at 11:45:59PM -0400... > > Do you happen to know if it is any kind of speed improvement over > Mozilla 0.9.1? > I was using the Mozilla port from 4.3 Release and upgraded after cvsupping to 4.x Stable. My old version was a late 8.x and the version I'm using now, 0.9.2,1 is considerably faster as well as completely rendering the pages the first time with no refreshing. I would check www.mozilla.org and see what they specify 0.9.2,1 as, a bug fix only release, or a performance improving release. Ian > -- > shannon@widomaker.com _________________________________________________ > ______________________/ armchairrocketscientistgraffitiexenstentialist > "And in billows of might swell the Saxons before her,-- Unite, oh > unite! Or the billows burst o'er her!" -- Downfall of the Gael > > 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 21 6:46:35 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 63D0C37B403 for ; Sat, 21 Jul 2001 06:46:33 -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 f6LDh1O18003 for ; Sat, 21 Jul 2001 09:43:01 -0400 (EDT) Message-ID: <3B5987B1.C5310BB0@iowna.com> Date: Sat, 21 Jul 2001 09:46:25 -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: How to change UDMA mode on ata drives Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've got an ata100 drive that's buggy under ata100. I want to throttle it back to ata66 mode to see if the problem still exists. How is this done? -Bill -- It may be that true happiness is nothing more than the ability to *always* know the right thing to say at the right time, whereas true misery is the state of perpetually saying to oneself, "What I *should* have said was..." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 6:50:55 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 57A8637B407 for ; Sat, 21 Jul 2001 06:50:53 -0700 (PDT) (envelope-from wyldephyre2@yahoo.com) Received: from ae05031.powerup.com.au (HELO warhawk) (203.147.164.31) by smtp.mail.vip.sc5.yahoo.com with SMTP; 21 Jul 2001 13:50:52 -0000 X-Apparently-From: From: "Haikal Saadh" To: "Russell Francis" , Subject: RE: Program recommendations Date: Sat, 21 Jul 2001 23:55:12 +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) 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 > > On Fri, 20 Jul 2001 jeff@tsunamicreek.com wrote: > > > > Shell > > > > bash or tsch shell, matter of opinion. > > A handy feature is the [TAB] auto completion of filenames. > I know bash has this, not sure of tsch??? tcsh has tab completion, and also, a few good points of tcsh: + if you half-complete a command, and press CTRL-D, you get a list of possible options. + if you half complete a command, and press the up arrow, it completes the command from history. I ditched bash in favour of tcsh when it became the default shell for FreeBSD, and I've never looked back! :) > > > Text editor > > > > vi or emacs, matter of opinion. > > Vi is a great editor. It is standard on almost any UNIX > machine so your skills can be portable :-) If you do > decide to go with a vi style editor, I recommend using > something like vim or gvim as it has alot of nice extras > that make serious editing easier. Agreed. I have a bit of trouble with vi, but can handle [g]vim just fine. _________________________________________________________ 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 21 7:36:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f206.law10.hotmail.com [64.4.15.206]) by hub.freebsd.org (Postfix) with ESMTP id 61B8C37B403 for ; Sat, 21 Jul 2001 07:36:22 -0700 (PDT) (envelope-from ex279@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 21 Jul 2001 07:36:22 -0700 Received: from 66.76.118.238 by lw10fd.law10.hotmail.msn.com with HTTP; Sat, 21 Jul 2001 14:36:21 GMT X-Originating-IP: [66.76.118.238] From: "Todd Reed" To: taylorm@bytecraftsystems.com Cc: freebsd@nc.rr.com, freebsd-questions@freebsd.org Subject: Re: Startup Scripts version 2 Date: Sat, 21 Jul 2001 09:36:21 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 21 Jul 2001 14:36:22.0033 (UTC) FILETIME=[82FB0010:01C111F2] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Actually, that was the email response helped me! I had to do that. Changing the chmod and adding the line in the rc.conf file got the script running upon startup! Just like I needed it to! --Todd Really dumb response chmod u+x startup.sh to make it executable .... ----- Original Message ----- From: "Neill Robins" To: "Todd Reed" Cc: Sent: Saturday, July 21, 2001 8:03 AM Subject: Re: Startup Scripts version 2 >Friday, July 20, 2001, 4:12:26 PM, Todd Reed wrote: TR> I created a >/usr/local/rc.d called startup.sh. When I restart my machine, >TR> it doesn't seem to execute. Below is the code in the sh file. What am I >TR> doing wrong? Do I have to edit the rc.conf? > > >TR> #!/bin/sh TR> # > >TR> /sbin/ldconfig -m /usr/local/lib/mysql > >TR> if [ -x /mnt/vdrv/dbms/bin/safe_mysqld ] TR> then TR> >/mnt/vdrv/dbms/bin/safe_mysqld > /dev/null & && echo -n ` mysql` >TR> fi > >Todd, > >Mike Meyer just might have the answer. Give this a try. > >From Mike Meyer: > >It should also check for the arguments "start" and "stop" so it can be used >at system startup and system shutdown time. Here's a trivial example: > >#!/bin/sh > >MIXERSTATE=/var/db/mixer-state > >case $1 in start) [ -r $MIXERSTATE ] && /usr/sbin/mixer `cat >$MIXERSTATE` > /dev/null ;; stop) /usr/sbin/mixer -s > $MIXERSTATE > ;; *) echo "usage: `basename $0` {start|stop}" >&2 exit 64 >;; esac > > Mike Meyer http://www.mired.org/home/mwm/ >Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. > > > > > >-- >Good Luck, -Neill freebsd@nc.rr.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 _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 7:40:38 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail14.sdc1.sfba.home.com (femail14.sdc1.sfba.home.com [24.0.95.141]) by hub.freebsd.org (Postfix) with ESMTP id D9FD437B405 for ; Sat, 21 Jul 2001 07:40:35 -0700 (PDT) (envelope-from jshamlet@home.com) Received: from guinevere ([24.6.138.112]) by femail14.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with SMTP id <20010721144035.UZDO2379.femail14.sdc1.sfba.home.com@guinevere> for ; Sat, 21 Jul 2001 07:40:35 -0700 From: "J. Seth Henry" To: Subject: Serial ports not working after start Xfree86 4.0.3 Date: Sat, 21 Jul 2001 10:39:45 -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) 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 all, I noticed another strange problem after messing with X. My serial ports had stopped working! I have a dumb terminal hanging off of com2 (/dev/ttyd1) - and it was hung. My digiboard (/dev/ttyD0x) was also complaining of problems. The problem is reproducible - the ports work fine after a reboot, but shortly after starting X, the fail. Is it possible that X is probing somewhere it shouldn't? (and if so, is there a way to turn off the probes) Thanks, Seth Henry jshamlet@home.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 21 8:26:24 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tower.my.domain (v90-232-207.dialup.umass.edu [128.119.232.207]) by hub.freebsd.org (Postfix) with ESMTP id D2A1237B405 for ; Sat, 21 Jul 2001 08:26:19 -0700 (PDT) (envelope-from gp@oitunix.oit.umass.edu) Received: (from gp@localhost) by tower.my.domain (8.11.4/8.11.4) id f6LFQ8Q35767; Sat, 21 Jul 2001 11:26:08 -0400 (EDT) (envelope-from gp) Message-Id: <200107211526.f6LFQ8Q35767@tower.my.domain> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Haikal Saadh Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Program recommendations In-Reply-To: Message from Haikal Saadh of "Sat, 21 Jul 2001 23:55:12 +1000." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 21 Jul 2001 11:26:07 -0400 From: Greg Sender: owner-freebsd-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, 20 Jul 2001 jeff@tsunamicreek.com wrote: > > > > > > Shell > > > > > > bash or tsch shell, matter of opinion. > > > > A handy feature is the [TAB] auto completion of filenames. > > I know bash has this, not sure of tsch??? > > tcsh has tab completion, and also, a few good points of tcsh: > + if you half-complete a command, and press CTRL-D, you get a list of > possible options. > + if you half complete a command, and press the up arrow, it completes the > command from history. > > I ditched bash in favour of tcsh when it became the default shell for > FreeBSD, and I've never looked back! :) > If I do a script in tcsh, foreach i ( a b c ) foreach> echo $i foreach> end and then go back through the history, I only get the "foreach i ( a b c )" line. Is there a way to get the whole command? Greg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 8:28:46 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 8DFAD37B403 for ; Sat, 21 Jul 2001 08:28:43 -0700 (PDT) (envelope-from digitalox@earthlink.net) Received: from mail.earthlink.net (user-v3qs3ub.dsl.mindspring.com [199.174.15.203]) by albatross.prod.itd.earthlink.net (EL-8_9_3_3/8.9.3) with SMTP id IAA12371 for ; Sat, 21 Jul 2001 08:28:42 -0700 (PDT) Date: Sat, 21 Jul 2001 10:28:22 -0500 From: digitalox To: questions@freebsd.org Subject: Re: PPPoE Problem Message-ID: <20010721102822.B14776@AirOx.Mydomain.Oxen> Reply-To: digitalox@earthlink.net References: <200107210513.f6L5DU913378@day.uws.edu.au> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 In-Reply-To: <200107210513.f6L5DU913378@day.uws.edu.au>; from 99053811@day.uws.edu.au on Sat, Jul 21, 2001 at 15:13:29 -0500 X-Mailer: Balsa 0.9.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 Sat, 21 Jul 2001 15:13:29 Danny K Ho wrote: > Hello > > > - I managed to get this the following error message fixed > Jul 19 18:46:45 freebsd / kernel: module register: > > > module netgraph already exists > > > Jul 19 18:46:45 freebsd / kernel: linker = > > > file_sysinit > > > netgraph .ko fialed to resolve > > > by adding a line in the options NETGRAPH_ENTHER > -However, I constantly get the following error message in /var/log/ppp.log > If that's not a typo, then you will need to put NETGRAPH_ETHER. Try freebsddiary.org and mostgraveconcern.com/freebsd for more examples. Try em' all until you get it working, then save your notes and config files. The initial setup can be a real pain. good luck Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 8:42:10 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 107F237B403 for ; Sat, 21 Jul 2001 08:42:07 -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 GGTY7G02.MT8; Sat, 21 Jul 2001 11:40:28 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6LFe6n05399; Sat, 21 Jul 2001 11:40:06 -0400 (EDT) (envelope-from ipt) Date: Sat, 21 Jul 2001 11:40:06 -0400 From: User & Ian Patrick Thomas To: "J. Seth Henry" Cc: freebsd-questions@freebsd.org Subject: Re: moused and Xfree86 4.0.3 tangles Message-ID: <20010721114006.B5115@localhost> 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 jshamlet@home.com on Sat, Jul 21, 2001 at 09:33:19AM -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 As it was put forth by J. Seth Henry on Sat, Jul 21, 2001 at 09:33:19AM -0400... > Section "InputDevice" > Identifier "Mouse0" > Driver "mouse" > Option "Protocol" "MouseSystems" Change the above to auto and ... > Option "Buttons" "5" > Option "ZAxisMapping" "4,5" > Option "Device" "/dev/mouse" change the above to /dev/sysmouse. > EndSection > > I have tried every protocol (in XF86Config) that seemed to match, including > "MouseSystems" "Auto" "Microsoft" "Intellimouse". I also tried attaching it > directly to /dev/psm0 - but as long as moused is running, the mouse doesn't > work correctly in X. > > Oddly enough, the mouse works fine for moused, but when I kill moused - the > mouse refuses to work in X at all - not even the screwy movement across the > top of the screen. I figure that may be due to locking though. > > I have looked in the mailing list, and found that this is not the first time > someone has run across this problem. I was hoping someone had found a > solution since March. > > Thanks, > Seth Henry > jshamlet@home.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message I'm currently running XFree86 4.0.3_3 from the ports with the above two options and I am able to use moused and X without any problems. Let me know how it turns out. 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 21 8:43: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mx.pitdc1.stargate.net (smtp2.mx.pitdc1.stargate.net [206.210.69.142]) by hub.freebsd.org (Postfix) with SMTP id 7DC2D37B403 for ; Sat, 21 Jul 2001 08:42:59 -0700 (PDT) (envelope-from mav@wastegate.net) Received: (qmail 26543 invoked from network); 21 Jul 2001 15:41:39 -0000 Received: from unknown (HELO mother) (216.151.64.138) by smtp2.mx.pitdc1.stargate.net with SMTP; 21 Jul 2001 15:41:39 -0000 From: "Doug Reynolds" To: "freebsd-questions@freebsd.org" , "walter@pelissero.org" Date: Sat, 21 Jul 2001 11:39:38 -0400 Reply-To: "Doug Reynolds" X-Mailer: PMMail 98 Professional (2.01.1600) For Windows 98 (4.10.2222) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: PPP stopped working Message-Id: <20010721154259.7DC2D37B403@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 20 Jul 2001 12:38:54 +0100, Walter C. Pelissero wrote: >I've recently upgraded my FreeBSD 3.4 box to 4.3-STABLE (cvsupped). >Since then my PPP (user-ppp) stopped working properly. According to >the log file and my few knowledge of PPP, it seems like struggling >with the ISP about the right IP address to use and it gives up after >too many NAKs. >Currently my ppp.conf has got this ifaddr setting: > set ifaddr 192.168.0.1/0 192.168.0.2/0 255.255.255.0 0.0.0.0 i use: set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 and make sure you have add default HISADDR --- doug reynolds | the maverick | mav@wastegate.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 21 8:46:48 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay2.adelphia.net (smtprelay2.adelphia.net [64.8.25.7]) by hub.freebsd.org (Postfix) with ESMTP id 347A637B403 for ; Sat, 21 Jul 2001 08:46:46 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay2.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGTYIO02.OPQ; Sat, 21 Jul 2001 11:47:12 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6LFijq05450; Sat, 21 Jul 2001 11:44:45 -0400 (EDT) (envelope-from ipt) Date: Sat, 21 Jul 2001 11:44:45 -0400 From: User & Ian Patrick Thomas To: Bill Moran Cc: freebsd-questions@freebsd.org Subject: Re: How to change UDMA mode on ata drives Message-ID: <20010721114445.C5115@localhost> References: <3B5987B1.C5310BB0@iowna.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B5987B1.C5310BB0@iowna.com>; from wmoran@iowna.com on Sat, Jul 21, 2001 at 09:46:25AM -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 As it was put forth by Bill Moran on Sat, Jul 21, 2001 at 09:46:25AM -0400... > I've got an ata100 drive that's buggy under ata100. I want to throttle it > back to ata66 mode to see if the problem still exists. How is this done? > > -Bill > > -- > It may be that true happiness is nothing more than the ability to *always* > know the right thing to say at the right time, whereas true misery is the > state of perpetually saying to oneself, "What I *should* have said was..." > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message Try this sysctl -a | grep "hw.ata.*" and check out man sysctl. 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 21 8:57:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay3.adelphia.net (smtprelay3.adelphia.net [64.8.25.8]) by hub.freebsd.org (Postfix) with ESMTP id 719CB37B403 for ; Sat, 21 Jul 2001 08:57:15 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay3.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGTYZY03.5MS; Sat, 21 Jul 2001 11:57:34 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6LFtDa05502; Sat, 21 Jul 2001 11:55:13 -0400 (EDT) (envelope-from ipt) Date: Sat, 21 Jul 2001 11:55:13 -0400 From: User & Ian Patrick Thomas To: Haikal Saadh Cc: freebsd-questions@freebsd.org Subject: Re: Program recommendations Message-ID: <20010721115513.D5115@localhost> 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 wyldephyre2@yahoo.com on Sat, Jul 21, 2001 at 11:55:12PM +1000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG As it was put forth by Haikal Saadh on Sat, Jul 21, 2001 at 11:55:12PM +1000... > > tcsh has tab completion, and also, a few good points of tcsh: > + if you half-complete a command, and press CTRL-D, you get a list of > possible options. Try this set autolist in your .login file and you don't have to use Ctrl-D to get a list. This is a pretty good feature, less typing. Ian > + if you half complete a command, and press the up arrow, it completes the > command from history. > > I ditched bash in favour of tcsh when it became the default shell for > FreeBSD, and I've never looked back! :) > _________________________________________________________ > 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 21 8:57:49 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mx.pitdc1.stargate.net (smtp2.mx.pitdc1.stargate.net [206.210.69.142]) by hub.freebsd.org (Postfix) with SMTP id C901937B403 for ; Sat, 21 Jul 2001 08:57:46 -0700 (PDT) (envelope-from mav@wastegate.net) Received: (qmail 20809 invoked from network); 21 Jul 2001 15:56:27 -0000 Received: from unknown (HELO mother) (216.151.64.138) by smtp2.mx.pitdc1.stargate.net with SMTP; 21 Jul 2001 15:56:27 -0000 From: "Doug Reynolds" To: "freebsd-questions@freebsd.org" , "JakeCatfox@aol.com" Date: Sat, 21 Jul 2001 11:54:26 -0400 Reply-To: "Doug Reynolds" X-Mailer: PMMail 98 Professional (2.01.1600) For Windows 98 (4.10.2222) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: Making a FreeBSD CD-ROM Message-Id: <20010721155746.C901937B403@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 20 Jul 2001 22:48:52 EDT, JakeCatfox@aol.com wrote: >I'm making a FreeBSD CD-ROM to install from. What is the directory structure >for the src dir? I tried putting the files in their own folders (sbin, >sinclude, sbase, etc.) in the src dir in the cdrom's / directory .. but no >luck. What should I be doing? .. you could dl the ISO image off the ftp site and burn it. it is bootable and contains about everything you need. --- doug reynolds | the maverick | mav@wastegate.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 21 9: 0:18 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 42BCB37B406 for ; Sat, 21 Jul 2001 09:00:16 -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 f6LFuhO16633; Sat, 21 Jul 2001 11:56:43 -0400 (EDT) Message-ID: <3B59A707.F4D60AD0@iowna.com> Date: Sat, 21 Jul 2001 12:00:07 -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: User & Ian Patrick Thomas Cc: freebsd-questions@freebsd.org Subject: Re: How to change UDMA mode on ata drives References: <3B5987B1.C5310BB0@iowna.com> <20010721114445.C5115@localhost> 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 User & Ian Patrick Thomas wrote: > > As it was put forth by Bill Moran on Sat, Jul 21, 2001 at 09:46:25AM -0400... > > I've got an ata100 drive that's buggy under ata100. I want to throttle it > > back to ata66 mode to see if the problem still exists. How is this done? > > > > -Bill > > > > Try this > > sysctl -a | grep "hw.ata.*" > > and check out man sysctl. > > Ian Thanks for the reply. The only options I have through sysctl are hw.atamodes, and hw.ata.ata_dma both of which only allow turning DMA on and off. I would like to leave it on, but force the controller to use UDMA4 (ata66) instead of UDMA5 (ata100) Is there a method for this, or is it an on/off proposition? -Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 9:10:56 2001 Delivered-To: freebsd-questions@freebsd.org Received: from nomad.com (dialup-57-39.dplanet.ch [212.35.57.39]) by hub.freebsd.org (Postfix) with ESMTP id 14BC137B406 for ; Sat, 21 Jul 2001 09:10:52 -0700 (PDT) (envelope-from a.l.meyers@consult-meyers.com) Received: from localhost (localhost [127.0.0.1]) by nomad.com (8.11.4/8.11.4) with ESMTP id f6LGK2N00862 for ; Sat, 21 Jul 2001 18:20:08 +0200 (CEST) (envelope-from a.l.meyers@consult-meyers.com) Date: Sat, 21 Jul 2001 18:20:01 +0200 (CEST) From: "A. L. Meyers" To: Subject: Kensington Expert Mouse (Trackball) Message-ID: <20010721181554.T857-100000@nomad.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! After 10 years with the 2-button version I got the new nodel with 4 buttons. ps/2 or serial. (Have no stock in Kensington but the product is top quality.) Cannot get sysinstall to recognize the mouse as ps/2. sysinstall correctly configures it as serial on /dev/cuaa0 . Any suggestions? (btw same physical mouse configures perfectly as ps/2 under GNU/Linux, just plugged it into a box to make sure there were no defects.) Greetings, 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 21 9:14:52 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay3.adelphia.net (smtprelay3.adelphia.net [64.8.25.8]) by hub.freebsd.org (Postfix) with ESMTP id 985F537B405 for ; Sat, 21 Jul 2001 09:14:48 -0700 (PDT) (envelope-from ipthomas_77@yahoo.com) Received: from scraemondaemon.my.domain ([24.49.96.3]) by smtprelay3.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id GGTZT803.JKP; Sat, 21 Jul 2001 12:15:08 -0400 Received: (from ipt@localhost) by scraemondaemon.my.domain (8.11.4/8.11.4) id f6LGClt05622; Sat, 21 Jul 2001 12:12:47 -0400 (EDT) (envelope-from ipt) Date: Sat, 21 Jul 2001 12:12:47 -0400 From: User & Ian Patrick Thomas To: Bill Moran Cc: freebsd-questions@freebsd.org Subject: Re: How to change UDMA mode on ata drives Message-ID: <20010721121247.E5115@localhost> References: <3B5987B1.C5310BB0@iowna.com> <20010721114445.C5115@localhost> <3B59A707.F4D60AD0@iowna.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3B59A707.F4D60AD0@iowna.com>; from wmoran@iowna.com on Sat, Jul 21, 2001 at 12:00:07PM -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 As it was put forth by Bill Moran on Sat, Jul 21, 2001 at 12:00:07PM -0400... > User & Ian Patrick Thomas wrote: > > > > As it was put forth by Bill Moran on Sat, Jul 21, 2001 at 09:46:25AM -0400... > > > I've got an ata100 drive that's buggy under ata100. I want to throttle it > > > back to ata66 mode to see if the problem still exists. How is this done? > > > > > > -Bill > > > > > > > Try this > > > > sysctl -a | grep "hw.ata.*" > > > > and check out man sysctl. > > > > Ian > > Thanks for the reply. > > The only options I have through sysctl are hw.atamodes, and hw.ata.ata_dma > both of which only allow turning DMA on and off. I would like to leave it > on, but force the controller to use UDMA4 (ata66) instead of UDMA5 (ata100) > > Is there a method for this, or is it an on/off proposition? I havn't found one that allows you to specify 66 instead of 100. If you wanted to throttle down to 33 then you could use the 40 cable, but both 66 and 100 use the 80 cable, correct? The driver uses the maximum achievable speed. Could it be that the source to the driver needs to be tweaked? Ian > > -Bill > > 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 21 9:23:52 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 0C79637B406 for ; Sat, 21 Jul 2001 09:23:49 -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 AC93A32F03A2; Sat, 21 Jul 2001 09:23:47 -0700 Message-ID: <3B59AC93.759B233C@urx.com> Date: Sat, 21 Jul 2001 09:23:47 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: User & Ian Patrick Thomas Cc: Bill Moran , freebsd-questions@freebsd.org Subject: Re: How to change UDMA mode on ata drives References: <3B5987B1.C5310BB0@iowna.com> <20010721114445.C5115@localhost> <3B59A707.F4D60AD0@iowna.com> <20010721121247.E5115@localhost> 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 User & Ian Patrick Thomas wrote: > > As it was put forth by Bill Moran on Sat, Jul 21, 2001 at 12:00:07PM -0400... > > User & Ian Patrick Thomas wrote: > > > > > > As it was put forth by Bill Moran on Sat, Jul 21, 2001 at 09:46:25AM -0400... > > > > I've got an ata100 drive that's buggy under ata100. I want to throttle it > > > > back to ata66 mode to see if the problem still exists. How is this done? > > > > > > > > -Bill > > > > > > > > > > Try this > > > > > > sysctl -a | grep "hw.ata.*" > > > > > > and check out man sysctl. > > > > > > Ian > > > > Thanks for the reply. > > > > The only options I have through sysctl are hw.atamodes, and hw.ata.ata_dma > > both of which only allow turning DMA on and off. I would like to leave it > > on, but force the controller to use UDMA4 (ata66) instead of UDMA5 (ata100) > > > > Is there a method for this, or is it an on/off proposition? > > I havn't found one that allows you to specify 66 instead of 100. If > you wanted to throttle down to 33 then you could use the 40 cable, but both > 66 and 100 use the 80 cable, correct? The driver uses the maximum > achievable speed. Could it be that the source to the driver needs to be > tweaked? Maxtor and Western Digital both have programs that will set the mode of the HD. Kent > > Ian > > > > > -Bill > > > > 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 -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 9:42: 4 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mail.utexas.edu (wb1-a.mail.utexas.edu [128.83.126.134]) by hub.freebsd.org (Postfix) with SMTP id C121637B408 for ; Sat, 21 Jul 2001 09:42:01 -0700 (PDT) (envelope-from oscars@mail.utexas.edu) Received: (qmail 29144 invoked by uid 0); 21 Jul 2001 16:41:58 -0000 Received: from dhcp-199-210.dsl.utexas.edu (HELO oscar.mail.utexas.edu) (128.83.199.210) by umbs-smtp-1 with SMTP; 21 Jul 2001 16:41:58 -0000 Message-Id: <5.1.0.14.2.20010721114410.00a3e860@mail.utexas.edu> X-Sender: oscars@mail.utexas.edu X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sat, 21 Jul 2001 11:45:37 -0500 To: Bill Moran , freebsd-questions@freebsd.org From: Oscar Ricardo Silva Subject: Re: How to change UDMA mode on ata drives In-Reply-To: <3B5987B1.C5310BB0@iowna.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 Some drive manufacturers provide utilities that will do this. Unfortunately, I've only seen them have utils that work under either DOS or Linux (so you would need a DOS boot disk). I know IBM provides this for their Deskstar drives. Have you checked the web site for you drive manufacturer? Oscar At 09:46 AM 07/21/2001 -0400, Bill Moran, you wrote: >I've got an ata100 drive that's buggy under ata100. I want to throttle it >back to ata66 mode to see if the problem still exists. How is this done? > >-Bill > >-- >It may be that true happiness is nothing more than the ability to *always* >know the right thing to say at the right time, whereas true misery is the >state of perpetually saying to oneself, "What I *should* have said was..." > >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 21 9:43:45 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imo-d06.mx.aol.com (imo-d06.mx.aol.com [205.188.157.38]) by hub.freebsd.org (Postfix) with ESMTP id 7D54737B405 for ; Sat, 21 Jul 2001 09:43:43 -0700 (PDT) (envelope-from JakeCatfox@aol.com) Received: from JakeCatfox@aol.com by imo-d06.mx.aol.com (mail_out_v31.9.) id n.2b.1884b0d2 (3877) for ; Sat, 21 Jul 2001 12:43:38 -0400 (EDT) From: JakeCatfox@aol.com Message-ID: <2b.1884b0d2.288b0b3a@aol.com> Date: Sat, 21 Jul 2001 12:43:38 EDT Subject: Re: Making a FreeBSD CD-ROM 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 138 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I *did* copy the directory structure from FreeBSD's ftp site, but it didn't work. The installer keeps telling me it can't find the sbase, sbin, etc. distributions. I tried putting them in the / dir of the CDROM instead of the src dir, but that didn't help either. -- Deven To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 9:57:27 2001 Delivered-To: freebsd-questions@freebsd.org Received: from beta.root-servers.ch (gamma.root-servers.ch [195.49.62.126]) by hub.freebsd.org (Postfix) with SMTP id AE4A437B405 for ; Sat, 21 Jul 2001 09:57:21 -0700 (PDT) (envelope-from gabriel_ambuehl@buz.ch) Received: (qmail 91759 invoked from network); 21 Jul 2001 16:57:20 -0000 Received: from dclient62-2-106-17.hispeed.ch (HELO athlon550) (62.2.106.17) by beta.root-servers.ch with SMTP; 21 Jul 2001 16:57:20 -0000 Date: Sat, 21 Jul 2001 18:58:31 +0200 From: Gabriel Ambuehl X-Mailer: The Bat! (v1.53bis) Educational Organization: BUZ Internet Services X-Priority: 3 (Normal) Message-ID: <64104717866.20010721185831@buz.ch> To: freebsd-questions@freebsd.org Subject: WEXITSTATUS yields strange results 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 -----BEGIN PGP SIGNED MESSAGE----- Hello, I'm trying to get the argument a child (created with vfork() + exec() so not a copy of the parent), supplied to it's exit (or return, for that matter) statement. pid_t pstat; do { pid = waitpid(dual_pipe->pid, &pstat, 0); } while (pid == -1 && errno == EINTR); /* Remove the entry from the linked list. */ if (last == NULL) { pidlist = dual_pipe->next; } delete(dual_pipe); return (pstat); Now the first thing that confuses me is that WIFEXITED(pstat) sometimes returns true, whereas other times I get WIFSIGNALED(pstat)=true which doesn't make much sense to me as the child I use for testing is so dumb simple that it is almost impossible that it does something illegal (I'm running it in a self written bidirectional popen() and I always get to see all the data I should). In any case, it for sure doesn't dump core as there's no core file. In both cases, WEXISTATUS(pstat) yields a 6 digit integer (in the case of WIFSIGNALED, the signal is either 96 or 120 which both mean nothing to me) that isn't of any use to me as I'd like to gather the argument to exit of the child in order to decide whether it did it's job and nothing else. What am I doing wrong? If I do a simple fork() + exec() sequence without pipe magic, I always get to see WIFEXITED=true and the correct status... Best regards, Gabriel  -----BEGIN PGP SIGNATURE----- Version: PGP 6.5i iQEVAwUBO1mmq8Za2WpymlDxAQES7wf/bjZrhzCQe5qEQ07Ocq92aQ66DNaUrGO9 9Kc26STrmh0dwK1es29u6wR1RFKrpswzfNP/AaRpj9fLpT8Mj3fGrJAwHLmygIjR Z/hxnIXtCBJMQNWyHHYPmTYea1ogztLSd4fOL+lTiWm1hNWJENz8bnOon+tm5zvk WrDsm+nZ1zwVVa9QlZqraSLDC6+OmizcFTuC6xJCnxKSkpqitW0o/CKr9xa1YQ3f HCh+FLIsyCGhaoW8qjxbokUtNnePVc60cXhPS/bKO0bdhhTSjBIUA3x8TpaNlz4H bb/zjGl8H9zVXSCAAky0V8/tC9XxOtZXr+WWVl3efMeOJFIQOGha2w== =iR4c -----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 21 10: 6:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from Mail6.nc.rr.com (fe6.southeast.rr.com [24.93.67.53]) by hub.freebsd.org (Postfix) with ESMTP id 2F35E37B403 for ; Sat, 21 Jul 2001 10:06:30 -0700 (PDT) (envelope-from bts@babbleon.org) Received: from i8k.babbleon.org ([66.26.250.89]) by Mail6.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Sat, 21 Jul 2001 11:04:40 -0400 Content-Type: text/plain; charset="iso-8859-1" From: Brian T.Schellenberger To: "Fayez Sarkis" , Subject: Re: Hi Date: Sat, 21 Jul 2001 11:04:34 -0400 X-Mailer: KMail [version 1.2] References: <000a01c111af$421c8980$6400a8c0@sarkweb.com> In-Reply-To: <000a01c111af$421c8980$6400a8c0@sarkweb.com> MIME-Version: 1.0 Message-Id: <01072111043401.00543@i8k.babbleon.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 don't think I quite follow the question. I tried to write some answers, but really, unless you clarify what sort of setup you have nobody can answer that. If they log into your machines, you use processes (ps, kill) to do it; If they have static IP addresses & you are just running the gateway sort of thing then you can use ifconfig to see who is connected at the moment, and to disconnect them. If you run a dhcp server, you'll have to check out the dhchd.leases file and cross-check against the modems or something obtuse like that to figure it out . . . that's getting beyond my abilities, though. In any case, you'll need to supply more details before anybody will be likely to be able to help you. On Saturday 21 July 2001 02:34, Fayez Sarkis wrote: > Hello im a Internet Provider using FreeBSD and i would like to know what do > i type to show how many people are on the internet and .... how can i > disconnect them individually? > > > Thank You ---------------------------------------- Content-Type: text/html; charset="iso-8859-1"; name="Attachment: 1" Content-Transfer-Encoding: quoted-printable Content-Description: ---------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 10:12:30 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 4476B37B407 for ; Sat, 21 Jul 2001 10:12:27 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 41320 invoked by uid 100); 21 Jul 2001 17:12:26 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15193.47098.324801.610159@guru.mired.org> Date: Sat, 21 Jul 2001 12:12:26 -0500 To: Shannon Cc: questions@freebsd.org Subject: Re: ARRGH Netscape stinks! In-Reply-To: <37089136@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 Shannon types: > CERT is very correct in recommend these be disabled. Unfortunately there > are some sites I use often that require it. It would be nice if you > could turn scripting off for all but specific sites. I disable them both. If I run into a site that absolutely has to have them, I tend to go elsewhere. Yes, that means I wind up paying a bit more for things sometimes. On the other hand - do I really want to give me CC number to someone who cares so little about my security? For those where I have no other choice - generally because I'm a client in the real world, not just cyber - I turn it on, do my business, then turn it off and shut down the browser. JavaScript should work the way cookies do in IBrowse - or at least did the last time I looked at it, in mid '98. It looks like recent builds of Mozilla have similar functionality. Whenever the browser gets a cookie, it checks to see if I've decided whether that site can set cookies or not, and uses that if it can find it. If not, it asks me, including a checkbox as to whether or not it should remember that decision. I know, I have sources to mozilla. So I could probably add that functionality if I really wanted it. I don't want it bad enough yet... http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 10:15:30 2001 Delivered-To: freebsd-questions@freebsd.org Received: from imf13bis.bellsouth.net (mail213.mail.bellsouth.net [205.152.58.153]) by hub.freebsd.org (Postfix) with ESMTP id BB93237B403 for ; Sat, 21 Jul 2001 10:15:27 -0700 (PDT) (envelope-from leimbacd@bellsouth.net) Received: from mutt.home.net ([216.78.179.208]) by imf13bis.bellsouth.net (InterMail vM.5.01.01.01 201-252-104) with ESMTP id <20010721171620.HJGD9883.imf13bis.bellsouth.net@mutt.home.net> for ; Sat, 21 Jul 2001 13:16:20 -0400 Received: (from dave@localhost) by mutt.home.net (8.11.3/8.11.3) id f6LHJo797190 for questions@freebsd.org; Sat, 21 Jul 2001 12:19:50 -0500 (CDT) (envelope-from dave) Date: Sat, 21 Jul 2001 12:19:49 -0500 From: David Leimbach To: questions@freebsd.org Subject: KDE Studio? problems Message-ID: <20010721121949.A97158@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 It won't compile anything due to a problem not knowing how to "make" acinclude.m4. I thought it would prefer GNU make so I opened a terminal and alias make=path_to_gmake studio.. It now gives many different errors. Has anyone had any success with this? 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 21 10:20:32 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 E688737B403 for ; Sat, 21 Jul 2001 10:20:26 -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 f6LHGsO01272; Sat, 21 Jul 2001 13:16:54 -0400 (EDT) Message-ID: <3B59B9D2.59BD4BE8@iowna.com> Date: Sat, 21 Jul 2001 13:20:18 -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: Oscar Ricardo Silva Cc: freebsd-questions@freebsd.org Subject: Re: How to change UDMA mode on ata drives References: <5.1.0.14.2.20010721114410.00a3e860@mail.utexas.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 Well, this is a ibm-dtla-307075, I haven't been able to find the utilities you speak of yet, but I'm still looking. Do you have a suggestion on how to navigate IBMs site ;) I'm pretty lost. I managed to find the "drive fitness test" which I'll be downloading to test the drive, but haven't found any utilities to change the ata mode yet. Thanks, Bill Oscar Ricardo Silva wrote: > > Some drive manufacturers provide utilities that will do > this. Unfortunately, I've only seen them have utils that work under either > DOS or Linux (so you would need a DOS boot disk). I know IBM provides this > for their Deskstar drives. Have you checked the web site for you drive > manufacturer? > > Oscar > > At 09:46 AM 07/21/2001 -0400, Bill Moran, you wrote: > >I've got an ata100 drive that's buggy under ata100. I want to throttle it > >back to ata66 mode to see if the problem still exists. How is this done? > > > >-Bill > > > >-- > >It may be that true happiness is nothing more than the ability to *always* > >know the right thing to say at the right time, whereas true misery is the > >state of perpetually saying to oneself, "What I *should* have said was..." > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org > >with "unsubscribe freebsd-questions" in the body of the message -- It may be that true happiness is nothing more than the ability to *always* know the right thing to say at the right time, whereas true misery is the state of perpetually saying to oneself, "What I *should* have said was..." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 10:21:36 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 5789937B403 for ; Sat, 21 Jul 2001 10:21:33 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 41578 invoked by uid 100); 21 Jul 2001 17:21:32 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15193.47644.511679.315402@guru.mired.org> Date: Sat, 21 Jul 2001 12:21:32 -0500 To: Russell Francis Cc: questions@freebsd.org Subject: Re: Program recommendations In-Reply-To: <58469629@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 Russell Francis types: > On Fri, 20 Jul 2001 jeff@tsunamicreek.com wrote: > > > Shell > > bash or tsch shell, matter of opinion. > A handy feature is the [TAB] auto completion of filenames. > I know bash has this, not sure of tsch??? Yes, it does. Personally, I use bash, but I'm checking on zsh because it has - among other things - user-configurable autocompletion. So commands like "mail *" and "ssh * uptime" will DTRT. > > > Text editor > > vi or emacs, matter of opinion. > Vi is a great editor. It is standard on almost any UNIX > machine so your skills can be portable :-) Emacs is a great editor (and mail reader, and news reader, and IDE, and ASCII art editor, and ...). It's available for any Unix machine, and lots of OS's other than Unix, so your skills can be *really* portable. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 10:24:57 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 9222F37B405 for ; Sat, 21 Jul 2001 10:24:54 -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 f6LHLHO03071; Sat, 21 Jul 2001 13:21:17 -0400 (EDT) Message-ID: <3B59BAD9.76F2C4C5@iowna.com> Date: Sat, 21 Jul 2001 13:24:41 -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: User & Ian Patrick Thomas Cc: freebsd-questions@FreeBSD.ORG Subject: Re: How to change UDMA mode on ata drives References: <3B5987B1.C5310BB0@iowna.com> <20010721114445.C5115@localhost> <3B59A707.F4D60AD0@iowna.com> <20010721121247.E5115@localhost> 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 User & Ian Patrick Thomas wrote: > > As it was put forth by Bill Moran on Sat, Jul 21, 2001 at 12:00:07PM -0400... > > The only options I have through sysctl are hw.atamodes, and hw.ata.ata_dma > > both of which only allow turning DMA on and off. I would like to leave it > > on, but force the controller to use UDMA4 (ata66) instead of UDMA5 (ata100) > > > > Is there a method for this, or is it an on/off proposition? > > I havn't found one that allows you to specify 66 instead of 100. If > you wanted to throttle down to 33 then you could use the 40 cable, but both > 66 and 100 use the 80 cable, correct? The driver uses the maximum > achievable speed. Could it be that the source to the driver needs to be > tweaked? Actually, according to the spec sheets for this drive, you need an 80 pin for anything ata33 or faster. Thus plugging in a 40pin will slow the thing down to 16MB/sec. Not what I want, but if it proves reliable, it will be one step closer to having this problem solved! On a side note ... I'm a little lost with this 80 pin thing. How does an 80 conductor cable with a 40 pin connector on each end do anything more than a 40 conductor cable? Seems a little odd to me. -Bill -- It may be that true happiness is nothing more than the ability to *always* know the right thing to say at the right time, whereas true misery is the state of perpetually saying to oneself, "What I *should* have said was..." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 10:34:17 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smarthost-1.mail.telinco.net (smarthost-1.mail.telinco.net [212.1.128.90]) by hub.freebsd.org (Postfix) with ESMTP id 9A3DE37B40A for ; Sat, 21 Jul 2001 10:33:56 -0700 (PDT) (envelope-from wcp@pelissero.org) Received: from smtp2.cluster1.telinco.net ([212.1.128.151]) by smarthost-1.mail.telinco.net with esmtp (Exim 3.22 #1) id 15O0c7-000Ewb-00 for freebsd-questions@freebsd.org; Sat, 21 Jul 2001 18:32:27 +0100 Received: from daemon.lpds.sublink.org (ppp-1-214.cvx5.telinco.net [212.1.152.214]) by smtp2.cluster1.telinco.net (8.11.1/8.9.1) with ESMTP id f6LHXov95268 for ; Sat, 21 Jul 2001 18:33:54 +0100 (BST) Received: from pelissero.org (hyde.lpds.sublink.org [10.0.0.2]) by daemon.lpds.sublink.org (8.11.4/8.9.3) with ESMTP id f6LH38w04546 for ; Sat, 21 Jul 2001 18:03:08 +0100 (BST) (envelope-from wcp@pelissero.org) Received: (from wcp@localhost) by pelissero.org (8.11.4/8.9.3) id f6LHGpE01788; Sat, 21 Jul 2001 18:16:51 +0100 (BST) (envelope-from wcp) From: "Walter C. Pelissero" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15193.47363.651285.751303@hyde.lpds.sublink.org> Date: Sat, 21 Jul 2001 18:16:51 +0100 To: "Doug Reynolds" Cc: "freebsd-questions@freebsd.org" , "walter@pelissero.org" Subject: Re: PPP stopped working In-Reply-To: <200107211543.f6LFh0O27331@ultra8.uk2net.com> References: <200107211543.f6LFh0O27331@ultra8.uk2net.com> X-Mailer: VM 6.90 under 21.1 (patch 13) "Crater Lake" XEmacs Lucid Reply-To: walter@pelissero.org X-Attribution: WP Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Doug Reynolds writes: > On Fri, 20 Jul 2001 12:38:54 +0100, Walter C. Pelissero wrote: > > >I've recently upgraded my FreeBSD 3.4 box to 4.3-STABLE (cvsupped). > >Since then my PPP (user-ppp) stopped working properly. According to > >the log file and my few knowledge of PPP, it seems like struggling > >with the ISP about the right IP address to use and it gives up after > >too many NAKs. > > >Currently my ppp.conf has got this ifaddr setting: > > > set ifaddr 192.168.0.1/0 192.168.0.2/0 255.255.255.0 0.0.0.0 > > i use: > > set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 > > and make sure you have > > add default HISADDR Indeed. My ppp.conf has got this "add default HISADDR" as well. Your ifaddr line doesn't look too different from mine. You have chosen just a different IP address which doesn't look to me would make any difference. Going on with my tests I've found out another weird behavior. If I substitute the ifaddr line with: set ifaddr 0 0 255.255.255.0. 0.0.0.0 and then I run ppp manually ("ppp -auto" would refuse to start), the first time I succeed to connect properly, while every subsequent dial fails with the same error as with the original ifaddr. I have to quit ppp and run it again to be able to negotiate properly with my ISP. Weird, isn't it? -- walter pelissero http://www.pelissero.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 21 10:36:59 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 8AACC37B407 for ; Sat, 21 Jul 2001 10:35:33 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 41919 invoked by uid 100); 21 Jul 2001 17:35:32 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15193.48484.879754.875650@guru.mired.org> Date: Sat, 21 Jul 2001 12:35:32 -0500 To: Ed Alley Cc: questions@freebsd.org Subject: Re: Why panic when mounting bad CD? In-Reply-To: <105187253@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 Ed Alley types: > I am running FreeBSD 4.3 with an HP 9500 ide CD-RW. > > My question is why does the kernel panic > under these conditions? Does it get lost > trying to find the disklabel or does the > kernel think that the numbers it picked > up are the disklabel and merrily goes > off into some other world looking for > the superblock? CD's generally use the ISO 9660 file system, not UFS. They don't have superblocks or disklabels, they have volume descriptors. And yes, if a file system has bogus description data in it, the system tends to crash while trying to deal with it. This is true for most file systems. > Wouldn't it be a good idea to have a > magic number in with the disklabel > that the kernel could test against > before it believes what it finds? UFS has a magic number in the superblock, and it's checked. ISO 9660 file systems also have a magic number in the volume descriptor, and that's checked. The code in -stable check for either the ISO 9660 or the ISO SIERRA magic numbers, as it understands both formats. Neither of these guarantee that the file system descriptor tables are actually correct. Mounting a file system with a valid magic number and bogus descriptor tables is generally a bad idea. It appears that an unfixated CD meets that description. There may be a way to detect that the CD is unfixated; if so, submitting a patch to the /usr/src/sys/isofs/cd9660_vfsops.c via a PR would be appreciated. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jul 21 10:46:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from femail15.sdc1.sfba.home.com (femail15.sdc1.sfba.home.com [24.0.95.142]) by hub.freebsd.org (Postfix) with ESMTP id F1B7837B406 for ; Sat, 21 Jul 2001 10:46:33 -0700 (PDT) (envelope-from jshamlet@home.com) Received: from guinevere ([24.6.138.112]) by femail15.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with SMTP id <20010721174633.YRSR13356.femail15.sdc1.sfba.home.com@guinevere>; Sat, 21 Jul 2001 10:46:33 -0700 From: "J. Seth Henry" To: "User & Ian Patrick Thomas" Cc: Subject: RE: moused and Xfree86 4.0.3 tangles Date: Sat, 21 Jul 2001 13:45:42 -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: <20010721114006.B5115@localhost> 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 This one is embarassing - I put the XF86Config in the wrong folder. It was in /etc, which is where I had been storing it when I ran 3.3.6 , instead of /etc/X11. Once I moved the file, the changes took affect, and all was well with the mouse. Unfortunately, all of the serial ports on my system are dying when I start X now. Both the onboard ones, and the ports on my Digiboard 4e. Only console tty's aren't affected. Strange that it affects all of the ports, even though they are on totally separate controllers - leading me to believe X is poking its nose somewhere it doesn't belong. Thanks, Seth Henry jshamlet@home.com -----Original Message----- From: User & Ian Patrick Thomas [mailto:ipthomas_77@yahoo.com] Sent: Saturday, July 21, 2001 11:40 AM To: J. Seth Henry Cc: freebsd-questions@freebsd.org Subject: Re: moused and Xfree86 4.0.3 tangles As it was put forth by J. Seth Henry on Sat, Jul 21, 2001 at 09:33:19AM -0400... > Section "InputDevice" > Identifier "Mouse0" > Driver "mouse" > Option "Protocol" "MouseSystems" Change the above to auto and ... > Option "Buttons" "5" > Option "ZAxisMapping" "4,5" > Option "Device" "/dev/mouse" change the above to /dev/sysmouse. > EndSection > > I have tried every protocol (in XF86Config) that seemed to match, including > "MouseSystems" "Auto" "Microsoft" "Intellimouse". I also tried attaching it > directly to /dev/psm0 - but as long as moused is running, the mouse doesn't > work correctly in X. > > Oddly enough, the mouse works fine for moused, but when I kill moused - the > mouse refuses to work in X at all - not even the screwy movement across the > top of the screen. I figure that may be due to locking though. > > I have looked in the mailing list, and found that this is not the first time > someone has run across this problem. I was hoping someone had found a > solution since March. > > Thanks, > Seth Henry > jshamlet@home.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message I'm currently running XFree86 4.0.3_3 from the ports with the above two options and I am able to use moused and X without any problems. Let me know how it turns out. 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 21 10:47:18 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 5049D37B405 for ; Sat, 21 Jul 2001 10:47:15 -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 f6LHhbO28054; Sat, 21 Jul 2001 13:43:38 -0400 (EDT) Message-ID: <3B59C015.DCFE504B@iowna.com> Date: Sat, 21 Jul 2001 13:47:02 -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 Cc: Shannon , questions@FreeBSD.ORG Subject: Re: ARRGH Netscape stinks! References: <15193.47098.324801.610159@guru.mired.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 Mike Meyer wrote: > > Shannon types: > > CERT is very correct in recommend these be disabled. Unfortunately there > > are some sites I use often that require it. It would be nice if you > > could turn scripting off for all but specific sites. Really, this isn't a Netscape problem so much as it is a problem with the dorks who coded the webpage. HTML has the