From owner-freebsd-questions Sun Nov 19 0:54:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from is.inar.ru (is.inar.ru [212.14.160.6]) by hub.freebsd.org (Postfix) with ESMTP id 2AD3637B4C5 for ; Sun, 19 Nov 2000 00:54:10 -0800 (PST) Received: from c9-103.dl.inar.ru (c9-103.dl.inar.ru [212.14.163.103]) by is.inar.ru (8.9.3/8.9.3/IA.EK.0907.01) with ESMTP id LAA02591 for ; Sun, 19 Nov 2000 11:53:14 +0300 (MSK) Date: Sun, 19 Nov 2000 11:47:12 +0300 From: Anton Groshev X-Mailer: The Bat! (v1.46c) Reply-To: Anton Groshev X-Priority: 3 (Normal) Message-ID: <405107133.20001119114712@severodvinsk.ru> To: freebsd-questions@FreeBSD.ORG Subject: help Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello , I had a problem with start FreeBSD: With loading a kernel, when check of sections of disks reaches, the kernel will check up section (/ - /dev/ad0s2a) and on check of the following sections (/usr - /dev/ad0s2f, /var - /dev/ad0s2e) will stop (nothing outputting), then we press any key and outputs: NO READ BLOCK 16. What this such and how to correct? -- Best regards, Anton Groshev mailto:grant@severodvinsk.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 1:54:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from maild.telia.com (maild.telia.com [194.22.190.3]) by hub.freebsd.org (Postfix) with ESMTP id D235D37B479 for ; Sun, 19 Nov 2000 01:54:39 -0800 (PST) Received: from ents02 (t2o90p88.telia.com [195.67.216.208]) by maild.telia.com (8.9.3/8.9.3) with SMTP id KAA23670; Sun, 19 Nov 2000 10:54:36 +0100 (CET) From: "James Wilde" To: "robi" , Subject: RE: Date: Sun, 19 Nov 2000 10:55:40 +0100 Message-ID: <000601c0520e$e01e5d40$8208a8c0@iqunlimited.net> 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.2314.1300 In-Reply-To: Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Take a look in the mailing list archives. I have an idea that this *has* been answered but the respondent gave it a subject line. Giving your message a subject line is a good method of being able to follow up when and whether you get an answer - as long as your subject line is a little more meaningful than a simple 'help', of course. mvh/regards James > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of robi > Sent: Saturday, November 18, 2000 20:15 > To: questions@FreeBSD.ORG > Subject: > > > Hi there. > > I already posted this a week ago but got no asnwer... > Hope to be more lucky this time... > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 2:21:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id BDC2C37B479 for ; Sun, 19 Nov 2000 02:21:30 -0800 (PST) Received: (qmail 56448 invoked by uid 100); 19 Nov 2000 10:21:29 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14871.43433.441818.597556@guru.mired.org> Date: Sun, 19 Nov 2000 04:21:29 -0600 (CST) To: Zero Sum Cc: Jeff Wyman , questions@FreeBSD.ORG Subject: Re: SMP: FreeBSD vs. Linux In-Reply-To: <00111916420801.13422@shalimar.net.au> References: <14870.23240.379989.419970@guru.mired.org> <00111916420801.13422@shalimar.net.au> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Zero Sum types: > > All the reports indicate that Linux SMP is better than -stable. SMP in > > -stable uses one lock for almost everything, which serializes things > > that don't need to be serialized. > I was unaware of the above, but I have been running an SMP kernel for over > a year now, tracking 3 STABLE. I have now gone 4 STABLE. I have always > been satisfied with the SMP performance, I can't see where I'm losing > anything. > > I run two copies of seti and they sit there at 99.02% cpu utilization, > each. Where am I *losing* performance? The inefficiency in -stable is that it serializes things in the kernel which don't necessarily need to be serialized. But this happens *in the kernel*. So long as your program stays in userland, you won't see a difference. Seti@home is very cpu-bound, so it pretty much stays in userland. As such, differences in MP threading implementation will be nearly invisible to it. > I'm not trying to argue with you, I just can't find a referent for what you > are saying/ The performance difference would have to be minor by my > observation. Unless I am totally misunderstanding something. I haven't done any measurements on this case myself (which is why I refer to the reports of others). However, having a single lock is similar - but not as bad as - an asymmetric system which has one CPU handle all kernel calls, and the other nothing but userland. In the -stable case, the system serializes going through a lock that covers lots of things. In the second case, the system serializes going through the kernel (any interrupts, system calls, etc). I have done measurements on that latter case. I had a two-CPU AMP system (VAX 8650 cpus) to play with, and ran some simulated multi-user benchmarks. Turning the second CPU *off* provided something like a 10% performance improvement on those benchmarks. I've seen reports of similar things on -stable with postgres. In real life, people ran multi-hour number crunchers on that AMP system, and their process landed on the second CPU (the one not doing syscalls) and pretty much owned it. The end result was that they got results faster in real time than they did off the Cray XMP-14 in the next room, which had a much faster CPU - but only one of them. This is analogous to the behavior you are seeing with seti@home. ; Sun, 19 Nov 2000 02:42:04 -0800 (PST) Received: (qmail 2607 invoked by uid 100); 19 Nov 2000 10:42:03 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14871.44667.137101.473405@guru.mired.org> Date: Sun, 19 Nov 2000 04:42:03 -0600 (CST) To: Bill Bumgarner Cc: questions@freebsd.org Subject: Re: port problems on clean install In-Reply-To: <52574@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Bill Bumgarner types: > Am I correct in assuming that one should be abel to cd into any of the > ports in /usr/ports/ after a clean install from a 4.11 cd, type "make > install" and it should "just work"? And it usually does. > It definitely isn't on my system. When checking to see whether the > build environment is sane, it complains that "newly created file is > older than system file". That's not enough information. How about the last bit of the output of the make command? Or all of it, if it isn't very long. > The date/time on the system is correct-- though, looking more closely, > it appears that it is not taking into account daylight savings time? > Actually, there doesn't appear to be any option anywhere for either > setting daylight savings time OR setting the computers clock during > setup. This *really* should be a part of the setup as it can grossly > impact a system's usability if the clock is wrong. It is part of the system installation process - you're just not forced to do it. Run /stand/sysinstall, hit the c key, enter, then down arrow until you get to time zone and hit enter again. That will walk you through setting the time zone. ; Sun, 19 Nov 2000 02:43:21 -0800 (PST) Received: (qmail 6934 invoked by uid 100); 19 Nov 2000 10:43:21 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14871.44745.480598.958994@guru.mired.org> Date: Sun, 19 Nov 2000 04:43:21 -0600 (CST) To: "Eric Paynter" Cc: questions@freebsd.org Subject: Re: proc size mismatch In-Reply-To: <28202088@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Eric Paynter types: > I'm running 4.1.1 Release and when I do a ps, top, w, etc... I get "proc > size mismatch..." I'm not sure what happened, but I recently installed > more ram... would that cause this? I also recently upgraded from 4.1 to > 4.1.1... not sure if that would affect proc. Any help is appreciated. What causes this is the kernel and those programs being out of sync. Did you install a new kernel from 4.1.1 when you upgraded? If not, you need to do so. ; Sun, 19 Nov 2000 03:00:09 -0800 (PST) Received: (qmail 39905 invoked by uid 100); 19 Nov 2000 11:00:08 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14871.45752.774586.724210@guru.mired.org> Date: Sun, 19 Nov 2000 05:00:08 -0600 (CST) To: Lanny Baron Cc: questions@freebsd.org Subject: Re: limiting the amount of per user in /var/mail In-Reply-To: <63959318@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Lanny Baron types: > Hello, > Can someone plz point me in the right direction of how to implement a size > in MB for any user on a system, that can stop incoming mail until the > user has downloaded thier mail. > > One person told me procmail. Having gone to www.procmail.org I cannot see > where it talks about size of mail boxes. I got questions - have you got answers? What do you mean by "stop incoming mail"? The options are 1) that it stays on your system, but is kept in the mail queue until either timeout or they drop below the limit; 2) that it is refused as a soft error, meaning it stays on the *other* ISPs system until either timeout or they drop below the limit; 3) or that it is refused as a hard error, meaning it's bounced immediately back to the user. To use procmail for this, you need to configure your sendmail so that local deliver is done by procmail, and arrange to have procmail run a command that reports whether or not their mailbox is over limit. It's been years since I used procmail or sendmail, so I'm going to defer to others. A much simpler idea - if their mailboxes are stored on a different file system from anything else they are liable to own - is to use disk space quotas. This will make the writes to their mailbox (or possibly the queue) fail, which will report as either a hard or soft error, depending on your MTA. Try "man -k quota" to get started. ; Sun, 19 Nov 2000 03:10:34 -0800 (PST) Received: (qmail 46653 invoked by uid 100); 19 Nov 2000 11:10:33 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14871.46377.613740.80430@guru.mired.org> Date: Sun, 19 Nov 2000 05:10:33 -0600 (CST) To: "robi" Cc: questions@freebsd.org Subject: Re: MIME-Version: 1.0 In-Reply-To: <875148@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG robi types: > Hi there. > I already posted this a week ago but got no asnwer... > Hope to be more lucky this time... I didn't see it, but I'll try this time. > I have a problem, here... :( On this list, such a statement seems redundant :-). > Questions: > > 1. > Is there an easy way to install the second os on the > same disk or (as I'm more oriented to) take out FreeBSD > disk, add another disk, install the second os on that > disk, reinsert the FreeBSD disk as the primary disk, and > then use FreeBSD tools to configure a dual boot? > And if that's the way to go, can anybody help me out > with that? Any reasonable OS install makes it easy to install as a second OS - *if* you've space on the disk that doesn't belong to any slice, or an unused slice. If neither of those conditions are true, you have to make it true. That's the hard part. > 2. > At present I only have the following partitions: > > /dev/ad0s1a / ufs > /dev/ad0s1b none swap > /dev/ad0s1e /var ufs > /dev/ad0s1f /usr ufs > > I would like to split /usr (which is about 8GB) in two > or more... > Any hints on how to do that without loosing the valuable > data that is already on /usr ? See the "dump" man page. I can't go into details without knowing the details of your disk layout (i.e. - slices, partition order in the slice, etc), but basically you're going to have to find a place to dump the information on /usr, use newfs to shrink /usr, then restore the dump file to create the new, smaller /usr. You can then use fdisk to shrink the FreeBSD slice appropriately, and create a new slice that is the space you want for the other OS. This is *dangerous*, so you should save your /usr/ dump file, and probably have dumps of / and /var as well. If all the file systems don't wind up in one slice after this, things get hairy. Good luck, ; Sun, 19 Nov 2000 03:38:14 -0800 (PST) Received: from [192.168.0.5] (helo=P300) by gdmckee.local with smtp (Exim 3.16 #1) id 13xSml-000096-00; Sun, 19 Nov 2000 11:37:27 +0000 Message-ID: <000d01c0521d$15af19a0$0500a8c0@gdmckee.local> From: "G D McKee" To: "S.W.Liu" Cc: References: <004101c05171$ea3b8f20$0500a8c0@gdmckee.local> <005201c051c9$4c169a80$317be29f@11> Subject: Re: Virtual Kernel Date: Sun, 19 Nov 2000 11:37:23 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi So you can effectively run virtual computers with in one computer. A bit like virtual hosting on the internet. GDM ----- Original Message ----- From: "S.W.Liu" To: "G D McKee" Cc: Sent: Sunday, November 19, 2000 1:37 AM Subject: Re: Virtual Kernel > > ----- Original Message ----- > From: G D McKee > To: freebsd-questions > Sent: Saturday, November 18, 2000 11:12 PM > Subject: Virtual Kernel > > > > Hi > > > > You can get FreeVSD for Linux, what is the equivalent piece of software for > > FreeBSD 4.1.1. > > > What's you mean? > > GDM > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of 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 Nov 19 4: 9:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns.ciac.jl.cn (unknown [202.98.16.1]) by hub.freebsd.org (Postfix) with ESMTP id 4DE6937B479 for ; Sun, 19 Nov 2000 04:09:38 -0800 (PST) Received: from 11 ([159.226.123.49]) by ns.ciac.jl.cn (8.9.1/8.9.1) with SMTP id UAA27894 for ; Sun, 19 Nov 2000 20:01:48 +0800 (CST) Message-ID: <000901c05222$4daca660$317be29f@11> From: "S.W.Liu" To: Subject: How to install VMware in FreeBSD Date: Sun, 19 Nov 2000 20:14:41 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: base64 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 X-Loop: FreeBSD.ORG TXkgc3lzdGVtIGlzIEZyZWVCU0QgNC4xLVIsIEkgd2FudCB0byBydW4gVk13YXJlLiBJIGNhbiBp bnN0YWxsIHZtd2FyZSBmcm9tIHBvcnRzLCBidXQgd2hlbiBJIHJ1biBpdCBhbmQgY2xpY2sgUG93 ZXIgT24gYnV0dG9uLCBpdCBzYXk6IGNhbid0IGdldCBjcHVpbmZvKCBmb3JtIC9wcm9jL2NwdWlu Zm8pLCBXSFk/Pz8NCkkgd2FudCB0byBpbnN0YWxsIHZtd2FyZTIgZnJvbSBwb3J0cywgYnV0IEkg Y2FuJ3QgZmluZCB2bW5ldC1mcmVlYnNkLTAuMTEudGFyLmd6LCB3aGVyZSBjYW4gSSBmb3VuZCBp dD8gDQpQbGVhc2UgSGVscCBNRSENCg== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 5:35:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from blr.vsnl.net.in (blr.vsnl.net.in [202.54.12.6]) by hub.freebsd.org (Postfix) with ESMTP id D063337B479 for ; Sun, 19 Nov 2000 05:35:35 -0800 (PST) Received: from x (PPP-176-185.bng.vsnl.net.in [203.197.176.185]) by blr.vsnl.net.in (Postfix) with SMTP id DBF735E4DA for ; Sun, 19 Nov 2000 18:59:59 +0530 (IST) Message-ID: <000801c0522d$5a537a00$b9b0c5cb@x> From: "sanipcan" To: Subject: Date: Sun, 19 Nov 2000 19:03:40 +0530 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C0525B.6E1EFCC0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C0525B.6E1EFCC0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I currently have win nt4.0 and win95 , and i have dual boot option ,if i = install Bsd, wolud i get options to boot all the os i have. or should i use third party software. please help me. From Ramprasad bkrp@mailandnews.com ------=_NextPart_000_0005_01C0525B.6E1EFCC0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I currently have win nt4.0 and win95 , = and i have=20 dual boot option ,if i install Bsd,
wolud i get options to boot all the os = i=20 have.
 
or should i use third party software. = please help=20 me.
 
From
Ramprasad
bkrp@mailandnews.com ------=_NextPart_000_0005_01C0525B.6E1EFCC0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 5:54:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from glitch.crosswinds.net (glitch.crosswinds.net [209.208.163.35]) by hub.freebsd.org (Postfix) with ESMTP id 0C2D237B479 for ; Sun, 19 Nov 2000 05:54:15 -0800 (PST) Received: from lexx.my.domain ([195.110.170.79]) by glitch.crosswinds.net (8.9.3/8.9.3) with ESMTP id IAA43228; Sun, 19 Nov 2000 08:54:12 -0500 (EST) (envelope-from john253@crosswinds.net) From: John Murphy To: steven@lh.net (Steven Robinson) Cc: questions@freebsd.org Subject: Re: Make Depend failure Date: Sun, 19 Nov 2000 13:55:02 +0000 Organization: The Organisation Reply-To: john253@crosswinds.net Message-ID: References: <3A16B536.6670BFAC@lh.net> In-Reply-To: <3A16B536.6670BFAC@lh.net> X-Mailer: Forte Agent 1.8/32.548 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >#device miibus # MII bus support ^ uncomment this. John. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 6:22:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns.ciac.jl.cn (unknown [202.98.16.1]) by hub.freebsd.org (Postfix) with ESMTP id 3A3A337B479 for ; Sun, 19 Nov 2000 06:22:15 -0800 (PST) Received: from 11 ([159.226.123.49]) by ns.ciac.jl.cn (8.9.1/8.9.1) with SMTP id WAA08758 for ; Sun, 19 Nov 2000 22:14:21 +0800 (CST) Message-ID: <001101c05234$d24220a0$317be29f@11> From: "S.W.Liu" To: Subject: Problem with my VMware2 Date: Sun, 19 Nov 2000 22:27:17 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: base64 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 X-Loop: FreeBSD.ORG SSBpbnN0YWxsIHZtd2FyZTIgZnJvbSBwb3J0cyBvZiBteSBGcmVlQlNEIDQuMS1yZWxlYXNlLkFs bCB0aGluZ3MgSSBoYXZlIHJlc29sdmVkLiBCdXQgdGhlcmUgaXMgYSB0aGluZyBJIGNhbid0IHJl c29sdmU6IHdoZW4gSSBydW4gdm13YXJlIGFuZCB3aGVuIEkgcHVzaCAiUG93ZXIgT24iIEJ1dHRv biwgaXQgc2F5Og0KDQpjYW4ndCBvcGVuIC9wcm9jL2NwdWluZm8NCg0KYW5kIEkgY2FuJ3QgdG8g dXNlIHZtd2FyZSBhbnkgbW9yZSENCg0KSSB0aGluayB0aGlzIGlzIEZyZWVCU0QncyBlcnJyb3Is IGJ1dCBob3cgY2FuIEkgZG8gbm93PyEgVGhlcmUgaXMgbm90IGEgZmlsZSBuYW1lZCBjcHVpbmZv IGluIC9wcm9jIGRpcmVjdG9yeSEgYW5kIHRoaXMgZGlyZWN0b3J5IGlzIFJlYWQtT25seS4NCg0K SG93IGNhbiBJIGRvPyBjYW4geW91IGhlbHAgbWU/DQoNCkJlc3QgUmVnYXJkIQ0K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 6:27: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 2CDED37B479 for ; Sun, 19 Nov 2000 06:27:04 -0800 (PST) Received: (qmail 25335 invoked by uid 100); 19 Nov 2000 14:26:58 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14871.58162.152423.304665@guru.mired.org> Date: Sun, 19 Nov 2000 08:26:58 -0600 (CST) To: Bill Bumgarner Cc: questions@freebsd.org Subject: Re: port problems on clean install In-Reply-To: <73713696@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Bill Bumgarner types: > Interesting. I will have to write up some feedback regarding the > installation process-- there are aspects of it that left me a bit > befuddled. I come from a background of numerous years of dealing > with NeXTSTEP/OpenStep/Linux/Solaris, so I would say not to bother. Lots of people have written up things about how to improve the install process. What needs to be written is code, not another opinion piece on this topic. If you're interested in writing code, or what a more official opinion is, read . > In brief, more explicit mention of: > - Setting the time shoul mention something about daylight savings time It does, where/when it's appropriate. DST information is implicit in the time zone. If it's not DST when you do the install, install doesn't need to deal with it - so it doesn't. > - if the ports directory won't build off of the CD image as downloaded > (this was not a nightly image, but a -STABLE) and the instructions for updating > it would be helpful. The ports ON THE CD will build on the system on the same CD. This is true for every FreeBSD CD I've seen. Later versions of the ports tree may or may not build on the system on the CD. That's the price of progress. There are instructions for upgrading your system to build current ports on the FreeBSD web site at (click on "Ported applications" on the front page). > - a brief mention/inventory of the tools/processes used to do an update; > i.e. "Before you try to build a port, make sure you use 'cvsup blah blah blah' > to upgrade the ports directory". Update what? Kernel? World? Ports tree? The ports tree is discussed on the ported applications page; the rest is discussed in the handbook at . > - the xemacs/emacs packages are confusing; I still haven't found which > package actually contains a xemacs binary. Do I have to install the MULE > version?? Can't help with that one. One person is responsible for most of them; try contacting them about this. There are other such families of ports that are confusing. > In general, the documentation/howtos/handbooks/etc are excellent; incredibly > helpful and some of the best documentation around-- better than things I have > PAID for. > > However, they reflect that the authors are generally people that know this stuff > inside and out from a very FreeBSD oriented perspective. Documentation that is > slightly less centric to that background would be very helpful. If you really feel things need to be fixed, the best way is to fix it yourself and submitting it as a PR. I've had good luck updating the documentation and submitting PRs with the fixes. You can start at the FreeBSD documentation project page . ; Sun, 19 Nov 2000 06:38:10 -0800 (PST) Received: (qmail 5548923 invoked from network); 19 Nov 2000 14:37:55 -0000 Received: from r178m23.cybercable.tm.fr (HELO skreel.org) ([195.132.178.23]) (envelope-sender ) by camus.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 19 Nov 2000 14:37:55 -0000 Message-ID: <3A17E5C4.AC2A8C70@skreel.org> Date: Sun, 19 Nov 2000 15:37:58 +0100 From: skoop X-Mailer: Mozilla 4.5 [fr] (Macintosh; I; PPC) X-Accept-Language: fr MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: make error Content-Type: text/plain; charset=us-ascii; x-mac-type="54455854"; x-mac-creator="4D4F5353" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is the first time i try to compile my kernel under FreeBSD 4.1 Stable my box is a laptop compaq presario 1200 xl-103. my kernel name is PRESKERN. I configure my new kernel by : /usr/sbin/config PRESKERN then i do cd ../../compile/PRESKERN I have done the make depend and all is going good. But when i do make, i have the following error : linking kernel kbd.o: In function 'kbd_register': kbd.o(.text+0x2f6): undefined reference to 'kbddriver_set' kbd.o(.text+0x2fd): undefined reference to 'kbddriver_set' kbd.o: In function 'kbd_get_switch': kbd.o(.text+0x400): undefined reference to 'kbddriver_set' kbd.o(.text+0x405): undefined reference to 'kbddriver_set' kbd.o: In function 'kbd_configure': kbd.o(.text+0x67f): undefined reference to 'kbddriver_set' kbd.o(.text+0x684): undefined reference to 'kbddriver_set' follow *** Error code 1 Stop in /usr/src/sys/compile/PRESKERN I dont understand the problem. Maybe i have to do it another way or change some files, i dont know... Thank you for trying to help me To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 6:39: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 5570737B4C5 for ; Sun, 19 Nov 2000 06:39:00 -0800 (PST) Received: (qmail 39159 invoked by uid 100); 19 Nov 2000 14:38:59 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14871.58883.438436.670516@guru.mired.org> Date: Sun, 19 Nov 2000 08:38:59 -0600 (CST) To: Cc: questions@freebsd.org Subject: Re: Updateing Ports In-Reply-To: <82431812@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG doug@safeport.com types: > I just updated the ports collection with the following: > > *default host=cvsup3.FreeBSD.org > *default base=/usr > *default prefix=/usr > *default release=cvs tag=RELENG_4_1_1_RELEASE > *default delete use-rel-suffix > > 1) The end result of this is /usr/ports/INDEX was deleted? > 2) What did I do wrong? How can I get INDEX back About the only thing you did wrong was updating to a -RELEASE tag. The ports collection you got was the same one on the ISO image that has 4.1.1 on it. In answer to your question, the INDEX file isn't part of the ports collection, it's generated from it. Try "make index" at the top of the tree. ; Sun, 19 Nov 2000 08:20:34 -0800 (PST) Message-ID: <20001119162034.29461.qmail@web5304.mail.yahoo.com> Received: from [24.5.187.65] by web5304.mail.yahoo.com; Sun, 19 Nov 2000 08:20:34 PST Date: Sun, 19 Nov 2000 08:20:34 -0800 (PST) From: Pontius Malmberg Subject: multiple web servers behind firewall To: questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG i have one ip coming in on a cable modem, is it possible for me to setup a "gateway server" (maybe using name-based hosting) and provide multiple physical web servers behind firewall??? if possible, then how would i go about doing this? i am fully aware of the bandwidth constraint that comes with cable modem, but i just want to have the experience when i am going out there looking for a job? :o) peace out, ponch __________________________________________________ Do You Yahoo!? Yahoo! Calendar - Get organized for the holidays! http://calendar.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 Nov 19 8:24: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donkeykong.gpcc.itd.umich.edu (donkeykong.gpcc.itd.umich.edu [141.211.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 8134C37B479 for ; Sun, 19 Nov 2000 08:24:01 -0800 (PST) Received: from galaxian.gpcc.itd.umich.edu (smtp@galaxian.gpcc.itd.umich.edu [141.211.2.146]) by donkeykong.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id LAA18160; Sun, 19 Nov 2000 11:23:57 -0500 (EST) Received: from localhost (timcm@localhost) by galaxian.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id LAA22088; Sun, 19 Nov 2000 11:23:57 -0500 (EST) Date: Sun, 19 Nov 2000 11:23:57 -0500 (EST) From: Tim McMillen X-Sender: timcm@galaxian.gpcc.itd.umich.edu To: sanipcan Cc: questions@FreeBSD.ORG Subject: Multibooting [was Re: your mail] In-Reply-To: <000801c0522d$5a537a00$b9b0c5cb@x> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, please use a subject line. On Sun, 19 Nov 2000, sanipcan wrote: > I currently have win nt4.0 and win95 , and i have dual boot option ,if i install Bsd, > wolud i get options to boot all the os i have. I don't know. I happen to use Ranish Partition manager http://www.users.intercom.com/~ranish/part/ because it gives me a lot of flexibility. I have two Fat32 partitions on it (what FreeBSD calls slices), and the FreeBSD installer wont allow that. But Ranish allows me to hide a partition to let the freebsd install work. You shouldn't have a problem with that. It seems to allow booting any of the operating systems from anywhere on the disk. > or should i use third party software. please help me. > > From > Ramprasad > bkrp@mailandnews.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 8:38:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bumper.jellybaby.net (bumper.jellybaby.net [194.159.247.1]) by hub.freebsd.org (Postfix) with ESMTP id 5FABE37B479 for ; Sun, 19 Nov 2000 08:38:11 -0800 (PST) Received: (from simond@localhost) by bumper.jellybaby.net (8.9.2/8.9.2) id QAA66731 for questions@freebsd.org; Sun, 19 Nov 2000 16:38:10 GMT (envelope-from simond) Date: Sun, 19 Nov 2000 16:38:10 +0000 From: simond@irrelevant.org To: questions@freebsd.org Subject: Kernel finding wrong hard drive size when using UDMA66 Message-ID: <20001119163810.A66644@irrelevant.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 X-Loop: FreeBSD.ORG I just got around to changing my primary hard drive's cable to a UDMA66 cable from it's previous UDMA33 cable, but I now have the problem that my kernel is managing to get confused about the actual size of the hard drive, here's the entry from dmesg before I swapped cables: Nov 12 18:21:46 not /kernel: atapci0: port 0xd800-0xd80f at device 4.1 on pci0 Nov 12 18:21:46 not /kernel: ata0: at 0x1f0 irq 14 on atapci0 Nov 12 18:21:46 not /kernel: ata0-master: DMA limited to UDMA33, non-ATA66 compliant cable Nov 12 18:21:46 not /kernel: ad0: 19574MB [39770/16/63] at ata0-master UDMA33 But once I swapped cables I got the following entry for the drive: ad0: 2016MB [4096/16/63] at ata0-master UDMA66 Which causes it to not be able to mount the partitions as they seem to go past the end of the disk, anyone got any ideas? Apart from the obvious put the old cable back in, that'll be a last ditch effort :) -- Simon Dick simond@irrelevant.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 9:20:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from KIWI-Computer.com (kiwi-computer.com [63.224.10.3]) by hub.freebsd.org (Postfix) with ESMTP id 8BDA837B479 for ; Sun, 19 Nov 2000 09:20:09 -0800 (PST) Received: (from freebsd@localhost) by KIWI-Computer.com (8.9.3/8.9.3) id LAA22989; Sun, 19 Nov 2000 11:17:51 -0600 (CST) (envelope-from freebsd) From: FreeBSD Message-Id: <200011191717.LAA22989@KIWI-Computer.com> Subject: Re: Problem with my VMware2 In-Reply-To: <001101c05234$d24220a0$317be29f@11> from "S.W.Liu" at "Nov 19, 2000 10:27:17 pm" To: "S.W.Liu" Date: Sun, 19 Nov 2000 11:17:51 -0600 (CST) Cc: freebsd-questions@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL61 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I install vmware2 from ports of my FreeBSD 4.1-release.All things I have resolved. But there is a thing I can't resolve: when I run vmware and when I push "Power On" Button, it say: > > can't open /proc/cpuinfo > > and I can't to use vmware any more! > > I think this is FreeBSD's errror, but how can I do now?! There is not a file named cpuinfo in /proc directory! and this directory is Read-Only. > > How can I do? can you help me? You need to enable the linux procfs support and mount it. Add the following line to your /etc/fstab: linproc /compat/linux/proc linprocfs rw 0 0 Which will mount it at reboot. To mount it immediately without restarting, type: "mount /compat/linux/proc"-- both of these should be done as root. You will notice that /compat/linux/proc/cpuinfo now exists and vmware/vmware2 will work. The directory is read-only because it's not a real directory, but a set of calls to the kernel which report the process and CPU information. Good luck, --Rick C. Petty, aka Snoopy rick@kiwi-computer.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 9:39:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web4603.mail.yahoo.com (web4603.mail.yahoo.com [216.115.105.158]) by hub.freebsd.org (Postfix) with SMTP id B409B37B479 for ; Sun, 19 Nov 2000 09:39:56 -0800 (PST) Message-ID: <20001119173956.23583.qmail@web4603.mail.yahoo.com> Received: from [202.152.16.218] by web4603.mail.yahoo.com; Sun, 19 Nov 2000 09:39:56 PST Date: Sun, 19 Nov 2000 09:39:56 -0800 (PST) From: situs situs Subject: dialup with userppp and getty To: freebsd-questions@freebsd.org, freebsd-isp@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi ,.. i want to set up receive incoming call for my freebsd i have error messages from my client (dialup user wih win9*) " computer your dialing in to does not respond to network request check your server type ..." this error messages found when my client verifying username and password .. i'm using freebsd 40R... i want using user ppp and getty to recieve incoming call please.. please.. help me ... please tell me more about stty and ttys cuaa0 __________________________________________________ Do You Yahoo!? Yahoo! Calendar - Get organized for the holidays! http://calendar.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 Nov 19 9:46:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hyperbate.francenet.fr (hyperbate.francenet.fr [193.149.97.80]) by hub.freebsd.org (Postfix) with ESMTP id 6F75C37B479 for ; Sun, 19 Nov 2000 09:46:45 -0800 (PST) Received: from notbsdems.nantes.kisoft-services.com (pppA108.francenet.fr [193.149.100.18]) by hyperbate.francenet.fr (8.11.1/8.11.1) with ESMTP id eAJHkgT26562 for ; Sun, 19 Nov 2000 18:46:42 +0100 (MET) Received: by notbsdems.nantes.kisoft-services.com (Postfix, from userid 1001) id 82203E6921; Sun, 19 Nov 2000 18:42:17 +0100 (CET) To: Mailing List FreeBSD Questions Subject: vidcontrol & VESA_1024x768 From: Eric Masson Date: 19 Nov 2000 18:42:16 +0100 Message-ID: <86g0kn505j.fsf@notbsdems.nantes.kisoft-services.com> Lines: 23 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --=-=-= Hello, I'm currently fighting with vidcontrol to make it support VESA_1024x768. My laptop, IBM TP 390 2626-700 reports the following with `vidcontrol -i mode` : --=-=-= Content-Disposition: attachment; filename=modes Content-Description: Output of vidcontrol -i mode mode# flags type size font window linear buffer ------------------------------------------------------------------------------ 0 (0x000) 0x00000001 T 40x25 8x8 0xb8000 32k 32k 0x00000000 32k 1 (0x001) 0x00000001 T 40x25 8x8 0xb8000 32k 32k 0x00000000 32k 2 (0x002) 0x00000001 T 80x25 8x8 0xb8000 32k 32k 0x00000000 32k 3 (0x003) 0x00000001 T 80x25 8x8 0xb8000 32k 32k 0x00000000 32k 4 (0x004) 0x00000003 G 320x200x2 1 8x8 0xb8000 32k 32k 0x00000000 32k 5 (0x005) 0x00000003 G 320x200x2 1 8x8 0xb8000 32k 32k 0x00000000 32k 6 (0x006) 0x00000003 G 640x200x1 1 8x8 0xb8000 32k 32k 0x00000000 32k 13 (0x00d) 0x00000003 G 320x200x4 4 8x8 0xa0000 64k 64k 0x00000000 256k 14 (0x00e) 0x00000003 G 640x200x4 4 8x8 0xa0000 64k 64k 0x00000000 256k 16 (0x010) 0x00000003 G 640x350x2 2 8x14 0xa0000 64k 64k 0x00000000 128k 18 (0x012) 0x00000003 G 640x350x4 4 8x14 0xa0000 64k 64k 0x00000000 256k 19 (0x013) 0x00000001 T 40x25 8x14 0xb8000 32k 32k 0x00000000 32k 20 (0x014) 0x00000001 T 40x25 8x14 0xb8000 32k 32k 0x00000000 32k 21 (0x015) 0x00000001 T 80x25 8x14 0xb8000 32k 32k 0x00000000 32k 22 (0x016) 0x00000001 T 80x25 8x14 0xb8000 32k 32k 0x00000000 32k 23 (0x017) 0x00000001 T 40x25 8x16 0xb8000 32k 32k 0x00000000 32k 24 (0x018) 0x00000001 T 80x25 8x16 0xb8000 32k 32k 0x00000000 32k 26 (0x01a) 0x00000003 G 640x480x4 4 8x16 0xa0000 64k 64k 0x00000000 256k 27 (0x01b) 0x00000003 G 640x480x4 4 8x16 0xa0000 64k 64k 0x00000000 256k 28 (0x01c) 0x00000003 G 320x200x8 1 8x8 0xa0000 64k 64k 0x00000000 64k 30 (0x01e) 0x00000001 T 80x50 8x8 0xb8000 32k 32k 0x00000000 32k 32 (0x020) 0x00000001 T 80x30 8x16 0xb8000 32k 32k 0x00000000 32k 34 (0x022) 0x00000001 T 80x60 8x8 0xb8000 32k 32k 0x00000000 32k 37 (0x025) 0x00000003 G 320x240x8 4 8x8 0xa0000 64k 64k 0x00000000 256k 112 (0x070) 0x00000000 T 80x43 8x8 0xb8000 32k 32k 0x00000000 32k 113 (0x071) 0x00000001 T 80x43 8x8 0xb8000 32k 32k 0x00000000 32k 256 (0x100) 0x0000000f G 640x400x8 1 8x16 0xa0000 64k 64k 0xfd000000 2496k 257 (0x101) 0x0000000f G 640x480x8 1 8x16 0xa0000 64k 64k 0xfd000000 2496k 258 (0x102) 0x0000000b G 800x600x4 4 8x16 0xa0000 64k 64k 0x00000000 2496k 259 (0x103) 0x0000000f G 800x600x8 1 8x16 0xa0000 64k 64k 0xfd000000 2496k 260 (0x104) 0x0000000b G 1024x768x4 4 8x16 0xa0000 64k 64k 0x00000000 2496k 261 (0x105) 0x0000000f G 1024x768x8 1 8x16 0xa0000 64k 64k 0xfd000000 2496k 263 (0x107) 0x0000000f G 1280x1024x8 1 8x16 0xa0000 64k 64k 0xfd000000 2496k 269 (0x10d) 0x0000000f G 320x200x15 1 8x8 0xa0000 64k 64k 0xfd000000 2496k 270 (0x10e) 0x0000000f G 320x200x16 1 8x8 0xa0000 64k 64k 0xfd000000 2496k 272 (0x110) 0x0000000f G 640x480x15 1 8x16 0xa0000 64k 64k 0xfd000000 2496k 273 (0x111) 0x0000000f G 640x480x16 1 8x16 0xa0000 64k 64k 0xfd000000 2496k 274 (0x112) 0x0000000f G 640x480x24 1 8x16 0xa0000 64k 64k 0xfd000000 2496k 275 (0x113) 0x0000000f G 800x600x15 1 8x16 0xa0000 64k 64k 0xfd000000 2496k 276 (0x114) 0x0000000f G 800x600x16 1 8x16 0xa0000 64k 64k 0xfd000000 2496k 277 (0x115) 0x0000000f G 800x600x24 1 8x16 0xa0000 64k 64k 0xfd000000 2496k 278 (0x116) 0x0000000f G 1024x768x15 1 8x16 0xa0000 64k 64k 0xfd000000 2496k 279 (0x117) 0x0000000f G 1024x768x16 1 8x16 0xa0000 64k 64k 0xfd000000 2496k 280 (0x118) 0x0000000f G 1024x768x24 1 8x16 0xa0000 64k 64k 0xfd000000 2496k 288 (0x120) 0x0000000f G 320x240x8 1 8x8 0xa0000 64k 64k 0xfd000000 2496k 289 (0x121) 0x0000000f G 320x240x16 1 8x8 0xa0000 64k 64k 0xfd000000 2496k 290 (0x122) 0x0000000f G 400x300x8 1 8x8 0xa0000 64k 64k 0xfd000000 2496k 291 (0x123) 0x0000000f G 400x300x16 1 8x8 0xa0000 64k 64k 0xfd000000 2496k 292 (0x124) 0x0000000f G 512x384x8 1 8x8 0xa0000 64k 64k 0xfd000000 2496k 293 (0x125) 0x0000000f G 512x384x16 1 8x8 0xa0000 64k 64k 0xfd000000 2496k --=-=-= I've modified vidcontrol.c to add VESA_1024x768 in the following way --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=vidcontrol.c.diff Content-Description: Patch to vidcontrol.c *** vidcontrol.c.orig Sun Nov 19 16:16:58 2000 --- vidcontrol.c Sun Nov 19 16:19:15 2000 *************** *** 295,300 **** --- 295,301 ---- { "VESA_132x50", SW_VESA_C132x50 }, { "VESA_132x60", SW_VESA_C132x60 }, { "VESA_800x600", SW_VESA_800x600 }, + { "VESA_1024x768", SW_VESA_1024x768 }, { NULL }, }; unsigned long mode = 0; *************** *** 317,324 **** if (ioctl(0, mode, NULL) < 0) warn("cannot set videomode"); if (mode == SW_VESA_800x600) { ! size[0] = 80; /* columns */ ! size[1] = 25; /* rows */ size[2] = 16; /* font size */ if (ioctl(0, KDRASTER, size)) { ioerr = errno; --- 318,338 ---- if (ioctl(0, mode, NULL) < 0) warn("cannot set videomode"); if (mode == SW_VESA_800x600) { ! size[0] = 100; /* columns */ ! size[1] = 37; /* rows */ ! size[2] = 16; /* font size */ ! if (ioctl(0, KDRASTER, size)) { ! ioerr = errno; ! if (cur_mode >= M_VESA_BASE) ! ioctl(0, _IO('V', cur_mode), NULL); ! else ! ioctl(0, _IO('S', cur_mode), NULL); ! warnc(ioerr, "cannot activate raster display"); ! } ! } ! if (mode == SW_VESA_1024x768) { ! size[0] = 128; /* columns */ ! size[1] = 48; /* rows */ size[2] = 16; /* font size */ if (ioctl(0, KDRASTER, size)) { ioerr = errno; --=-=-= When I issue `vidcontrol VESA_1024x768`, the screen goes black (no display at all), I can switch back to normal operation by `vidcontrol VESA_800x600`. Any clues about this ? TIA Eric Masson -- Progress (n) : What led from smart users in front of dumb terminals to dumb users in front of smart terminals. --=-=-=-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 10: 0:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pi.codefab.com (pi.codefab.com [12.38.161.140]) by hub.freebsd.org (Postfix) with ESMTP id 0F46737B479 for ; Sun, 19 Nov 2000 10:00:07 -0800 (PST) Received: from bjork.codefab.com (root@bjork.codefab.com [12.38.161.11]) by pi.codefab.com (8.11.1/8.11.1) with ESMTP id eAJI06304281; Sun, 19 Nov 2000 13:00:06 -0500 (EST) Received: from bjork.codefab.com (bbum@bjork.codefab.com [12.38.161.11]) by bjork.codefab.com (8.11.1/8.11.1) with ESMTP id eAJI01324930; Sun, 19 Nov 2000 13:00:05 -0500 (EST) Date: Sun, 19 Nov 2000 13:00:01 -0500 (EST) From: Bill Bumgarner To: Mike Meyer Cc: questions@freebsd.org Subject: Re: port problems on clean install In-Reply-To: <14871.44667.137101.473405@guru.mired.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yes-- I found how to set the timezone, but there doesn't seem to be anything associated with setting daylight savings time or not. It also seems that the system doesn't include an NTP daemon configuration, by default? It seems that a "make install" on openssh (the only port that built successfully) causes the system to try to run the sshd daemon twice upon boot. I haven't tracked that down yet, but will do so shortly. Enclosed is the output of a failed build. I figured out how to use cvsup to bring down a -STABLE of ports-all and will retry from that. thanks! b.bum On Sun, 19 Nov 2000, Mike Meyer wrote: > Bill Bumgarner types: > > Am I correct in assuming that one should be abel to cd into any of the > > ports in /usr/ports/ after a clean install from a 4.11 cd, type "make > > install" and it should "just work"? > > And it usually does. > > > It definitely isn't on my system. When checking to see whether the > > build environment is sane, it complains that "newly created file is > > older than system file". > > That's not enough information. How about the last bit of the output of > the make command? Or all of it, if it isn't very long. > > > The date/time on the system is correct-- though, looking more closely, > > it appears that it is not taking into account daylight savings time? > > Actually, there doesn't appear to be any option anywhere for either > > setting daylight savings time OR setting the computers clock during > > setup. This *really* should be a part of the setup as it can grossly > > impact a system's usability if the clock is wrong. > > It is part of the system installation process - you're just not forced > to do it. Run /stand/sysinstall, hit the c key, enter, then down arrow > until you get to time zone and hit enter again. That will walk you > through setting the time zone. > > > ===> Extracting for dog-1.5 >> Checksum OK for dog-1.5.tar.gz. ===> dog-1.5 depends on executable: gmake - not found ===> Verifying install for gmake in /usr/ports/devel/gmake ===> Extracting for gmake-3.79.1 >> Checksum OK for make-3.79.1.tar.gz. ===> gmake-3.79.1 depends on shared library: intl.1 - not found ===> Verifying install for intl.1 in /usr/ports/devel/gettext ===> Extracting for gettext-0.10.35 >> Checksum OK for gettext-0.10.35.tar.gz. ===> gettext-0.10.35 depends on executable: libtool - not found ===> Verifying install for libtool in /usr/ports/devel/libtool ===> Configuring for libtool-1.3.4 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 make sets ${MAKE}... (cached) yes checking for working aclocal... missing checking for working autoconf... missing checking for working automake... missing checking for working autoheader... missing checking for working makeinfo... found checking for gcc... (cached) cc checking whether the C compiler (cc -O -pipe ) works... yes checking whether the C compiler (cc -O -pipe ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether cc accepts -g... (cached) yes checking for ranlib... (cached) ranlib checking host system type... i386--freebsd4.1.1 checking build system type... i386--freebsd4.1.1 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 checking for mawk... (cached) awk updating cache ./config.cache creating ./config.status creating Makefile creating doc/Makefile creating tests/Makefile configuring in libltdl running /bin/sh ./configure --disable-ltdl-install --prefix=/usr/local i386--freebsd4.1.1 --cache-file=.././config.cache --srcdir=. loading cache .././config.cache checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... configure: error: newly created file is older than distributed files! Check your system clock configure: error: ./configure failed for libltdl ===> 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:569: checking for a BSD compatible install configure:622: checking whether build environment is sane configure:679: checking whether make sets ${MAKE} configure:725: checking for working aclocal configure:738: checking for working autoconf configure:751: checking for working automake configure:764: checking for working autoheader configure:777: checking for working makeinfo configure:818: checking for gcc configure:931: checking whether the C compiler (cc -O -pipe ) works configure:947: cc -o conftest -O -pipe conftest.c 1>&5 configure:973: checking whether the C compiler (cc -O -pipe ) is a cross-compiler configure:978: checking whether we are using GNU C configure:1006: checking whether cc accepts -g configure:1040: checking for ranlib configure:1074: checking host system type configure:1095: checking build system type configure:1124: checking for ld used by GCC configure:1186: checking if the linker (/usr/libexec/elf/ld) is GNU ld configure:1203: checking for BSD-compatible nm configure:1240: checking whether ln -s works configure:1266: checking for mawk (end of "config.log") *** Error code 1 Stop in /usr/ports/devel/libtool. *** Error code 1 Stop in /usr/ports/devel/libtool. *** Error code 1 Stop in /usr/ports/devel/libtool. *** Error code 1 Stop in /usr/ports/devel/libtool. *** Error code 1 Stop in /usr/ports/devel/libtool. *** Error code 1 Stop in /usr/ports/devel/gettext. *** Error code 1 Stop in /usr/ports/devel/gettext. *** Error code 1 Stop in /usr/ports/devel/gettext. *** Error code 1 Stop in /usr/ports/devel/gettext. *** Error code 1 Stop in /usr/ports/devel/gettext. *** Error code 1 Stop in /usr/ports/devel/gettext. *** Error code 1 Stop in /usr/ports/devel/gettext. *** Error code 1 Stop in /usr/ports/devel/gmake. *** Error code 1 Stop in /usr/ports/devel/gmake. *** Error code 1 Stop in /usr/ports/devel/gmake. *** Error code 1 Stop in /usr/ports/devel/gmake. *** Error code 1 Stop in /usr/ports/devel/gmake. *** Error code 1 Stop in /usr/ports/devel/gmake. *** Error code 1 Stop in /usr/ports/devel/gmake. *** Error code 1 Stop in /usr/ports/misc/dog. *** Error code 1 Stop in /usr/ports/misc/dog. *** Error code 1 Stop in /usr/ports/misc/dog. *** Error code 1 Stop in /usr/ports/misc/dog. *** Error code 1 Stop in /usr/ports/misc/dog. *** Error code 1 Stop in /usr/ports/misc/dog. *** Error code 1 Stop in /usr/ports/misc/dog. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 10:32: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dirty.research.bell-labs.com (dirty.research.bell-labs.com [204.178.16.6]) by hub.freebsd.org (Postfix) with SMTP id 57F0037B479 for ; Sun, 19 Nov 2000 10:32:01 -0800 (PST) Received: from bronx.dnrc.bell-labs.com ([135.180.160.8]) by dirty; Sun Nov 19 13:30:23 EST 2000 Received: from dnrc.bell-labs.com (douyang-pcho [135.180.130.92]) by bronx.dnrc.bell-labs.com (8.9.3/8.9.3) with ESMTP id NAA12191; Sun, 19 Nov 2000 13:30:23 -0500 (EST) Message-ID: <3A181D97.2E5E2A9F@dnrc.bell-labs.com> Date: Sun, 19 Nov 2000 13:36:07 -0500 From: "David W. Ouyang" X-Mailer: Mozilla 4.61 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Cc: douyang@lucent.com Subject: bootp Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Does anyone able to build the FreeBSD using the bootp and tftp protocol? It seems the one in /usr/src/sys/i386/boot/netboot doesn't work due to the scrt0.o problem. How about the etherboot or netboot? I am not on the mailing list and I like to get onto it but don't know how. Thanks, David Ouyang douyang@lucent.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 10:53:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cortez.sitemajic.net (unknown [208.153.40.60]) by hub.freebsd.org (Postfix) with ESMTP id 2567F37B479 for ; Sun, 19 Nov 2000 10:53:27 -0800 (PST) Received: (from apache@localhost) by cortez.sitemajic.net (8.11.1/8.11.1) id eAJIuBi65416; Sun, 19 Nov 2000 13:56:11 -0500 (EST) To: Lanny Baron Subject: Re: limiting the amount of per user in /var/mail Message-ID: <974660171.3a18224b95368@www.sitemajic.net> Date: Sun, 19 Nov 2000 13:56:11 -0500 (EST) From: Chris Jesseman Cc: questions@FreeBSD.ORG, Mike Meyer References: <14871.45752.774586.724210@guru.mired.org> In-Reply-To: <14871.45752.774586.724210@guru.mired.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.3 X-Originating-IP: 206.128.184.36 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I use cyrus (imap + pop3) which has a builtin quota system... All user email is owned by user cyrus so it is a little different than the default freebsd setup. -Chris Quoting Mike Meyer : > Lanny Baron types: > > Hello, > > Can someone plz point me in the right direction of how to implement a > size > > in MB for any user on a system, that can stop incoming mail until the > > user has downloaded thier mail. > > > > One person told me procmail. Having gone to www.procmail.org I cannot > see > > where it talks about size of mail boxes. > > I got questions - have you got answers? > > What do you mean by "stop incoming mail"? The options are 1) that it > stays on your system, but is kept in the mail queue until either > timeout or they drop below the limit; 2) that it is refused as a soft > error, meaning it stays on the *other* ISPs system until either > timeout or they drop below the limit; 3) or that it is refused as a > hard error, meaning it's bounced immediately back to the user. > > To use procmail for this, you need to configure your sendmail so that > local deliver is done by procmail, and arrange to have procmail run a > command that reports whether or not their mailbox is over limit. It's > been years since I used procmail or sendmail, so I'm going to defer to > others. > > A much simpler idea - if their mailboxes are stored on a different > file system from anything else they are liable to own - is to use disk > space quotas. This will make the writes to their mailbox (or possibly > the queue) fail, which will report as either a hard or soft error, > depending on your MTA. Try "man -k quota" to get started. > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > Chris Jesseman, President http://www.sitemajic.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 11:16:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from horizon.webcentral.com.au (horizon.webcentral.com.au [202.139.235.244]) by hub.freebsd.org (Postfix) with SMTP id EE12437B4C5 for ; Sun, 19 Nov 2000 11:16:39 -0800 (PST) Received: (qmail 18868 invoked from network); 19 Nov 2000 19:16:37 -0000 Received: from unknown (HELO webcentral.com.au) (202.139.235.56) by horizon.webcentral.com.au with SMTP; 19 Nov 2000 19:16:37 -0000 From: "Allan Dib" Reply-To: dib.allan.l@edumail.vic.gov.au To: questions@FreeBSD.ORG Date: Mon, 20 Nov 2000 06:16:37 aest Subject: Installing a port X-Mailer: DMailWeb Web to Mail Gateway 2.2i, http://netwinsite.com/top_mail.htm Message-id: <3a182715.ca.0@webcentral.com.au> X-User-Info: 61.9.128.141 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hiya everyone, I wonder if anyone can answer what is probably a very basic question. I've been reading some BSD documentation and often it will say in regard to installing a port something like "simply change /usr/ports/the-port-you-want-to-install and run 'make install'". I have always used the command "make install". However lately I've seen a lot of documentation say to use the command 'make && make install' what's the difference and which should one use?? Best Regards, Allan. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 11:26:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id E3E1537B479 for ; Sun, 19 Nov 2000 11:26:46 -0800 (PST) Received: (qmail 76580 invoked by uid 100); 19 Nov 2000 19:26:46 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14872.10614.57702.93024@guru.mired.org> Date: Sun, 19 Nov 2000 13:26:46 -0600 (CST) To: Bill Bumgarner Cc: questions@freebsd.org Subject: Re: port problems on clean install In-Reply-To: References: <14871.44667.137101.473405@guru.mired.org> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Bill Bumgarner types: > Yes-- I found how to set the timezone, but there doesn't seem to be anything > associated with setting daylight savings time or not. It also seems that the > system doesn't include an NTP daemon configuration, by default? The time zone and the current date and time are enough to determine whether or not DST is active. Any system that asks you to set DST has problems. Yes, there's no ntp daemon configuration. On the other hand, the default values for everything but the servers to query for the current time works, and you should get the server information from your ISP. > It seems that a "make install" on openssh (the only port that built > successfully) causes the system to try to run the sshd daemon twice upon boot. > I haven't tracked that down yet, but will do so shortly. ssh (and sshd) is part of the base system. You're running both versions of sshd, one from /etc/rc and one from /usr/local/etc/rc.d/sshd.sh (or some such). > Enclosed is the output of a failed build. I figured out how to use cvsup to > bring down a -STABLE of ports-all and will retry from that. Unfortunately, the log doesn't provide more useful information. If you haven't, you might do a "make clean" and try rebuilding things. Other than that, it might well be the clock - but the log file doesn't tell you which file it's complaining about. An ls -l on a built file and the output of "date" might be illuminating, but I'd guess your diagnosis of the clock being wrong or misconfigured is right. thanks! > b.bum > > On Sun, 19 Nov 2000, Mike Meyer wrote: > > > Bill Bumgarner types: > > > Am I correct in assuming that one should be abel to cd into any of the > > > ports in /usr/ports/ after a clean install from a 4.11 cd, type "make > > > install" and it should "just work"? > > > > And it usually does. > > > > > It definitely isn't on my system. When checking to see whether the > > > build environment is sane, it complains that "newly created file is > > > older than system file". > > > > That's not enough information. How about the last bit of the output of > > the make command? Or all of it, if it isn't very long. > > > > > The date/time on the system is correct-- though, looking more closely, > > > it appears that it is not taking into account daylight savings time? > > > Actually, there doesn't appear to be any option anywhere for either > > > setting daylight savings time OR setting the computers clock during > > > setup. This *really* should be a part of the setup as it can grossly > > > impact a system's usability if the clock is wrong. > > > > It is part of the system installation process - you're just not forced > > to do it. Run /stand/sysinstall, hit the c key, enter, then down arrow > > until you get to time zone and hit enter again. That will walk you > > through setting the time zone. > > > > > > > > > ===> Extracting for dog-1.5 > >> Checksum OK for dog-1.5.tar.gz. > ===> dog-1.5 depends on executable: gmake - not found > ===> Verifying install for gmake in /usr/ports/devel/gmake > ===> Extracting for gmake-3.79.1 > >> Checksum OK for make-3.79.1.tar.gz. > ===> gmake-3.79.1 depends on shared library: intl.1 - not found > ===> Verifying install for intl.1 in /usr/ports/devel/gettext > ===> Extracting for gettext-0.10.35 > >> Checksum OK for gettext-0.10.35.tar.gz. > ===> gettext-0.10.35 depends on executable: libtool - not found > ===> Verifying install for libtool in /usr/ports/devel/libtool > ===> Configuring for libtool-1.3.4 > 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 make sets ${MAKE}... (cached) yes > checking for working aclocal... missing > checking for working autoconf... missing > checking for working automake... missing > checking for working autoheader... missing > checking for working makeinfo... found > checking for gcc... (cached) cc > checking whether the C compiler (cc -O -pipe ) works... yes > checking whether the C compiler (cc -O -pipe ) is a cross-compiler... no > checking whether we are using GNU C... (cached) yes > checking whether cc accepts -g... (cached) yes > checking for ranlib... (cached) ranlib > checking host system type... i386--freebsd4.1.1 > checking build system type... i386--freebsd4.1.1 > 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 > checking for mawk... (cached) awk > updating cache ./config.cache > creating ./config.status > creating Makefile > creating doc/Makefile > creating tests/Makefile > configuring in libltdl > running /bin/sh ./configure --disable-ltdl-install --prefix=/usr/local i386--freebsd4.1.1 --cache-file=.././config.cache --srcdir=. > loading cache .././config.cache > checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel > checking whether build environment is sane... configure: error: newly created file is older than distributed files! > Check your system clock > configure: error: ./configure failed for libltdl > ===> 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:569: checking for a BSD compatible install > configure:622: checking whether build environment is sane > configure:679: checking whether make sets ${MAKE} > configure:725: checking for working aclocal > configure:738: checking for working autoconf > configure:751: checking for working automake > configure:764: checking for working autoheader > configure:777: checking for working makeinfo > configure:818: checking for gcc > configure:931: checking whether the C compiler (cc -O -pipe ) works > configure:947: cc -o conftest -O -pipe conftest.c 1>&5 > configure:973: checking whether the C compiler (cc -O -pipe ) is a cross-compiler > configure:978: checking whether we are using GNU C > configure:1006: checking whether cc accepts -g > configure:1040: checking for ranlib > configure:1074: checking host system type > configure:1095: checking build system type > configure:1124: checking for ld used by GCC > configure:1186: checking if the linker (/usr/libexec/elf/ld) is GNU ld > configure:1203: checking for BSD-compatible nm > configure:1240: checking whether ln -s works > configure:1266: checking for mawk > (end of "config.log") > *** Error code 1 > > Stop in /usr/ports/devel/libtool. > *** Error code 1 > > Stop in /usr/ports/devel/libtool. > *** Error code 1 > > Stop in /usr/ports/devel/libtool. > *** Error code 1 > > Stop in /usr/ports/devel/libtool. > *** Error code 1 > > Stop in /usr/ports/devel/libtool. > *** Error code 1 > > Stop in /usr/ports/devel/gettext. > *** Error code 1 > > Stop in /usr/ports/devel/gettext. > *** Error code 1 > > Stop in /usr/ports/devel/gettext. > *** Error code 1 > > Stop in /usr/ports/devel/gettext. > *** Error code 1 > > Stop in /usr/ports/devel/gettext. > *** Error code 1 > > Stop in /usr/ports/devel/gettext. > *** Error code 1 > > Stop in /usr/ports/devel/gettext. > *** Error code 1 > > Stop in /usr/ports/devel/gmake. > *** Error code 1 > > Stop in /usr/ports/devel/gmake. > *** Error code 1 > > Stop in /usr/ports/devel/gmake. > *** Error code 1 > > Stop in /usr/ports/devel/gmake. > *** Error code 1 > > Stop in /usr/ports/devel/gmake. > *** Error code 1 > > Stop in /usr/ports/devel/gmake. > *** Error code 1 > > Stop in /usr/ports/devel/gmake. > *** Error code 1 > > Stop in /usr/ports/misc/dog. > *** Error code 1 > > Stop in /usr/ports/misc/dog. > *** Error code 1 > > Stop in /usr/ports/misc/dog. > *** Error code 1 > > Stop in /usr/ports/misc/dog. > *** Error code 1 > > Stop in /usr/ports/misc/dog. > *** Error code 1 > > Stop in /usr/ports/misc/dog. > *** Error code 1 > > Stop in /usr/ports/misc/dog. > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 11:36: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from freesurfmail.sunrise.ch (freesurfmta01.sunrise.ch [194.230.0.16]) by hub.freebsd.org (Postfix) with ESMTP id C171C37B479 for ; Sun, 19 Nov 2000 11:36:05 -0800 (PST) Received: from manuel.bluewin.ch (194.230.172.213) by freesurfmail.sunrise.ch (5.1.053) id 39F7FFC80019D3A3 for questions@freebsd.org; Sun, 19 Nov 2000 20:36:03 +0100 Message-Id: <5.0.0.25.2.20001119203549.00bb0818@pop.bluewin.ch> X-Sender: manuelk@pop.bluewin.ch X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Sun, 19 Nov 2000 20:35:55 +0100 To: questions@freebsd.org From: Manuel Kasper Subject: Hardware monitoring on Compaq servers Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm using FreeBSD 4.1.1-RELEASE on a Compaq ML370 server - everything is working fine at the moment (no RAID controller installed at the moment ;). However, there's one thing I'm wondering about: is there any FreeBSD driver/application/whatever that monitors the system's health (temperature, fan speed, failed components, etc.)? The reason why I'm asking is because Compaq provides such drivers for Linux, which report any failures via syslog. These drivers also control the fan speed (as soon as I load the driver under Linux the extremely high speed of the main fan is reduced to something more reasonable for the system temperature). Unfortunately they do not provide any specs or source code. It's just because I don't feel like having some vital components fail just because a cheap little fan failed and nobody noticed. ;) Thanks, Manuel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 11:36:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx-a.qnet.com (mx-a.qnet.com [209.221.198.11]) by hub.freebsd.org (Postfix) with ESMTP id 9823D37B4C5 for ; Sun, 19 Nov 2000 11:36:13 -0800 (PST) Received: from cello.qnet.com (root@cello.qnet.com [209.221.198.10]) by mx-a.qnet.com (8.9.1a/8.9.3) with ESMTP id LAA17935; Sun, 19 Nov 2000 11:36:11 -0800 (PST) Received: from STORK (56k-socal-05-39.dial.qnet.com [209.221.199.54]) by cello.qnet.com (8.9.0/8.9.1) with SMTP id LAA23189; Sun, 19 Nov 2000 11:35:59 -0800 (PST) From: "Heredity Choice" To: "sanipcan" , Subject: RE: Multiboot Date: Sun, 19 Nov 2000 11:27:27 -0800 Message-ID: <001c01c0525e$c0907530$2cc7ddd1@STORK> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_001D_01C0521B.B26D3530" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal In-Reply-To: <000801c0522d$5a537a00$b9b0c5cb@x> X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.5600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_001D_01C0521B.B26D3530 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit The Microsoft boot manager can not handle non-Microsoft operating systems. FreeBSD has its own boot manager, Booteasy, which probably will not work properly in your case. If you have NT in the second partition, Booteasy will look for its boot files in the second partition. The problem is that NT will have left its boot files in the first FAT partition. I reported this as a bug, but am not aware that anything is being done to correct Booteasy. These problems vanish with System Commander, which can be bought from any software vendor. Paul Smith -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of sanipcan Sent: Sunday, 19 November, 2000 05:34 AM To: questions@FreeBSD.ORG Subject: I currently have win nt4.0 and win95 , and i have dual boot option ,if i install Bsd, wolud i get options to boot all the os i have. or should i use third party software. please help me. From Ramprasad bkrp@mailandnews.com ------=_NextPart_000_001D_01C0521B.B26D3530 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
The=20 Microsoft boot manager can not handle non-Microsoft operating = systems. =20 FreeBSD has its own boot manager, Booteasy, which probably will not work = properly in your case.
 
If you=20 have NT in the second partition, Booteasy will look for its boot files = in the=20 second partition. The problem is that NT will have left its boot files = in the=20 first FAT partition.
 
I=20 reported this as a bug, but am not aware that anything is being done to = correct=20 Booteasy.
 
These=20 problems vanish with System Commander, which can be bought from any = software=20 vendor.
 
Paul=20 Smith
-----Original Message-----
From:=20 owner-freebsd-questions@FreeBSD.ORG=20 [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of=20 sanipcan
Sent: Sunday, 19 November, 2000 05:34 = AM
To:=20 questions@FreeBSD.ORG
Subject:

I currently have win nt4.0 and win95 = , and i have=20 dual boot option ,if i install Bsd,
wolud i get options to boot all the = os i=20 have.
 
or should i use third party software. = please help=20 me.
 
From
Ramprasad
bkrp@mailandnews.com ------=_NextPart_000_001D_01C0521B.B26D3530-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 11:45: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailout01.sul.t-online.com (mailout01.sul.t-online.com [194.25.134.80]) by hub.freebsd.org (Postfix) with ESMTP id 6241F37B4C5 for ; Sun, 19 Nov 2000 11:44:59 -0800 (PST) Received: from fwd02.sul.t-online.com by mailout01.sul.t-online.com with smtp id 13xaOV-00072m-01; Sun, 19 Nov 2000 20:44:55 +0100 Received: from t-online.de (320086386942-0001@[193.158.169.96]) by fwd02.sul.t-online.com with esmtp id 13xaOG-1F0F84C; Sun, 19 Nov 2000 20:44:40 +0100 Message-ID: <3A182E44.73C7F52E@t-online.de> Date: Sun, 19 Nov 2000 20:47:16 +0100 From: Holger.Weisbrodt@t-online.de (Holger Weisbrodt) Organization: Private Linux Site X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.2.14 i686) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: X server problem after upgrading from 3.4 to 4.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Sender: 320086386942-0001@t-dialin.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, after upgrading from 3.4 to 4.0 my X server setup seems to be wrong. I reconfigured it with xf86config and got still this message 'XWrapper: no modules loaded for 'xserver' service'. I checked the man pages and additional docs but without any helpful explanations. I had posted this problem two weeks ago. I could not believe, as someone suggested, that I have to recompile the x server package or some programs. Anyone an idea what went wrong in this case? Without X life is not the same... Thanks for any hints. Cheers, Holger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 12: 2:43 2000 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 488A437B479 for ; Sun, 19 Nov 2000 12:02:41 -0800 (PST) Received: from chris ([62.252.214.67]) by mta06-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with SMTP id <20001119200239.RTNG5359.mta06-svc.ntlworld.com@chris> for ; Sun, 19 Nov 2000 20:02:39 +0000 Message-ID: <001701c05263$a455cbe0$43d6fc3e@chris> Reply-To: "chris.hackett" From: "chris.hackett" To: Subject: Date: Sun, 19 Nov 2000 20:02:25 -0000 Organization: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0014_01C05263.A327AC20" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0014_01C05263.A327AC20 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I have just installed freebsd. When I attempt to extract the bin = distribution files from a dos partition it reads the first 27 chunks ok = then when it gets to chunk 28 i get the message :'Write failure on = transfer'. Please help. ------=_NextPart_000_0014_01C05263.A327AC20 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I have just installed freebsd. When I = attempt to=20 extract the bin distribution files from a dos partition it reads the = first 27=20 chunks ok then when it gets to chunk 28 i get the message :'Write = failure on=20 transfer'.
 
Please help.
------=_NextPart_000_0014_01C05263.A327AC20-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 12: 4:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from grumpy.dyndns.org (cm-24-246-28-166.toney.mediacom.ispchannel.com [24.246.28.166]) by hub.freebsd.org (Postfix) with ESMTP id 9002637B479 for ; Sun, 19 Nov 2000 12:04:43 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by grumpy.dyndns.org (8.11.1/8.11.1) with ESMTP id eAJK4MS84046; Sun, 19 Nov 2000 14:04:24 -0600 (CST) (envelope-from dkelly@grumpy.dyndns.org) Message-Id: <200011192004.eAJK4MS84046@grumpy.dyndns.org> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: Pontius Malmberg Cc: questions@FreeBSD.ORG From: David Kelly Subject: Re: multiple web servers behind firewall In-reply-to: Message from Pontius Malmberg of "Sun, 19 Nov 2000 08:20:34 PST." <20001119162034.29461.qmail@web5304.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 19 Nov 2000 14:04:22 -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Pontius Malmberg writes: > i have one ip coming in on a cable modem, is it > possible for me to setup a "gateway server" (maybe > using name-based hosting) and provide multiple > physical web servers behind firewall??? if possible, > then how would i go about doing this? Its mostly an issue of whatever web server you use. Know Apache can host multiple sites on one machine where each site has its own IP address. Believe Apache is also capable of recognizing multiple aliases for the same IP address. > i am fully aware of the bandwidth constraint that > comes with cable modem, but i just want to have the > experience when i am going out there looking for a > job? :o) The bandwidth constraint on a cable modem is nothing more nor nothing less than the ISP makes it. My RCA DCM215 cablemodem has a 100baseTX ethernet connection and the box says it will do up to 38M bits/sec over the cable. Its my understanding when the modem registers on the wire a central box managed by the cable company instructs my modem as to what rate to throttle connections. Throttled at 500/100 its still better than the 64k ISDN connection 10 people share at work. -- 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 Sun Nov 19 12:10:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id E277A37B479 for ; Sun, 19 Nov 2000 12:10:37 -0800 (PST) Received: by pcwin002.win.tue.nl (Postfix, from userid 1001) id 239B9134A2; Sun, 19 Nov 2000 21:08:32 +0100 (CET) Date: Sun, 19 Nov 2000 21:08:32 +0100 From: Stijn Hoop To: Allan Dib Cc: questions@freebsd.org Subject: Re: Installing a port Message-ID: <20001119210832.B69727@pcwin002.win.tue.nl> References: <3a182715.ca.0@webcentral.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: <3a182715.ca.0@webcentral.com.au>; from dib.allan.l@edumail.vic.gov.au on Mon, Nov 20, 2000 at 06:16:37AM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, On Mon, Nov 20, 2000 at 06:16:37AM +0000, Allan Dib wrote: > I wonder if anyone can answer what is probably a very basic question. I've > been reading some BSD documentation and often it will say in regard to > installing a port something like "simply change > /usr/ports/the-port-you-want-to-install and run 'make install'". I have > always used the command "make install". However lately I've seen a lot of > documentation say to use the command 'make && make install' what's the > difference and which should one use?? Hum, I can't think right away of a difference other than that the first is a lot shorter. 'make install' does a 'make all' (which is what you get if you type 'make') internally. The most secure method would be to do 2 separate steps: 1. cd /usr/ports/foobar && make as a user 2. become root and do cd /usr/ports/foobar && make install However, this breaks if the port needs to install any dependencies (because it'll try to install those using your user account), so you'll have to install each port manually. For normal use, just use 'make install' as root and you'll be fine. HTH, --Stijn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 13:43: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.hellasnet.gr (mail.hellasnet.gr [212.54.192.3]) by hub.freebsd.org (Postfix) with ESMTP id AC93337B479 for ; Sun, 19 Nov 2000 13:43:00 -0800 (PST) Received: from hades.hell.gr (ppp2.patr.hellasnet.gr [212.54.197.17]) by mail.hellasnet.gr (8.9.1/8.9.1) with ESMTP id TAA14031; Sun, 19 Nov 2000 19:42:56 -0200 (GMT) Received: (from charon@localhost) by hades.hell.gr (8.11.1/8.11.1) id eAJLYp314834; Sun, 19 Nov 2000 23:34:51 +0200 (EET) Date: Sun, 19 Nov 2000 23:34:51 +0200 From: Giorgos Keramidas To: Jack Morgan Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Linux vs Freebsd Message-ID: <20001119233450.D14604@hades.hell.gr> References: <001901c0511d$5a379f30$471eff0a@exodus.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <001901c0511d$5a379f30$471eff0a@exodus.net>; from j-morgan@gol.com on Sat, Nov 18, 2000 at 02:06:47PM +0900 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 X-Loop: FreeBSD.ORG On Sat, Nov 18, 2000 at 02:06:47PM +0900, Jack Morgan wrote: > Howdy, > I have recently migrated from Debian GNU/Linux to FreeBSD and was wondering > what I should look out for? Advice? Suggestions? I'd suggest starting with the Handbook and the FAQ. If this is too complex for you (I do not know what Debian expertise you have, and how much of it can help you with FreeBSD), you might also find a truly remarkable resource in the Tutorials found at the www.freebsd.org site. Start at the documentation links of http://www.freebsd.org/ and you'll find your way; I'm pretty sure of this. - giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 13:43:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.hellasnet.gr (mail.hellasnet.gr [212.54.192.3]) by hub.freebsd.org (Postfix) with ESMTP id 635BE37B4C5 for ; Sun, 19 Nov 2000 13:43:03 -0800 (PST) Received: from hades.hell.gr (ppp2.patr.hellasnet.gr [212.54.197.17]) by mail.hellasnet.gr (8.9.1/8.9.1) with ESMTP id TAA14023; Sun, 19 Nov 2000 19:42:51 -0200 (GMT) Received: (from charon@localhost) by hades.hell.gr (8.11.1/8.11.1) id eAJLVLr14807; Sun, 19 Nov 2000 23:31:21 +0200 (EET) Date: Sun, 19 Nov 2000 23:31:21 +0200 From: Giorgos Keramidas To: werner99za@yahoo.com Cc: questions@FreeBSD.ORG Subject: Re: CVS server Message-ID: <20001119233121.C14604@hades.hell.gr> References: <20001117203337.2247.qmail@web10701.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20001117203337.2247.qmail@web10701.mail.yahoo.com>; from werner99za@yahoo.com on Fri, Nov 17, 2000 at 12:33:37PM -0800 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 17, 2000 at 12:33:37PM -0800, werner99za@yahoo.com wrote: > Hi > Can anyone please tell me how to turn my FreeBSD box > into a CVS server. > Thanks Yes, of course. It should be easy to setup CVS to act as a server for you, if you read the info docs of CVS. Just type: % info "(cvs)" and follow the nodes: Repository / Remote Repositories / Server requirements. If you stumble upon something that you do not understand, we're always here to help you move on :-) - giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 13:43:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.hellasnet.gr (mail.hellasnet.gr [212.54.192.3]) by hub.freebsd.org (Postfix) with ESMTP id 7534C37B4D7 for ; Sun, 19 Nov 2000 13:43:07 -0800 (PST) Received: from hades.hell.gr (ppp2.patr.hellasnet.gr [212.54.197.17]) by mail.hellasnet.gr (8.9.1/8.9.1) with ESMTP id TAA14039; Sun, 19 Nov 2000 19:43:06 -0200 (GMT) Received: (from charon@localhost) by hades.hell.gr (8.11.1/8.11.1) id eAJLPk514741; Sun, 19 Nov 2000 23:25:46 +0200 (EET) Date: Sun, 19 Nov 2000 23:25:45 +0200 From: Giorgos Keramidas To: Don Tait Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Hmmmm Message-ID: <20001119232545.B14604@hades.hell.gr> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from oak.island@home.com on Fri, Nov 17, 2000 at 08:27:09AM -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 X-Loop: FreeBSD.ORG [-- message slightly reformatted --] On Fri, Nov 17, 2000 at 08:27:09AM -0700, Don Tait wrote: > Can I install freebsd now that I am already running Win98 ...Without > partioning or uninstalling the Win system? The short answer is 'depends'. The longer answer is one of: a) Yes, on a separate hard disk. With the low prices of disks nowadays, this is by far the safest option you have. b) Yes, if you can use PartitionMagic to resize your Windows partition to make some free space for BSD. I don't know much about PartitioMagic, since I do not use neither this nor Windows, but I've heard several people's success stories with partitions resized by PartitionMagic. - giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 13:43:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.hellasnet.gr (mail.hellasnet.gr [212.54.192.3]) by hub.freebsd.org (Postfix) with ESMTP id 7B1A137B4C5 for ; Sun, 19 Nov 2000 13:43:40 -0800 (PST) Received: from hades.hell.gr (ppp2.patr.hellasnet.gr [212.54.197.17]) by mail.hellasnet.gr (8.9.1/8.9.1) with ESMTP id TAA14046; Sun, 19 Nov 2000 19:43:08 -0200 (GMT) Received: (from charon@localhost) by hades.hell.gr (8.11.1/8.11.1) id eAJLMVW14697; Sun, 19 Nov 2000 23:22:31 +0200 (EET) Date: Sun, 19 Nov 2000 23:22:31 +0200 From: Giorgos Keramidas To: Operador del sistema Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Incomplete email system Message-ID: <20001119232231.A14604@hades.hell.gr> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from operador@nietzsche.webcaribe.net on Fri, Nov 17, 2000 at 01:09:59PM +0000 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 17, 2000 at 01:09:59PM +0000, Operador del sistema wrote: > Hi, I was editing /etc/newsyslog.conf because i wanted to add a line for a > new log file, and i mistyped a line and, later of a newsyslogd restart, > root recived the following msg: > > newsyslog: missing field in config line: > > I dont know if the report is "completed", but, it seems to be larger but > there are no more lines... It would be nice to see your newsyslog.conf, dear. Without it, we can only guess what the problem with it really is. Knowing which version of FreeBSD you're running might be useful too. In a sidenote, you can always restore your newsyslog.conf to it's default version by grabbing /usr/src/etc/newsyslog.conf from the system sources. Then, you can start hacking on that version to suit your taste and needs. - giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 13:45:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from Mercury.acs.unt.edu (mercury.acs.unt.edu [129.120.220.1]) by hub.freebsd.org (Postfix) with ESMTP id 82AC537B479 for ; Sun, 19 Nov 2000 13:45:10 -0800 (PST) Received: from cs.unt.edu (cs.unt.edu [129.120.36.230]) by Mercury.acs.unt.edu (8.8.8/8.8.8) with ESMTP id PAA25405 for ; Sun, 19 Nov 2000 15:45:05 -0600 (CST) Received: from csp01.csci.unt.edu (csp01.csci.unt.edu [129.120.36.65]) by cs.unt.edu (8.9.3/8.9.3) with ESMTP id PAA84020 for ; Sun, 19 Nov 2000 15:45:04 -0600 (CST) (envelope-from rougeau@cs.unt.edu) Received: from rougeau (helo=localhost) by csp01.csci.unt.edu with local-smtp (Exim 3.12 #1 (Debian)) id 13xcGm-0000Io-00 for ; Sun, 19 Nov 2000 15:45:04 -0600 Date: Sun, 19 Nov 2000 15:45:04 -0600 (CST) From: Barry Amos Rougeau To: freebsd-questions@freebsd.org Subject: Sound Blaster Live! Value Trouble Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm running 4.1.1-RELEASE on an ASUS A7V motherboard. I've finally succeeded in getting the onboard Ultra ATA/100 controller to cooperate, but the sound card still has a way to go. I've included device pcm in my kernel, ran /dev/sh MAKEDEV snd, snd0, and snd1, and cat /dev/sndstat always returns: Device not configured. When I boot up I get: pcm0: port 0xa400-0xa41f at device 10.0 on pci0 pcm0: unable to map interrupt device_probe_and_attach: pcm0 attach returned 6 Any help will be greatly appreciated. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 13:53: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ipass.one.net (news2.one.net [206.112.192.118]) by hub.freebsd.org (Postfix) with ESMTP id 740DD37B479 for ; Sun, 19 Nov 2000 13:52:58 -0800 (PST) Received: from bigfoot.com (cvg-27-180-111.cinci.rr.com [24.27.180.111]) by ipass.one.net (8.8.7/8.8.7) with ESMTP id QAA07848 for ; Sun, 19 Nov 2000 16:56:40 -0500 Message-ID: <3A184B47.7CB5F3C7@bigfoot.com> Date: Sun, 19 Nov 2000 16:51:03 -0500 From: Sam Carleton X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: manually changing users shell Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ok, I give. I modified both the /etc/passwd and the /etc/master.passwd files, but the shell still does not change. I am trying to change the shell from /bin/sh to /bin/tcsh. Both shells are in the /etc/shells file. How do I go about manually changing a users shell? Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 13:56:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by hub.freebsd.org (Postfix) with ESMTP id 6B21A37B4CF for ; Sun, 19 Nov 2000 13:56:27 -0800 (PST) Received: from m973-mp1-cvx1c.gui.ntl.com ([62.252.15.205]) by mta05-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001119215625.IPFC5562.mta05-svc.ntlworld.com@m973-mp1-cvx1c.gui.ntl.com>; Sun, 19 Nov 2000 21:56:25 +0000 Date: Sun, 19 Nov 2000 21:57:03 +0000 (GMT) From: George Reid X-Sender: geeorgy@sobek.openirc.co.uk To: "chris.hackett" Cc: freebsd-questions@freebsd.org Subject: Re: your mail In-Reply-To: <001701c05263$a455cbe0$43d6fc3e@chris> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 19 Nov 2000, chris.hackett wrote: > I have just installed freebsd. When I attempt to extract the bin > distribution files from a dos partition it reads the first 27 chunks > ok then when it gets to chunk 28 i get the message :'Write failure on > transfer'. > > Please help. You have a corrupt release set. You can download the last file in the bin distribution from ftp.freebsd.org. G "And then it comes to be that the soothing light at the end of your tunnel was just a freight train, comin' your way." George Reid * greid@ukug.uk.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 Nov 19 13:57:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from relay1.intercom.es (relay1.intercom.es [212.66.160.19]) by hub.freebsd.org (Postfix) with ESMTP id 5002537B479 for ; Sun, 19 Nov 2000 13:57:10 -0800 (PST) Received: from lix.intercom.es (root@lix.intercom.es [212.66.160.2]) by relay1.intercom.es (8.11.1/8.11.1) with ESMTP id eAJKhvC15767; Sun, 19 Nov 2000 21:43:57 +0100 Received: from intercom.es (iv2-130.intercom.es [212.66.169.130]) by lix.intercom.es (8.9.3/8.9.3) with ESMTP id WAA10623; Sun, 19 Nov 2000 22:55:39 +0100 Received: (from megarcia@localhost) by intercom.es (8.11.0/8.11.0) id eAJLxKI01636; Sun, 19 Nov 2000 22:59:20 +0100 (CET) (envelope-from megarcia) Date: Sun, 19 Nov 2000 22:59:20 +0100 From: Manuel Enrique Garcia Cuesta To: Sam Carleton Cc: FreeBSD Questions Subject: Re: manually changing users shell Message-ID: <20001119225920.C584@ilex.kicelo.org> References: <3A184B47.7CB5F3C7@bigfoot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <3A184B47.7CB5F3C7@bigfoot.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sam, === Sam Carleton escribia (Sun, Nov 19, 2000 at 04:51:03PM -0500): > Ok, I give. I modified both the /etc/passwd and the /etc/master.passwd > files, but the shell still does not change. I am trying to change the > shell from /bin/sh to /bin/tcsh. Both shells are in the /etc/shells > file. How do I go about manually changing a users shell? The canonical procedure is, as root: vipw and edit the shell field there. > > Sam HTH Manuel Garcia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 14: 0:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by hub.freebsd.org (Postfix) with ESMTP id BE24C37B479 for ; Sun, 19 Nov 2000 14:00:41 -0800 (PST) Received: from m973-mp1-cvx1c.gui.ntl.com ([62.252.15.205]) by mta05-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001119220040.IPZE5562.mta05-svc.ntlworld.com@m973-mp1-cvx1c.gui.ntl.com>; Sun, 19 Nov 2000 22:00:40 +0000 Date: Sun, 19 Nov 2000 22:01:28 +0000 (GMT) From: George Reid X-Sender: geeorgy@sobek.openirc.co.uk To: Sam Carleton Cc: FreeBSD Questions Subject: Re: manually changing users shell In-Reply-To: <3A184B47.7CB5F3C7@bigfoot.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 19 Nov 2000, Sam Carleton wrote: > Ok, I give. I modified both the /etc/passwd and the /etc/master.passwd > files, but the shell still does not change. I am trying to change the > shell from /bin/sh to /bin/tcsh. Both shells are in the /etc/shells > file. How do I go about manually changing a users shell? > > Sam chsh(1) G "And then it comes to be that the soothing light at the end of your tunnel was just a freight train, comin' your way." George Reid * greid@ukug.uk.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 Nov 19 14:21:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.enteract.com (mail.enteract.com [207.229.143.33]) by hub.freebsd.org (Postfix) with ESMTP id A917137B479 for ; Sun, 19 Nov 2000 14:21:37 -0800 (PST) Received: from shell-1.enteract.com (dscheidt@shell-1.enteract.com [207.229.143.40]) by mail.enteract.com (8.9.3/8.9.3) with SMTP id QAA80083; Sun, 19 Nov 2000 16:21:36 -0600 (CST) (envelope-from dscheidt@enteract.com) Date: Sun, 19 Nov 2000 16:21:36 -0600 (CST) From: David Scheidt To: Sam Carleton Cc: FreeBSD Questions Subject: Re: manually changing users shell In-Reply-To: <3A184B47.7CB5F3C7@bigfoot.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 19 Nov 2000, Sam Carleton wrote: :Ok, I give. I modified both the /etc/passwd and the /etc/master.passwd :files, but the shell still does not change. I am trying to change the :shell from /bin/sh to /bin/tcsh. Both shells are in the /etc/shells :file. How do I go about manually changing a users shell? It sounds like you need to run pwd_mkdb(8). This will recreate your /etc/spwd.db and /etc/pwd.db password databases. There is also a chsh(1) command to change user shells with. If you must edit the password file directly, use vipw(8). It does file locking, and the required post processing. Despite its name, the editor it uses is the value of your $EDITOR enviormental variable, so you can use your favorite editor if it doesn't happen to be nvi. David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 14:24:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ipass.one.net (news2.one.net [206.112.192.118]) by hub.freebsd.org (Postfix) with ESMTP id 88F2E37B479 for ; Sun, 19 Nov 2000 14:24:46 -0800 (PST) Received: from bigfoot.com (cvg-27-180-111.cinci.rr.com [24.27.180.111]) by ipass.one.net (8.8.7/8.8.7) with ESMTP id RAA08284 for ; Sun, 19 Nov 2000 17:28:27 -0500 Message-ID: <3A1852BD.807093A7@bigfoot.com> Date: Sun, 19 Nov 2000 17:22:53 -0500 From: Sam Carleton X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: using NAT to redirect, as well as masquerade Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ok, I have the firewall under control for normal ip masquerading. Now I would like to use NAT to redirect a few ports, like port 80, to another internal machine. I have looked at the NAT man page, but cannot make sence of it. Is there any examples out there of how to do what I would like to do? Thanks! Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 14:52:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2a.ispchannel.com (smtp.ispchannel.com [24.142.63.7]) by hub.freebsd.org (Postfix) with ESMTP id 8CC6237B479 for ; Sun, 19 Nov 2000 14:52:48 -0800 (PST) Received: from ispchannel.com ([206.31.81.146]) by smtp2a.ispchannel.com (InterMail vK.4.02.00.00 201-232-116 license 7d3764cdaca754bf8ae20adf0db2aa60) with ESMTP id <20001119225536.EQRS382.smtp2a@ispchannel.com>; Sun, 19 Nov 2000 14:55:36 -0800 Message-ID: <3A1859EF.20FC3CB3@ispchannel.com> Date: Sun, 19 Nov 2000 16:53:36 -0600 From: Mark Hummel Organization: Innovative Solutions X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: kstewart@urx.com, FSD Subject: (EOT) Can't Run KDE in 16 bit Color Mode References: <3A172EEF.23304DA2@ispchannel.com> <3A17392B.35A586A6@urx.com> <3A175F29.EEE3EA96@ispchannel.com> <3A176756.97BFB7FB@urx.com> <3A180656.9C3F44C@ispchannel.com> <3A183F71.8EAFA14@urx.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I did it. I ran XF86Setup -- it took 3 tries until I declined it using the previously written XF86Config file for defaults. I am now running X Windows in 16 bit color at 1024 x 768. Thank you all for your inputs. I would not have done what I did without them. Mark Kent Stewart wrote: > Mark Hummel wrote: > > > > Good point. I tried to use XFree86 with 4.0 Stable, but for some reason, it wouldn't run so I did the text > > file setup with XF86Config. Could this be the cause? > > I don't thinks so. I think we both need to fire up x-windows using the > bpp we want it to use. I haven't read about how to do that yet. > > Kent > > > > > Kent Stewart wrote: > > > > > Mark Hummel wrote: > > > > > > > > Kent, > > > > > > > > Thanks for the quick response. When I boot Windoze 98, I have 16 bit high color at 1024 x 768. If my > > > > video card can do it with Windoze, why can't it do it with FBSD? > > > > > > You have that wrong. Why can't XFree86 do it? It is a 3rd party port > > > and not part of the system. We have a tendancy to forget that once in > > > a while. > > > > > > I have a board with either 8MB or 16MB and I'm not sure it is doing > > > 24bpp. When I boot Win 2000 and use Adobe's Photoshop 5.5, images look > > > really good. I don't have anything similar that I am using on FreeBSD > > > but one image looked about like 256 colors and not 16M. I brought up > > > XF86Setup and told it to do 24bpp but I never went back to look at the > > > image. I tried to find it but even locate didn't list it. That means > > > it is on the other machine and that one is midway through a 9hour job > > > and some web stuff that I am in the middle of. > > > > > > There are a number of topics that KDE-2 seem to be dealing shy of a > > > full deck. Whether this is a KDE problem or XFree86 3.3.6, I can't > > > tell. > > > > > > Kent > > > > > > > > > > > Mark > > > > > > > > Kent Stewart wrote: > > > > > > > > > Mark Hummel wrote: > > > > > > > > > > > > I just finished a reinstall of FBSD 4.1.1R. I setup XF86Config to > > > > > > recognize the standard 2 MB of VRAM on my video card (Diamond Stealth 3D > > > > > > 2000). Even though I boot Windoze 98 SE at 1024 x 768 in 16 bit color, > > > > > > KDE still comes up with only 8 bit (256 colors). I don't understand > > > > > > why. > > > > > > > > > > Well, my 3d-3000 box states that you need 4MB to do 16M (24bpp) color. > > > > > You can do up to 65K colors with 2MB. > > > > > > > > > > Kent > > > > > > > > > > > > > > > > > Has anyone else had a similar challenge? Please respond to my personal > > > > > > email address. > > > > > > > > > > > > Mark > > > > > > > > > > > > ----------------------------------------------------------------------------------------------------- > > > > > > > > > > > > System Details: > > > > > > > > > > > > i386 architecture > > > > > > AMD K-6 CPU @ 200Mhz > > > > > > 64 MB RAM > > > > > > PS/2 Mouse > > > > > > 2800MB hard drive for FBSD > > > > > > IDE bus > > > > > > > > > > > > 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 > > > > > > -- > > > Kent Stewart > > > Richland, WA > > > > > > mailto:kbstew99@hotmail.com > > > http://kstewart.urx.com/kstewart/index.html > > > FreeBSD News http://daily.daemonnews.org/ > > -- > 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 Sun Nov 19 15:38:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost01.reflexnet.net (mailhost01.reflexnet.net [64.6.192.82]) by hub.freebsd.org (Postfix) with ESMTP id 0FF4E37B4C5 for ; Sun, 19 Nov 2000 15:38:13 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Sun, 19 Nov 2000 15:33:12 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAJNXcQ23289; Sun, 19 Nov 2000 15:33:38 -0800 (PST) (envelope-from cjc) Date: Sun, 19 Nov 2000 15:33:28 -0800 From: "Crist J . Clark" To: Sam Carleton Cc: FreeBSD Questions Subject: Re: using NAT to redirect, as well as masquerade Message-ID: <20001119153328.B12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: <3A1852BD.807093A7@bigfoot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <3A1852BD.807093A7@bigfoot.com>; from scarleton@bigfoot.com on Sun, Nov 19, 2000 at 05:22:53PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Nov 19, 2000 at 05:22:53PM -0500, Sam Carleton wrote: > Ok, I have the firewall under control for normal ip masquerading. Now > I would like to use NAT to redirect a few ports, like port 80, to > another internal machine. I have looked at the NAT man page, but cannot > make sence of it. Is there any examples out there of how to do what I > would like to do? Thanks! Add, natd_flags="-redirect_port tcp internal_machine:80 80" To /etc/rc.conf to have it work at boot time. Alternatively, if you are going to have a list of these, put, redirect_port tcp internal_machine:80 80 . . . In /etc/natd.conf and in rc.conf have, natd_flags="-f /etc/natd.conf" -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 15:45:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost01.reflexnet.net (mailhost01.reflexnet.net [64.6.192.82]) by hub.freebsd.org (Postfix) with ESMTP id 0FF0C37B479 for ; Sun, 19 Nov 2000 15:45:20 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Sun, 19 Nov 2000 15:40:53 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAJNfZa23327; Sun, 19 Nov 2000 15:41:35 -0800 (PST) (envelope-from cjc) Date: Sun, 19 Nov 2000 15:41:25 -0800 From: "Crist J . Clark" To: Allan Dib Cc: questions@FreeBSD.ORG Subject: Re: Installing a port Message-ID: <20001119154125.C12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: <3a182715.ca.0@webcentral.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <3a182715.ca.0@webcentral.com.au>; from dib.allan.l@edumail.vic.gov.au on Mon, Nov 20, 2000 at 06:16:37AM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Nov 20, 2000 at 06:16:37AM +0000, Allan Dib wrote: > Hiya everyone, > > I wonder if anyone can answer what is probably a very basic question. I've been > reading some BSD documentation and often it will say in regard to installing > a port something like "simply change /usr/ports/the-port-you-want-to-install > and run 'make install'". I have always used the command "make install". However > lately I've seen a lot of documentation say to use the command 'make && make > install' what's the difference and which should one use?? I really can't think of how there is any functional difference. The only time I split the two is when there is something I want to do in between the build and install steps. For example when doing an upgrade of a port I often do, # make && pkg_delete port_name.previous_version && make install If I am installing something new I use, # make install Unless I want to inspect it after build but before install. But in that case, I would not be using 'make && make install' either. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 15:58:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from newsf1.texas.rr.com (newsf1.texas.rr.com [24.28.95.146]) by hub.freebsd.org (Postfix) with ESMTP id 3B2BE37B4C5 for ; Sun, 19 Nov 2000 15:58:08 -0800 (PST) Received: from satx.rr.com (cs160145-193.satx.rr.com [24.160.145.193]) by newsf1.texas.rr.com (8.10.1/8.10.1) with ESMTP id eAJNvju11940; Sun, 19 Nov 2000 17:57:49 -0600 (CST) Message-ID: <3A1868E8.8C959D06@satx.rr.com> Date: Sun, 19 Nov 2000 17:57:28 -0600 From: Jason X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Barry Amos Rougeau Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Sound Blaster Live! Value Trouble References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Barry Amos Rougeau wrote: > I'm running 4.1.1-RELEASE on an ASUS A7V motherboard. I've finally > succeeded in getting the onboard Ultra ATA/100 controller to cooperate, > but the sound card still has a way to go. I've included device pcm in my > kernel, ran /dev/sh MAKEDEV snd, snd0, and snd1, and cat /dev/sndstat > always returns: Device not configured. When I boot up I get: > > pcm0: port 0xa400-0xa41f at device 10.0 on pci0 > pcm0: unable to map interrupt > device_probe_and_attach: pcm0 attach returned 6 > > Any help will be greatly appreciated. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message Not sure if this will help you, but five www.defcon1.org a look. For the link on the sblive, try this: http://www.defcon1.org/html/Hardware_Articles/PnP_Sound/PnP_Modem/SB-Live5/sb-live4.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 16:30:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from newsf1.texas.rr.com (newsf1.texas.rr.com [24.28.95.146]) by hub.freebsd.org (Postfix) with ESMTP id E721A37B685 for ; Sun, 19 Nov 2000 16:30:07 -0800 (PST) Received: from satx.rr.com (cs160145-193.satx.rr.com [24.160.145.193]) by newsf1.texas.rr.com (8.10.1/8.10.1) with ESMTP id eAK0U5u16289 for ; Sun, 19 Nov 2000 18:30:05 -0600 (CST) Message-ID: <3A18707B.4A094D54@satx.rr.com> Date: Sun, 19 Nov 2000 18:29:47 -0600 From: Jason X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: ports / compile problems Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG greetings, i searched the archives but found nothing, so please don't yell :) how do i update my /usr/ports to the latest ports software? not that I want to download all the software, just the ports collection. also I am having some problems when it comes to compiling some particular ports. for example when trying to install /usr/ports/ gimp1, it fails on aalib-1.2 because the file had a mismatch in the checksum.. how do I go about trying to install the port from scratch? (so it will re-download the software again) i have tried make clean, but that doesn't seem to work. thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 16:32:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtppop2pub.verizon.net (smtppop2pub.gte.net [206.46.170.21]) by hub.freebsd.org (Postfix) with ESMTP id E68E437B4C5 for ; Sun, 19 Nov 2000 16:32:40 -0800 (PST) Received: from gte.net (crtntx1-ar3-097-170.dsl.gtei.net [4.33.97.170]) by smtppop2pub.verizon.net with ESMTP ; id SAA58056649 Sun, 19 Nov 2000 18:31:16 -0600 (CST) Message-ID: <3A18711A.F71723C7@gte.net> Date: Mon, 20 Nov 2000 00:32:26 +0000 From: Jason Halbert X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: "Albert D. Cahalan" , questions@freebsd.org Subject: Re: Proper font for gtkBitchX References: <200011190718.eAJ7Isf166582@saturn.cs.uml.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Albert D. Cahalan" wrote: > > >>> have an idea. I installed gtkBitchX (obviously BitchX for Xwin) and I > >>> can't seem to find the proper font to allow the special characters > >>> they use to be displayed correctly. I used it under RH Linux just > >> > >> Why not just install Linux again? > > > > I don't have a Linux box anymore and I prefer FreeBSD. > > Maybe you'd like Debian? It is very different from Red Hat. > For example, I can upgrade my Debian box over the net with > just two commands: > > apt-get update # download latest list of packages > apt-get upgrade # download and install packages that have >changed Not to be mean or rude.. But I'll restate what I said.. I don't have a Linux box anymore and I prefer FreeBSD. Basically I didn't like Linux and my friends that are just now using Linux are having the same probs I did and I can see them getting frustrated. I like FreeBSD. If so many big companies use it for their Enterprise systems... I think it's safe to say the developers are doing something good. :) -- ------------------------------------------------------- | Jason P. Halbert | res02jw5@gte.net | | Transmitter Maintenance Engineer | ICQ#: 86637300 | | KDAF-TV WB33 | DALnet: Push^Pop | | KDTX-TV 58 | (214) 252-3300 | ------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 16:50:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from priv-edtnes04-hme0.telusplanet.net (fepout2.telus.net [199.185.220.237]) by hub.freebsd.org (Postfix) with ESMTP id 4D35437B4E5 for ; Sun, 19 Nov 2000 16:50:11 -0800 (PST) Received: from q ([209.53.59.203]) by priv-edtnes04-hme0.telusplanet.net (InterMail vM.4.01.02.11 201-229-116-111) with SMTP id <20001120005010.PUZD20445.priv-edtnes04-hme0.telusplanet.net@q> for ; Sun, 19 Nov 2000 17:50:10 -0700 Message-ID: <001e01c0528b$f1af4060$cb3b35d1@bconnected.net> From: "Peter" To: "'freebsd-questions@freebsd.org'" Subject: WEB base email Date: Sun, 19 Nov 2000 16:50:56 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_001B_01C05248.E3168240" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_001B_01C05248.E3168240 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable hi im looking at install a web base email to check mail while im away from = home and not able to use pop3 to check it. Would someone suggest a = webmail program that i can use. Here are the set up i was thinking = bout. I have 2 box one is for mail and the other is for web site. I = want to set up a web mail on the web site box and pop3 from the website = box into my mail box to check mail. I don't ne it to the web mail b able = to send mail out of just ne to check the mail on the mail box that i = have.=20 ThanK you Peter ------=_NextPart_000_001B_01C05248.E3168240 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
hi
 
im looking at install a web base email = to check=20 mail while im away from home and not able to use pop3 to check it.  = Would=20 someone suggest a webmail program that i can use.  Here are the set = up i=20 was thinking bout.  I have 2 box one is for mail and the other is = for web=20 site.  I want to set up a web mail on the web site box and pop3 = from the=20 website box into my mail box to check mail. I don't ne it to the web = mail b able=20 to send mail out of just ne to check the mail on the mail box that i = have.=20
 
 
ThanK you
Peter
------=_NextPart_000_001B_01C05248.E3168240-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 17:13:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tr909.trackstar.org (adsl-63-195-17-39.dsl.chic01.pacbell.net [63.195.17.39]) by hub.freebsd.org (Postfix) with ESMTP id 5AFC937B479 for ; Sun, 19 Nov 2000 17:13:53 -0800 (PST) Received: from localhost (sefkan@localhost) by tr909.trackstar.org (8.11.1/8.11.1) with ESMTP id eAK1DqS66673 for ; Sun, 19 Nov 2000 17:13:52 -0800 (PST) (envelope-from sefkan@tr909.trackstar.org) Date: Sun, 19 Nov 2000 17:13:52 -0800 (PST) From: Sefkan Botani To: freebsd-questions@freebsd.org Subject: command `who` fails (?) In-Reply-To: <20001119190655.B23989@peorth.iteration.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hello, I believe I've found a small quirk in the "who" command. "who" does not correctly display who is on my machine. I've confirmed this by trying the "last" command. Here's some output: command who: root ttyv1 Nov 19 15:40 root ttyv2 Nov 19 15:41 sereciya ttyv4 Nov 19 15:59 sereciya ttyp0 Nov 19 16:03 (:0.0) sereciya ttyp1 Nov 19 17:08 (:0.0) sereciya ttyp3 Nov 19 16:39 (:0.0) command "last andy": andy ttyp2 63.195.17.39 Sun Nov 19 16:38 - 16:39 (00:01) andy ttyp2 63.195.17.39 Sun Nov 19 16:34 - 16:35 (00:00) andy ttyp2 63.195.17.39 Sun Nov 19 16:09 - 16:18 (00:08) what's going on? thanks. -Sefkan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 17:25:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost01.reflexnet.net (mailhost01.reflexnet.net [64.6.192.82]) by hub.freebsd.org (Postfix) with ESMTP id 19DD537B479 for ; Sun, 19 Nov 2000 17:25:38 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Sun, 19 Nov 2000 17:24:05 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAK1PMv24276; Sun, 19 Nov 2000 17:25:22 -0800 (PST) (envelope-from cjc) Date: Sun, 19 Nov 2000 17:25:22 -0800 From: "Crist J . Clark" To: Sefkan Botani Cc: freebsd-questions@FreeBSD.ORG Subject: Re: command `who` fails (?) Message-ID: <20001119172522.G12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: <20001119190655.B23989@peorth.iteration.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from sefkan@tr909.trackstar.org on Sun, Nov 19, 2000 at 05:13:52PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Nov 19, 2000 at 05:13:52PM -0800, Sefkan Botani wrote: > > hello, > > I believe I've found a small quirk in the "who" command. > "who" does not correctly display who is on my machine. > > I've confirmed this by trying the "last" command. > > Here's some output: > > command who: > > root ttyv1 Nov 19 15:40 > root ttyv2 Nov 19 15:41 > sereciya ttyv4 Nov 19 15:59 > sereciya ttyp0 Nov 19 16:03 (:0.0) > sereciya ttyp1 Nov 19 17:08 (:0.0) > sereciya ttyp3 Nov 19 16:39 (:0.0) > > command "last andy": > > andy ttyp2 63.195.17.39 Sun Nov 19 16:38 - 16:39 > (00:01) > andy ttyp2 63.195.17.39 Sun Nov 19 16:34 - 16:35 > (00:00) > andy ttyp2 63.195.17.39 Sun Nov 19 16:09 - 16:18 > (00:08) > > > what's going on? $ man who WHO(1) FreeBSD General Commands Manual WHO(1) NAME who - display who is logged in SYNOPSIS who am I who [file] DESCRIPTION The who utility displays a list of all users currently logged on ^^^^^^^^^ ^^^^^^ ^^ It looks like 'andy' was logged off when you ran the who(1). Was he not? If the user is still logged in, the last field of the last(1) output is 'still logged in' rather than a logout time and duration. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 18:10:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx-a.qnet.com (mx-a.qnet.com [209.221.198.11]) by hub.freebsd.org (Postfix) with ESMTP id 5D20A37B479 for ; Sun, 19 Nov 2000 18:10:30 -0800 (PST) Received: from cello.qnet.com (root@cello.qnet.com [209.221.198.10]) by mx-a.qnet.com (8.9.1a/8.9.3) with ESMTP id SAA17456; Sun, 19 Nov 2000 18:10:30 -0800 (PST) Received: from STORK (56k-socal-03-47.dial.qnet.com [209.221.198.206]) by cello.qnet.com (8.9.0/8.9.1) with SMTP id SAA19875; Sun, 19 Nov 2000 18:10:08 -0800 (PST) From: "Heredity Choice" To: "Giorgos Keramidas" , "Jack Morgan" Cc: Subject: RE: Linux vs Freebsd Date: Sun, 19 Nov 2000 18:01:45 -0800 Message-ID: <000701c05295$d600df40$cec6ddd1@STORK> 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 In-Reply-To: <20001119233450.D14604@hades.hell.gr> X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.5600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Giorgos > Keramidas > Sent: Sunday, 19 November, 2000 13:35 PM > To: Jack Morgan > Cc: freebsd-questions@FreeBSD.ORG > Subject: Re: Linux vs Freebsd > > > On Sat, Nov 18, 2000 at 02:06:47PM +0900, Jack Morgan wrote: > > Howdy, > > I have recently migrated from Debian GNU/Linux to FreeBSD and > was wondering > > what I should look out for? Advice? Suggestions? > > I'd suggest starting with the Handbook and the FAQ. If this is > too complex > for you (I do not know what Debian expertise you have, and how > much of it can > help you with FreeBSD), you might also find a truly remarkable > resource in the > Tutorials found at the www.freebsd.org site. > > Start at the documentation links of http://www.freebsd.org/ and > you'll find > your way; I'm pretty sure of this. > > - giorgos I should like to add to the good advice above that you get a copy of Greg Lehey's "The Complete FreeBSD," Third Edition, and also print out www.mostgraveconcern.com/freebsd . Paul Smith To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 18:24:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from snowy.org (snowy.org [203.37.251.14]) by hub.freebsd.org (Postfix) with ESMTP id 51A5337B479 for ; Sun, 19 Nov 2000 18:24:19 -0800 (PST) Received: from localhost (snowy@localhost) by snowy.org (8.11.1/8.11.1) with ESMTP id eAK2NrB78682; Mon, 20 Nov 2000 12:23:53 +1000 (EST) (envelope-from snowy@snowy.org) Date: Mon, 20 Nov 2000 12:23:53 +1000 (EST) From: Sleepless in Brisbane To: Peter Cc: "'freebsd-questions@freebsd.org'" Subject: Re: WEB base email In-Reply-To: <001e01c0528b$f1af4060$cb3b35d1@bconnected.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 19 Nov 2000, Peter wrote: > hi > > im looking at install a web base email to check mail while im away from > home and not able to use pop3 to check it. Would someone suggest a > webmail program that i can use. Here are the set up i was thinking bout. > I have 2 box one is for mail and the other is for web site. I want to set > up a web mail on the web site box and pop3 from the website box into my > mail box to check mail. I don't ne it to the web mail b able to send mail > out of just ne to check the mail on the mail box that i have. I would suggest neomail myself; very nice - can work with pine folders as well and is simple to set up. (http://neomail.sourceforge.net) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 18:52:36 2000 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 BD3AE37B479 for ; Sun, 19 Nov 2000 18:52:32 -0800 (PST) Received: from anticipation.nc.rr.com ([24.162.255.77]) by mail7.nc.rr.com with Microsoft SMTPSVC(5.5.1877.537.53); Sun, 19 Nov 2000 21:52:06 -0500 Message-Id: <4.3.2.7.2.20001119214002.00a971b0@pop-server> X-Sender: KSHIRING@pop-server X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Sun, 19 Nov 2000 21:53:52 -0500 To: freebsd-questions@freebsd.org From: Ken Shiring Subject: Help with cs89xx-based IBM etherjet ISA Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am having problems getting this adapter to work. I have followed Section 7 of the FreeBSD handbook when compiling a custom kernel, and the driver is not detecting the card properly. I know the card works, because I have used it in other environments. I have used both the boot configure tool (-c) and the verbose option (-v) during boot. During boot, it looks like the ISA PnP code will "claim" some resources for the adapter, most notably the I/O range of about 0x200 through 0x300-and-something (don't have it in front of me right now). Later during the boot messages, I see the "cs0 : ....." fails to probe the adapter and also the line "unknown: ... failed to probe". Since this card is technically plug and play and doesn't have a specific I/O range, how should I set the kernel configs to find the card? Can someone recommend a good debug technique to figure out what is wrong? If anyone needs more specific output to help me, I can send them. Thanks a bunch. Ken J. Shiring VHDL, Verilog, C programmer & Linux/BSD user To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 18:53:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f38.pav1.hotmail.com [64.4.31.38]) by hub.freebsd.org (Postfix) with ESMTP id 6D20137B4C5 for ; Sun, 19 Nov 2000 18:53:17 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 19 Nov 2000 18:53:17 -0800 Received: from 63.38.110.166 by pv1fd.pav1.hotmail.msn.com with HTTP; Mon, 20 Nov 2000 02:53:16 GMT X-Originating-IP: [63.38.110.166] From: "John Skibicki III" To: questions@FreeBSD.ORG Subject: Dual Boot Date: Sun, 19 Nov 2000 20:53:16 CST Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 20 Nov 2000 02:53:17.0187 (UTC) FILETIME=[08791530:01C0529D] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hey I was curious about dual booting. I got the freeBSD BSD PowerPack. Heres my setup. 2 Hardrives. drive 0 is set up for windows. drive 1 I want for BSD. When I'm in the setup and I get to the screen where it asks me if I want the BootManager , Standard or None. Of course I want the BootManager. Then the next screen asks me which hard disk I want to prefrom this on. Do I select hardrive 0 or 1 ??? Thanks ! John Skibicki III p.s. Can you refer me to any free ISP's I can use on BSD in the x window enviroment? _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.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 Nov 19 18:56:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id 1FA6837B479 for ; Sun, 19 Nov 2000 18:56:52 -0800 (PST) Received: by heorot.1nova.com (Postfix, from userid 1000) id 6F3603271; Sat, 18 Nov 2000 19:20:27 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 54239326F; Sat, 18 Nov 2000 19:20:27 +0000 (GMT) Date: Sat, 18 Nov 2000 19:20:27 +0000 (GMT) From: Rick Hamell To: Ken Shiring Cc: freebsd-questions@freebsd.org Subject: Re: Help with cs89xx-based IBM etherjet ISA In-Reply-To: <4.3.2.7.2.20001119214002.00a971b0@pop-server> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > During boot, it looks like the ISA PnP code will "claim" some resources for > the adapter, most notably the I/O range of about 0x200 through > 0x300-and-something (don't have it in front of me right now). Later during > the boot messages, I see the "cs0 : ....." fails to probe the adapter and > also the line "unknown: ... failed to probe". Since it's plug and pray, have you gone into your Bios and manually reserved the IRQ for it? Do you even know what IRQ it's using? Is anything else using that same IRQ? Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***FreeBSD - The Power to Serve! http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 18:59:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from arisen.learn.ac.lk (unknown [203.115.23.65]) by hub.freebsd.org (Postfix) with ESMTP id 8C29C37B479 for ; Sun, 19 Nov 2000 18:59:10 -0800 (PST) Received: from tissa.mrt.ac.lk (IDENT:root@tissa.mrt.ac.lk [192.248.8.97]) by arisen.learn.ac.lk (8.9.3/8.9.3-L2) with ESMTP id JAA24908; Mon, 20 Nov 2000 09:02:43 +0600 Received: from hantana.pdn.ac.lk (IDENT:root@hantana.pdn.ac.lk [192.248.40.1]) by tissa.mrt.ac.lk (8.9.3/8.8.7) with ESMTP id IAA10809; Mon, 20 Nov 2000 08:56:19 +0600 Received: from aiken.cs.pdn.ac.lk (csgw.pdn.ac.lk [192.248.40.5]) by hantana.pdn.ac.lk (8.9.3/8.9.3) with ESMTP id JAA25685; Mon, 20 Nov 2000 09:08:10 +0600 Received: from localhost (cpe9609@localhost) by aiken.cs.pdn.ac.lk (8.9.3/8.7.3) with ESMTP id IAA19986; Mon, 20 Nov 2000 08:52:52 +0600 Date: Mon, 20 Nov 2000 08:52:51 +0600 (LKT) From: Asitha Bandaranayake To: "Albert D. Cahalan" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: x-problems in FreeBSD In-Reply-To: <200011190433.eAJ4Xgh156884@saturn.cs.uml.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 18 Nov 2000, Albert D. Cahalan wrote: > > Why not just use Red Hat? > > > pardon me if i'm wrong. but, is it sinful to start on a new OS. if you are interested, our university network is being expanded [actually entirely constructed] and we're going to use FreeBSD as our OS. so, i need a prior exposure to FreeBSD in every department i can think of. BTW, isn't this list supposed to be supporting the FreeBSD users; especially newcomers? asitha. =========================================================================== Asitha Bandaranayake email: asitha@iee.org 827, Peradeniya Road, cpe9609@cs.pdn.ac.lk Kandy 20000, Sri Lanka. tele: ++94-8-225266 ============================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 19:32:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from paradox.dyn.dhs.org (okc-94-239-104.mmcable.com [24.94.239.104]) by hub.freebsd.org (Postfix) with ESMTP id 5787637B479 for ; Sun, 19 Nov 2000 19:32:17 -0800 (PST) Received: from localhost (mgrant@localhost) by paradox.dyn.dhs.org (8.11.0/8.11.0) with ESMTP id eAL3WrB20903; Mon, 20 Nov 2000 21:32:53 -0600 (CST) (envelope-from mgrant@paradox.dyn.dhs.org) Date: Mon, 20 Nov 2000 21:32:52 -0600 (CST) From: "Mark R. Grant" To: Jason Cc: questions@freebsd.org Subject: Re: ports / compile problem In-Reply-To: <3A18707B.4A094D54@satx.rr.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 19 Nov 2000, Jason wrote: > greetings, > > i searched the archives but found nothing, so please don't yell :) > > how do i update my /usr/ports to the latest ports software? not > that I want to download all the software, just the ports > collection. Your best bet is to run the 'cvsup' program to synchronize your ports tree. > > also I am having some problems when it comes to compiling some > particular ports. for example when trying to install /usr/ports/ > gimp1, it fails on aalib-1.2 because the file had a mismatch > in the checksum.. how do I go about trying to install the > port from scratch? (so it will re-download the software again) > > i have tried make clean, but that doesn't seem to work. > "make deinstall" - does exactly that "make clean" - removes the object/source code from the port, essentially returning the port tree to just that. Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 19:33:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pmade.org (dsl-att1-118-93.sb.101freeway.net [12.44.118.93]) by hub.freebsd.org (Postfix) with ESMTP id 3CF1F37B663 for ; Sun, 19 Nov 2000 19:33:26 -0800 (PST) Received: from localhost (pjones@localhost) by pmade.org (8.9.3/8.9.3) with ESMTP id TAA47444; Sun, 19 Nov 2000 19:32:33 -0800 (PST) (envelope-from pjones@pmade.org) Date: Sun, 19 Nov 2000 19:32:33 -0800 (PST) From: Peter Jones To: Allan Dib Cc: questions@FreeBSD.ORG Subject: Re: Installing a port In-Reply-To: <3a182715.ca.0@webcentral.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG They both do the same thing. make install will run make(1) and it will atempt to do the install but notice that the software has not yet been build. So, it will do that first then return and do the install. make && make install will tell make only to do the build, since you are running it without a target, and if make exits without any errors your shell will run it again with the install target and make will just do the install. Thus, that last command is really running make twice. There are many other targets that you can use, like make fetch will fetch the source code for the port, and make patch will apply the FreeBSD patches, both of these targets are called when you run 'make' automaticly. On Mon, 20 Nov 2000, Allan Dib wrote: > Hiya everyone, > > I wonder if anyone can answer what is probably a very basic question. I've been > reading some BSD documentation and often it will say in regard to installing > a port something like "simply change /usr/ports/the-port-you-want-to-install > and run 'make install'". I have always used the command "make install". However > lately I've seen a lot of documentation say to use the command 'make && make > install' what's the difference and which should one use?? > > Best Regards, > > Allan. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- ....................................................................... : Peter Jones : Unix Geek - Four Wheeling : : pjones@pmade.org : Code Writing - Jesus Freak : :....................................:................................: :echo er|perl -0160 -pe ';$;=ord$/;s;^;"\U$/".chr($\;-11).chr$\;+4;e;': :.....................................................................: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 19:36:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pmade.org (dsl-att1-118-93.sb.101freeway.net [12.44.118.93]) by hub.freebsd.org (Postfix) with ESMTP id 510E437B479 for ; Sun, 19 Nov 2000 19:36:12 -0800 (PST) Received: from localhost (pjones@localhost) by pmade.org (8.9.3/8.9.3) with ESMTP id TAA47460; Sun, 19 Nov 2000 19:35:07 -0800 (PST) (envelope-from pjones@pmade.org) Date: Sun, 19 Nov 2000 19:35:06 -0800 (PST) From: Peter Jones To: Stijn Hoop Cc: Allan Dib , questions@FreeBSD.ORG Subject: Re: Installing a port In-Reply-To: <20001119210832.B69727@pcwin002.win.tue.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 19 Nov 2000, Stijn Hoop wrote: > Hum, I can't think right away of a difference other than that the first is > a lot shorter. > > 'make install' does a 'make all' (which is what you get if you type 'make') > internally. > > The most secure method would be to do 2 separate steps: > 1. cd /usr/ports/foobar && make > as a user I don't think that this will work unless the user has write permission to /usr/ports/distfiles and /usr/ports/foobar. > 2. become root and do > cd /usr/ports/foobar && make install > > However, this breaks if the port needs to install any dependencies (because > it'll try to install those using your user account), so you'll have to > install each port manually. > > For normal use, just use 'make install' as root and you'll be fine. > > HTH, > > --Stijn -- ....................................................................... : Peter Jones : Unix Geek - Four Wheeling : : pjones@pmade.org : Code Writing - Jesus Freak : :....................................:................................: :echo er|perl -0160 -pe ';$;=ord$/;s;^;"\U$/".chr($\;-11).chr$\;+4;e;': :.....................................................................: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 19:38:47 2000 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 87D8B37B479 for ; Sun, 19 Nov 2000 19:38:38 -0800 (PST) Received: from anticipation.nc.rr.com ([24.162.255.77]) by mail7.nc.rr.com with Microsoft SMTPSVC(5.5.1877.537.53); Sun, 19 Nov 2000 22:38:12 -0500 Message-Id: <4.3.2.7.2.20001119220503.00a97700@pop-server> X-Sender: KSHIRING@pop-server X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Sun, 19 Nov 2000 22:39:54 -0500 To: Rick Hamell From: Ken Shiring Subject: Re: Help with cs89xx-based IBM etherjet ISA Cc: freebsd-questions@freebsd.org In-Reply-To: References: <4.3.2.7.2.20001119214002.00a971b0@pop-server> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 07:20 PM 11/18/00 +0000, you wrote: > > During boot, it looks like the ISA PnP code will "claim" some resources > for > > the adapter, most notably the I/O range of about 0x200 through > > 0x300-and-something (don't have it in front of me right now). Later > during > > the boot messages, I see the "cs0 : ....." fails to probe the adapter and > > also the line "unknown: ... failed to probe". > > Since it's plug and pray, have you gone into your Bios and >manually reserved the IRQ for it? Do you even know what IRQ it's using? Is >anything else using that same IRQ? Wow that was fast. In the last failed to probe message mentioned above, the PnP code I think is trying IRQ 3, which, although unused on this box, should be reserved for COM1. FYI I have not enabled COMx support on this box (trying to keep the kernel as small as possible) In regard to your BIOS question, the only options I have in my BIOS is to to assign a given IRQ (or DMA) resource to either "Legacy ISA" or "PCI/PnP". I have tried assigning IRQ 3 to Auto, Legacy, and PnP with no success. Here is the unabridged boot output of my box in verbose mode: Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.1.1-RELEASE #6: Sun Nov 19 23:16:41 GMT 2000 root@rapture.xxx.xxx.xxx:/usr/src/sys/compile/RAPTURE Calibrating clock(s) ... TSC clock: 200533617 Hz, i8254 clock: 1193653 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz CLK_USE_TSC_CALIBRATION not specified - using old calibration method CPU: Pentium Pro (200.46-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x617 Stepping = 7 Features=0xf9ff real memory = 67108864 (65536K bytes) Physical memory chunk(s): 0x00001000 - 0x0009ffff, 651264 bytes (159 pages) 0x002d0000 - 0x03ff7fff, 64126976 bytes (15656 pages) config> di pcic0 No such device: pcic0 Invalid command or syntax. Type `?' for help. config> di psm0 No such device: psm0 Invalid command or syntax. Type `?' for help. config> di sio1 config> di sio0 config> di ppc0 No such device: ppc0 Invalid command or syntax. Type `?' for help. config> di sn0 No such device: sn0 Invalid command or syntax. Type `?' for help. config> di lnc0 No such device: lnc0 Invalid command or syntax. Type `?' for help. config> di le0 No such device: le0 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 config> di bt0 No such device: bt0 Invalid command or syntax. Type `?' for help. config> di ata1 No such device: ata1 Invalid command or syntax. Type `?' for help. config> di ata0 No such device: ata0 Invalid command or syntax. Type `?' for help. config> di aic0 No such device: aic0 Invalid command or syntax. Type `?' for help. config> di aha0 No such device: aha0 Invalid command or syntax. Type `?' for help. config> di adv0 No such device: adv0 Invalid command or syntax. Type `?' for help. config> q FreeBSD Kernel Configuration Utility - Version 1.2 Type "help" for help or "visual" to go to the visual configuration interface (requires MGA/VGA display or serial terminal capable of displaying ANSI graphics). config> visual \^[[m\^[[H\^[[J\^[[1;1H\^[[m\^[[1;4H\^[[m\^[[1m\^[[m\^[[1m\^[[1;64H\^[[m\^[[1m\^[[m\^[[1m\^[[m\^[[1m\^[[10;1H\^[[m\^[[10;4H\^[[m\^[[1m\^[[m\^[[1m\^[[10;64H\^[[m\^[[1m\^[[18;1H\^[[m\^[[22;1H\^[[m\^[[m\^[[24;1H\^[[m\^[[24;1H\^[[m\^[[1m\^[[m\^[[1m\^[[m\^[[1m\^[[m\^[[1;46H\^[[m\^[[2;1H\^[[m\^[[2;1H\^[[3;1H\^[[m\^[[3;1H\^[[4;1H\^[[m\^[[4;1H\^[[5;1H\^[[m\^[[5;1H\^[[6;1H\^[[m\^[[6;1H\^[[7;1H\^[[m\^[[7;1H\^[[m\^[[8;1H\^[[m\^[[m\^[[9;1H\^[[m\^[[11;1H\^[[m\^[[11;1H\^[[12;1H\^[[m\^[[12;1H\^[[13;1H\^[[m\^[[13;1H\^[[14;1H\^[[m\^[[14;1H\^[[15;1H\^[[m\^[[15;1H\^[[16;1H\^[[m\^[[16;1H\^[[m\^[[17;1H\^[[m\^[[m\^[[19;1H\^[[m\^[[20;1H\^[[m\^[[21;1H\^[[m\^[[2;1H\^[[m\^[[7m\^[[m\^[[23;1H\^[[m\^[[23;1H\^[[m\^[[m\^[[23;1H\^[[m\^[[23;1H\^[[m\^[[1m\^[[m\^[[1m\^[[m\^[[2;1H\^[[2;1H\^[[m\^[[m\^[[23;1H\^[[m\^[[23;1H\^[[m\^[[m\^[[23;1H\^[[m\^[[23;1H\^[[m\^[[1m\^[[m\^[[1m\^[[m\^[[2;1H\^[[m\^[[19;1H\^[[m\^[[20;1H\^[[m\^[[21;1H\^[[m\^[[11;1H\^[[m\^[[7m\^[[m\^[[23;1H\^[[m\^[[23;1H\^[[m\^[[11;1H\^[[11;1H\^[[m\^[[m\^[ [ 23;1H\^[[m\^[[23;1H\^[[m\^[[11;1H\^[[m\^[[19;1H\^[[m\^[[20;1H\^[[m\^[[21;1H\^[[m\^[[12;1H\^[[m\^[[7m\^[[m\^[[23;1H\^[[m\^[[23;1H\^[[m\^[[m\^[[23;1H\^[[m\^[[23;1H\^[[m\^[[1m\^[[m\^[[1m\^[[m\^[[12;1H\^[[1;46H\^[[m\^[[2;1H\^[[m\^[[2;1H\^[[3;1H\^[[m\^[[3;1H\^[[4;1H\^[[m\^[[4;1H\^[[5;1H\^[[m\^[[5;1H\^[[6;1H\^[[m\^[[6;1H\^[[7;1H\^[[m\^[[7;1H\^[[m\^[[8;1H\^[[m\^[[m\^[[9;1H\^[[m\^[[11;1H\^[[m\^[[11;1H\^[[12;1H\^[[m\^[[12;1H\^[[13;1H\^[[m\^[[13;1H\^[[14;1H\^[[m\^[[14;1H\^[[15;1H\^[[m\^[[15;1H\^[[16;1H\^[[m\^[[16;1H\^[[17;1H\^[[m\^[[17;1H\^[[m\^[[19;1H\^[[m\^[[20;1H\^[[m\^[[21;1H\^[[m\^[[12;1H\^[[m\^[[7m\^[[m\^[[23;1H\^[[m\^[[23;1H\^[[m\^[[m\^[[23;1H\^[[m\^[[23;1H\^[[m\^[[1m\^[[m\^[[1m\^[[m\^[[12;1H\^[[12;1H\^[[m\^[[m\^[[23;1H\^[[m\^[[23;1H\^[[m\^[[m\^[[23;1H\^[[m\^[[23;1H\^[[m\^[[1m\^[[m\^[[1m\^[[m\^[[12;1H\^[[m\^[[19;1H\^[[m\^[[20;1H\^[[m\^[[21;1H\^[[m\^[[19;2H\^[[m\^[[20;2H\^[[m\^[[21;2H\^[[m\^[[13;1H\^[[m\^[[7m\^[[m\^[[23;1H\^[[m\^[[23;1H\^[[m\^[[1m\^[[m\^[[13;1H\^[[1;46H\^[[m\^[[2;1H\^ [ [m\^[[2;1H\^[[3;1H\^[[m\^[[3;1H\^[[4;1H\^[[m\^[[4;1H\^[[5;1H\^[[m\^[[5;1H\^[[6;1H\^[[m\^[[6;1H\^[[m\^[[7;1H\^[[m\^[[m\^[[8;1H\^[[m\^[[m\^[[9;1H\^[[m\^[[11;1H\^[[m\^[[11;1H\^[[12;1H\^[[m\^[[12;1H\^[[13;1H\^[[m\^[[13;1H\^[[14;1H\^[[m\^[[14;1H\^[[15;1H\^[[m\^[[15;1H\^[[16;1H\^[[m\^[[16;1H\^[[m\^[[17;1H\^[[m\^[[m\^[[19;1H\^[[m\^[[20;1H\^[[m\^[[21;1H\^[[m\^[[19;2H\^[[m\^[[20;2H\^[[m\^[[21;2H\^[[m\^[[2;1H\^[[m\^[[7m\^[[m\^[[23;1H\^[[m\^[[23;1H\^[[m\^[[1m\^[[m\^[[1m\^[[m\^[[2;1H\^[[m\^[[19;1H\^[[m\^[[20;1H\^[[m\^[[21;1H\^[[m\^[[19;1H\^[[m\^[[1m\^[[m\^[[1m\^[[m\^[[1m\^[[m\^[[m\^[[m\^[[H\^[[Jfb: new array size 4 avail memory = 62648320 (61180K bytes) bios32: Found BIOS32 Service Directory header at 0xc00fb020 bios32: Entry = 0xfb420 (c00fb420) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xb450 pnpbios: Found PnP BIOS data at 0xc00fc140 pnpbios: Entry = f0000:c168 Rev = 1.0 Other BIOS signatures found: ACPI: 00000000 Preloaded elf kernel "kernel" at 0xc02b7000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc02b70ac. Preloaded elf module "vesa.ko" at 0xc02b70fc. VESA: information block 56 45 53 41 02 01 ec 49 00 c0 00 00 00 00 e8 48 00 c0 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 VESA: 16 mode(s) found VESA: v1.2, 2048k memory, flags:0x0, mode table:0xc00c48e8 (c00048e8) VESA: ATI MACH64 Pentium Pro MTRR support enabled pci_open(1): mode 1 addr port (0x0cf8) is 0x8000005c pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=12378086) npx0: on motherboard npx0: INT 16 interface pci_open(1): mode 1 addr port (0x0cf8) is 0x00000000 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=12378086) pcib0: on motherboard found-> vendor=0x8086, dev=0x1237, revid=0x02 class=06-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 found-> vendor=0x8086, dev=0x7000, revid=0x01 class=06-01-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 found-> vendor=0x8086, dev=0x7010, revid=0x00 class=01-01-80, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[20]: type 1, range 32, base 0000f000, size 4 found-> vendor=0x1002, dev=0x4758, revid=0x00 class=03-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[10]: type 1, range 32, base e0000000, size 23 found-> vendor=0x9004, dev=0x7178, revid=0x03 class=01-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=15 map[10]: type 1, range 32, base 00009000, size 8 map[14]: type 1, range 32, base e0800000, size 12 found-> vendor=0x1000, dev=0x0001, revid=0x01 class=00-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[10]: type 1, range 32, base 00009500, size 8 map[14]: type 1, range 32, base e0801000, size 8 found-> vendor=0x1011, dev=0x0009, revid=0x21 class=02-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=10 map[10]: type 1, range 32, base 00009600, size 7 map[14]: type 1, range 32, base e0802000, size 7 pci0: on pcib0 isab0: at device 7.0 on pci0 I/O Recovery Timing: 8-bit 1 clocks, 16-bit 1 clocks Extended BIOS: disabled Lower BIOS: disabled Coprocessor IRQ13: enabled Mouse IRQ12: disabled Interrupt Routing: A: disabled, B: IRQ15, C: IRQ11, D: IRQ10 MB0: disabled, MB1: isa0: on isab0 pci0: (vendor=0x8086, dev=0x7010) at 7.1 pci0: (vendor=0x1002, dev=0x4758) at 8.0 ahc0: port 0x9000-0x90ff mem 0xe0800000-0xe0800fff irq 15 at device 9.0 on pci0 ahc0: Reading SEEPROM...done. ahc0: Low byte termination Enabled ahc0: High byte termination Enabled ahc0: Downloading Sequencer Program... 432 instructions downloaded aic7870: Single Channel A, SCSI Id=7, 16/255 SCBs sym0: <810> port 0x9500-0x95ff mem 0xe0801000-0xe08010ff irq 11 at device 10.0 on pci0 sym0: No NVRAM, ID 7, Fast-10, SE, parity checking sym0: open drain IRQ line driver sym0: using NCR-generic firmware. de0: port 0x9600-0x967f mem 0xe0802000-0xe080207f irq 10 at device 11.0 on pci0 de0: 21140A [10-100Mb/s] pass 2.1 de0: address 00:00:bc:0f:0e:2c Trying Read_Port at 203 IBM1010: adding irq mask 0xdef8 IBM1010: adding io range 0x200-0x36f, size=0x10, align=0x10 IBM1010: adding memory range 0xc8000-0xf03ff, size=0x400, align=0x4000 IBM1010: adding memory range 0xb0000-0xdcfff, size=0x1000, align=0x1000 isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices 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 atkbd: the current kbd controller command byte 0047 atkbd: keyboard ID 0x41ab (2) kbdc: RESET_KBD return code:00fa kbdc: RESET_KBD status:00aa kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x1, flags:0x3d0000 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 fb0: vga0, vga, type:VGA (5), flags:0x700ff fb0: port:0x3c0-0x3df, crtc:0x3d4, mem:0xa0000 0x20000 fb0: init mode:24, bios mode:3, current mode:24 fb0: window:0xc00b8000 size:32k gran:32k, buf:0 size:32k VGA parameters upon power-up 50 18 10 00 00 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0e 0f 00 00 07 80 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff VGA parameters in BIOS for mode 24 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff EGA/VGA parameters to be used for mode 24 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) sio0: not probed (disabled) sio1: not probed (disabled) cs0 failed to probe at port 0x300 irq 3 drq 0 on isa0 isa_probe_children: probing PnP devices unknown: failed to probe at port 0x200-0x20f iomem 0xc8000-0xc83ff,0xc0000-0xc0fff irq 3 on isa0 BIOS Geometries: 0:03f2213e 0..1010=1011 cylinders, 0..33=34 heads, 1..62=62 sectors 1:03ef3f20 0..1007=1008 cylinders, 0..63=64 heads, 1..32=32 sectors 0 accounted for Device configuration finished. IP packet filtering initialized, divert disabled, rule-based forwarding disabled, default to deny, logging limited to 100 packets/entry by default Waiting 15 seconds for SCSI devices to settle (noperiph:ahc0:0:-1:-1): SCSI bus reset delivered. 0 SCBs aborted. (noperiph:sym0:0:-1:-1): SCSI BUS reset delivered. de0: autosense failed: cable problem? (probe1:ahc0:0:1:0): INQUIRY. CDB: 12 1 80 0 ff 0 (probe1:ahc0:0:1:0): ILLEGAL REQUEST asc:24,0 (probe1:ahc0:0:1:0): Invalid field in CDB ahc0: target 4 synchronous at 10.0MHz, offset = 0xf ahc0: target 0 synchronous at 10.0MHz, offset = 0xf Creating DISK da0 Creating DISK da1 Creating DISK cd0 Creating DISK cd1 pass0 at ahc0 bus 0 target 0 lun 0 pass0: Fixed Direct Access SCSI-2 device pass0: Serial Number 4044235073 pass0: 10.000MB/s transfers (10.000MHz, offset 15) pass1 at ahc0 bus 0 target 1 lun 0 pass1: Removable CD-ROM SCSI-2 device pass1: 3.300MB/s transfers pass2 at ahc0 bus 0 target 4 lun 0 pass2: Removable CD-ROM SCSI-2 device pass2: Serial Number 8633184C pass2: 10.000MB/s transfers (10.000MHz, offset 15) pass3 at sym0 bus 0 target 2 lun 0 pass3: Fixed Direct Access SCSI-2 device pass3: Serial Number 05040701 pass3: 10.000MB/s transfers (10.000MHz, offset 8), Tagged Queueing Enabled da1 at sym0 bus 0 target 2 lun 0 da1: Fixed Direct Access SCSI-2 device da1: Serial Number 05040701 da1: 10.000MB/s transfers (10.000MHz, offset 8), Tagged Queueing Enabled da1: 1041MB (2131992 512 byte sectors: 255H 63S/T 132C) da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: Serial Number 4044235073 da0: 10.000MB/s transfers (10.000MHz, offset 15) da0: 1008MB (2065250 512 byte sectors: 64H 32S/T 1008C) Mounting root from ufs:/dev/da0s1a (cd0:ahc0:0:1:0): READ CD RECORDED CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 (cd0:ahc0:0:1:0): NOT READY asc:3a,0 (cd0:ahc0:0:1:0): Medium not present cd0 at ahc0 bus 0 target 1 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 3.300MB/s transfers cd0: Attempt to query device size failed: NOT READY, Medium not present (cd1:ahc0:0:4:0): READ CD RECORDED CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 (cd1:ahc0:0:4:0): NOT READY asc:3a,0 (cd1:ahc0:0:4:0): Medium not present cd1 at ahc0 bus 0 target 4 lun 0 cd1: Removable CD-ROM SCSI-2 device cd1: Serial Number 8633184C cd1: 10.000MB/s transfers (10.000MHz, offset 15) cd1: Attempt to query device size failed: NOT READY, Medium not present da0s1: type 0xa5, start 32, end = 2064383, size 2064352 : OK start_init: trying /sbin/init da1s1: type 0xa5, start 62, end = 2131187, size 2131126 : OK da1s1: type 0xa5, start 62, end = 2131187, size 2131126 : OK Ken Shiring IBM Microelectronics Division PEPS Embedded PowerPC design group Research Triangle Park, NC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 19:47:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from caligula.anu.edu.au (caligula.anu.edu.au [150.203.224.42]) by hub.freebsd.org (Postfix) with ESMTP id 514DC37B4C5 for ; Sun, 19 Nov 2000 19:47:26 -0800 (PST) Received: from localhost (rob@localhost) by caligula.anu.edu.au (8.9.3/8.9.3) with ESMTP id OAA23483 for ; Mon, 20 Nov 2000 14:47:23 +1100 (EST) X-Authentication-Warning: caligula.anu.edu.au: rob owned process doing -bs Date: Mon, 20 Nov 2000 14:47:23 +1100 (EST) From: Rob Hurle X-Sender: rob@caligula.anu.edu.au To: freebsd-questions@freebsd.org Subject: SDL high-speed sync serial boards Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi All, This is reposted with a more sensible subject line. I am trying to get SDL Communicatons RISCom/N2pci cards going under FreeBSD. These are used for T1/E1 communications. The HARDWARE.TXT file for 4.1 (CD-ROMs from BSDi) implies that they are OK. However, a 600 Series card gives us (in dmesg): pci0: ... whereas 400 Series cards show: src0: ... and are fine. The HARDWARE.TXT file make no distinction between the 400/600 series. Likewise, LINT mentions 1/2 port V.35/X.21 driver, but does not say anything about 400 vs 600 series. (600 appears to be a 2-port card). Is it a hopeless case with 4.1? What about 4.2? Anyone know? Thanks very much. Cheers, Rob Hurle ---------------------------------------------------------- Rob Hurle rob@coombs.anu.edu.au Connect-A Tel: +61 2 6247 2397 PO Box 13 Fax: +61 2 6248 8905 Ainslie ACT 2602 Mobile: 0417 293 603 Australia ---------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 19:53:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from newsf1.texas.rr.com (newsf1.texas.rr.com [24.28.95.146]) by hub.freebsd.org (Postfix) with ESMTP id 0E59437B4E5 for ; Sun, 19 Nov 2000 19:53:09 -0800 (PST) Received: from satx.rr.com (cs160145-193.satx.rr.com [24.160.145.193]) by newsf1.texas.rr.com (8.10.1/8.10.1) with ESMTP id eAK3r7u22902 for ; Sun, 19 Nov 2000 21:53:07 -0600 (CST) Message-ID: <3A18A00B.F0C3B753@satx.rr.com> Date: Sun, 19 Nov 2000 21:52:43 -0600 From: Jason X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: emu10k1 / multiple sounds Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG greetings while using the emu10k1 driver in linux with my sblive, I was able to get multiple sounds -- could be playing an MP3 file and get ICQ sounds at the same time. i have my driver setup in freebsd, but when I try to send another sound to the device, it says: /dev/dsp: Device busy. any ideas? maybe by updating the emu10k driver? if anyone has any experience with this issue, your information would be greatly appreciate. thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 19:53:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tidal.wave.net (unknown [198.68.31.227]) by hub.freebsd.org (Postfix) with ESMTP id 7B29937B4C5 for ; Sun, 19 Nov 2000 19:53:35 -0800 (PST) Received: from jj ([208.7.50.61]) by tidal.wave.net (8.9.3/8.9.3) with SMTP id TAA75144 for ; Sun, 19 Nov 2000 19:53:32 -0800 (PST) (envelope-from chuckw@wave.net) From: "Chuck" To: Subject: HELP!!! Date: Sun, 19 Nov 2000 19:52:33 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi... I just loaded a new server that I am running some CGI chat scripts on and I am having a problem I hope that you can help me with... The other server that I am running with the exact same scripts on is FREEBSD 2.2.7-RELEASE... The new server is FreeBSD 4.1-RELEASE... After the Chat Daemon has been running for a little while it stops and I get this error message... I'm not sure where to look... chat/usr/local/www/cgi-bin/chat2>accept: Bad file descriptor If you have any ideas I would love to hear them... Chuck... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 20: 2: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id C070F37B4D7 for ; Sun, 19 Nov 2000 20:02:05 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAK41wn10180; Sun, 19 Nov 2000 20:01:58 -0800 (PST) Date: Sun, 19 Nov 2000 20:01:58 -0800 From: Alfred Perlstein To: Chuck Cc: freebsd-questions@FreeBSD.ORG Subject: Re: HELP!!! Message-ID: <20001119200158.Q18037@fw.wintelcom.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 chuckw@wave.net on Sun, Nov 19, 2000 at 07:52:33PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Chuck [001119 19:58] wrote: > Hi... > > I just loaded a new server that I am running some CGI chat scripts on and I > am having a problem I hope that you can help me with... The other server > that I am running with the exact same scripts on is FREEBSD > 2.2.7-RELEASE... The new server is FreeBSD 4.1-RELEASE... After the Chat > Daemon has been running for a little while it stops and I get this error > message... I'm not sure where to look... > > chat/usr/local/www/cgi-bin/chat2>accept: Bad file descriptor > > If you have any ideas I would love to hear them... Well, is this chat server available somewhere so we can look at the source? -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 20:24:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.attica.net.nz (mail.attica.net.nz [202.180.64.33]) by hub.freebsd.org (Postfix) with SMTP id B265737B479 for ; Sun, 19 Nov 2000 20:24:55 -0800 (PST) Received: (qmail 8200 invoked from network); 20 Nov 2000 04:24:45 -0000 Received: from 202-180-75-17.iff0.attica.net.nz (HELO davep200.afterswish.com) (202.180.75.17) by mail.attica.net.nz with SMTP; 20 Nov 2000 04:24:45 -0000 Message-Id: <5.0.0.25.1.20001120163545.00a0cd90@pop3.i4free.co.nz> X-Sender: dmpreece@pop3.i4free.co.nz X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Mon, 20 Nov 2000 17:20:00 +1300 To: freebsd-questions@freebsd.org From: David Preece Subject: 802.1q, bonding and mpath Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I just spent the afternoon trying to work out if channel bonding / etherchannel / trunking is possible on FreeBSD. The answers from the mailing list archives say either: 1, Nope. 2, Yup, but it's messy and you have to use PPPoE. 3, Yup, use a kernel hack called mpath. Note that (possibly due to a bad ISP) flirble.org, where mpath should be, appears to be currently unavailable so I'm slightly clue disabled at the moment. None of this seems to answer what, for me, appears to be the basic question: When a client machine ARP's for the servers IP, it has to reply with a link layer (i.e. ethernet MAC) address. All packets from client to server (or nearest router to server) then travel between these two MAC addresses. How does this work with two network cards then? Either: a, Both network cards have the same MAC address, but then how does the switch know which card to send an incoming packet to? This appears to be the approach taken by mpath since "the ARP request is replied by the head of the cluster" (pseudo quote, sorry). Is this something the switch has to understand? b, The cards have different addresses and the ARP reply is cooked such that it comes from one or the other card - like round robin DNS, only for layer 2. This is all well and good, but the next hop router would have an ARP cache, so presumably all connections would go to one card or the next. c, None of the above. I also don't get the connection with 802.1q VLAN's. 802.1q appears to be about marking ethernet packets with a VLAN number such that your one LAN can be considered to be many LAN's electrically isolated. Great, I've even used it on a cisco switch and it worked a treat. I cannot find it's connection with the trunking/bonding problem though... Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 20:26:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from relay.cell.ru (ns2.cell.ru [212.119.96.33]) by hub.freebsd.org (Postfix) with ESMTP id 9AB2F37B479 for ; Sun, 19 Nov 2000 20:26:24 -0800 (PST) Received: from max (mcc2-pool-192.cell.ru [212.119.100.192]) by relay.cell.ru (8.9.3/8.9.3) with SMTP id HAA29453 for ; Mon, 20 Nov 2000 07:26:16 +0300 Message-ID: <001401c052a9$e5a91cf0$c06477d4@max> From: "Max V Romanov" To: Subject: fsck -p on 4.0 stop with msg NO WRITE ACCESS Date: Mon, 20 Nov 2000 07:25:18 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Description #fsck -p /dev/ad0s1a: NO WRITE ACCESS /dev/ad0s1a: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY. I am try install new fresh system and imediatly after install and first boot run fsck -p. Result - the same. Also i am try install on another computer with different vendor of hdd, motherboard, procc and mem. Result - the same. #fsck -y ** /dev/ad0s1a (NO WRITE) ** Last Mounted on / ** Root file system ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts ** Phase 5 - Check Cyl groups 946 files, 28316 used, 49043 free (211 frags, 6104 blocks, 0.3% fragmentation) ** /dev/ad0s1e (NO WRITE) ** Last Mounted on /usr ** Phase 1 - Check Blocks and Sizes INCORRECT BLOCK COUNT I=269855 (2 should be 0) CORRECT? no ... ... #df Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s1a 77359 28316 42855 40% / /dev/ad0s1e 9082014 422823 7932630 5% /usr /dev/ad0s1f 286615 6092 257594 2% /var procfs 4 4 0 100% /proc How-To-Repeat Every time runing fsck -p. Audit-Trail State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Sun Nov 19 20:14:37 PST 2000 State-Changed-Why: I realize that it's easy to be confused, but send-pr is really for different kinds of problems. Please resend your details to freebsd-questions@freebsd.org. http://www.freebsd.org/cgi/query-pr.cgi?pr=22968 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 20:31:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 3224A37B4C5 for ; Sun, 19 Nov 2000 20:31:11 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAK4V7v10920; Sun, 19 Nov 2000 20:31:07 -0800 (PST) Date: Sun, 19 Nov 2000 20:31:07 -0800 From: Alfred Perlstein To: Max V Romanov Cc: freebsd-questions@FreeBSD.ORG Subject: Re: fsck -p on 4.0 stop with msg NO WRITE ACCESS Message-ID: <20001119203107.R18037@fw.wintelcom.net> References: <001401c052a9$e5a91cf0$c06477d4@max> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <001401c052a9$e5a91cf0$c06477d4@max>; from mx@pisem.net on Mon, Nov 20, 2000 at 07:25:18AM +0300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Max V Romanov [001119 20:26] wrote: > > Description > #fsck -p > /dev/ad0s1a: NO WRITE ACCESS > /dev/ad0s1a: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY. Don't run fsck on mounted filesystems. Why are you doing this? -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 20:33:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from thesadmachine.org (dsl254-008-078-sea1.dsl-isp.net [216.254.8.78]) by hub.freebsd.org (Postfix) with SMTP id 87C6437B4C5 for ; Sun, 19 Nov 2000 20:33:20 -0800 (PST) Received: (qmail 1475 invoked by uid 1001); 20 Nov 2000 04:43:00 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 20 Nov 2000 04:43:00 -0000 Date: Sun, 19 Nov 2000 22:43:00 -0600 (CST) From: brian william wolter To: Sam Carleton Cc: FreeBSD Questions Subject: Re: manually changing users shell In-Reply-To: <3A184B47.7CB5F3C7@bigfoot.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG use the command 'chsh' peace, brian t h e S a d M a c h i n e . o r g On Sun, 19 Nov 2000, Sam Carleton wrote: > Ok, I give. I modified both the /etc/passwd and the /etc/master.passwd > files, but the shell still does not change. I am trying to change the > shell from /bin/sh to /bin/tcsh. Both shells are in the /etc/shells > file. How do I go about manually changing a users shell? > > Sam > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 19 20:35:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id B903537B4C5 for ; Sun, 19 Nov 2000 20:35:18 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAK4ZC411048; Sun, 19 Nov 2000 20:35:12 -0800 (PST) Date: Sun, 19 Nov 2000 20:35:12 -0800 From: Alfred Perlstein To: brian william wolter Cc: Sam Carleton , FreeBSD Questions Subject: Re: manually changing users shell Message-ID: <20001119203511.T18037@fw.wintelcom.net> References: <3A184B47.7CB5F3C7@bigfoot.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 bwolter@thesadmachine.org on Sun, Nov 19, 2000 at 10:43:00PM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > On Sun, 19 Nov 2000, Sam Carleton wrote: > > > Ok, I give. I modified both the /etc/passwd and the /etc/master.passwd > > files, but the shell still does not change. I am trying to change the > > shell from /bin/sh to /bin/tcsh. Both shells are in the /etc/shells > > file. How do I go about manually changing a users shell? > > * brian william wolter [001119 20:33] wrote: > use the command 'chsh' > Also, don't edit /etc/passwd manually, use vipw. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 21:14:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dh198-236.dhcp.sunysb.edu (dh198-236.dhcp.sunysb.edu [129.49.198.236]) by hub.freebsd.org (Postfix) with ESMTP id DA7F537B479 for ; Sun, 19 Nov 2000 21:14:43 -0800 (PST) Received: (from chris@localhost) by dh198-236.dhcp.sunysb.edu (8.9.3/8.9.3) id AAA61304; Mon, 20 Nov 2000 00:14:38 -0500 (EST) (envelope-from chris) From: Christopher Rued MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14872.45885.785126.305489@chris.xsb.com> Date: Mon, 20 Nov 2000 00:14:37 -0500 (EST) To: freebsd-questions@freebsd.org Subject: Apache SMB authentication X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I (or, more precisely, my boss) would like to use NT passwords to limit access to an Apache-1 (apache-1.3.12) server running on FreeBSD 3-STABLE. I found something called mod_ntlm (http://modntlm.sourceforge.net/), which claims to do what I need it to do, but just gives me a "Server configuration error" message when I try to install it following the (limited) instructions provided. Has anyone had any success using mod_ntlm, or something similar? TIA -- Christopher Rued To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 22: 8: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 9985737B479 for ; Sun, 19 Nov 2000 22:07:50 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id JAA55153; Mon, 20 Nov 2000 09:33:12 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAK67Ah17451; Mon, 20 Nov 2000 09:07:10 +0300 Date: Mon, 20 Nov 2000 09:07:10 +0300 From: Igor Robul To: "O. Hartmann" Cc: freebsd-questions@freebsd.org Subject: Re: Audio under X11 Message-ID: <20001120090710.A17427@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: "O. Hartmann" , freebsd-questions@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: ; from ohartman@ipamzlx.physik.uni-mainz.de on Fri, Nov 10, 2000 at 06:44:49PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 10, 2000 at 06:44:49PM +0100, O. Hartmann wrote: > Dear Sirs. > > I just installed a bunch of diskless X-Clients and all of them have > audio support. Hello, maybe I'm too late, but you can use esound daemon for this. It can open TCP socket etc... . Also esound is supported by many current software like xmms, games etc. You can find esound in /usr/ports/audio/esound -- Igor Roboul, Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 22:35: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from vines.webfront.net.au (vines.webfront.net.au [203.23.200.12]) by hub.freebsd.org (Postfix) with ESMTP id E9BB737B479 for ; Sun, 19 Nov 2000 22:34:59 -0800 (PST) Received: from bargiwork.webfront.net.au ([203.23.200.82]) by vines.webfront.net.au (8.9.3/8.9.3) with ESMTP id RAA62467 for ; Mon, 20 Nov 2000 17:34:51 +1100 (EST) Message-Id: <4.3.2.7.2.20001120172736.03dffb60@203.23.200.12> X-Sender: bargi@203.23.200.12 X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Mon, 20 Nov 2000 17:38:04 +1100 To: freebsd-questions@freebsd.org From: Raymond Brighenti Subject: Peoples Experience with Soft Updates Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, We're a small ISP using FreeBSD for all our servers and I've been trying to find out as much info as I can about using Soft updates. I'm considering enabling it on our Squid proxy server(PIII 400) and our Mail sever (P133) Both machines have SCSI drives and although I've had no real problems with either machines performance it seems like a logical option to enable for better disk performance. I'd like to hear any comments or real life experiences anyone has about it, any problems if the machine is rebooted or power goes down while the machine is writing away (I understand there is the delayed Disk full with it enabled but that shouldn't be a problem) Thanks Ray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 22:38:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from resnetnt.resnet.uconn.edu (resnet.resnet.uconn.edu [137.99.156.20]) by hub.freebsd.org (Postfix) with ESMTP id 89FCB37B479 for ; Sun, 19 Nov 2000 22:38:15 -0800 (PST) Received: by resnetnt.resnet.uconn.edu with Internet Mail Service (5.5.2650.21) id ; Mon, 20 Nov 2000 01:35:39 -0500 Message-ID: <9F36E367710D474E9806AA393FE737FB019EC4@resnetnt.resnet.uconn.edu> From: Peter Lai To: "'freebsd-questions@freebsd.org'" Subject: AT1500 NIC and lnc0 Date: Mon, 20 Nov 2000 01:35:38 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi - I am currently upgrading a slackware box to freebsd. It has an AT1500 nic in it (using the LANCE chipset); linux uses the 79C760 driver for it. I was trying to get the thing working with lnc0 and it keeps giving me "lnc0: initialisation failed" repeated 5 times, and finally "lnc0: unable to run DAD, driver problem?". I want to do a full ftp install, and therefore i need my NIC up and running. any ideas? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 22:48:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from resnetnt.resnet.uconn.edu (resnet.resnet.uconn.edu [137.99.156.20]) by hub.freebsd.org (Postfix) with ESMTP id 933F637B479 for ; Sun, 19 Nov 2000 22:48:54 -0800 (PST) Received: by resnetnt.resnet.uconn.edu with Internet Mail Service (5.5.2650.21) id ; Mon, 20 Nov 2000 01:46:18 -0500 Message-ID: <9F36E367710D474E9806AA393FE737FB019EC5@resnetnt.resnet.uconn.edu> From: Peter Lai To: "''freebsd-questions@freebsd.org' '" Subject: RE: AT1500 NIC and lnc0 Date: Mon, 20 Nov 2000 01:46:18 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG uhm it's a 79C960 chipset (minor typo) -----Original Message----- From: Peter Lai To: 'freebsd-questions@freebsd.org' Sent: 11/20/2000 1:35 AM Subject: AT1500 NIC and lnc0 Hi - I am currently upgrading a slackware box to freebsd. It has an AT1500 nic in it (using the LANCE chipset); linux uses the 79C760 driver for it. I was trying to get the thing working with lnc0 and it keeps giving me "lnc0: initialisation failed" repeated 5 times, and finally "lnc0: unable to run DAD, driver problem?". I want to do a full ftp install, and therefore i need my NIC up and running. 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 Sun Nov 19 23: 0:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web9405.mail.yahoo.com (web9405.mail.yahoo.com [216.136.129.111]) by hub.freebsd.org (Postfix) with SMTP id 7E18F37B479 for ; Sun, 19 Nov 2000 23:00:18 -0800 (PST) Message-ID: <20001120070018.92018.qmail@web9405.mail.yahoo.com> Received: from [192.135.249.34] by web9405.mail.yahoo.com; Sun, 19 Nov 2000 23:00:18 PST Date: Sun, 19 Nov 2000 23:00:18 -0800 (PST) From: Wahyudi Gunawan Subject: Crystal Sound - HELP To: freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG All, Second try. I have an onboard sound card. The chip are CS4280-CM and CS4297.(I checked on the motherboard) I looked at the pcm and csa man, these chipset are supported and they are detected during the boot up process. Here is the message I got from dmesg: csa0: mem 0xfd600000-0xfd6fffff,0xfd7fe000-0xfd7fefff irq 5 at device 5.0 on pci1 pcm0: on csa0 In my kernel, I add these lines to GENERIC kernel options PNPBIOS device pcm and I already add device snd0 entry to /dev I still couldn't get any sound and it always give me message /dev/dsp: Device busy Any advice, pointer to a reference or solution on how to resolving this problem would greatly appreciated. Thanks in advanca Wahyudi ===== ====================== Wahyudi Gunawan wgunawan92@yahoo.com __________________________________________________ Do You Yahoo!? Yahoo! Calendar - Get organized for the holidays! http://calendar.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 Nov 19 23:12:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx.wbi.ph (unknown [202.8.225.136]) by hub.freebsd.org (Postfix) with ESMTP id 7CC7E37B479 for ; Sun, 19 Nov 2000 23:12:09 -0800 (PST) Received: from ns.wbi.ph (ns.wbi.ph [202.8.225.135]) by mx.wbi.ph (8.10.1/8.10.1) with ESMTP id eAK7CSw03075 for ; Mon, 20 Nov 2000 15:12:28 +0800 (PHT) Received: from webmail.weblinq.com (ns [202.8.225.135]) by ns.wbi.ph (8.9.3/8.9.3) with SMTP id PAA02743 for ; Mon, 20 Nov 2000 15:25:37 +0800 (PHT) (envelope-from microcom@wbi.ph) From: microcom@wbi.ph Message-Id: <200011200725.PAA02743@ns.wbi.ph> To: freebsd-questions@freebsd.org Subject: Date: Mon, 20 Nov 100 15:25:46 +0000 X-Mailer: Web Link WebMail Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am having a hard time seting up my ftp server .... my question is how can i set up an ftp connection that only a specified persons can only access the ftp server that they can upload files and download directly to their directory in the server ? and also i want to set up a virtual ftp to them ? can someone help me ? ------------------------------------------------- From Web Based E-mail of Web Link Bacolod. http://www.wbi.ph To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Nov 19 23:25:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 371.net (unknown [202.102.249.15]) by hub.freebsd.org (Postfix) with SMTP id 3648E37B479 for ; Sun, 19 Nov 2000 23:25:19 -0800 (PST) Received: (fmail 14572 invoked by uid 1004); 20 Nov 2000 07:11:56 -0000 Date: 20 Nov 2000 07:11:56 -0000 Message-ID: <20001120071156.14570.fmail@371.net> Reply-To: sharpmind2@371.net From: sharpmind2@371.net To: freebsd-questions@freebsd.org Subject: how to install kde2 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have download the src for kde2, however they are all compressed files,and there is no a shell-script for installation. anyone show me what to do? thx! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 0:21:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 486A537B479 for ; Mon, 20 Nov 2000 00:21:33 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id LAA55597 for ; Mon, 20 Nov 2000 11:47:15 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAK8LGU18097 for freebsd-questions@FreeBSD.ORG; Mon, 20 Nov 2000 11:21:16 +0300 Date: Mon, 20 Nov 2000 11:21:16 +0300 From: Igor Robul To: freebsd-questions@FreeBSD.ORG Subject: Re: how to install kde2 Message-ID: <20001120112116.A18088@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <20001120071156.14570.fmail@371.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <20001120071156.14570.fmail@371.net>; from sharpmind2@371.net on Mon, Nov 20, 2000 at 07:11:56AM -0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Nov 20, 2000 at 07:11:56AM -0000, sharpmind2@371.net wrote: > I have download the src for kde2, however they are all compressed files,and > there is no a shell-script for installation. anyone show me what to do? cd /usr/ports/x11/kde2 make install && make clean -- Igor Roboul, Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 0:29:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id 9AAD437B479 for ; Mon, 20 Nov 2000 00:29:35 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAK8SmR18762; Mon, 20 Nov 2000 19:28:53 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Mon, 20 Nov 2000 19:28:48 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="us-ascii" To: igorr@crosswinds.net, Igor Robul , freebsd-questions@FreeBSD.ORG References: <20001120071156.14570.fmail@371.net> <20001120112116.A18088@linux.rainbow> In-Reply-To: <20001120112116.A18088@linux.rainbow> Subject: Re: how to install kde2 MIME-Version: 1.0 Message-Id: <00112019284800.18756@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Monday 20 November 2000 19:21, Igor Robul wrote: > On Mon, Nov 20, 2000 at 07:11:56AM -0000, sharpmind2@371.net wrote: > > I have download the src for kde2, however they are all compressed files,and > > there is no a shell-script for installation. anyone show me what to do? > cd /usr/ports/x11/kde2 > make install && make clean > You might want to put the files you downloaded in /usr/ports/distfiles first. Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 0:33:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 371.net (unknown [202.102.249.15]) by hub.freebsd.org (Postfix) with SMTP id 7D42237B479 for ; Mon, 20 Nov 2000 00:31:09 -0800 (PST) Received: (fmail 20091 invoked by uid 1004); 20 Nov 2000 08:16:53 -0000 Date: 20 Nov 2000 08:16:53 -0000 Message-ID: <20001120081653.20090.fmail@371.net> Reply-To: sharpmind2@371.net From: sharpmind2@371.net To: freebsd-questions@freebsd.org Subject: how to write a webmail's adduser script Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I need a webmail's script for adding users, but i dont know how to deal with it, anyone can give me a example? thanks in addvace! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 0:36: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id 24C3937B680 for ; Mon, 20 Nov 2000 00:36:01 -0800 (PST) Received: by pcwin002.win.tue.nl (Postfix, from userid 1001) id D7CF7134A2; Mon, 20 Nov 2000 09:33:53 +0100 (CET) Date: Mon, 20 Nov 2000 09:33:53 +0100 From: Stijn Hoop To: Peter Jones Cc: Allan Dib , questions@freebsd.org Subject: Re: Installing a port Message-ID: <20001120093353.A72924@pcwin002.win.tue.nl> References: <20001119210832.B69727@pcwin002.win.tue.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from pjones@pmade.org on Sun, Nov 19, 2000 at 07:35:06PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Nov 19, 2000 at 07:35:06PM -0800, Peter Jones wrote: > > Hum, I can't think right away of a difference other than that the first is > > a lot shorter. > > > > 'make install' does a 'make all' (which is what you get if you type 'make') > > internally. > > > > The most secure method would be to do 2 separate steps: > > 1. cd /usr/ports/foobar && make > > as a user > > I don't think that this will work unless the user has write permission > to /usr/ports/distfiles and /usr/ports/foobar. Of course, you are correct. I forgot I changed it locally. --Stijn > > 2. become root and do > > cd /usr/ports/foobar && make install > > > > However, this breaks if the port needs to install any dependencies (because > > it'll try to install those using your user account), so you'll have to > > install each port manually. > > > > For normal use, just use 'make install' as root and you'll be fine. > > > > HTH, > > > > --Stijn > > -- > ....................................................................... > : Peter Jones : Unix Geek - Four Wheeling : > : pjones@pmade.org : Code Writing - Jesus Freak : > :....................................:................................: > :echo er|perl -0160 -pe ';$;=ord$/;s;^;"\U$/".chr($\;-11).chr$\;+4;e;': > :.....................................................................: > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 0:40:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 371.net (unknown [202.102.249.15]) by hub.freebsd.org (Postfix) with SMTP id 65E8537B479 for ; Mon, 20 Nov 2000 00:40:09 -0800 (PST) Received: (fmail 26568 invoked by uid 1004); 20 Nov 2000 08:26:57 -0000 Date: 20 Nov 2000 08:26:57 -0000 Message-ID: <20001120082657.26566.fmail@371.net> Reply-To: sharpmind2@371.net From: sharpmind2@371.net To: freebsd-questions@freebsd.org Subject: about dial-in ppp server Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG when i dial-in a ISP, remote ppp-server will assign my box a ip from its ip spaces. My question is who maintains the ip spaces. is ppp-server or dhcp-server To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 1: 5:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rush.telenordia.se (mail.telenordia.se [194.213.64.42]) by hub.freebsd.org (Postfix) with SMTP id 332A337B479 for ; Mon, 20 Nov 2000 01:05:53 -0800 (PST) Received: (qmail 2167 invoked from network); 20 Nov 2000 10:05:46 +0100 Received: from bb-62-5-7-17.bb.tninet.se (HELO marbsd.tninet.se) (62.5.7.17) by mail.telenordia.se with SMTP; 20 Nov 2000 10:05:46 +0100 From: Mark Rowlands Reply-To: mark.rowlands@minmail.net Date: Mon, 20 Nov 2000 09:59:19 +0000 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: sharpmind2@371.net, freebsd-questions@FreeBSD.ORG References: <20001120071156.14570.fmail@371.net> In-Reply-To: <20001120071156.14570.fmail@371.net> Subject: Re: how to install kde2 MIME-Version: 1.0 Message-Id: <00112009591900.00551@marbsd.tninet.se> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Monday 20 November 2000 07:11, sharpmind2@371.net wrote: > I have download the src for kde2, however they are all compressed files,and > there is no a shell-script for installation. anyone show me what to do? > > thx! > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message uninstall all old kde qt ports cvsup your ports cd /usr/ports/x11-toolkits/qt22 make QT_GIF_AVAILABLE=yes install clean cd /usr/ports/x11/kde2 make install && make clean To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 2:13:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns0.isdns.co.uk (ns0.isdns.co.uk [194.154.178.227]) by hub.freebsd.org (Postfix) with ESMTP id 4C57C37B479 for ; Mon, 20 Nov 2000 02:13:21 -0800 (PST) Received: from ntserver (ntserver.heritage4.com [194.154.178.226]) by ns0.isdns.co.uk (8.9.3/8.9.3) with ESMTP id KAA17661 for ; Mon, 20 Nov 2000 10:25:58 GMT (envelope-from cpfs@isoxford.com) Received: from 192.168.5.31 by ntserver ([192.168.5.14] running VPOP3) with SMTP for ; Mon, 20 Nov 2000 10:15:41 -0000 From: "Chris Sheppard" Organization: IS Oxford Ltd To: freebsd-questions@freebsd.org Date: Mon, 20 Nov 2000 10:15:25 -0000 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: trying to get the right ./configure for apache X-mailer: Pegasus Mail for Win32 (v3.11) Message-Id: X-Server: VPOP3 V1.4.0b - Registered to: Inheritance Systems Ltd Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I wish to add a new module for apache ( to be specific its mod_auth_mysql). After configuring mod_auth_mysql, it requires that you reconfigure apache with the directive --activate-module=src/modules/auth_mysql/libauth_mysql.a I cannot find the configure file for the port of apache that I installed. basically, I ran the normal Ports install of apache 1.3.12. I'd like to upgrade to apache 1.3.14 while I', about it but I can't seem to get the configure right even to reinstall 1.3.12. If you run a ports type install, you get a display of Server version: Apache/1.3.12 (Unix) Server built: Mar 12 2000 02:53:52 Server's Module Magic Number: 19990320:7 Server compiled with.... -D HAVE_MMAP -D USE_MMAP_SCOREBOARD -D USE_MMAP_FILES -D USE_FLOCK_SERIALIZED_ACCEPT -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT -D HTTPD_ROOT="/usr/local" -D SUEXEC_BIN="/usr/local/sbin/suexec" -D DEFAULT_PIDLOG="/var/run/httpd.pid" -D DEFAULT_SCOREBOARD="/var/run/httpd.scoreboard" -D DEFAULT_LOCKFILE="/var/run/httpd.lock" -D DEFAULT_XFERLOG="/var/log/httpd-access.log" -D DEFAULT_ERRORLOG="/var/log/httpd-error.log" -D TYPES_CONFIG_FILE="etc/apache/mime.types" -D SERVER_CONFIG_FILE="etc/apache/httpd.conf" -D ACCESS_CONFIG_FILE="etc/apache/access.conf" -D RESOURCE_CONFIG_FILE="etc/apache/srm.conf" from the -V command line option when running httpd This seems miles away from the default configure or even any of the preset installs. Does anyone know what the ./configure command line is to produce a compiled binary with the above configuration? Looking at the tarball specifically for freebsd, this does not produce a configuration like the one above either, but then even if it did, I could not actually see how to produce that anyway! Any help would be appreciated Thanks Chris Sheppard Developer cpfs@isoxford.com 01865 481000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 3:35:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bdg.starindo.net (bdg.starindo.net [203.109.0.3]) by hub.freebsd.org (Postfix) with ESMTP id 5C2E337B479 for ; Mon, 20 Nov 2000 03:35:04 -0800 (PST) Received: from dusak (ppp0-242.starindo.net [203.109.0.242]) by bdg.starindo.net (8.8.8/8.8.5) with SMTP id SAA15747 for ; Mon, 20 Nov 2000 18:34:06 +0700 (JAVT) Message-ID: <002401c052e6$58475740$f2006dcb@dusak> From: "Yamin Prabudy" To: Subject: NATD Date: Mon, 20 Nov 2000 18:37:19 +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 X-Loop: FreeBSD.ORG Hi all good fellow I have this kind of network |--------------------| {20.0.0.0/24}------------- |{20.0.0.1} | |-----gateway | | | | |---------|{202.150.1.1} |-------|-------------202.150.1.* |-------------------- | the 20.0.0.0/24 is my Intranet and the 20.0.0.1 is my ed1 that act as gateway to my intranet and 202.150.* is my ed0 with Internet static IP I'd already configure my kernel with option IPFIREWALL and IPDIVERT and already enable my gateway and also alread add this line ipfw add divert natd all from 20.0.0.1 to 202.150.1.1 ipfw add pass all from any to any I can ping well to 20.0.0.1 and 202.150.1.1 from my intranet, and from the server i can go to Internet but I can't ping out from my gateway computer let say 202.150.1.2 it come out with host is down. anybody be kind to point me out what still i missed in configure my network i need it ini ASAP 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 Mon Nov 20 3:55:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sanson.reyes.somos.net (freyes.static.inch.com [216.223.199.224]) by hub.freebsd.org (Postfix) with ESMTP id 1BFE437B479 for ; Mon, 20 Nov 2000 03:55:51 -0800 (PST) Received: from zoraida.reyes.somos.net (zoraida.reyes.somos.net [10.0.0.15]) by sanson.reyes.somos.net (8.9.3/8.9.3) with ESMTP id GAA95935 for ; Mon, 20 Nov 2000 06:49:41 -0500 (EST) (envelope-from fran@reyes.somos.net) Date: Mon, 20 Nov 2000 06:57:08 -0500 (EST) From: Francisco Reyes To: FreeBSD Questions List Subject: Keyboards freeze due to switchbox Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have two Telenet machines on a KVM switchbox. If I set the switchbox to autoscan on both machines the keyboard stops working. The machines work ok and I had been able to ssh into them no problems, this is why it took me over a month to notice the problem. I have another two machines, compaq, on the same type of switch and they don't have the problem. I also tried putting the switchbox on a single machine. If I leave it on one of the two freebsd boxes, that particular machine will not have the problem, but the other one does. There is also a third box on the KVM, but that one does not have it's keyboard attached to the KVM, a Sun Sparc. I suspect this may be the problem, but I don't know if I can connect that machine to a different KVM since all 3 machines are on server racks. Since I have ssh access to the machines, is there a way to check if FreeBSD can see a keyboard? This way when a keyboard stops working on the KVM I can ssh and see if the machine can see the keybaord. This way I would know if the problem is with FreeBSD or the KVM. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 4: 4:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp21.singnet.com.sg (smtp21.singnet.com.sg [165.21.101.201]) by hub.freebsd.org (Postfix) with ESMTP id 031C337B689 for ; Mon, 20 Nov 2000 04:04:16 -0800 (PST) Received: from netserver01 (ad202.166.107.245.magix.com.sg [202.166.107.245]) by smtp21.singnet.com.sg (8.11.0/8.11.0) with SMTP id eAKC8jE91384 for ; Mon, 20 Nov 2000 20:08:45 +0800 (SGT) Message-Id: <3.0.32.20001120200432.00803e50@smtp.magix.com.sg> X-Sender: spades@smtp.magix.com.sg X-Mailer: Windows Eudora Pro Version 3.0 (32) Date: Mon, 20 Nov 2000 20:04:33 +0800 To: freebsd-questions@freebsd.org From: Spades Subject: Re: SSH and telnet error Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG When i telnet to my box, i got a: All telnetd ports in used. When i ssh in, i get SSH_SMSG failure: invalid state. Any idea how to fix it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 4:14:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ipamzlx.physik.uni-mainz.de (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by hub.freebsd.org (Postfix) with ESMTP id 0639737B4C5 for ; Mon, 20 Nov 2000 04:14:11 -0800 (PST) Received: from ipamzlx.Physik.Uni-Mainz.DE (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by ipamzlx.physik.uni-mainz.de (8.11.1/8.11.0) with ESMTP id eAKCFtG09731; Mon, 20 Nov 2000 13:15:55 +0100 (CET) (envelope-from ohartman@ipamzlx.physik.uni-mainz.de) Date: Mon, 20 Nov 2000 13:15:55 +0100 (CET) From: "O. Hartmann" To: igorr@crosswinds.net Cc: freebsd-questions@freebsd.org Subject: Re: Audio under X11 In-Reply-To: <20001120090710.A17427@linux.rainbow> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 20 Nov 2000, Igor Robul wrote: Hello. No, you're not to late, you're the first :-) Thanks for this very nice hint! Best wishes, Oliver :>On Fri, Nov 10, 2000 at 06:44:49PM +0100, O. Hartmann wrote: :>> Dear Sirs. :>> :>> I just installed a bunch of diskless X-Clients and all of them have :>> audio support. :>Hello, :>maybe I'm too late, but you can use esound daemon for this. It can :>open TCP socket etc... . :>Also esound is supported by many current software like xmms, games :>etc. :>You can find esound in /usr/ports/audio/esound :> :>-- :>Igor Roboul, Unix System Administrator & Programmer @ sanatorium "Raduga", :>Sochi, Russia :>http://www.brainbench.com/transcript.jsp?pid=304744 :> - MfG O. Hartmann ------------------------------------------------------------------- ohartman@ipamzlx.physik.uni-mainz.de Klimadatenserver-Abteilung des IPA IT Netz- und Systembetreuung Johannes Gutenberg-Universitaet Mainz Becherweg 21 D-55099 Mainz BRD/Germany Tel: +496131/3924662 FAX: +496131/3923532 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 4:36:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dimon.rhi.hi.is (dimon.rhi.hi.is [130.208.165.10]) by hub.freebsd.org (Postfix) with ESMTP id 5685A37B4C5 for ; Mon, 20 Nov 2000 04:36:32 -0800 (PST) Received: from krafla.rhi.hi.is (svavarh@krafla.rhi.hi.is [130.208.165.37]) by dimon.rhi.hi.is (8.10.1/8.10.1) with ESMTP id eAKCaUF25212 for ; Mon, 20 Nov 2000 12:36:30 GMT Received: (from svavarh@localhost) by krafla.rhi.hi.is (8.8.6/8.8.6) id MAA29597 for freebsd-questions@FreeBSD.ORG; Mon, 20 Nov 2000 12:36:29 GMT Date: Mon, 20 Nov 2000 12:36:29 +0000 From: Svavar Ingi Hermannsson To: freebsd-questions@FreeBSD.ORG Subject: mirroring the freebsd webpages Message-ID: <20001120123628.B27901@rhi.hi.is> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, my name is Svavar and I'm wondering about how much diskspace does it take to mirror the freebsd webpages ? maybe this should be in a the/a FAQ ? Best regards, Svavar Ingi Hermannsson svavarh@hi.is To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 4:38:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 38EE637B479 for ; Mon, 20 Nov 2000 04:38:36 -0800 (PST) Received: (qmail 97748 invoked by uid 100); 20 Nov 2000 12:38:35 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14873.6987.340558.516226@guru.mired.org> Date: Mon, 20 Nov 2000 06:38:35 -0600 (CST) To: Pontius Malmberg Cc: questions@freebsd.org Subject: Re: multiple web servers behind firewall In-Reply-To: <104801544@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Pontius Malmberg types: > i have one ip coming in on a cable modem, is it > possible for me to setup a "gateway server" (maybe > using name-based hosting) and provide multiple > physical web servers behind firewall??? if possible, > then how would i go about doing this? Of course it's possible. You need to run an http proxy on the firewall that lets you redirect to different IP addresses via name-based hosting. The question is whether or not such a proxy already exists. You may be able to make Apache do this with a proxy module. If there isn't a proxy, you'll have to write it (which will give you a much better understanding of what's going on in web servers). > i am fully aware of the bandwidth constraint that > comes with cable modem, but i just want to have the > experience when i am going out there looking for a > job? :o) You're not likely to run into this problem when you're looking for a job. Companies that want to run multiple web servers typically find it easier just to buy the extra IP addresses they need. If you want experience running multiple name or ip-based servers on one machine, you can do that behind your firewall. Even if there's only one of you behind the firewall, there's a reasonable reason for wanting three servers: 1) Your real web server, 2) A test server - a clone of the web server that you install new things on to test before pushing them to #1, 3) An internal server - that runs things you don't want to make available to the outside world. You can run the last two on a machine you don't expose the to the world. ; Mon, 20 Nov 2000 04:42:50 -0800 (PST) Received: (qmail 97870 invoked by uid 100); 20 Nov 2000 12:42:50 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14873.7242.370522.402799@guru.mired.org> Date: Mon, 20 Nov 2000 06:42:50 -0600 (CST) To: Manuel Kasper Cc: questions@freebsd.org Subject: Re: Hardware monitoring on Compaq servers In-Reply-To: <30970337@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Manuel Kasper types: > I'm using FreeBSD 4.1.1-RELEASE on a Compaq ML370 server - everything is > working fine at the moment (no RAID controller installed at the moment ;). > > However, there's one thing I'm wondering about: is there any FreeBSD > driver/application/whatever that monitors the system's health (temperature, > fan speed, failed components, etc.)? Look in /usr/ports/sysutils. There's healthd and heat (at the very least). > These drivers also control the fan speed (as soon as I load the driver > under Linux the extremely high speed of the main fan is reduced to > something more reasonable for the system temperature). I don't think that healthd or heat will do that. > Unfortunately they do not provide any specs or source code. You might ask compaq if the source is available. You can also try running the drivers under Linux compatability mode. ; Mon, 20 Nov 2000 04:50:59 -0800 (PST) Received: (qmail 28048 invoked by uid 60001); 20 Nov 2000 12:50:59 -0000 Message-ID: <20001120125059.28047.qmail@web113.yahoomail.com> Received: from [38.31.16.89] by web113.yahoomail.com; Mon, 20 Nov 2000 04:50:59 PST Date: Mon, 20 Nov 2000 04:50:59 -0800 (PST) From: Andrew Gould Subject: UDMA ICRC READ ERRORs To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Good morning all, I have installed FreeBSD 4.1 on an AMD K6/2 450MHz box and keep getting the following error message when I boot the computer: 'ad0: UDMA ICRC READ ERROR blk# 4144087 retrying' There are more messages where the blk# is different. At first I thought it might be the version of FreeBSD or a hard drive problem; but I switched hard drives and installed FreeBSD 4.0 without any improvement. (The current hard drive is a Seagate 8G ATA66.) So I installed 4.1 again. Last night, I ran fsck and rebooted. The problem went away for a couple of test reboots; but is back again this morning with different blk#'s. Does anyone have any advice regarding this matter? Thanks, Andrew Gould __________________________________________________ Do You Yahoo!? Yahoo! Calendar - Get organized for the holidays! http://calendar.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 Nov 20 4:55:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 4B06837B4D7 for ; Mon, 20 Nov 2000 04:55:19 -0800 (PST) Received: (qmail 98148 invoked by uid 100); 20 Nov 2000 12:55:18 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14873.7990.432499.97421@guru.mired.org> Date: Mon, 20 Nov 2000 06:55:18 -0600 (CST) To: Jason Cc: questions@freebsd.org Subject: Re: ports / compile problems In-Reply-To: <59669134@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Jason types: > i searched the archives but found nothing, so please don't yell :) But you didn't search the website, did you? :-( Of course, the directions aren't very clear there. > how do i update my /usr/ports to the latest ports software? not > that I want to download all the software, just the ports > collection. The easy way is to set up /etc/make.conf Look in /etc/defaults/make.conf for release-specific instructions. It's the same as setting up for tracking system sources, except you have to set PORTSSUPFILE as well (or instead, if you only want to track ports but not system sources). The other two things to set are SUP and SUPHOST (if available). You can then cd to /usr/ports and do "make update", and it'll get the new stuff for you. > also I am having some problems when it comes to compiling some > particular ports. for example when trying to install /usr/ports/ > gimp1, it fails on aalib-1.2 because the file had a mismatch > in the checksum.. how do I go about trying to install the > port from scratch? (so it will re-download the software again) It's possible that the author updated the tarball without changing the name. I'd try updating the ports as above, doing a "make clean" and rebuilding first. That way if the port maintainer has fixed the port, it'll work. > i have tried make clean, but that doesn't seem to work. It's "make distclean". If that doesn't work, you might prod the port to see if the tarball has changed and he hasn't noticed. ; Mon, 20 Nov 2000 04:55:47 -0800 (PST) Received: from jj ([208.7.50.46]) by tidal.wave.net (8.9.3/8.9.3) with SMTP id EAA00604 for ; Mon, 20 Nov 2000 04:55:45 -0800 (PST) (envelope-from chuckw@wave.net) From: "Chuck" To: Subject: HELP!!! Date: Mon, 20 Nov 2000 04:54:46 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi... I just loaded a new server that I am running some CGI chat scripts on and I am having a problem I hope that you can help me with... The other server that I am running with the exact same scripts on is FreeBSD 2.2.7-RELEASE... The new server is FreeBSD 4.1-RELEASE... After the Chat Daemon has been running for a little while it stops and I get this error message... I'm not sure where to look... chat/usr/local/www/cgi-bin/chat2>accept: Bad file descriptor If you have any ideas I would love to hear them... Chuck... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 5:35:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from droid.nosc.mil (droid.nosc.mil [128.49.4.117]) by hub.freebsd.org (Postfix) with ESMTP id C051237B4CF for ; Mon, 20 Nov 2000 05:35:34 -0800 (PST) Received: from slartibartfast.nosc.mil (slartibartfast.nosc.mil [198.253.21.36]) by droid.nosc.mil (8.11.0/8.11.0) with ESMTP id eAKDWJp16171; Mon, 20 Nov 2000 05:32:19 -0800 (PST) Message-Id: <4.3.2.7.2.20001120082623.00b1fdf0@localhost> X-Sender: huck@localhost X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Mon, 20 Nov 2000 08:31:55 -0500 To: Andrew Gould From: Craig Huckabee Subject: Re: UDMA ICRC READ ERRORs Cc: freebsd-questions@freebsd.org In-Reply-To: <20001120125059.28047.qmail@web113.yahoomail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Andrew, I've got the same problem with 4.2-BETA and an AMD K6/2 500Mhz box, built with an ASUS P5A, and a Western Digital hard drive. I searched the mailing list archives and found this fix : /sbin/sysctl -w hw.atamodes=pio,pio,pio,pio I added that line to /etc/rc near the top so it runs each time the system boots. Turns off UDMA mode, so performance suffers, but the errors go away (at least after /etc/rc runs they do, so a few may sneak in before that) I have two other 4.2 systems with the same hardware except they use Maxtor hard drives that don't have this problem. If anyone knows of a better solution, pass it along. I guess it is possible (or should be) to somehow to turn of UDMA in the kernel ? HTH, --Craig At 04:50 AM 11/20/00 -0800, you wrote: >Good morning all, > >I have installed FreeBSD 4.1 on an AMD K6/2 450MHz box >and keep getting the following error message when I >boot the computer: > >'ad0: UDMA ICRC READ ERROR blk# 4144087 retrying' >There are more messages where the blk# is different. > >At first I thought it might be the version of FreeBSD >or a hard drive problem; but I switched hard drives >and installed FreeBSD 4.0 without any improvement. >(The current hard drive is a Seagate 8G ATA66.) So I >installed 4.1 again. > >Last night, I ran fsck and rebooted. The problem went >away for a couple of test reboots; but is back again >this morning with different blk#'s. > >Does anyone have any advice regarding this matter? > >Thanks, > >Andrew Gould > >__________________________________________________ >Do You Yahoo!? >Yahoo! Calendar - Get organized for the holidays! >http://calendar.yahoo.com/ > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message ------------------------------------------------------- Craig Huckabee huck@spawar.navy.mil Systems Engineer, Compliance Corporation (843) 218 6459 SPAWAR Systems Center - Charleston, Charleston, SC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 5:54:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from staff.uk.psi.com (staff.uk.psi.com [154.8.2.2]) by hub.freebsd.org (Postfix) with ESMTP id F190937B479 for ; Mon, 20 Nov 2000 05:54:32 -0800 (PST) Received: from hredevel (ip236.dc-eng.uk.psi.com [154.8.27.236]) by staff.uk.psi.com (8.8.4/) with SMTP id NAA17627; Mon, 20 Nov 2000 13:54:26 GMT Reply-To: From: "Dan Cuthbert" To: "Francisco Reyes" , "FreeBSD Questions List" Subject: RE: Keyboards freeze due to switchbox Date: Mon, 20 Nov 2000 14:03:47 -0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 In-Reply-To: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi I did have the same problem, i was using a mechanical switch, yet when i moved over to the Omnicube (with poer switching) this solved the problem the problem lies with boosting the signal that the keyboard and mouse need, the mechanical one doesnt do this Dan Cuthbert European Hosting Research & Engineering PSINet Datacentres mobile : +44 77 1279 0646 -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Francisco Reyes Sent: 20 November 2000 11:57 To: FreeBSD Questions List Subject: Keyboards freeze due to switchbox I have two Telenet machines on a KVM switchbox. If I set the switchbox to autoscan on both machines the keyboard stops working. The machines work ok and I had been able to ssh into them no problems, this is why it took me over a month to notice the problem. I have another two machines, compaq, on the same type of switch and they don't have the problem. I also tried putting the switchbox on a single machine. If I leave it on one of the two freebsd boxes, that particular machine will not have the problem, but the other one does. There is also a third box on the KVM, but that one does not have it's keyboard attached to the KVM, a Sun Sparc. I suspect this may be the problem, but I don't know if I can connect that machine to a different KVM since all 3 machines are on server racks. Since I have ssh access to the machines, is there a way to check if FreeBSD can see a keyboard? This way when a keyboard stops working on the KVM I can ssh and see if the machine can see the keybaord. This way I would know if the problem is with FreeBSD or the KVM. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of 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 Nov 20 5:59:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www.xshare.com (www.fileseeker.net [212.84.237.17]) by hub.freebsd.org (Postfix) with ESMTP id C49F137B479 for ; Mon, 20 Nov 2000 05:59:11 -0800 (PST) Received: from holodeck.leveld.de ([212.84.237.15] helo=holodeck) by www.xshare.com with smtp (Exim 3.13 #1) id 13xrT1-000IsH-00; Mon, 20 Nov 2000 14:58:43 +0100 Message-ID: <00e201c052fa$c7227640$0fed54d4@leveld.de> From: "Oliver Fischer" To: "Francisco Reyes" , "FreeBSD Questions List" References: Subject: Re: Keyboards freeze due to switchbox Date: Mon, 20 Nov 2000 15:04:20 +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.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have got also a switch box (roline) on my FBSD box and everything works fine. I think this is a problem with this type of switch box. Bye, Oliver ----- Original Message ----- From: "Francisco Reyes" To: "FreeBSD Questions List" Sent: Monday, November 20, 2000 12:57 PM Subject: Keyboards freeze due to switchbox > I have two Telenet machines on a KVM switchbox. If I set the switchbox to > autoscan on both machines the keyboard stops working. The machines work ok > and I had been able to ssh into them no problems, this is why it took me > over a month to notice the problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 6: 4:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sleipnir.myip.org (mcns46.docsis24.singa.pore.net [202.156.24.46]) by hub.freebsd.org (Postfix) with ESMTP id 59D6C37B479 for ; Mon, 20 Nov 2000 06:04:47 -0800 (PST) Received: from sleipnir (localhost.myip.org [127.0.0.1]) by sleipnir.myip.org (Postfix) with SMTP id 784A0BFD08; Mon, 20 Nov 2000 22:04:39 +0800 (SGT) X-Mailer: Arrow 1.0.8 (X11; FreeBSD 4.2-BETA; i386) To: spades@galaxynet.org Reply-To: jameslpin@pacific.net.sg Cc: admin@sg.gs Subject: Re: SSH and telnet error Message-Id: <20001120140439.784A0BFD08@sleipnir.myip.org> Date: Mon, 20 Nov 2000 22:04:39 +0800 (SGT) From: jameslpin@pacific.net.sg Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi Spades, I suggest you do yourself a favour and try to read throught the mailing lists each time u have such a simple problem before asking them in here. RTFM would be a good idea. :) pseudo-device pty 256 i hope this helps Regards, James Lim http://sg.freebsd.org On Mon, 20 Nov 2000 20:04:33 +0800, Spades wrote: > > When i telnet to my box, i got a: > > All telnetd ports in used. > > When i ssh in, i get > > SSH_SMSG failure: invalid state. > > > > Any idea how to fix 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 Nov 20 6:14:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns.ciac.jl.cn (unknown [202.98.16.1]) by hub.freebsd.org (Postfix) with ESMTP id 62C3637B479 for ; Mon, 20 Nov 2000 06:14:19 -0800 (PST) Received: from 122 ([159.226.123.3]) by ns.ciac.jl.cn (8.9.1/8.9.1) with SMTP id WAA28171 for ; Mon, 20 Nov 2000 22:06:20 +0800 (CST) Message-ID: <005201c052fc$a8c08780$0c00a8c0@122> From: "S.W.Liu" To: Subject: vmware wrong or freebsd wrong? Date: Mon, 20 Nov 2000 22:17:37 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_004F_01C0533F.B0AAC300" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_004F_01C0533F.B0AAC300 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: base64 TXkgc3lzdGVtIGlzIEZyZWVCU0QgNC4xLCBJIGNhbid0IGluc3RhbGwgdm13YXJlIG9yIHZtd2Fy ZTIgZnJvbSBwb3J0ISBidXQgd2hlbiBJIHJlaW5zdGFsbCBGcmVlQlNEIDQuMCwgSSBjYW4gaW5z dGFsbCB2bXdhcmUsIGFuZCBpdCBjYW4gcnVuIGZpbmUhDQoNCldoeT8NCg0KSGFzIGFueW9uZSBp bnN0YWxsZWQgdm13YXJlPw0K ------=_NextPart_000_004F_01C0533F.B0AAC300 Content-Type: text/html; charset="gb2312" Content-Transfer-Encoding: base64 PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMCBUcmFuc2l0aW9uYWwv L0VOIj4NCjxIVE1MPjxIRUFEPg0KPE1FVEEgY29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PWdi MjMxMiIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8TUVUQSBjb250ZW50PSJNU0hUTUwgNS4w MC4yNjE0LjM1MDAiIG5hbWU9R0VORVJBVE9SPg0KPFNUWUxFPjwvU1RZTEU+DQo8L0hFQUQ+DQo8 Qk9EWSBiZ0NvbG9yPSNmZmZmZmY+DQo8RElWPjxGT05UIHNpemU9Mj5NeSBzeXN0ZW0gaXMgRnJl ZUJTRCA0LjEsIEkgY2FuJ3QgaW5zdGFsbCB2bXdhcmUgb3Igdm13YXJlMiANCmZyb20gcG9ydCEg YnV0IHdoZW4gSSByZWluc3RhbGwgRnJlZUJTRCA0LjAsIEkgY2FuIGluc3RhbGwgdm13YXJlLCBh bmQgaXQgY2FuIA0KcnVuIGZpbmUhPC9GT05UPjwvRElWPg0KPERJVj4mbmJzcDs8L0RJVj4NCjxE SVY+PEZPTlQgc2l6ZT0yPldoeT88L0ZPTlQ+PC9ESVY+DQo8RElWPiZuYnNwOzwvRElWPg0KPERJ Vj48Rk9OVCBzaXplPTI+SGFzJm5ic3A7YW55b25lIGluc3RhbGxlZCB2bXdhcmU/PC9GT05UPjwv RElWPjwvQk9EWT48L0hUTUw+DQo= ------=_NextPart_000_004F_01C0533F.B0AAC300-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 6:16:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web118.yahoomail.com (web118.mail.yahoo.com [205.180.60.99]) by hub.freebsd.org (Postfix) with SMTP id 4DF4C37B479 for ; Mon, 20 Nov 2000 06:16:47 -0800 (PST) Received: (qmail 13783 invoked by uid 60001); 20 Nov 2000 14:16:46 -0000 Message-ID: <20001120141646.13782.qmail@web118.yahoomail.com> Received: from [4.18.79.228] by web118.yahoomail.com; Mon, 20 Nov 2000 06:16:46 PST Date: Mon, 20 Nov 2000 06:16:46 -0800 (PST) From: Andrew Gould Subject: Re: UDMA ICRC READ ERRORs To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Craig, Thanks for the reply. The production computer that I eventually want to run FreeBSD is filled with Maxtor drives! I'm headin' out of town in a few hours. When I get back, I'll adjust the atamodes on the test box and let you know what happens. Thanks again! Andrew Gould --- Craig Huckabee wrote: > Andrew, > > I've got the same problem with 4.2-BETA and an AMD > K6/2 500Mhz box, built > with an ASUS P5A, and a Western Digital hard drive. > I searched the mailing > list archives and found this fix : > > /sbin/sysctl -w hw.atamodes=pio,pio,pio,pio > > I added that line to /etc/rc near the top so it runs > each time the system > boots. Turns off UDMA mode, so performance suffers, > but the errors go away > (at least after /etc/rc runs they do, so a few may > sneak in before that) > > I have two other 4.2 systems with the same hardware > except they use Maxtor > hard drives that don't have this problem. > > If anyone knows of a better solution, pass it along. > I guess it is > possible (or should be) to somehow to turn of UDMA > in the kernel ? > > HTH, > --Craig > > > At 04:50 AM 11/20/00 -0800, you wrote: > >Good morning all, > > > >I have installed FreeBSD 4.1 on an AMD K6/2 450MHz > box > >and keep getting the following error message when I > >boot the computer: > > > >'ad0: UDMA ICRC READ ERROR blk# 4144087 retrying' > >There are more messages where the blk# is > different. > > > >At first I thought it might be the version of > FreeBSD > >or a hard drive problem; but I switched hard drives > >and installed FreeBSD 4.0 without any improvement. > >(The current hard drive is a Seagate 8G ATA66.) So > I > >installed 4.1 again. > > > >Last night, I ran fsck and rebooted. The problem > went > >away for a couple of test reboots; but is back > again > >this morning with different blk#'s. > > > >Does anyone have any advice regarding this matter? > > > >Thanks, > > > >Andrew Gould > > > >__________________________________________________ > >Do You Yahoo!? > >Yahoo! Calendar - Get organized for the holidays! > >http://calendar.yahoo.com/ > > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org > >with "unsubscribe freebsd-questions" in the body of > the message > > ------------------------------------------------------- > Craig Huckabee > huck@spawar.navy.mil > Systems Engineer, Compliance Corporation > (843) 218 6459 > SPAWAR Systems Center - Charleston, Charleston, SC > __________________________________________________ Do You Yahoo!? Yahoo! Calendar - Get organized for the holidays! http://calendar.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 Nov 20 6:39:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www-dc-14.digiserve.com (unknown [151.196.211.248]) by hub.freebsd.org (Postfix) with ESMTP id 44F5637B479 for ; Mon, 20 Nov 2000 06:39:45 -0800 (PST) Received: from coach (w019.z064001087.bos-ma.dsl.cnc.net [64.1.87.19]) by www-dc-14.digiserve.com (8.9.1/8.9.1) with SMTP id JAA24184 for ; Mon, 20 Nov 2000 09:41:32 -0500 (EST) Message-Id: <200011201441.JAA24184@www-dc-14.digiserve.com> Reply-To: From: "Colin O'Brien" To: Subject: Bootable RAID Date: Mon, 20 Nov 2000 09:40:21 -0800 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2377.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I notice that the recent iterations of FreeBSD (4.1.1, 4.2 RC1) include support for newer (read, available and affordable, plus Ultra 160 and therefore consistent with hard drives that are available) RAID controllers such as Adaptec 2100S, DPT SmartRaid VI and Mylex AcceleRAID 170. I cannot find any mention if you can boot from these controllers? If this is not supported, is this a case of 'not yet', or is there some technical reasons why they will never be able to support booting in FreeBSD? Thanks in advance for your help Colin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 7:15:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp24.singnet.com.sg (smtp24.singnet.com.sg [165.21.101.204]) by hub.freebsd.org (Postfix) with ESMTP id 9C8FF37B479; Mon, 20 Nov 2000 07:15:22 -0800 (PST) Received: from netserver01 (ad202.166.107.245.magix.com.sg [202.166.107.245]) by smtp24.singnet.com.sg (8.11.0/8.11.0) with SMTP id eAKFHWD73057; Mon, 20 Nov 2000 23:17:32 +0800 (SGT) Message-Id: <3.0.32.20001120231534.01428780@smtp.magix.com.sg> X-Sender: spades@smtp.magix.com.sg X-Mailer: Windows Eudora Pro Version 3.0 (32) Date: Mon, 20 Nov 2000 23:15:34 +0800 To: From: Spades Subject: Upgrade 3.5-stable to 4.2-stable Cc: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How do i upgrade from FreeBSD 3.5-stable to FreeBSD 4.2-stable to an office server on a network? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 7:18:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rush.telenordia.se (mail.telenordia.se [194.213.64.42]) by hub.freebsd.org (Postfix) with SMTP id 1FE6B37B479 for ; Mon, 20 Nov 2000 07:18:33 -0800 (PST) Received: (qmail 24942 invoked from network); 20 Nov 2000 16:18:31 +0100 Received: from bb-62-5-7-17.bb.tninet.se (HELO marbsd.tninet.se) (62.5.7.17) by mail.telenordia.se with SMTP; 20 Nov 2000 16:18:31 +0100 From: Mark Rowlands Reply-To: mark.rowlands@minmail.net Date: Mon, 20 Nov 2000 16:12:01 +0000 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: "sanipcan" , , ramprasad References: <000801c0522d$5a537a00$b9b0c5cb@x> In-Reply-To: <000801c0522d$5a537a00$b9b0c5cb@x> Subject: can I multiboot (was no subject) MIME-Version: 1.0 Message-Id: <00112016120100.03114@marbsd.tninet.se> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sunday 19 November 2000 13:33, sanipcan wrote: > > I currently have win nt4.0 and win95 , and i have dual boot option ,if i > install Bsd, wolud i get options to boot all the os i have. > > or should i use third party software. please help me. > > From > Ramprasad > bkrp@mailandnews.com yes and may I refer you to www.lemis.com/questions.html www.freebsd.org/tutorials/multi-os/ www.freebsd.org/FAQ/install.html#MULTIBOOT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 7:19:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from beethoven.singa.pore.net (beethoven.singa.pore.net [202.156.1.28]) by hub.freebsd.org (Postfix) with ESMTP id 9567E37B4C5; Mon, 20 Nov 2000 07:19:02 -0800 (PST) Received: from sleipnir (mcns46.docsis24.singa.pore.net [202.156.24.46]) by beethoven.singa.pore.net (8.9.3/8.9.3) with SMTP id XAA22987; Mon, 20 Nov 2000 23:19:45 +0800 (SST) Message-ID: <000701c05305$3681ec00$2e189cca@sleipnir> From: "James Lim" To: , "Spades" Cc: References: <3.0.32.20001120231534.01428780@smtp.magix.com.sg> Subject: Re: Upgrade 3.5-stable to 4.2-stable Date: Mon, 20 Nov 2000 23:19:00 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 4.2 release is just out as i am typing here. ? just do a cvsup and later make world, buildkernel and installkernel www.mostgraveconcern.com has some good tutorials to guide u thru 3.x to 4.x ----- Original Message ----- From: "Spades" To: Cc: Sent: Monday, November 20, 2000 11:15 PM Subject: Upgrade 3.5-stable to 4.2-stable > How do i upgrade from FreeBSD 3.5-stable to FreeBSD 4.2-stable > to an office server on a network? > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 20 7:20:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tl.itb.ac.id (gerbang.tl.itb.ac.id [167.205.15.230]) by hub.freebsd.org (Postfix) with SMTP id 0846637B479 for ; Mon, 20 Nov 2000 07:20:18 -0800 (PST) Received: (qmail 490 invoked by uid 1048); 20 Nov 2000 04:30:32 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 20 Nov 2000 04:30:32 -0000 Date: Mon, 20 Nov 2000 11:30:32 +0700 (JAVT) From: "Adit [001] ^_^" To: questions@freebsd.org Subject: PCI ethernet conflicting? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm working on a computer that is working as a router. A week ago the computer was strike by lightning, and causing both of the ethernet cards not working. The ethernet cards was ed0 device (ISA) and ed3 (PCI, PnP). Because of that, I was replacing the cards with 2 PCI card (PnP). The irq setting for both of the cards is done by bios, one got IRQ 10 and the other got IRQ 12. On the visual configuration screen, the there's only one ethernet card detected (that was the one with IRQ 10). I was assuming it caused by IRQ confict (the IRQ 12 was used by keyboard). So I changed the bios setting, until the second card got IRQ 5. Then I changed the rc.conf file : network_interfaces="ed0 ed1 lo0" ifconfig_ed0="inet 167.205.15.230 netmask 255.255.255.240" ifconfig_ed1="inet 192.168.1.1 netmask 255.255.0.0" When I have reboot the computer, the ifconfig is done succesfully. But when I try to ping 167.205.15.226 (this is the computer's gateway), this messages come up: 167.205.15.226 is on device ed0 but got reply from device ed1 ..... (something like that) So I release one of the card (the one with IRQ 5) after that, the card work properly, but the computer cannot work as a router. Can anyone help me with this? Thx. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 7:29:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.panix.com (mail1.panix.com [166.84.0.212]) by hub.freebsd.org (Postfix) with ESMTP id 90CEA37B479 for ; Mon, 20 Nov 2000 07:29:55 -0800 (PST) Received: from panix2.panix.com (panix2.panix.com [166.84.0.227]) by mail1.panix.com (Postfix) with ESMTP id DBAA4487E9 for ; Mon, 20 Nov 2000 10:29:54 -0500 (EST) Received: (from stanb@localhost) by panix2.panix.com (8.8.8/8.7.1/PanixN1.0) id KAA00172 for freebsd-questions@freebsd.org; Mon, 20 Nov 2000 10:29:54 -0500 (EST) From: Message-Id: <200011201529.KAA00172@panix2.panix.com> Subject: Zope port, and kernel file table fils up To: freebsd-questions@freebsd.org (Free BSD Questions list) Date: Mon, 20 Nov 2000 10:29:54 -0500 (EST) 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 X-Loop: FreeBSD.ORG I am trying to get the Zope port working. It compiles OK, but when I run the startup script in /usr/local/etc/rc.d, I imediatly get a kernel warning about the file table being full. I have replicated this on bith a 3.4 STABLE machine and a 4 STABLE machine updated this weekend. What's goin on here? -- Stan Brown stanb@panix.com 843-745-3154 Charleston SC -- "Be careful not to step in the Microsoft." -- John Denker To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 7:41:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web4502.mail.yahoo.com (web4502.mail.yahoo.com [216.115.105.63]) by hub.freebsd.org (Postfix) with SMTP id 3673C37B4C5 for ; Mon, 20 Nov 2000 07:41:08 -0800 (PST) Message-ID: <20001120154108.5591.qmail@web4502.mail.yahoo.com> Received: from [192.251.173.34] by web4502.mail.yahoo.com; Mon, 20 Nov 2000 07:41:08 PST Date: Mon, 20 Nov 2000 07:41:08 -0800 (PST) From: Ben Hacker Jr Subject: Help with Sound. FBSDv4.2 To: list DC-FBSD , questions FBSD , Stable FBSD MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Any help will be greatly appreciated! (Note: I am not a reader on FreeBSD Questions list) I added lines for Sound to my Kernel and recompiled. Using a text based program to test playing a wav file. It says the device is not available or it cannot find the device. I assume it is talking about the /dev/[sound device] If this configuration looks good and you suspect the software, please suggest a better text based software I can use to test my sound. I wanted to use a CD player but they seem to only want SCSI CD Devices. Mine is IDE. Below you will find my output from: uname -a dmesg cat /dev/sndstat pkg_info =====$uname -a FreeBSD localhost 4.2-BETA FreeBSD 4.2-BETA #0: Mon Nov 20 01:19:27 EST 2000 strben@localhost:/usr/src/sys/compile/RODNEY-01 i386 =====$dmesg Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.2-BETA #0: Mon Nov 20 01:19:27 EST 2000 strben@localhost:/usr/src/sys/compile/RODNEY-01 Timecounter "i8254" frequency 1193182 Hz CPU: Pentium/P54C (132.63-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x52c Stepping = 12 Features=0x1bf real memory = 33554432 (32768K bytes) config> di pcic0 No such device: pcic0 Invalid command or syntax. Type `?' for help. config> di sn0 No such device: sn0 Invalid command or syntax. Type `?' for help. config> di lnc0 No such device: lnc0 Invalid command or syntax. Type `?' for help. config> di le0 No such device: le0 Invalid command or syntax. Type `?' for help. config> di ie0 No such device: ie0 Invalid command or syntax. Type `?' for help. config> di fe0 No such device: fe0 Invalid command or syntax. Type `?' for help. config> di ed0 No such device: ed0 Invalid command or syntax. Type `?' for help. config> di cs0 No such device: cs0 Invalid command or syntax. Type `?' for help. config> di bt0 No such device: bt0 Invalid command or syntax. Type `?' for help. config> di aic0 No such device: aic0 Invalid command or syntax. Type `?' for help. config> di aha0 No such device: aha0 Invalid command or syntax. Type `?' for help. config> di adv0 No such device: adv0 Invalid command or syntax. Type `?' for help. config> q avail memory = 29138944 (28456K bytes) Preloaded elf kernel "kernel" at 0xc03a8000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc03a809c. Intel Pentium detected, installing workaround for F00F bug md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 isab0: at device 1.0 on pci0 isa0: on isab0 pci0: at 18.0 irq 10 atapci0: port 0x3000-0x300f at device 20.0 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 plip0: on ppbus0 sbc0: at port 0x220-0x22f irq 5 drq 1 flags 0x15 on isa0 pcm1: on sbc0 pca0 at port 0x40 on isa0 ad0: 2067MB [4200/16/63] at ata0-master PIO4 ad1: 6194MB [13424/15/63] at ata0-slave WDMA2 acd0: CDROM at ata1-slave using PIO3 Mounting root from ufs:/dev/ad0s1a =====$cat /dev/sndstat FreeBSD Audio Driver (newpcm) Nov 20 2000 01:13:44 Installed devices: pcm1: at io 0x220 irq 5 drq 1:5 (1p/1r channels duplex) =====$pkg_info bzip2-1.0.1 A block-sorting file compressor cvsup-bin-16.1 A general network file distribution system optimized for CVS gettext-0.10.35 GNU gettext package gmake-3.79.1 GNU version of 'make' utility libtool-1.3.4 Generic shared library support script linux_base-6.1 The base set of packages needed in Linux mode lynx-ssl-2.8.3.1 A non-graphical, text-based ssl-enabled World-Wide Web clien mtools-3.9.6 A collection of tools for manipulating MSDOS files wavplay-1.4 A wav player and recorder =====$That's all folks... Thanks!! __________________________________________________ Do You Yahoo!? Yahoo! Calendar - Get organized for the holidays! http://calendar.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 Nov 20 7:44:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from neko.cts.com (neko.cts.com [209.68.192.150]) by hub.freebsd.org (Postfix) with ESMTP id 53EFB37B4C5 for ; Mon, 20 Nov 2000 07:44:42 -0800 (PST) Received: from porion (putc1218017.cts.com [209.68.218.17]) by neko.cts.com (8.9.3/8.9.3) with SMTP id HAA19003 for ; Mon, 20 Nov 2000 07:44:36 -0800 (PST) From: "orion slevin" To: "freebsd questions" Subject: What to use instead of fflush? Date: Mon, 20 Nov 2000 07:45:26 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG fflush(stdin) does not work with freebsd and linux. What can I use instead? Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 7:52: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.chat.ru (mail1.chat.ru [212.24.32.14]) by hub.freebsd.org (Postfix) with ESMTP id AD60537B4CF for ; Mon, 20 Nov 2000 07:51:57 -0800 (PST) Received: from gnu.chat.ru ([212.24.32.10] helo=mail.chat.ru) by mail1.chat.ru with esmtp (Exim 3.15 #1) id 13xtBy-000HMg-00 for freebsd-questions@freebsd.org; Mon, 20 Nov 2000 18:49:14 +0300 Received: from chat by mail.chat.ru with local (Exim 3.16 #1) id 13xtEX-000L5x-00 for freebsd-questions@freebsd.org; Mon, 20 Nov 2000 18:51:53 +0300 From: killer_secure@chat.ru To: freebsd-questions@freebsd.org Reply-To: killer_secure@chat.ru MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit X-Mailer: WebMail on Chat.ru X-IP-from: 195.90.131.210 X-IP-from2: [] Subject: Cyrus Message-Id: Date: Mon, 20 Nov 2000 18:51:53 +0300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there! I've installed cyrus 1.6.22 from ports, then i did next: ------cut------ Neverland# saslpasswd timur Password: Again (for verification): --------------- Thus I've added myself to the sasldb. Then I wanted to make a test: ------cut------ Neverland# imtest -a timur -m login -p imap localhost C: C01 CAPABILITY S: * OK Neverland.eterra.ru Cyrus IMAP4 v1.6.22 server ready S: * CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL+ NAMESPACE UIDPLUS X-NON- HIERARCHICAL-RENAME NO_ATOMIC_RENAME AUTH=KERBEROS_V4 UNSELECT S: C01 OK Completed Password: + go ahead L01 NO Login failed: generic failure Authenticated. Security strength factor: 0 ------cut------- what have I missed? AFAIK the sasldb is the default database for cyrus. P.S. I would be glad to recieve any links to documentation on this theme, except the URL "http://asg.web.cmu.edu/cyrus/".(I've read it all :)) P.P.S I'm running FreeBSD 4.1.1 RELEASE. W.B.R., Timur A. Hakimyanov, 20.11.2000 bwl_killer@chat.ru admin@eterra.ru http://www.eterra.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 8: 5:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rush.telenordia.se (mail.telenordia.se [194.213.64.42]) by hub.freebsd.org (Postfix) with SMTP id 03BD337B479 for ; Mon, 20 Nov 2000 08:05:47 -0800 (PST) Received: (qmail 26714 invoked from network); 20 Nov 2000 17:05:44 +0100 Received: from bb-62-5-7-17.bb.tninet.se (HELO marbsd.tninet.se) (62.5.7.17) by mail.telenordia.se with SMTP; 20 Nov 2000 17:05:44 +0100 From: Mark Rowlands Reply-To: mark.rowlands@minmail.net Date: Mon, 20 Nov 2000 16:59:16 +0000 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: "Colin O'Brien" , References: <200011201441.JAA24184@www-dc-14.digiserve.com> In-Reply-To: <200011201441.JAA24184@www-dc-14.digiserve.com> Subject: Re: Bootable RAID MIME-Version: 1.0 Message-Id: <00112016591601.03114@marbsd.tninet.se> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Monday 20 November 2000 17:40, Colin O'Brien wrote: > I notice that the recent iterations of FreeBSD (4.1.1, 4.2 RC1) include > support for newer (read, available and affordable, plus Ultra 160 and > therefore consistent with hard drives that are available) RAID controllers > such as Adaptec 2100S, DPT SmartRaid VI and Mylex AcceleRAID 170. > > I cannot find any mention if you can boot from these controllers? > > If this is not supported, is this a case of 'not yet', or is there some > technical reasons why they will never be able to support booting in > FreeBSD? > > Thanks in advance for your help > Colin > > > a qualified yes (my acceleraid 250 works) and may I point you towards http://people.freebsd.org/~msmith/RAID/index.html for a more learned viewpoint To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 8:23:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from freesurfmail.sunrise.ch (freesurfmta03.sunrise.ch [194.230.0.32]) by hub.freebsd.org (Postfix) with ESMTP id 068E337B479 for ; Mon, 20 Nov 2000 08:23:48 -0800 (PST) Received: from manuel.bluewin.ch (194.230.232.76) by freesurfmail.sunrise.ch (5.1.053) id 39F80391001AF676; Mon, 20 Nov 2000 17:20:43 +0100 Message-Id: <5.0.0.25.2.20001120171433.00bd0e30@pop.bluewin.ch> X-Sender: manuelk@pop.bluewin.ch X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Mon, 20 Nov 2000 17:20:38 +0100 To: Andrew Gould From: Manuel Kasper Subject: Re: UDMA ICRC READ ERRORs Cc: freebsd-questions@freebsd.org In-Reply-To: <20001120125059.28047.qmail@web113.yahoomail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >I have installed FreeBSD 4.1 on an AMD K6/2 450MHz box >and keep getting the following error message when I >boot the computer: > >'ad0: UDMA ICRC READ ERROR blk# 4144087 retrying' >There are more messages where the blk# is different. I had the exact same problem with a FIC SD11 mainboard (K7 Athlon 600) and a Maxtor HD - sometimes FreeBSD even reported WRITE errors. Did you try forcing it to UDMA33 to see what happens? When I used a standard IDE cable instead to force it to run at UDMA33 these errors went away (and IMHO UDMA33 is enough for most HDs anyway) UDMA66 is almost unusable on my FIC mainboard anyway, even under Windows - thanks VIA. Interestingly, on that board I got the same errors in Windows 2000, reported in the system log (when using an ATA66 cable). Greets, Manuel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 8:24:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tyr.internal (node-d8e93fd2.powerinter.net [216.233.63.210]) by hub.freebsd.org (Postfix) with SMTP id AE73537B4C5 for ; Mon, 20 Nov 2000 08:24:21 -0800 (PST) Received: (qmail 10869 invoked from network); 20 Nov 2000 16:27:26 -0000 Received: from localhost (HELO dynamictrade.com) (127.0.0.1) by localhost with SMTP; 20 Nov 2000 16:27:26 -0000 Date: Mon, 20 Nov 2000 10:27:25 -0600 (CST) From: jmelesky@dynamictrade.com Reply-To: jmelesky@dynamictrade.com Subject: Re: Oracle install revisited To: freebsd-questions@freebsd.org In-Reply-To: <00111821252804.09278@shalimar.net.au> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Message-Id: <20001120162422.AE73537B4C5@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Just a wild guess, but have you USER_LDT set in your kernel? Good suggestion. Checked it out, and the installer got significantly further. However, when the installer runs, it starts spewing "kernel trap 9 with interrupts disabled" errors. Looking through the source code, i find that trap 9 is a general protection fault. Some searches through the freebsd-questions archive turn up a few posts, most related to installs, not running systems. Anyone have any ideas? I'm about to let the sysadmin install RedHat... -johnnnnnn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 8:39:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from vopserver.pflash.com (unknown [207.19.136.5]) by hub.freebsd.org (Postfix) with ESMTP id D034437B479 for ; Mon, 20 Nov 2000 08:39:23 -0800 (PST) Received: from skyline (wall.pflash.com [207.19.136.3]) by vopserver.pflash.com (Vircom SMTPRS 4.4.184) with SMTP id for ; Mon, 20 Nov 2000 10:36:26 -0600 From: "Tony Kuta" To: Subject: News Relay Date: Mon, 20 Nov 2000 10:39:21 -0600 Message-ID: <95AAC7F7374ED411AFE50000E2298CA846F1@BACKSERVER> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Heya all I am perplexed on how to setup a news relay since I am only on a T-1 and we all know that isn't enough bandwidth to do that so as Matt Heckman suggested maybe "What if you set up a divert/tunnel for news? Ie, they would connect to your news server, which would then forward the connection to uunet's" "Something like an IPFW divert or natd redirect? So that a connection to you:119 would forward to uunet:119 so you could be sure the connection came from an allowed IP address..." some of that makes sense to me but I am a fairly new BSD person. Any suggestions? Tony Kuta Internet Operations Senior Tech. Pflash Inc. Phone: 1-903-872-4002 Ext. 208 Fax: 1-903-872-8095 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 8:50:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from jamus.xpert.com (jamus.xpert.com [199.203.132.17]) by hub.freebsd.org (Postfix) with ESMTP id 431A437B479; Mon, 20 Nov 2000 08:50:16 -0800 (PST) Received: from roman (helo=localhost) by jamus.xpert.com with local-esmtp (Exim 3.12 #5) id 13xu91-000477-00; Mon, 20 Nov 2000 18:50:15 +0200 Date: Mon, 20 Nov 2000 18:50:15 +0200 (IST) From: Roman Shterenzon To: , Subject: truss -f Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Once, someone told me that he had a patch for truss that allows it to follow children, just like in Solaris (or strace -f in linux). Does anyone have it? --Roman Shterenzon, UNIX System Administrator and Consultant [ Xpert UNIX Systems Ltd., Herzlia, Israel. Tel: +972-9-9522361 ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 9:10:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.linuxcare.com (unknown [216.88.157.131]) by hub.freebsd.org (Postfix) with SMTP id 6AB5337B479 for ; Mon, 20 Nov 2000 09:10:22 -0800 (PST) Received: (qmail 5915 invoked from network); 20 Nov 2000 17:10:23 -0000 Received: from unknown (HELO wiliweld.com) (167.216.157.206) by smtp.linuxcare.com with SMTP; 20 Nov 2000 17:10:23 -0000 Message-ID: <3A195B47.B175FBC7@wiliweld.com> Date: Mon, 20 Nov 2000 09:11:35 -0800 From: Bill X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 i86pc) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Subject: USB and gphoto ? which port ? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello Family, I'm a little lost on the USB stuff for this is my first experience using it and it applies to a new digital camera and the program gphoto. With two USB ports I have a 4 port hub plugged into one, and the camera directly plugged into the other. ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xe000-0xe01f irq 10 at device 31.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 uhub0: port 1 power on failed, IOERROR uhub0: port 2 power on failed, IOERROR uhub1: Kawatsu Semiconductor, Inc. MiniHub 4000P, class 9/0, rev 1.10/1.00, addr 2 uhub1: 4 ports with 4 removable, bus powered umass0: HP USB DIGITAL CAMERA, rev 1.10/1.00, addr 3 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 The camera is at the following: [umass0: HP USB DIGITAL CAMERA, rev 1.10/1.00, addr 3] and I'd like to know how to direct gphoto to that address ? There is the standard field in gphoto that asks for the "port", there are the standard COM-1 through COM-4 options then there is a special "other" field and that's where I'm attempting to direct the connection. I've emailed all the links at the gphoto site and received nothing back. :( -- Bill Schoolcraft PO Box 210076 San Francisco, CA 94121 "UNIX, A Way of Life !!!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 9:19:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from murphys-outbound.servers.plus.net (unknown [212.159.14.225]) by hub.freebsd.org (Postfix) with SMTP id D4EB937B4CF for ; Mon, 20 Nov 2000 09:19:29 -0800 (PST) Received: (qmail 4903 invoked from network); 20 Nov 2000 17:19:13 -0000 Received: from unknown (HELO daemon.lpds.sublink.org) (212.159.55.47) by murphys with SMTP; 20 Nov 2000 17:19:13 -0000 Received: from pelissero.org (hyde.lpds.sublink.org [10.0.0.2]) by daemon.lpds.sublink.org (8.9.3/8.9.3) with ESMTP id QAA09356; Mon, 20 Nov 2000 16:59:05 GMT (envelope-from wcp@pelissero.org) Received: (from wcp@localhost) by pelissero.org (8.9.3/8.9.3) id RAA39553; Mon, 20 Nov 2000 17:05:39 GMT (envelope-from wcp) From: "Walter C. Pelissero" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14873.23011.159826.718978@hyde.lpds.sublink.org> Date: Mon, 20 Nov 2000 17:05:39 +0000 (GMT) To: questions@freebsd.org, hackers@freebsd.org Subject: SVR4 missing syscall X-Mailer: VM 6.72 under 21.1 (patch 9) "Canyonlands" XEmacs Lucid Reply-To: walter@pelissero.org X-Attribution: WP Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm trying to run a SCO SVR4 executable on FreeBSD but I get a SIGSYS (invalid system call) at the very beginning. Here is the kdump: 39525 ktrace RET ktrace 0 39525 ktrace CALL sigprocmask(0x1,0x28061000,0x28061010) 39525 ktrace RET sigprocmask 0 39525 ktrace CALL sigprocmask(0x3,0x28061010,0) 39525 ktrace RET sigprocmask 0 39525 ktrace CALL sigprocmask(0x1,0x28061000,0x28061010) 39525 ktrace RET sigprocmask 0 39525 ktrace CALL sigprocmask(0x3,0x28061010,0) 39525 ktrace RET sigprocmask 0 39525 ktrace CALL sigprocmask(0x1,0x28061000,0x28061010) 39525 ktrace RET sigprocmask 0 39525 ktrace CALL sigprocmask(0x3,0x28061010,0) 39525 ktrace RET sigprocmask 0 39525 ktrace CALL execve(0xbfbff9a3,0xbfbff880,0xbfbff88c) 39525 ktrace NAMI "./scobin" 39525 ktrace NAMI "/compat/svr4/usr/lib/libc.so.1" 39525 scobin RET execve 0 39525 scobin CALL getuid 39525 scobin RET getuid 1001/0x3e9 39525 scobin CALL getuid 39525 scobin RET getuid 1001/0x3e9 39525 scobin CALL getgid 39525 scobin RET getgid 0 39525 scobin CALL getgid 39525 scobin RET getgid 0 39525 scobin CALL setlogin(0x72,0x805056c) 39525 scobin RET setlogin 0 39525 scobin CALL setlogin(0x28,0x280a9764) 39525 scobin RET setlogin 0 39525 scobin CALL break(0x8051580) 39525 scobin RET break 0 39525 scobin CALL setlogin(0x68,0x8049830) 39525 scobin RET setlogin 0 39525 scobin CALL getpid 39525 scobin RET getpid 39525/0x9a65 39525 scobin CALL old.lstat 39525 scobin PSIG SIGSYS SIG_DFL 39525 scobin NAMI "scobin.core" Which call is it about? I see an "old.lstat" but I couldn't find any reference in the kernel source tree. Is there any doc I could read to see if I can hack this syscall in the emulator? Thanks, -- 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 Mon Nov 20 9:19:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from wop21.wop.wtb.tue.nl (wop21.wop.wtb.tue.nl [131.155.56.216]) by hub.freebsd.org (Postfix) with ESMTP id 7027837B4C5 for ; Mon, 20 Nov 2000 09:19:43 -0800 (PST) Received: (from karelj@localhost) by wop21.wop.wtb.tue.nl (8.11.1/8.11.1) id eAKHJZa00489; Mon, 20 Nov 2000 18:19:35 +0100 (CET) (envelope-from karelj) Date: Mon, 20 Nov 2000 18:18:14 +0100 From: "Karel J. Bosschaart" To: "S.W.Liu" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: vmware wrong or freebsd wrong? Message-ID: <20001120181814.A472@wop21.wop.wtb.tue.nl> Reply-To: K.J.Bosschaart@wtb.tue.nl References: <005201c052fc$a8c08780$0c00a8c0@122> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <005201c052fc$a8c08780$0c00a8c0@122>; from hhh@ns.ciac.jl.cn on Mon, Nov 20, 2000 at 10:17:37PM +0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Nov 20, 2000 at 10:17:37PM +0800, S.W.Liu wrote: > My system is FreeBSD 4.1, I can't install vmware or vmware2 from port! but when I reinstall FreeBSD 4.0, I can install vmware, and it can run fine! > > Why? > No idea. What's the problem precisely in 4.1? > Has anyone installed vmware? Yes, this morning I did a (re)install of vmware2 using the port. Worked fine (in 4.2-BETA). Karel. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 9:22:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tl.itb.ac.id (gerbang.tl.itb.ac.id [167.205.15.230]) by hub.freebsd.org (Postfix) with SMTP id 7742337B4C5 for ; Mon, 20 Nov 2000 09:22:24 -0800 (PST) Received: (qmail 6553 invoked by uid 1048); 20 Nov 2000 17:50:08 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 20 Nov 2000 17:50:08 -0000 Date: Tue, 21 Nov 2000 00:50:08 +0700 (JAVT) From: "Adit [001] ^_^" To: Stan Brown Cc: freebsd-questions@freebsd.org Subject: Re: PCI ethernet conflicting? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 20 Nov 2000, Stan Brown wrote: > Sounds like a routing table issue to me. BTW, are both cards connected > to the same physical wire? > Nop, one of the card is connected to the net, and the other one is connected to a hub (internal connection). How can that got to do with routing table? BTW, i use natd as firewall (ipfw divert via natd interface) Oh, i replace one of the card with ISA card. It resolve the problem, but i still curious. Both of the pci card is pnp, and also with the isa card, so i don't have to recompile my kernel. So, what the different using both pci from using one isa card? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 10: 4:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from vopserver.pflash.com (mail.pflash.com [207.19.136.5]) by hub.freebsd.org (Postfix) with ESMTP id 28D0637B4C5 for ; Mon, 20 Nov 2000 10:04:13 -0800 (PST) Received: from skyline (wall.pflash.com [207.19.136.3]) by vopserver.pflash.com (Vircom SMTPRS 4.4.184) with SMTP id for ; Mon, 20 Nov 2000 12:01:15 -0600 From: "Tony Kuta" To: Subject: subscribe Date: Mon, 20 Nov 2000 12:04:11 -0600 Message-ID: <95AAC7F7374ED411AFE50000E2298CA846F5@BACKSERVER> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk 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 Mon Nov 20 10: 4:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from vopserver.pflash.com (mail.pflash.com [207.19.136.5]) by hub.freebsd.org (Postfix) with ESMTP id 8A64B37B479 for ; Mon, 20 Nov 2000 10:04:24 -0800 (PST) Received: from skyline (wall.pflash.com [207.19.136.3]) by vopserver.pflash.com (Vircom SMTPRS 4.4.184) with SMTP id for ; Mon, 20 Nov 2000 12:01:26 -0600 From: "Tony Kuta" To: Subject: Date: Mon, 20 Nov 2000 12:04:22 -0600 Message-ID: <95AAC7F7374ED411AFE50000E2298CA846F6@BACKSERVER> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG subscribe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 10: 8: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id E806637B4C5; Mon, 20 Nov 2000 10:07:58 -0800 (PST) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id KAA10556; Mon, 20 Nov 2000 10:07:45 -0800 Message-ID: <3A196871.4FEF2AF4@urx.com> Date: Mon, 20 Nov 2000 10:07:45 -0800 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Ben Hacker Jr Cc: list DC-FBSD , questions FBSD , Stable FBSD Subject: Re: Help with Sound. FBSDv4.2 References: <20001120154108.5591.qmail@web4502.mail.yahoo.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ben Hacker Jr wrote: > > Any help will be greatly appreciated! > > (Note: I am not a reader on FreeBSD Questions > list) > > I added lines for Sound to my Kernel and > recompiled. > Using a text based program to test playing a wav > file. It says the device is not available or it > cannot find the device. I assume it is talking > about the /dev/[sound device] > > If this configuration looks good and you suspect > the software, please suggest a better text based > software I can use to test my sound. I wanted > to use a CD player but they seem to only want > SCSI CD Devices. Mine is IDE. > What I didn't see was a list of your links that are produced when you reboot and run cd /dev ./MAKEDEV snd0. 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 Mon Nov 20 10:10:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from apm.koenig.ru (ba3.ol.enet.ru [194.186.20.146]) by hub.freebsd.org (Postfix) with ESMTP id 291C837B479 for ; Mon, 20 Nov 2000 10:10:49 -0800 (PST) Received: (from root@localhost) by apm.koenig.ru (8.11.0/8.11.0 (root@apm.koenig.su)|by WestGroup) id eAKI7mJ14280 for questions@freebsd.org; Mon, 20 Nov 2000 18:07:48 GMT Date: Mon, 20 Nov 2000 18:07:48 GMT From: Dmitriy Butko Organization: KSU (Linux|FreeBSD|*nix) User Group Message-Id: <200011201807.eAKI7mJ14280@apm.koenig.ru> To: questions@freebsd.org Subject: Yamaha 724 configuration. Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello! Please help me to configure this audio card: I was looking for any documentation about it, but there wasn't any docs on this subject. Thank You! Best Regards, Dmitriy. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 10:25: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from freesurfmail.sunrise.ch (freesurfmta03.sunrise.ch [194.230.0.32]) by hub.freebsd.org (Postfix) with ESMTP id 7E6B137B479 for ; Mon, 20 Nov 2000 10:25:05 -0800 (PST) Received: from manuel.bluewin.ch (194.230.232.76) by freesurfmail.sunrise.ch (5.1.053) id 39F80391001B1E8C; Mon, 20 Nov 2000 19:24:49 +0100 Message-Id: <5.0.0.25.2.20001120191155.00bb9ff0@pop.bluewin.ch> X-Sender: manuelk@pop.bluewin.ch X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Mon, 20 Nov 2000 19:24:45 +0100 To: Mike Meyer From: Manuel Kasper Subject: Re: Hardware monitoring on Compaq servers Cc: questions@freebsd.org In-Reply-To: <14873.7242.370522.402799@guru.mired.org> References: <30970337@toto.iv> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 06:42 20.11.2000 -0600, you wrote: >Look in /usr/ports/sysutils. There's healthd and heat (at the very >least). Thanks for the tip! Both packages do not support that Compaq mainboard; however I expected that (why do they always have do things in their own special way...). But it's good to know the next time I use a "better" mainboard with FreeBSD. >You might ask compaq if the source is available. You can also try >running the drivers under Linux compatability mode. Unfortunately the Compaq drivers are loaded as kernel modules in Linux. I guess they can't be loaded in FreeBSD then since they're no user applications - or is there a way to do it? They consist of three modules (cpqeisaid.o, cpqhealth.o and cpqrom.o) which are loaded by a small shell script using insmod/modprobe. Anyway, I'll go looking for an address at Compaq to ask for the source. Who knows, maybe they'll help... ;) Thanks & greets, Manuel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 10:28:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from alice.twopoint.com (unknown [209.64.88.26]) by hub.freebsd.org (Postfix) with ESMTP id 54F7337B479; Mon, 20 Nov 2000 10:28:52 -0800 (PST) Received: from twopoint.com (hamilton@fred.twopoint.com [192.168.1.3]) by alice.twopoint.com (8.8.7/8.8.7) with ESMTP id MAA05973; Mon, 20 Nov 2000 12:30:16 -0600 Message-ID: <3A196E28.3A9806A1@twopoint.com> Date: Mon, 20 Nov 2000 12:32:08 -0600 From: Hamilton Hoover Organization: Two Point Conversions, INC. X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.16-22 i686) X-Accept-Language: en MIME-Version: 1.0 To: "freebsd-net@freebsd.org" , "freebsd-questions@FreeBSD.ORG" Subject: dual homed gateway system running ipfw and nat. need rules help. Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, I am running a dual homed system (2 nics) acting as a gateway/firewall for our office T1. The private net uses 192.x.x.x and the public uses a 'real' address of 209.x.x.x. The firewall is up and seems to be working well. I used rc.firewall "simple" and have customized it to our needs. All outgoing requests appear to to originating from the public interface. I want to be able to do two things that I have not been able to figure out yet. 1) We keep out pop server on the private net. I need to be able to get the incoming mail passed to the mail server that has a 192.x.x.x address. I was thinking something like: ${fwcmd} pass tcp from any 25 to 192.x.x.x Is this solid or am I opening myself up from more problems. I don't want to relay from outside as mail is only checked from inside the private side. 2) We want to be able to use the gateway/firewall as a PPTP server. After asking a few questions I decided to go with mpd. I have installed this and that seems ok. But I also need a rule to allow the incoming connection from the public net. All connections will be coming from home users running win9x who have static 'real' ip address. Also as i have never used mpd or set up a vpn any suggestions on this set up would be wonderfully helpful. Hamilton Hoover To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 10:42:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from blizzard.mweb.co.za (blizzard.mweb.co.za [196.2.48.245]) by hub.freebsd.org (Postfix) with ESMTP id 4FBA037B479 for ; Mon, 20 Nov 2000 10:42:23 -0800 (PST) Received: from wheelerz.mweb.co.za ([196.7.203.152]) by blizzard.mweb.co.za (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) with ESMTP id <0G4C003356MBUK@blizzard.mweb.co.za> for questions@freebsd.org; Mon, 20 Nov 2000 20:42:13 +0200 (SAT) Received: (from gramroam@localhost) by wheelerz.mweb.co.za (8.9.3/8.9.3) id UAA24719 for questions@freebsd.org; Mon, 20 Nov 2000 20:46:10 +0200 (SAST envelope-from gramster@mweb.co.za) Date: Mon, 20 Nov 2000 20:45:24 +0200 (SAST) From: Graham Wheeler Subject: Using FreeBSD with Ontrack To: questions@freebsd.org Reply-To: gramster@bigfoot.com Message-id: <200011201846.UAA24719@wheelerz.mweb.co.za> MIME-version: 1.0 X-Mailer: ELM [version 2.4ME+ PL68 (25)] Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all There is a similar question in the archives but it isn't answered satisfactorily, so its worth asking again. I have a 16Gb HDD, which I want to use with an old Pentium motherboard (pre-MMX). The BIOS doesn't let me specify disks greater than about 8Gb. Ontrack is installed, and the drive was originally used just for MS-Win 98. I used fips to shrink the Windows partition to about 6Gb, and created a .5 Gb partition for FreeBSD root, /var and swap. I then created two partitions each about 5Gb, one for a FAT-32 partition and one for /usr. These were created using FreeBSD's fdisk. I then installed a minimal distribution of FreeBSD 4.0. All seemed well, but when I try to boot the FreeBSD partition, I see a message "not ufs", and then another "no /kernel". Then I get a boot prompt: FreeBSD boot: 0:ad(0,a)/kernel The root partition should be 0:ad(1,a), but entering that doesn't work, I get the "not ufs" message again. I'm not sure what to do. I could possibly get it to work by removing Ontrack and making both FAT-32 partitions lie within the first 8Gb, but I would like to use more than half the drive for MS-Windows, as this will be used for multimedia. So I would like things to work with Ontrack. BTW if I boot a fixit CD, I have no problem mounting /dev/ad0s2 as root, /dev/ad0s2e as /var, and /dev/ad0s3f as /usr, as they appear in the fstab. So it seems to be very much a boot problem only. Any ideas anyone? Thanks gram To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 10:44: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.hurontel.on.ca (mail.hurontel.on.ca [216.46.129.11]) by hub.freebsd.org (Postfix) with ESMTP id 5D57B37B479 for ; Mon, 20 Nov 2000 10:43:59 -0800 (PST) Received: from athlon ([216.46.130.228]) by mail.hurontel.on.ca (8.10.1/8.10.1) with SMTP id eAKIire19579 for ; Mon, 20 Nov 2000 13:44:53 -0500 (EST) Message-ID: <000501c0533b$33d755e0$1201ed0a@athlon.quadro.net> From: "Rob" To: Subject: ISA probing Date: Mon, 20 Nov 2000 13:45:28 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I am wishing to install FreeBSD via FTP (cable modem). The problem is that FreeBSD is refusing to find the ethernet card. I am almost sure it is because FreeBSD doesnt like probing ISA devices during install. the card is a Netgear ISA NE2000 compliant which is supported. Is there anyway I can force it? or enter extra parameters at the prompt? if so what is required to do so, for the most part this is the only that can be done and I'm kinda poor so another NIC is out of the question. do you have any other suggests? Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 10:59:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rapidnet.com (rapidnet.com [205.164.216.1]) by hub.freebsd.org (Postfix) with ESMTP id A634C37B4C5; Mon, 20 Nov 2000 10:59:13 -0800 (PST) Received: from localhost (nick@localhost) by rapidnet.com (8.9.3/8.9.3) with ESMTP id LAA75255; Mon, 20 Nov 2000 11:59:00 -0700 (MST) Date: Mon, 20 Nov 2000 11:59:00 -0700 (MST) From: Nick Rogness To: Hamilton Hoover Cc: "freebsd-net@freebsd.org" , "freebsd-questions@FreeBSD.ORG" Subject: Re: dual homed gateway system running ipfw and nat. need rules help. In-Reply-To: <3A196E28.3A9806A1@twopoint.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 20 Nov 2000, Hamilton Hoover wrote: > Hi all, Hello. > > I am running a dual homed system (2 nics) acting as a gateway/firewall > for our office T1. The private net uses 192.x.x.x and the public uses a > 'real' address of 209.x.x.x. The firewall is up and seems to be working > well. I used rc.firewall "simple" and have customized it to our needs. > All outgoing requests appear to to originating from the public > interface. I want to be able to do two things that I have not been able > to figure out yet. > > 1) We keep out pop server on the private net. I need to be able to get > the incoming mail passed to the mail server that has a 192.x.x.x > address. I was thinking something like: > Incoming from the outside or inside? > ${fwcmd} pass tcp from any 25 to 192.x.x.x > The POP server runs on port 110 not 25, that's SMTP. > Is this solid or am I opening myself up from more problems. I don't want > to relay from outside as mail is only checked from inside the private > side. > If you don't want mail from the outside world or users to send mail to the outside world, then this should work. Is the BSD machine acting as a mail server? Nick Rogness - Drive defensively. Buy a tank. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 10:59:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lucifer.ninth-circle.org (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id A820F37B479 for ; Mon, 20 Nov 2000 10:59:37 -0800 (PST) Received: (from asmodai@localhost) by lucifer.ninth-circle.org (8.11.1/8.11.0) id eAKIxYf01796; Mon, 20 Nov 2000 19:59:34 +0100 (CET) (envelope-from asmodai) Date: Mon, 20 Nov 2000 19:59:34 +0100 From: Jeroen Ruigrok van der Werven To: Jim Jones Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Statement & Question to the group. Message-ID: <20001120195934.C1476@lucifer.bart.nl> References: <007501c05fba$160d4ca0$2663fea9@buf.adelphia.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <007501c05fba$160d4ca0$2663fea9@buf.adelphia.net>; from jjones2k@adelphia.net on Wed, Dec 06, 2000 at 02:23:59PM -0500 Organisation: VIA Net.Works The Netherlands Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [format recovered by use of gq} in vim] -On [20001106 20:30], Jim Jones (jjones2k@adelphia.net) wrote: >First of all, I want to thank those who replied with good info. As to >where I can download Unix and what files to get, it looked like a big >mess to me. Newbie I guess (with this site). How do you mean mess? Was the documentaion insufficient for you to decide what you needed to install FreeBSD? If so, what exactly? [URL's, paragraph numbers, line numers] What do you think could enhance it? Thanks, -- Jeroen Ruigrok van der Werven VIA Net.Works The Netherlands BSD: Technical excellence at its best Network- and systemadministrator D78D D0AD 244D 1D12 C9CA 7152 035C 1138 546A B867 But Time, keeps flowing like a river (on and on)... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 11: 3: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rmx460-mta.mail.com (rmx460-mta.mail.com [165.251.48.47]) by hub.freebsd.org (Postfix) with ESMTP id 1790A37B479 for ; Mon, 20 Nov 2000 11:03:03 -0800 (PST) Received: from weba4.iname.net (weba4.iname.net [165.251.4.14]) by rmx460-mta.mail.com (8.9.3/8.9.3) with ESMTP id OAA05640 for ; Mon, 20 Nov 2000 14:03:00 -0500 (EST) From: m.n.safie@iname.com Received: (from root@localhost) by weba4.iname.net (8.9.1a/8.9.2.Alpha2) id OAA22307; Mon, 20 Nov 2000 14:02:56 -0500 (EST) MIME-Version: 1.0 Message-Id: <0011201402567I.03084@weba4.iname.net> Date: Mon, 20 Nov 2000 14:02:56 -0500 (EST) Content-Type: Text/Plain Content-Transfer-Encoding: 7bit To: questions@freebsd.org Subject: Enquiry regarding copyright Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Sir/Madam I purchased a FreeBSD CD recently. It isn't the official distribution by BSDi, but from another local company. I wish to know if it is perfectly legal for me to use the CD if it doesn't contain copyright notice like those you have on your website. It only mention: "FreeBSD is a registered trademark of FreeBSD, Inc and Walnut Creek CD-ROM". I couldn't find any copyright notice for 4.4 BSD Lite or other liability statements. I'm looking forward for your reply. Kind regards Mohd Nizamuddin Safie --------------------------------------------------- Get free personalized email at http://www.iname.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 11: 3:20 2000 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 D613B37B479; Mon, 20 Nov 2000 11:03:09 -0800 (PST) Received: (from dan@localhost) by dan.emsphone.com (8.11.1/8.11.1) id eAKJ31S19192; Mon, 20 Nov 2000 13:03:01 -0600 (CST) (envelope-from dan) Date: Mon, 20 Nov 2000 13:03:01 -0600 From: Dan Nelson To: "Walter C. Pelissero" Cc: questions@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: SVR4 missing syscall Message-ID: <20001120130301.A10520@dan.emsphone.com> References: <14873.23011.159826.718978@hyde.lpds.sublink.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.11i In-Reply-To: <14873.23011.159826.718978@hyde.lpds.sublink.org>; from "Walter C. Pelissero" on Mon Nov 20 17:05:39 GMT 2000 X-OS: FreeBSD 5.0-CURRENT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In the last episode (Nov 20), Walter C. Pelissero said: > I'm trying to run a SCO SVR4 executable on FreeBSD but I get a SIGSYS > (invalid system call) at the very beginning. Here is the kdump: > > Which call is it about? I see an "old.lstat" but I couldn't find any > reference in the kernel source tree. Is there any doc I could read > to see if I can hack this syscall in the emulator? old.lstat is syscall #40, which is the ibcs2_xenix syscall on SCO. You can add hooks from the svr4 emulation code back to the ibcs2 code, but the svr4 module was really written for Solaris x86 instead of SCO. You'll have to make a lot of changes to get SCO binaries to run under it. I tried to get an SCO SVR4 binary to work about 6 months ago but gave up and simply got the vendor to send me a Linux binary instead. Runs fine under the Linuxulator :) -- 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 Nov 20 11: 6:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from klement.dstorm.net (ip-216-145-173-163.idcnet.com [216.145.173.163]) by hub.freebsd.org (Postfix) with ESMTP id BAD4137B4C5; Mon, 20 Nov 2000 11:06:09 -0800 (PST) Received: from localhost (scotty@localhost) by klement.dstorm.net (8.11.1/8.11.1) with ESMTP id eAKJ4Zd11633; Mon, 20 Nov 2000 13:04:36 -0600 (CST) (envelope-from scotty@klement.dstorm.net) Date: Mon, 20 Nov 2000 13:04:35 -0600 (CST) From: scotty@klement.dstorm.net To: Kent Stewart Cc: Ben Hacker Jr , list DC-FBSD , questions FBSD , Stable FBSD Subject: Re: Help with Sound. FBSDv4.2 In-Reply-To: <3A196871.4FEF2AF4@urx.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 20 Nov 2000, Kent Stewart wrote: > Ben Hacker Jr wrote: > > > > Any help will be greatly appreciated! > > > > file. It says the device is not available or it > > cannot find the device. I assume it is talking > > about the /dev/[sound device] > > > What I didn't see was a list of your links that are produced when you > reboot and run > > cd /dev > ./MAKEDEV snd0. > > Kent Since his dmesg output shows "pcm1" as being the sound device, shouldn't it be ./MAKEDEV snd1? HTH To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 11:11:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dialup.ptt.ru (dialup.ptt.ru [195.34.0.100]) by hub.freebsd.org (Postfix) with SMTP id BB43A37B479 for ; Mon, 20 Nov 2000 11:11:20 -0800 (PST) Received: (qmail 84658 invoked from network); 20 Nov 2000 19:15:29 -0000 Received: from unknown (HELO 195.34.10.164) (@195.34.10.164) by dialup.ptt.ru with SMTP; 20 Nov 2000 19:15:29 -0000 Date: Mon, 20 Nov 2000 22:11:14 +0300 From: hellman X-Mailer: The Bat! (v1.47 Halloween Edition) Personal Reply-To: hellman X-Priority: 3 (Normal) Message-ID: <19631910751.20001120221114@artofit.com> To: freebsd-questions@freebsd.org Subject: kernel panic..help Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello freebsd-questions, This is on my console: -- ftal trap 12: page fualt whil in kernel mode fault virtual address = 0x22 fault code = supervidor write, pge not present current process 14385 (sh) trap number = 12 boot on CPU called syncing disks..................... -- and system halted!!! WHat can it be? and how i fix it? Please reply on my mail address (not only in maillist) Thx! Unix-administrator mailto: hellman@freebsd.sh < /etc/master.passwd || You don't need a good teacher, you need a good HEAD || -----BEGIN PGP PUBLIC KEY BLOCK----- mQGiBDk2mmwRBADZ35CdgG9sFpIAWW/0z4D+uJc9I6k3CVa6P5XNwk3SQ1UyVkxV sZiraUNpuUoXRDxxLCo5k9/ZsY0YJ7Cv/Yd/zkxz2rbacHZGX7Mq907Rcls7egQx sHTyCCKlOAFlBFzg6wyOlkg9jGf88nhojfqkljN65m5u7o6SG5hi5qR8JQCg/5Qz c+gSu9Mr9Rg9X54V0/ho8BkD/R7t6g+q5DNhTyxl0QyUJXL2OJAYhaujFPJpjgNC VkALk8fK2O0Li5vD7nY/yAitEIlous5L75YKPQxxRvDd8rBBecCigkgEcQjpiHB7 PEjNRCWfM1Jsv05jWjTeAwoYtsJTulZv1zxvt5Z+D3qPMAFKbVth0jy+KbhrNzvQ ULAAA/9N/rWTi+5C3t3dv0PxxxPpixy8wAfQLweog9DLkrBVODTAzi7z/+cEP4je kmEqr4lmL6eWqW5sc2Y67loHp/K4VsoX2kKgVK1UkOAX0Nm0STwWO8hrSIue1Dbe MnYV+hQkyxc/7Ll1f7+ei/FZCdz9cjQRcLIG2VU16My7deRWDrQeSGVsbF9tYW4g PGhlbGxtYW5AYXN0cmF0ZWwucnU+iQBOBBARAgAOBQI5NppsBAsDAgECGQEACgkQ V1wXLAwYCJ3oQwCdHpA5THKyWifi0XODfOYkaoqMZq8AoMo+nPGRndrvgR+k1ar2 UYJDZ6pPuQINBDk2mm0QCAD2Qle3CH8IF3KiutapQvMF6PlTETlPtvFuuUs4INoB p1ajFOmPQFXz0AfGy0OplK33TGSGSfgMg71l6RfUodNQ+PVZX9x2Uk89PY3bzpnh V5JZzf24rnRPxfx2vIPFRzBhznzJZv8V+bv9kV7HAarTW56NoKVyOtQa8L9GAFgr 5fSI/VhOSdvNILSd5JEHNmszbDgNRR0PfIizHHxbLY7288kjwEPwpVsYjY67VYy4 XTjTNP18F1dDox0YbN4zISy1Kv884bEpQBgRjXyEpwpy1obEAxnIByl6ypUM2Zaf q9AKUJsCRtMIPWakXUGfnHy9iUsiGSa6q6Jew1XpMgs7AAICCACZsqA5WqknThTy iW1yQyzsMOvPp72HW4Mup+qfuGUcCQQ+WqDGLMcj42Me1Zk3atVEcjWxMCgbRWPc DMeoXt/B+/lsaZL207a58qKTP7TChGaDb5yzF2M/3vGI29PtTiyRqwljVdLtFx11 SJkyyIneSGHSbeM9m57Yt6AFxm+nhYLcto8bhAAPPNJmrj45Iyj7DA6X4GEp6BxC Vs1d7tdl8Dfg3VxtcjbN7QfE1wuxl6C5zzMpl0Z6VNAU5Zg8oQy1w1zFzaq/WrQp dweLAcgRg/Ej3DviDfz/2YamvXElcee+8vT7r8cCVwZLSAJ+EkrM3JZ6fNvGJH6I 3sjKoYagiQBGBBgRAgAGBQI5NpptAAoJEFdcFywMGAidwScAnj6XEfh7MkLCN8CM 7k7mm8UHd5WeAJ4+XVxbn35j6iZcEct4wQTaylNftw== =TaEU -----END PGP PUBLIC KEY BLOCK----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 11:14: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from manga.lftc.ufpe.br (unknown [150.161.200.8]) by hub.freebsd.org (Postfix) with SMTP id 7A39737B479 for ; Mon, 20 Nov 2000 11:13:56 -0800 (PST) Received: (qmail 34466 invoked from network); 20 Nov 2000 19:07:01 -0000 Received: from jambo.lftc.ufpe.br (HELO lftc.ufpe.br) (gustavo@150.161.8.51) by manga.lftc.ufpe.br with SMTP; 20 Nov 2000 19:07:01 -0000 Message-ID: <3A19775D.89713F75@lftc.ufpe.br> Date: Mon, 20 Nov 2000 16:11:25 -0300 From: Gustavo Camelo Neto Organization: Universidade Federal de Pernambuco X-Mailer: Mozilla 4.7 [en] (X11; I; FreeBSD 3.4-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Sparcprinter and FreeBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi everyone, I used to have a printer server machine, SPARCstation 10 with a SPARCprinter, in my laboratory. But now this SPARCstation have been down and I haven't got another server to install the SPARCprinter. Could I install this printer into a PC with FreeBSD? If so where could I get references to do this? Thanks in advance, Gustavo Camelo Neto To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 11:40:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from matt.MUNICH.v-net.org (u57n248.hfx.eastlink.ca [24.222.57.248]) by hub.freebsd.org (Postfix) with ESMTP id 6C36337B4C5 for ; Mon, 20 Nov 2000 11:40:27 -0800 (PST) Received: from unisys (Windozzze [192.168.8.2]) by matt.MUNICH.v-net.org (8.9.3/8.9.3) with SMTP id PAA55671; Mon, 20 Nov 2000 15:40:14 -0400 (AST) (envelope-from matt@researcher.com) From: "Matt Rudderham" To: "Tony Kuta" , Subject: RE: News Relay Date: Mon, 20 Nov 2000 15:40:38 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <95AAC7F7374ED411AFE50000E2298CA846F1@BACKSERVER> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Well, I don't know if this is what you're looking for or if it's proper "technique", but ibelieve if you have a domain you could just point news.yourdomain.com to UUNet's IP Address. You should probably check with them first, but it shouldn't be a problem. Is this what you're looking for? I'd be interested to hear opinions on this technique as well from others on this list. -Matt Heya all I am perplexed on how to setup a news relay since I am only on a T-1 and we all know that isn't enough bandwidth to do that so as Matt Heckman suggested maybe "What if you set up a divert/tunnel for news? Ie, they would connect to your news server, which would then forward the connection to uunet's" "Something like an IPFW divert or natd redirect? So that a connection to you:119 would forward to uunet:119 so you could be sure the connection came from an allowed IP address..." some of that makes sense to me but I am a fairly new BSD person. Any suggestions? Tony Kuta Internet Operations Senior Tech. Pflash Inc. Phone: 1-903-872-4002 Ext. 208 Fax: 1-903-872-8095 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of 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 Nov 20 11:44:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from alice.twopoint.com (unknown [209.64.88.26]) by hub.freebsd.org (Postfix) with ESMTP id 274EC37B479; Mon, 20 Nov 2000 11:44:12 -0800 (PST) Received: from twopoint.com (hamilton@fred.twopoint.com [192.168.1.3]) by alice.twopoint.com (8.8.7/8.8.7) with ESMTP id NAA06193; Mon, 20 Nov 2000 13:44:55 -0600 Message-ID: <3A197FA5.95299923@twopoint.com> Date: Mon, 20 Nov 2000 13:46:45 -0600 From: Hamilton Hoover Organization: Two Point Conversions, INC. X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.16-22 i686) X-Accept-Language: en MIME-Version: 1.0 To: Nick Rogness Cc: "freebsd-net@freebsd.org" , "freebsd-questions@FreeBSD.ORG" Subject: Re: dual homed gateway system running ipfw and nat. need rules help. References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>I am running a dual homed system (2 nics) acting as a >>gateway/firewall for our office T1. The private net uses >>192.x.x.x and the public uses a 'real' address of 209.x.x.x. >>The firewall is up and seems to be working well. I used >>rc.firewall "simple" and have customized it to our needs. All >>outgoing requests appear to to originating from the public >>interface. I want to be able to do two things that I have not >>been able to figure out yet. >>1) We keep out pop server on the private net. I need to be >>able to get the incoming mail passed to the mail server that >>has a 192.x.x.x address. I was thinking something like: > Incoming from the outside or inside? Incoming from the public net. >>${fwcmd} pass tcp from any 25 to 192.x.x.x > The POP server runs on port 110 not 25, that's SMTP. ok. then I change that from 25 to 110? I run qmail on a linux box on my private net. >>Is this solid or am I opening myself up from more problems. I >>don't want to relay from outside as mail is only checked from >>inside the private side. >If you don't want mail from the outside world or users to send >mail to the outside world, then this should work. Is the BSD >machine acting as a mail server? um, no. I want users to be able to read and send mail normally from the private side to the public side and, I want mail from the outside world to pass in to the mail server that is on the private side, mail server is not running on the gateway/firewall. I allow all outgoing traffic ie; from private to public so I don't think 'outgoing' mail needs its own rule? But I have not been able to get mail from the public net to get passed to my mail server on the private net. thanks, Hamilton Hoover To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 11:49:14 2000 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 C882E37B479 for ; Mon, 20 Nov 2000 11:49:10 -0800 (PST) Received: from m384-mp1-cvx1c.gui.ntl.com ([62.252.13.128]) by mta03-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001120194903.JVMD283.mta03-svc.ntlworld.com@m384-mp1-cvx1c.gui.ntl.com>; Mon, 20 Nov 2000 19:49:03 +0000 Date: Mon, 20 Nov 2000 19:49:55 +0000 (GMT) From: George Reid X-Sender: geeorgy@sobek.openirc.co.uk To: hellman Cc: freebsd-questions@freebsd.org Subject: Re: kernel panic..help In-Reply-To: <19631910751.20001120221114@artofit.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 20 Nov 2000, hellman wrote: > Hello freebsd-questions, > > This is on my console: > > -- > ftal trap 12: page fualt whil in kernel mode > fault virtual address = 0x22 > fault code = supervidor write, pge not present > current process 14385 (sh) > trap number = 12 > boot on CPU called > syncing disks..................... > -- > > and system halted!!! > > WHat can it be? > and how i fix it? Please read "How to make the most of a kernel panic", which can be found online at http://www.freebsd.org/FAQ/hackers.html#KERNEL-PANIC-TROUBLESHOOTING. The information you have supplied is insufficient for anybody to help you, and you didn't mention which version of FreeBSD you are using. G "And then it comes to be that the soothing light at the end of your tunnel was just a freight train, comin' your way." George Reid * greid@ukug.uk.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 11:52:19 2000 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 A7D3137B479 for ; Mon, 20 Nov 2000 11:52:16 -0800 (PST) Received: from m505-mp1-cvx1c.gui.ntl.com ([62.252.13.249]) by mta03-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001120195215.JWFO283.mta03-svc.ntlworld.com@m505-mp1-cvx1c.gui.ntl.com>; Mon, 20 Nov 2000 19:52:15 +0000 Date: Mon, 20 Nov 2000 19:53:12 +0000 (GMT) From: George Reid X-Sender: geeorgy@sobek.openirc.co.uk To: orion slevin Cc: freebsd questions Subject: Re: What to use instead of fflush? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 20 Nov 2000, orion slevin wrote: > fflush(stdin) does not work with freebsd and linux. > What can I use instead? Thanks fflush(4) is used to force a write of all the buffered data in a stream. The function you are looking for is probably fpurge(3) which is used to delete any buffered input or output data in a stream. G "And then it comes to be that the soothing light at the end of your tunnel was just a freight train, comin' your way." George Reid * greid@ukug.uk.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 11:53:55 2000 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 0990737B479 for ; Mon, 20 Nov 2000 11:53:53 -0800 (PST) Received: from m505-mp1-cvx1c.gui.ntl.com ([62.252.13.249]) by mta03-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001120195351.JWPG283.mta03-svc.ntlworld.com@m505-mp1-cvx1c.gui.ntl.com>; Mon, 20 Nov 2000 19:53:51 +0000 Date: Mon, 20 Nov 2000 19:54:43 +0000 (GMT) From: George Reid X-Sender: geeorgy@sobek.openirc.co.uk To: Svavar Ingi Hermannsson Cc: freebsd-questions@freebsd.org Subject: Re: mirroring the freebsd webpages In-Reply-To: <20001120123628.B27901@rhi.hi.is> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 20 Nov 2000, Svavar Ingi Hermannsson wrote: > Hi, my name is Svavar and I'm wondering about how > much diskspace does it take to mirror the > freebsd webpages ? Approximately 20 megabytes for the raw DocBook stuff. G "And then it comes to be that the soothing light at the end of your tunnel was just a freight train, comin' your way." George Reid * greid@ukug.uk.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 12: 5:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shell.futuresouth.com (shell.futuresouth.com [198.78.58.28]) by hub.freebsd.org (Postfix) with ESMTP id A7B8137B479 for ; Mon, 20 Nov 2000 12:05:16 -0800 (PST) Received: (from tim@localhost) by shell.futuresouth.com (8.9.3/8.9.3) id OAA23701; Mon, 20 Nov 2000 14:05:10 -0600 (CST) Date: Mon, 20 Nov 2000 14:05:10 -0600 From: Tim Tsai To: "Colin O'Brien" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Bootable RAID Message-ID: <20001120140510.A23645@futuresouth.com> References: <200011201441.JAA24184@www-dc-14.digiserve.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200011201441.JAA24184@www-dc-14.digiserve.com>; from cobrien@activedoc.com on Mon, Nov 20, 2000 at 09:40:21AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've tried an Adaptec 2100S and it boots fine too. Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 12:39: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from box.isc.cc (unknown [209.237.72.3]) by hub.freebsd.org (Postfix) with ESMTP id 26F8837B479 for ; Mon, 20 Nov 2000 12:39:00 -0800 (PST) Received: from box.isc.cc (root@localhost) by box.isc.cc with ESMTP id MAA06593 for ; Mon, 20 Nov 2000 12:29:12 -0800 (PST) Received: from oes.nic.cc ([10.10.10.173]) by box.isc.cc with ESMTP id MAA06589 for ; Mon, 20 Nov 2000 12:29:12 -0800 (PST) Message-Id: <4.3.2.7.2.20001120123324.00a96ed0@ns2.globaldns.com> X-Sender: peter@ns2.globaldns.com X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Mon, 20 Nov 2000 12:36:05 -0800 To: freebsd-questions@FreeBSD.ORG From: peter Subject: 2.x compat in 4.x Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm tasked with building a kernel in 4.1 stable that will accomodate 2.x binaries. Is this possible? What kind of issues can I expect to arise? How do I implement this and where? In the kernel config file? I remember seeing some reference to this somewhere, but I've looked all over and can't find the info anymore. Thanks for any assistance... Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 12:40:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.wir.net (325.wir.net [63.79.29.13]) by hub.freebsd.org (Postfix) with ESMTP id C7D5237B479 for ; Mon, 20 Nov 2000 12:40:23 -0800 (PST) Received: by mail.wir.net from localhost (router,SLMail V3.2); Mon, 20 Nov 2000 13:39:14 -0700 Received: by mail.wir.net from 610l850 (63.79.29.18::mail daemon; unverified,SLMail V3.2); Mon, 20 Nov 2000 13:39:13 -0700 Message-ID: <200011201339580023.03116949@wir.net> X-Mailer: Calypso Version 3.10.03.02 (4) Date: Mon, 20 Nov 2000 13:39:58 -0700 Reply-To: admin@wir.net From: "B. Thompson" To: freebsd-questions@FreeBSD.ORG Subject: Alpha vidcontrol transposes red and blue Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=====_97475279818467=_" X-SLUIDL: C3A5B5FE-BEAA11D4-B0C80060-94576534 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --=====_97475279818467=_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Using a PC164/500 with a 2064W MGA card. When issuing a "vidcontrol= lightwhite blue" the background is red. Visa versa on the blue, a red= background comes up. Happens with 3.4 release and 4.1. Has anyone run= into this on the alpha's? Thanks in advance! Brian Thompson Wyoming Internet Resources 154 South Bent Powell, Wyoming 82435 www.wir.net 307.754.4499 --=====_97475279818467=_ Content-Type: text/html; charset="us-ascii"
Using a PC164/500 with a 2064W MGA card.  When issuing a "vidcontrol lightwhite blue" the background is red.  Visa versa on the blue, a red background comes up.  Happens with 3.4 release and 4.1.  Has anyone run into this on the alpha's?
 
Thanks in advance!

Brian Thompson
 
Wyoming Internet Resources
154 South Bent
Powell, Wyoming  82435
 
307.754.4499
--=====_97475279818467=_-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 12:41: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from box.isc.cc (unknown [209.237.72.3]) by hub.freebsd.org (Postfix) with ESMTP id 5BECD37B4C5 for ; Mon, 20 Nov 2000 12:41:00 -0800 (PST) Received: from box.isc.cc (root@localhost) by box.isc.cc with ESMTP id MAA06627 for ; Mon, 20 Nov 2000 12:31:18 -0800 (PST) Received: from oes.nic.cc ([10.10.10.173]) by box.isc.cc with ESMTP id MAA06623 for ; Mon, 20 Nov 2000 12:31:17 -0800 (PST) Message-Id: <4.3.2.7.2.20001120123805.00a93df0@ns2.globaldns.com> X-Sender: peter@ns2.globaldns.com X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Mon, 20 Nov 2000 12:38:11 -0800 To: freebsd-questions@FreeBSD.ORG From: peter Subject: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG subscribe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 12:50:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bellona.asdf.com (bellona.asdf.com [205.138.138.158]) by hub.freebsd.org (Postfix) with ESMTP id F278837B4C5 for ; Mon, 20 Nov 2000 12:50:28 -0800 (PST) Received: from localhost (xlogan@localhost) by bellona.asdf.com (8.9.3/8.9.3) with ESMTP id PAA93520 for ; Mon, 20 Nov 2000 15:50:21 -0500 (EST) (envelope-from xlogan@novagate.net) X-Authentication-Warning: bellona.asdf.com: xlogan owned process doing -bs Date: Mon, 20 Nov 2000 15:50:21 -0500 (EST) From: x@asdf.com To: freebsd-questions@freebsd.org Subject: ipfw, dynamic rules, and passive ftp Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello I'm trying to set up one of our fbsd machines (3.5-Stable, though I haven't cvsuped in a while) that has a firewall (ipfw) to allow passive FTP in. Active works fine, but if someone is behind a firewall or is using NAT they need to go in as passive, however, the default way I had our ipfw rules set up wouldn't let passive in. I got it to allow it with these rules: # Allow TCP through if setup succeeded $fwcmd add pass tcp from any to any established # Allow FTP $fwcmd add pass tcp from any 1024-65535 to ${ip} 21 setup $fwcmd add pass tcp from any 1024-65535 to ${ip} 20 setup $fwcmd add pass tcp from any 1024-65535 to ${ip} 1024-65535 setup The first and second FTP rules catch regular FTP, and then the established rule catches it from there. The last FTP rule is for passive. The thing is, I don't like it like this since it opens up a lot of high ports all the time. What I would like to do is have ipfw automatically create the third FTP rule dynamically when the first rule is hit, then only keep it open for a a bit and then close it. That way the ports will only be open for a little bit. Then it can go away and the established rule will take over. Is this possible? I've been reading up on it but haven't been able to find (or understand) how to set it up. If this can not be done, is this the best way to have the ipfw rules for FTP? Thanks! Dan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 12:52:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from icp-net.com (toronto.trends.ca [209.47.148.18]) by hub.freebsd.org (Postfix) with ESMTP id 309E137B479 for ; Mon, 20 Nov 2000 12:52:28 -0800 (PST) Received: from oleh (toast-20.trends.ca [216.126.65.20]) by icp-net.com (8.8.7/8.8.8) with SMTP id PAA06005 for ; Mon, 20 Nov 2000 15:52:22 -0500 Message-ID: <017001c05334$1ac692c0$1f00a8c0@oleh> From: "Lava Technical Support" To: Subject: Question about Apple Macintosh Date: Mon, 20 Nov 2000 15:54:31 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_016C_01C0530A.2C794FA0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_016C_01C0530A.2C794FA0 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: quoted-printable Do you expect to have support for Apple G3 or G4 Macintosh machines in = the future? Thank you in advance... Oleh Dolban ------=_NextPart_000_016C_01C0530A.2C794FA0 Content-Type: text/html; charset="windows-1251" Content-Transfer-Encoding: quoted-printable
 
Do you expect to have support for Apple G3 or G4 = Macintosh=20 machines in the future?
 
 
Thank you in advance...
 
 
Oleh Dolban
 
------=_NextPart_000_016C_01C0530A.2C794FA0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 12:55:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pike.osd.bsdi.com (pike.osd.bsdi.com [204.216.28.222]) by hub.freebsd.org (Postfix) with ESMTP id 4891D37B4C5 for ; Mon, 20 Nov 2000 12:55:45 -0800 (PST) Received: from laptop.baldwin.cx (john@jhb-laptop.osd.bsdi.com [204.216.28.241]) by pike.osd.bsdi.com (8.11.0/8.9.3) with ESMTP id eAKKthi84159; Mon, 20 Nov 2000 12:55:43 -0800 (PST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200011201339580023.03116949@wir.net> Date: Mon, 20 Nov 2000 12:56:16 -0800 (PST) From: John Baldwin To: "B. Thompson" Subject: RE: Alpha vidcontrol transposes red and blue Cc: freebsd-questions@FreeBSD.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 20-Nov-00 B. Thompson wrote: > Using a PC164/500 with a 2064W MGA card. When issuing a "vidcontrol > lightwhite blue" the background is red. Visa versa on the blue, a red > background comes up. Happens with 3.4 release and 4.1. Has anyone run into > this on the alpha's? This is due to a bug in SRM. It swaps the red and blue attributes of all the colors in the palette. *sigh* The proper fix is to have the vga driver on the alpha reprogram the palette with default entries (or to just swap all the read and blue attributes), but no one has got around to it. :-P > Thanks in advance! > Brian Thompson > > Wyoming Internet Resources > 154 South Bent > Powell, Wyoming 82435 > > www.wir.net > 307.754.4499 -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.baldwin.cx/~john/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 12:57:10 2000 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 CF44137B479 for ; Mon, 20 Nov 2000 12:57:06 -0800 (PST) Received: (from dan@localhost) by dan.emsphone.com (8.11.1/8.11.1) id eAKKv1U01172; Mon, 20 Nov 2000 14:57:01 -0600 (CST) (envelope-from dan) Date: Mon, 20 Nov 2000 14:57:01 -0600 From: Dan Nelson To: peter Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 2.x compat in 4.x Message-ID: <20001120145701.A28078@dan.emsphone.com> References: <4.3.2.7.2.20001120123324.00a96ed0@ns2.globaldns.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.11i In-Reply-To: <4.3.2.7.2.20001120123324.00a96ed0@ns2.globaldns.com>; from "peter" on Mon Nov 20 12:36:05 GMT 2000 X-OS: FreeBSD 5.0-CURRENT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In the last episode (Nov 20), peter said: > I'm tasked with building a kernel in 4.1 stable that will > accomodate 2.x binaries. Is this possible? What kind of issues can > I expect to arise? How do I implement this and where? In the kernel > config file? > I remember seeing some reference to this somewhere, but I've > looked all over and can't find the info anymore. Basically just pick the 2.* compatibility dist in sysinstall, and you're set. -- 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 Nov 20 12:59:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from berzerk.gpcc.itd.umich.edu (berzerk.gpcc.itd.umich.edu [141.211.2.162]) by hub.freebsd.org (Postfix) with ESMTP id 7005B37B479 for ; Mon, 20 Nov 2000 12:59:43 -0800 (PST) Received: from battlezone.gpcc.itd.umich.edu (smtp@battlezone.gpcc.itd.umich.edu [141.211.2.140]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id PAA10249; Mon, 20 Nov 2000 15:59:39 -0500 (EST) Received: from localhost (timcm@localhost) by battlezone.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id PAA13923; Mon, 20 Nov 2000 15:59:37 -0500 (EST) Date: Mon, 20 Nov 2000 15:59:37 -0500 (EST) From: Tim McMillen X-Sender: timcm@battlezone.gpcc.itd.umich.edu To: Dmitriy Butko Cc: freebsd-questions@freebsd.org Subject: Re: Yamaha 724 configuration. In-Reply-To: <200011201807.eAKI7mJ14280@apm.koenig.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Well, they're just not too easy to find right now. Hopefully some of this will get put into the website in the handbook or FAQ. I don't know anything about your card, you havent told us whether it is pci or isa. But generaly adding sound support requires a kernel recompile. So read up on the section of the handbook referring to Configuring a kernel http://www.freebsd.org/handbook/kernelconfig.html and then see: www.freebsddiary.org/sound.html http://freebsd.peon.net/freebsd/ext/ext-tutor9.html Tim On Mon, 20 Nov 2000, Dmitriy Butko wrote: > Hello! > Please help me to configure this audio card: I was looking for any documentation about it, but there wasn't any docs on this subject. > > Thank You! > > Best Regards, Dmitriy. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 13: 2:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns2.globaldns.com (ns2.globaldns.com [206.253.214.12]) by hub.freebsd.org (Postfix) with ESMTP id 75DB037B479 for ; Mon, 20 Nov 2000 13:02:25 -0800 (PST) Received: from 39_NOC.nic.cc ([209.237.72.254]) by ns2.globaldns.com (8.8.7/8.8.7) with ESMTP id NAA25521; Mon, 20 Nov 2000 13:01:52 -0800 (PST) (envelope-from peter@nic.cc) Message-Id: <4.3.2.7.0.20001120130138.00a88e40@ns2.globaldns.com> X-Sender: peter@ns2.globaldns.com X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Mon, 20 Nov 2000 13:02:28 -0800 To: Dan Nelson From: peter Subject: Re: 2.x compat in 4.x Cc: freebsd-questions@freebsd.org In-Reply-To: <20001120145701.A28078@dan.emsphone.com> References: <4.3.2.7.2.20001120123324.00a96ed0@ns2.globaldns.com> <4.3.2.7.2.20001120123324.00a96ed0@ns2.globaldns.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I knew I saw that somewhere ;) right in front of my face, jeez! At 02:57 PM 11/20/00 -0600, you wrote: >In the last episode (Nov 20), peter said: > > I'm tasked with building a kernel in 4.1 stable that will > > accomodate 2.x binaries. Is this possible? What kind of issues can > > I expect to arise? How do I implement this and where? In the kernel > > config file? > > I remember seeing some reference to this somewhere, but I've > > looked all over and can't find the info anymore. > >Basically just pick the 2.* compatibility dist in sysinstall, and >you're set. > >-- > 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 Nov 20 13: 7:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lf.twelvehorses.com (unknown [193.120.151.245]) by hub.freebsd.org (Postfix) with ESMTP id 4378337B4CF for ; Mon, 20 Nov 2000 13:07:36 -0800 (PST) Received: from blackwidow.twelvehorses.com (host-0-200.twelvehorses.int [192.168.0.200] (may be forged)) by lf.twelvehorses.com (8.11.0/8.11.0) with ESMTP id eAKL54e05587; Mon, 20 Nov 2000 21:05:04 GMT (envelope-from daniel.podolsky@twelvehorses.com) Received: by BlackWidow.twelvehorses.int with Internet Mail Service (5.5.2650.21) id ; Mon, 20 Nov 2000 21:02:10 -0000 Message-ID: <856E94D34FF3D311B5FE00508B6B8BD22A34F9@BlackWidow.twelvehorses.int> From: Daniel Podolsky To: "'Hamilton Hoover'" , Nick Rogness Cc: freebsd-questions@FreeBSD.ORG Subject: RE: dual homed gateway system running ipfw and nat. need rules he lp. Date: Mon, 20 Nov 2000 21:02:09 -0000 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 X-Loop: FreeBSD.ORG Hi, >>>${fwcmd} pass tcp from any 25 to 192.x.x.x Will not work because nobody in internet know how to reach your private addresses. As far as I can understand you have a mail server inside and you would like incoming mail to be delivered to this server. Is it quite? Also you would like to use your qmail inside as a outgoing server for your mail clients. Is it quite? The simple and finest solution is to configure your gateway as a mail relay. Gateway should receive you mail and forward it to your inside server. Also gateway should receive mails from inside and relay it to Internet. Use "mailertable" feature for sendmail or "smtproutes" for qmail. Do not forget to allow corresponding traffic in a IPFW. something like allow tcp from any to 25 allow tcp from to any 25 Please do nor hesitate to ask again if something unclear. Also you can comfigure your gateway for divetr incoming packets to port 25 to you inside mail server but it is more sophisticated... With best reagrds, Daniel Podolsky To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 13:14:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by hub.freebsd.org (Postfix) with ESMTP id BA39637B479 for ; Mon, 20 Nov 2000 13:14:18 -0800 (PST) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.9.3/8.9.3) with ESMTP id LAA09235; Mon, 20 Nov 2000 11:14:09 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Mon, 20 Nov 2000 11:14:09 -1000 (HST) From: Vincent Poy To: John Krueger Cc: Tim McMillen , Questions FreeBSD Subject: Re: FreeBSD GW vs Router In-Reply-To: <3A10701C.18377C45@atipa.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 13 Nov 2000, John Krueger wrote: One of the limitations of the Linksys/Netgear or other Ethernet to Ethernet router boxes is that they have a limited amount of ports you can redefine compare to FreeBSD/Linux boxes. Linux has a feature similar to sygate where it does triggered port mapping so it listens for specific outgoing ports and automatically determines which machine on the internal LAN sent the request for incoming packets. Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > The Linksys will give access to machines inside from machines on the > outside, if you set up port forwarding. IIRC, you have to disable the > DHCP server on the Linksys box. You can get to the port forwarding, > filtering, static and dynamic routing, etc, from the Advanced tab of the > configuration page. The little blue box is actually quite flexible, but > I agree that a freebsd box could be _more_ flexible. > > --john > > > > > Tim McMillen wrote: > > > > Yes we have a linksys cable/dsl router here too and it works well. But > > you wouldn't have near the flexibility that a FreeBSD solution could give > > you. As far as I know there is no way with the linksys router to have > > outside access to specific machines in the LAN. It gives acces TO the > > internet from machines behind it, but it doesn't allow access to your > > specific machine FROM the internet. I would like to be corrected on that > > because I would like to be able to ssh into my freebsd box (which is > > one of the three machines in the LAN behind the Linksys) when I'm away > > from home. Thanks, > > > > Tim > > > > On Mon, 13 Nov 2000, Paul T. Root wrote: > > > > > > > > On Fri, 10 Nov 2000, Roop Nanuwa said: > > > > > > > Hi.. me again =) > > > > > > > Our company wants to switch from a FreeBSD gateway on a T1 > > > > (supplying internal IPs & internet access to internal boxes) to a LinkSys > > > > Cable/DSL type router. Has anyone ever used these routers? Are they > > > > better/worse/same as having a FreeBSD GW? > > > > > > > Any input would be appreciated.. thanks > > > > > > > RSN > > > > > > I just got a Linksys at home. It's great. Before I had an old > > > Compaq 486 running 2.2.8-Stable being a gw/nat/fw dialing up to > > > my old ISP. And that worked well. > > > > > > Then I got a Cable Modem. I tried adding a ethernet card (a second > > > 3Com) into the Compaq and the Compaq barfed. I decided since I > > > wanted to do some VPN stuff anyway, that I'd reinstall upto 4.1 > > > but the Compaq wouldn't take it. I gave up trying, since after > > > all it is a Compaq. > > > > > > So, I bought the 4 port Linksys. Hard to beat $150. It just works. > > > No moving parts to break. It's a 10M downlink port and a 4 port > > > 10/100 Switch. Pretty cool. It's got a simple web interface for > > > managing dhcp, nat, static/dynamic routing, and Port translation. > > > > > > So, I don't know how you get your T1 into an ethernet (that sounds > > > like a router too), but the Linksys is a nice, simple and solution to > > > the problem. > > > > > > Paul. > > > > 8> > > > > -- > > > Religion can make a person well rounded or an idiot. > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 13:26:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from femail6.sdc1.sfba.home.com (femail6.sdc1.sfba.home.com [24.0.95.86]) by hub.freebsd.org (Postfix) with ESMTP id 7FD5537B4C5 for ; Mon, 20 Nov 2000 13:26:28 -0800 (PST) Received: from c996775-a.vncvr1.wa.home.com ([24.16.193.228]) by femail6.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001120212618.JRVW2410.femail6.sdc1.sfba.home.com@c996775-a.vncvr1.wa.home.com> for ; Mon, 20 Nov 2000 13:26:18 -0800 Date: Mon, 20 Nov 2000 21:26:17 +0000 From: Y u r i X-Mailer: The Bat! (v1.47 Halloween Edition) UNREG / CD5BF9353B3B7091 Reply-To: Y u r i X-Priority: 3 (Normal) Message-ID: <508572246.20001120212617@home.com> To: freebsd-questions@freebsd.org Subject: 4.2 ISO permissions Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello All, could some kind sould change permissions on the new .iso in ftp.freebsd.org ? hard to download, :-) thanx much -- Best regards, Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 13:38:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sigbus.com (sigbus.com [207.211.10.110]) by hub.freebsd.org (Postfix) with ESMTP id 3958537B479 for ; Mon, 20 Nov 2000 13:38:46 -0800 (PST) Received: (from henrich@localhost) by sigbus.com (8.9.3/8.9.3) id NAA35271 for freebsd-questions@freebsd.org; Mon, 20 Nov 2000 13:38:46 -0800 (PST) (envelope-from henrich) Date: Mon, 20 Nov 2000 13:38:45 -0800 From: Charles Henrich To: freebsd-questions@freebsd.org Subject: DES Passwords on 4.1.1? Message-ID: <20001120133845.C35098@sigbus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i X-Operating-System: FreeBSD 3.3-RELEASE X-PGP-Fingerprint: 1024/F7 FD C7 3A F5 6A 23 BF 76 C4 B8 C9 6E 41 A4 4F Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG What new magic is there on 4.1.1 to use DES passwords? I see the package is no longer an install option, and by default it creates all passwords MD5... Anyone? Thanks! -Crh Charles Henrich Manex Visual Effects henrich@sigbus.com http://www.sigbus.com/~henrich To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 13:40:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dialup.ptt.ru (dialup.ptt.ru [195.34.0.100]) by hub.freebsd.org (Postfix) with SMTP id 3FDD937B6B5 for ; Mon, 20 Nov 2000 13:40:23 -0800 (PST) Received: (qmail 28697 invoked from network); 20 Nov 2000 21:44:32 -0000 Received: from unknown (HELO 195.34.10.165) (@195.34.10.165) by dialup.ptt.ru with SMTP; 20 Nov 2000 21:44:32 -0000 Date: Tue, 21 Nov 2000 00:40:21 +0300 From: hellman X-Mailer: The Bat! (v1.47 Halloween Edition) Personal Reply-To: hellman X-Priority: 3 (Normal) Message-ID: <8640859232.20001121004021@artofit.com> To: freebsd-questions@freebsd.org Subject: SMP in top Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello freebsd-questions, Is there a tool which show summary, CPU0, CPU1 status.. Something like 'top' but with SMP support ? Unix-administrator mailto: hellman@freebsd.sh < /etc/master.passwd || You don't need a good teacher, you need a good HEAD || -----BEGIN PGP PUBLIC KEY BLOCK----- mQGiBDk2mmwRBADZ35CdgG9sFpIAWW/0z4D+uJc9I6k3CVa6P5XNwk3SQ1UyVkxV sZiraUNpuUoXRDxxLCo5k9/ZsY0YJ7Cv/Yd/zkxz2rbacHZGX7Mq907Rcls7egQx sHTyCCKlOAFlBFzg6wyOlkg9jGf88nhojfqkljN65m5u7o6SG5hi5qR8JQCg/5Qz c+gSu9Mr9Rg9X54V0/ho8BkD/R7t6g+q5DNhTyxl0QyUJXL2OJAYhaujFPJpjgNC VkALk8fK2O0Li5vD7nY/yAitEIlous5L75YKPQxxRvDd8rBBecCigkgEcQjpiHB7 PEjNRCWfM1Jsv05jWjTeAwoYtsJTulZv1zxvt5Z+D3qPMAFKbVth0jy+KbhrNzvQ ULAAA/9N/rWTi+5C3t3dv0PxxxPpixy8wAfQLweog9DLkrBVODTAzi7z/+cEP4je kmEqr4lmL6eWqW5sc2Y67loHp/K4VsoX2kKgVK1UkOAX0Nm0STwWO8hrSIue1Dbe MnYV+hQkyxc/7Ll1f7+ei/FZCdz9cjQRcLIG2VU16My7deRWDrQeSGVsbF9tYW4g PGhlbGxtYW5AYXN0cmF0ZWwucnU+iQBOBBARAgAOBQI5NppsBAsDAgECGQEACgkQ V1wXLAwYCJ3oQwCdHpA5THKyWifi0XODfOYkaoqMZq8AoMo+nPGRndrvgR+k1ar2 UYJDZ6pPuQINBDk2mm0QCAD2Qle3CH8IF3KiutapQvMF6PlTETlPtvFuuUs4INoB p1ajFOmPQFXz0AfGy0OplK33TGSGSfgMg71l6RfUodNQ+PVZX9x2Uk89PY3bzpnh V5JZzf24rnRPxfx2vIPFRzBhznzJZv8V+bv9kV7HAarTW56NoKVyOtQa8L9GAFgr 5fSI/VhOSdvNILSd5JEHNmszbDgNRR0PfIizHHxbLY7288kjwEPwpVsYjY67VYy4 XTjTNP18F1dDox0YbN4zISy1Kv884bEpQBgRjXyEpwpy1obEAxnIByl6ypUM2Zaf q9AKUJsCRtMIPWakXUGfnHy9iUsiGSa6q6Jew1XpMgs7AAICCACZsqA5WqknThTy iW1yQyzsMOvPp72HW4Mup+qfuGUcCQQ+WqDGLMcj42Me1Zk3atVEcjWxMCgbRWPc DMeoXt/B+/lsaZL207a58qKTP7TChGaDb5yzF2M/3vGI29PtTiyRqwljVdLtFx11 SJkyyIneSGHSbeM9m57Yt6AFxm+nhYLcto8bhAAPPNJmrj45Iyj7DA6X4GEp6BxC Vs1d7tdl8Dfg3VxtcjbN7QfE1wuxl6C5zzMpl0Z6VNAU5Zg8oQy1w1zFzaq/WrQp dweLAcgRg/Ej3DviDfz/2YamvXElcee+8vT7r8cCVwZLSAJ+EkrM3JZ6fNvGJH6I 3sjKoYagiQBGBBgRAgAGBQI5NpptAAoJEFdcFywMGAidwScAnj6XEfh7MkLCN8CM 7k7mm8UHd5WeAJ4+XVxbn35j6iZcEct4wQTaylNftw== =TaEU -----END PGP PUBLIC KEY BLOCK----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 13:41:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from disavowed.broken.net (disavowed.broken.net [199.233.135.10]) by hub.freebsd.org (Postfix) with ESMTP id DCDE237B479 for ; Mon, 20 Nov 2000 13:41:55 -0800 (PST) Received: (from ian@localhost) by disavowed.broken.net (8.9.3/8.9.3) id NAA00413; Mon, 20 Nov 2000 13:36:41 -0800 (PST) Date: Mon, 20 Nov 2000 13:36:41 -0800 (PST) From: Ian Struble To: Y u r i Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 4.2 ISO permissions In-Reply-To: <508572246.20001120212617@home.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I don't think that the 4.2-RELEASE has not yet been 'released'. Take a look at the CHECKSUM.MD5 file in the iso directory, there isn't anything for 4.2 yet. Give it a little while for the official release announcement and I'm sure the perms will be different then. Also the filesize is only 630MB so it might not all be there yet. Ian On Mon, 20 Nov 2000, Y u r i wrote: > Hello All, > > could some kind sould change permissions on the new .iso in > ftp.freebsd.org ? > > hard to download, :-) > thanx much > > -- > Best regards, > Y > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 20 13:44:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from warp.adsgallery.com (warp.warp10.com [209.47.238.194]) by hub.freebsd.org (Postfix) with SMTP id 412A337B479 for ; Mon, 20 Nov 2000 13:44:13 -0800 (PST) Message-ID: <3A199B2B.4EC63F14@brandera.com> Date: Mon, 20 Nov 2000 16:44:13 -0500 From: matt MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Unsubscribe Content-Type: text/plain; charset=us-ascii; x-mac-type="54455854"; x-mac-creator="4D4F5353" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there, I think I was in touch wth you before, but I still haven't been able to unsubscribe to FreeBSD Ports Security Advisory no matter what I try. My email is matt@brandera.com, but it may also be listed as matt@warp10.com. It would be very much appreciated if you could unsubcribe me ASAP. Thank-you Matt Wilson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 13:44:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www3.pacific-pages.com (www3.pacific-pages.com [192.41.48.219]) by hub.freebsd.org (Postfix) with ESMTP id 7F29737B687 for ; Mon, 20 Nov 2000 13:44:30 -0800 (PST) Received: from d.tracker ([216.191.75.22]) by www3.pacific-pages.com (8.8.5) id OAA11934; Mon, 20 Nov 2000 14:44:02 -0700 (MST) Received: (from david@localhost) by d.tracker (8.9.3/8.9.3) id QAA12654 for questions@freebsd.org; Mon, 20 Nov 2000 16:43:36 -0500 (EST) (envelope-from david) Date: Mon, 20 Nov 2000 16:42:35 -0500 From: David Banning To: questions@freebsd.org Subject: hylafax - no permission to use faxrm Message-ID: <20001120164235.A12642@www3.pacific-pages.com> Reply-To: David Banning 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 X-Loop: FreeBSD.ORG I am executing hylafax from within netscape. It executes the sendfax commands as owned by "nobody". because this is so, I can't use faxrm because I am not nobody. I tried logging in as nobody but it won't allow me, as nobody is not a user but a entry like wheel or sys I tried becoming the fax administrator but it asks me for a password - I don't recall setting a password when I installed hylafax. The only way I have been able to delete a fax is by becoming root, going into the sendq directory and deleting the files Anybody know how to help me here? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 14: 2:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gizmo.internode.com.au (gizmo.internode.com.au [192.83.231.115]) by hub.freebsd.org (Postfix) with ESMTP id D871237B4D7; Mon, 20 Nov 2000 14:02:02 -0800 (PST) Received: (from newton@localhost) by gizmo.internode.com.au (8.11.0/8.9.3) id eAKM0fq65365; Tue, 21 Nov 2000 08:30:41 +1030 (CST) (envelope-from newton) Date: Tue, 21 Nov 2000 08:30:41 +1030 From: Mark Newton To: "Walter C. Pelissero" Cc: questions@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: SVR4 missing syscall Message-ID: <20001121083041.A65344@internode.com.au> References: <14873.23011.159826.718978@hyde.lpds.sublink.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3i In-Reply-To: <14873.23011.159826.718978@hyde.lpds.sublink.org> X-PGP-Key: http://www.on.net/~newton/pgpkey.txt Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Nov 20, 2000 at 05:05:39PM +0000, Walter C. Pelissero wrote: > I'm trying to run a SCO SVR4 executable on FreeBSD but I get a SIGSYS > (invalid system call) at the very beginning. Here is the kdump: > Which call is it about? I see an "old.lstat" but I couldn't find any > reference in the kernel source tree. Is there any doc I could read to > see if I can hack this syscall in the emulator? It's syscall 40, which is from XENIX. Yay, Microsoft UNIX :-) Do you know what the system call is supposed to actually do? With that info I can update the emulation to include it. - mark -- Mark Newton Email: newton@internode.com.au (W) Network Engineer Email: newton@atdot.dotat.org (H) Internode Systems Pty Ltd Desk: +61-8-82232999 "Network Man" - Anagram of "Mark Newton" Mobile: +61-416-202-223 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 14: 7:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oberon.dnai.com (oberon.dnai.com [207.181.194.97]) by hub.freebsd.org (Postfix) with ESMTP id 7CE9237B4FE for ; Mon, 20 Nov 2000 14:07:48 -0800 (PST) Received: from neptune.dnai.com (neptune.dnai.com [207.181.194.93]) by oberon.dnai.com (8.9.3/8.9.3) with ESMTP id OAA33991; Mon, 20 Nov 2000 14:07:48 -0800 (PST) Received: from [209.122.227.146] (216-164-222-69.s323.tnt4.nyw.ny.dialup.rcn.com [216.164.222.69]) by neptune.dnai.com (8.9.3/8.9.3) with ESMTP id OAA39713; Mon, 20 Nov 2000 14:07:46 -0800 (PST) Mime-Version: 1.0 X-Sender: stevenl@pop.dnai.com Message-Id: In-Reply-To: <017001c05334$1ac692c0$1f00a8c0@oleh> References: <017001c05334$1ac692c0$1f00a8c0@oleh> Date: Mon, 20 Nov 2000 17:09:37 -0700 To: "Lava Technical Support" , From: Steve Leibel Subject: Re: Question about Apple Macintosh Content-Type: multipart/alternative; boundary="============_-1237357115==_ma============" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --============_-1237357115==_ma============ Content-Type: text/plain; charset="us-ascii" ; format="flowed" At 3:54 PM -0500 11/20/00, Lava Technical Support wrote: > >Do you expect to have support for Apple G3 or G4 Macintosh machines >in the future? > The next major release of the Mac operating system, MacOS X, is based on FreeBSD. Check out this survey article: http://www.salon.com/tech/review/2000/11/17/hubbard_osx/index.html Steve --============_-1237357115==_ma============ Content-Type: text/enriched; charset="us-ascii" At 3:54 PM -0500 11/20/00, Lava Technical Support wrote: Do you expect to have support for Apple G3 or G4 Macintosh machines in the future? The next major release of the Mac operating system, MacOS X, is based on FreeBSD. Check out this survey article: http://www.salon.com/tech/review/2000/11/17/hubbard_osx/index.html Steve --============_-1237357115==_ma============-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 14:20:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from femail7.sdc1.sfba.home.com (femail7.sdc1.sfba.home.com [24.0.95.87]) by hub.freebsd.org (Postfix) with ESMTP id 9262F37B4C5 for ; Mon, 20 Nov 2000 14:20:10 -0800 (PST) Received: from c996775-a.vncvr1.wa.home.com ([24.16.193.228]) by femail7.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001120222000.POHV2350.femail7.sdc1.sfba.home.com@c996775-a.vncvr1.wa.home.com> for ; Mon, 20 Nov 2000 14:20:00 -0800 Date: Mon, 20 Nov 2000 22:19:55 +0000 From: Y u r i X-Mailer: The Bat! (v1.47 Halloween Edition) UNREG / CD5BF9353B3B7091 Reply-To: Y u r i X-Priority: 3 (Normal) Message-ID: <12511789912.20001120221955@home.com> To: freebsd-questions@freebsd.org Subject: Re[2]: 4.2 ISO permissions 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 X-Loop: FreeBSD.ORG Hello Ian, Monday, November 20, 2000, 21:36:41, you wrote: IS> I don't think that the 4.2-RELEASE has not yet been 'released'. Take a IS> look at the CHECKSUM.MD5 file in the iso directory, there isn't anything IS> for 4.2 yet. Give it a little while for the official release IS> announcement and I'm sure the perms will be different then. Also the IS> filesize is only 630MB so it might not all be there yet. IS> Ian thanx, but when the fengshui moonshine is done right, daemons are looking upon ya with a smile and one can start download *before* the whole thing is uploaded. that is from command line, of course. I am at this NT machine right now, so i am limited to Opera and ftpVoyager, that's why all this begging and rolling ;-) -- Best regards, Y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 14:38:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id 64E0E37B4CF; Mon, 20 Nov 2000 14:38:20 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAKMXqR29594; Tue, 21 Nov 2000 09:33:56 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Tue, 21 Nov 2000 09:33:52 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="US-ASCII" Cc: Ben Hacker Jr , list DC-FBSD , questions FBSD , Stable FBSD To: scotty@klement.dstorm.net, Kent Stewart References: In-Reply-To: Subject: Re: Help with Sound. FBSDv4.2 MIME-Version: 1.0 Message-Id: <00112109335203.29201@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tuesday 21 November 2000 06:04, scotty@klement.dstorm.net wrote: > On Mon, 20 Nov 2000, Kent Stewart wrote: > > Ben Hacker Jr wrote: > > > > > > Any help will be greatly appreciated! > > > > > > file. It says the device is not available or it > > > cannot find the device. I assume it is talking > > > about the /dev/[sound device] > > > > > What I didn't see was a list of your links that are produced when you > > reboot and run > > > > cd /dev > > ./MAKEDEV snd0. > > > > Kent > > Since his dmesg output shows "pcm1" as being the sound device, shouldn't > it be ./MAKEDEV snd1? > That is what worked for me. Dunno *why* it si 1 rather than 0 though... Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 14:45: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.telestream.com (mail.telestream.com [205.238.4.5]) by hub.freebsd.org (Postfix) with ESMTP id 7288C37B4CF for ; Mon, 20 Nov 2000 14:44:58 -0800 (PST) Received: from localhost (keith@localhost) by mail.telestream.com (8.11.0/8.11.0) with ESMTP id eAKMis328570 for ; Mon, 20 Nov 2000 14:44:58 -0800 Date: Mon, 20 Nov 2000 14:44:53 -0800 (PST) From: To: freebsd-questions@freebsd.org Subject: Unknown SCSI errors. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Put together a system from some spare parts today. All is going fine with one exception. From time to time the system will hange, spew some errors then hang for another minute then give me the system back. Here are the errors from /var/log/messages. Any insight would be great. SNIP---- /kernel: ahc0:A:0: refuses tagged commands. Performing non-tagged I/O Nov 20 14:02:22 keith /kernel: (da0:ahc0:0:0:0): SCB 0x2 - timed out in Message-out phase, SEQADDR == 0x157 Nov 20 14:02:22 keith /kernel: (da0:ahc0:0:0:0): BDR message in message buffer Nov 20 14:02:22 keith /kernel: (da0:ahc0:0:0:0): SCB 0x7 - timed out in Message-out phase, SEQADDR == 0x157 Nov 20 14:02:22 keith /kernel: (da0:ahc0:0:0:0): no longer in timeout, status = 34b Nov 20 14:02:22 keith /kernel: ahc0: Issued Channel A Bus Reset. 15 SCBs aborted ================================= Keith W. At the helm My non work related site www.cydonia.net ================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 15: 4:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hammer.econsci.net (adsl-216-102-65-83.dsl.snfc21.pacbell.net [216.102.65.83]) by hub.freebsd.org (Postfix) with ESMTP id 290BB37B479 for ; Mon, 20 Nov 2000 15:04:38 -0800 (PST) Received: from localhost (tor@localhost) by hammer.econsci.net (8.9.3/8.9.3) with ESMTP id RAA17273 for ; Mon, 20 Nov 2000 17:35:44 -0800 Date: Mon, 20 Nov 2000 17:35:44 -0800 (PST) From: Tor Roberts To: freebsd-questions@FreeBSD.ORG Subject: equal cost multipath routing Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I was wondering if equal cost multipath routing was available in FreeBSD 4.x? I would like to do inverse muxing with 2 SDSL lines. There was some discussion on this a couple of years ago, but I have not seen any more on the subject recently. If anyone has any insight on the subject, please let me know. Thanks, -Tor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 15: 8:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from camelot.bitart.com (BITart-45.BITart.com [206.103.221.45]) by hub.freebsd.org (Postfix) with SMTP id D60CD37B4CF for ; Mon, 20 Nov 2000 15:08:39 -0800 (PST) Received: (qmail 12939 invoked by uid 101); 20 Nov 2000 23:08:38 -0000 Message-ID: <20001120230838.12938.qmail@camelot.bitart.com> Content-Type: text/plain MIME-Version: 1.0 (NeXT Mail 4.2mach v148) In-Reply-To: <3A195B47.B175FBC7@wiliweld.com> X-Nextstep-Mailer: Mail 4.2mach (Enhance 2.2p1) Received: by NeXT.Mailer (1.148) From: Gerd Knops Date: Mon, 20 Nov 2000 17:08:37 -0600 To: Bill Subject: Re: USB and gphoto ? which port ? Cc: FreeBSD Reply-To: gerti-freebsdq@BITart.com References: <3A195B47.B175FBC7@wiliweld.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bill wrote: > Hello Family, > I'm a little lost on the USB stuff for this is my first experience > using it and it applies to a new digital camera and the program > gphoto. With two USB ports I have a 4 port hub plugged into one, and > the camera directly plugged into the other. > > > > ata1: at 0x170 irq 15 on atapci0 > uhci0: port 0xe000-0xe01f irq 10 > at device 31.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 > uhub0: port 1 power on failed, IOERROR > uhub0: port 2 power on failed, IOERROR > uhub1: Kawatsu Semiconductor, Inc. MiniHub 4000P, class 9/0, rev > 1.10/1.00, addr 2 > uhub1: 4 ports with 4 removable, bus powered > umass0: HP USB DIGITAL CAMERA, rev 1.10/1.00, addr 3 > fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on > isa0 > > > > The camera is at the following: > > [umass0: HP USB DIGITAL CAMERA, rev 1.10/1.00, addr 3] > > and I'd like to know how to direct gphoto to that address ? There is > the standard field in gphoto that asks for the "port", there are the > standard COM-1 through COM-4 options then there is a special "other" > field and that's where I'm attempting to direct the connection. > > I've emailed all the links at the gphoto site and received nothing > back. > :( > The camera registers as umass device, hence it will look to the system like a disk, not some serial device. Assuming you do not have any SCSI disks, these commands might get you started (I don't have this camera so I do not know if this will work for you): as user root: mkdir /camera camcontrol rescan 0 mount_msdos /dev/da0s1 /camera If everything worked you should be able to see the 'contents' of the camera in the directory /camera. Gerd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 15:12:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fwgate5e.conexant.com (fwgate5e.conexant.com [198.62.8.15]) by hub.freebsd.org (Postfix) with SMTP id 9F64F37B479 for ; Mon, 20 Nov 2000 15:12:52 -0800 (PST) Received: by fwgate5e.conexant.com; id PAA03402; Mon, 20 Nov 2000 15:11:26 -0800 Received: from btree.sd.conexant.com(157.152.9.170) by fwgate5e.conexant.com via smap (V4.2) id xma003349; Mon, 20 Nov 00 15:11:12 -0800 Received: from odell.boulder.conexant.com (odell.boulder.conexant.com [157.152.20.72]) by btree.sd.conexant.com (8.8.8+Sun/8.6.1) with ESMTP id PAA05871 for ; Mon, 20 Nov 2000 15:11:11 -0800 (PST) Received: from conexant.com (da22051 [157.152.22.51]) by odell.boulder.conexant.com (8.8.8/8.8.8) with ESMTP id QAA23127 for ; Mon, 20 Nov 2000 16:11:10 -0700 (MST) Message-ID: <3A19A3E4.CC4C1442@conexant.com> Date: Mon, 20 Nov 2000 16:21:25 -0600 From: Brian Bauer X-Mailer: Mozilla 4.72 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: disk cloning Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Does anyone know of a tool that will allow me to clone a freeBSD hard disk? Either disk-to-disk or disk-to-image will do the job. Thanks very much! -Brian -- Brian Bauer, Sr.Software Engineer Conexant Systems 5555 Central Ave., Boulder, CO 80301 voice: (303) 543-2037 fax: (303) 543-2099 internet: brian.bauer@conexant.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 15:14:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donkeykong.gpcc.itd.umich.edu (donkeykong.gpcc.itd.umich.edu [141.211.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 2EA3537B4D7 for ; Mon, 20 Nov 2000 15:14:38 -0800 (PST) Received: from qix.gpcc.itd.umich.edu (smtp@qix.gpcc.itd.umich.edu [141.211.2.152]) by donkeykong.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id SAA29810; Mon, 20 Nov 2000 18:14:17 -0500 (EST) Received: from localhost (timcm@localhost) by qix.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id SAA29299; Mon, 20 Nov 2000 18:14:17 -0500 (EST) Date: Mon, 20 Nov 2000 18:14:17 -0500 (EST) From: Tim McMillen X-Sender: timcm@qix.gpcc.itd.umich.edu To: Steve Leibel Cc: Lava Technical Support , freebsd-questions@FreeBSD.ORG Subject: Re: Question about Apple Macintosh In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Well it appears there are actually some people working on porting FreeBSD to the powerpc. There is even a mailing list http://docs.freebsd.org/mail/archive/2000/freebsd-ppc/ but it has VERY few messages in it. So it seems progress is not too far along. It's obviously only something for hackers right now. So someday in the future perhaps. But NetBSD www.netbsd.org has current support for G3,G4 and such. Also OpenBSD www.openBSD.org has a pretty new port for it. Tim On Mon, 20 Nov 2000, Steve Leibel wrote: > At 3:54 PM -0500 11/20/00, Lava Technical Support wrote: > > > >Do you expect to have support for Apple G3 or G4 Macintosh machines > >in the future? > > > > > The next major release of the Mac operating system, MacOS X, is based > on FreeBSD. > > Check out this survey article: > > http://www.salon.com/tech/review/2000/11/17/hubbard_osx/index.html > > Steve > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 15:20: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from alice.twopoint.com (unknown [209.64.88.4]) by hub.freebsd.org (Postfix) with ESMTP id 5A7A937B4C5 for ; Mon, 20 Nov 2000 15:20:01 -0800 (PST) Received: from twopoint.com (hamilton@fred.twopoint.com [192.168.1.3]) by alice.twopoint.com (8.8.7/8.8.7) with ESMTP id RAA00945; Mon, 20 Nov 2000 17:20:10 -0600 Message-ID: <3A19B227.F1CF7F31@twopoint.com> Date: Mon, 20 Nov 2000 17:22:15 -0600 From: Hamilton Hoover Organization: Two Point Conversions, INC. X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.16-22 i686) X-Accept-Language: en MIME-Version: 1.0 To: Daniel Podolsky Cc: freebsd-questions@FreeBSD.ORG Subject: Re: dual homed gateway system running ipfw and nat. need rules help. References: <856E94D34FF3D311B5FE00508B6B8BD22A34F9@BlackWidow.twelvehorses.int> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Daniel Podolsky wrote: > > Hi, > > >>>${fwcmd} pass tcp from any 25 to 192.x.x.x > Will not work because nobody in internet know how to reach your private > addresses. > The public MX record point mail to the firewall. I want the firewall to take mail and pass to internal (private) server. > As far as I can understand you have a mail server inside and you would like > incoming mail to be delivered to this server. Is it quite? yes > Also you would like to use your qmail inside as a outgoing server for your > mail clients. Is it quite? yes > > The simple and finest solution is to configure your gateway as a mail relay. > Gateway should receive you mail and forward it to your inside server. Also > gateway should receive mails from inside and relay it to Internet. Use > "mailertable" feature for sendmail or "smtproutes" for qmail. Do not forget > to allow corresponding traffic in a IPFW. > something like > allow tcp from any to 25 > allow tcp from to any 25 > Please do nor hesitate to ask again if something unclear. > > Also you can comfigure your gateway for divetr incoming packets to port 25 > to you inside mail server but it is more sophisticated... I would like to use some combination of ipfw and NAT to get the mail to the right place. I have so far made the ipfw rule. pass tcp from any 25 to thinking that this would do the trick. It has had no effect. I also added a rule to natd.conf redirect_port tcp 25 25 But I am unsure if this is correct and I havn't found any useful information on the correct syntax for natd.conf Hamilton Hoover To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 15:20:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from echunga.lemis.com (freebie.lemis.com [192.109.197.137]) by hub.freebsd.org (Postfix) with ESMTP id 092B037B4CF for ; Mon, 20 Nov 2000 15:20:06 -0800 (PST) Received: (from grog@localhost) by echunga.lemis.com (8.11.1/8.9.3) id eAKMwLJ71139; Tue, 21 Nov 2000 09:28:21 +1030 (CST) (envelope-from grog) Date: Tue, 21 Nov 2000 09:28:21 +1030 From: Greg Lehey To: m.n.safie@iname.com Cc: questions@FreeBSD.ORG Subject: Re: Enquiry regarding copyright Message-ID: <20001121092821.X58333@echunga.lemis.com> References: <0011201402567I.03084@weba4.iname.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <0011201402567I.03084@weba4.iname.net>; from m.n.safie@iname.com on Mon, Nov 20, 2000 at 02:02:56PM -0500 Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [Format recovered--see http://www.lemis.com/email/email-format.html] On Monday, 20 November 2000 at 14:02:56 -0500, m.n.safie@iname.com wrote: > Dear Sir/Madam > > I purchased a FreeBSD CD recently. It isn't the official > distribution by BSDi, but from another local company. > > I wish to know if it is perfectly legal for me to use the CD if it > doesn't contain copyright notice like those you have on your > website. It only mention: "FreeBSD is a registered trademark of > FreeBSD, Inc and Walnut Creek CD-ROM". I couldn't find any copyright > notice for 4.4 BSD Lite or other liability statements. I'm pretty sure you'll find the copyright statements on the CD-ROM. One way or another, you shouldn't have any worry about using the software. The license, whether or not you got it, specifically allows you to use 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 Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 15:25:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-2.sjc.telocity.net (mail-2.sjc.telocity.net [216.227.56.42]) by hub.freebsd.org (Postfix) with ESMTP id DA0CC37B4CF for ; Mon, 20 Nov 2000 15:25:13 -0800 (PST) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-2.sjc.telocity.net (8.9.3/8.9.3) with SMTP id PAA03982; Mon, 20 Nov 2000 15:14:26 -0800 (PST) From: "Otter" To: "hellman" , Subject: RE: SMP in top Date: Mon, 20 Nov 2000 18:22:07 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <8640859232.20001121004021@artofit.com> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG when viewing top, it will tell you what job cpu0 and cpu1 are cranking away on at the time. -Otter }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of hellman }Sent: Monday, November 20, 2000 4:40 PM }To: freebsd-questions@FreeBSD.ORG }Subject: SMP in top } } }Hello freebsd-questions, } } Is there a tool which show summary, CPU0, CPU1 status.. } } Something like 'top' but with SMP support ? } } } }Unix-administrator } }mailto: hellman@freebsd.sh < /etc/master.passwd } }|| You don't need a good teacher, you need a good HEAD || } }-----BEGIN PGP PUBLIC KEY BLOCK----- } }mQGiBDk2mmwRBADZ35CdgG9sFpIAWW/0z4D+uJc9I6k3CVa6P5XNwk3SQ1UyVkxV }sZiraUNpuUoXRDxxLCo5k9/ZsY0YJ7Cv/Yd/zkxz2rbacHZGX7Mq907Rcls7egQx }sHTyCCKlOAFlBFzg6wyOlkg9jGf88nhojfqkljN65m5u7o6SG5hi5qR8JQCg/5Qz }c+gSu9Mr9Rg9X54V0/ho8BkD/R7t6g+q5DNhTyxl0QyUJXL2OJAYhaujFPJpjgNC }VkALk8fK2O0Li5vD7nY/yAitEIlous5L75YKPQxxRvDd8rBBecCigkgEcQjpiHB7 }PEjNRCWfM1Jsv05jWjTeAwoYtsJTulZv1zxvt5Z+D3qPMAFKbVth0jy+KbhrNzvQ }ULAAA/9N/rWTi+5C3t3dv0PxxxPpixy8wAfQLweog9DLkrBVODTAzi7z/+cEP4je }kmEqr4lmL6eWqW5sc2Y67loHp/K4VsoX2kKgVK1UkOAX0Nm0STwWO8hrSIue1Dbe }MnYV+hQkyxc/7Ll1f7+ei/FZCdz9cjQRcLIG2VU16My7deRWDrQeSGVsbF9tYW4g }PGhlbGxtYW5AYXN0cmF0ZWwucnU+iQBOBBARAgAOBQI5NppsBAsDAgECGQEACgkQ }V1wXLAwYCJ3oQwCdHpA5THKyWifi0XODfOYkaoqMZq8AoMo+nPGRndrvgR+k1ar2 }UYJDZ6pPuQINBDk2mm0QCAD2Qle3CH8IF3KiutapQvMF6PlTETlPtvFuuUs4INoB }p1ajFOmPQFXz0AfGy0OplK33TGSGSfgMg71l6RfUodNQ+PVZX9x2Uk89PY3bzpnh }V5JZzf24rnRPxfx2vIPFRzBhznzJZv8V+bv9kV7HAarTW56NoKVyOtQa8L9GAFgr }5fSI/VhOSdvNILSd5JEHNmszbDgNRR0PfIizHHxbLY7288kjwEPwpVsYjY67VYy4 }XTjTNP18F1dDox0YbN4zISy1Kv884bEpQBgRjXyEpwpy1obEAxnIByl6ypUM2Zaf }q9AKUJsCRtMIPWakXUGfnHy9iUsiGSa6q6Jew1XpMgs7AAICCACZsqA5WqknThTy }iW1yQyzsMOvPp72HW4Mup+qfuGUcCQQ+WqDGLMcj42Me1Zk3atVEcjWxMCgbRWPc }DMeoXt/B+/lsaZL207a58qKTP7TChGaDb5yzF2M/3vGI29PtTiyRqwljVdLtFx11 }SJkyyIneSGHSbeM9m57Yt6AFxm+nhYLcto8bhAAPPNJmrj45Iyj7DA6X4GEp6BxC }Vs1d7tdl8Dfg3VxtcjbN7QfE1wuxl6C5zzMpl0Z6VNAU5Zg8oQy1w1zFzaq/WrQp }dweLAcgRg/Ej3DviDfz/2YamvXElcee+8vT7r8cCVwZLSAJ+EkrM3JZ6fNvGJH6I }3sjKoYagiQBGBBgRAgAGBQI5NpptAAoJEFdcFywMGAidwScAnj6XEfh7MkLCN8CM }7k7mm8UHd5WeAJ4+XVxbn35j6iZcEct4wQTaylNftw== }=TaEU }-----END PGP PUBLIC KEY BLOCK----- } } } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of 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 Nov 20 15:29:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donkeykong.gpcc.itd.umich.edu (donkeykong.gpcc.itd.umich.edu [141.211.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 110DD37B4D7 for ; Mon, 20 Nov 2000 15:29:12 -0800 (PST) Received: from qix.gpcc.itd.umich.edu (smtp@qix.gpcc.itd.umich.edu [141.211.2.152]) by donkeykong.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id SAA01686; Mon, 20 Nov 2000 18:29:11 -0500 (EST) Received: from localhost (timcm@localhost) by qix.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id SAA03398; Mon, 20 Nov 2000 18:29:10 -0500 (EST) Date: Mon, 20 Nov 2000 18:29:10 -0500 (EST) From: Tim McMillen X-Sender: timcm@qix.gpcc.itd.umich.edu To: Brian Bauer Cc: freebsd-questions@FreeBSD.ORG Subject: Re: disk cloning In-Reply-To: <3A19A3E4.CC4C1442@conexant.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 20 Nov 2000, Brian Bauer wrote: > Hello, > > Does anyone know of a tool that will allow me to clone a freeBSD hard > disk? Either disk-to-disk or disk-to-image will do the job. man dd dd will do what you want. It will read the actual disk image and write it too. For example as in the way to create boot floppies: http://www.freebsd.org/handbook/install-guide.html#INSTALL-FLOPPIES Good luck, Tim > Thanks very much! > > -Brian > > -- > > Brian Bauer, Sr.Software Engineer > > Conexant Systems > 5555 Central Ave., Boulder, CO 80301 > voice: (303) 543-2037 fax: (303) 543-2099 > internet: brian.bauer@conexant.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 15:43:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from grumpy.dyndns.org (cm-24-246-28-166.toney.mediacom.ispchannel.com [24.246.28.166]) by hub.freebsd.org (Postfix) with ESMTP id 6D1E537B479 for ; Mon, 20 Nov 2000 15:43:20 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by grumpy.dyndns.org (8.11.1/8.11.1) with ESMTP id eAKNgxS91563; Mon, 20 Nov 2000 17:43:08 -0600 (CST) (envelope-from dkelly@grumpy.dyndns.org) Message-Id: <200011202343.eAKNgxS91563@grumpy.dyndns.org> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: Y u r i Cc: freebsd-questions@FreeBSD.ORG From: David Kelly Subject: Re: 4.2 ISO permissions In-reply-to: Message from Y u r i of "Mon, 20 Nov 2000 21:26:17 GMT." <508572246.20001120212617@home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 20 Nov 2000 17:42:59 -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Y u r i writes: > Hello All, > > could some kind sould change permissions on the new .iso in > ftp.freebsd.org ? The file is read-only while its being uploaded. And most likely Because These Guys Are Good And Do The Right Thing, its md5'ed again before being released for download. Its readable now. -- 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 Nov 20 15:48:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.roycemedical.com (unknown [12.35.200.30]) by hub.freebsd.org (Postfix) with ESMTP id 1C97B37B4D7 for ; Mon, 20 Nov 2000 15:48:27 -0800 (PST) Message-ID: <3A19B842.34AFA9C1@roycemedical.com> Date: Mon, 20 Nov 2000 15:48:18 -0800 From: Joshua Baran MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: startx & kde2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hey guys, I have just installed FreeBSD 4.2 and am having trouble getting X to start kde2 when I 'startx'. Maybe I'm blind but I cant find any documentation to help me with this. I have X working great and Kde2 installed okay but I just can't figure out how to get kde2 to start when I 'startx' any help or info would be greatly appreciated. Thank You, Joshua To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 15:52: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gdmckee.local (gdm.demon.co.uk [193.237.88.62]) by hub.freebsd.org (Postfix) with ESMTP id CFD3137B4D7 for ; Mon, 20 Nov 2000 15:52:03 -0800 (PST) Received: from [192.168.0.5] (helo=P300) by gdmckee.local with smtp (Exim 3.16 #1) id 13y0he-0000VD-00 for freebsd-questions@FreeBSD.ORG; Mon, 20 Nov 2000 23:50:26 +0000 Message-ID: <002d01c0534c$dce52ac0$0500a8c0@gdmckee.local> From: "G D McKee" To: "freebsd-questions" Subject: Date: Mon, 20 Nov 2000 23:51:55 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG unsubscribe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 16:11:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donkeykong.gpcc.itd.umich.edu (donkeykong.gpcc.itd.umich.edu [141.211.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 4C03537B4CF for ; Mon, 20 Nov 2000 16:11:34 -0800 (PST) Received: from qix.gpcc.itd.umich.edu (smtp@qix.gpcc.itd.umich.edu [141.211.2.152]) by donkeykong.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id TAA06226; Mon, 20 Nov 2000 19:11:33 -0500 (EST) Received: from localhost (timcm@localhost) by qix.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id TAA15421; Mon, 20 Nov 2000 19:11:32 -0500 (EST) Date: Mon, 20 Nov 2000 19:11:32 -0500 (EST) From: Tim McMillen X-Sender: timcm@qix.gpcc.itd.umich.edu To: Joshua Baran Cc: freebsd-questions@FreeBSD.ORG Subject: Re: startx & kde2 In-Reply-To: <3A19B842.34AFA9C1@roycemedical.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Either make your .xinitrc file in the home dir of the user wishing to run KDE2 with the line startkde or edit your .xinitrc file to have that line. Tim On Mon, 20 Nov 2000, Joshua Baran wrote: > Hey guys, > > I have just installed FreeBSD 4.2 and am having trouble getting X to > start kde2 when I 'startx'. Maybe I'm blind but I cant find any > documentation to help me with this. I have X working great and Kde2 > installed okay but I just can't figure out how to get kde2 to start when > I 'startx' any help or info would be greatly appreciated. > > Thank You, > Joshua To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 16:28:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id C63AF37B4C5 for ; Mon, 20 Nov 2000 16:28:51 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAL0SWR31697; Tue, 21 Nov 2000 11:28:32 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Tue, 21 Nov 2000 11:28:32 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="us-ascii" To: jmelesky@dynamictrade.com, freebsd-questions@FreeBSD.ORG References: <20001120162422.AE73537B4C5@hub.freebsd.org> In-Reply-To: <20001120162422.AE73537B4C5@hub.freebsd.org> Subject: Re: Oracle install revisited MIME-Version: 1.0 Message-Id: <00112111283206.29201@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tuesday 21 November 2000 03:27, jmelesky@dynamictrade.com wrote: > > Just a wild guess, but have you USER_LDT set in your kernel? > > Good suggestion. Checked it out, and the installer got significantly > further. However, when the installer runs, it starts spewing "kernel > trap 9 with interrupts disabled" errors. > USER_LDT is usually only used with WINE. I would suggest theat perhaps the code is not a thouroughly tested as most because, until now WINE has been the only test case. It appears that you have another. I would suggest that you research who the responsible person is and email them directly. This sort of problem should not be hard to diagnose (as long as it can be reproduced). > Looking through the source code, i find that trap 9 is a general > protection fault. Some searches through the freebsd-questions archive > turn up a few posts, most related to installs, not running systems. > But you say above 'checked it out, and the installer got significantly further. However, when the installer runs, it starts spewing "kernel trap 9 with interrupts disabled" errors'. So isn't this still an install problem? > Anyone have any ideas? I'm about to let the sysadmin install RedHat... > Well, I'm not even sure what LDT is, so I can't help further, but I'd get the sysadmin to hold off, if you can. Get the attention of the right person (not me!) and I am sure this will be quickly resolved. Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 17:17: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pokemon.hmosqueda.net (unknown [209.24.105.35]) by hub.freebsd.org (Postfix) with ESMTP id 49DFF37B4C5 for ; Mon, 20 Nov 2000 17:17:01 -0800 (PST) Received: from pokemon.mosqueda.net (localhost.hmosqueda.net [127.0.0.1]) by pokemon.hmosqueda.net (8.8.7/8.8.7) with ESMTP id RAA05014 for ; Mon, 20 Nov 2000 17:19:26 -0800 (PST) (envelope-from root@pokemon.mosqueda.net) Message-ID: <3A19CD9B.F3438975@pokemon.mosqueda.net> Date: Mon, 20 Nov 2000 17:19:24 -0800 From: Henry X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 2.2.5-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Subject: pppoe Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Has anyone ever installed pacbell dsl using freebsd4.0 ? hmosqueda@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 Nov 20 17:25:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.wedgev.com (cm57-70.liwest.at [212.33.57.70]) by hub.freebsd.org (Postfix) with ESMTP id 73B0737B4CF; Mon, 20 Nov 2000 17:25:35 -0800 (PST) Received: from wedge by smtp.wedgev.com with local (Exim 3.16 #1 (FreeBSD)) id 13y235-0008mN-00; Tue, 21 Nov 2000 02:16:39 +0100 Date: Tue, 21 Nov 2000 02:16:39 +0100 From: Bernhard Valenti To: Zero Sum Cc: scotty@klement.dstorm.net, Kent Stewart , Ben Hacker Jr , list DC-FBSD , questions FBSD , Stable FBSD Subject: Re: Help with Sound. FBSDv4.2 Message-ID: <20001121021639.A33295@cipher.home.at> Reply-To: Bernhard Valenti References: <00112109335203.29201@shalimar.net.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <00112109335203.29201@shalimar.net.au>; from count@shalimar.net.au on Tue, Nov 21, 2000 at 09:33:52AM +1100 X-Operating-System: FreeBSD i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Nov 21, 2000 at 09:33:52AM +1100, Zero Sum wrote: > On Tuesday 21 November 2000 06:04, scotty@klement.dstorm.net wrote: > > On Mon, 20 Nov 2000, Kent Stewart wrote: > > Since his dmesg output shows "pcm1" as being the sound device, shouldn't > > it be ./MAKEDEV snd1? > That is what worked for me. > Dunno *why* it si 1 rather than 0 though... probably because he has "device pcm0 at isa?..." in kernel, and the kernel reserves pcm0 for that. his card is pnp and so the kernel autodetects its irq/ port and assigns pcm1 to it. if you change it to "device pcm" the kernel will assign pcm0 to it. dont forget to run "./MAKEDEV snd0" with the new kernel. regards, bernhard valenti To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 18:22:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gw.carpoolbc.com (cr45465-a.abtsfd1.bc.wave.home.com [24.113.176.126]) by hub.freebsd.org (Postfix) with ESMTP id 28C0E37B479 for ; Mon, 20 Nov 2000 18:22:50 -0800 (PST) Received: (from roop@localhost) by gw.carpoolbc.com (8.11.1/8.9.3) id eAL2NSY00265 for freebsd-questions@freebsd.org; Mon, 20 Nov 2000 18:23:28 -0800 (PST) (envelope-from roop) Date: Mon, 20 Nov 2000 18:23:28 -0800 (PST) From: Roop Nanuwa Message-Id: <200011210223.eAL2NSY00265@gw.carpoolbc.com> To: freebsd-questions@freebsd.org Subject: Natd failed to write packet Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I keep getting this wierd message on my console: Nov 20 18:16:20 gw natd[81]: failed to write packet back (Permission Denied) It's repeated quite a few times and I have idea what it means.. My config: FreeBSD 4.2-RELEASE K6-2 550MHz rl0 & rl1 connected to @Home connection & internal hub.. this box is running NATD & Firewall as a Gateway.. Any help would be appreciated.. RSN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 18:47:13 2000 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 C2CF837B4C5 for ; Mon, 20 Nov 2000 18:47:11 -0800 (PST) Received: from chimp.simianscience.com (cage.simianscience.com [64.7.134.1]) by smtp1.sentex.ca (8.11.1/8.11.1) with SMTP id eAL2kKw00413; Mon, 20 Nov 2000 21:46:26 -0500 (EST) (envelope-from mike@sentex.net) From: Mike Tancsa To: bargi@webfront.net.au (Raymond Brighenti) Cc: questions@freebsd.org Subject: Re: Peoples Experience with Soft Updates Date: Mon, 20 Nov 2000 21:46:20 -0500 Message-ID: <9eoj1tc9lgr45ofg3gqbf0nqfqrlbg4omk@4ax.com> 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 X-Loop: FreeBSD.ORG On 20 Nov 2000 01:35:17 -0500, in sentex.lists.freebsd.questions you = wrote: >I'd like to hear any comments or real life experiences anyone has about = it,=20 >any problems if the machine is rebooted or power goes down while the=20 >machine is writing away (I understand there is the delayed Disk full = with=20 >it enabled but that shouldn't be a problem) I have several heavily loaded servers running with softupdates including = a news server that gets about 18-20 Mb/s of incoming data. Works quite = well. ---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 Mon Nov 20 19: 5:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (pop3.pioneernet.net [208.240.196.25]) by hub.freebsd.org (Postfix) with ESMTP id 3D2A737B4C5 for ; Mon, 20 Nov 2000 19:05:25 -0800 (PST) Received: from wiegand.org [208.194.173.26] by pioneernet.net with ESMTP (SMTPD32-6.03) id AAC21B10120; Mon, 20 Nov 2000 19:23:46 -0800 Message-ID: <3A19E749.E9E048E2@wiegand.org> Date: Mon, 20 Nov 2000 19:08:57 -0800 From: Chip X-Mailer: Mozilla 4.08 [en] (X11; I; FreeBSD 4.0-RELEASE i386) MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Subject: 'find' is running all by itself Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have several FBSD 4.0 machines, and on one of them the 'find' command will start running by itself. I found out about this when I heard the hard drive reading itself wildly, so I looked at top, and there was find at the top. This happens at least every evening, sometimes several times. This machine has mysql installed, and nothing much else, just a straight install of 4.0. Any ideas what could be causing this? -- Chip W. www.wiegand.org Alternative Operating Systems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 19:12:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from jericho.intacct.com (ip74-203.intacct.com [64.7.74.203]) by hub.freebsd.org (Postfix) with ESMTP id D2D3437B479 for ; Mon, 20 Nov 2000 19:12:25 -0800 (PST) Received: (from jcampbell@localhost) by jericho.intacct.com (8.9.3/8.9.3) id TAA12213; Mon, 20 Nov 2000 19:11:39 -0800 Date: Mon, 20 Nov 2000 19:11:39 -0800 From: "John P. Campbell" To: Chip Cc: "freebsd-questions@freebsd.org" Subject: Re: 'find' is running all by itself Message-ID: <20001120191139.A12194@intacct.com> Reply-To: jcampbell@intacct.com References: <3A19E749.E9E048E2@wiegand.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5-current-20000901i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG A look at /etc/periodic/daily on my box shows that find runs quite often. It's a good chance that is what you are seeing. : jpc % cd /etc/periodic/daily/ : daily % grep find * 100.clean-disks:find / \( ! -fstype local -o -fstype rdonly \) -a -prune -o \ 110.clean-tmps: find . -type f -atime +3 -ctime +3 ! -name '.X*-lock' \ 110.clean-tmps: find -d . ! -name . -type d -mtime +1 -delete 110.clean-tmps: find . ! -name . -atime +7 -ctime +3 -delete 110.clean-tmps: find -d . ! -name . ! -name vi.recover -type d -mtime +1 -delete 120.clean-preserve: cd /var/preserve && find . ! -name . -mtime +7 -delete 140.clean-rwho: cd /var/rwho && find . ! -name . -mtime +7 -delete 150.clean-hoststat: cd /var/spool/.hoststat && find * -mtime +3 -delete jpc On Mon, Nov 20, 2000 at 07:08:57PM -0800, owner-freebsd-questions @ FreeBSD . ORG Mon Nov 20 19 wrote: > I have several FBSD 4.0 machines, and on one of them > the 'find' command will start running by itself. I found > out about this when I heard the hard drive reading itself > wildly, so I looked at top, and there was find at the top. > This happens at least every evening, sometimes several times. > This machine has mysql installed, and nothing much else, just > a straight install of 4.0. > Any ideas what could be causing this? > > -- > Chip W. > www.wiegand.org > Alternative Operating Systems > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- John P. Campbell Application Engineer Intacct Corporation 408-395-0961 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 19:27:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ipass.one.net (news2.one.net [206.112.192.118]) by hub.freebsd.org (Postfix) with ESMTP id 5B0C737B4CF for ; Mon, 20 Nov 2000 19:27:45 -0800 (PST) Received: from bigfoot.com (cvg-27-180-111.cinci.rr.com [24.27.180.111]) by ipass.one.net (8.8.7/8.8.7) with ESMTP id WAA30414 for ; Mon, 20 Nov 2000 22:31:35 -0500 Message-ID: <3A19EB4C.BC46FDCE@bigfoot.com> Date: Mon, 20 Nov 2000 22:26:04 -0500 From: Sam Carleton X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: setting up dhcpd Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I need to install DHCP Daemon on my FreeBSD machine. Is there a standard dhcpd that folks use? Where is it and where are the doc's for it? Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 19:37:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id 420F037B4C5 for ; Mon, 20 Nov 2000 19:37:15 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAL3b3R36663; Tue, 21 Nov 2000 14:37:03 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Tue, 21 Nov 2000 14:37:03 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: Roop Nanuwa , freebsd-questions@FreeBSD.ORG References: <200011210223.eAL2NSY00265@gw.carpoolbc.com> In-Reply-To: <200011210223.eAL2NSY00265@gw.carpoolbc.com> Subject: Re: Natd failed to write packet MIME-Version: 1.0 Message-Id: <00112114370307.29201@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tuesday 21 November 2000 13:23, Roop Nanuwa wrote: > I keep getting this wierd message on my console: > > Nov 20 18:16:20 gw natd[81]: failed to write packet back (Permission Denied) > > It's repeated quite a few times and I have idea what it means.. > > My config: > FreeBSD 4.2-RELEASE > K6-2 550MHz > rl0 & rl1 connected to @Home connection & internal hub.. > this box is running NATD & Firewall as a Gateway.. > Nov 17 08:47:37 shalimar natd[138]: failed to write packet back (Permission denied) Nov 17 08:47:37 shalimar natd[138]: failed to write packet back (Permission denied) I'm trying to use ethereal to work out what is going on, but I'm not having much luck either. Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 19:52:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from grumpy.dyndns.org (cm-24-246-28-166.toney.mediacom.ispchannel.com [24.246.28.166]) by hub.freebsd.org (Postfix) with ESMTP id 0EA7837B4CF for ; Mon, 20 Nov 2000 19:52:43 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by grumpy.dyndns.org (8.11.1/8.11.1) with ESMTP id eAL3qKS92785; Mon, 20 Nov 2000 21:52:25 -0600 (CST) (envelope-from dkelly@grumpy.dyndns.org) Message-Id: <200011210352.eAL3qKS92785@grumpy.dyndns.org> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: Sam Carleton Cc: FreeBSD Questions From: David Kelly Subject: Re: setting up dhcpd In-reply-to: Message from Sam Carleton of "Mon, 20 Nov 2000 22:26:04 EST." <3A19EB4C.BC46FDCE@bigfoot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 20 Nov 2000 21:52:20 -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sam Carleton writes: > I need to install DHCP Daemon on my FreeBSD machine. Is there a > standard dhcpd that folks use? Where is it and where are the doc's for > it? What do you want it to do? Run as a client or a server? To get an address from an existing server simply type (as root): # dhclient your-interface where "your-interface" might be fxp0 or de0 or ed0 ... To make it work at boot, edit /etc/rc.conf and the ifconfig variable for your interface should be simply, "DHCP" as in ifconfig_fxp0="DHCP" -- 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 Nov 20 20: 5: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from awww.jeah.net (awww.jeah.net [216.111.239.130]) by hub.freebsd.org (Postfix) with ESMTP id B52DD37B4C5 for ; Mon, 20 Nov 2000 20:04:57 -0800 (PST) Received: (from root@localhost) by awww.jeah.net (8.11.1/8.11.0) id eAL46qn12536 for questions@freebsd.org; Mon, 20 Nov 2000 22:06:52 -0600 (CST) (envelope-from chris) Date: Mon, 20 Nov 2000 22:06:52 -0600 (CST) From: Chris Byrnes Message-Id: <200011210406.eAL46qn12536@awww.jeah.net> To: questions@freebsd.org Subject: rmt + remote Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG are the "rmt" and "remote" in /etc needed? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 20:18:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from zeus.davez.org (dlajoie.ncia.net [206.243.130.4]) by hub.freebsd.org (Postfix) with ESMTP id BE7F137B4CF for ; Mon, 20 Nov 2000 20:18:35 -0800 (PST) Received: from localhost (bsd@localhost) by zeus.davez.org (8.11.1/8.11.1) with ESMTP id eAL4C6a11278 for ; Mon, 20 Nov 2000 23:12:08 -0500 (EST) (envelope-from bsd@zeus.davez.org) Date: Mon, 20 Nov 2000 23:12:06 -0500 (EST) From: BSDI To: freebsd-questions@FreeBSD.org Subject: icmp error in dmesg Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I keep seeing this error when looking at my dmesg output, anyone know why or how to correct this? Please respond to my E-Mail address as I am not currently on the list. Thanks in advance for any help you may be able to provide me. Dave Lajoie E-Mail bsd@davez.org Thanks again ~ icmp-response bandwidth limit 317/200 pps icmp-response bandwidth limit 323/200 pps icmp-response bandwidth limit 371/200 pps icmp-response bandwidth limit 410/200 pps icmp-response bandwidth limit 520/200 pps icmp-response bandwidth limit 392/200 pps icmp-response bandwidth limit 236/200 pps icmp-response bandwidth limit 364/200 pps icmp-response bandwidth limit 323/200 pps icmp-response bandwidth limit 371/200 pps icmp-response bandwidth limit 410/200 pps icmp-response bandwidth limit 455/200 pps icmp-response bandwidth limit 517/200 pps icmp-response bandwidth limit 257/200 pps icmp-response bandwidth limit 332/200 pps icmp-response bandwidth limit 323/200 pps icmp-response bandwidth limit 428/200 pps icmp-response bandwidth limit 408/200 pps icmp-response bandwidth limit 350/200 pps icmp-response bandwidth limit 447/200 pps icmp-response bandwidth limit 290/200 pps icmp-response bandwidth limit 317/200 pps To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 20:28:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.vgroup.co.kr (unknown [210.206.108.15]) by hub.freebsd.org (Postfix) with ESMTP id E56A937B4C5 for ; Mon, 20 Nov 2000 20:28:48 -0800 (PST) Received: from SKPONPIIIW2K ([210.206.108.136]) by mail.vgroup.co.kr with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id W83HSPH9; Tue, 21 Nov 2000 13:29:58 +0900 Message-ID: <000a01c05402$1282be80$886cced2@skponpiiiw2k> From: =?ks_c_5601-1987?B?U3Vrd29vIFNlbyAgXCggvK28rr/sIFwp?= To: Subject: Date: Tue, 21 Nov 2000 13:29:04 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C053BF.0446ED70" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C053BF.0446ED70 Content-Type: text/plain; charset="ks_c_5601-1987" Content-Transfer-Encoding: quoted-printable Hi im developing a system that will involve clustering, ipc, and rpc's = from an NT box. Some of the servers will be dealling with tcp while others udp. All = servers will need to be able to handle a high capicty. Can you provide = any insight on which version of free bsd would be the most stable to use = for my case? Thank you ~Seo ------=_NextPart_000_0007_01C053BF.0446ED70 Content-Type: text/html; charset="ks_c_5601-1987" Content-Transfer-Encoding: quoted-printable
Hi im developing a system that = will involve=20 clustering, ipc, and rpc's from an NT box.
Some of the servers will be dealling = with tcp while=20 others udp.  All servers will need to be able to handle a high=20 capicty.  Can you provide any insight on which version of free bsd = would be=20 the most stable to use for my case?
 
Thank you
~Seo
------=_NextPart_000_0007_01C053BF.0446ED70-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 21:12:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (pop3.pioneernet.net [208.240.196.25]) by hub.freebsd.org (Postfix) with ESMTP id 8F7CF37B4D7 for ; Mon, 20 Nov 2000 21:12:17 -0800 (PST) Received: from wiegand.org [208.194.173.26] by pioneernet.net with ESMTP (SMTPD32-6.03) id A87E31000D2; Mon, 20 Nov 2000 21:30:38 -0800 Message-ID: <3A1A0506.AC75E96C@wiegand.org> Date: Mon, 20 Nov 2000 21:15:50 -0800 From: Chip X-Mailer: Mozilla 4.08 [en] (X11; I; FreeBSD 4.0-RELEASE i386) MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Subject: Re: 'find' is running all by itself References: <3A19E749.E9E048E2@wiegand.org> <20001120191139.A12194@intacct.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG John P. Campbell wrote: > > A look at /etc/periodic/daily on my box shows that find runs quite often. > It's a good chance that is what you are seeing. > > : jpc % cd /etc/periodic/daily/ > : daily % grep find * I tried this command as you have it shown above and get daily: command not found Besides that, in my daily directory is a whole bunch of stuff, and find is not amoung any of it. Should it be? It's not any big deal, I'm just curious where it's starting and what is telling it to start. None of the other fbsd machines do this. -- Chip > 100.clean-disks:find / \( ! -fstype local -o -fstype rdonly \) -a -prune -o \ > 110.clean-tmps: find . -type f -atime +3 -ctime +3 ! -name '.X*-lock' \ > 110.clean-tmps: find -d . ! -name . -type d -mtime +1 -delete > 110.clean-tmps: find . ! -name . -atime +7 -ctime +3 -delete > 110.clean-tmps: find -d . ! -name . ! -name vi.recover -type d -mtime +1 > -delete > 120.clean-preserve: cd /var/preserve && find . ! -name . -mtime +7 -delete > 140.clean-rwho: cd /var/rwho && find . ! -name . -mtime +7 -delete > 150.clean-hoststat: cd /var/spool/.hoststat && find * -mtime +3 -delete > > jpc > > On Mon, Nov 20, 2000 at 07:08:57PM -0800, owner-freebsd-questions @ FreeBSD . ORG Mon Nov 20 19 wrote: > > I have several FBSD 4.0 machines, and on one of them > > the 'find' command will start running by itself. I found > > out about this when I heard the hard drive reading itself > > wildly, so I looked at top, and there was find at the top. > > This happens at least every evening, sometimes several times. > > This machine has mysql installed, and nothing much else, just > > a straight install of 4.0. > > Any ideas what could be causing this? > > > > -- > > Chip W. > > www.wiegand.org > > Alternative Operating Systems > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > -- > John P. Campbell > Application Engineer > Intacct Corporation > 408-395-0961 -- Chip W. www.wiegand.org Alternative Operating Systems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 21:12:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from blr.vsnl.net.in (blr.vsnl.net.in [202.54.12.6]) by hub.freebsd.org (Postfix) with ESMTP id 899D437B4E5 for ; Mon, 20 Nov 2000 21:12:39 -0800 (PST) Received: from STINFO001 (PPP-178-74.bng.vsnl.net.in [203.197.178.74]) by blr.vsnl.net.in (Postfix) with SMTP id 2ABB15E66D for ; Tue, 21 Nov 2000 10:36:34 +0530 (IST) Message-ID: <000d01b41e04$01569540$0100a8c0@STINFO001> From: "CS Subramanian" To: Subject: x-windows problem Date: Mon, 1 Jan 1990 00:57:15 +0530 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 X-Loop: FreeBSD.ORG dear sir, after load ing x-windows we are having problem that we are getting error message "shared object "libxpg4.so.2" not found " so please give me the solution to open x-windows. Regards, jsivakumar stinfotech@vsnl.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 21:15:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (pop3.pioneernet.net [208.240.196.25]) by hub.freebsd.org (Postfix) with ESMTP id 3FF8E37B4CF for ; Mon, 20 Nov 2000 21:15:22 -0800 (PST) Received: from wiegand.org [208.194.173.26] by pioneernet.net with ESMTP (SMTPD32-6.03) id A9382CF00A6; Mon, 20 Nov 2000 21:33:44 -0800 Message-ID: <3A1A05BE.BB3C9DE2@wiegand.org> Date: Mon, 20 Nov 2000 21:18:54 -0800 From: Chip X-Mailer: Mozilla 4.08 [en] (X11; I; FreeBSD 4.0-RELEASE i386) MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Subject: Re: 'find' is running all by itself References: <3A19E749.E9E048E2@wiegand.org> <20001120191022.A11404@skritz.go2net.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mark Garcia wrote: > > Yep, sounds like you have 'updatedb' running Yep, that is listed in the weekly directory, find isn't listed in daily, weekly, or monthly. > This maps out your fs to a db file so you can run such, `locate *.so` and find alot of stuff :-D I tried the locate command like you show it, but got command not known, I'll look at the man pages and manuals to find out more about that command. -- Chip > ->MAG > > In a stroke of genius on Mon, Nov 20 at 19:08:57 00 or thereabouts, Chip wrote: > >I have several FBSD 4.0 machines, and on one of them > >the 'find' command will start running by itself. I found > >out about this when I heard the hard drive reading itself > >wildly, so I looked at top, and there was find at the top. > >This happens at least every evening, sometimes several times. > >This machine has mysql installed, and nothing much else, just > >a straight install of 4.0. > >Any ideas what could be causing this? > > > >-- > >Chip W. > >www.wiegand.org > >Alternative Operating Systems > > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org > >with "unsubscribe freebsd-questions" in the body of the message -- Chip W. www.wiegand.org Alternative Operating Systems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 21:26:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from nh-ykja-exch.med.navy.mil (nh-ykja-exch.med.navy.mil [198.22.146.145]) by hub.freebsd.org (Postfix) with ESMTP id 0D69F37B479 for ; Mon, 20 Nov 2000 21:26:53 -0800 (PST) Received: by nh-ykja-exch.med.navy.mil with Internet Mail Service (5.5.2650.21) id ; Tue, 21 Nov 2000 14:31:20 +0900 Message-ID: From: "GoldstonRumpke, Adam W HM3" To: "'freebsd-questions@FreeBSD.ORG'" Subject: CD-RW Date: Tue, 21 Nov 2000 14:31:19 +0900 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 X-Loop: FreeBSD.ORG I am interested in learning more about this O.S.. One question I have is Does FreeBSD support CD-RW and multiple CD Drives. Adam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 21:38:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ipass.one.net (news2.one.net [206.112.192.118]) by hub.freebsd.org (Postfix) with ESMTP id 25ED937B4CF for ; Mon, 20 Nov 2000 21:38:39 -0800 (PST) Received: from bigfoot.com (cvg-27-180-111.cinci.rr.com [24.27.180.111]) by ipass.one.net (8.8.7/8.8.7) with ESMTP id AAA32003 for ; Tue, 21 Nov 2000 00:42:29 -0500 Message-ID: <3A1A09FC.9A4CC304@bigfoot.com> Date: Tue, 21 Nov 2000 00:37:00 -0500 From: Sam Carleton X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: Re: setting up dhcpd References: <200011210352.eAL3qKS92785@grumpy.dyndns.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David Kelly wrote: > Sam Carleton writes: > > I need to install DHCP Daemon on my FreeBSD machine. Is there a > > standard dhcpd that folks use? Where is it and where are the doc's for > > it? > > What do you want it to do? Run as a client or a server? I need dhcpd, the server. Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 22: 9:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from karon.dynas.se (karon.dynas.se [192.71.43.4]) by hub.freebsd.org (Postfix) with SMTP id 2832537B4D7 for ; Mon, 20 Nov 2000 22:09:22 -0800 (PST) Received: (qmail 69226 invoked from network); 21 Nov 2000 06:09:20 -0000 Received: from spirit.sto.dynas.se (HELO spirit.dynas.se) (172.16.1.10) by karon.sto.dynas.se with SMTP; 21 Nov 2000 06:09:20 -0000 Received: (qmail 1217 invoked from network); 21 Nov 2000 06:09:46 -0000 Received: from explorer.rsa.com (10.81.217.59) by spirit.dynas.se with SMTP; 21 Nov 2000 06:09:46 -0000 Received: (from mikko@localhost) by explorer.rsa.com (8.11.1/8.11.1) id eAL69Hl32828; Mon, 20 Nov 2000 22:09:17 -0800 (PST) (envelope-from mikko) Date: Mon, 20 Nov 2000 22:09:17 -0800 (PST) From: Mikko Tyolajarvi Message-Id: <200011210609.eAL69Hl32828@explorer.rsa.com> To: root@pokemon.mosqueda.net Cc: freebsd-questions@freebsd.org Subject: Re: pppoe Newsgroups: local.freebsd-questions References: <3A19CD9B.F3438975@pokemon.mosqueda.net> X-Newsreader: NN version 6.5.6 (NOV) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In local.freebsd-questions you write: >Has anyone ever installed pacbell dsl using freebsd4.0 ? Works with 4.1. Don't know of any reason why it should not work with 4.0 - just follow the handbook. $.02, /Mikko -- Mikko Työläjärvi_______________________________________mikko@rsasecurity.com RSA Security To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 22:14:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from grumpy.dyndns.org (cm-24-246-28-166.toney.mediacom.ispchannel.com [24.246.28.166]) by hub.freebsd.org (Postfix) with ESMTP id 85B3037B4CF for ; Mon, 20 Nov 2000 22:14:37 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by grumpy.dyndns.org (8.11.1/8.11.1) with ESMTP id eAL6EUS93419; Tue, 21 Nov 2000 00:14:30 -0600 (CST) (envelope-from dkelly@grumpy.dyndns.org) Message-Id: <200011210614.eAL6EUS93419@grumpy.dyndns.org> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: "GoldstonRumpke, Adam W HM3" Cc: "'freebsd-questions@FreeBSD.ORG'" From: David Kelly Subject: Re: CD-RW In-reply-to: Message from "GoldstonRumpke, Adam W HM3" of "Tue, 21 Nov 2000 14:31:19 +0900." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 21 Nov 2000 00:14:30 -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "GoldstonRumpke, Adam W HM3" writes: > I am interested in learning more about this O.S.. One question I have is > Does FreeBSD support CD-RW and multiple CD Drives. Yes. I personally have not had more than (1) CDROM and (2) CD-R's and (4) tape drives on one P-133 running FreeBSD. -- 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 Nov 20 22:14:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.tor.primus.ca (mail2.tor.primus.ca [216.254.136.134]) by hub.freebsd.org (Postfix) with ESMTP id 4B5B137B4CF for ; Mon, 20 Nov 2000 22:14:44 -0800 (PST) Received: from dialin-147-103.tor.primus.ca ([216.254.147.103] helo=iprimus.ca) by mail2.tor.primus.ca with esmtp (Exim 2.11 #1) id 13y6hn-0006S4-04 for freebsd-questions@FreeBSD.ORG; Tue, 21 Nov 2000 01:15:00 -0500 Message-ID: <3A1A136F.D6C39476@iprimus.ca> Date: Tue, 21 Nov 2000 01:17:19 -0500 From: Mark Lopes X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: opti 82c924 support? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Card: Opti 82c924 pnp If anyone could tell me if this card is suppored and steps to get this card working in FreeBSD Release 4.1.1. For the life of me I can not get his card working. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 22:15:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 25CA337B4E5 for ; Mon, 20 Nov 2000 22:15:14 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id JAA58614 for ; Tue, 21 Nov 2000 09:41:14 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAL6Ewi24909 for freebsd-questions@FreeBSD.ORG; Tue, 21 Nov 2000 09:14:58 +0300 Date: Tue, 21 Nov 2000 09:14:58 +0300 From: "Igor' Robul'" To: FreeBSD Questions Subject: Re: setting up dhcpd Message-ID: <20001121091458.A24897@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: FreeBSD Questions References: <200011210352.eAL3qKS92785@grumpy.dyndns.org> <3A1A09FC.9A4CC304@bigfoot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <3A1A09FC.9A4CC304@bigfoot.com>; from scarleton@bigfoot.com on Tue, Nov 21, 2000 at 12:37:00AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Nov 21, 2000 at 12:37:00AM -0500, Sam Carleton wrote: > I need dhcpd, the server. cd /usr/ports/net/isc-dhcp3 make install -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 22:27:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id 034BC37B479 for ; Mon, 20 Nov 2000 22:27:09 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAL6PGR37388; Tue, 21 Nov 2000 17:25:18 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Tue, 21 Nov 2000 17:25:16 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="us-ascii" To: Chip , "freebsd-questions@freebsd.org" References: <3A19E749.E9E048E2@wiegand.org> <20001120191139.A12194@intacct.com> <3A1A0506.AC75E96C@wiegand.org> In-Reply-To: <3A1A0506.AC75E96C@wiegand.org> Subject: Re: 'find' is running all by itself MIME-Version: 1.0 Message-Id: <00112117251600.37336@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tuesday 21 November 2000 16:15, Chip wrote: > John P. Campbell wrote: > > > > A look at /etc/periodic/daily on my box shows that find runs quite often. > > It's a good chance that is what you are seeing. > > > > : jpc % cd /etc/periodic/daily/ > > : daily % grep find * > > I tried this command as you have it shown above and get > daily: command not found > Besides that, in my daily directory is a whole bunch of stuff, > and > find is not amoung any of it. Should it be? It's not any big > deal, > I'm just curious where it's starting and what is telling it to > start. None of the other fbsd machines do this. > This is a joke, right? You didn't really fail to recognise the '%' as a c-shell prompt, did you? You didn't type "daily % grep find *" instead of "grep find *", did you? You weren't really expecting the 'find' command to be there were you? If the answer to ANY one of the aboce was yes, then you need to get yourself some basic books on Unix. Asking questions here won't do you much good as you won't understand the answers. The explanation that was given you was most probably accurate. You mightcheck the system time, though. Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 22:52:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from baddog.yi.org (24-216-177-184.hsacorp.net [24.216.177.184]) by hub.freebsd.org (Postfix) with ESMTP id AE9CA37B479 for ; Mon, 20 Nov 2000 22:52:51 -0800 (PST) Received: from localhost.necro.edu (localhost.necro.edu [127.0.0.1]) by baddog.yi.org (Postfix) with ESMTP id 90F631DDE for ; Tue, 21 Nov 2000 01:53:00 -0500 (EST) Date: Tue, 21 Nov 2000 01:53:00 EST From: mike johnson To: questions@freebsd.org Subject: Re: lag? Reply-To: ahze@slaughter.necro.edu X-Mailer: Spruce 0.6.5 for X11 w/smtpio 0.7.9 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Message-Id: <20001121065300.90F631DDE@baddog.yi.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 21 Nov 2000, ahze@hci.net wrote: > Date: Tue, 21 Nov 2000 01:50:05 EST > To: freebsdquestions@freebsd.org > From: ahze@hci.net > Reply-To: ahze@slaughter.necro.edu > Subject: lag? > > > This is kind of weird but.. > first off heres my stuff.. > 2 boxen , both freebsd 4.1.1 > > I have box 1 as the gateway . > I have net access and I can go to webpages , but when I ssh or ftp to box > 1 > from box > 2 it stalls alot. And if i send a file over about 500k it will stall in > the middle of the > send and not finsh the send. > And in ssh it will just freeze sometimes , for no reason at all. > Any idea on how to fix this? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 22:56:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rush.telenordia.se (mail.telenordia.se [194.213.64.42]) by hub.freebsd.org (Postfix) with SMTP id 2605E37B479 for ; Mon, 20 Nov 2000 22:56:27 -0800 (PST) Received: (qmail 236 invoked from network); 21 Nov 2000 07:56:26 +0100 Received: from bb-62-5-7-17.bb.tninet.se (HELO marbsd.tninet.se) (62.5.7.17) by mail.telenordia.se with SMTP; 21 Nov 2000 07:56:26 +0100 From: Mark Rowlands Reply-To: mark.rowlands@minmail.net Date: Tue, 21 Nov 2000 07:49:53 +0000 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="US-ASCII" To: BSDI , freebsd-questions@FreeBSD.ORG References: In-Reply-To: Subject: Re: icmp error in dmesg MIME-Version: 1.0 Message-Id: <00112107495300.05256@marbsd.tninet.se> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tuesday 21 November 2000 04:12, BSDI wrote: > Hi, > > I keep seeing this error when looking at my dmesg output, anyone > know why or how to correct this? Please respond to my E-Mail address as I > am not currently on the list. Thanks in advance for any help you may be > able to provide me. > Dave Lajoie > E-Mail bsd@davez.org > Thanks again ~ > > icmp-response bandwidth limit 317/200 pps > icmp-response bandwidth limit 323/200 pps repeated lots of times snip my guess something is sending you lots of icmp packets, your kernel is gracefully limiting the speed with which it attempts to respond :- from /usr/src/sys/conf/i386/LINT and the GENERIC kernel # ICMP_BANDLIM enables icmp error response bandwidth limiting. You # typically want this option as it will help protect the machine from # D.O.S. packet attacks. # options ICMP_BANDLIM install snort or checkout tcpdump or any sniffer type device and see what is on your wire. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 22:58:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from baddog.yi.org (24-216-177-184.hsacorp.net [24.216.177.184]) by hub.freebsd.org (Postfix) with ESMTP id A9B1237B4C5 for ; Mon, 20 Nov 2000 22:58:11 -0800 (PST) Received: from localhost.necro.edu (localhost.necro.edu [127.0.0.1]) by baddog.yi.org (Postfix) with ESMTP id 723CC1DDE for ; Tue, 21 Nov 2000 01:58:25 -0500 (EST) Date: Tue, 21 Nov 2000 01:58:25 EST From: mike johnson To: questions@freebsd.org Subject: lag? Reply-To: ahze@slaughter.necro.edu X-Mailer: Spruce 0.6.5 for X11 w/smtpio 0.7.9 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Message-Id: <20001121065825.723CC1DDE@baddog.yi.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is kind of weird but.. first off heres my stuff.. 2 boxen , both freebsd 4.1.1 I have box 1 as the gateway . I have net access and I can go to webpages , but when I ssh or ftp to box1 from box 2 it stalls alot. And if i send a file over about 500k it will stall in the middle of the send and not finsh the send. And in ssh it will just freeze sometimes , for no reason at all. Any idea on how to fix this? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 23:10:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rush.telenordia.se (mail.telenordia.se [194.213.64.42]) by hub.freebsd.org (Postfix) with SMTP id 8486B37B4C5 for ; Mon, 20 Nov 2000 23:10:28 -0800 (PST) Received: (qmail 2499 invoked from network); 21 Nov 2000 08:10:27 +0100 Received: from bb-62-5-7-17.bb.tninet.se (HELO marbsd.tninet.se) (62.5.7.17) by mail.telenordia.se with SMTP; 21 Nov 2000 08:10:27 +0100 From: Mark Rowlands Reply-To: mark.rowlands@minmail.net Date: Tue, 21 Nov 2000 08:03:54 +0000 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: "CS Subramanian" , References: <000d01b41e04$01569540$0100a8c0@STINFO001> In-Reply-To: <000d01b41e04$01569540$0100a8c0@STINFO001> Subject: Re: x-windows problem MIME-Version: 1.0 Message-Id: <00112108035401.05256@marbsd.tninet.se> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sunday 31 December 1989 19:27, CS Subramanian wrote: > dear sir, > after load ing x-windows we are having problem that we are > getting error message "shared object "libxpg4.so.2" not found " so please > give me the solution to open x-windows. > > > Regards, > jsivakumar > stinfotech@vsnl.com > > could try cd /usr/ports/x11/XFree86-aoutlibs make all install clean you may need to do an ldconfig To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Nov 20 23:32:57 2000 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 2142137B4CF for ; Mon, 20 Nov 2000 23:32:55 -0800 (PST) Received: from FreeBSD.org (Studded@master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id XAA46210; Mon, 20 Nov 2000 23:32:52 -0800 (PST) (envelope-from DougB@FreeBSD.org) Message-ID: <3A1A2524.9B15A7FA@FreeBSD.org> Date: Mon, 20 Nov 2000 23:32:52 -0800 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: susang@sbei.com Cc: freebsd-questions@FreeBSD.org Subject: Re: SBE Aquires LMC References: <3A12F252.5E2C048A@sbei.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Susan Giuliano wrote: > > Good Day, > I'm hoping you can point me in the right direction in which to change > the listing on your site of Lan Media Corp.. Your help would be > appreiated. If no one has helped you yet, freebsd-doc@freebsd.org is your best bet. Thanks for your interest, Doug -- So what I want to know is, where does the RED brick road go? 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 Nov 20 23:50:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.rdc2.bc.home.com (mail2.rdc2.bc.home.com [24.2.10.85]) by hub.freebsd.org (Postfix) with ESMTP id 246D937B479 for ; Mon, 20 Nov 2000 23:50:24 -0800 (PST) Received: from godlike ([24.69.237.141]) by mail2.rdc2.bc.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001121075023.XLYK870.mail2.rdc2.bc.home.com@godlike> for ; Mon, 20 Nov 2000 23:50:23 -0800 Message-ID: <000c01c05458$f76c50a0$8ded4518@kldt1.bc.wave.home.com> From: "Mike Batchelor" To: Subject: PCM0 Sound Date: Tue, 21 Nov 2000 23:51:04 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0009_01C05415.E9277EE0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0009_01C05415.E9277EE0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi all, I've been having two problems. I have FreeBSD 4.1.1-RELEASE = installed and I put "device pcm" to install my Sb LIVE!.. and.. 1. I always get "pcm0: hwptr went backwards 1376 -> 544" as a bold = error message in the console from time to time. 2. My .WAV sounds play crapilly, with either XMMS or PLAY, whereas = MP3's sound great! If anyone could help me, I would appreciate it a lot.. Thanks! ------=_NextPart_000_0009_01C05415.E9277EE0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi all, I've been having two = problems.  I have=20 FreeBSD 4.1.1-RELEASE installed and I put "device pcm" to install my Sb = LIVE!..=20 and..
 
1.  I always get "pcm0: hwptr = went=20 backwards 1376 -> 544"  as a bold error message in the console = from time=20 to time.
 
2.  My .WAV sounds play crapilly, = with either=20 XMMS or PLAY, whereas MP3's sound great!
 
If anyone could help me, I would = appreciate it a=20 lot.. Thanks!
------=_NextPart_000_0009_01C05415.E9277EE0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 0: 4:28 2000 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 85E2A37B4CF for ; Tue, 21 Nov 2000 00:04:19 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.0/8.11.0) id eAL83kU45253; Tue, 21 Nov 2000 10:03:46 +0200 (EET) (envelope-from ru) Date: Tue, 21 Nov 2000 10:03:46 +0200 From: Ruslan Ermilov To: Roop Nanuwa , Zero Sum Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Natd failed to write packet Message-ID: <20001121100346.C44207@sunbay.com> Mail-Followup-To: Roop Nanuwa , Zero Sum , freebsd-questions@FreeBSD.ORG References: <200011210223.eAL2NSY00265@gw.carpoolbc.com> <00112114370307.29201@shalimar.net.au> <200011210223.eAL2NSY00265@gw.carpoolbc.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200011210223.eAL2NSY00265@gw.carpoolbc.com>; from roop@gw.carpoolbc.com on Mon, Nov 20, 2000 at 06:23:28PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The "Permission Denied" messages from natd(8) mean that your firewall is blocking packets written back by natd(8). Check you ruleset, add the "log" keyword to "deny" rules, and see what happens. On Mon, Nov 20, 2000 at 06:23:28PM -0800, Roop Nanuwa wrote: > I keep getting this wierd message on my console: > > Nov 20 18:16:20 gw natd[81]: failed to write packet back (Permission Denied) > > It's repeated quite a few times and I have idea what it means.. > > My config: > FreeBSD 4.2-RELEASE > K6-2 550MHz > rl0 & rl1 connected to @Home connection & internal hub.. > this box is running NATD & Firewall as a Gateway.. > > Any help would be appreciated.. On Tue, Nov 21, 2000 at 02:37:03PM +1100, Zero Sum wrote: > On Tuesday 21 November 2000 13:23, Roop Nanuwa wrote: > > I keep getting this wierd message on my console: > > > > Nov 20 18:16:20 gw natd[81]: failed to write packet back (Permission > Denied) > > > > It's repeated quite a few times and I have idea what it means.. > > > > My config: > > FreeBSD 4.2-RELEASE > > K6-2 550MHz > > rl0 & rl1 connected to @Home connection & internal hub.. > > this box is running NATD & Firewall as a Gateway.. > > > Nov 17 08:47:37 shalimar natd[138]: failed to write packet back (Permission > denied) > Nov 17 08:47:37 shalimar natd[138]: failed to write packet back (Permission > denied) > > I'm trying to use ethereal to work out what is going on, but I'm not having > much luck either. -- 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 Nov 21 1:36:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donald-duck.ele.tue.nl (Donald-Duck.ele.tue.nl [131.155.192.220]) by hub.freebsd.org (Postfix) with ESMTP id 7BB7D37B479 for ; Tue, 21 Nov 2000 01:36:09 -0800 (PST) Received: from bart by donald-duck.ele.tue.nl with local-esmtp (Exim 3.12 #1 (Debian)) id 13y9qM-0003s3-00; Tue, 21 Nov 2000 10:36:02 +0100 Date: Tue, 21 Nov 2000 10:36:02 +0100 (CET) From: Bart X-Sender: bart@donald-duck.ele.tue.nl To: questions@freebsd.org Subject: ping OK, daemons dead ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! Every 2 weeks or so one of my FreeBSD machines goes dead, it is still responding to ping (< 2 ms) but Apache, SSH, Telnet, FTP, etc are not responding any more. It happens out of the blue while the load is probably as low as usual (load on the machine is never very high (0.08 0.07 0.06)). What could be the reason of that ? (I'm still using a RealTek NIC (and I know that this NIC really sucks and want to replace it with a 100mbit 3com or Intel)). I'm also looking for a way to prevent this kind of situations; is it possible to use a script/program which reboots the machine after 12 hours of no activity of some kind of daemon (or login). With regards, Bart Pustjens To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 2: 1:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from thesadmachine.org (dsl254-008-078-sea1.dsl-isp.net [216.254.8.78]) by hub.freebsd.org (Postfix) with SMTP id E023537B4CF for ; Tue, 21 Nov 2000 02:01:32 -0800 (PST) Received: (qmail 3135 invoked by uid 1001); 21 Nov 2000 10:11:13 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 21 Nov 2000 10:11:13 -0000 Date: Tue, 21 Nov 2000 04:11:13 -0600 (CST) From: brian william wolter To: Bart Cc: Subject: Re: ping OK, daemons dead ? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > of situations; is it possible to use a script/program > which reboots the machine after 12 hours of no > activity of some kind of daemon (or login). you'd probibly be better off writing a script that will just restart the daemons that are dying on you, that way you won't have the downtime that will result from actually rebooting. you can just have the script check to see if the processes are still running and restart them if they are not. then just put it in the crontabs to execute every so often. peace, brian t h e S a d M a c h i n e . o r g To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 2: 5:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donald-duck.ele.tue.nl (Donald-Duck.ele.tue.nl [131.155.192.220]) by hub.freebsd.org (Postfix) with ESMTP id C9F2A37B4CF for ; Tue, 21 Nov 2000 02:05:13 -0800 (PST) Received: from bart by donald-duck.ele.tue.nl with local-esmtp (Exim 3.12 #1 (Debian)) id 13yAIT-0004QU-00; Tue, 21 Nov 2000 11:05:05 +0100 Date: Tue, 21 Nov 2000 11:05:05 +0100 (CET) From: Bart X-Sender: bart@donald-duck.ele.tue.nl To: brian william wolter Cc: questions@freebsd.org Subject: Re: ping OK, daemons dead ? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 21 Nov 2000, brian william wolter wrote: > > of situations; is it possible to use a script/program > > which reboots the machine after 12 hours of no > > activity of some kind of daemon (or login). > > you'd probibly be better off writing a script that will just restart the > daemons that are dying on you, that way you won't have the downtime that > will result from actually rebooting. you can just have the script check > to see if the processes are still running and restart them if they are > not. then just put it in the crontabs to execute every so often. Well, I can not reach the console at this moment (it's a machine located somewhere else) but the weird part is that I *can* connect (using telnet) but no "login:" appears: acid2:/1/home/skin$ telnet mymachine.nl Trying 212.104.204.x... Connected to mymachine.nl. Escape character is '^]'. So the daemon ain't dead... With regards, Bart Pustjens To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 2:16:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from righi.df.unibo.it (unknown [137.204.49.17]) by hub.freebsd.org (Postfix) with ESMTP id C4D1537B4CF for ; Tue, 21 Nov 2000 02:16:35 -0800 (PST) Received: from localhost (bsd@localhost) by righi.df.unibo.it (8.10.1/8.10.1) with ESMTP id eALAHgW12274 for ; Tue, 21 Nov 2000 11:17:42 +0100 (CET) Date: Tue, 21 Nov 2000 11:17:41 +0100 (CET) From: FreeBSD mailing list To: freebsd-questions@FreeBSD.ORG Subject: routed and gated. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Actually I am using IP filter on OpenBSD and the bridge pseudo device between my 2 inerfaces. I wanted to use routed or gated instead of the bridge device. The thing is that I Tryed it on FreeBSD but I Was unsuccesfull. This because the subnet out of the interface 0 is the same as the one out of the interface 1 and I Want to route between them. Do I have to create 2 diferent subnets ? I do not want to create 2 subnets. ACtually I Want to be able to do this subnet x.x.x.x subnet x.x.x.x --------fxp0 fxp1-------------- | | | routed/gated | i it possible ?? thanks Rick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 2:25: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from malmo.trab.se (malmo.trab.se [131.115.48.10]) by hub.freebsd.org (Postfix) with ESMTP id 4969637B479 for ; Tue, 21 Nov 2000 02:25:04 -0800 (PST) Received: from lulea.trab.se (oriander.lulea.trab.se [131.115.47.4]) by malmo.trab.se (8.10.1/TRAB-primary-2) with ESMTP id eALAP1001876 for ; Tue, 21 Nov 2000 11:25:02 +0100 (MET) Received: from trab2567 (DHCP14.nynashamn.trab.se [131.115.45.135]) by lulea.trab.se (8.9.1a/TRAB-secondary-1) with SMTP id LAA05580 for ; Tue, 21 Nov 2000 11:24:55 +0100 (MET) From: "Urban Olsson" To: Subject: Building problem Date: Tue, 21 Nov 2000 11:24:17 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I am trying to build my custom kernel. I have done this before on other machines without problem but now I receive an error when I run the "make depend" or "make buildkernel KERNEL=MYKERNEL" command. This error also occurs when I try to build the old GENERIC kernel which is undisturbed since I installed the operaring system. The error looks like this: /usr/libexec/ld-elf.so.1: /usr/lib/libperl.so.3: Unsupported relocation type 108 in non-PLT relocations I run the FreeBSD 4.1.1 thanks Urban Olsson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 2:26:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bessel.tekniikka.turkuamk.fi (bessel.tekniikka.turkuamk.fi [193.166.133.10]) by hub.freebsd.org (Postfix) with ESMTP id 1185237B479 for ; Tue, 21 Nov 2000 02:26:09 -0800 (PST) Received: from localhost (eyurtese@localhost) by bessel.tekniikka.turkuamk.fi (8.9.2/8.9.2) with ESMTP id MAA15362 for ; Tue, 21 Nov 2000 12:26:06 +0200 Date: Tue, 21 Nov 2000 12:26:06 +0200 (WET) From: Evren Yurtesen To: freebsd-questions@freebsd.org Subject: module_register: module miibus/ukphy already exists! Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How can I get rid of this error message? ad0: 4112MB [8912/15/63] at ata0-master UDMA33 Mounting root from ufs:/dev/ad0s1a module_register: module miibus/ukphy already exists! linker_file_sysinit "miibus.ko" failed to register! 17 module_register: module miibus/xlphy already exists! linker_file_sysinit "miibus.ko" failed to register! 17 module_register: module miibus/nsphy already exists! linker_file_sysinit "miibus.ko" failed to register! 17 module_register: module miibus/mlphy already exists! linker_file_sysinit "miibus.ko" failed to register! 17 module_register: module miibus/tlphy already exists! linker_file_sysinit "miibus.ko" failed to register! 17 module_register: module miibus/rlphy already exists! linker_file_sysinit "miibus.ko" failed to register! 17 module_register: module miibus/amphy already exists! linker_file_sysinit "miibus.ko" failed to register! 17 module_register: module miibus/dcphy already exists! linker_file_sysinit "miibus.ko" failed to register! 17 module_register: module miibus/pnphy already exists! linker_file_sysinit "miibus.ko" failed to register! 17 module_register: module miibus/pnaphy already exists! linker_file_sysinit "miibus.ko" failed to register! 17 module_register: module miibus/brgphy already exists! linker_file_sysinit "miibus.ko" failed to register! 17 module_register: module miibus/xmphy already exists! linker_file_sysinit "miibus.ko" failed to register! 17 rl0: port 0xe400-0xe4ff mem 0xee201000-0xee2010ff irq 10 at device 9.0 on pci0 rl0: Ethernet address: 00:10:b5:45:72:29 miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp0: port 0xe800-0xe83f mem 0xee100000-0xee1fffff,0xee202000-0xee202fff irq 5 at device 10.0 on pci0 fxp0: Ethernet address 00:03:47:0b:47:01 fxp1: port 0xec00-0xec3f mem 0xee000000-0xee0fffff,0xee200000-0xee200fff irq 11 at device 11.0 on pci0 fxp1: Ethernet address 00:03:47:0b:45:5d To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 2:39:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns.ciac.jl.cn (unknown [202.98.16.1]) by hub.freebsd.org (Postfix) with ESMTP id BB27037B479 for ; Tue, 21 Nov 2000 02:39:29 -0800 (PST) Received: from 11 ([159.226.123.49]) by ns.ciac.jl.cn (8.9.1/8.9.1) with SMTP id SAA27665; Tue, 21 Nov 2000 18:31:11 +0800 (CST) Message-ID: <002601c053a7$fff0f840$317be29f@11> From: "S.W.Liu" To: "Joshua Baran" Cc: References: <3A19B842.34AFA9C1@roycemedical.com> Subject: Re: startx & kde2 Date: Tue, 21 Nov 2000 18:44:16 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: base64 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 X-Loop: FreeBSD.ORG DQotLS0tLSBPcmlnaW5hbCBNZXNzYWdlIC0tLS0tIA0KRnJvbTogSm9zaHVhIEJhcmFuIDxqYmFy YW5Acm95Y2VtZWRpY2FsLmNvbT4NClRvOiA8ZnJlZWJzZC1xdWVzdGlvbnNARnJlZUJTRC5PUkc+ DQpTZW50OiBUdWVzZGF5LCBOb3ZlbWJlciAyMSwgMjAwMCA3OjQ4IEFNDQpTdWJqZWN0OiBzdGFy dHggJiBrZGUyDQoNCg0KPiBIZXkgZ3V5cywNCj4gDQo+IEkgaGF2ZSBqdXN0IGluc3RhbGxlZCBG cmVlQlNEIDQuMiBhbmQgYW0gaGF2aW5nIHRyb3VibGUgZ2V0dGluZyBYIHRvDQo+IHN0YXJ0IGtk ZTIgd2hlbiBJICdzdGFydHgnLiAgTWF5YmUgSSdtIGJsaW5kIGJ1dCBJIGNhbnQgZmluZCBhbnkN Cj4gZG9jdW1lbnRhdGlvbiB0byBoZWxwIG1lIHdpdGggdGhpcy4gIEkgaGF2ZSBYIHdvcmtpbmcg Z3JlYXQgYW5kIEtkZTINCj4gaW5zdGFsbGVkIG9rYXkgYnV0IEkganVzdCBjYW4ndCBmaWd1cmUg b3V0IGhvdyB0byBnZXQga2RlMiB0byBzdGFydCB3aGVuDQo+IEkgJ3N0YXJ0eCcgYW55IGhlbHAg b3IgaW5mbyB3b3VsZCBiZSBncmVhdGx5IGFwcHJlY2lhdGVkLg0KPiANCkRvIHlvdSBoYXZlIC54 aW5pdHJjIGluIHlvdXIgaG9tZSBkaXJlY3RvcnkgYW5kIGl0IGNvbnRhaW4gYSBsaW5lOiBzdGFy dGtkZT8NCj4gVGhhbmsgWW91LA0KPiBKb3NodWENCj4gDQo+IA0KPiANCj4gVG8gVW5zdWJzY3Jp YmU6IHNlbmQgbWFpbCB0byBtYWpvcmRvbW9ARnJlZUJTRC5vcmcNCj4gd2l0aCAidW5zdWJzY3Jp YmUgZnJlZWJzZC1xdWVzdGlvbnMiIGluIHRoZSBib2R5IG9mIHRoZSBtZXNzYWdlDQo= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 3: 1: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from aport2000.ru (relay2.aport.ru [193.125.27.8]) by hub.freebsd.org (Postfix) with SMTP id 3096E37B4CF for ; Tue, 21 Nov 2000 03:01:02 -0800 (PST) Received: (qmail 96396 invoked from network); 21 Nov 2000 11:00:36 -0000 Received: from aleks.elcom.ru (HELO localhost) ([193.232.231.98]) (envelope-sender ) by relay2.aport.ru for ; 21 Nov 2000 11:00:36 -0000 Message-ID: <000001c053aa$6eb56020$0100007f@localhost> From: "Alexey" To: Subject: HELP !!! Date: Tue, 21 Nov 2000 13:52:19 +0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C053C2.43B0E080" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C053C2.43B0E080 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Dear Sir. I have encountered some problems installing and running FreeBSD 4.1.1. = Here is my system configuration: ABIT BF6 motherboard, Celeron 400 MHz, = 32 Mb SDRAM, Voodoo Banshee, PCI Winmodem, SB16 and IDE Disks. During = the first inslallation phase (two floppies -> menu -> full screen kernel = config) there were 8 errors in "Network" section: 8 ethernet adapters = were marked with CONF. So I disabled them all and installed FreeBSD. = Then during the boot process it hang on sendmail init. So I had to = dasable sendmail by putting NO in rc.conf's sendmail_enable section. So = the boot process in now clear. But when I tried to install Midnight = Commander port it hang on ifconf checking. What am I to do? ------=_NextPart_000_0005_01C053C2.43B0E080 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable
Dear Sir.
I have encountered some problems = installing=20 and running FreeBSD 4.1.1. Here is my system configuration: ABIT BF6=20 motherboard, Celeron 400 MHz, 32 Mb SDRAM, Voodoo Banshee, PCI = Winmodem,=20 SB16 and IDE Disks. During the = first=20 inslallation phase (two floppies -> menu -> full screen = kernel=20 config) there were 8 errors in "Network" section: 8 ethernet = adapters were=20 marked with CONF. So I disabled them all and installed FreeBSD. Then = during the=20 boot process it hang on sendmail init. So I had to dasable sendmail by = putting=20 NO in rc.conf's = sendmail_enable section. = So the=20 boot process in now clear. But when I tried to install Midnight = Commander port=20 it hang on ifconf = checking. What am I to = do?
------=_NextPart_000_0005_01C053C2.43B0E080-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 3:13:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id DA57937B4CF for ; Tue, 21 Nov 2000 03:13:23 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id OAA59327 for ; Tue, 21 Nov 2000 14:39:28 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eALBD6626833 for freebsd-questions@FreeBSD.ORG; Tue, 21 Nov 2000 14:13:06 +0300 Date: Tue, 21 Nov 2000 14:13:06 +0300 From: "Igor' Robul'" To: freebsd-questions@FreeBSD.ORG Subject: Re: routed and gated. Message-ID: <20001121141306.A26799@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: ; from bsd@righi.df.unibo.it on Tue, Nov 21, 2000 at 11:17:41AM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Nov 21, 2000 at 11:17:41AM +0100, FreeBSD mailing list wrote: > > ACtually I Want to be able to do this > > subnet x.x.x.x subnet x.x.x.x > --------fxp0 fxp1-------------- > | | > | routed/gated | > i it possible ?? I think that you DON'T need routed/gated or other routing daemon for so simple case. Just setup static routes. You need routing daemon in case you have two or more routers between two or more subnetworks. So in your case routed (for example) will be "just yet another daemon you really don't need". -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 3:21:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from isy.liu.se (isy.liu.se [130.236.48.10]) by hub.freebsd.org (Postfix) with ESMTP id 86F1737B4CF for ; Tue, 21 Nov 2000 03:21:16 -0800 (PST) Received: from lagrange.isy.liu.se (lagrange.isy.liu.se [130.236.49.127]) by isy.liu.se (8.10.0/8.10.0) with ESMTP id eALBL9f21403; Tue, 21 Nov 2000 12:21:09 +0100 (MET) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Tue, 21 Nov 2000 12:21:08 +0100 (CET) From: Micke Josefsson To: Bart Subject: Re: ping OK, daemons dead ? Cc: questions@FreeBSD.ORG, brian william wolter Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 21-Nov-00 Bart wrote: > On Tue, 21 Nov 2000, brian william wolter wrote: > >> > of situations; is it possible to use a script/program >> > which reboots the machine after 12 hours of no >> > activity of some kind of daemon (or login). >> >> you'd probibly be better off writing a script that will just restart the >> daemons that are dying on you, that way you won't have the downtime that >> will result from actually rebooting. you can just have the script check >> to see if the processes are still running and restart them if they are >> not. then just put it in the crontabs to execute every so often. > > Well, I can not reach the console at this moment (it's a machine > located somewhere else) but the weird part is that I *can* connect > (using telnet) but no "login:" appears: > > acid2:/1/home/skin$ telnet mymachine.nl > Trying 212.104.204.x... > Connected to mymachine.nl. > Escape character is '^]'. > > So the daemon ain't dead... Do you have some kind of firewall involved? I got the same telnet response when I had misconfigured my wall. Dunno of the daemons would die of it though... /Micke > With regards, > Bart Pustjens > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ---------------------------------- Michael Josefsson, MSEE mj@isy.liu.se This message was sent by XFMail running on FreeBSD 3.5-STABLE ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 3:25:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from warrior-outbound.servers.plus.net (unknown [212.159.14.227]) by hub.freebsd.org (Postfix) with SMTP id BD8B537B4CF for ; Tue, 21 Nov 2000 03:25:46 -0800 (PST) Received: (qmail 28780 invoked from network); 21 Nov 2000 11:25:31 -0000 Received: from unknown (HELO daemon.lpds.sublink.org) (212.159.41.48) by warrior with SMTP; 21 Nov 2000 11:25:31 -0000 Received: from pelissero.org (hyde.lpds.sublink.org [10.0.0.2]) by daemon.lpds.sublink.org (8.9.3/8.9.3) with ESMTP id LAA00946; Tue, 21 Nov 2000 11:17:14 GMT (envelope-from wcp@pelissero.org) Received: (from wcp@localhost) by pelissero.org (8.9.3/8.9.3) id LAA44208; Tue, 21 Nov 2000 11:22:36 GMT (envelope-from wcp) From: "Walter C. Pelissero" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14874.23292.748589.450210@hyde.lpds.sublink.org> Date: Tue, 21 Nov 2000 11:22:36 +0000 (GMT) To: Mark Newton Cc: questions@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: SVR4 missing syscall In-Reply-To: <20001121083041.A65344@internode.com.au> References: <14873.23011.159826.718978@hyde.lpds.sublink.org> <20001121083041.A65344@internode.com.au> X-Mailer: VM 6.72 under 21.1 (patch 9) "Canyonlands" XEmacs Lucid Reply-To: walter@pelissero.org X-Attribution: WP Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mark Newton writes: > On Mon, Nov 20, 2000 at 05:05:39PM +0000, Walter C. Pelissero wrote: > > > I'm trying to run a SCO SVR4 executable on FreeBSD but I get a SIGSYS > > (invalid system call) at the very beginning. Here is the kdump: > > Which call is it about? I see an "old.lstat" but I couldn't find any > > reference in the kernel source tree. Is there any doc I could read to > > see if I can hack this syscall in the emulator? > > It's syscall 40, which is from XENIX. Yay, Microsoft UNIX :-) > > Do you know what the system call is supposed to actually do? No idea, sorry. > With that info I can update the emulation to include it. I wish I could do it for you. If only someone could give me the right hints on how to hack the IBCS2. -- 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 Tue Nov 21 3:26: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from warrior-outbound.servers.plus.net (unknown [212.159.14.227]) by hub.freebsd.org (Postfix) with SMTP id 3C89F37B4F9 for ; Tue, 21 Nov 2000 03:25:48 -0800 (PST) Received: (qmail 28792 invoked from network); 21 Nov 2000 11:25:33 -0000 Received: from unknown (HELO daemon.lpds.sublink.org) (212.159.41.48) by warrior with SMTP; 21 Nov 2000 11:25:33 -0000 Received: from pelissero.org (hyde.lpds.sublink.org [10.0.0.2]) by daemon.lpds.sublink.org (8.9.3/8.9.3) with ESMTP id LAA00919; Tue, 21 Nov 2000 11:14:23 GMT (envelope-from wcp@pelissero.org) Received: (from wcp@localhost) by pelissero.org (8.9.3/8.9.3) id LAA44192; Tue, 21 Nov 2000 11:19:45 GMT (envelope-from wcp) From: "Walter C. Pelissero" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14874.23121.801503.448167@hyde.lpds.sublink.org> Date: Tue, 21 Nov 2000 11:19:45 +0000 (GMT) To: Dan Nelson Cc: questions@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: SVR4 missing syscall In-Reply-To: <20001120130301.A10520@dan.emsphone.com> References: <14873.23011.159826.718978@hyde.lpds.sublink.org> <20001120130301.A10520@dan.emsphone.com> X-Mailer: VM 6.72 under 21.1 (patch 9) "Canyonlands" XEmacs Lucid Reply-To: walter@pelissero.org X-Attribution: WP Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dan Nelson writes: > In the last episode (Nov 20), Walter C. Pelissero said: > > I'm trying to run a SCO SVR4 executable on FreeBSD but I get a SIGSYS > > (invalid system call) at the very beginning. Here is the kdump: > > > > Which call is it about? I see an "old.lstat" but I couldn't find any > > reference in the kernel source tree. Is there any doc I could read > > to see if I can hack this syscall in the emulator? > > old.lstat is syscall #40, which is the ibcs2_xenix syscall on SCO. May I ask you where you got this information from? I was grep-ing around in the kernel source tree but I couldn't figure out that this old.lstat is syscall #40, let alone that it was a Xenix syscall. Is there any doc that can help me hacking this syscall into the ibcs2 emulator? > You can add hooks from the svr4 emulation code back to the ibcs2 > code, but the svr4 module was really written for Solaris x86 > instead of SCO. You'll have to make a lot of changes to get SCO > binaries to run under it. I tried to get an SCO SVR4 binary to > work about 6 months ago but gave up and simply got the vendor to > send me a Linux binary instead. Runs fine under the Linuxulator :) Are you telling me that the IBCS emulator is not really working? Unfortunately I can't ask for a Linux version. Have you ever had a look at the NetBSD one? Is it usable? Thanks for your help. -- 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 Tue Nov 21 3:29:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from isy.liu.se (isy.liu.se [130.236.48.10]) by hub.freebsd.org (Postfix) with ESMTP id 6738F37B4CF for ; Tue, 21 Nov 2000 03:29:12 -0800 (PST) Received: from lagrange.isy.liu.se (lagrange.isy.liu.se [130.236.49.127]) by isy.liu.se (8.10.0/8.10.0) with ESMTP id eALBT7f21671; Tue, 21 Nov 2000 12:29:07 +0100 (MET) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <000001c053aa$6eb56020$0100007f@localhost> Date: Tue, 21 Nov 2000 12:29:06 +0100 (CET) From: Micke Josefsson To: Alexey Subject: RE: HELP !!! Cc: questions@FreeBSD.ORG Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 21-Nov-00 Alexey wrote: > Dear Sir. > I have encountered some problems installing and running FreeBSD 4.1.1. Here is > my system configuration: ABIT BF6 motherboard, Celeron 400 MHz, 32 Mb SDRAM, > Voodoo Banshee, PCI Winmodem, SB16 and IDE Disks. During the first > inslallation phase (two floppies -> menu -> full screen kernel config) there > were 8 errors in "Network" section: 8 ethernet adapters were marked with CONF. > So I disabled them all and installed FreeBSD. Then during the boot process it > hang on sendmail init. So I had to dasable sendmail by putting NO in rc.conf's > sendmail_enable section. So the boot process in now clear. But when I tried to > install Midnight Commander port it hang on ifconf checking. What am I to do? If you actually are installing a *port* then it expects the source code in /usr/ports/distfiles/, if it's not there it will try and fetch it from the net which must of course check if the NIC is there. Either install midc as a package via /stand/sysinstall from CDROM, or get the source tarball of midnight commander (it's a *.tgz name) from ftp.freebsd.org, put it in the distfiles-dir then cd to the proper directory in /usr/ports... and do a make install. The second method is more cumbersome and, should there be a) dependencies that the build of midc relies on, you will have to get them too, or it won't 'make install' properly (it will say so though) or b) version discrepancies between what the skeleton in /usr/ports expects and the actual *.tgz file in distfiles/ then the make will also fail, in which case you probably will have to update your ports tree. Stick to packages unless you have a very good reson not to. /Micke ---------------------------------- Michael Josefsson, MSEE mj@isy.liu.se This message was sent by XFMail running on FreeBSD 3.5-STABLE ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 3:35: 2 2000 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 92E9C37B4CF for ; Tue, 21 Nov 2000 03:34:58 -0800 (PST) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by serenity.mcc.ac.uk with esmtp (Exim 2.05 #4) id 13yBhR-000KyN-00 for questions@FreeBSD.ORG; Tue, 21 Nov 2000 11:34:57 +0000 Received: from localhost (proffitt@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) with ESMTP id LAA35583 for ; Tue, 21 Nov 2000 11:34:54 GMT (envelope-from proffitt@dogma.freebsd-uk.eu.org) Date: Tue, 21 Nov 2000 11:34:50 +0000 (GMT) From: David Proffitt To: questions@FreeBSD.ORG Subject: RE: ping OK, daemons dead ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > >> you'd probibly be better off writing a script that will > just restart the > >> daemons that are dying on you, Try chkdeamon from http://www.armory.com/~ftp/#admin/ I've been running it for some time (under solaris ;-) and it seems to work fine > > acid2:/1/home/skin$ telnet mymachine.nl > > Trying 212.104.204.x... > > Connected to mymachine.nl. > > Escape character is '^]'. > > > > So the daemon ain't dead... Do you eventually get a login prompt (after about 40 seconds) If so it may be trying (and failing) to do a DNS lookup on the inncoming host David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 3:48:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from belcebu.upc.es (belcebu.upc.es [147.83.2.63]) by hub.freebsd.org (Postfix) with ESMTP id C68C637B4CF for ; Tue, 21 Nov 2000 03:48:33 -0800 (PST) Received: from mat.upc.es (mat.upc.es [147.83.39.3]) by belcebu.upc.es (8.8.8+Sun/8.8.8) with ESMTP id MAA16774 for ; Tue, 21 Nov 2000 12:48:31 +0100 (MET) Received: from mat.upc.es (maite140 [147.83.39.140]) by mat.upc.es (8.8.8/8.8.8) with ESMTP id MAA00622 for ; Tue, 21 Nov 2000 12:47:59 +0100 (MET) Message-ID: <3A1A612E.9E659624@mat.upc.es> Date: Tue, 21 Nov 2000 12:49:02 +0100 From: default Organization: DMAT-UPC X-Mailer: Mozilla 4.51 [es] (WinNT; U) X-Accept-Language: es MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Getting FreeBSD 3.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I am a telecommunications student from UPC (Polytechnic University of Catalonia). I am writing this mail to you because I would like to get the FreeBSD 3.0 version. I have been searching for it unsuccessfully through the ftp.FreeBSD.org/pub/FreeBSD/releases/alpha directory, and also through the ftp.FreeBSD.org/pub/FreeBSD/releases/i386 directory. It seems like the earlier version of FreeBSD I can get from those directories is FreeBSD 3.4, so I would be very pleased if you could tell me how I can get the 3.0 version. I would also like to ask two more questions: 1) If some software runs correctly on FreeBSD 3.0, can I install it on an upgraded FreeBSD version without any problems? 2) Which is the difference between the following: "3.4.-Release" "3.4.-Stable" Thank you. Carles Gómez Montenegro Polytechnic University of Catalonia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 3:56:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fwse.teligent.se (gateway.teligent.se [194.17.198.3]) by hub.freebsd.org (Postfix) with SMTP id 7FBA137B4CF for ; Tue, 21 Nov 2000 03:56:13 -0800 (PST) To: Subject: Shared Memory Date: Tue, 21 Nov 2000 12:55:31 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Priority: 1 (Highest) X-MSMail-Priority: High X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: High X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by iservern.teligent.se id MAA10690 Message-ID: From: "William Carlsson - Teligent Nordic, AB - Sweden" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've noticed that there are no safe way to set the maximum number of open files and processes for the system in 3.x+ Nor a good way to set the size of shared memory... Please prove me wrong and let me know how? ---------------------------------------------------- William Carlsson Second Line Support Teligent Nordic AB P.O. Box 213 S-149 21 Nyn=E4shamn SWEDEN Telephone: +46 - 8 - 59 99 11 92 eMail: william.carlsson@teligent.se http://www.teligent.se ---------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 4: 1:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fmmx01.unimessage.net (fmmx01.unimessage.net [212.6.90.137]) by hub.freebsd.org (Postfix) with ESMTP id B7B5B37B4CF for ; Tue, 21 Nov 2000 04:01:29 -0800 (PST) Received: from fmweb01.unimessage.net (fmweb01.unimessage.net [212.6.90.129]) by fmmx01.unimessage.net (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id MAA18364 for ; Tue, 21 Nov 2000 12:59:08 +0100 Received: from fmweb01.unimessage.net (localhost [127.0.0.1]) by fmweb01.unimessage.net (8.9.3/8.9.3/Debian/GNU) with SMTP id NAA13037 for ; Tue, 21 Nov 2000 13:01:27 +0100 Message-ID: <135466301.974808087815.JavaMail.nobody@fmweb01.unimessage.net> Date: Tue, 21 Nov 2000 13:01:27 +0100 (GMT+01:00) From: wolfgang steuerle To: questions@FREEBSD.org Subject: 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 X-Loop: FreeBSD.ORG ___________________________________________________________ http://www.firemail.de - Ihr Briefkasten im Web. Einfach, schnell, sicher. http://www.epost.de - Reservieren Sie jetzt Ihre Adresse f=FCrs Leben beim Kommunikationsportal der Deutschen Post. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 4: 3: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donald-duck.ele.tue.nl (Donald-Duck.ele.tue.nl [131.155.192.220]) by hub.freebsd.org (Postfix) with ESMTP id 0CE1237B479 for ; Tue, 21 Nov 2000 04:03:00 -0800 (PST) Received: from bart by donald-duck.ele.tue.nl with local-esmtp (Exim 3.12 #1 (Debian)) id 13yC8X-0005wr-00; Tue, 21 Nov 2000 13:02:57 +0100 Date: Tue, 21 Nov 2000 13:02:56 +0100 (CET) From: Bart X-Sender: bart@donald-duck.ele.tue.nl To: Micke Josefsson Cc: questions@FreeBSD.ORG, brian william wolter Subject: Re: ping OK, daemons dead ? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 21 Nov 2000, Micke Josefsson wrote: > >> you'd probibly be better off writing a script that will just restart the > >> daemons that are dying on you, that way you won't have the downtime that > >> will result from actually rebooting. you can just have the script check > >> to see if the processes are still running and restart them if they are > >> not. then just put it in the crontabs to execute every so often. > > > > Well, I can not reach the console at this moment (it's a machine > > located somewhere else) but the weird part is that I *can* connect > > (using telnet) but no "login:" appears: > > > > acid2:/1/home/skin$ telnet mymachine.nl > > Trying 212.104.204.x... > > Connected to mymachine.nl. > > Escape character is '^]'. > > > > So the daemon ain't dead... > > Do you have some kind of firewall involved? I got the same telnet response when I > had misconfigured my wall. Machine works fine for 10-14 days and I have no freaky firewall... Bart To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 4: 8:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from transport.itb.ac.id (transport.itb.ac.id [167.205.9.60]) by hub.freebsd.org (Postfix) with SMTP id 28F0E37B4C5 for ; Tue, 21 Nov 2000 04:08:00 -0800 (PST) Received: (qmail 15183 invoked by uid 1020); 21 Nov 2000 12:05:59 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 21 Nov 2000 12:05:59 -0000 Date: Tue, 21 Nov 2000 19:05:59 +0700 (JAVT) From: Fadli Syarid X-Sender: fadli@transport.itb.ac.id To: 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 X-Loop: FreeBSD.ORG subscribe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 4:18:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donald-duck.ele.tue.nl (Donald-Duck.ele.tue.nl [131.155.192.220]) by hub.freebsd.org (Postfix) with ESMTP id 05F3C37B4D7 for ; Tue, 21 Nov 2000 04:18:19 -0800 (PST) Received: from bart by donald-duck.ele.tue.nl with local-esmtp (Exim 3.12 #1 (Debian)) id 13yCAN-0005yM-00; Tue, 21 Nov 2000 13:04:51 +0100 Date: Tue, 21 Nov 2000 13:04:51 +0100 (CET) From: Bart X-Sender: bart@donald-duck.ele.tue.nl To: David Proffitt Cc: questions@FreeBSD.ORG Subject: RE: ping OK, daemons dead ? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 21 Nov 2000, David Proffitt wrote: > > >> you'd probibly be better off writing a script that will > > just restart the > > >> daemons that are dying on you, > > Try chkdeamon from http://www.armory.com/~ftp/#admin/ > I've been running it for some time (under solaris ;-) and it seems to work > fine Thanks! > > > acid2:/1/home/skin$ telnet mymachine.nl > > > Trying 212.104.204.x... > > > Connected to mymachine.nl. > > > Escape character is '^]'. > > > > > > So the daemon ain't dead... > > Do you eventually get a login prompt (after about 40 seconds) > If so it may be trying (and failing) to do a DNS lookup on the inncoming > host I can wait 5+ mins and still no login: (and it seams that it doesn't even close the connection after xx minutes) With regards, Bart To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 4:26:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from wdc.callgtn.com (wdc.callgtn.com [209.47.57.75]) by hub.freebsd.org (Postfix) with ESMTP id 3DA7B37B4C5 for ; Tue, 21 Nov 2000 04:26:50 -0800 (PST) Date: Tue, 21 Nov 2000 07:26:15 -0500 Message-Id: <200011210726.AA164430846@wdc.callgtn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii From: "Erik Rothwell" Reply-To: X-Sender: To: Subject: AC'97 audio with FreeBSD 4.1.1 X-Mailer: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hey folks, Have any of you successfully used AC'97 onboard audio with FreeBSD? I've tried to get my ISA SB16 to work with FreeBSD unsuccessfully back when I had a Pentium 100, I've recently built a system around the AMD Duron 700 and the mobo that I bought has AC'97 support which apparently emulates "legacy audio" like the SB16 . . . and I'd give my SB16 another go on the new system, but, alas, it has no ISA slots. BIOS reports "SoundBlaster emulation" at port 220H, IRQ 5, DMA 1 (I think.) Thanks, ------- E. L. Rothwell xxxxxxxx xxxxxxxxx xxxxxxxxxxxxx xxxxx xxxxxxxxxxxxx xxxx ------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 4:40:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lucifer.ninth-circle.org (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id AA04E37B479 for ; Tue, 21 Nov 2000 04:40:20 -0800 (PST) Received: (from asmodai@localhost) by lucifer.ninth-circle.org (8.11.1/8.11.0) id eALCdq124210; Tue, 21 Nov 2000 13:39:52 +0100 (CET) (envelope-from asmodai) Date: Tue, 21 Nov 2000 13:39:52 +0100 From: Jeroen Ruigrok van der Werven To: =?iso-8859-1?Q?Sukwoo_Seo__=28_=BC=AD=BC=AE=BF=EC_=29?= Cc: freebsd-questions@FreeBSD.ORG Subject: Re: your mail Message-ID: <20001121133951.H12420@lucifer.bart.nl> References: <000a01c05402$1282be80$886cced2@skponpiiiw2k> 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: <000a01c05402$1282be80$886cced2@skponpiiiw2k>; from seo@dpisys.com on Tue, Nov 21, 2000 at 01:29:04PM -0800 Organisation: VIA Net.Works The Netherlands Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -On [20001121 05:30], Sukwoo Seo \( ¼­¼®¿ì \) (seo@dpisys.com) wrote: >Hi im developing a system that will involve clustering, ipc, and rpc's >from an NT box. Some of the servers will be dealling with tcp while >others udp. All servers will need to be able to handle a high capicty. >Can you provide any insight on which version of free bsd would be the >most stable to use for my case? Go with 4.x-STABLE. 4.2-RELEASE should hit the ftp sites in a few. -- Jeroen Ruigrok van der Werven VIA Net.Works The Netherlands BSD: Technical excellence at its best Network- and systemadministrator D78D D0AD 244D 1D12 C9CA 7152 035C 1138 546A B867 One from many... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 4:46:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from isy.liu.se (isy.liu.se [130.236.48.10]) by hub.freebsd.org (Postfix) with ESMTP id 897F137B4C5 for ; Tue, 21 Nov 2000 04:46:13 -0800 (PST) Received: from lagrange.isy.liu.se (lagrange.isy.liu.se [130.236.49.127]) by isy.liu.se (8.10.0/8.10.0) with ESMTP id eALCkBf23879; Tue, 21 Nov 2000 13:46:11 +0100 (MET) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Tue, 21 Nov 2000 13:46:11 +0100 (CET) From: Micke Josefsson To: Micke Josefsson Subject: RE: HELP !!! Cc: questions@FreeBSD.ORG, Alexey Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 21-Nov-00 Micke Josefsson wrote: > > On 21-Nov-00 Alexey wrote: >> Dear Sir. >> I have encountered some problems installing and running FreeBSD 4.1.1. Here >> is >> my system configuration: ABIT BF6 motherboard, Celeron 400 MHz, 32 Mb SDRAM, >> Voodoo Banshee, PCI Winmodem, SB16 and IDE Disks. During the first >> inslallation phase (two floppies -> menu -> full screen kernel config) there >> were 8 errors in "Network" section: 8 ethernet adapters were marked with >> CONF. >> So I disabled them all and installed FreeBSD. Then during the boot process it >> hang on sendmail init. So I had to dasable sendmail by putting NO in >> rc.conf's >> sendmail_enable section. So the boot process in now clear. But when I tried >> to >> install Midnight Commander port it hang on ifconf checking. What am I to do? > > If you actually are installing a *port* then it expects the source code in > /usr/ports/distfiles/, if it's not there it will try and fetch it from the net > which must of course check if the NIC is there. After reading the handbook I must correct myself rather severly. It will apparently first look into /cdrom and if not found there then go on to the net. Sorry about that. With your CD mounted as /cdrom you should be able to make ports. /Micke again > Either install midc as a package via /stand/sysinstall from CDROM, or get the > source tarball of midnight commander (it's a *.tgz name) from ftp.freebsd.org, > put it in the distfiles-dir then cd to the proper directory in /usr/ports... > and > do a make install. > > The second method is more cumbersome and, should there be a) dependencies that > the build of midc relies on, you will have to get them too, or it won't 'make > install' properly (it will say so though) or b) version discrepancies between > what the skeleton in /usr/ports expects and the actual *.tgz file in > distfiles/ > then the make will also fail, in which case you probably will have to update > your ports tree. > > Stick to packages unless you have a very good reson not to. > > /Micke > > ---------------------------------- > Michael Josefsson, MSEE > mj@isy.liu.se > > This message was sent by XFMail > running on FreeBSD 3.5-STABLE > ---------------------------------- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ---------------------------------- Michael Josefsson, MSEE mj@isy.liu.se This message was sent by XFMail running on FreeBSD 3.5-STABLE ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 4:48:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from araucaria.cta.serpro.gov.br (araucaria.cta.serpro.gov.br [161.148.5.40]) by hub.freebsd.org (Postfix) with SMTP id 2295637B4D7 for ; Tue, 21 Nov 2000 04:48:28 -0800 (PST) Received: from [10.200.112.51] by araucaria.cta.serpro.gov.br (AIX 4.1/UCB 5.64/4.03) id AA38612; Tue, 21 Nov 2000 10:46:54 -0300 Message-Id: <000e01c053b9$32a4f320$3370c80a@cta.serpro.gov.br> From: "David Sebastiao Staroy" To: Subject: URGENTE Date: Tue, 21 Nov 2000 10:47:24 -0200 Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000B_01C053A8.6ECFD7E0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_000B_01C053A8.6ECFD7E0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Poderiam me informar o endere=E7o do FREEBSD no BRASIL, poderiam me = responder uma pergunta? Como eu chamo uma interfa=E7e grafica no FREEBSD,=20 pois j=E1 instaley o windowmaker-0.62.1tgz. grato meu email =E9 staroy@araucaria.cta.serpro.gov.br ------=_NextPart_000_000B_01C053A8.6ECFD7E0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Poderiam me informar o endere=E7o do = FREEBSD no=20 BRASIL, poderiam me responder uma pergunta?
 
Como eu chamo uma interfa=E7e grafica = no FREEBSD,=20
pois j=E1 instaley o=20 windowmaker-0.62.1tgz.
 
 
grato
 
meu email =E9
 
staroy@araucaria.cta.s= erpro.gov.br
------=_NextPart_000_000B_01C053A8.6ECFD7E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 4:53:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hill.noc.uunet.co.za (hill.noc.uunet.co.za [196.7.0.142]) by hub.freebsd.org (Postfix) with ESMTP id 8805C37B4C5 for ; Tue, 21 Nov 2000 04:53:26 -0800 (PST) Received: by hill.noc.uunet.co.za (Postfix, from userid 1011) id EEEBC22E05; Tue, 21 Nov 2000 14:53:23 +0200 (SAST) Received: from localhost (localhost [127.0.0.1]) by hill.noc.uunet.co.za (Postfix) with ESMTP id ECDEE1F01E for ; Tue, 21 Nov 2000 14:53:23 +0200 (SAST) Date: Tue, 21 Nov 2000 14:52:45 +0200 (SAST) From: David Tucker X-Sender: davet@hill.noc.uunet.co.za To: freebsd-questions@uunet.co.za Cc: multimedia@FreeBSD.ORG Subject: Crystal Sound Card not recognised Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a Crystal Semiconductor 4281 that is not being recognised when my machine boots. This is what I get from dmesg pci0: (vendor=0x1013, dev=0x6005) at 9.0 irq 5 I now the card works as I can use it with the Opensound drivers. I have the following lines in my kernel. device pcm device csa This is the output of uname -a FreeBSD one.fw.uunet.co.za 4.2-RELEASE FreeBSD 4.2-RELEASE #1: Mon Nov 20 14:26:28 SAST 2000 davet@one.fw.uunet.co.za:/usr/src/sys/compile/ONE i386 I have spent quite a bit of time fiddling trying to get the card to work and would appreciate any suggestions as to how to get my box to see the card. ---------------------------------------------------------------------------- David Tucker Grace finds beauty in everything. UUNET SA -Bono Network Operations To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 4:54:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 56A0737B4D7 for ; Tue, 21 Nov 2000 04:54:07 -0800 (PST) Received: from [128.130.111.75] (procyon [128.130.111.75]) by vexpert.dbai.tuwien.ac.at (8.9.3/8.9.3) with ESMTP id NAA27986; Tue, 21 Nov 2000 13:54:01 +0100 (MET) Date: Tue, 21 Nov 2000 13:54:03 +0100 (CET) From: Toni Pisjak To: Xiuping Hu Cc: Subject: Re: XFree86-aoutlibs-3.3.3 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello ! On Wed, 15 Nov 2000, Xiuping Hu wrote: > I install X11 in my FreeBSD system, but always get XFree86-aoutlibs-3.3.3 > error. The error says: > > Add of packege XFree86-aoutlibs-3.3.3 abort, error code 1 - Please check > the debug screen for more information. I have the same problem. I don't know how to solve that, but a workaround is, to install the package afterwards with "/stand/sysinstall". This works for me. Regards: Toni. -- Toni Pisjak Technische Universitaet Wien pisjak@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 4:59: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ipamzlx.physik.uni-mainz.de (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by hub.freebsd.org (Postfix) with ESMTP id BA17337B4C5; Tue, 21 Nov 2000 04:59:02 -0800 (PST) Received: from ipamzlx.Physik.Uni-Mainz.DE (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by ipamzlx.physik.uni-mainz.de (8.11.1/8.11.0) with ESMTP id eALD0pC40307; Tue, 21 Nov 2000 14:00:51 +0100 (CET) (envelope-from ohartman@ipamzlx.physik.uni-mainz.de) Date: Tue, 21 Nov 2000 14:00:51 +0100 (CET) From: "O. Hartmann" To: freebsd-hardware@freebsd.org Cc: freebsd-questions@freebsd.org Subject: PCI 64/66 RAID Controlers for FreeBSD Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Sirs. I'm looking for a good, fast and supported 64 Bit PCI /66 Mhz RAID Controler, supported in FreeBSD. Mike Smith told me that in FreeBSD 4.2 the AMI Elitae 1600 RAID controler will be supported, but I want to compare some other products before purchasing one. Specification should be: PCI 64/66 interface two channel Ultar 160 SCSI Supported in FreeBSD I do not need much comfort in GUI etc, but the RAID controler should be able to be configured either by a controler own bios or by a small tool from FreeBSD. The controler should be very reliable, fast and built up for the future :-) Thanks in advance, Oliver - MfG O. Hartmann ------------------------------------------------------------------- ohartman@ipamzlx.physik.uni-mainz.de Klimadatenserver-Abteilung des IPA IT Netz- und Systembetreuung Johannes Gutenberg-Universitaet Mainz Becherweg 21 D-55099 Mainz BRD/Germany Tel: +496131/3924662 FAX: +496131/3923532 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 5:24:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sanson.reyes.somos.net (freyes.static.inch.com [216.223.199.224]) by hub.freebsd.org (Postfix) with ESMTP id 9EBC437B4C5 for ; Tue, 21 Nov 2000 05:24:49 -0800 (PST) Received: from zoraida.reyes.somos.net (zoraida.reyes.somos.net [10.0.0.15]) by sanson.reyes.somos.net (8.9.3/8.9.3) with ESMTP id IAA00225; Tue, 21 Nov 2000 08:18:38 -0500 (EST) (envelope-from fran@reyes.somos.net) Date: Tue, 21 Nov 2000 08:25:55 -0500 (EST) From: Francisco Reyes To: "GoldstonRumpke, Adam W HM3" Cc: "'freebsd-questions@FreeBSD.ORG'" Subject: Re: CD-RW In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 21 Nov 2000, GoldstonRumpke, Adam W HM3 wrote: > I am interested in learning more about this O.S.. One question I have is > Does FreeBSD support CD-RW and multiple CD Drives. > Adam Yes it does. The only thing not supported is to use CDRW as disk as you can do in windows. It may also be a good idea to post the mode of CDRW you are trying to use. I have a HP CDRW 9310i:10x4x32 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 5:30:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sanson.reyes.somos.net (freyes.static.inch.com [216.223.199.224]) by hub.freebsd.org (Postfix) with ESMTP id E7D1237B4CF for ; Tue, 21 Nov 2000 05:30:10 -0800 (PST) Received: from zoraida.reyes.somos.net (zoraida.reyes.somos.net [10.0.0.15]) by sanson.reyes.somos.net (8.9.3/8.9.3) with ESMTP id IAA00244; Tue, 21 Nov 2000 08:23:59 -0500 (EST) (envelope-from fran@reyes.somos.net) Date: Tue, 21 Nov 2000 08:31:16 -0500 (EST) From: Francisco Reyes To: default Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Getting FreeBSD 3.0 In-Reply-To: <3A1A612E.9E659624@mat.upc.es> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 21 Nov 2000, default wrote: > directories is FreeBSD 3.4, so I would be very pleased if you could tell me how I can > get the 3.0 version. Use 3.4 instead. It is the latest along the 3.X line. >1) If some software runs correctly on FreeBSD 3.0, can I install it on > an upgraded FreeBSD version without any problems? You should. >2) Which is the difference between the following: >"3.4.-Release" >"3.4.-Stable" You may want to take a look at http://www.freebsd.org/handbook Releases are a point in time for the source tree. 3.4 stable WAS the ongoing branch of "stable", but it is now 3.5 I believe. You should be able to run any programs from 3.X under 4.X so you may want to get that instead. Otherwise I recommend you get hte latest 3.X which I believe it was 3.5 and then bring it up to "Stable". See instructions at the handbook. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 6: 0:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rush.telenordia.se (mail.telenordia.se [194.213.64.42]) by hub.freebsd.org (Postfix) with SMTP id 9913337B4CF for ; Tue, 21 Nov 2000 06:00:26 -0800 (PST) Received: (qmail 28232 invoked from network); 21 Nov 2000 15:00:20 +0100 Received: from bb-62-5-7-17.bb.tninet.se (HELO marbsd.tninet.se) (62.5.7.17) by mail.telenordia.se with SMTP; 21 Nov 2000 15:00:20 +0100 From: Mark Rowlands Reply-To: mark.rowlands@minmail.net Date: Tue, 21 Nov 2000 14:53:46 +0000 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: mike johnson , questions@FreeBSD.ORG References: <20001121065825.723CC1DDE@baddog.yi.org> In-Reply-To: <20001121065825.723CC1DDE@baddog.yi.org> Subject: Re: lag? MIME-Version: 1.0 Message-Id: <00112114534602.05256@marbsd.tninet.se> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tuesday 21 November 2000 06:58, mike johnson wrote: > This is kind of weird but.. > first off heres my stuff.. > 2 boxen , both freebsd 4.1.1 > > I have box 1 as the gateway . > I have net access and I can go to webpages , but when I ssh or ftp to > box1 from box 2 it stalls alot. And if i send a file over about 500k it > will stall > in the middle of the send and not finsh the send. > And in ssh it will just freeze sometimes , for no reason at all. > Any idea on how to fix this? > > tell us about your network hardware: what hubs / switches / netcards make sure all network kit is configured right for a start : half / full duplex 10/100mb checking your irqs sounds good. dmesg | grep irq To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 6: 2:11 2000 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 1699837B4CF; Tue, 21 Nov 2000 06:02:06 -0800 (PST) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by serenity.mcc.ac.uk with esmtp (Exim 2.05 #4) id 13yDzp-0004fU-00; Tue, 21 Nov 2000 14:02:05 +0000 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) id OAA43801; Tue, 21 Nov 2000 14:02:04 GMT (envelope-from jcm) Date: Tue, 21 Nov 2000 14:02:04 +0000 From: j mckitrick To: freebsd-questions@freebsd.org, stable@freebsd.org Subject: New Applix office under 4.x Message-ID: <20001121140203.A43673@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 X-Loop: FreeBSD.ORG I am running the new Applix Office suite (4.0?) under the blackbox windowmanager. The .doc import function does not work. It runs a program called olefilter, and the truss output shows that a symbol called 'poll' is undefined. It was suggested I install Gnome or KDE. Here is what happened: Okay, I just installed the latest version of Gnome. Here is the last few lines of truss running olefilter: access("/usr/X11R6/lib/libX11.so.6",0) = 0 (0x0) access("/usr/lib/libm.so.2",0) = 0 (0x0) access("/usr/lib/libm.so.2",0) = 0 (0x0) /usr/libexec/ld-elf.so.1: write(2,0xbfbff40c,26) = 26 (0x1a) /usr/local/lib/libglib12.so.3: Undefined symbol "poll"write(2,0xbfbff43c,54) = 54 (0x36) Any idea what is happening here? This is after building world last night with 4.2-stable. Is it a problem with blackbox? I am really ignorant about how BSD and unix in general handles libraries, so maybe I will learn something about this. All I really know is they are way better than DLL's! Jonathon -- "One World, One Web, One Program." - Microsoft Promotional Ad. "Ein Volk, Ein Reich, Ein Fuhrer." - Adolf Hitler To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 6: 9:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cheyenne.infinitecnetworks.com (unknown [64.217.101.10]) by hub.freebsd.org (Postfix) with ESMTP id 8E0F237B4CF for ; Tue, 21 Nov 2000 06:09:17 -0800 (PST) Received: by CHEYENNE with Internet Mail Service (5.5.2650.21) id ; Tue, 21 Nov 2000 08:09:15 -0600 Message-ID: From: "Bouchard, David" To: "'questions@freebsd.org'" Subject: device_probe_and_attach question Date: Tue, 21 Nov 2000 08:09:14 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I've recently completed an instalation of FreeBSD but I have one problem. > I can't seem to get the ethernet card to work. > > During boot-up, the messages I get are: > > xl0: <3Com 3c905-TX Fast Etherlink XL> irq 11 at device 16.0 on pci0 > xl0: couldn't map ports/memory > device_probe_and_attach: xl0 attach returned 6 > > I used the 3com utility to get the following information about the > card: > Interrupt Level: 11 > I/O Base: FC40 > Slot # 16 > Ethernet Address: 00600815F3E6 > The information I got from doing a uname -s is: FreeBSD systest.infinitecnetworks.com 4.0-RELEASE FreeBSD 4.0-RELEASE #1: Wed Nov 15 14:43:51 CST 2000 root@systest.infinitecnetworks.com:/usr/src/sys/compile/SYSTEST i386 As you can tell, I have recompiled the kernel (it didn't work before that, either). I made sure I had the miibus support loaded when I did this as well. I have also tried loading the miibus support as a module, and that hasn't worked either. No matter what I have tried, I continue to get the above message. > Any suggestions? I've looked in the handbook, searched the mailing list > archives, and through various FAQs to no avail. > > Thanks in advance, > David > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 6:14:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from escalena.com (koala.usaway.com.br [200.188.107.154]) by hub.freebsd.org (Postfix) with SMTP id 9928537B4CF for ; Tue, 21 Nov 2000 06:14:20 -0800 (PST) Received: (qmail 45064 invoked by alias); 21 Nov 2000 14:21:25 -0000 Received: from unknown (HELO ricardo.usaway.com.br) (200.197.145.226) by koala.usaway.com.br with SMTP; 21 Nov 2000 14:21:25 -0000 From: Ricardo A.Falasca Reply-To: ricardo@escalena.com Organization: USAWay! Comercio Eletronico SA To: freebsd-questions@FreeBSD.ORG Subject: 3Com Megahertz PC-Card (CardBus) Date: Tue, 21 Nov 2000 10:10:56 -0200 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <00112110134505.00294@ricardo.usaway.com.br> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have a 3Com Megahertz PC-Card (CardBus) Model 3CCFEM656B 10/100 LAN+56k modem, and I can't use it, is possible? I need install, isn't WinModem .... Somebody can help me!?? My mail is: ricardo@escalena.com and I'm using FreeBSD 4.1-RELEASE. Thanks -- Ricardo A. Falasca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 6:16: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from boco.fee.vutbr.cz (boco.fee.vutbr.cz [147.229.9.11]) by hub.freebsd.org (Postfix) with ESMTP id 599C437B4CF for ; Tue, 21 Nov 2000 06:16:00 -0800 (PST) Received: from kazi.dcse.fee.vutbr.cz (kazi.dcse.fee.vutbr.cz [147.229.8.12]) by boco.fee.vutbr.cz (8.11.1/8.11.1) with ESMTP id eALEFaf70816 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified OK); Tue, 21 Nov 2000 15:15:41 +0100 (CET) Received: (from cejkar@localhost) by kazi.dcse.fee.vutbr.cz (8.11.0/8.11.0) id eALEFaq86695; Tue, 21 Nov 2000 15:15:36 +0100 (CET) Date: Tue, 21 Nov 2000 15:15:36 +0100 From: Cejka Rudolf To: questions@FreeBSD.ORG Cc: henrich@sigbus.com Subject: Re: DES Passwords on 4.1.1? Message-ID: <20001121151536.A85962@dcse.fee.vutbr.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from henrich@sigbus.com on Mon, Nov 20, 2000 at 01:38:45PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Charles Henrich wrote (2000/11/20): > What new magic is there on 4.1.1 to use DES passwords? I see the package is > no longer an install option, and by default it creates all passwords MD5... > Anyone? Add "passwd_format=des" in your login.conf in default section. It should be sufficient to generate DES passwords again. -- Rudolf Cejka (cejkar@dcse.fee.vutbr.cz; http://www.fee.vutbr.cz/~cejkar) Brno University of Technology, Faculty of El. Engineering and Comp. Science Bozetechova 2, 612 66 Brno, Czech Republic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 6:31:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (pop3.pioneernet.net [208.240.196.25]) by hub.freebsd.org (Postfix) with ESMTP id 49F2037B6C7 for ; Tue, 21 Nov 2000 06:31:16 -0800 (PST) Received: from wiegand.org [208.194.173.26] by pioneernet.net with ESMTP (SMTPD32-6.03) id AB813D60100; Tue, 21 Nov 2000 06:49:37 -0800 Message-ID: <3A1A880A.25BC4A01@wiegand.org> Date: Tue, 21 Nov 2000 06:34:50 -0800 From: Chip X-Mailer: Mozilla 4.08 [en] (X11; I; FreeBSD 4.0-RELEASE i386) MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Subject: Re: 'find' is running all by itself References: <3A19E749.E9E048E2@wiegand.org> <20001120191139.A12194@intacct.com> <3A1A0506.AC75E96C@wiegand.org> <00112117251600.37336@shalimar.net.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Zero Sum wrote: > > On Tuesday 21 November 2000 16:15, Chip wrote: > > John P. Campbell wrote: > > > > > > A look at /etc/periodic/daily on my box shows that find runs quite > often. > > > It's a good chance that is what you are seeing. > > > > > > : jpc % cd /etc/periodic/daily/ > > > : daily % grep find * > > > > I tried this command as you have it shown above and get > > daily: command not found > > Besides that, in my daily directory is a whole bunch of stuff, > > and > > find is not amoung any of it. Should it be? It's not any big > > deal, > > I'm just curious where it's starting and what is telling it to > > start. None of the other fbsd machines do this. > > > > This is a joke, right? > > You didn't really fail to recognise the '%' as a c-shell prompt, did you? > > You didn't type "daily % grep find *" instead of "grep find *", did you? > > You weren't really expecting the 'find' command to be there were you? > > If the answer to ANY one of the aboce was yes, then you need to get > yourself some basic books on Unix. Asking questions here won't do you much > good as you won't understand the answers. > > The explanation that was given you was most probably accurate. You > mightcheck the system time, though. > > Geoff > -- > count@shalimar.net.au > Nihil curo de ista tua stulta superstitione I am quite sure that you too were once a beginner in the *nix environment. I doubt very much that you were born with all this great store house of knowledge. Maybe it has been so long that you have forgotten those days of learning though, and now don't have the patience for people who are learning, so feel compelled to lash out at them in a childish manner. A serious question should only be returned with a serious answer, which most people on this list do. You appear to be an exception, I'm sorry. -- Chip W. www.wiegand.org Alternative Operating Systems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 6:34:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (pop3.pioneernet.net [208.240.196.25]) by hub.freebsd.org (Postfix) with ESMTP id EB22637B4CF for ; Tue, 21 Nov 2000 06:34:24 -0800 (PST) Received: from wiegand.org [208.194.173.26] by pioneernet.net with ESMTP (SMTPD32-6.03) id AC3F4B7011C; Tue, 21 Nov 2000 06:52:47 -0800 Message-ID: <3A1A88C9.2EE37BA5@wiegand.org> Date: Tue, 21 Nov 2000 06:38:01 -0800 From: Chip X-Mailer: Mozilla 4.08 [en] (X11; I; FreeBSD 4.0-RELEASE i386) MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Subject: Re: 'find' is running all by itself References: <3A19E749.E9E048E2@wiegand.org> <20001120191139.A12194@intacct.com> <3A1A0506.AC75E96C@wiegand.org> <20001121031225.A65525@intacct.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG John P. Campbell wrote: > > Wading through the serious and not so serious responses, I hope you got your > answer. Explaining again: Yes, thankyou for you help. I did find the listings from grep. There is a lot of parameters, is that the correct term?, after each. I will have to learn what they mean. > In the directory /etc/periodic/daily there are a number of scripts. > In mine, they are named 110.clean-tmps, etc, etc. These scripts contain > commands that run each day. find is most likely one of them. You can see this > by running the following commands: > > cd /etc/periodic/daily > grep find * Yes, it is there on five lines. > This looks for the string 'find' in any file in the current directory. There > are two other directories in /etc/periodic: weekly and monthly. These are the > scripts that run weekly and monthly respectively. > > If you need more help, feel free to write. Once again, thank you for your help. -- Chip > jpc > > On Mon, Nov 20, 2000 at 09:15:50PM -0800, owner-freebsd-questions @ FreeBSD . ORG Mon Nov 20 21 wrote: > > John P. Campbell wrote: > > > > > > A look at /etc/periodic/daily on my box shows that find runs quite often. > > > It's a good chance that is what you are seeing. > > > > > > : jpc % cd /etc/periodic/daily/ > > > : daily % grep find * > > > > I tried this command as you have it shown above and get > > daily: command not found > > Besides that, in my daily directory is a whole bunch of stuff, > > and > > find is not amoung any of it. Should it be? It's not any big > > deal, > > I'm just curious where it's starting and what is telling it to > > start. None of the other fbsd machines do this. > > > > -- > > Chip > > > > > 100.clean-disks:find / \( ! -fstype local -o -fstype rdonly \) -a -prune -o \ > > > 110.clean-tmps: find . -type f -atime +3 -ctime +3 ! -name '.X*-lock' \ > > > 110.clean-tmps: find -d . ! -name . -type d -mtime +1 -delete > > > 110.clean-tmps: find . ! -name . -atime +7 -ctime +3 -delete > > > 110.clean-tmps: find -d . ! -name . ! -name vi.recover -type d -mtime +1 > > > -delete > > > 120.clean-preserve: cd /var/preserve && find . ! -name . -mtime +7 -delete > > > 140.clean-rwho: cd /var/rwho && find . ! -name . -mtime +7 -delete > > > 150.clean-hoststat: cd /var/spool/.hoststat && find * -mtime +3 -delete > > > > > > jpc > > > > > > On Mon, Nov 20, 2000 at 07:08:57PM -0800, owner-freebsd-questions @ FreeBSD . ORG Mon Nov 20 19 wrote: > > > > I have several FBSD 4.0 machines, and on one of them > > > > the 'find' command will start running by itself. I found > > > > out about this when I heard the hard drive reading itself > > > > wildly, so I looked at top, and there was find at the top. > > > > This happens at least every evening, sometimes several times. > > > > This machine has mysql installed, and nothing much else, just > > > > a straight install of 4.0. > > > > Any ideas what could be causing this? > > > > > > > > -- > > > > Chip W. > > > > www.wiegand.org > > > > Alternative Operating Systems > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > > > > -- > > > John P. Campbell > > > Application Engineer > > > Intacct Corporation > > > 408-395-0961 > > > > -- > > Chip W. > > www.wiegand.org > > Alternative Operating Systems > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > -- > John P. Campbell > Intacct Corporation > - "Good judgement comes from experience. > Experience comes from bad judgement." -- Chip W. www.wiegand.org Alternative Operating Systems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 6:34:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from Exch1.smarterkids.com (unknown [216.34.112.152]) by hub.freebsd.org (Postfix) with ESMTP id 4CAF637B4E5 for ; Tue, 21 Nov 2000 06:34:40 -0800 (PST) Received: by EXCH1 with Internet Mail Service (5.5.2650.21) id ; Tue, 21 Nov 2000 09:26:51 -0500 Message-ID: From: Dusty Roy To: "'freebsd-questions@FreeBSD.ORG'" Subject: Date: Tue, 21 Nov 2000 09:26:46 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am new to FreeBSD and would like to know where to begin. I do not know what I need to download to begin installing. Can you point me in the right direction? Thanks in advance, Dusty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 6:36:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tidal.wave.net (unknown [198.68.31.227]) by hub.freebsd.org (Postfix) with ESMTP id A1D0637B4CF for ; Tue, 21 Nov 2000 06:36:45 -0800 (PST) Received: from jj ([208.7.50.64]) by tidal.wave.net (8.9.3/8.9.3) with SMTP id GAA32166 for ; Tue, 21 Nov 2000 06:36:43 -0800 (PST) (envelope-from chuckw@wave.net) From: "Chuck" To: Subject: Having problem with 4.1 ...HELP!!! Date: Tue, 21 Nov 2000 06:35:44 -0800 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0000_01C05385.46937AC0" 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.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0000_01C05385.46937AC0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hi... I have a server that I have just loaded 4.1 on and after I have loaded known good chat perl scripts onto, the chat daemon dies if I try to send 2 things at it at once... It's like it can't spawn a child process... I'm not sure that it even gets that far... It hit's listen and listen returns "Bad File Descriptor"... To make a long story as short as possible, the chat scripts simply generate HTML pages that have 2 text boxes on them... One is for messages to be displayed in public and the other is for a message to be sent to one person only... I can post a message in either without problem... If I post a message in both at the same time it causes the chat daemon to die... I have included the chat daemon script so that you can see how it is being processed... I believe that it is a bug in 4.1 because these same exact scripts run on 2.2.7 FreeBSD... Anyway if you have ANY idea I would love to hear it... Chuck... ------=_NextPart_000_0000_01C05385.46937AC0 Content-Type: application/octet-stream; name="chatd" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="chatd" #!/usr/local/bin/perl=0A= #=0A= # This software is Copyright 1995 Doug Stevenson (doug+@osu.edu).=0A= #=0A= # Duplication of this code in any form for purposes other than backups=0A= # is strictly prohibited without written consent of the author.=0A= #=0A= # You may freely modify the source code at your own risk. The author is=0A= # not responsible for effects of this software before of after=0A= # modification.=0A= #=0A= =0A= # not CGI runnable=0A= exit(1) if defined($ENV{'REQUEST_METHOD'});=0A= =0A= $chatdir =3D '/usr/local/www/cgi-bin/chat2';=0A= require "$chatdir/chat-defs.pl";=0A= require "$chatdir/chat-subs.pl";=0A= require "$chatdir/chatd-subs.pl";=0A= require 'getopts.pl';=0A= =0A= #=0A= # -k kills the currently running chatd, -r restarts it=0A= #=0A= &Getopts('krv');=0A= =0A= if (defined($opt_k)) {=0A= kill('TERM', &chatd_pid()) || die "Could not kill chatd.\n";=0A= exit(0);=0A= }=0A= elsif (defined($opt_r)) {=0A= kill('HUP', &chatd_pid()) || die "Could not restart chatd.\n";=0A= exit(0);=0A= }=0A= elsif (defined($opt_v)) {=0A= $verbose =3D 1;=0A= }=0A= else {=0A= if (! &daemonize()) {=0A= die "chatd: Could not start as a daemon\n";=0A= }=0A= }=0A= =0A= =0A= #=0A= # Set up signal handlers=0A= #=0A= $SIG{'HUP'} =3D 'reload'; # HUP forces a reload of all data files=0A= $SIG{'TERM'} =3D 'handler'; # everything else cleans up and quits=0A= $SIG{'KILL'} =3D 'handler';=0A= $SIG{'QUIT'} =3D 'handler';=0A= $SIG{'INT'} =3D 'handler';=0A= =0A= #=0A= # Get socket stuff ready to listen for messages=0A= #=0A= unlink($socket_path);=0A= socket(CHAT,$AF_UNIX,$SOCK_STREAM,0) || die "socket: $!";=0A= bind(CHAT, pack($sockaddr_un, $AF_UNIX, $socket_path)) || die "bind: = $!\n";=0A= listen(CHAT,5) || die "listen: $!";=0A= select(CHAT); $| =3D 1; select(NS); $| =3D 1; select(STDOUT);=0A= =0A= =0A= #=0A= # The Big Loop=0A= #=0A= while (1) {=0A= print "Waiting for connection..." if $verbose;=0A= =0A= ACCEPT: {=0A= if (!accept(NS,CHAT)) {=0A= # probably got interrupted from a HUP for a reload=0A= if ($! =3D~ /^Int/) {=0A= redo ACCEPT;=0A= }=0A= # or, maybe they just want us dead, or error=0A= else {=0A= die "accept: $!\n";=0A= }=0A= }=0A= }=0A= =0A= #=0A= # Child does all the dirty work=0A= #=0A= if (($child =3D fork) =3D=3D 0) {=0A= local($message, $forum, $writer);=0A= print "got one!\n" if $verbose;=0A= =0A= # command comes in as a null-separated list of arguments=0A= chop($_ =3D );=0A= local($command, $forum, $writer) =3D split(/\0/);=0A= while () { $message .=3D $_; }=0A= close(NS);=0A= =0A= if ($verbose) {=0A= print "COMMAND $command, FORUM $forum, WRITER $writer\n";=0A= print "WROTE: $message\n\n";=0A= }=0A= =0A= if ($command eq 'TALK') {=0A= &announce($forum, $writer, $message);=0A= }=0A= elsif ($command =3D~ /^WHISPER (\d+)/) {=0A= &whisper($forum, $1, $writer, $message);=0A= }=0A= elsif ($command eq 'LEAVE' ) {=0A= &announce_exit($forum, $writer, $message);=0A= }=0A= exit(0);=0A= }=0A= =0A= waitpid(-1, 0);=0A= close(NS);=0A= }=0A= =0A= =0A= =0A= ##=0A= ## Subroutines=0A= ##=0A= =0A= #=0A= # Make me a daemon=0A= #=0A= sub daemonize {=0A= local($pid);=0A= =0A= FORK: {=0A= if ($pid =3D fork) {=0A= &drop_pid($pid) || die "Could not write pid to file $pidfile\n";=0A= print "Chat Daemon started at pid $pid\n";=0A= exit(0);=0A= }=0A= elsif (defined $pid) {;} # child...continues from here=0A= elsif ($! =3D~ /No more process/) {=0A= sleep 5;=0A= redo FORK;=0A= }=0A= else {=0A= return 0; # can't fork=0A= }=0A= }=0A= return 1;=0A= }=0A= =0A= =0A= =0A= #=0A= # Signal handler. Cleans up after the daemon and quits.=0A= #=0A= sub handler {=0A= local($sig) =3D @_;=0A= print "Caught SIG$sig, cleaning up and quitting...\n";=0A= unlink($socket_path, $pidfile);=0A= exit(0);=0A= }=0A= =0A= =0A= #=0A= # Do a reload of the data files after a HUP signal.=0A= #=0A= sub reload {=0A= print "\n\nReloading data...\n\n";=0A= do "$chatdir/chat-defs.pl";=0A= }=0A= =0A= =0A= ##=0A= ## end of chatd=0A= ##=0A= ------=_NextPart_000_0000_01C05385.46937AC0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 6:55:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.caramail.com (mail.caramail.com [195.68.99.70]) by hub.freebsd.org (Postfix) with ESMTP id 4A41237B4CF for ; Tue, 21 Nov 2000 06:55:29 -0800 (PST) Received: from caramail.com (www11.caramail.com [195.68.99.31]) by mail.caramail.com (8.8.8/8.8.8) with SMTP id PAA07647 for questions@FreeBSD.ORG; Tue, 21 Nov 2000 15:56:28 GMT Posted-Date: Tue, 21 Nov 2000 15:56:28 GMT From: edouard.longe@caramail.com To: questions@FreeBSD.ORG Message-ID: <974805434025707@caramail.com> X-Mailer: Caramail - www.caramail.com X-Originating-IP: [212.208.74.102] Mime-Version: 1.0 Subject: ps Content-Type: multipart/mixed; boundary="=_NextPart_Caramail_025707974805434_ID" Date: Tue, 21 Nov 2000 06:55:29 -0800 (PST) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk 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_Caramail_025707974805434_ID Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, i've got a newbie problem. When i execute 'ps' command , there is an error message: "ps: proc size mitmatch (18864 total, 1056 chunks)". Thanks for your help Ed. ______________________________________________________ Bo=EEte aux lettres - Caramail - http://www.caramail.com --=_NextPart_Caramail_025707974805434_ID-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 7: 3:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tradeware.be (unknown [195.230.192.83]) by hub.freebsd.org (Postfix) with ESMTP id 6CD2037B4CF for ; Tue, 21 Nov 2000 07:03:08 -0800 (PST) Received: by EXCHANGE with Internet Mail Service (5.5.2650.21) id ; Tue, 21 Nov 2000 15:53:26 +0100 Message-ID: From: Fabien Derudder To: "'edouard.longe@caramail.com'" Cc: "'freebsd-questions@freebsd.org'" Subject: RE: ps Date: Tue, 21 Nov 2000 15:53:23 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You've probably upgraded your sources and did not recompile your = kernel... Recompile it. You'll maybe have to rebuild the device (should be something like cd = /dev , then ./MAKEDEV ad0s1 ) should be okay... -----Message d'origine----- De : edouard.longe@caramail.com [mailto:edouard.longe@caramail.com] Envoy=E9 : Tuesday, November 21, 2000 3:55 PM =C0 : questions@FreeBSD.ORG Objet : ps Hello, i've got a newbie problem. When i execute 'ps' command , there is an error message: "ps: proc size mitmatch (18864 total, 1056 chunks)". Thanks for your help Ed. ______________________________________________________ Bo=EEte aux lettres - Caramail - http://www.caramail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 7: 6:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web1204.mail.yahoo.com (web1204.mail.yahoo.com [128.11.23.140]) by hub.freebsd.org (Postfix) with SMTP id 9927C37B4D7 for ; Tue, 21 Nov 2000 07:06:57 -0800 (PST) Received: (qmail 16140 invoked by uid 60001); 21 Nov 2000 15:06:57 -0000 Message-ID: <20001121150657.16139.qmail@web1204.mail.yahoo.com> Received: from [195.92.198.79] by web1204.mail.yahoo.com; Tue, 21 Nov 2000 07:06:57 PST Date: Tue, 21 Nov 2000 07:06:57 -0800 (PST) From: Alex Subject: Diskless Router - is it possible To: freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG All, I want to build a high performance IP router using FreeBSD and Zebra (maybe gated as a backup if I hit trouble with Zebra). One criterion for this design is to avoid having to use a hard drive (reduce power, make it easier to harden the hardware). So, has anyone any experiance of diskless FreeBSD, or maybe using a small ammount of FLASH for the boot up and config and then using a RAM drive from then on, and booting most stuff off a network. Clearly there are a few ideas here. Has anyone any experience of pushing FreeBSD really very hard indead when routing? This could be a really cool project if ti happens :-) AJ Alander J. Turner __________________________________________________ Do You Yahoo!? Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.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 Nov 21 7: 9:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.monochrome.org (monochrome.org [206.64.112.124]) by hub.freebsd.org (Postfix) with ESMTP id 16FC737B4D7 for ; Tue, 21 Nov 2000 07:09:41 -0800 (PST) Received: from localhost (faro [192.168.1.7]) by mail.monochrome.org (8.9.3/8.9.3) with SMTP id KAA92368; Tue, 21 Nov 2000 10:09:34 -0500 (EST) (envelope-from chris@monochrome.org) Date: Tue, 21 Nov 2000 10:09:34 -0500 (EST) From: Chris Hill X-Sender: chris@localhost Reply-To: Chris Hill To: Sam Carleton Cc: FreeBSD Questions Subject: Re: setting up dhcpd In-Reply-To: <20001121091458.A24897@linux.rainbow> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 21 Nov 2000, Igor' Robul' wrote: > On Tue, Nov 21, 2000 at 12:37:00AM -0500, Sam Carleton wrote: > > I need dhcpd, the server. > cd /usr/ports/net/isc-dhcp3 > make install ...or see http://www.isc.org/products/DHCP/ -- Chris Hill chris@monochrome.org [1] Bus error netscape To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 7:23:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from w3.brgkepler.asn-graz.ac.at (unknown [193.171.5.38]) by hub.freebsd.org (Postfix) with ESMTP id BE1F237B4E5 for ; Tue, 21 Nov 2000 07:23:38 -0800 (PST) Received: from www.omega-project.net (sperber@L0823P16.dipool.highway.telekom.at [62.46.166.208]) by w3.brgkepler.asn-graz.ac.at (8.8.8/8.8.8) with SMTP id PAA04773 for ; Tue, 21 Nov 2000 15:13:15 +0100 From: Sperber To: questions@freebsd.org Subject: 4.2 RELEASE Date: Tue, 21 Nov 2000 16:21:21 +0000 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <00112116232802.00859@www.omega-project.net> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi FreeBSD 4.2 RELEASE seems to available on ftp server - but when will it be available for cvsup? thx in advance Sperber To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 7:26: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lnxc-1080.i.linuxcare.com (unknown [167.216.157.206]) by hub.freebsd.org (Postfix) with ESMTP id 5EFA537B479 for ; Tue, 21 Nov 2000 07:25:55 -0800 (PST) Received: from localhost (bill@localhost) by lnxc-1080.i.linuxcare.com (8.9.3/8.9.3) with ESMTP id HAA02571; Tue, 21 Nov 2000 07:44:27 -0800 X-Authentication-Warning: lnxc-1080.i.linuxcare.com: bill owned process doing -bs Date: Tue, 21 Nov 2000 07:44:27 -0800 (PST) From: Bill Schoolcraft X-Sender: bill@lnxc-1080.i.linuxcare.com To: gerti-freebsdq@bitart.com Cc: FreeBSD Subject: Re: USB and gphoto ? which port ? In-Reply-To: <20001120230838.12938.qmail@camelot.bitart.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At Mon, 20 Nov 2000 it looks like Gerd Knops composed: GK-->Bill wrote: GK-->> Hello Family, GK-->> I'm a little lost on the USB stuff for this is my first experience GK-->> using it and it applies to a new digital camera and the program GK-->> gphoto. With two USB ports I have a 4 port hub plugged into one, and GK-->> the camera directly plugged into the other. GK-->> GK-->> GK-->> GK-->> ata1: at 0x170 irq 15 on atapci0 GK-->> uhci0: port 0xe000-0xe01f irq 10 GK-->> at device 31.2 on pci0 GK-->> usb0: on uhci0 GK-->> usb0: USB revision 1.0 GK-->> uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 GK-->> uhub0: 2 ports with 2 removable, self powered GK-->> uhub0: port 1 power on failed, IOERROR GK-->> uhub0: port 2 power on failed, IOERROR GK-->> uhub1: Kawatsu Semiconductor, Inc. MiniHub 4000P, class 9/0, rev GK-->> 1.10/1.00, addr 2 GK-->> uhub1: 4 ports with 4 removable, bus powered GK-->> umass0: HP USB DIGITAL CAMERA, rev 1.10/1.00, addr 3 GK-->> fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on GK-->> isa0 GK-->> GK-->> GK-->> GK-->> The camera is at the following: GK-->> GK-->> [umass0: HP USB DIGITAL CAMERA, rev 1.10/1.00, addr 3] GK-->> GK-->> and I'd like to know how to direct gphoto to that address ? There is GK-->> the standard field in gphoto that asks for the "port", there are the GK-->> standard COM-1 through COM-4 options then there is a special "other" GK-->> field and that's where I'm attempting to direct the connection. GK-->> GK-->> I've emailed all the links at the gphoto site and received nothing GK-->> back. GK-->> :( GK-->> GK-->The camera registers as umass device, hence it will look to the system GK-->like a disk, not some serial device. Assuming you do not have any SCSI GK-->disks, these commands might get you started (I don't have this camera GK-->so I do not know if this will work for you): GK--> GK-->as user root: GK--> GK--> mkdir /camera GK--> camcontrol rescan 0 GK--> mount_msdos /dev/da0s1 /camera GK--> GK-->If everything worked you should be able to see the 'contents' of the GK-->camera in the directory /camera. GK--> GK-->Gerd GK--> Thanks, I'm at work now so I'll have to wait till I get home to try this. I'm having friends over for Thanksgiving (US Holiday) and I'd hate to have to take pictures and then use Micro$oft GUI to show and send to their email address. (whew :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 7:27:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pfa0frpk001.panasonicfa.com (unknown [38.248.119.1]) by hub.freebsd.org (Postfix) with ESMTP id 09A2737B4CF for ; Tue, 21 Nov 2000 07:27:21 -0800 (PST) Received: by exchange.panasonicfa.com with Internet Mail Service (5.5.2650.21) id ; Tue, 21 Nov 2000 09:27:19 -0600 Message-ID: <054F7DAA9E54D311AD090008C74CE9BD01766E2E@exchange.panasonicfa.com> From: "Zaitsau, Andrei" To: 'Sperber' Cc: "'questions@freebsd.org'" Subject: RE: 4.2 RELEASE Date: Tue, 21 Nov 2000 09:27:18 -0600 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 X-Loop: FreeBSD.ORG It's available for a while already :) -----Original Message----- From: Sperber [mailto:sperber@w3.brgkepler.asn-graz.ac.at] Sent: Tuesday, November 21, 2000 10:21 AM To: questions@freebsd.org Subject: 4.2 RELEASE Hi FreeBSD 4.2 RELEASE seems to available on ftp server - but when will it be available for cvsup? thx in advance Sperber To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of 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 Nov 21 7:29:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from online.dct.com (online.dct.com [204.29.185.1]) by hub.freebsd.org (Postfix) with ESMTP id 4C6D537B4C5; Tue, 21 Nov 2000 07:29:08 -0800 (PST) Received: (from markm@localhost) by online.dct.com (8.9.3/8.9.3) id JAA19547; Tue, 21 Nov 2000 09:29:02 -0600 (CST) Date: Tue, 21 Nov 2000 09:29:02 -0600 From: Mark To: questions@freebsd.org Cc: hackers@freebsd.org Subject: Systems programming questions... Message-ID: <20001121092902.A6568@online.dct.com> Reply-To: markm@gbonline.com 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 X-Loop: FreeBSD.ORG Hey all -- I'm trying to find a "correct" way to add virtual interfaces to my network card via a C program. right now, I've come up with 3 system() calls to do the work. I don't know if there is a better way or not, but if there is, I'd like to use it. Is there a better way to create and make active a virtual interface in a C program other than using system() to call an ifconfig, route, and arp command? Thanks, -- Mark Maurer markm@solinus.com Programmer, Solinus Inc. Play: markm@gbonline.com http://www.dct.com/~markm/ Other: mark@thecity.com mark@mail2go.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 7:29:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from baddog.yi.org (24-216-177-184.hsacorp.net [24.216.177.184]) by hub.freebsd.org (Postfix) with ESMTP id 3483837B4CF for ; Tue, 21 Nov 2000 07:29:29 -0800 (PST) Received: from localhost.necro.edu (localhost.necro.edu [127.0.0.1]) by baddog.yi.org (Postfix) with ESMTP id EF3D51DDE; Tue, 21 Nov 2000 10:29:42 -0500 (EST) Date: Tue, 21 Nov 2000 10:29:42 EST From: mike johnson To: Sperber , questions@FreeBSD.ORG Subject: Re: 4.2 RELEASE Reply-To: ahze@slaughter.necro.edu X-Mailer: Spruce 0.6.5 for X11 w/smtpio 0.7.9 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Message-Id: <20001121152943.EF3D51DDE@baddog.yi.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It already is bash-2.04$ uname -r 4.2-STABLE On Tue, 21 Nov 2000, Sperber wrote: > Date: Tue, 21 Nov 2000 16:21:21 +0000 > To: questions@FreeBSD.ORG > From: Sperber > Subject: 4.2 RELEASE > > Hi > > FreeBSD 4.2 RELEASE seems to available on ftp server - but when will it > be > available for cvsup? > > thx in advance > > Sperber > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 21 7:34:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 463A137B479 for ; Tue, 21 Nov 2000 07:34:13 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id TAA60072 for ; Tue, 21 Nov 2000 19:00:27 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eALFXwh28564 for freebsd-questions@FreeBSD.ORG; Tue, 21 Nov 2000 18:33:58 +0300 Date: Tue, 21 Nov 2000 18:33:58 +0300 From: "Igor' Robul'" To: freebsd-questions@FreeBSD.ORG Subject: Re: Diskless Router - is it possible Message-ID: <20001121183358.A28512@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <20001121150657.16139.qmail@web1204.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <20001121150657.16139.qmail@web1204.mail.yahoo.com>; from alex_j_turner@yahoo.com on Tue, Nov 21, 2000 at 07:06:57AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Nov 21, 2000 at 07:06:57AM -0800, Alex wrote: > > So, has anyone any experiance of diskless FreeBSD, or > maybe using a small ammount of FLASH for the boot up Yes, but I can't say that I have heavy load. I netboot my router (this was simplest way to do this while PicoBSD _was_ broken on 4-STABLE). This box has 5 ethernet cards: 3 PCI: 1 fxp and two ed 2 ISA: 2 ep Just because there are only 3 PCI slots in this MB fxp card connected to my "servers network" with TP other cards are connected with BNC to "departament networks" Also there are AMD K6-2/450MHz and RAM 32Mb and floppy drive. This box does not have keyboard and videocard. If I _can't_ telnet into it I just turn power off and then on. It will be ready in 10 seconds. And this work for me. -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 7:35: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from w3.brgkepler.asn-graz.ac.at (unknown [193.171.5.38]) by hub.freebsd.org (Postfix) with ESMTP id 7E48537B479 for ; Tue, 21 Nov 2000 07:34:54 -0800 (PST) Received: from www.omega-project.net (sperber@L0823P16.dipool.highway.telekom.at [62.46.166.208]) by w3.brgkepler.asn-graz.ac.at (8.8.8/8.8.8) with SMTP id PAA04825; Tue, 21 Nov 2000 15:24:04 +0100 From: Sperber To: "Zaitsau, Andrei" Subject: RE: 4.2 RELEASE Date: Tue, 21 Nov 2000 16:33:40 +0000 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain Cc: "'questions@freebsd.org'" References: <054F7DAA9E54D311AD090008C74CE9BD01766E2E@exchange.panasonicfa.com> In-Reply-To: <054F7DAA9E54D311AD090008C74CE9BD01766E2E@exchange.panasonicfa.com> MIME-Version: 1.0 Message-Id: <00112116341904.00859@www.omega-project.net> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 21 Nov 2000, Zaitsau, Andrei wrote: > It's available for a while already :) > > > -----Original Message----- > From: Sperber [mailto:sperber@w3.brgkepler.asn-graz.ac.at] > Sent: Tuesday, November 21, 2000 10:21 AM > To: questions@freebsd.org > Subject: 4.2 RELEASE > > > Hi > > FreeBSD 4.2 RELEASE seems to available on ftp server - but when will it be > available for cvsup? > > thx in advance > > Sperber > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message *default tag=RELENG_4_2_RELEASE <- should that be the correct cvsup tag? thx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 7:37:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ringworld.nanolink.com (pool34-tch-1.Sofia.0rbitel.net [212.95.170.34]) by hub.freebsd.org (Postfix) with SMTP id A2C6137B4E5 for ; Tue, 21 Nov 2000 07:37:19 -0800 (PST) Received: (qmail 31990 invoked by uid 1000); 21 Nov 2000 15:36:51 -0000 Date: Tue, 21 Nov 2000 17:36:51 +0200 From: Peter Pentchev To: markm@gbonline.com Cc: questions@freebsd.org, hackers@freebsd.org Subject: Re: Systems programming questions... Message-ID: <20001121173651.C9661@ringworld.oblivion.bg> Mail-Followup-To: markm@gbonline.com, questions@freebsd.org, hackers@freebsd.org References: <20001121092902.A6568@online.dct.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001121092902.A6568@online.dct.com>; from markm@online.dct.com on Tue, Nov 21, 2000 at 09:29:02AM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Nov 21, 2000 at 09:29:02AM -0600, Mark wrote: > Hey all -- > > I'm trying to find a "correct" way to add virtual interfaces to my network > card via a C program. right now, I've come up with 3 system() calls to do the > work. I don't know if there is a better way or not, but if there is, I'd like > to use it. Is there a better way to create and make active a virtual > interface in a C program other than using system() to call an ifconfig, route, > and arp command? Generally, the 'most correct' way to do almost anything regarding interfaces can be found in the /sbin/ifconfig source. I do not really know why you also need to do a route and arp though; I admin I know nothing about arp, but I'm pretty sure that the FreeBSD kernel automagically installs a new route for each newly-upped interface. Hope that helps.. G'luck, Peter -- "yields falsehood, when appended to its quotation." yields falsehood, when appended to its quotation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 7:43:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fmmx01.unimessage.net (fmmx01.unimessage.net [212.6.90.137]) by hub.freebsd.org (Postfix) with ESMTP id 4F13A37B4E5 for ; Tue, 21 Nov 2000 07:43:16 -0800 (PST) Received: from fmweb01.unimessage.net (fmweb01.unimessage.net [212.6.90.129]) by fmmx01.unimessage.net (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id QAA07116 for ; Tue, 21 Nov 2000 16:40:54 +0100 Received: from fmweb01.unimessage.net (localhost [127.0.0.1]) by fmweb01.unimessage.net (8.9.3/8.9.3/Debian/GNU) with SMTP id QAA31004 for ; Tue, 21 Nov 2000 16:43:14 +0100 Message-ID: <135721071.974821394076.JavaMail.nobody@fmweb01.unimessage.net> Date: Tue, 21 Nov 2000 16:43:14 +0100 (GMT+01:00) From: wolfgang steuerle To: questions@FREEBSD.org Subject: what`s missing ? 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 X-Loop: FreeBSD.ORG I have Free-BSD 4.0 installed on my System ( the X-kernel developer install= ation ).I have emacs 20.6 running on it,it works perfect.I have an old Laptop that I also installed Free-BSD 4.0 on it.Because it has no CDROM-drive I installed only= /bin via floppies.then I also installed emacs by using the split-command a= nd putting the pieces together with cat and then doing pkg_add.when I try t= o start emacs I read /usr/libexec/ld-elf.so.1: Shared object "libXaw.so6" n= ot found. So what is the difference between the minimal and the=20 " kernel-developer " installation , that is necesarry for running emacs.I d= on't want to install it all by floppies,because Plip installation didn't work for me ___________________________________________________________ http://www.firemail.de - Ihr Briefkasten im Web. Einfach, schnell, sicher. http://www.epost.de - Reservieren Sie jetzt Ihre Adresse f=FCrs Leben beim Kommunikationsportal der Deutschen Post. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 7:43:32 2000 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 116EB37B4D7; Tue, 21 Nov 2000 07:43:15 -0800 (PST) Received: (from dan@localhost) by dan.emsphone.com (8.11.1/8.11.1) id eALFhDJ18349; Tue, 21 Nov 2000 09:43:13 -0600 (CST) (envelope-from dan) Date: Tue, 21 Nov 2000 09:43:13 -0600 From: Dan Nelson To: "Walter C. Pelissero" Cc: emulation@freebsd.org Subject: Re: SVR4 missing syscall Message-ID: <20001121094313.A1118@dan.emsphone.com> References: <14873.23011.159826.718978@hyde.lpds.sublink.org> <20001120130301.A10520@dan.emsphone.com> <14874.23121.801503.448167@hyde.lpds.sublink.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.11i In-Reply-To: <14874.23121.801503.448167@hyde.lpds.sublink.org>; from "Walter C. Pelissero" on Tue Nov 21 11:19:45 GMT 2000 X-OS: FreeBSD 5.0-CURRENT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Followups to -emulation, please In the last episode (Nov 21), Walter C. Pelissero said: > Dan Nelson writes: > > In the last episode (Nov 20), Walter C. Pelissero said: > > > I'm trying to run a SCO SVR4 executable on FreeBSD but I get a > > > SIGSYS (invalid system call) at the very beginning. Here is the > > > kdump: > > > > > > Which call is it about? I see an "old.lstat" but I couldn't find > > > any reference in the kernel source tree. Is there any doc I > > > could read to see if I can hack this syscall in the emulator? > > > > old.lstat is syscall #40, which is the ibcs2_xenix syscall on SCO. > > May I ask you where you got this information from? I was grep-ing > around in the kernel source tree but I couldn't figure out that this > old.lstat is syscall #40, let alone that it was a Xenix syscall. Take a look at /sys/kern/syscalls.master. Any syscall with the word "old" in it has been phased out and gets a COMPAT flag. So you would look for a "COMPAT ... lstat" line, which happens to be #40. > Is there any doc that can help me hacking this syscall into the ibcs2 > emulator? > > > You can add hooks from the svr4 emulation code back to the ibcs2 > > code, but the svr4 module was really written for Solaris x86 > > instead of SCO. You'll have to make a lot of changes to get SCO > > binaries to run under it. I tried to get an SCO SVR4 binary to > > work about 6 months ago but gave up and simply got the vendor to > > send me a Linux binary instead. Runs fine under the Linuxulator :) > > Are you telling me that the IBCS emulator is not really working? > Unfortunately I can't ask for a Linux version. Have you ever had a > look at the NetBSD one? Is it usable? If you have access to NetBSD binaries, get them. FreeBSD should be able to run static NetBSD, OpenBSD, and BSD/OS binaries natively; no emulation layer required. The iBCS2 emulator works great; I've run all sorts of SCO 3.2v4.2 binaries on FreeBSD with it. Your problem is that SCO 5.* doesn't use iBCS2 anymore; it uses svr4 binaries. Even more of a problem is that SCO binaries rely heavily on old SCO syscalls. You end up having to link in the whole iBCS2 module, AND recode a bunch of syscalls that are different between Solaris and SCO (since our svr4 emulator was written for Solaris). And you have to do all of this in the dark because SCO doesn't release any information about their kernel. I couldn't even find a list of syscalls and their arguments. I had to grep through include files and try and reverse-engineer everything. If you want more background, take a look at the thread starting at http://www.freebsd.org/cgi/getmsg.cgi?fetch=28280+0+/usr/local/www/db/text/1999/freebsd-emulation/19990509.freebsd-emulation I have patches for a June 30 -current that implement enough SCO stuff to make /bin/sh work (but /bin/ls dies), if you're interested. -- 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 Tue Nov 21 7:46:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.generalsearch.net (smtp.generalsearch.net [64.14.229.169]) by hub.freebsd.org (Postfix) with ESMTP id 7CFD437B4F9 for ; Tue, 21 Nov 2000 07:46:42 -0800 (PST) Received: from tonyr.office.generalsearch.net (unknown [63.109.63.65]) by smtp.generalsearch.net (Postfix) with SMTP id A6469FEDC; Tue, 21 Nov 2000 09:46:41 -0600 (CST) From: Anthony Rubin Date: Tue, 21 Nov 2000 09:46:39 -0600 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" Cc: "'questions@freebsd.org'" To: Sperber , "Zaitsau, Andrei" References: <054F7DAA9E54D311AD090008C74CE9BD01766E2E@exchange.panasonicfa.com> <00112116341904.00859@www.omega-project.net> In-Reply-To: <00112116341904.00859@www.omega-project.net> Subject: Re: 4.2 RELEASE MIME-Version: 1.0 Message-Id: <00112109463900.82656@tonyr.office.generalsearch.net> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tuesday 21 November 2000 10:33 am, Sperber wrote: *snip* > > *default tag=RELENG_4_2_RELEASE <- should that be the correct cvsup tag? > > thx > Take a look at /usr/share/examples/cvsup/stable-supfile. -- Anthony Rubin GeneralSearch.Com, Inc. tonyr@generalsearch.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 7:50:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from darcy.gwis.com (darcy.gwis.com [209.57.72.3]) by hub.freebsd.org (Postfix) with ESMTP id 7059A37B479 for ; Tue, 21 Nov 2000 07:50:06 -0800 (PST) Received: from localhost (ddr@localhost) by darcy.gwis.com (8.10.1/8.10.1) with ESMTP id eALFo0H38402 for ; Tue, 21 Nov 2000 10:50:00 -0500 (EST) Date: Tue, 21 Nov 2000 10:50:00 -0500 (EST) From: Dan Roberts - GWIS To: freebsd-questions@freebsd.org Subject: Promise FastTrak RAID rebuild / status Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Can anyone please comment on the scope of FreeBSD's support of the Promise FastTrak 33/66/100 controllers? I'd like to know specifically whether it is possible to query the condition of the RAID via the operating system, and what the process for rebuilding an array is when a replacement drive is installed? Promise distributes a Windows app with the hardware which handles all of this.. if there is no failure detection or live rebuild feature available in FreeBSD, it would not be very useful for some people. Thank you. -- Dan Roberts, Systems Engineer Voice 800.656.GWIS GWIS Internet Solutions Fax 330.656.5440 Please contact support@gwis.com for all technical support issues To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 7:51: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from online.dct.com (online.dct.com [204.29.185.1]) by hub.freebsd.org (Postfix) with ESMTP id 8B5F337B479; Tue, 21 Nov 2000 07:51:00 -0800 (PST) Received: (from markm@localhost) by online.dct.com (8.9.3/8.9.3) id JAA22896; Tue, 21 Nov 2000 09:50:53 -0600 (CST) Date: Tue, 21 Nov 2000 09:50:53 -0600 From: Mark To: Peter Pentchev Cc: questions@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: Systems programming questions... Message-ID: <20001121095053.B6568@online.dct.com> Reply-To: markm@gbonline.com References: <20001121092902.A6568@online.dct.com> <20001121173651.C9661@ringworld.oblivion.bg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20001121173651.C9661@ringworld.oblivion.bg>; from roam@orbitel.bg on Tue, Nov 21, 2000 at 05:36:51PM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Peter Pentchev (roam@orbitel.bg): > On Tue, Nov 21, 2000 at 09:29:02AM -0600, Mark wrote: > > Hey all -- > > > > I'm trying to find a "correct" way to add virtual interfaces to my network > > card via a C program. right now, I've come up with 3 system() calls to do the > > work. I don't know if there is a better way or not, but if there is, I'd like > > to use it. Is there a better way to create and make active a virtual > > interface in a C program other than using system() to call an ifconfig, route, > > and arp command? > > Generally, the 'most correct' way to do almost anything regarding interfaces > can be found in the /sbin/ifconfig source. I do not really know why you > also need to do a route and arp though; I admin I know nothing about arp, > but I'm pretty sure that the FreeBSD kernel automagically installs a new route > for each newly-upped interface. > > Hope that helps.. Sure does... I guess I don't need the route and arp commands. Works just fine with the "ifconfig ... alias" system call. I guess the next step is to look at the source for /sbin/ifconfig, like you suggested. Thanks for the help, -- Mark Maurer markm@solinus.com Programmer, Solinus Inc. Play: markm@gbonline.com http://www.dct.com/~markm/ Other: mark@thecity.com mark@mail2go.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 7:51:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2a.ispchannel.com (smtp.ispchannel.com [24.142.63.7]) by hub.freebsd.org (Postfix) with ESMTP id 6E1C537B657 for ; Tue, 21 Nov 2000 07:51:06 -0800 (PST) Received: from cm-206-31-82-28.gulfbreeze.mediacom.ispchannel.com ([206.31.82.28]) by smtp2a.ispchannel.com (InterMail vK.4.02.00.00 201-232-116 license 7d3764cdaca754bf8ae20adf0db2aa60) with ESMTP id <20001121155355.SQYI382.smtp2a@cm-206-31-82-28.gulfbreeze.mediacom.ispchannel.com>; Tue, 21 Nov 2000 07:53:55 -0800 Date: Tue, 21 Nov 2000 09:51:05 -0600 (CST) From: Steve Van Den Akker To: Dusty Roy Cc: "'freebsd-questions@FreeBSD.ORG'" Subject: Re: your 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 X-Loop: FreeBSD.ORG On Nov 21, Dusty Roy enlightened us with the following: > I am new to FreeBSD and would like to know where to begin. I do not know > what I need to download to begin installing. > Can you point me in the right direction? > > Thanks in advance, > > Dusty > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > The biggest thing you can do to learn FreeBSD is to look at www.freebsd.org. Check the FAQ's, manuals, etc. You may also want to look at www.mostgraveconcern.com/freebsd. FreeBSD is not (in my opinion) the most easiest OS to learn, by reading and subscribing to mailing lists (like this one) you will learn more about your computer and operating systems in general than anything micro$oft could teach you. You're starting in the right place. Check the above web sites and if you still have problems, holler back. Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 7:51:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dire.bris.ac.uk (dire.bris.ac.uk [137.222.10.60]) by hub.freebsd.org (Postfix) with ESMTP id 6558337B479 for ; Tue, 21 Nov 2000 07:51:36 -0800 (PST) Received: from mail.ilrt.bris.ac.uk by dire.bris.ac.uk with SMTP-PRIV with ESMTP; Tue, 21 Nov 2000 15:51:10 +0000 Received: from cmjg (helo=localhost) by mail.ilrt.bris.ac.uk with local-esmtp (Exim 3.16 #1) id 13yFfd-0003g6-00; Tue, 21 Nov 2000 15:49:21 +0000 Date: Tue, 21 Nov 2000 15:49:21 +0000 (GMT) From: Jan Grant To: K.J.Bosschaart@wtb.tue.nl Cc: "S.W.Liu" , freebsd-questions@FreeBSD.ORG Subject: Re: vmware wrong or freebsd wrong? In-Reply-To: <20001120181814.A472@wop21.wop.wtb.tue.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 20 Nov 2000, Karel J. Bosschaart wrote: > On Mon, Nov 20, 2000 at 10:17:37PM +0800, S.W.Liu wrote: > > My system is FreeBSD 4.1, I can't install vmware or vmware2 from port! but when I reinstall FreeBSD 4.0, I can install vmware, and it can run fine! > > > > Why? > > > No idea. What's the problem precisely in 4.1? When I tried, the vmware1 build needed sys/i386/linux/linux_util.h; that got folded out of FBSD a little while ago. You can fix it to make it work, but it's hardly a problem since vmware2 seems to do the job just fine. jan -- jan grant, ILRT, University of Bristol. http://www.ilrt.bris.ac.uk/ Tel +44(0)117 9287163 Fax +44 (0)117 9287112 RFC822 jan.grant@bris.ac.uk If it's broken really badly - don't fix it either. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 8:24:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from markus.dps.mega.net.id (dps-110.mega.net.id [202.149.250.40]) by hub.freebsd.org (Postfix) with ESMTP id C75F337B4CF for ; Tue, 21 Nov 2000 08:24:11 -0800 (PST) Received: from dps-110 (localhost.bar.com [127.0.0.1]) by markus.dps.mega.net.id (8.9.3/8.9.3) with SMTP id AAA00289 for ; Wed, 22 Nov 2000 00:22:49 +0800 (SGT) (envelope-from carmar@dps.mega.net.id) From: markus To: freebsd-questions@FreeBSD.org Subject: pcmcia card data base Date: Wed, 22 Nov 2000 00:03:40 +0800 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <00112200224900.00269@dps-110> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I'm working on getting BSD 4.0 to recognize pcmcia IBM Travelstar 8 ide HD which has a "Shining" "PMIDE-ASC" Rev 1.04 card. Pccard -d returns no Shining card in data base. As it is an interface for a hard drive I assume it must also have a device entry in /dev to go along with it. Do you have any information that could be of help in solving this? Is it posible to add this card to the data base and make the necessary /dev entry? I have looked through the system pretty closely and gone through all the docs I could find but can find nothing on this subject. I'm running a Dell i7k Thanks in advance, Markus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 8:30:46 2000 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 20DC937B4C5 for ; Tue, 21 Nov 2000 08:30:44 -0800 (PST) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 13yGJf-000838-01; Tue, 21 Nov 2000 17:30:43 +0100 Received: (from daemon@localhost) by kemoauc.mips.inka.de (8.11.0/8.11.0) id eALGJer63954 for freebsd-questions@freebsd.org; Tue, 21 Nov 2000 17:19:40 +0100 (CET) (envelope-from daemon) From: naddy@mips.inka.de (Christian Weisgerber) Subject: Re: SVR4 missing syscall Date: Tue, 21 Nov 2000 16:19:40 +0000 (UTC) Message-ID: <8ve7as$1u22$2@kemoauc.mips.inka.de> References: <14873.23011.159826.718978@hyde.lpds.sublink.org> <20001120130301.A10520@dan.emsphone.com> <14874.23121.801503.448167@hyde.lpds.sublink.org> Originator: naddy@mips.inka.de (Christian Weisgerber) To: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Walter C. Pelissero wrote: > > old.lstat is syscall #40, which is the ibcs2_xenix syscall on SCO. > > May I ask you where you got this information from? ktrace doesn't know about emulation. It always shows the name of the native FreeBSD syscall of the respective number. There's a list in /sys/kern/syscalls.c. Look for "old.lstat" there, pick out the number, then go to /sys/compat/svr4/syscalls.master. -- 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 Nov 21 8:33:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 583CF37B4C5 for ; Tue, 21 Nov 2000 08:33:07 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id TAA60200 for ; Tue, 21 Nov 2000 19:59:17 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eALGWqG30871 for freebsd-questions@freebsd.org; Tue, 21 Nov 2000 19:32:52 +0300 Date: Tue, 21 Nov 2000 19:32:52 +0300 From: "Igor' Robul'" To: freebsd-questions@freebsd.org Subject: Re: Systems programming questions... Message-ID: <20001121193252.B29687@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@freebsd.org References: <20001121092902.A6568@online.dct.com> <20001121173651.C9661@ringworld.oblivion.bg> <20001121095053.B6568@online.dct.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <20001121095053.B6568@online.dct.com>; from markm@online.dct.com on Tue, Nov 21, 2000 at 09:50:53AM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Nov 21, 2000 at 09:50:53AM -0600, Mark wrote: > with the "ifconfig ... alias" system call. I guess the next step is to look > at the source for /sbin/ifconfig, like you suggested. But I think that better is just use execl(3) to execute ifconfig. This guarant that your C program will work even if somethink in kernel or ifconfig will be changed. -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 8:35:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fire.adept.co.za (fire.adept.co.za [196.25.67.3]) by hub.freebsd.org (Postfix) with ESMTP id 1B40137B4CF for ; Tue, 21 Nov 2000 08:35:15 -0800 (PST) Received: from loser ([64.245.8.249]) by fire.adept.co.za (8.9.3/8.9.3) with SMTP id SAA28525 for ; Tue, 21 Nov 2000 18:35:12 +0200 From: "Human" To: "freebsdquestions" Subject: filesystem/dir file? Date: Tue, 21 Nov 2000 18:36:05 +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.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG HI Ive tried this in SCO UW7, Redhat and FBSD 4.0. If u make a empty directory and then run a script in it to produce a couple thousand empty files , u will note that the size of the actual directory file increases, which is normal because the actual file names of the files u have created in the dir and their inode numbers are stored in the directory file. The strange thing is once u delete the files in the directory the size of the directory file does NOT decrease, why??? I presume the reference to the file is removed but it seems (im not sure about the wording) the placeholder or buffer in the directory file does not get removed therefore it stays the same size. My question is why does it not empty the file properly this seems like a large waste of space, the only conclusion I can come to is in the old days (b4 I was born) computers were too slow and it would have used up unnecessary resources????? Any one have a better theory? Regards J-P Human To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 8:48:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from alpha.ces.cwru.edu (alpha.CES.CWRU.Edu [129.22.16.10]) by hub.freebsd.org (Postfix) with ESMTP id 023ED37B4C5 for ; Tue, 21 Nov 2000 08:48:17 -0800 (PST) Received: from akasha (akasha [129.22.16.70]) by alpha.ces.cwru.edu (8.9.3+Sun/8.9.1) with ESMTP id LAA27672 for ; Tue, 21 Nov 2000 11:48:13 -0500 (EST) Date: Tue, 21 Nov 2000 11:48:12 -0500 (EST) From: David Carlin X-Sender: djc6@akasha.CES.CWRU.Edu To: freebsd-questions@FreeBSD.ORG Subject: Bridging Loop Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I'm in the testing phases of setting up a bridge/firewall for a lab at the university I work for. The lab has about 60 computers and is currently uplinked to a network of over 13,000 hosts (with usually about 9,000 online at any given time). The campus network is one giant bridged network; every host is on the same subnet. Right now I have the internal interface hooked up to a single computer via a crossover cable. The external interface is hooked up to a 5 port hub with some other machines. The machines on the 5 side can access the machine behind the firewall without any problems. When I replace the 5 port hub with a connection to the campus network however, I get looping errors and about 90% packet loss to the machine hooked up via the crossover cable. I don't know where the loop errors are coming from; the machine with the crossover cable only has one interface, so I don't see how there are multiple paths to it. Is the bridge table getting full or something? I don't even know how large it is (8192?) Thanks for the info! -- David Carlin -- djc6@scl.cwru.edu | Case Western Reserve University Manager, Smith Computer Lab | 10900 Euclid Ave. Phone: (216) 368-5066 | A.W. Smith Building Room #103 Fax: (216) 368-5461 | Cleveland, OH 44106-7071 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 8:50:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from falcon.sourcee.com (falcon.sourcee.com [12.11.130.185]) by hub.freebsd.org (Postfix) with ESMTP id 7CD1637B4E5 for ; Tue, 21 Nov 2000 08:50:30 -0800 (PST) Received: from fremont.sourcee.com (56-135.sourcee.com [12.7.135.56] (may be forged)) by falcon.sourcee.com (8.9.3/8.9.3) with ESMTP id LAA04890 for ; Tue, 21 Nov 2000 11:50:24 -0500 (EST) Message-ID: <3A1AA831.9234B23C@fremont.sourcee.com> Date: Tue, 21 Nov 2000 08:52:01 -0800 From: Chimon Yeung X-Mailer: Mozilla 4.75 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: UNIX Subject: About MARS_NWE & CVS Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Where can I get a good tutorial on how to install MARS_NWE, CVS system? -- Thanks, Chimon Yeung To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 8:55:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sigbus.com (sigbus.com [207.211.10.110]) by hub.freebsd.org (Postfix) with ESMTP id 7089C37B4C5 for ; Tue, 21 Nov 2000 08:55:48 -0800 (PST) Received: (from henrich@localhost) by sigbus.com (8.9.3/8.9.3) id IAA37748; Tue, 21 Nov 2000 08:55:41 -0800 (PST) (envelope-from henrich) Date: Tue, 21 Nov 2000 08:55:40 -0800 From: Charles Henrich To: Cejka Rudolf Cc: questions@FreeBSD.ORG Subject: Re: DES Passwords on 4.1.1? Message-ID: <20001121085540.E37579@sigbus.com> References: <20001121151536.A85962@dcse.fee.vutbr.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <20001121151536.A85962@dcse.fee.vutbr.cz> X-Operating-System: FreeBSD 3.3-RELEASE X-PGP-Fingerprint: 1024/F7 FD C7 3A F5 6A 23 BF 76 C4 B8 C9 6E 41 A4 4F Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On the subject of Re: DES Passwords on 4.1.1?, Cejka Rudolf stated: > Charles Henrich wrote (2000/11/20): > > What new magic is there on 4.1.1 to use DES passwords? I see the package > > is no longer an install option, and by default it creates all passwords > > MD5... Anyone? > > Add "passwd_format=des" in your login.conf in default section. It should be > sufficient to generate DES passwords again. That didnt seem to do it, im running yppasswd to set the accounts and on any 4.1.1 machines it sets it as the MD5 password, if I do it on any older FreeBSD boxes it works as expected. This is becoming a nightmare as we have non-FreeBSD boxes accessing the same YP server and its breaking logins for us :( Any other ideas? -Crh Charles Henrich Manex Visual Effects henrich@sigbus.com http://www.sigbus.com/~henrich To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 9: 6: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from orion.sfsu.edu (orion.sfsu.edu [130.212.10.236]) by hub.freebsd.org (Postfix) with ESMTP id D71C237B4CF for ; Tue, 21 Nov 2000 09:06:00 -0800 (PST) Received: from localhost (mrhow@localhost) by orion.sfsu.edu (8.8.7/8.8.7) with SMTP id JAA06577 for ; Tue, 21 Nov 2000 09:05:53 -0800 (PST) Date: Tue, 21 Nov 2000 09:05:52 -0800 (PST) From: HOWARD LEW To: freebsd-questions@freebsd.org Subject: bridge and system stability Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I recently upgraded from FreeBSD 2.2.8 to FreeBSD 4.1.1 with a fresh install. This new version seems to support xl0 and fxp0 for a bridge. Although the bridge seems to work great, I am now faced with the issue of system instability and frequent system reboots. Is this a known issue? Thanks in advance for any help. Howard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 9: 6:47 2000 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 886AA37B4CF for ; Tue, 21 Nov 2000 09:06:43 -0800 (PST) Received: from rac3.wam.umd.edu (IDENT:root@rac3.wam.umd.edu [128.8.10.143]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id MAA20552; Tue, 21 Nov 2000 12:06:26 -0500 (EST) Received: from rac3.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac3.wam.umd.edu (8.9.3/8.9.3) with SMTP id MAA26019; Tue, 21 Nov 2000 12:06:26 -0500 (EST) Received: from localhost (culverk@localhost) by rac3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id MAA26005; Tue, 21 Nov 2000 12:06:26 -0500 (EST) X-Authentication-Warning: rac3.wam.umd.edu: culverk owned process doing -bs Date: Tue, 21 Nov 2000 12:06:26 -0500 (EST) From: Kenneth Wayne Culver To: "Ricardo A.Falasca" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 3Com Megahertz PC-Card (CardBus) In-Reply-To: <00112110134505.00294@ricardo.usaway.com.br> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG FreeBSD 4.x doesn't support cardbus yet. FreeBSD -CURRENT has it but I wouldn't reccomend using -CURRENT right now. ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= On Tue, 21 Nov 2000, Ricardo A.Falasca wrote: > > Hi, > > I have a 3Com Megahertz PC-Card (CardBus) Model 3CCFEM656B 10/100 > LAN+56k modem, and I can't use it, is possible? I need install, isn't WinModem > .... > Somebody can help me!?? My mail is: ricardo@escalena.com and I'm using > FreeBSD 4.1-RELEASE. > > Thanks > > -- > Ricardo A. Falasca > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 21 9: 8:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oberon.dnai.com (oberon.dnai.com [207.181.194.97]) by hub.freebsd.org (Postfix) with ESMTP id 431D937B4CF for ; Tue, 21 Nov 2000 09:08:34 -0800 (PST) Received: from neptune.dnai.com (neptune.dnai.com [207.181.194.93]) by oberon.dnai.com (8.9.3/8.9.3) with ESMTP id JAA80292 for ; Tue, 21 Nov 2000 09:08:33 -0800 (PST) Received: from cougar.chiplogic.com (cougar.chiplogic.com [216.15.52.34]) by neptune.dnai.com (8.9.3/8.9.3) with ESMTP id JAA75178 for ; Tue, 21 Nov 2000 09:08:33 -0800 (PST) Received: from ws4.chiplogic.com (quokka [216.15.52.58]) by cougar.chiplogic.com (8.9.1b+Sun/8.9.1) with ESMTP id JAA26289 for ; Tue, 21 Nov 2000 09:08:26 -0800 (PST) Received: from chiplogic.com (localhost [127.0.0.1]) by ws4.chiplogic.com (8.9.3+Sun/8.9.1) with ESMTP id JAA06166 for ; Tue, 21 Nov 2000 09:08:14 -0800 (PST) Message-ID: <3A1AABFE.4E885722@chiplogic.com> Date: Tue, 21 Nov 2000 09:08:14 -0800 From: Justin Wojdacki X-Mailer: Mozilla 4.75 [en] (X11; U; SunOS 5.7 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: Mounting OpenBSD partitions Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Should be an easy one here: I just installed FreeBSD 4.0 on a machine I had laying around and I'd like to copy data from some OpenBSD HDDs I've got sitting idle. FreeBSD doesn't see any disklabels for the drives (but I'm not sure where they're stored, so this might not be unusual). fdisk recognizes the OpenBSD partitions on the drives. What do I need to do to be able to mount these drives? -- --------------------- Justin Wojdacki justin@chiplogic.com Chiplogic Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 9: 9:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from apollo.retec.net (apollo.retec.net [207.99.22.10]) by hub.freebsd.org (Postfix) with ESMTP id 29BDB37B479 for ; Tue, 21 Nov 2000 09:09:40 -0800 (PST) Received: from newken (dhcp100.retec.net [207.99.22.100]) by apollo.retec.net (8.9.3/8.9.0) with SMTP id MAA14790; Tue, 21 Nov 2000 12:03:09 -0500 (EST) Message-ID: <058401c053dd$c96b3ca0$641663cf@icarz.com> From: "Ken Menzel" To: , References: <200011201441.JAA24184@www-dc-14.digiserve.com> Subject: Re: Bootable RAID Date: Tue, 21 Nov 2000 12:09:19 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi Colin, We use the DPT Smartraid VI, Which BTW is now an Adaptec something or other, and the raid array boots just like any normal disk. The RAID array appears to the kernel as a normal SCSI disk. My last install with 4.1.1, I just created the array, then booted from the CDROM and installed. Quick and easy. Ken ----------------------------------------------------- Ken Menzel ICQ# 9325188 www.icarz.com kenm@icarz.com ----- Original Message ----- From: "Colin O'Brien" To: Sent: Monday, November 20, 2000 12:40 PM Subject: Bootable RAID > I notice that the recent iterations of FreeBSD (4.1.1, 4.2 RC1) include support > for newer (read, available and affordable, plus Ultra 160 and therefore > consistent with hard drives that are available) RAID controllers such as Adaptec > 2100S, DPT SmartRaid VI and Mylex AcceleRAID 170. > > I cannot find any mention if you can boot from these controllers? > > If this is not supported, is this a case of 'not yet', or is there some > technical reasons why they will never be able to support booting in FreeBSD? > > Thanks in advance for your help > Colin > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 21 9:18:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp22.singnet.com.sg (smtp22.singnet.com.sg [165.21.101.202]) by hub.freebsd.org (Postfix) with ESMTP id 9037B37B4C5 for ; Tue, 21 Nov 2000 09:18:41 -0800 (PST) Received: from netserver01 (ad202.166.105.83.magix.com.sg [202.166.105.83]) by smtp22.singnet.com.sg (8.11.0/8.11.0) with SMTP id eALHIcS63804 for ; Wed, 22 Nov 2000 01:18:38 +0800 (SGT) Message-Id: <3.0.32.20001122011854.017d2810@smtp.magix.com.sg> X-Sender: spades@smtp.magix.com.sg X-Mailer: Windows Eudora Pro Version 3.0 (32) Date: Wed, 22 Nov 2000 01:18:54 +0800 To: freebsd-questions@freebsd.org From: Spades Subject: FreeBSD upgrade from 3.5stable to 4.2stable Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Got an error while doing: make buildword Any idea? rm -f .depend /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/GPATH /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/GRTAGS /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/GSYMS /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/GTAGS cd /usr/src/gnu/usr.bin/perl/miniperl && make miniperl Extracting config.h (with variable substitutions) cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl -c /usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5/miniperlmain.c ln -sf /usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5/op.c opmini.c cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl -c opmini.c cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl -L/usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl -static -o miniperl miniperlmain.o opmini.o /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl/libperl.a -lm -lcrypt -lutil /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl/libperl.a(pp_hot.o): In function `Perl_pp_aassign': pp_hot.o(.text+0x16a1): undefined reference to `setresuid' pp_hot.o(.text+0x16d4): undefined reference to `setresgid' *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. bash-2.04# To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 9:24: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gw.carpoolbc.com (cr45465-a.abtsfd1.bc.wave.home.com [24.113.176.126]) by hub.freebsd.org (Postfix) with ESMTP id D034637B479; Tue, 21 Nov 2000 09:23:57 -0800 (PST) Received: from localhost (roop@localhost) by gw.carpoolbc.com (8.11.1/8.9.3) with ESMTP id eALHOdd01909; Tue, 21 Nov 2000 09:24:39 -0800 (PST) (envelope-from roop@gw.carpoolbc.com) Date: Tue, 21 Nov 2000 09:24:39 -0800 (PST) From: Roop Nanuwa To: Ruslan Ermilov Cc: Zero Sum , freebsd-questions@FreeBSD.ORG Subject: Re: Natd failed to write packet In-Reply-To: <20001121100346.C44207@sunbay.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hmm.. this is wierd because my firewall (embarissingly enough) is wide open.. there's only one rule: add allow all from any to any Which *shouldn't* (from what I know) block anything at all.. I'm not sure if your reply still applies then.. but I'll look into the log keyword.. Thanks, RSN On Tue, 21 Nov 2000, Ruslan Ermilov wrote: > The "Permission Denied" messages from natd(8) mean that your firewall > is blocking packets written back by natd(8). Check you ruleset, add > the "log" keyword to "deny" rules, and see what happens. > > On Mon, Nov 20, 2000 at 06:23:28PM -0800, Roop Nanuwa wrote: > > I keep getting this wierd message on my console: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 9:34:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from host.windsor.igs.net (host.windsor.igs.net [216.58.102.2]) by hub.freebsd.org (Postfix) with ESMTP id C175037B479 for ; Tue, 21 Nov 2000 09:34:18 -0800 (PST) Received: from localhost (rmasse@localhost) by host.windsor.igs.net (8.9.3/8.9.2) with ESMTP id MAA12042 for ; Tue, 21 Nov 2000 12:34:12 -0500 (EST) (envelope-from rmasse@host.windsor.igs.net) Date: Tue, 21 Nov 2000 12:34:11 -0500 (EST) From: Ryan Masse To: freebsd-questions@freebsd.org Subject: readwrite filesystem Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I just forgot to add a trailing quote in the rc.conf and now my system boots readonly.. how can i mount he filesystem as readwrite in order to edit the rc.conf file. thx in advance Ryan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 9:38:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from borg.starbase.net (unknown [208.233.101.2]) by hub.freebsd.org (Postfix) with ESMTP id 7514037B4D7 for ; Tue, 21 Nov 2000 09:38:37 -0800 (PST) Received: from localhost (alex@localhost) by borg.starbase.net (8.9.3/8.8.8) with ESMTP id MAA08488; Tue, 21 Nov 2000 12:40:39 -0500 (EST) Date: Tue, 21 Nov 2000 12:40:37 -0500 (EST) From: Alexander V P X-Sender: alex@borg.starbase.net To: Ryan Masse Cc: freebsd-questions@FreeBSD.ORG Subject: Re: readwrite filesystem In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG try : #mount -u / hth alex On Tue, 21 Nov 2000, Ryan Masse wrote: > I just forgot to add a trailing quote in the rc.conf and now my system > boots readonly.. how can i mount he filesystem as readwrite in order to > edit the rc.conf file. > > thx in advance > Ryan > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 9:40:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from server1.lojasobino.com.br (server1.lojasobino.com.br [200.248.23.150]) by hub.freebsd.org (Postfix) with ESMTP id 5C90D37B4C5 for ; Tue, 21 Nov 2000 09:40:07 -0800 (PST) Received: from pc2 (pc2.lojasobino.com.br [128.1.1.101]) by server1.lojasobino.com.br (8.10.2/8.10.2) with SMTP id eALHgYm29057 for ; Tue, 21 Nov 2000 15:42:35 -0200 (EDT) Message-ID: <004501c053e1$725209e0$65010180@lojasobino.com.br> From: "Fabrizzio Batista" To: Subject: NAT with redirect_address Date: Tue, 21 Nov 2000 15:35:30 -0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi gurus, I´m using redirect_address and everything are fine, but when I try to out all outgoing packets I have the same public IP. | PC1 - 192.168.1.10 | ----------------------> 200.248.1.1 | | |---------------------------| Server with NAT - 200.248.1.1 | | | PC2 - 192.168.1.20 | --------------------------------> 200.248.1.1 How can I do to make internals ips get out with differents IPs ??? | PC1 - 192.168.1.10 | --------------------------------> 200.248.1.3 | | |---------------------------| Server with NAT - 200.248.1.1 | | | PC2 - 192.168.1.20 | --------------------------------> 200.248.1.4 natd -n rl0 -redirect_address 192.168.1.10 200.248.1.3 -redirect_address 192.168.1.20 200.248.1.4 Thanks in advance, Fabrizzio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 9:42: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from berzerk.gpcc.itd.umich.edu (berzerk.gpcc.itd.umich.edu [141.211.2.162]) by hub.freebsd.org (Postfix) with ESMTP id 0C92D37B479 for ; Tue, 21 Nov 2000 09:41:59 -0800 (PST) Received: from seawolf.gpcc.itd.umich.edu (smtp@seawolf.gpcc.itd.umich.edu [141.211.2.153]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id MAA13590; Tue, 21 Nov 2000 12:41:53 -0500 (EST) Received: from localhost (timcm@localhost) by seawolf.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id MAA24507; Tue, 21 Nov 2000 12:41:52 -0500 (EST) Date: Tue, 21 Nov 2000 12:41:52 -0500 (EST) From: Tim McMillen X-Sender: timcm@seawolf.gpcc.itd.umich.edu To: David Sebastiao Staroy Cc: freebsd-questions@FreeBSD.ORG Subject: Re: URGENTE In-Reply-To: <000e01c053b9$32a4f320$3370c80a@cta.serpro.gov.br> Message-ID: 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 X-Loop: FreeBSD.ORG Lo siento, no entiendo portuguesa pero entieno un poco espanol. Hay una lista portuguesa. Ver a http://www.freebsd.org/support.html#mailing-list Enviar un correo a listproc@br.FreeBSD.org con la palabra subscribe Buena suerte, =09=09=09=09=09=09Tim ----------------------------------------------- "A government big enough to give you everything you want, is a government big enough to take from you everything you have." =09=09=09=09-Gerald Ford ----------------------------------------------- On Tue, 21 Nov 2000, David Sebastiao Staroy wrote: > Poderiam me informar o endere=E7o do FREEBSD no BRASIL, poderiam me respo= nder uma pergunta? >=20 > Como eu chamo uma interfa=E7e grafica no FREEBSD,=20 > pois j=E1 instaley o windowmaker-0.62.1tgz. >=20 >=20 > grato >=20 > meu email =E9 >=20 > staroy@araucaria.cta.serpro.gov.br >=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 9:43: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from c012.sfo.cp.net (c012-h005.c012.sfo.cp.net [209.228.13.96]) by hub.freebsd.org (Postfix) with SMTP id CA1A837B479 for ; Tue, 21 Nov 2000 09:43:00 -0800 (PST) Received: (cpmta 2882 invoked from network); 21 Nov 2000 09:42:54 -0800 Date: 21 Nov 2000 09:42:54 -0800 Message-ID: <20001121174254.2881.cpmta@c012.sfo.cp.net> X-Sent: 21 Nov 2000 17:42:54 GMT Received: from [4.4.9.172] by mail.altavista.com with HTTP; 21 Nov 2000 09:42:53 PST Content-Type: text/plain Content-Disposition: inline Mime-Version: 1.0 To: freebsd-questions@FreeBSD.ORG From: ted f X-Mailer: Web Mail 3.8.1.1 Subject: Re:confused Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Im really CONFUSED on what files to download for the FREEBSD OPERATING SYSTEM. I need the CORE files to install the os on my system. Please give me a list of the MAIN FILES to download, So I can copy them to a cdrom disk, AND Then Install the os. Also, Here's an Idea for you guys.... TO MAKE IT EASY FOR PEOPLE THAT DONT UNDERSTAND "HOW TO DOWNLOAD THE FILES" SIMPLY MAKE ONE DOWNLOADABLE FILE (LIKE...FreeBSD_v5_CORE.ZIP), THIS WILL HELP ALOT OF PEOPLE IN THE LONG RUN, I KNOW THAT FILE WOULD BE VERY HUGE BUT...EASY. THANKS TED F. TED FRANKFOURTH _______________________________________________________________________ Free Unlimited Internet Access! Try it now! http://www.zdnet.com/downloads/altavista/index.html _______________________________________________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 9:45:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bumper.jellybaby.net (bumper.jellybaby.net [194.159.247.1]) by hub.freebsd.org (Postfix) with ESMTP id 1BC9137B479 for ; Tue, 21 Nov 2000 09:45:18 -0800 (PST) Received: (from simond@localhost) by bumper.jellybaby.net (8.9.2/8.9.2) id RAA43217; Tue, 21 Nov 2000 17:45:14 GMT (envelope-from simond) Date: Tue, 21 Nov 2000 17:45:13 +0000 From: simond@irrelevant.org To: ted f Cc: freebsd-questions@FreeBSD.ORG Subject: Re: confused Message-ID: <20001121174513.G31358@irrelevant.org> References: <20001121174254.2881.cpmta@c012.sfo.cp.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20001121174254.2881.cpmta@c012.sfo.cp.net>; from tedjf@altavista.com on Tue, Nov 21, 2000 at 09:42:54AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Nov 21, 2000 at 09:42:54AM -0800, ted f wrote: > Hello, > > Im really CONFUSED on what files to download > for the FREEBSD OPERATING SYSTEM. > > I need the CORE files to install the os on my > system. > > Please give me a list of the MAIN FILES to > download, So I can copy them to a cdrom disk, > AND Then Install the os. > > Also, Here's an Idea for you guys.... > > TO MAKE IT EASY FOR PEOPLE THAT DONT UNDERSTAND > "HOW TO DOWNLOAD THE FILES" SIMPLY MAKE ONE > DOWNLOADABLE FILE (LIKE...FreeBSD_v5_CORE.ZIP), > THIS WILL HELP ALOT OF PEOPLE IN THE LONG RUN, > I KNOW THAT FILE WOULD BE VERY HUGE BUT...EASY. Try ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/4.2-install.iso and burn it to a CD, there you go, nice and simple as one file :) -- Simon Dick simond@irrelevant.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 9:49: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from borg.starbase.net (unknown [208.233.101.2]) by hub.freebsd.org (Postfix) with ESMTP id D3F7737B479 for ; Tue, 21 Nov 2000 09:49:00 -0800 (PST) Received: from localhost (alex@localhost) by borg.starbase.net (8.9.3/8.8.8) with ESMTP id MAA08530; Tue, 21 Nov 2000 12:51:11 -0500 (EST) Date: Tue, 21 Nov 2000 12:51:11 -0500 (EST) From: Alexander V P X-Sender: alex@borg.starbase.net To: ted f Cc: freebsd-questions@FreeBSD.ORG Subject: Re:confused In-Reply-To: <20001121174254.2881.cpmta@c012.sfo.cp.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hm, we do have one BIIIIIIIIIIG file. it's an iso file. download that iso file, burn cd and there you go. here's link to newest FreeBSD release. ftp://ftp.FreeBSD.org/pub/FreeBSD/releases/i386/ISO-IMAGES/4.2-install.iso hth alex p.s. thank you for the idea On 21 Nov 2000, ted f wrote: > Hello, > > Im really CONFUSED on what files to download > for the FREEBSD OPERATING SYSTEM. > > I need the CORE files to install the os on my > system. > > Please give me a list of the MAIN FILES to > download, So I can copy them to a cdrom disk, > AND Then Install the os. > > Also, Here's an Idea for you guys.... > > TO MAKE IT EASY FOR PEOPLE THAT DONT UNDERSTAND > "HOW TO DOWNLOAD THE FILES" SIMPLY MAKE ONE > DOWNLOADABLE FILE (LIKE...FreeBSD_v5_CORE.ZIP), > THIS WILL HELP ALOT OF PEOPLE IN THE LONG RUN, > I KNOW THAT FILE WOULD BE VERY HUGE BUT...EASY. > > THANKS > TED F. > > > TED FRANKFOURTH > _______________________________________________________________________ > > Free Unlimited Internet Access! Try it now! > http://www.zdnet.com/downloads/altavista/index.html > > _______________________________________________________________________ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 21 9:52:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gw.carpoolbc.com (cr45465-a.abtsfd1.bc.wave.home.com [24.113.176.126]) by hub.freebsd.org (Postfix) with ESMTP id DF5F937B4C5 for ; Tue, 21 Nov 2000 09:52:11 -0800 (PST) Received: from localhost (roop@localhost) by gw.carpoolbc.com (8.11.1/8.9.3) with ESMTP id eALHpuB12278; Tue, 21 Nov 2000 09:51:56 -0800 (PST) (envelope-from roop@gw.carpoolbc.com) Date: Tue, 21 Nov 2000 09:51:56 -0800 (PST) From: Roop Nanuwa To: ted f Cc: freebsd-questions@FreeBSD.ORG Subject: Re:confused In-Reply-To: <20001121174254.2881.cpmta@c012.sfo.cp.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hmm.. have you looked at the directory structure on the FTP site? There are more ways to download/install FreeBSD than I can count.. > download, So I can copy them to a cdrom disk, > AND Then Install the os. If you want to copy the files to CD then use the ISO's that are available under: /pub/FreeBSD/releases//ISO-IMAGES/ With replaced with either i386 or alpha.. > TO MAKE IT EASY FOR PEOPLE THAT DONT UNDERSTAND > "HOW TO DOWNLOAD THE FILES" SIMPLY MAKE ONE > DOWNLOADABLE FILE (LIKE...FreeBSD_v5_CORE.ZIP), > THIS WILL HELP ALOT OF PEOPLE IN THE LONG RUN, > I KNOW THAT FILE WOULD BE VERY HUGE BUT...EASY. Don't use all caps, it's rude and annoying. And see above for the 'one downloadable file' that you're looking for... RSN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 9:59:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.caramail.com (mail.caramail.com [195.68.99.70]) by hub.freebsd.org (Postfix) with ESMTP id B3F2337B4CF for ; Tue, 21 Nov 2000 09:59:10 -0800 (PST) Received: from caramail.com (www25.caramail.com [195.68.99.45]) by mail.caramail.com (8.8.8/8.8.8) with SMTP id RAA06637 for freebsd-questions@FreeBSD.ORG; Tue, 21 Nov 2000 17:54:17 GMT Posted-Date: Tue, 21 Nov 2000 17:54:17 GMT From: edouard.longe@caramail.com To: freebsd-questions@FreeBSD.ORG Message-ID: <974806605017027@caramail.com> X-Mailer: Caramail - www.caramail.com X-Originating-IP: [212.208.74.102] Mime-Version: 1.0 Subject: ps Content-Type: multipart/mixed; boundary="=_NextPart_Caramail_017027974806605_ID" Date: Tue, 21 Nov 2000 09:59:10 -0800 (PST) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk 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_Caramail_017027974806605_ID Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hello, i've got a newbie problem. When i execute 'ps' command , there is an error message: "ps: proc size mitmatch (18864 total, 1056 chunks)". Thanks for your help Ed.

______________________________________________________
Boîte aux lettres - Caramail - http://www.caramail.com

--=_NextPart_Caramail_017027974806605_ID-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 9:59:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.cpmet.ufpel.tche.br (unknown [200.248.148.33]) by hub.freebsd.org (Postfix) with ESMTP id 4339837B4CF for ; Tue, 21 Nov 2000 09:59:22 -0800 (PST) Received: from localhost (casantos@localhost) by gate.cpmet.ufpel.tche.br (8.9.3/8.9.3) with ESMTP id SAA23044 for ; Tue, 21 Nov 2000 18:02:34 GMT (envelope-from casantos@cpmet.ufpel.tche.br) X-Authentication-Warning: gate.cpmet.ufpel.tche.br: casantos owned process doing -bs Date: Tue, 21 Nov 2000 18:02:33 +0000 (GMT) From: Carlos A M dos Santos To: questions@FreeBSD.org Subject: C-Media CMI8x38 (cmpci) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello. Is there some ongoing effort to port the C-Media CMI8x38 (cmpci) driver to FreeBSD? Searching the mailing list archives I found a patch by Takuya SHIOZAKI but it seems to be for FreeBSD 3.x. Please CC the answers to me, because I currently don't subscribe the list. Thanks -- Carlos A. M. dos Santos Federal University of Pelotas Meteorological Research Center Av. Ildefonso Simoes Lopes 2791 Pelotas, RS, Brasil, CEP 96060-290 WWW: http://www.cpmet.ufpel.tche.br RENPAC (X.25): 153231641 Phone: +55 53 277-6767 FAX: +55 53 277-6722 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 9:59:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from isp.mabna.net (unknown [194.165.22.75]) by hub.freebsd.org (Postfix) with ESMTP id AED6637B4C5 for ; Tue, 21 Nov 2000 09:59:43 -0800 (PST) Received: from Z9H5K9 ([192.168.11.111]) by isp.mabna.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.1960.3) id XKSTHAS3; Tue, 21 Nov 2000 20:43:04 +0330 MIME-Version: 1.0 To: "PUBLIC" <> From: znc@mabna.org Subject: TRADING Content-Type: multipart/mixed; boundary="divider" Message-Id: <20001121175943.AED6637B4C5@hub.freebsd.org> Date: Tue, 21 Nov 2000 09:59:43 -0800 (PST) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --divider Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Dear Sir or Madam If you are producer or exporter & importer, please let me know the field of your activity. If you have any catalog, please send me one. My address: P.O.Box 14155 - 5841 Tehran, Iran Tel & Fax: +98 21 742 4714 E-mail: znc@mabna.org Yours sincerely, F.Shahbazi --divider-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 10: 1:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www-dc-14.digiserve.com (unknown [151.196.211.248]) by hub.freebsd.org (Postfix) with ESMTP id 69EDD37B479 for ; Tue, 21 Nov 2000 10:01:46 -0800 (PST) Received: from coach (w019.z064001087.bos-ma.dsl.cnc.net [64.1.87.19]) by www-dc-14.digiserve.com (8.9.1/8.9.1) with SMTP id NAA01725 for ; Tue, 21 Nov 2000 13:03:25 -0500 (EST) Message-Id: <200011211803.NAA01725@www-dc-14.digiserve.com> Reply-To: From: "Colin O'Brien" To: Subject: RE: Bootable RAID Date: Tue, 21 Nov 2000 13:02:31 -0800 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2377.0 In-Reply-To: <00112016591601.03114@marbsd.tninet.se> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks to Mark (and others who replied) for threading me correctly through the FreeBSD web-site and to Mike Smith for this very clear answer... On Monday 20 November 20 2000 12:41, Mike Smith write > All of the supported controllers can be installed to and booted from on > x86. See the Alpha notes for Alpha systems. On Monday 20 November 2000 08:59, Mark Rowlands wrote > On Monday 20 November 2000 17:40, Colin O'Brien wrote: > > I notice that the recent iterations of FreeBSD (4.1.1, 4.2 RC1) include > > support for newer (read, available and affordable, plus Ultra 160 and > > therefore consistent with hard drives that are available) RAID controllers > > such as Adaptec 2100S, DPT SmartRaid VI and Mylex AcceleRAID 170. > > > > I cannot find any mention if you can boot from these controllers? > > > > If this is not supported, is this a case of 'not yet', or is there some > > technical reasons why they will never be able to support booting in > > FreeBSD? > > > > Thanks in advance for your help > > Colin > > > > > > > > a qualified yes (my acceleraid 250 works) > > and may I point you towards > > http://people.freebsd.org/~msmith/RAID/index.html > > for a more learned viewpoint > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 10: 4: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.100.7]) by hub.freebsd.org (Postfix) with ESMTP id 3516037B4CF for ; Tue, 21 Nov 2000 10:03:58 -0800 (PST) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.9.3/8.9.3) with ESMTP id NAA116394; Tue, 21 Nov 2000 13:03:49 -0500 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <017001c05334$1ac692c0$1f00a8c0@oleh> References: <017001c05334$1ac692c0$1f00a8c0@oleh> Date: Tue, 21 Nov 2000 13:03:47 -0500 To: "Lava Technical Support" , From: Garance A Drosihn Subject: Re: Question about Apple Macintosh Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 3:54 PM -0500 11/20/00, Lava Technical Support wrote: > >Do you expect to have support for Apple G3 or G4 Macintosh >machines in the future? There is a good chance of a freebsd/ppc in the future. There is already a netbsd/ppc, and I believe openbsd will see a powerPC (g3/g4) port with release 2.8, which is scheduled for release in the next three or four weeks. -- --- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 10: 4:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.isg.siue.edu (mail.isg.siue.edu [146.163.5.4]) by hub.freebsd.org (Postfix) with ESMTP id 0680737B4CF for ; Tue, 21 Nov 2000 10:04:17 -0800 (PST) Received: from cougar.isg.siue.edu (cougar [146.163.5.29]) by mail.isg.siue.edu (8.9.1/8.9.1) with ESMTP id MAA04608 for ; Tue, 21 Nov 2000 12:02:01 -0600 (CST) Received: (from nobody@localhost) by cougar.isg.siue.edu (8.9.1/8.9.1) id MAA24021; Tue, 21 Nov 2000 12:02:01 -0600 (CST) Date: Tue, 21 Nov 2000 12:02:01 -0600 (CST) From: vcardon@siue.edu Message-Id: <200011211802.MAA24021@cougar.isg.siue.edu> X-Authentication-Warning: cougar.isg.siue.edu: nobody set sender to vcardon@siue.edu using -f To: freebsd-questions@freebsd.org Reply-To: vcardon@siue.edu MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP3 Imap webMail Program 2.0.11 X-Originating-IP: 24.17.229.11 Subject: help with ipfw Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi everyone, I am trying to setup a FreeBSD gateway that will have a firewall running as well. The outside interface is connected to a cable modem, and the inside interface goes to my internal LAN. I have followed the how-to at http://www.mostgraveconcern.com/freebsd , and everything works fine, untill I switch my firewall from type open to simple. Basically, when I switch to \"simple\" I lose all network connectivity. I cannot even ping out from the gateway. Does anyone have any suggestions as to what I can do to correct this? Thanks, Victor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 10: 4:45 2000 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 58B3937B4CF for ; Tue, 21 Nov 2000 10:04:43 -0800 (PST) Received: by kendra.ne.mediaone.net (Postfix, from userid 1001) id 1A4CF8C4A; Tue, 21 Nov 2000 13:04:34 -0500 (EST) To: freebsd-questions@freebsd.org Subject: max files per process and system? Message-Id: <20001121180434.1A4CF8C4A@kendra.ne.mediaone.net> Date: Tue, 21 Nov 2000 13:04:34 -0500 (EST) From: ahd@kew.com (Drew Derbyshire) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG What's the max files (TCP connections) one can configure per (non-root) user and per system? I'm not looking for the defaults, I'm looking for the upper limits. Does it require a kernel rebuilt? Thanks -ahd- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 10: 8:52 2000 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 5F1DE37B479 for ; Tue, 21 Nov 2000 10:08:49 -0800 (PST) Received: from m235-mp1-cvx1b.gui.ntl.com ([62.252.8.235]) by mta06-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001121180316.IKXZ5359.mta06-svc.ntlworld.com@m235-mp1-cvx1b.gui.ntl.com>; Tue, 21 Nov 2000 18:03:16 +0000 Date: Tue, 21 Nov 2000 18:03:55 +0000 (GMT) From: George Reid X-Sender: geeorgy@sobek.openirc.co.uk To: edouard.longe@caramail.com Cc: freebsd-questions@freebsd.org Subject: Re: ps In-Reply-To: <974806605017027@caramail.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 21 Nov 2000 edouard.longe@caramail.com wrote: > Hello, i've got a newbie problem. When i execute 'ps' command , there is > an error message: "ps: proc size mitmatch (18864 total, 1056 chunks)". > Thanks for your help Ed. This is a symptom of your kernel being out of sync with the rest of your world. Remake the world and the problem will go away. G "And then it comes to be that the soothing light at the end of your tunnel was just a freight train, comin' your way." George Reid * greid@ukug.uk.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 Nov 21 10:17:27 2000 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 B9E2537B4D7 for ; Tue, 21 Nov 2000 10:17:20 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.0/8.11.0) id eALIGrE95786; Tue, 21 Nov 2000 20:16:53 +0200 (EET) (envelope-from ru) Date: Tue, 21 Nov 2000 20:16:53 +0200 From: Ruslan Ermilov To: Roop Nanuwa Cc: Zero Sum , freebsd-questions@FreeBSD.ORG Subject: Re: Natd failed to write packet Message-ID: <20001121201653.A95440@sunbay.com> Mail-Followup-To: Roop Nanuwa , Zero Sum , freebsd-questions@FreeBSD.ORG References: <20001121100346.C44207@sunbay.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 roop@gw.carpoolbc.com on Tue, Nov 21, 2000 at 09:24:39AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG If you do not run custom networking code, the ip_output() (which is used to push the packet back into IP flow by writing the packet as outgoing through divert(4) socket) can only return EPERM from the firewall. Not sure if IP Filter causes the same error or not. On Tue, Nov 21, 2000 at 09:24:39AM -0800, Roop Nanuwa wrote: > > Hmm.. this is wierd because my firewall (embarissingly enough) is > wide open.. there's only one rule: > > add allow all from any to any > > Which *shouldn't* (from what I know) block anything at all.. I'm not > sure if your reply still applies then.. but I'll look into the log > keyword.. > > Thanks, > RSN > > On Tue, 21 Nov 2000, Ruslan Ermilov wrote: > > > The "Permission Denied" messages from natd(8) mean that your firewall > > is blocking packets written back by natd(8). Check you ruleset, add > > the "log" keyword to "deny" rules, and see what happens. > > > > On Mon, Nov 20, 2000 at 06:23:28PM -0800, Roop Nanuwa wrote: > > > I keep getting this wierd message on my console: > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- 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 Nov 21 10:40: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from c528925-a.kreska.org (c528925-a.plano1.tx.home.com [24.21.161.123]) by hub.freebsd.org (Postfix) with ESMTP id 7510537B4C5 for ; Tue, 21 Nov 2000 10:39:57 -0800 (PST) Received: from kreska.org (c528925-a.plano1.tx.home.com [24.21.161.123]) by c528925-a.kreska.org (8.9.3/8.9.3) with ESMTP id MAA26777; Tue, 21 Nov 2000 12:39:55 -0600 (CST) (envelope-from jeff@kreska.org) Message-ID: <3A1AC159.90903@kreska.org> Date: Tue, 21 Nov 2000 12:39:21 -0600 From: Jeff User-Agent: Mozilla/5.0 (Windows; U; WinNT4.0; en-US; m18) Gecko/20001108 Netscape6/6.0 X-Accept-Language: en MIME-Version: 1.0 To: vcardon@siue.edu Cc: freebsd-questions@FreeBSD.ORG Subject: Re: help with ipfw References: <200011211802.MAA24021@cougar.isg.siue.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Did you update your rfc rules to include the in/out keywords for your internal network? # Stop RFC1918 nets on the outside interface ${fwcmd} add deny log all from 10.0.0.0/8 to any via ${oif} ${fwcmd} add deny log all from any to 10.0.0.0/8 out via ${oif} -------------------------------------------------------^ ${fwcmd} add deny log all from 172.16.0.0/12 to any via ${oif} ${fwcmd} add deny log all from any to 172.16.0.0/12 via ${oif} ${fwcmd} add deny log all from 192.168.0.0/16 to any via ${oif} ${fwcmd} add deny log all from any to 192.168.0.0/16 out via ------------------------------------------------------------^ vcardon@siue.edu wrote: > Hi everyone, > > I am trying to setup a FreeBSD gateway that will have a firewall running as > well. The outside interface is connected to a cable modem, and the inside > interface goes to my internal LAN. I have followed the how-to at > http://www.mostgraveconcern.com/freebsd , and everything works fine, untill I > switch my firewall from type open to simple. > > Basically, when I switch to \"simple\" I lose all network connectivity. I cannot > even ping out from the gateway. > > Does anyone have any suggestions as to what I can do to correct this? > > Thanks, > Victor > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 21 10:46:27 2000 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 6561237B4CF for ; Tue, 21 Nov 2000 10:46:24 -0800 (PST) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (8.10.1/8.10.1) with ESMTP id eALIk9J27221; Tue, 21 Nov 2000 10:46:10 -0800 (PST) Message-Id: <200011211846.eALIk9J27221@ptavv.es.net> To: igorr@crosswinds.net Cc: Brian Wolter , freebsd-questions@FreeBSD.ORG Subject: Re: startup scripts In-reply-to: Your message of "Sat, 18 Nov 2000 13:20:53 +0300." <20001118132053.E6975@linux.rainbow> Date: Tue, 21 Nov 2000 10:46:09 -0800 From: "Kevin Oberman" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Date: Sat, 18 Nov 2000 13:20:53 +0300 > From: Igor Robul > Sender: owner-freebsd-questions@FreeBSD.ORG > > On Sat, Nov 18, 2000 at 02:06:46AM -0600, Brian Wolter wrote: > > where are the startup scripts located on FBSD? > There is only one startup script on *BSD, opposed to f*d SystemV :-) , > it is called /etc/rc This is not really true. The basic operating systems does not use startup scripts ala SysV, but /usr/local/etc/rc.d is where user startup/shutdown scripts are located. To adjust what does or does not get started in the base system, see /etc/defaults/rc.conf. Note that you should make changes to /etc/rc.conf. NEVER edit the files in /etc/defaults! 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 Nov 21 11: 0:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.tds.com (mx1.tds.com [165.159.62.3]) by hub.freebsd.org (Postfix) with ESMTP id B95D837B4D7 for ; Tue, 21 Nov 2000 11:00:13 -0800 (PST) Received: from cerberus (hades.tds.com [165.159.62.50]) by mx1.tds.com (8.9.3+Sun/8.9.3) with SMTP id LAA27136 for ; Tue, 21 Nov 2000 11:00:12 -0800 (PST) Received: by tds-la.tds.com with Internet Mail Service (5.5.2650.21) id ; Tue, 21 Nov 2000 11:00:11 -0800 Message-ID: From: "Ives, Keith" To: "'freebsd-questions@freeBSD.org'" Subject: bsd 3.4 can't see aic-7899 Date: Tue, 21 Nov 2000 10:59:54 -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 X-Loop: FreeBSD.ORG I have bsd 3.4 on dell precision 420. The system has aic-7899 adapter. I have a python 4mm tape drive on this bus which the system recognizes but BSD does not. From what I've read this adapter is supported. dmesg shows ahc0 aic7890/91. Could I be missing the correct driver?? If so, how where can I get the right one?? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 11: 3:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from freesurfmail.sunrise.ch (freesurfmta01.sunrise.ch [194.230.0.16]) by hub.freebsd.org (Postfix) with ESMTP id 5EDAA37B4C5 for ; Tue, 21 Nov 2000 11:03:43 -0800 (PST) Received: from manuel.bluewin.ch (194.230.142.186) by freesurfmail.sunrise.ch (5.1.053) id 39F7FFC8001C198C for questions@freebsd.org; Tue, 21 Nov 2000 20:03:41 +0100 Message-Id: <5.0.0.25.2.20001121192525.00bd7098@pop.bluewin.ch> X-Sender: manuelk@pop.bluewin.ch X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Tue, 21 Nov 2000 20:03:34 +0100 To: questions@freebsd.org From: Manuel Kasper Subject: Kernel panic when mounting CD-ROM Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, I've got yet another question. When I try to mount a CD-ROM in FreeBSD 4.1.1-RELEASE on a Compaq ML370 server AND the drive is not yet ready, I get a kernel panic, like this: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0xc139d000 fault code = supervisor write, page not present instruction pointer = 0x8:0xc02c0e92 stack pointer = 0x10:0xc0356eb0 frame pointer = 0x10:0xc0356ec0 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = Idle interrupt mask = bio trap number = 12 panic: page fault syncing disks... Fatal trap 12: page fault while in kernel mode fault virtual address = 0x964cabf fault code = supervisor read, page not present instruction pointer = 0x8:0xc02833b5 stack pointer = 0x10:0xc0356d1c frame pointer = 0x10:0xc0356d34 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = Idle interrupt mask = bio trap number = 12 panic: page fault --- I've provocated the panic several times now, and every time the trace looks the same: --- #0 boot (howto=260) at ../../kern/kern_shutdown.c:302 #1 0xc0193ad8 in poweroff_wait (junk=0xc034d88f, howto=0) at ../../kern/kern_shutdown.c:552 #2 0xc02edec5 in trap_fatal (frame=0xc0356cdc, eva=157600447) at ../../i386/i386/trap.c:951 #3 0xc02edb9d in trap_pfault (frame=0xc0356cdc, usermode=0, eva=157600447) at ../../i386/i386/trap.c:844 #4 0xc02ed757 in trap (frame={tf_fs = 16, tf_es = -1070268400, tf_ds = -1072103408, tf_edi = -855041856, tf_esi = -1053181184, tf_ebp = -1070240460, tf_isp = -1070240504, tf_ebx = 157599123, tf_edx = -855042048, tf_ecx = -855042048, tf_eax = -1054914048, tf_trapno = 12, tf_err = 0, tf_eip = -1071107147, tf_cs = 8, tf_eflags = 66118, tf_esp = -855042048, tf_ss = -1069941536}) at ../../i386/i386/trap.c:443 #5 0xc02833b5 in ffs_update (vp=0xcd091800, waitfor=0) at ../../ufs/ffs/ffs_inode.c:89 #6 0xc028b044 in ffs_sync (mp=0xc11f4a00, waitfor=2, cred=0xc0e2b880, p=0xc039fce0) at ../../ufs/ffs/ffs_vfsops.c:987 #7 0xc01c052f in sync (p=0xc039fce0, uap=0x0) at ../../kern/vfs_syscalls.c:544 #8 0xc0193527 in boot (howto=256) at ../../kern/kern_shutdown.c:224 #9 0xc0193ad8 in poweroff_wait (junk=0xc034d88f, howto=0) at ../../kern/kern_shutdown.c:552 #10 0xc02edec5 in trap_fatal (frame=0xc0356e70, eva=3241791488) at ../../i386/i386/trap.c:951 #11 0xc02edb9d in trap_pfault (frame=0xc0356e70, usermode=0, eva=3241791488) at ../../i386/i386/trap.c:844 #12 0xc02ed757 in trap (frame={tf_fs = -1072103408, tf_es = -65520, tf_ds = -969015280, tf_edi = -1053175808, tf_esi = 32768, tf_ebp = -1070240064, tf_isp = -1070240100, tf_ebx = -1053191552, tf_edx = 496, tf_ecx = 1024, tf_eax = -1055651200, tf_trapno = 12, tf_err = 2, tf_eip = -1070854510, tf_cs = 8, tf_eflags = 66054, tf_esp = -1055517056, tf_ss = -1053191552}) at ../../i386/i386/trap.c:443 #13 0xc02c0e92 in atapi_read (request=0xc1399280, length=32768) at machine/cpufunc.h:222 #14 0xc02c09c7 in atapi_interrupt (request=0xc1399280) at ../../dev/ata/atapi-all.c:362 #15 0xc02bc472 in ata_intr (data=0xc1140a80) at ../../dev/ata/ata-all.c:1125 --- If I understand this right, there are two traps here - the first one in atapi_read(), and the second one in ffs_update(). If I wait a while to make sure the drive is ready, everything works well. However I don't like the idea of having a system like FreeBSD crash just because the CD-ROM drive is still spinning up. ;) I reinstalled the whole system, recompiled the kernel, cvsup'ed and made world - still the same thing. I first suspected a hardware problem but the same thing works fine in Linux. I'm not sure if this has anything to do with my problem, but here's what the kernel says during boot: --- atapci0: port 0x3040-0x304f at device 15.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 ata1: unable to allocate interrupt device_probe_and_attach: ata1 attach returned 6 --- ...it's no surprise since there's no device attached to ata1 and Compaq provides no provision in their setup to disable the second IDE controller. Hmm I'm starting to hate that ML370 beast... However I can't really blame it yet since it works fine in Linux... :( Did anybody ever experience the same kind of problem or can I safely assume that this issue will not affect the system in normal operation? Any suggestions would be greatly appreciated. Thanks, Manuel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 11:13:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from southpark.corp.pocket.com (gateway1.pocketscience.com [209.24.64.3]) by hub.freebsd.org (Postfix) with SMTP id 90E5E37B479 for ; Tue, 21 Nov 2000 11:13:51 -0800 (PST) Received: (qmail 15817 invoked by uid 1000); 21 Nov 2000 19:13:51 -0000 Date: Tue, 21 Nov 2000 11:13:51 -0800 From: Brian Nelson To: freebsd-questions@freebsd.org Subject: Sound on BS AWE64 Gold... Message-ID: <20001121111351.A15736@southpark.pocketscience.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 X-Loop: FreeBSD.ORG My AWE64 plays sound REALLY, REALLY low. I added the pcm and sbc devices to the kernel. Here are the pertanant dmesg|mixer|sndstat lines: notgod@southpark:~>mixer Mixer vol is currently set to 100:100 Mixer bass is currently set to 50:50 Mixer treble is currently set to 50:50 Mixer synth is currently set to 75:75 Mixer pcm is currently set to 100:100 Mixer speaker is currently set to 100:100 Mixer line is currently set to 75:75 Mixer mic is currently set to 0:0 Mixer cd is currently set to 75:75 Mixer igain is currently set to 100:100 Mixer ogain is currently set to 100:100 notgod@southpark:~>dmesg | grep -5 AWE sc0: VGA <16 virtual consoles, flags=0x300> 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: parallel port not found. sbc0: at port 0x220-0x22f,0x330-0x331,0x388-0x38b irq 5 drq 1,5 on isa0 pcm0: on sbc0 IP packet filtering initialized, divert enabled, rule-based forwarding disabled, default to deny, logging disabled ad0: 6187MB [13410/15/63] at ata0-master UDMA33 acd0: CDROM at ata0-slave using PIO4 Waiting 5 seconds for SCSI devices to settle notgod@southpark:~>cat /dev/sndstat FreeBSD Audio Driver (newpcm) Nov 21 2000 01:14:47 Installed devices: pcm0: at io 0x220 irq 5 drq 1:5 (1p/1r channels duplex) If anyone has a suggestion, I would appreciate it. I actually, have checked all the connections, and everything is great there... plus this sound card is on a splitter with anothe rmachine sharing the speakers, and the other machine is loud compared to this one. -- Brian Nelson Demonic Minion/Web Developer Pocket.com, Inc http://www.pocket.com/ *Trying to be happy is like trying to build a machine for which the only specification is that it should run noiselessly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 11:32:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.isg.siue.edu (mail.isg.siue.edu [146.163.5.4]) by hub.freebsd.org (Postfix) with ESMTP id 325BA37B4CF for ; Tue, 21 Nov 2000 11:32:46 -0800 (PST) Received: from cougar.isg.siue.edu (cougar [146.163.5.29]) by mail.isg.siue.edu (8.9.1/8.9.1) with ESMTP id NAA13398; Tue, 21 Nov 2000 13:29:30 -0600 (CST) Received: (from nobody@localhost) by cougar.isg.siue.edu (8.9.1/8.9.1) id NAA27864; Tue, 21 Nov 2000 13:29:30 -0600 (CST) Date: Tue, 21 Nov 2000 13:29:30 -0600 (CST) From: vcardon@siue.edu Message-Id: <200011211929.NAA27864@cougar.isg.siue.edu> X-Authentication-Warning: cougar.isg.siue.edu: nobody set sender to vcardon@siue.edu using -f To: Jeff Reply-To: vcardon@siue.edu Cc: freebsd-questions@freebsd.org References: <200011211802.MAA24021@cougar.isg.siue.edu> <3A1AC159.90903@kreska.org> In-Reply-To: <3A1AC159.90903@kreska.org> MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP3 Imap webMail Program 2.0.11 X-Originating-IP: 24.17.229.11 Subject: Re: help with ipfw Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have just tried adding them as suggested. It did not help. BTW, I am running 4.2-RELEASE. I did notice that when I try to ping from the firewall, I get \"sendto: Permission denied\" errors on the console. Thanks, Victor Quoting Jeff : > Did you update your rfc rules to include the in/out keywords for your > internal network? > # Stop RFC1918 nets on the outside interface > ${fwcmd} add deny log all from 10.0.0.0/8 to any via ${oif} > ${fwcmd} add deny log all from any to 10.0.0.0/8 out via ${oif} > -------------------------------------------------------^ > ${fwcmd} add deny log all from 172.16.0.0/12 to any via ${oif} > ${fwcmd} add deny log all from any to 172.16.0.0/12 via ${oif} > ${fwcmd} add deny log all from 192.168.0.0/16 to any via ${oif} > ${fwcmd} add deny log all from any to 192.168.0.0/16 out via > ------------------------------------------------------------^ > > vcardon@siue.edu wrote: > > > Hi everyone, > > > > I am trying to setup a FreeBSD gateway that will have a firewall running > as > > well. The outside interface is connected to a cable modem, and the inside > > interface goes to my internal LAN. I have followed the how-to at > > http://www.mostgraveconcern.com/freebsd , and everything works fine, > untill I > > switch my firewall from type open to simple. > > > > Basically, when I switch to \\\"simple\\\" I lose all network connectivity. I > cannot > > even ping out from the gateway. > > > > Does anyone have any suggestions as to what I can do to correct this? > > > > Thanks, > > Victor > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with \"unsubscribe freebsd-questions\" in the body of 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 Nov 21 11:42:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from corrupt.network-alchemy.com (Corrupt.Network-Alchemy.COM [199.46.16.36]) by hub.freebsd.org (Postfix) with ESMTP id 6E7DF37B4F9 for ; Tue, 21 Nov 2000 11:42:44 -0800 (PST) Received: from network-alchemy.com (localhost [127.0.0.1]) by corrupt.network-alchemy.com (8.11.0/8.11.0) with ESMTP id eALJgiM06829 for ; Tue, 21 Nov 2000 11:42:44 -0800 (PST) (envelope-from mruhl@network-alchemy.com) Message-ID: <3A1AD033.D39AF963@network-alchemy.com> Date: Tue, 21 Nov 2000 11:42:44 -0800 From: Mike Ruhl X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.2-BETA i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: wd vs ad Content-Type: multipart/mixed; boundary="------------4A69C40DA4B0117B5A7DB46F" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------4A69C40DA4B0117B5A7DB46F Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Howdy, I recently upgraded to 4.0 and made the change from the /dev/wd* devices to /dev/ad* devices. And I had a few questions about this... :) 1) Can I safely delete the wd devices? I did a clean install of 4.0 and those devices where part of the install. Are they still necessary? Are they hanging around for backwards compatibility? 2) It appears that the ad devices are character devices instead of block devices. Further investigation reveals that all the wd devices are character devices as well. I have obviously missed something somewhere. When did the disk devices become character devices? Why the change? Has the driver model changed so that character/block devices are no longer "relevant"? A casual search of the archives hasn't revealed anything. :( Can someone point me to a location of where this was discussed? Thanks! Mike --------------4A69C40DA4B0117B5A7DB46F Content-Type: text/x-vcard; charset=us-ascii; name="mruhl.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for Mike Ruhl Content-Disposition: attachment; filename="mruhl.vcf" begin:vcard n:Ruhl;Michael J tel;work:(831) 440-6472 x-mozilla-html:FALSE org:Nokia adr:;;1538 Pacific Avenue;Santa Cruz;CA.;95060;U.S.A. version:2.1 email;internet:mruhl@cips.nokia.com title:Tall Blond Guy x-mozilla-cpt:;0 fn:Michael J Ruhl end:vcard --------------4A69C40DA4B0117B5A7DB46F-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 11:49:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx-a.qnet.com (mx-a.qnet.com [209.221.198.11]) by hub.freebsd.org (Postfix) with ESMTP id C274337B4CF for ; Tue, 21 Nov 2000 11:49:10 -0800 (PST) Received: from cello.qnet.com (root@cello.qnet.com [209.221.198.10]) by mx-a.qnet.com (8.9.1a/8.9.3) with ESMTP id LAA11333; Tue, 21 Nov 2000 11:49:05 -0800 (PST) Received: from STORK (56k-socal-01-28.dial.qnet.com [209.221.198.91]) by cello.qnet.com (8.9.0/8.9.1) with SMTP id LAA14621; Tue, 21 Nov 2000 11:48:40 -0800 (PST) From: "Heredity Choice" To: "Toni Pisjak" , "Xiuping Hu" Cc: Subject: RE: XFree86-aoutlibs-3.3.3 Date: Tue, 21 Nov 2000 11:40:20 -0800 Message-ID: <000101c053f2$e238d3e0$64c6ddd1@STORK> 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 In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.5600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Compat22 does not work until you reboot. This bug first appeared in 3.1, was cured, and is now back. So you have to install Compat22 and anything else that does not require the a.out library, reboot, go into /stand/sysinstall, and then install packages which require a.out. Paul Smith > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Toni Pisjak > Sent: Tuesday, 21 November, 2000 04:54 AM > To: Xiuping Hu > Cc: freebsd-questions@FreeBSD.ORG > Subject: Re: XFree86-aoutlibs-3.3.3 > > > Hello ! > > On Wed, 15 Nov 2000, Xiuping Hu wrote: > > > I install X11 in my FreeBSD system, but always get > XFree86-aoutlibs-3.3.3 > > error. The error says: > > > > Add of packege XFree86-aoutlibs-3.3.3 abort, error code 1 - Please check > > the debug screen for more information. > > I have the same problem. I don't know how to solve that, but a workaround > is, to install the package afterwards with "/stand/sysinstall". This works > for me. > > Regards: Toni. > > > -- > Toni Pisjak Technische Universitaet Wien > pisjak@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 21 11:54:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gilberto.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by hub.freebsd.org (Postfix) with ESMTP id 09A5837B4CF for ; Tue, 21 Nov 2000 11:54:29 -0800 (PST) Received: (from kuku@localhost) by gilberto.physik.rwth-aachen.de (8.9.3/8.9.3) id UAA77370 for questions@freebsd.org; Tue, 21 Nov 2000 20:54:27 +0100 (CET) (envelope-from kuku) Date: Tue, 21 Nov 2000 20:54:27 +0100 (CET) From: Christoph Kukulies Message-Id: <200011211954.UAA77370@gilberto.physik.rwth-aachen.de> To: questions@freebsd.org Subject: socks5 configuration Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Anyone gone through a socks5 proxy server configuration where FreeBSD acts as a router between the LAN and the internet? Purpose: to run napster on a Windows NT machine in the LAN My FreeBSD 4.1 machine is configured as a ISDN router (sppp to the internet - interface isp0), xl0 lan interface, 192.168.1. I created a /etc/socks5.passwd file and my /usr/local/etc/socks5.conf looks like: #Socks5 Config file for a normal, single homed server #set SOCKS5_RECVFROMANYONE #set SOCKS5_USECLIENTSPORT permit - - - - - - interface 192.268.1 - xl0 interface - - isp0 permit - - - - - - Yes, it's dangerous as the docs say but I want to get it working first then shut the drawbridge. I configure server 192.168.1.119 as the socks5 server and port 1080 at the client side. What happens is, when I run the napster installer, that DNS packets go out to the internet with strange domain suffixes (I have a fake domain in my LAN, and actuall a local DNS server). So the installer fails with server.napster.com not found. Any clues? -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 12: 5: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sneakerz.org (sneakerz.org [207.154.226.254]) by hub.freebsd.org (Postfix) with ESMTP id A931A37B4CF for ; Tue, 21 Nov 2000 12:05:00 -0800 (PST) Received: by sneakerz.org (Postfix, from userid 1091) id 3A19B5D007; Tue, 21 Nov 2000 14:05:00 -0600 (CST) Date: Tue, 21 Nov 2000 14:05:00 -0600 From: James March To: Mikko Tyolajarvi Cc: root@pokemon.mosqueda.net, freebsd-questions@freebsd.org Subject: Re: pppoe Message-ID: <20001121140500.A43408@sneakerz.org> References: <3A19CD9B.F3438975@pokemon.mosqueda.net> <200011210609.eAL69Hl32828@explorer.rsa.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2i In-Reply-To: <200011210609.eAL69Hl32828@explorer.rsa.com>; from mikko@dynas.se on Mon, Nov 20, 2000 at 10:09:17PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Nov 20, 2000 at 10:09:17PM -0800, Mikko Tyolajarvi wrote: > In local.freebsd-questions you write: > > >Has anyone ever installed pacbell dsl using freebsd4.0 ? I am currently using pacbell with 4.0. Everything seems to work fine except for some ppp -nat issiues. I used Jonathan M Bresler's example on his website at: http://www.freebsd.org/~jmb james > > Works with 4.1. Don't know of any reason why it should > not work with 4.0 - just follow the handbook. > > $.02, > /Mikko > -- > Mikko Työläjärvi_______________________________________mikko@rsasecurity.com > RSA Security > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 12:52:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donkeykong.gpcc.itd.umich.edu (donkeykong.gpcc.itd.umich.edu [141.211.2.163]) by hub.freebsd.org (Postfix) with ESMTP id E926437B4CF for ; Tue, 21 Nov 2000 12:52:34 -0800 (PST) Received: from choplifter.gpcc.itd.umich.edu (smtp@choplifter.gpcc.itd.umich.edu [141.211.2.143]) by donkeykong.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id PAA17737; Tue, 21 Nov 2000 15:52:29 -0500 (EST) Received: from localhost (timcm@localhost) by choplifter.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id PAA16290; Tue, 21 Nov 2000 15:52:29 -0500 (EST) Date: Tue, 21 Nov 2000 15:52:28 -0500 (EST) From: Tim McMillen X-Sender: timcm@choplifter.gpcc.itd.umich.edu To: Justin Wojdacki Cc: questions@FreeBSD.ORG Subject: Re: Mounting OpenBSD partitions In-Reply-To: <3A1AABFE.4E885722@chiplogic.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Justin, did you try # disklabel ad1 to see what device names FreeBSD calls them? Replace ad1 with whatever hard drive you have OpenBSD on. Then just try mounting the partition. For example mount /dev/ad1s1f /mnt Or instead of f, d or h whatever partition you want to mount. I can't see why FreeBSD wouldn't be able to see the disklabel with the disklabel command, but if it really can't, then boot into OpenBSD, write down what partitions are mounted where, and use that information to mount them when you're back in FreeBSD. The other option is to mount the FreeBSD partitions while in OpenBSD and copy the files over that way Tim On Tue, 21 Nov 2000, Justin Wojdacki wrote: > > Should be an easy one here: > > I just installed FreeBSD 4.0 on a machine I had laying around and I'd > like to copy data from some OpenBSD HDDs I've got sitting idle. FreeBSD > doesn't see any disklabels for the drives (but I'm not sure where > they're stored, so this might not be unusual). fdisk recognizes the > OpenBSD partitions on the drives. What do I need to do to be able to > mount these drives? > > -- > --------------------- > Justin Wojdacki > justin@chiplogic.com > Chiplogic Inc. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 21 12:53: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from merganser.its.uu.se (merganser.its.uu.se [130.238.6.236]) by hub.freebsd.org (Postfix) with ESMTP id A67F037B4CF for ; Tue, 21 Nov 2000 12:53:00 -0800 (PST) Received: from regulus.student.UU.SE ([130.238.5.2]:63601 "HELO ertr1013.student.uu.se") by merganser.its.uu.se with SMTP id ; Tue, 21 Nov 2000 21:52:40 +0100 Received: (qmail 71152 invoked by uid 1001); 21 Nov 2000 20:52:18 -0000 Date: Tue, 21 Nov 2000 21:52:17 +0100 From: Erik Trulsson To: Mike Ruhl Cc: freebsd-questions@freebsd.org Subject: Re: wd vs ad Message-ID: <20001121215217.A65639@student.uu.se> Mail-Followup-To: Mike Ruhl , freebsd-questions@freebsd.org References: <3A1AD033.D39AF963@network-alchemy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A1AD033.D39AF963@network-alchemy.com>; from mruhl@network-alchemy.com on Tue, Nov 21, 2000 at 11:42:44AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Nov 21, 2000 at 11:42:44AM -0800, Mike Ruhl wrote: > Howdy, > > I recently upgraded to 4.0 and made the change from the /dev/wd* > devices to /dev/ad* devices. And I had a few questions about this... > :) > > 1) Can I safely delete the wd devices? > > I did a clean install of 4.0 and those devices where part of the > install. Are they still necessary? Are they hanging around for > backwards compatibility? They are just for backwards compatibility. If you don't have any programs/scripts/config-files that refer to the wd* files you can safely delete them. > > 2) It appears that the ad devices are character devices instead of > block devices. Further investigation reveals that all the wd devices > are character devices as well. I have obviously missed something > somewhere. When did the disk devices become character devices? Why > the change? Has the driver model changed so that character/block > devices are no longer "relevant"? Yep, block devices are gone. A quick look in /usr/src/UPDATING shows that this change happened about a year ago (entry for 19991205) > > A casual search of the archives hasn't revealed anything. :( Can > someone point me to a location of where this was discussed? Probably -arch or -current in late 1999. -- 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 Tue Nov 21 13: 4: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from prime.gushi.org (prime.gushi.org [208.23.118.172]) by hub.freebsd.org (Postfix) with ESMTP id E711237B4C5 for ; Tue, 21 Nov 2000 13:04:01 -0800 (PST) Received: from localhost (danm@localhost) by prime.gushi.org (8.9.3/8.9.3) with ESMTP id PAA37084 for ; Tue, 21 Nov 2000 15:50:55 -0500 (EST) (envelope-from danm@prime.gushi.org) Date: Tue, 21 Nov 2000 15:50:54 -0500 (EST) From: "Dan Mahoney, System Admin" To: questions@freebsd.org Subject: PPP questions. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is there any way to have ppp periodically ping the remote host and drop and reconnect if the ping fails? I'm on a system where the host will get "stupid" and although I can still hear modem noise, I can't see any network activity. ALSO: Is there some way of tracing what connection attempt is opening the connection in automatic mode (for example, stupid adware, or windows media player trying to see if there's a new version available)? And once I know, is the a way of blocking it? It seems JUST BOOTING win98 will cause a connection to be open. Thanks for all the fish, Dan Mahoney -- "I love you forever eternally." -Connaian Expression --------Dan Mahoney-------- Techie, Sysadmin, WebGeek Gushi on efnet/undernet IRC ICQ: 13735144 AIM: LarpGM Web: http://prime.gushi.org finger danm@prime.gushi.org for pgp public key and tel# --------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 13:12:20 2000 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 0913E37B4CF for ; Tue, 21 Nov 2000 13:12:19 -0800 (PST) Received: (from lowell@localhost) by be-well.ilk.org (8.11.1/8.11.1) id eALLBZ315435; Tue, 21 Nov 2000 16:11:35 -0500 (EST) (envelope-from lowell) To: freebsd-questions@freebsd.org, w.steuerle@firemail.de Subject: Re: what`s missing ? References: <135721071.974821394076.JavaMail.nobody@fmweb01.unimessage.net> From: Lowell Gilbert Date: 21 Nov 2000 16:11:35 -0500 In-Reply-To: w.steuerle@firemail.de's message of "21 Nov 2000 16:43:48 +0100" Message-ID: <44r945qbco.fsf@lowellg.ne.mediaone.net> Lines: 15 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG w.steuerle@firemail.de (wolfgang steuerle) writes: > So what is the difference between the minimal and the > "kernel-developer " installation , that is necesarry for running > emacs.I don't want to install it all by floppies,because Plip > installation didn't work for me It's not the kernel that's necessary for running the emacs package, it's X. Emacs has to be either compiled with X support (in which case it links with the X libraries and won't run without them, although this configuration will work fine without an X server), or without any X support at all. If you don't have X, install emacs from the port rather than the package. This means you'll need to install the ports system (or at least parts of it) and the emacs source tarball, but that's still probably easier than installing X. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 13:13:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pfa0frpk001.panasonicfa.com (unknown [38.248.119.1]) by hub.freebsd.org (Postfix) with ESMTP id 33DF637B4CF for ; Tue, 21 Nov 2000 13:13:17 -0800 (PST) Received: by exchange.panasonicfa.com with Internet Mail Service (5.5.2650.21) id ; Tue, 21 Nov 2000 15:13:15 -0600 Message-ID: <054F7DAA9E54D311AD090008C74CE9BD01F1E6D3@exchange.panasonicfa.com> From: "Zaitsau, Andrei" To: "'freebsd-questions@freebsd.org'" Subject: NAT question Date: Tue, 21 Nov 2000 15:13:14 -0600 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 X-Loop: FreeBSD.ORG I am using NAT on a gateway connected to the internet. 2 Computers are connected to the gateway(192.168.0.1) with addresses 192.168.0.2 and 192.168.0.3, is it possible manually block NAT(disconnect from internet) for computer with 192.168.0.3 , while second host 192.168.0.2 will be still alive(connected to the internet)? Is it possible to limit bandwidth for users connected to gateway? Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 13:38:27 2000 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 A941237B4C5 for ; Tue, 21 Nov 2000 13:38:20 -0800 (PST) Received: from sv.Go2France.com (sv.meiway.com [212.73.210.79]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 7C9426A907 for ; Tue, 21 Nov 2000 22:38:13 +0100 (CET) Message-Id: <5.0.2.1.0.20001121223505.04d56100@mail.Go2France.com> X-Sender: lconrad%Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Tue, 21 Nov 2000 22:37:45 +0100 To: freebsd-questions@freebsd.org From: Len Conrad Subject: Fwd: Re: still in the woods (tuning for postfix hub) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Can somebody tell me who admins FreeBSD/postifx mail hubs? I need some help opening up FreeBSD for postfix and 200K msgs/day. Thanks, Len ================================== >Delivered-To: postfix-users-outgoing@cloud9.net >Delivered-To: postfix-users@cloud9.net >Subject: Re: still in the woods >To: postfix-users@postfix.org (Postfix users) >Reply-To: postfix-users@postfix.org (Postfix users) >X-Time-Zone: USA EST, 6 hours behind central European time >Date: Tue, 21 Nov 2000 16:31:50 -0500 (EST) >From: wietse@porcupine.org (Wietse Venema) >Sender: owner-postfix-users@postfix.org >X-RCPT-TO: > >The FreeBSD mailing list server runs 500+ Postfix SMTP clients and >it does not hurt the machine. > >Perhaps you need to ask the people who run that machine. > > Wietse > >Len Conrad: > > Got a faily busy postfix relay hub, about 200K msgs / day. > > > > FreeBSD IMGate1.xxx.net 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #0: Tue > > Sep 26 00:46:59 GMT 2000 > > > > # postconf mail_version > > mail_version = Snapshot-20001030 > > > > ast pid: 67847; load > > averages: 0.19, 0.37, 0.47 > > up 7+00:47:48 16:07:03 > > 320 processes: 1 running, 319 sleeping > > CPU states: 3.5% user, 0.0% nice, 3.8% system, 0.8% > interrupt, 91.9% idle > > Mem: 78M Active, 103M Inact, 29M Wired, 6524K Cache, 35M Buf, 32M Free > > Swap: 47M Total, 1464K Used, 46M Free, 3% Inuse > > > > We had these "too many files" pb's are initial install, and the > > FreeBSD-hackers gave me some things to change that seem to stop the > > but they're back even with these settings( an rebootin): > > > > /boot/rc.loader with > > > > set kern.ipc.maxsockets=4000 (from default of 1000, I think) > > > > and > > > > /etc/sysctl.conf with > > > > kern.maxfiles = 4096 > > kern.maxfilesperproc = 4096 > > > > A section of "sysctl -a" shows: > > > > ITEM SIZE LIMIT USED FREE REQUESTS > > > > PIPE: 160, 0, 2, 100, 63091 > > unpcb: 64, 0, 6, 122, 607 > > ripcb: 96, 1064, 0, 84, 68 > > tcpcb: 288, 1064, 10, 32, 2428 > > udpcb: 96, 1064, 11, 73, 2637 > > unpcb: 64, 0, 0, 0, 0 > > socket: 160, 1064, 27, 48, 5752 > > AIOLIO: 704, 0, 0, 0, 0 > > AIOL: 64, 0, 0, 0, 0 > > AIOCB: 128, 0, 0, 0, 0 > > AIOP: 32, 0, 0, 0, 0 > > AIO: 96, 0, 0, 0, 0 > > NFSNODE: 288, 0, 0, 0, 0 > > NFSMOUNT: 544, 0, 0, 0, 0 > > VNODE: 192, 0, 3801, 121, 3764 > > NAMEI: 1024, 0, 0, 24, 3391019 > > VMSPACE: 192, 0, 20, 44, 50568 > > PROC: 352, 0, 23, 35, 50571 > > DP fakepg: 64, 0, 0, 0, 0 > > PV ENTRY: 28, 139130, 3868, 12497, 7249523 > > MAP ENTRY: 40, 0, 351, 491, 802213 > > KMAP ENTRY: 40, 3996, 61, 169, 13057 > > MAP: 100, 0, 7, 3, 7 > > VM OBJECT: 124, 0, 532, 2133, 604523 > > > > > > But the client is still getting these: > > > > Fatal Errors > > ------------ > > bounce > > 1 open file defer 63A8B51811: Too many open files in system > > 1 open file defer 954FF516E4: Too many open files in system > > 1 open file defer 21333516EF: Too many open files in system > > 1 open file defer B7675516C8: Too many open files in system > > 1 open file defer B6A3E51605: Too many open files in system > > 1 open file defer 33E0B518AE: Too many open files in system > > 1 open file defer 9521D51766: Too many open files in system > > 1 open file defer 6848A5171E: Too many open files in system > > 1 open file defer B5B285178E: Too many open files in system > > 1 open file defer 300B45164D: Too many open files in system > > 1 open file defer 624495172D: Too many open files in system > > 1 open file defer B18F351765: Too many open files in system > > 1 open file defer B2688516B4: Too many open files in system > > 1 open file defer 2717951750: Too many open files in system > > cleanup > > 26 accept connection: Too many open files in system > > qmgr > > 10 socket: Too many open files in system > > 1 open active 7123851A0C: Too many open files in system > > 1 open active 2B05B517B4: Too many open files in system > > 1 open active 495C551796: Too many open files in system > > 1 open active 79A17517F8: Too many open files in system > > 1 open active 6690651964: Too many open files in system > > 1 open active 983CE516F1: Too many open files in system > > 1 open active D61D65181E: Too many open files in system > > smtp > > 8 accept connection: Too many open files in system > > 4 unknown service: smtp/tcp > > 2 open /etc/postfix/main.cf: Too many open files in system > > 1 unknown user: postfix > > 1 unknown default_privs configuration parameter value: nobody > > 1 open active 8817E51660: Too many open files in system > > 1 inet_addr_local: socket: Too many open files in system > > smtpd > > 93 accept connection: Too many open files in system > > 9 socket: Too many open files in system > > 1 watchdog timeout > > trivial-rewrite > > 1 accept connection: Too many open files in system > > > > > > Any body know how I can systcl or other re-param my way out of this, > > without a new kernal (he didn't install kernal sources, against my request) > > > > tia, > > Len http://BIND8NT.MEIway.com : ISC BIND 8.2.2 p5 & 8.2.3 T6B for NT4 & W2K http://IMGate.MEIway.com : Build free, hi-perf, anti-spam mail gateways To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 13:49:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from laime.cs.uchicago.edu (laime.cs.uchicago.edu [128.135.11.244]) by hub.freebsd.org (Postfix) with ESMTP id A683337B479 for ; Tue, 21 Nov 2000 13:49:27 -0800 (PST) Received: from embassy.cs.uchicago.edu (postfix@embassy.cs.uchicago.edu [128.135.11.81]) by laime.cs.uchicago.edu (8.10.2/8.9.3) with ESMTP id eALLnRE15862 for ; Tue, 21 Nov 2000 15:49:27 -0600 (CST) Received: by embassy.cs.uchicago.edu (Postfix, from userid 10034) id 1B1775A027; Tue, 21 Nov 2000 15:49:26 -0600 (CST) Received: from localhost (localhost [127.0.0.1]) by embassy.cs.uchicago.edu (Postfix) with ESMTP id 0F9BD1E0C1 for ; Tue, 21 Nov 2000 15:49:26 -0600 (CST) Date: Tue, 21 Nov 2000 15:49:26 -0600 (CST) From: Cosmos Boekell To: freebsd-questions@FreeBSD.ORG Subject: server Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG i want to purchase or build a server (i.e. dns, nfs, ftp, http, login, etc.) and want to run free bsd. i can spend up to $2000 maybe $2500. please let me know your thoughts (i.e. P III vs. AMD, motherboards, RAID, SCSI vs. EIDE, rack vs. tower, etc.) thanx, c -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 13:55:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from geranol.benchmarkportal.com (216-224-138-53.thegrid.net [216.224.138.53]) by hub.freebsd.org (Postfix) with SMTP id CBF7F37B4C5 for ; Tue, 21 Nov 2000 13:55:16 -0800 (PST) Received: (qmail 642 invoked from network); 21 Nov 2000 21:57:20 -0000 Received: from unknown (HELO benchmarkportal.com) (127.0.0.1) by localhost with SMTP; 21 Nov 2000 21:57:20 -0000 Message-ID: <3A1AEFC0.83CF17E0@benchmarkportal.com> Date: Tue, 21 Nov 2000 13:57:20 -0800 From: Mark Mark van der Putten X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Crystel soundcard Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Could someone please point me in the right direction? Here is the description: Oke I build a new kernel containing >device pcm in the config file MYKERNEL after booting i checked the following dmesg says: >csa0: mem 0xfea00000-0xfeafffff,0xfebe7000-0xfebe7fff irq 9 at >device 11.0 on pci0 cat sndstat says: >FreeBSD Audio Driver (newpcm) Nov 21 2000 10:47:16 >Installed devices: >pcm0: at irq 9 (1p/1r channels duplex) and when i play "mpg123 *.mp3": pcm0: play interrupt timeout, channel dead and after that /dev/dsp is busy. Help appreciated. best regards Mark van der Putten To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 14:11:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dns.comrax.com (dns.comrax.com [194.90.246.124]) by hub.freebsd.org (Postfix) with ESMTP id 1F4C037B4D7 for ; Tue, 21 Nov 2000 14:11:34 -0800 (PST) Received: by dns.comrax.com (Postfix, from userid 100) id 90C9B12C7A5; Wed, 22 Nov 2000 00:08:14 +0200 (IST) Received: from localhost (localhost [127.0.0.1]) by dns.comrax.com (Postfix) with ESMTP id 7C17081DC8 for ; Wed, 22 Nov 2000 00:08:14 +0200 (IST) Date: Wed, 22 Nov 2000 00:08:14 +0200 (IST) From: To: freebsd-questions@freebsd.org Subject: SQL server, hardware and software. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello all, I'm in the process of obtaining a new server for our corporate needs. The new server will be a central SQL server, serving dynamic web sites hosted on another machine. I wanted to get advise from those of you who had done this before. I was thinking of buying an ASUS or an Intel motherboard (reliability), w/ one of the newest P-III's, 512MB of RAM memory, and hardware RAID-1, w/ LCD SCSI disks. Adaptec would be my choice of SCSI and RAID-1 card. If any of can recommend either of the above mentioned hardware, or maybe say that "this" hardware is better than that one, and such, then please do. I would need all the help you can give. Thanks again, and if there's a place where I can read more about this, please direct me to it. Have a good day. Noor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 14:26:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ocelot.cs.odu.edu (ocelot.cs.odu.edu [128.82.4.1]) by hub.freebsd.org (Postfix) with ESMTP id 5ED9E37B4D7 for ; Tue, 21 Nov 2000 14:26:13 -0800 (PST) Received: from ren.cs.odu.edu (kamath@ren.cs.odu.edu [128.82.4.149]) by ocelot.cs.odu.edu (8.10.1/8.10.1) with ESMTP id eALMOvN10117 for ; Tue, 21 Nov 2000 17:24:57 -0500 (EST) Received: from localhost (kamath@localhost) by ren.cs.odu.edu (8.10.1/8.9.1) with ESMTP id eALMQBu27604 for ; Tue, 21 Nov 2000 17:26:11 -0500 (EST) X-Authentication-Warning: ren.cs.odu.edu: kamath owned process doing -bs Date: Tue, 21 Nov 2000 17:26:10 -0500 (EST) From: Kamath To: questions@freebsd.org Subject: dialing into an ISP Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello-- I have FreeBSD 4.1.1 release installed on my lap-top. And now I would like to connect (dial into an ISP) using a 28.8K PCMCIA modem on the lap-top. My question is what kind of drivers will I be needing to do this? or can I do this with the built in Kernel support? I have a Dell 28.8 Modem (made by Megahertz, mdel XJ2388R). Another additional question I have is that about connecting to the LAN using PCMCIA 10 base T ethernet card. I have a Dell PCMCIA card(made by IBM,) but dont have the cable, if anyone out there has the cables/or knows where they might be available please contact me. Any feedback/comments will be appreciated. Thanks, Praveen Kamath To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 14:30:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dns.comrax.com (dns.comrax.com [194.90.246.124]) by hub.freebsd.org (Postfix) with ESMTP id 9521737B4F9 for ; Tue, 21 Nov 2000 14:30:43 -0800 (PST) Received: by dns.comrax.com (Postfix, from userid 100) id 01EE812C7A5; Wed, 22 Nov 2000 00:27:23 +0200 (IST) Received: from localhost (localhost [127.0.0.1]) by dns.comrax.com (Postfix) with ESMTP id E1EEE81DC8 for ; Wed, 22 Nov 2000 00:27:23 +0200 (IST) Date: Wed, 22 Nov 2000 00:27:23 +0200 (IST) From: To: freebsd-questions@freebsd.org Subject: Mylex AcceleRAID 170 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Anyone uses this card and had any experience with it? In addition, would anyone recommend RAID starter kit or anything? I haven't had any experience with it, and I want to be ready when our server arrives, with all the hot stuff in it :) TIA. Noor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 14:30:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dnai.com (dnai.com [207.181.194.98]) by hub.freebsd.org (Postfix) with ESMTP id 4341A37B4C5 for ; Tue, 21 Nov 2000 14:30:39 -0800 (PST) Received: from neptune.dnai.com (neptune.dnai.com [207.181.194.93]) by dnai.com (8.9.3/8.9.3) with ESMTP id OAA81582; Tue, 21 Nov 2000 14:30:39 -0800 (PST) Received: from cougar.chiplogic.com (cougar.chiplogic.com [216.15.52.34]) by neptune.dnai.com (8.9.3/8.9.3) with ESMTP id OAA06991; Tue, 21 Nov 2000 14:30:38 -0800 (PST) Received: from ws4.chiplogic.com (quokka [216.15.52.58]) by cougar.chiplogic.com (8.9.1b+Sun/8.9.1) with ESMTP id OAA01716; Tue, 21 Nov 2000 14:30:34 -0800 (PST) Received: from chiplogic.com (localhost [127.0.0.1]) by ws4.chiplogic.com (8.9.3+Sun/8.9.1) with ESMTP id OAA06694; Tue, 21 Nov 2000 14:30:37 -0800 (PST) Message-ID: <3A1AF78D.930B0F65@chiplogic.com> Date: Tue, 21 Nov 2000 14:30:37 -0800 From: Justin Wojdacki X-Mailer: Mozilla 4.75 [en] (X11; U; SunOS 5.7 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: "Zaitsau, Andrei" Cc: "'freebsd-questions@freebsd.org'" Subject: Re: NAT question References: <054F7DAA9E54D311AD090008C74CE9BD01F1E6D3@exchange.panasonicfa.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Zaitsau, Andrei" wrote: > > I am using NAT on a gateway connected to the internet. 2 Computers are > connected to the gateway(192.168.0.1) with addresses 192.168.0.2 and > 192.168.0.3, is it possible manually block NAT(disconnect from internet) > for computer with 192.168.0.3 , while second host 192.168.0.2 will be still > alive(connected to the internet)? > Is it possible to limit bandwidth for users connected to gateway? > Thanks > Re: Question #1 try a NAT rule like this (if you're using ipf/ipnat): map ppp0 192.168.0.3/32 -> 192.168.0.1/32 portmap tcp/udp 10000:20000 with no rule that similarly handles 192.168.0.2. This should tell ipnat to map on to ppp0 at 192.168.0.1 any TCP or UDP connection from 192.168.0.3 that's on ports 10000 through 20000. Well, I think. I'd have to play with it some to be sure. -- --------------------- Justin Wojdacki justin@chiplogic.com Chiplogic Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 14:39: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ElectronicPromotional.com (unknown [64.56.70.54]) by hub.freebsd.org (Postfix) with SMTP id B787137B479; Tue, 21 Nov 2000 14:38:56 -0800 (PST) From: ep@electronicpromotional.com To: <> Subject: Win $2500.00 worth of JEWELRY Date: Tue, 21 Nov 2000 16:40:08 -0600 X-Sender: ep@electronicpromotional.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.1 Content-Type: text/plain; charset="us-ascii" X-Priority: 3 X-MSMail-Priority: Normal Message-Id: <20001121223856.B787137B479@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Electronicpromotional.com would like to introduce you to this months featured site Http://www.MetroJewelry.com Do you want to win $2,500 worth of jewelry? Just visit MetroJewelry.com at http://www.metrojewelry.com today for your chance to win the guaranteed $2,500 prize. The winner will be selected by random drawing after Thanksgiving weekend, Monday November 27, 2000 and will be notified via e-mail. After you enter the contest I invite you to look around MetroJewelry.com that has over 10,000 jewelry items, with prices ranging from only $25 to $40,000. First time shoppers can play the Random Coupon Generator, which will give an instant discount of 10% to 50% off the initial purchase. All return shoppers are automatically entered in the Frequent Shopper Discount program, which deducts 5% off for each $1000 you spend, up to 50% off. The more jewelry you buy the more money you will save. Your total spending amount and discount savings is calculated automatically every time you shop. You can quickly find the item you shopping for by using the Search feature, based on the type of jewelry, gender, and/or price range. Remember to set up your personal Wish List, which will be e-mailed to your friends and family before a gift-giving holiday. It tells them exactly what you would like to receive, so keep your Wish List updated as your receive your gifts! Good luck in winning the $2,500 contest and thank you for shopping and saving at MetroJewelry.com. If you have received this email in error; Please note that this is a one time mailing from electronicpromotional.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 14:49:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dns.comrax.com (dns.comrax.com [194.90.246.124]) by hub.freebsd.org (Postfix) with ESMTP id 5CCB537B4D7 for ; Tue, 21 Nov 2000 14:46:07 -0800 (PST) Received: by dns.comrax.com (Postfix, from userid 100) id 2072912C7A5; Wed, 22 Nov 2000 00:42:03 +0200 (IST) Received: from localhost (localhost [127.0.0.1]) by dns.comrax.com (Postfix) with ESMTP id 09D5981DC8 for ; Wed, 22 Nov 2000 00:42:03 +0200 (IST) Date: Wed, 22 Nov 2000 00:42:03 +0200 (IST) From: To: freebsd-questions@freebsd.org Subject: ipfw/natd Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello all, Sorry for the surge of questions from me today :) We have now a server being used as a Web server and a SQL server. Since we are about to get a new server for SQL, I'll need to split the SQL server and put it on the new machine. This is not a problem. What I want to know is: if the new SQL server fails for some reason, I want to use the old SQL server (still being hosted on the same old machine). I want to do this using a divert rule in ipfw. I still don't know how... If box A has IP: 192.168.40.50 & box B has IP: 192.168.40.10 I want to do something like: divert tcp from 192.168.40.50 192.168.40.10 for SQL queries... Thanks for your help again... Noor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 14:56: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hamberg.it.uu.se (hamberg.it.uu.se [130.238.9.198]) by hub.freebsd.org (Postfix) with ESMTP id BABB737B479 for ; Tue, 21 Nov 2000 14:55:58 -0800 (PST) Received: (from ertr1013@localhost) by hamberg.it.uu.se (8.8.5/8.8.5) id QAA29725; Tue, 21 Nov 2000 16:28:37 +0100 (MET) Date: Tue, 21 Nov 2000 16:28:37 +0100 From: Erik Trulsson To: Sperber Cc: questions@freebsd.org Subject: Re: 4.2 RELEASE Message-ID: <20001121162837.A29556@student.uu.se> References: <00112116232802.00859@www.omega-project.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <00112116232802.00859@www.omega-project.net>; from sperber@w3.brgkepler.asn-graz.ac.at on Tue, Nov 21, 2000 at 04:21:21PM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Nov 21, 2000 at 04:21:21PM +0000, Sperber wrote: > Hi > > FreeBSD 4.2 RELEASE seems to available on ftp server - but when will it be > available for cvsup? > It already is available for cvsup. -- 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 Tue Nov 21 15: 5:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ntemailserver.TECATEGROUP.COM (unknown [64.66.26.141]) by hub.freebsd.org (Postfix) with SMTP id 2147637B4D7 for ; Tue, 21 Nov 2000 15:05:47 -0800 (PST) Received: from [192.168.30.21] by ntemailserver.TECATEGROUP.COM (NTMail 3.03.0017/7.abcn) with ESMTP id sa132488 for ; Tue, 21 Nov 2000 15:04:18 -0800 Received: from firewall ([192.168.30.112]) by 192.168.30.21 (Norton AntiVirus for Internet Email Gateways 1.0) ; Tue, 21 Nov 2000 23:18:22 0000 (GMT) Reply-To: From: "Doug Hubbell" To: Subject: Ping: send to: Can't assign requested address Date: Tue, 21 Nov 2000 15:07:06 -0800 Message-ID: <001c01c0540f$c4f4e400$701ea8c0@firewall.tecategroup> 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.2106.4 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello- I recently had to change my FreeBSD 3.1 IP address. After I made the IP address change every time I try to "ping" the server's IP address from the console I get this error message: Ping: send to: Can't assign requested address I can ping the server AWAY from my LAN no problem. It is just when I'm on the server from the console it can not assign the address. I need to be able to ping my server for other scripts that I run. Any help or suggestions is greatly appreciated. Thank you, Doug Hubbell To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 15: 8:35 2000 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 05A6537B689 for ; Tue, 21 Nov 2000 15:08:06 -0800 (PST) Received: from magpage.com (poomba.magpage.com [216.155.24.136]) by trinity.magpage.com (8.11.1/8.11.1) with ESMTP id eALN7xR26604 for ; Tue, 21 Nov 2000 18:07:59 -0500 Message-ID: <3A1B004F.3C611CD5@magpage.com> Date: Tue, 21 Nov 2000 18:07:59 -0500 From: Daniel Frazier Organization: Magpage Internet Services X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: swap_pager_getswapspace: failed -- not a lack of swap space... Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My workstation is hurting. A week or so ago I had been experiencing severe slowdowns that hung my machine within a few seconds. This was happening randomly, sometimes it would happen every other day, sometimes twice in one hour. I'm in X whenever this happens. It seems like if I am quick enough I can hit ctl-alt-backspace and drop back to the console (although it takes up to 10 minutes to do so), but I have to catch it in the 2-4 seconds it's slowing down but not yet hung. If I miss that window I have to hit the reset button. If I manage to drop back to the console I see... /kernel: swap_pager_getswapspace: failed ...scrolling off the screen, and swapinfo shows very little swap space utilization. There's no other indication of anything going wrong, nothing in /var/log/messages except for what was echo'd to the console that would indicate a problem, no core dump, nothing (unless I'm not looking in the right place, that is). I've added a swapfile but the messages continue. I've re-made world(since it had been a month or so since my box was STABLE) but this issue continues. I've searched the mailing list archives and found one thing that I thought might help (but didn't), putting "MOZILLA_NO_ASYNC_DNS=True; export MOZILLA_NO_ASYNC_DNS" in /etc/profile, but the rest just seemed to say "add more swap space..." I'm at a loss and a little frustrated so I apologize if I've been rambling, but I would very much appreciate any help here. Any info that would help me track down what process is causing this, or even something to do next time this happens to try to get some useable info, would be great. Here's some info, if there's anything relevant/important I'm leaving out please let me know... This box is a Celeron 500 with 128M of RAM and is usually running XFree86-3.3.6_1, gnome-1.2, linux-netscape-communicator-4.75 and a bunch of Eterms. poomba: ~ # uname -a FreeBSD poomba.magpage.com 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Mon Nov 20 16:49:22 EST 2000 root@poomba.magpage.com:/usr/obj/usr/src/sys/FBSD4 i386 poomba: ~ # swapinfo Device 1K-blocks Used Avail Capacity Type /dev/rad0s1b 267256 0 267256 0% Interleaved /dev/rvn0b 255872 0 255872 0% Interleaved Total 523128 0 523128 0% Here's my kernel config file... machine i386 cpu I686_CPU ident "FBSD4" maxusers 32 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 CD9660 #ISO 9660 Filesystem options CD9660_ROOT #CD-ROM usable as root, CD9660 required options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev device isa device eisa device pci device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives options ATA_STATIC_ID #Static device numbering options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device psm0 at atkbdc? irq 12 flags 0x100 device vga0 at isa? pseudo-device splash device sc0 at isa? flags 0x100 device npx0 at nexus? port IO_NPX irq 13 device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device ppi # Parallel port interface device device miibus # MII bus support device dc # DEC/Intel 21143 and various workalikes pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device pty # Pseudo-ttys (telnet etc) pseudo-device gzip #Exec gzipped a.out's pseudo-device vn #Vnode driver (turns a file into a device) pseudo-device bpf #Berkeley packet filter device pcm ---------------------------------------------------------------------- Daniel Frazier Tel: 302-239-5900 Ext. 231 System Administrator Fax: 302-239-3909 MAGPAGE, We Power the Internet WWW: http://www.magpage.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 15:13:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cwst.ru (unknown [195.72.227.18]) by hub.freebsd.org (Postfix) with ESMTP id 0B7D737B4C5 for ; Tue, 21 Nov 2000 15:13:47 -0800 (PST) Received: from [195.72.254.27] (HELO bis-bsd.stm) by cwst.ru (CommuniGate Pro SMTP 3.2.4) with ESMTP id 586320 for freebsd-questions@freebsd.org; Wed, 22 Nov 2000 09:10:19 +1000 Received: from it (unknown [10.0.1.101]) by bis-bsd.stm (Postfix) with ESMTP id D006A3DDB for ; Tue, 21 Nov 2000 23:17:30 +0000 (GMT) Date: Wed, 22 Nov 2000 09:13:27 +1000 From: Valentin Gorshkov X-Mailer: The Bat! (v1.44) Reply-To: Valentin Gorshkov X-Priority: 3 (Normal) Message-ID: <42442175.20001122091327@stmobile.ru> To: freebsd-questions@freebsd.org Subject: mrtg+ipfilter+snmpd Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all! How can i properly configure snmpd to count traffic to draw it's number via mrtg? I've got a FreeBSD 4.1-STABLE with IPFILTER.. -------- ó Õ×ÁÖÅÎÉÅÍ, ÷ÁÌÅÎÔÉÎ çÏÒÛËÏ×, óÉÓÔÅÍÎÙÊ ÁÄÍÉÎÉÓÔÒÁÔÏÒ úáï "óô íÏÂÁÊÌ" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 15:22:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lasher.thario.com (lasher.thario.com [63.227.22.20]) by hub.freebsd.org (Postfix) with ESMTP id 8BCCB37B4D7 for ; Tue, 21 Nov 2000 15:22:10 -0800 (PST) Received: from SWENG65M (root@localhost.thario.com [127.0.0.1]) by lasher.thario.com (8.11.1/8.11.1) with SMTP id eALNM8581351 for ; Tue, 21 Nov 2000 16:22:09 -0700 (MST) (envelope-from jim@thario.com) Message-ID: <02ea01c05411$dd7e6800$64f6a8c0@SWENG65M> From: "Jim Thario" To: Subject: SSH non-interactive login? Date: Tue, 21 Nov 2000 16:22:05 -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 X-Loop: FreeBSD.ORG I need to perform a non-interactive login using SSH to another machine to run a shell script. I can't seem to find a parameter for supplying a password on the command-line. Is there any way to do this? Thanks, Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 15:31:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sneakerz.org (sneakerz.org [207.154.226.254]) by hub.freebsd.org (Postfix) with ESMTP id 61E5A37B4E5 for ; Tue, 21 Nov 2000 15:31:16 -0800 (PST) Received: by sneakerz.org (Postfix, from userid 1091) id E9AE75D008; Tue, 21 Nov 2000 17:31:10 -0600 (CST) Date: Tue, 21 Nov 2000 17:31:10 -0600 From: James March To: misitu Cc: questions@FreeBSD.org Subject: Re: pppoe Message-ID: <20001121173110.B44200@sneakerz.org> References: <000401c05082$04f1cd20$0100000a@papaya> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <000401c05082$04f1cd20$0100000a@papaya>; from misitu@misitu.homechoice.co.uk on Fri, Nov 17, 2000 at 10:34:12AM -0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 17, 2000 at 10:34:12AM -0000, misitu wrote: > Hi, help... > I have FreeBSD4.0 > Does anyone know if this includes pppoe support, I now have adsl & would > like to avoid windos asap ( it has been a shock having to go back there > again after a long time, but the provision only comes bundled with it ) > > Thanks > David Denny > > > Yes. You will need to add 'options NETGRAPH' to your kernel config and setup ppp to work with your provider. I currently have it working with Pacbell with the assistance of an example provided by Jonathan Bresler. url = http://people.freebsd.org/~jmb/ james > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 21 15:33:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oxygen.americanisp.net (oxygen.americanisp.net [208.244.174.10]) by hub.freebsd.org (Postfix) with SMTP id C5CBE37B4CF for ; Tue, 21 Nov 2000 15:33:25 -0800 (PST) Received: (qmail 660 invoked by uid 7860); 21 Nov 2000 23:33:00 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 21 Nov 2000 23:33:00 -0000 Date: Tue, 21 Nov 2000 16:33:00 -0700 (MST) From: Peter To: Jim Thario Cc: Subject: Re: SSH non-interactive login? In-Reply-To: <02ea01c05411$dd7e6800$64f6a8c0@SWENG65M> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > password on the command-line. Kinda defeats the purpose of SSH? try `man tee` **Random Fortune for this instance of pine** Earth is a beta site. --- www.nul.cjb.net --- The Power to Crash! --- www.FreeBSD.org --- The Power to Serve! On Tue, 21 Nov 2000, Jim Thario wrote: > I need to perform a non-interactive login using SSH to another machine to > run a shell script. I can't seem to find a parameter for supplying a > password on the command-line. Is there any way to do this? > > Thanks, > Jim > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 21 15:40: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from backup.af.speednet.com.au (af.speednet.com.au [202.135.188.244]) by hub.freebsd.org (Postfix) with ESMTP id E806937B479 for ; Tue, 21 Nov 2000 15:40:00 -0800 (PST) Received: from backup.af.speednet.com.au (backup.af.speednet.com.au [172.22.2.4]) by backup.af.speednet.com.au (8.11.0/8.11.0) with ESMTP id eALNdYB46350; Wed, 22 Nov 2000 10:39:37 +1100 (EST) (envelope-from andyf@speednet.com.au) Date: Wed, 22 Nov 2000 10:39:34 +1100 (EST) From: Andy Farkas X-Sender: andyf@backup.af.speednet.com.au To: Rob Cc: questions@FreeBSD.ORG Subject: Re: ISA probing In-Reply-To: <000501c0533b$33d755e0$1201ed0a@athlon.quadro.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 20 Nov 2000, Rob wrote: > I am wishing to install FreeBSD via FTP (cable modem). The problem is > that FreeBSD is refusing to find the ethernet card. I am almost sure it is > because FreeBSD doesnt like probing ISA devices during install. the card is > a Netgear ISA NE2000 compliant which is supported. Is there anyway I can > force it? or enter extra parameters at the prompt? if so what is required to > do so, for the most part this is the only that can be done and I'm kinda > poor so another NIC is out of the question. do you have any other suggests? > Thanks You have to use the visual kernel configuration thingy to set the correct values for the ne2000's io, irq and memio. While you're there, you should disable all other ethernet devices. When you get to sysinstall's first screen, you can press 'Scroll Lock' and use the up-arrow key to scroll back and check if your card was probed properly. -- :{ andyf@speednet.com.au Andy Farkas System Administrator Speednet Communications http://www.speednet.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 Nov 21 15:51:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from giroc.albury.net.au (giroc.albury.NET.AU [203.15.244.13]) by hub.freebsd.org (Postfix) with ESMTP id 4C79D37B4E5 for ; Tue, 21 Nov 2000 15:51:49 -0800 (PST) Received: (from nicks@localhost) by giroc.albury.net.au (8.11.1/8.11.1) id eALNpK411112; Wed, 22 Nov 2000 10:51:20 +1100 (EST) Date: Wed, 22 Nov 2000 10:51:20 +1100 From: Nick Slager To: Jim Thario Cc: freebsd-questions@FreeBSD.ORG Subject: Re: SSH non-interactive login? Message-ID: <20001122105120.A9396@albury.net.au> References: <02ea01c05411$dd7e6800$64f6a8c0@SWENG65M> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <02ea01c05411$dd7e6800$64f6a8c0@SWENG65M>; from jim@thario.com on Tue, Nov 21, 2000 at 04:22:05PM -0700 X-Homer: Whoohooooooo! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Jim Thario (jim@thario.com): > I need to perform a non-interactive login using SSH to another machine to > run a shell script. I can't seem to find a parameter for supplying a > password on the command-line. Is there any way to do this? Don't Do That (tm). Instead, put your public key on the remote machine in ~/.ssh/authorized_keys2 (if you're using SSH2 with DSA encryption). man ssh for more details. Nick -- From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 15:52:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ntemailserver.TECATEGROUP.COM (unknown [64.66.26.141]) by hub.freebsd.org (Postfix) with SMTP id EE3EF37B4E5 for ; Tue, 21 Nov 2000 15:52:07 -0800 (PST) Received: from [192.168.30.21] by ntemailserver.TECATEGROUP.COM (NTMail 3.03.0017/7.abcn) with ESMTP id ba132549 for ; Tue, 21 Nov 2000 15:50:49 -0800 Received: from firewall ([192.168.30.112]) by 192.168.30.21 (Norton AntiVirus for Internet Email Gateways 1.0) ; Wed, 22 Nov 2000 00:04:53 0000 (GMT) Reply-To: From: "Doug Hubbell" To: Subject: Ping: send to: Can't assign requested address Date: Tue, 21 Nov 2000 15:53:37 -0800 Message-ID: <002501c05416$44842ae0$701ea8c0@firewall.tecategroup> 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.2106.4 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello- I recently had to change my FreeBSD 3.1 IP address. After I made the IP address change every time I try to "ping" the server's IP address from the console I get this error message: Ping: send to: Can't assign requested address I can ping the server AWAY from my LAN no problem. It is just when I'm on the server from the console it can not assign the address. I need to be able to ping my server for other scripts that I run. Any help or suggestions is greatly appreciated. Thank you, Doug Hubbell To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 15:56:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from druid.intra.kyocera-wireless.com (unknown [12.34.94.50]) by hub.freebsd.org (Postfix) with ESMTP id A5B3537B4C5 for ; Tue, 21 Nov 2000 15:56:43 -0800 (PST) Received: from gduvall.intra.kyocera-wireless.com (gduvall.intra.kyocera-wireless.com [172.20.41.200]) by druid.intra.kyocera-wireless.com (8.9.3/8.9.3/8.9) with ESMTP id PAA25244 for ; Tue, 21 Nov 2000 15:56:38 -0800 (PST) Message-Id: <5.0.1.4.2.20001121155328.00ac1ec0@mail2.intra.kyocera-wireless.com> X-Sender: grant@mail2.intra.kyocera-wireless.com X-Mailer: QUALCOMM Windows Eudora Version 5.0.1 Date: Tue, 21 Nov 2000 15:56:36 -0800 To: freebsd-questions@FreeBSD.ORG From: Grant DuVall Subject: Kengington Orbit Trackball problems Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Anyone have an idea of how to get a Kensington Orbit to work properly with moused and X? I got it to move around and the left button works but the right button will not work. If I change the settings around it locks up on me and I need to restart the configuration portion of the install. I'm using it under 4.1.1 with the Orbit plugged into the PS/2 port with the settings of sysmouse/auto. That is the best I've gotten but not having the right mouse buttons really limits me. Thanks, Grant To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 15:57:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns.ciac.jl.cn (unknown [202.98.16.1]) by hub.freebsd.org (Postfix) with ESMTP id 5F3BC37B4CF for ; Tue, 21 Nov 2000 15:57:49 -0800 (PST) Received: from 122 ([159.226.123.3]) by ns.ciac.jl.cn (8.9.1/8.9.1) with SMTP id HAA16576 for ; Wed, 22 Nov 2000 07:49:57 +0800 (CST) Message-ID: <003401c05417$5e152940$0c00a8c0@122> From: "S.W.Liu" To: Subject: Does anyone has if_tap.ko module in your FreeBSD? Date: Wed, 22 Nov 2000 08:01:30 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0031_01C0545A.6C185E20" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0031_01C0545A.6C185E20 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: base64 SSB3YW50IGEgbW9kdWxlIG9mIGlmX3RhcC5rbywgSSB3YW50IGdldCBvbmUuIElmIHlvdSBoYXZl LCBkbyB5b3UgYSBmYXZlciB0byBzZW5kIG1lIG9uZT8NCmJlc3QgcmVnYXJkIQ0K ------=_NextPart_000_0031_01C0545A.6C185E20 Content-Type: text/html; charset="gb2312" Content-Transfer-Encoding: base64 PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMCBUcmFuc2l0aW9uYWwv L0VOIj4NCjxIVE1MPjxIRUFEPg0KPE1FVEEgY29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PWdi MjMxMiIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8TUVUQSBjb250ZW50PSJNU0hUTUwgNS4w MC4yNjE0LjM1MDAiIG5hbWU9R0VORVJBVE9SPg0KPFNUWUxFPjwvU1RZTEU+DQo8L0hFQUQ+DQo8 Qk9EWSBiZ0NvbG9yPSNmZmZmZmY+DQo8RElWPjxGT05UIHNpemU9Mj5JIHdhbnQgYSBtb2R1bGUg b2YgaWZfdGFwLmtvLCBJIHdhbnQgZ2V0IG9uZS4gSWYgeW91IGhhdmUsIGRvIA0KeW91IGEgZmF2 ZXIgdG8gc2VuZCBtZSBvbmU/PC9GT05UPjwvRElWPg0KPERJVj48Rk9OVCBzaXplPTI+YmVzdCBy ZWdhcmQhPC9GT05UPjwvRElWPjwvQk9EWT48L0hUTUw+DQo= ------=_NextPart_000_0031_01C0545A.6C185E20-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 15:58:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-4.sjc.telocity.net (mail-4.sjc.telocity.net [216.227.56.44]) by hub.freebsd.org (Postfix) with ESMTP id 486AE37B4CF for ; Tue, 21 Nov 2000 15:58:28 -0800 (PST) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-4.sjc.telocity.net (8.9.3/8.9.3) with SMTP id PAA23086; Tue, 21 Nov 2000 15:13:47 -0800 (PST) From: "Otter" To: "Zaitsau, Andrei" , "'freebsd-questions@freebsd.org'" Subject: RE: NAT question Date: Tue, 21 Nov 2000 18:21:13 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <054F7DAA9E54D311AD090008C74CE9BD01F1E6D3@exchange.panasonicfa.com> X-Mimeole: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of }Zaitsau, Andrei }Sent: Tuesday, November 21, 2000 4:13 PM }To: 'freebsd-questions@freebsd.org' }Subject: NAT question } } }I am using NAT on a gateway connected to the internet. 2 }Computers are }connected to the gateway(192.168.0.1) with addresses 192.168.0.2 and }192.168.0.3, is it possible manually block NAT(disconnect }from internet) } for computer with 192.168.0.3 , while second host }192.168.0.2 will be still }alive(connected to the internet)? Yep. Depending on what you're using, (ipfw,ipf, etc) modify the appropriate rules. }Is it possible to limit bandwidth for users connected to gateway? Yep. man dummynet. man quota if you want to limit drive space too. -Otter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 16: 2:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.monochrome.org (monochrome.org [206.64.112.124]) by hub.freebsd.org (Postfix) with ESMTP id 9CECA37B4C5 for ; Tue, 21 Nov 2000 16:02:35 -0800 (PST) Received: from localhost (faro [192.168.1.7]) by mail.monochrome.org (8.9.3/8.9.3) with SMTP id TAA93100; Tue, 21 Nov 2000 19:02:26 -0500 (EST) (envelope-from chris@monochrome.org) Date: Tue, 21 Nov 2000 19:02:26 -0500 (EST) From: Chris Hill X-Sender: chris@localhost To: Cosmos Boekell Cc: freebsd-questions@FreeBSD.ORG Subject: Re: server In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 21 Nov 2000, Cosmos Boekell wrote: > i want to purchase or build a server (i.e. dns, nfs, ftp, http, login, > etc.) and want to run free bsd. i can spend up to $2000 maybe > $2500. please let me know your thoughts (i.e. P III vs. AMD, I've been running AMD processors with no trouble at all. The only difference I can see is a) Intel costs you $200 extra because you have to pay for their advertising campaigns, and b) Intel has a lock (for now) on some weird MPEG decoder, which won't matter for a server. > motherboards, RAID, The generic motherboards I've used have all worked, but that may have been dumb luck. Never dealt with RAID; sorry. You may want to look at vinum for RAID info. > SCSI vs. EIDE, SCSI is fast and, speaking as an engineer, a much more 'elegant' way to do disk drives (supports many disks on one CPU). However EIDE is a fraction of the cost per gigabyte, and it's hard to argue with that for a single-disk system. It all depends on your needs. > rack vs. tower, etc.) At a basic level, it doesn't matter. This will be determined entirely by your requirements. If you're in a tight colocation space where you only get a few rack units, go for the rack-mount. If you have a nice office and space is not such an issue, the tower will probably be cheaper to buy. Depending on where you buy it, the rack-mount chassis may offer some features not available in a generic tower. I'm thinking of things like hot-swappable redundant power supplies, serial port on the front panel, redundant fans, and so on. HTH. -- Chris Hill chris@monochrome.org [1] Bus error netscape To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 16: 3:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from corrupt.network-alchemy.com (Corrupt.Network-Alchemy.COM [199.46.16.36]) by hub.freebsd.org (Postfix) with ESMTP id 270CF37B4CF for ; Tue, 21 Nov 2000 16:03:20 -0800 (PST) Received: from network-alchemy.com (localhost [127.0.0.1]) by corrupt.network-alchemy.com (8.11.1/8.11.1) with ESMTP id eAM03J600423 for ; Tue, 21 Nov 2000 16:03:19 -0800 (PST) (envelope-from mruhl@network-alchemy.com) Message-ID: <3A1B0D47.61494731@network-alchemy.com> Date: Tue, 21 Nov 2000 16:03:19 -0800 From: Mike Ruhl X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: X server question Content-Type: multipart/mixed; boundary="------------586B6BD1898A70EBB9727183" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------586B6BD1898A70EBB9727183 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Howdy, Can someone tell me what the difference between say: xtt-Mach64-1.3.0: A X True Type Server for Mach64 Graphics Cards And the default X_MACH64 server is? Thanks, Mike --------------586B6BD1898A70EBB9727183 Content-Type: text/x-vcard; charset=us-ascii; name="mruhl.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for Mike Ruhl Content-Disposition: attachment; filename="mruhl.vcf" begin:vcard n:Ruhl;Michael J tel;work:(831) 440-6472 x-mozilla-html:FALSE org:Nokia adr:;;1538 Pacific Avenue;Santa Cruz;CA.;95060;U.S.A. version:2.1 email;internet:mruhl@cips.nokia.com title:Tall Blond Guy x-mozilla-cpt:;0 fn:Michael J Ruhl end:vcard --------------586B6BD1898A70EBB9727183-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 16:44:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from echunga.lemis.com (freebie.lemis.com [192.109.197.137]) by hub.freebsd.org (Postfix) with ESMTP id B938537B4C5 for ; Tue, 21 Nov 2000 16:44:10 -0800 (PST) Received: (from grog@localhost) by echunga.lemis.com (8.11.1/8.9.3) id eAM0eid83624; Wed, 22 Nov 2000 11:10:44 +1030 (CST) (envelope-from grog) Date: Wed, 22 Nov 2000 11:10:43 +1030 From: Greg Lehey To: Mike Ruhl Cc: freebsd-questions@FreeBSD.ORG Subject: Re: wd vs ad Message-ID: <20001122111043.C83216@echunga.lemis.com> References: <3A1AD033.D39AF963@network-alchemy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A1AD033.D39AF963@network-alchemy.com>; from mruhl@network-alchemy.com on Tue, Nov 21, 2000 at 11:42:44AM -0800 Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tuesday, 21 November 2000 at 11:42:44 -0800, Mike Ruhl wrote: > Howdy, > > I recently upgraded to 4.0 and made the change from the /dev/wd* > devices to /dev/ad* devices. And I had a few questions about this... > :) > > 1) Can I safely delete the wd devices? Yes. > 2) It appears that the ad devices are character devices instead of > block devices. Further investigation reveals that all the wd devices > are character devices as well. I have obviously missed something > somewhere. When did the disk devices become character devices? Why > the change? Has the driver model changed so that character/block > devices are no longer "relevant"? > > A casual search of the archives hasn't revealed anything. :( Can > someone point me to a location of where this was discussed? The archives. But more specifically, block devices went away with 4.0. Nothing much else has changed. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 16:59:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from alice.twopoint.com (unknown [209.64.88.4]) by hub.freebsd.org (Postfix) with ESMTP id 4B97737B479 for ; Tue, 21 Nov 2000 16:59:11 -0800 (PST) Received: from twopoint.com (hamilton@fred.twopoint.com [192.168.1.3]) by alice.twopoint.com (8.8.7/8.8.7) with ESMTP id SAA00828 for ; Tue, 21 Nov 2000 18:44:53 -0600 Message-ID: <3A1B1780.263AF45C@twopoint.com> Date: Tue, 21 Nov 2000 18:46:56 -0600 From: Hamilton Hoover Organization: Two Point Conversions, INC. X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.16-22 i686) X-Accept-Language: en MIME-Version: 1.0 To: "freebsd-questions@FreeBSD.ORG" Subject: smtp port question Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG can anyone tell me what ports sendmail sends on? Hamilton Hoover To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 17:10: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id 61BAC37B4C5 for ; Tue, 21 Nov 2000 17:09:40 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAM19Q606809; Wed, 22 Nov 2000 12:09:27 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Wed, 22 Nov 2000 12:09:25 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="us-ascii" To: Chip , "freebsd-questions@freebsd.org" References: <3A19E749.E9E048E2@wiegand.org> <00112117251600.37336@shalimar.net.au> <3A1A880A.25BC4A01@wiegand.org> In-Reply-To: <3A1A880A.25BC4A01@wiegand.org> Subject: Re: 'find' is running all by itself MIME-Version: 1.0 Message-Id: <00112212092503.05727@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wednesday 22 November 2000 01:34, Chip wrote: > Zero Sum wrote: > > > > On Tuesday 21 November 2000 16:15, Chip wrote: > > > John P. Campbell wrote: > > > > > > > > A look at /etc/periodic/daily on my box shows that find runs quite > > often. > > > > It's a good chance that is what you are seeing. > > > > > > > > : jpc % cd /etc/periodic/daily/ > > > > : daily % grep find * > > > > > > I tried this command as you have it shown above and get > > > daily: command not found > > > Besides that, in my daily directory is a whole bunch of stuff, > > > and > > > find is not amoung any of it. Should it be? It's not any big > > > deal, > > > I'm just curious where it's starting and what is telling it to > > > start. None of the other fbsd machines do this. > > > > > > > This is a joke, right? > > > > You didn't really fail to recognise the '%' as a c-shell prompt, did you? > > > > You didn't type "daily % grep find *" instead of "grep find *", did you? > > > > You weren't really expecting the 'find' command to be there were you? > > > > If the answer to ANY one of the aboce was yes, then you need to get > > yourself some basic books on Unix. Asking questions here won't do you much > > good as you won't understand the answers. > > > > The explanation that was given you was most probably accurate. You > > mightcheck the system time, though. > > > > Geoff > > -- > > count@shalimar.net.au > > Nihil curo de ista tua stulta superstitione > > I am quite sure that you too were once a beginner in the *nix > environment. I doubt very much that you were born with all this > great store house of knowledge. Maybe it has been so long that > you have forgotten those days of learning though, and now don't > have the patience for people who are learning, so feel compelled > to lash out at them in a childish manner. A serious question > should only be returned with a serious answer, which most people > on this list do. You appear to be an exception, I'm sorry. > You misjudge me. I was genuinely incredulous. I don't consider that I have "great storehouse of knowlege". And no, I wasn't born with what I do have, but I was born learning to look at what I see. I have plenty of sympathy for beginners, and I provide quite a bit of help to those I can help both on list and (mainly) off-list. In fact I usually pick the beginners to help, because they need it most and for five years I wrote and taught Unix courses in the industry. However, it is a lot easier to help people who think and analyise what they see. For example, you were provided with two lines of shell code, and you completely failed to look at it with any degree of analysis. The lines were... : jpc % cd /etc/periodic/daily/ : daily % grep find * Now the first one is a 'cd' command. Surely that is obvious. I could not and cannot believe that it could be misconstrued. That tells you that ": jpc % " was the prompt. Is there any way in which this could be more obvious? Is there any way in which you could have failed to interpret this if you *looked* at it? For the second line, the prompt has clearly changed and reflects the directory to which the last command changed. Note the 'daily'. Again, what could be more obvious when you *look*. This leaves only "grep find * " as the command to use. Not "daily %....". This isn't a matter of "great storehouse of knowlege", it is a matter of basic attitude. "Thinking about things" vs "silver platter". I said to you "If the answer to ANY one of the aboce was yes, then you need to get yourself some basic books on Unix. Asking questions here won't do you much good as you won't understand the answers". Doesn't the above *prove* that statement. You asked a question, you got a good reply and you didn't even understand the most basic two lines of code that could probably be written. A "cd" and a "grep". I gave you good (and necessary) advice. if you want to take it as a put down, that's your problem. When I first encountered Unix, there was no help available, I was in the "commercial" world and the only access to the internet was in the "acadaemic world". So even the (then limited) Internet was not available. O'Reilly didn't exits and there were no readily available books on Unix. So, what did I have? "man" and that was it. I would recommend to anyone on first encountering Unix to (1) Read, learn and understand everything on the "man sh" or "man ksh" pages. (2) Read every other man page on the system. You won't understand every thing on every page, but you will start to see paterns involved, and you will learn much and remember where to find things. (3) Make a listing of every file on the system (yes, every one!) and find out why they are there and what they do. Cross each one off the list as you find out. But that is too much like work, isn't it? (Learning usually is). As for not having patience and lashing out in a childish manner. My take on it is this. There is no reason to have patience with those who ask questions and do not listen to the answers (or think about them). To want things handed to you on a "silver platter" is childish, to protest when silliness is pointed out is childish. If you think I "lashed out" you must have had a very "gentle" life. If you consider I am ill-mannered, I like you consider what sort of manners are involved, when somebody (not me) gave you a good answer to your question and you effectively "ignored" it. Whyfore then, should I be "gentle"? Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 17:12:40 2000 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 9014C37B4E5 for ; Tue, 21 Nov 2000 17:12:36 -0800 (PST) Received: from fedde (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.0/8.11.0.Beta3) with ESMTP id eAM1B8e16569; Tue, 21 Nov 2000 18:11:08 -0700 (MST) Message-Id: <200011220111.eAM1B8e16569@fedde.littleton.co.us> To: Hamilton Hoover Cc: "freebsd-questions@FreeBSD.ORG" Subject: Re: smtp port question In-Reply-To: <3A1B1780.263AF45C@twopoint.com> From: Chris Fedde Date: Tue, 21 Nov 2000 18:11:08 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 21 Nov 2000 18:46:56 -0600 Hamilton Hoover wrote: +------------------ | can anyone tell me what ports sendmail sends on? | | Hamilton Hoover +------------------ Sendmail, like most normal TCP connections, uses a random source port. -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 17:12:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id 2134237B4D7 for ; Tue, 21 Nov 2000 17:12:49 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAM1CN606832; Wed, 22 Nov 2000 12:12:24 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Wed, 22 Nov 2000 12:12:22 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: mike johnson , questions@FreeBSD.ORG References: <20001121065825.723CC1DDE@baddog.yi.org> In-Reply-To: <20001121065825.723CC1DDE@baddog.yi.org> Subject: Re: lag? MIME-Version: 1.0 Message-Id: <00112212122304.05727@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tuesday 21 November 2000 17:58, mike johnson wrote: > This is kind of weird but.. > first off heres my stuff.. > 2 boxen , both freebsd 4.1.1 > > I have box 1 as the gateway . > I have net access and I can go to webpages , but when I ssh or ftp to > box1 from box 2 it stalls alot. And if i send a file over about 500k it > will stall > in the middle of the send and not finsh the send. > And in ssh it will just freeze sometimes , for no reason at all. > Any idea on how to fix this? > Have you compared the lags with your firewall logs? Are you blocking ports that these utilities have tried to use? Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 17:43:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp02.teb1.iconnet.net (smtp02.teb1.iconnet.net [209.3.218.43]) by hub.freebsd.org (Postfix) with ESMTP id 43BCC37B479; Tue, 21 Nov 2000 17:43:39 -0800 (PST) Received: from bellatlantic.net (client-151-198-117-204.nnj.dialup.bellatlantic.net [151.198.117.204]) by smtp02.teb1.iconnet.net (8.9.1/8.9.1) with ESMTP id UAA18581; Tue, 21 Nov 2000 20:43:24 -0500 (EST) Message-ID: <3A1B24BB.37D7DF6B@bellatlantic.net> Date: Tue, 21 Nov 2000 20:43:23 -0500 From: Sergey Babkin X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 4.0-19990626-CURRENT i386) X-Accept-Language: en, ru MIME-Version: 1.0 To: Roman Shterenzon Cc: freebsd-hackers@freebsd.org, freebsd-questions@freebsd.org Subject: Re: truss -f References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Roman Shterenzon wrote: > > Hi, > > Once, someone told me that he had a patch for truss that allows it to > follow children, just like in Solaris (or strace -f in linux). > Does anyone have it? Why don't you use the native ktrace/kdump commands instead ? "ktrace -d" does follow the children. I think truss has only a minimalistic implementation. -SB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 17:44:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.monochrome.org (monochrome.org [206.64.112.124]) by hub.freebsd.org (Postfix) with ESMTP id 3C45A37B479 for ; Tue, 21 Nov 2000 17:44:51 -0800 (PST) Received: from localhost (faro [192.168.1.7]) by mail.monochrome.org (8.9.3/8.9.3) with SMTP id UAA93237; Tue, 21 Nov 2000 20:43:03 -0500 (EST) (envelope-from chris@monochrome.org) Date: Tue, 21 Nov 2000 20:43:03 -0500 (EST) From: Chris Hill X-Sender: chris@localhost To: Hamilton Hoover Cc: "freebsd-questions@FreeBSD.ORG" Subject: Re: smtp port question In-Reply-To: <3A1B1780.263AF45C@twopoint.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 21 Nov 2000, Hamilton Hoover wrote: > can anyone tell me what ports sendmail sends on? /etc/services can tell you :^) -- Chris Hill chris@monochrome.org [1] Bus error netscape To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 17:47:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id 19A0F37B479 for ; Tue, 21 Nov 2000 17:47:31 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAM1lA606940; Wed, 22 Nov 2000 12:47:14 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Wed, 22 Nov 2000 12:47:10 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: "Human" , "freebsdquestions" References: In-Reply-To: Subject: Re: filesystem/dir file? MIME-Version: 1.0 Message-Id: <00112212471005.05727@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wednesday 22 November 2000 03:36, Human wrote: > HI > > Ive tried this in SCO UW7, Redhat and FBSD 4.0. > > If u make a empty directory and then run a script in it to produce a couple > thousand empty files , u will note that the size of the actual directory > file increases, which is normal because the actual file names of the files u > have created in the dir and their inode numbers are stored in the directory > file. The strange thing is once u delete the files in the directory the size > of the directory file does NOT decrease, why??? I presume the reference to > the file is removed but it seems (im not sure about the wording) the > placeholder or buffer in the directory file does not get removed therefore > it stays the same size. > > My question is why does it not empty the file properly this seems like a > large waste of space, the only conclusion I can come to is in the old days > (b4 I was born) computers were too slow and it would have used up > unnecessary resources????? > Any one have a better theory? > It is the way directory entries work, I Unix a directory entry is just a 'link'. A two coloumn table entry containing the inode number and the file name. This is why rm does not delete anything. It hust removes the link as there may be other links. Execute permission on a directory means the ability to make the association between the two coloumns (see execute *is* appropriate). Read permission allows you to see the links in the directory (but not the files) and write allows you to modify the directory. Table entries are created as they are needed, unsorted, unordered. i.e. The directory files are grown by a block when all table entries are full. Put a lage number of files in a directory, you get a big directory. Remove a few links and you wind up with empty slots in the table, but *no adjustments are made* to the table structure, it does not "shrink". This would make for a very inefficient file system, even today. it is a maintenance function, not 'in-process' function. Directories are always read sequentially (since they are not ordered) and placing any serious number of files in a single large directory is a no-no. It can add considerably to your I/O time. I know where there is a Solaris box that takes 10 minutes to do an 'ls' of a given directory (14,000 entries). I know of no utility to shrink directories. The old technique to do this was to make a new one move the files to it, delete the old one and rename the new one. This was part of system tuning (regular maintenance) and I used to have scripts to do this. I can't see any reason why a "shrinking" utility could not be written that would shrink directories though... But I've never seen one. And it never occured to me to write one. Avoiding the problem is not too hard. Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 18:16:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 1468E37B479 for ; Tue, 21 Nov 2000 18:16:34 -0800 (PST) Received: (qmail 44862 invoked by uid 100); 22 Nov 2000 02:16:32 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14875.11392.667087.866375@guru.mired.org> Date: Tue, 21 Nov 2000 20:16:32 -0600 (CST) To: Chris Byrnes Cc: questions@freebsd.org Subject: Re: rmt + remote In-Reply-To: <87314896@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Chris Byrnes types: > are the "rmt" and "remote" in /etc needed? Short answer: Yes. Long answer: Very little on the disk is *needed* (let's see - /kernel, /sbin/init and /bin/sh can get you a shell prompt....). However, taking off everything but those doesn't leave your system capable of doing very many useful tasks. That said, everything on the disk is needed to do some task. The question is whether or not the tasks that need /etc/rmt and /etc/remote are useful to you. Trying "man `basename `" for a file is a good start at finding out what tasks a file is used for (and "man -k `basename `" is a good second shot). ; Tue, 21 Nov 2000 18:17:07 -0800 (PST) Received: from gidney.intelenet.net (gidney.intelenet.net [207.38.65.47]) by irv1-mail2.intelenet.net (8.9.3/8.9.3) with ESMTP id SAA07701; Tue, 21 Nov 2000 18:17:04 -0800 (PST) Message-Id: <200011220217.SAA07701@irv1-mail2.intelenet.net> X-Mailer: exmh version 2.1.1 10/15/1999 To: Bart Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ping OK, daemons dead ? In-reply-to: Your message of Tue, 21 Nov 2000 13:04:51 +0100. Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 21 Nov 2000 18:17:17 -0800 From: David Harnick-Shapiro Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 21 Nov 2000 13:04, Bart writes: > On Tue, 21 Nov 2000, David Proffitt wrote: >>>> acid2:/1/home/skin$ telnet mymachine.nl >>>> Trying 212.104.204.x... >>>> Connected to mymachine.nl. >>>> Escape character is '^]'. >>>> >>>> So the daemon ain't dead... >> >> Do you eventually get a login prompt (after about 40 seconds) >> If so it may be trying (and failing) to do a DNS lookup on the inncoming > > I can wait 5+ mins and still no login: > (and it seams that it doesn't even close the connection > after xx minutes) Rather than daemon processes dying, this sounds to me more like processes getting starved for resources (cpu cycles, memory, mbufs, something along those lines). Can you do some low-tech monitoring and figure out what's getting used up? Try connecting to the system while it's healthy, and just keep top or netstat or swapinfo or ... running, so you see what state the machine was in when you last had useful access to it. -------- David Harnick-Shapiro FirstWorld Communications Senior Networked Systems Engineer 18101 Von Karman Avenue, Ste 550 Irvine CA 92612 "Get the Internet the way you want it" http://www.firstworld.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 18:17:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id DBA1A37B4E5 for ; Tue, 21 Nov 2000 18:17:22 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAM2HC607067; Wed, 22 Nov 2000 13:17:12 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Wed, 22 Nov 2000 13:17:12 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="US-ASCII" To: Cosmos Boekell , freebsd-questions@FreeBSD.ORG References: In-Reply-To: Subject: Re: server MIME-Version: 1.0 Message-Id: <00112213171207.05727@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wednesday 22 November 2000 08:49, Cosmos Boekell wrote: > i want to purchase or build a server (i.e. dns, nfs, ftp, http, login, > etc.) and want to run free bsd. i can spend up to $2000 maybe > $2500. please let me know your thoughts (i.e. P III vs. AMD, > motherboards, RAID, SCSI vs. EIDE, rack vs. tower, etc.) > AMD should be fine, but I would try and build a multi-processor box, even if it means slower processors. It will likely perform better and the difference may increase when a ouple of FreeBSD problems get solved. SCSI would be nice, but that is much more expensive. I'd say multiprocessor would be more important. For a high hit rate, DSCSI is much better though. Towers are easy to work on. Racks you gotta disassebmle mostly. Depends if it is going to stay static or undergo change. Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 18:20: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 47D3737B4C5 for ; Tue, 21 Nov 2000 18:20:00 -0800 (PST) Received: (qmail 44960 invoked by uid 100); 22 Nov 2000 02:19:59 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14875.11599.841416.227931@guru.mired.org> Date: Tue, 21 Nov 2000 20:19:59 -0600 (CST) To: Bart Cc: questions@freebsd.org Subject: Re: ping OK, daemons dead ? In-Reply-To: <87345815@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Bart types: > On Tue, 21 Nov 2000, brian william wolter wrote: > > > of situations; is it possible to use a script/program > > > which reboots the machine after 12 hours of no > > > activity of some kind of daemon (or login). > > you'd probibly be better off writing a script that will just restart the > > daemons that are dying on you, that way you won't have the downtime that > > will result from actually rebooting. you can just have the script check > > to see if the processes are still running and restart them if they are > > not. then just put it in the crontabs to execute every so often. > Well, I can not reach the console at this moment (it's a machine > located somewhere else) but the weird part is that I *can* connect > (using telnet) but no "login:" appears: > > acid2:/1/home/skin$ telnet mymachine.nl > Trying 212.104.204.x... > Connected to mymachine.nl. > Escape character is '^]'. > > So the daemon ain't dead... Those are the symptoms you see if one or more disks can't be accessed. Are you getting any error messages in the logs related to the disk? Do you have any daemons running that can respond without touching a disk (Apache status pages, maybe?)? ; Tue, 21 Nov 2000 18:52:23 -0800 (PST) Received: from satx.rr.com (cs160145-193.satx.rr.com [24.160.145.193]) by newsf1.texas.rr.com (8.10.1/8.10.1) with ESMTP id eAM2o2u12244; Tue, 21 Nov 2000 20:50:02 -0600 (CST) Message-ID: <3A1B3443.4CC3FCEF@satx.rr.com> Date: Tue, 21 Nov 2000 20:49:39 -0600 From: Jason X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Mike Batchelor Cc: questions@FreeBSD.ORG Subject: Re: PCM0 Sound References: <000c01c05458$f76c50a0$8ded4518@kldt1.bc.wave.home.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mike Batchelor wrote: > Hi all, I've been having two problems. I have FreeBSD 4.1.1-RELEASE > installed and I put "device pcm" to install my Sb LIVE!.. and.. 1. I > always get "pcm0: hwptr went backwards 1376 -> 544" as a bold error > message in the console from time to time. 2. My .WAV sounds play > crapilly, with either XMMS or PLAY, whereas MP3's sound great! If > anyone could help me, I would appreciate it a lot.. Thanks! interesting. I have the same problem. MP3's sound great, wav files suck.. and same error msg time to time. Let me know what you find out. cheers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 19:18:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 349A837B4C5 for ; Tue, 21 Nov 2000 19:18:11 -0800 (PST) Received: (qmail 47328 invoked by uid 100); 22 Nov 2000 03:18:10 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14875.15090.97012.14749@guru.mired.org> Date: Tue, 21 Nov 2000 21:18:10 -0600 (CST) To: "Human" Cc: questions@freebsd.org Subject: Re: filesystem/dir file? In-Reply-To: <75277658@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Human types: > HI > Ive tried this in SCO UW7, Redhat and FBSD 4.0. > > If u make a empty directory and then run a script in it to produce a couple > thousand empty files , u will note that the size of the actual directory > file increases, which is normal because the actual file names of the files u > have created in the dir and their inode numbers are stored in the directory > file. The strange thing is once u delete the files in the directory the size > of the directory file does NOT decrease, why??? I presume the reference to > the file is removed but it seems (im not sure about the wording) the > placeholder or buffer in the directory file does not get removed therefore > it stays the same size. > > My question is why does it not empty the file properly this seems like a > large waste of space, the only conclusion I can come to is in the old days > (b4 I was born) computers were too slow and it would have used up > unnecessary resources????? > Any one have a better theory? Well, I think you're partly right. Part of the answer is that what you're doing is sufficiently unnatural that savings would be very small, so there's no point in doing it. The speed of old/current machines doesn't really have much to do with the performance issue. If you double the number of disk access it takes to delete a file (and that's the least I can see it adding with no real work on the problem), you double the time no matter how fast the computer is. That's a serious performance hit. If you're really interested in how much this would save, why don't you find a file tree that's being used for real work, "cp -r" it to another place, then sum the size of the directories in the two trees. That will tell you how much space not compacting directories is costing. If you think it's a lot of space, feel free to dive into the kernel sources and fix the problem. ; Tue, 21 Nov 2000 19:23:32 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 21 Nov 2000 19:23:31 -0800 Received: from 202.109.0.85 by pv1fd.pav1.hotmail.msn.com with HTTP; Wed, 22 Nov 2000 03:23:31 GMT X-Originating-IP: [202.109.0.85] From: "bsdnewbie bsdnewbie" To: freebsd-questions@FreeBSD.org Subject: _ DELAY(1) == delay 1 us ? 1 ms ? hz = ? Date: Wed, 22 Nov 2000 11:23:31 +0800 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 22 Nov 2000 03:23:31.0837 (UTC) FILETIME=[96EA32D0:01C05433] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I see many DELAY() in some kernel source code, but I can not make clear how long does DELAY() delay. DELAY(1) = ? And what is hz, hz = ? Thanks in advance best regards, bsdnewbie Nov 22, 2k _____________________________________________________________________________________ Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 19:27:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 6E17F37B4CF for ; Tue, 21 Nov 2000 19:27:11 -0800 (PST) Received: (qmail 47576 invoked by uid 100); 22 Nov 2000 03:27:11 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14875.15630.970279.489741@guru.mired.org> Date: Tue, 21 Nov 2000 21:27:10 -0600 (CST) To: "Kevin Oberman" Cc: questions@freebsd.org Subject: Re: startup scripts In-Reply-To: <11129814@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Kevin Oberman types: > > Date: Sat, 18 Nov 2000 13:20:53 +0300 > > From: Igor Robul > > Sender: owner-freebsd-questions@FreeBSD.ORG > > On Sat, Nov 18, 2000 at 02:06:46AM -0600, Brian Wolter wrote: > > > where are the startup scripts located on FBSD? > > There is only one startup script on *BSD, opposed to f*d SystemV :-) , > > it is called /etc/rc > This is not really true. The basic operating systems does not use > startup scripts ala SysV, but /usr/local/etc/rc.d is where user > startup/shutdown scripts are located. Actually, it is true. /etc/rc runs the things in /usr/local/etc/rc.d. Of course, the same is also true of SysV (at least some of them) - the have lots of scripts that are all run from one script in /etc. And with any luck, all the things that /etc/rc (and friends) start on FreeBSD will be reorganized into a directory of scripts that can be used to start and stop subsystems, ala NetBSD-current. ; Tue, 21 Nov 2000 19:32:17 -0800 (PST) Received: from bigfoot.com (cvg-27-180-111.cinci.rr.com [24.27.180.111]) by ipass.one.net (8.8.7/8.8.7) with ESMTP id WAA15096; Tue, 21 Nov 2000 22:35:42 -0500 Message-ID: <3A1B3DAF.E005218B@bigfoot.com> Date: Tue, 21 Nov 2000 22:29:51 -0500 From: Sam Carleton X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: igorr@crosswinds.net, FreeBSD Questions Subject: Re: setting up dhcpd References: <200011210352.eAL3qKS92785@grumpy.dyndns.org> <3A1A09FC.9A4CC304@bigfoot.com> <20001121091458.A24897@linux.rainbow> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Igor' Robul' wrote: > On Tue, Nov 21, 2000 at 12:37:00AM -0500, Sam Carleton wrote: > > I need dhcpd, the server. > cd /usr/ports/net/isc-dhcp3 > make install This is what happened when I tried it: root /usr/ports/net/isc-dhcp3> make install ===> isc-dhcp3-3.0.b1.14 is forbidden: security hole found. root /usr/ports/net/isc-dhcp3> Any thoughts on what the problem is? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 19:32:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.monochrome.org (monochrome.org [206.64.112.124]) by hub.freebsd.org (Postfix) with ESMTP id 6FB4C37B4CF for ; Tue, 21 Nov 2000 19:32:41 -0800 (PST) Received: from localhost (faro [192.168.1.7]) by mail.monochrome.org (8.9.3/8.9.3) with SMTP id WAA93381; Tue, 21 Nov 2000 22:32:38 -0500 (EST) (envelope-from chris@monochrome.org) Date: Tue, 21 Nov 2000 22:32:38 -0500 (EST) From: Chris Hill X-Sender: chris@localhost To: bsdnewbie bsdnewbie Cc: freebsd-questions@FreeBSD.ORG Subject: Re: _ DELAY(1) == delay 1 us ? 1 ms ? hz = ? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 22 Nov 2000, bsdnewbie bsdnewbie wrote: > I see many DELAY() in some kernel source code, but I can not make clear how > long does DELAY() delay. DELAY(1) = ? And what is hz, hz = ? bash-2.02$ man delay No manual entry for delay Can't answer the first part, but I imagine that hz means Hertz, properly abbreviated as Hz. 1 Hz is 1 cycle per second or one second per cycle. Metric prefixes apply, therefore 1 kHz = 1000 cycles per second (0.001 seconds or 1 ms per cycle), and so on. -- Chris Hill chris@monochrome.org [1] Bus error netscape To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 19:34:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.bna.bellsouth.net (mail1.bna.bellsouth.net [205.152.150.13]) by hub.freebsd.org (Postfix) with ESMTP id 7EB5137B479 for ; Tue, 21 Nov 2000 19:34:29 -0800 (PST) Received: from planetwe.com (adsl-63-164-15.bna.bellsouth.net [208.63.164.15]) by mail1.bna.bellsouth.net (3.3.5alt/0.75.2) with ESMTP id WAA04506 for ; Tue, 21 Nov 2000 22:34:24 -0500 (EST) Message-ID: <3A1B4122.9050108@planetwe.com> Date: Tue, 21 Nov 2000 21:44:34 -0600 From: Drew Sanford User-Agent: Mozilla/5.0 (X11; U; Linux 2.2.12 i386; en-US; m18) Gecko/20001107 Netscape6/6.0 X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: Promise ATA 100 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -- Dennis Ostrovsky wrote: > So I got a copy of 4.1.1-R in the hopes that it would detect my > ATA100 drive by default. I have an Asus A7V mobo. But it doesn't seem > to, since when I get to the install screen it says no drives found. > Sooo I'm wondering if there's some command line option when you go to > configure your devices which will enable this. > See my patch at http://www.freebsd.org/cgi/query-pr.cgi?pr=20834 It is beyond me why SOS can't integrate that patch, all it does is to add the proper ID for the inboard version of the Promise ATA100 chipset. I have been running (and booting) my system from ATA100 disks for the last 2 months with my A7V mobo. Gerd Has this been done yet (IE can I boot a 4.2 cd and install directly to a drive on the ATA100 controler on an A7V) or are we still waiting on something? I just thought I'd check before I download the ISO. Drew Sanford Systems Administrator drew@planetwe.com http://www.planetwe.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 19:39: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.monochrome.org (monochrome.org [206.64.112.124]) by hub.freebsd.org (Postfix) with ESMTP id 0791937B4D7 for ; Tue, 21 Nov 2000 19:39:00 -0800 (PST) Received: from localhost (faro [192.168.1.7]) by mail.monochrome.org (8.9.3/8.9.3) with SMTP id WAA93398; Tue, 21 Nov 2000 22:38:27 -0500 (EST) (envelope-from chris@monochrome.org) Date: Tue, 21 Nov 2000 22:38:27 -0500 (EST) From: Chris Hill X-Sender: chris@localhost To: Sam Carleton Cc: igorr@crosswinds.net, FreeBSD Questions Subject: Re: setting up dhcpd In-Reply-To: <3A1B3DAF.E005218B@bigfoot.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 21 Nov 2000, Sam Carleton wrote: > Igor' Robul' wrote: > > > On Tue, Nov 21, 2000 at 12:37:00AM -0500, Sam Carleton wrote: > > > I need dhcpd, the server. > > cd /usr/ports/net/isc-dhcp3 > > make install > > This is what happened when I tried it: > > root /usr/ports/net/isc-dhcp3> make install > ===> isc-dhcp3-3.0.b1.14 is forbidden: security hole found. > root /usr/ports/net/isc-dhcp3> > > Any thoughts on what the problem is? Most likely it means that the port maintainer found a security hole and didn't want to make dhcp3 completely available until it's fixed. I found a similar situation with dhcpd2 several months ago. If you still want to install it, you can download the tarball from http://www.isc.org/products/DHCP/ and install it manually. Just follow the instructions that are posted there. Trust me, if someone as clueless as I can do it, so can you! HTH. -- Chris Hill chris@monochrome.org [1] Bus error netscape To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 19:39:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id AB4E037B479 for ; Tue, 21 Nov 2000 19:39:47 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id HAA61819; Wed, 22 Nov 2000 07:05:53 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAM3dAq10686; Wed, 22 Nov 2000 06:39:10 +0300 Date: Wed, 22 Nov 2000 06:39:09 +0300 From: "Igor' Robul'" To: Sam Carleton Cc: freebsd-questions@freebsd.org Subject: Re: setting up dhcpd Message-ID: <20001122063909.A10674@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: Sam Carleton , freebsd-questions@freebsd.org References: <200011210352.eAL3qKS92785@grumpy.dyndns.org> <3A1A09FC.9A4CC304@bigfoot.com> <20001121091458.A24897@linux.rainbow> <3A1B3DAF.E005218B@bigfoot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <3A1B3DAF.E005218B@bigfoot.com>; from scarleton@bigfoot.com on Tue, Nov 21, 2000 at 10:29:51PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Nov 21, 2000 at 10:29:51PM -0500, Sam Carleton wrote: > This is what happened when I tried it: > > root /usr/ports/net/isc-dhcp3> make install > ===> isc-dhcp3-3.0.b1.14 is forbidden: security hole found. > root /usr/ports/net/isc-dhcp3> > > Any thoughts on what the problem is? You need upgrade your ports : %pkg_info | grep dhcp isc-dhcp3-3.0.b2.6 ISC Dynamic Host Configuration Protocol client and ^^^^^^^^ -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 19:41:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id B6A4037B4CF for ; Tue, 21 Nov 2000 19:41:40 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAM3fc226281; Tue, 21 Nov 2000 19:41:38 -0800 (PST) Date: Tue, 21 Nov 2000 19:41:38 -0800 From: Alfred Perlstein To: Chris Hill Cc: bsdnewbie bsdnewbie , freebsd-questions@FreeBSD.ORG Subject: Re: _ DELAY(1) == delay 1 us ? 1 ms ? hz = ? Message-ID: <20001121194138.F18037@fw.wintelcom.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 chris@monochrome.org on Tue, Nov 21, 2000 at 10:32:38PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Chris Hill [001121 19:32] wrote: > On Wed, 22 Nov 2000, bsdnewbie bsdnewbie wrote: > > > I see many DELAY() in some kernel source code, but I can not make clear how > > long does DELAY() delay. DELAY(1) = ? And what is hz, hz = ? > > bash-2.02$ man delay > No manual entry for delay > > Can't answer the first part, but I imagine that hz means Hertz, properly > abbreviated as Hz. 1 Hz is 1 cycle per second or one second per cycle. > Metric prefixes apply, therefore 1 kHz = 1000 cycles per second (0.001 > seconds or 1 ms per cycle), and so on. I just committed a manpage for DELAY(9). hz is usually 100. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 20: 0:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.hutchtel.net (unknown [206.9.112.100]) by hub.freebsd.org (Postfix) with ESMTP id 5420A37B4D7 for ; Tue, 21 Nov 2000 20:00:40 -0800 (PST) Received: from mark8 (hutch-687.hutchtel.net [206.10.68.215]) by ns1.hutchtel.net (8.9.1/8.9.0) with SMTP id WAA29301; Tue, 21 Nov 2000 22:00:32 -0600 (CST) Message-ID: <00b101c05439$3545a680$0200000a@vladsempire.net> From: "Josh Paetzel" To: "Ives, Keith" , "'freebsd-questions@freeBSD.org'" References: Subject: Re: bsd 3.4 can't see aic-7899 Date: Tue, 21 Nov 2000 22:03:43 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Ives, Keith" To: "'freebsd-questions@freeBSD.org'" Sent: Tuesday, November 21, 2000 12:59 PM Subject: bsd 3.4 can't see aic-7899 > I have bsd 3.4 on dell precision 420. The system has aic-7899 adapter. I > have a python 4mm tape drive on this bus which the system recognizes but BSD > does not. > >From what I've read this adapter is supported. > dmesg shows ahc0 aic7890/91. > Could I be missing the correct driver?? If so, how where can I get the > right one?? > Are you using the 7899 in RAID mode, or SCSI mode. IIRC, 3.4 had an issue with the 7899 on Dell's in RAID mode, but they worked fine in SCSI mode. It was all fixed in 4.0 Josh > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 20: 2:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (pop3.pioneernet.net [208.240.196.25]) by hub.freebsd.org (Postfix) with ESMTP id 71F4037B4D7 for ; Tue, 21 Nov 2000 20:02:35 -0800 (PST) Received: from wiegand.org [208.194.173.26] by pioneernet.net with ESMTP (SMTPD32-6.03) id A9A96140102; Tue, 21 Nov 2000 20:20:57 -0800 Message-ID: <3A1B4635.B11990D0@wiegand.org> Date: Tue, 21 Nov 2000 20:06:13 -0800 From: Chip X-Mailer: Mozilla 4.08 [en] (X11; I; FreeBSD 4.0-RELEASE i386) MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Subject: Re: 'find' is running all by itself References: <3A19E749.E9E048E2@wiegand.org> <00112117251600.37336@shalimar.net.au> <3A1A880A.25BC4A01@wiegand.org> <00112212092503.05727@shalimar.net.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Zero Sum wrote: > > On Wednesday 22 November 2000 01:34, Chip wrote: > > Zero Sum wrote: > > > > > > On Tuesday 21 November 2000 16:15, Chip wrote: > > > > John P. Campbell wrote: > > > > > > > > > > A look at /etc/periodic/daily on my box shows that find runs quite > > > often. > > > > > It's a good chance that is what you are seeing. > > > > > > > > > > : jpc % cd /etc/periodic/daily/ > > > > > : daily % grep find * > > > > > > > > I tried this command as you have it shown above and get > > > > daily: command not found > > > > Besides that, in my daily directory is a whole bunch of stuff, > > > > and > > > > find is not amoung any of it. Should it be? It's not any big > > > > deal, > > > > I'm just curious where it's starting and what is telling it to > > > > start. None of the other fbsd machines do this. > > > > > > > > > > This is a joke, right? > > > > > > You didn't really fail to recognise the '%' as a c-shell prompt, did > you? > > > > > > You didn't type "daily % grep find *" instead of "grep find *", did you? > > > > > > You weren't really expecting the 'find' command to be there were you? > > > > > > If the answer to ANY one of the aboce was yes, then you need to get > > > yourself some basic books on Unix. Asking questions here won't do you > much > > > good as you won't understand the answers. > > > > > > The explanation that was given you was most probably accurate. You > > > mightcheck the system time, though. > > > > > > Geoff > > > -- > > > count@shalimar.net.au > > > Nihil curo de ista tua stulta superstitione > > > > I am quite sure that you too were once a beginner in the *nix > > environment. I doubt very much that you were born with all this > > great store house of knowledge. Maybe it has been so long that > > you have forgotten those days of learning though, and now don't > > have the patience for people who are learning, so feel compelled > > to lash out at them in a childish manner. A serious question > > should only be returned with a serious answer, which most people > > on this list do. You appear to be an exception, I'm sorry. > > > > You misjudge me. I was genuinely incredulous. I don't consider that I have > "great storehouse of knowlege". And no, I wasn't born with what I do have, > but I was born learning to look at what I see. I have plenty of sympathy > for beginners, and I provide quite a bit of help to those I can help both > on list and (mainly) off-list. In fact I usually pick the beginners to > help, because they need it most and for five years I wrote and taught Unix > courses in the industry. Okay, my apologies for the misjudgement > However, it is a lot easier to help people who think and analyise what they > see. For example, you were provided with two lines of shell code, and you > completely failed to look at it with any degree of analysis. > > The lines were... > > : jpc % cd /etc/periodic/daily/ > : daily % grep find * In my narrow 'unix' experience, the only 'unix' boxes I have seen are the ones here in my house (six of 'em, all freebsd). The all have prompts that look like this - $ or chip# I've never seen one like the above examples. > Now the first one is a 'cd' command. Surely that is obvious. I could not > and cannot believe that it could be misconstrued. That tells you that > ": jpc % " was the prompt. Is there any way in which this could be > more obvious? Is there any way in which you could have failed to interpret > this if you *looked* at it? yes it is obvious that it is a cd command, I know a cd command > For the second line, the prompt has clearly changed and reflects the > directory to which the last command changed. Note the 'daily'. Again, > what could be more obvious when you *look*. > > This leaves only "grep find * " as the command to use. Not "daily %....". > This isn't a matter of "great storehouse of knowlege", it is a matter of > basic attitude. "Thinking about things" vs "silver platter". Right, as I mentioned above, I haven't seen a prompt with a : in it, so was confused. I did get it straight and answered the other person who responed with a message to that effect. > I said to you "If the answer to ANY one of the aboce was yes, then you need > to get yourself some basic books on Unix. Asking questions here won't do > you much good as you won't understand the answers". Doesn't the above > *prove* that statement. You asked a question, you got a good reply and you > didn't even understand the most basic two lines of code that could probably > be written. A "cd" and a "grep". I gave you good (and necessary) advice. > if you want to take it as a put down, that's your problem. I guess I looked at it this way - a question being answered with a question is not being answered at all. Now, I am the type of person who expects a statement for answer, such as 'You might try this-n-this-n-this' or 'Take a look at such-n-such'. To me asking 'This is a joke right?' is not an answer at all, by any stretch of the imagination. > When I first encountered Unix, there was no help available, I was in the > "commercial" world and the only access to the internet was in the > "acadaemic world". So even the (then limited) Internet was not available. > O'Reilly didn't exits and there were no readily available books on Unix. > > So, what did I have? "man" and that was it. I would recommend to anyone > on first encountering Unix to (1) Read, learn and understand everything on > the "man sh" or "man ksh" pages. (2) Read every other man page on the > system. You won't understand every thing on every page, but you will start > to see paterns involved, and you will learn much and remember where to find > things. (3) Make a listing of every file on the system (yes, every one!) > and find out why they are there and what they do. Cross each one off the > list as you find out. But that is too much like work, isn't it? (Learning > usually is). I do have a few 'unix' books, but that doesn't mean I am going to know what every differant prompt looks like in every version of every shell. > As for not having patience and lashing out in a childish manner. My take > on it is this. There is no reason to have patience with those who ask > questions and do not listen to the answers (or think about them). To want > things handed to you on a "silver platter" is childish, to protest when > silliness is pointed out is childish. If you think I "lashed out" you must > have had a very "gentle" life. > > If you consider I am ill-mannered, I like you consider what sort of manners > are involved, when somebody (not me) gave you a good answer to your > question and you effectively "ignored" it. Whyfore then, should I be > "gentle"? Ah, but I didn't ignore it, I tried and tried again, and got it right, and sent that person an email regarding this. Just because you didn't see it doesn't mean I ignored it. > Geoff > -- > count@shalimar.net.au > Nihil curo de ista tua stulta superstitione > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message So, whether or not you accept my reasons or apology is neither here nor there, I am learning and make mistakes, I am also not afraid to admit it when I do. That, too, is part of the learning process. Good Day, -- Chip W. www.wiegand.org Alternative Operating Systems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 20: 7:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.hutchtel.net (ns1.hutchtel.net [206.9.112.100]) by hub.freebsd.org (Postfix) with ESMTP id D12C837B479 for ; Tue, 21 Nov 2000 20:07:35 -0800 (PST) Received: from mark8 (hutch-687.hutchtel.net [206.10.68.215]) by ns1.hutchtel.net (8.9.1/8.9.0) with SMTP id WAA09595; Tue, 21 Nov 2000 22:07:31 -0600 (CST) Message-ID: <00e801c0543a$2ed63340$0200000a@vladsempire.net> From: "Josh Paetzel" To: "Dusty Roy" , References: Subject: Re: Date: Tue, 21 Nov 2000 22:10:42 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Dusty Roy" To: Sent: Tuesday, November 21, 2000 8:26 AM > I am new to FreeBSD and would like to know where to begin. I do not know > what I need to download to begin installing. > Can you point me in the right direction? > > Thanks in advance, > > Dusty > > I think that the FreeBSD Handbook would be a good place for you to start. http://www.freebsd.org/handbook/index.html Josh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 20:21:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.hutchtel.net (ns1.hutchtel.net [206.9.112.100]) by hub.freebsd.org (Postfix) with ESMTP id B8AA237B4D7 for ; Tue, 21 Nov 2000 20:21:41 -0800 (PST) Received: from mark8 (hutch-687.hutchtel.net [206.10.68.215]) by ns1.hutchtel.net (8.9.1/8.9.0) with SMTP id WAA09978; Tue, 21 Nov 2000 22:21:37 -0600 (CST) Message-ID: <013801c0543c$26bd8760$0200000a@vladsempire.net> From: "Josh Paetzel" To: , References: Subject: Re: Unknown SCSI errors. Date: Tue, 21 Nov 2000 22:24:48 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ----- Original Message ----- From: To: Sent: Monday, November 20, 2000 4:44 PM Subject: Unknown SCSI errors. > Put together a system from some spare parts today. All is going fine with > one exception. From time to time the system will hange, spew some errors > then hang for another minute then give me the system back. Here are the > errors from /var/log/messages. Any insight would be great. > > SNIP---- > Have you checked to make sure that the SCSI bus is properly terminated? Josh > /kernel: ahc0:A:0: refuses tagged commands. Performing non-tagged I/O > Nov 20 14:02:22 keith /kernel: (da0:ahc0:0:0:0): SCB 0x2 - timed out in > Message-out phase, SEQADDR == 0x157 > Nov 20 14:02:22 keith /kernel: (da0:ahc0:0:0:0): BDR message in message > buffer > Nov 20 14:02:22 keith /kernel: (da0:ahc0:0:0:0): SCB 0x7 - timed out in > Message-out phase, SEQADDR == 0x157 > Nov 20 14:02:22 keith /kernel: (da0:ahc0:0:0:0): no longer in timeout, > status = 34b > Nov 20 14:02:22 keith /kernel: ahc0: Issued Channel A Bus Reset. 15 SCBs > aborted > > > > > ================================= > Keith W. > At the helm > > My non work related site > www.cydonia.net > ================================= > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 20:29:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.telestream.com (mail.telestream.com [205.238.4.5]) by hub.freebsd.org (Postfix) with ESMTP id 6B33537B4CF for ; Tue, 21 Nov 2000 20:29:47 -0800 (PST) Received: from localhost (keith@localhost) by mail.telestream.com (8.11.0/8.11.0) with ESMTP id eAM4Thc06175; Tue, 21 Nov 2000 20:29:44 -0800 Date: Tue, 21 Nov 2000 20:29:43 -0800 (PST) From: To: Josh Paetzel Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Unknown SCSI errors. In-Reply-To: <013801c0543c$26bd8760$0200000a@vladsempire.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yes I have, even reversed termination so that the CD wasn't the term. I've had troubles with CD's in the past being naughty about termination for some strange reason. I've tried different scsi cables, cards, id and terms. Nothing is working. I think the drive may just be bad. Keith ================================= Keith W. At the helm My non work related site www.cydonia.net ================================= On Tue, 21 Nov 2000, Josh Paetzel wrote: > > ----- Original Message ----- > From: > To: > Sent: Monday, November 20, 2000 4:44 PM > Subject: Unknown SCSI errors. > > > > Put together a system from some spare parts today. All is going fine with > > one exception. From time to time the system will hange, spew some errors > > then hang for another minute then give me the system back. Here are the > > errors from /var/log/messages. Any insight would be great. > > > > SNIP---- > > > > Have you checked to make sure that the SCSI bus is properly terminated? > > Josh > > > > /kernel: ahc0:A:0: refuses tagged commands. Performing non-tagged I/O > > Nov 20 14:02:22 keith /kernel: (da0:ahc0:0:0:0): SCB 0x2 - timed out in > > Message-out phase, SEQADDR == 0x157 > > Nov 20 14:02:22 keith /kernel: (da0:ahc0:0:0:0): BDR message in message > > buffer > > Nov 20 14:02:22 keith /kernel: (da0:ahc0:0:0:0): SCB 0x7 - timed out in > > Message-out phase, SEQADDR == 0x157 > > Nov 20 14:02:22 keith /kernel: (da0:ahc0:0:0:0): no longer in timeout, > > status = 34b > > Nov 20 14:02:22 keith /kernel: ahc0: Issued Channel A Bus Reset. 15 SCBs > > aborted > > > > > > > > > > ================================= > > Keith W. > > At the helm > > > > My non work related site > > www.cydonia.net > > ================================= > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 20:45:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from manor.msen.com (manor.msen.com [148.59.4.66]) by hub.freebsd.org (Postfix) with ESMTP id 3EC4B37B479 for ; Tue, 21 Nov 2000 20:45:34 -0800 (PST) Received: from manor.msen.com (wayne@localhost [127.0.0.1]) by manor.msen.com (8.9.3/8.9.3) with ESMTP id XAA57152 for ; Tue, 21 Nov 2000 23:45:33 -0500 (EST) (envelope-from wayne@manor.msen.com) Message-Id: <200011220445.XAA57152@manor.msen.com> To: freebsd-questions@FreeBSD.ORG Subject: Dlink quad cards fail to do full duplex? Date: Tue, 21 Nov 2000 23:45:33 -0500 From: "Michael R. Wayne" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG From dmesg: FreeBSD 3.5-STABLE #6: Wed Nov 8 18:28:20 EST 2000 de0: rev 0x41 int a irq 11 on pci2.4.0 de0: 21143 [10-100Mb/s] pass 4.1 de0: address 00:80:c8:c9:8c:60 de1: rev 0x41 int a irq 9 on pci2.5.0 de1: 21143 [10-100Mb/s] pass 4.1 de1: address 00:80:c8:c9:8c:61 de2: rev 0x41 int a irq 5 on pci2.6.0 de2: 21143 [10-100Mb/s] pass 4.1 de2: address 00:80:c8:c9:8c:62 de3: rev 0x41 int a irq 10 on pci2.7.0 de3: 21143 [10-100Mb/s] pass 4.1 de3: address 00:80:c8:c9:8c:63 And de0: enabling Full Duplex 100baseTX port But netstat -in says: Name Mtu Network Address Ipkts Ierrs Opkts Oerrs Coll de0 1500 00:80:c8:c9:8c:60 264556 0 1833133 841 157 with the Oerrs slowly (about one per minute) ratcheting up talking to an HP switch locked at 100BT / Full Duplex. As soon as I change the switch to 100BT / half duplex, everything is fine with no errors for last 30 minutes. So, is the de driver lying to me when it sayd Full Duplex? Collisions should be impossible in full duplex mode and, if I had a mismatch with the switch, I should see errors after the change. /\/\ \/\/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 20:50:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 4CEB437B4CF for ; Tue, 21 Nov 2000 20:50:48 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id IAA61896 for ; Wed, 22 Nov 2000 08:17:07 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAM4oOX10967 for freebsd-questions@FreeBSD.ORG; Wed, 22 Nov 2000 07:50:24 +0300 Date: Wed, 22 Nov 2000 07:50:20 +0300 From: "Igor' Robul'" To: freebsd-questions@FreeBSD.ORG Subject: Re: X server question Message-ID: <20001122075020.A10932@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <3A1B0D47.61494731@network-alchemy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <3A1B0D47.61494731@network-alchemy.com>; from mruhl@network-alchemy.com on Tue, Nov 21, 2000 at 04:03:19PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Nov 21, 2000 at 04:03:19PM -0800, Mike Ruhl wrote: > xtt-Mach64-1.3.0: A X True Type Server for Mach64 Graphics Cards > > And the default X_MACH64 server is? xtt one supports TrueType fonts. But you can get same result if you'll use TrueType font server /usr/ports/x11-servers/Xfstt -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 21:23:50 2000 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 726CF37B4D7 for ; Tue, 21 Nov 2000 21:23:48 -0800 (PST) Received: from FreeBSD.org (Studded@master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id VAA57704; Tue, 21 Nov 2000 21:23:40 -0800 (PST) (envelope-from DougB@FreeBSD.org) Message-ID: <3A1B585C.5F2B5D00@FreeBSD.org> Date: Tue, 21 Nov 2000 21:23:40 -0800 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Drew Sanford Cc: questions@FreeBSD.org Subject: Re: Promise ATA 100 References: <3A1B4122.9050108@planetwe.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Drew Sanford wrote: > http://www.freebsd.org/cgi/query-pr.cgi?pr=20834 It is beyond me why SOS > can't integrate that patch It's in, and the PR has been closed. -- So what I want to know is, where does the RED brick road go? 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 Tue Nov 21 21:36:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rz.uni-ulm.de (sirius-giga.rz.uni-ulm.de [134.60.241.36]) by hub.freebsd.org (Postfix) with ESMTP id EB62337B4C5 for ; Tue, 21 Nov 2000 21:36:42 -0800 (PST) Received: from lilith (lilith.wohnheim.uni-ulm.de [134.60.106.64]) by mail.rz.uni-ulm.de (8.9.3/8.9.3) with SMTP id GAA01936; Wed, 22 Nov 2000 06:36:29 +0100 (MET) Message-ID: <00e301c05446$2b5f8ca0$4011a8c0@wohnheim.uniulm.de> From: "Siegbert Baude" To: "Zero Sum" , "Cosmos Boekell" , References: <00112213171207.05727@shalimar.net.au> Subject: Re: server Date: Wed, 22 Nov 2000 06:36:31 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > AMD should be fine, but I would try and build a multi-processor box, even > if it means slower processors. It will likely perform better and the > difference may increase when a ouple of FreeBSD problems get solved. Could you please explain this further? AMD and multi-processor are mutually exclusive until now, so you´re speaking of Intel dual-processing (XEONs possible price-wise for the called 2000-2500$ in the US ?) vs. AMD single processor. In which cases would the SMP-machine perform better? > SCSI would be nice, but that is much more expensive. I'd say multiprocessor > would be more important. For a high hit rate, DSCSI is much better though. I think that very strongly depends on your estimated kind of load. Doing web-hosting with heavy cgi-scripting as main task, processor power and a lot of RAM will save your performance, but for NFS over high-speed network, your disk subsystem will be decisive. Ciao Siegbert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 21:48:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id 6457537B4CF for ; Tue, 21 Nov 2000 21:48:42 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAM5mHN00920; Wed, 22 Nov 2000 16:48:17 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Wed, 22 Nov 2000 16:48:17 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: "Siegbert Baude" , "Cosmos Boekell" , References: <00112213171207.05727@shalimar.net.au> <00e301c05446$2b5f8ca0$4011a8c0@wohnheim.uniulm.de> In-Reply-To: <00e301c05446$2b5f8ca0$4011a8c0@wohnheim.uniulm.de> Subject: Re: server MIME-Version: 1.0 Message-Id: <00112216481700.00531@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wednesday 22 November 2000 16:36, Siegbert Baude wrote: > > AMD should be fine, but I would try and build a multi-processor box, even > > if it means slower processors. It will likely perform better and the > > difference may increase when a ouple of FreeBSD problems get solved. > > Could you please explain this further? AMD and multi-processor are mutually > exclusive until now, so you´re speaking of Intel dual-processing (XEONs > possible price-wise for the called 2000-2500$ in the US ?) vs. AMD single > processor. In which cases would the SMP-machine perform better? > Actually, I run twin Pentium II 350s -not AMD. (However, I had thought that multiprocessor AMDs were now viable). I have a phone line link, so max upstream is 33k. The CPUs are jammed at 100% by SETIs. Nevertheless, I get faster display of (the same web pages) than directly on my local network (at work). Basicly, the twin 350 works better (for me than our over engineered Sun) with a far poorer link. It seems that the more processors, the "smoother" FreeBSD runs. Less "jerky" waiting on a processor. I really hate it when my mouse goes out of control because another job started in the background (and system calls can't be interrupted) nut that sort of jerkiness goes away with more processors. I guess it is easier to find an appropriate time slot when there are (potentially) more of them. I won't buy faster processors uless I buy them in at least pairs. > > SCSI would be nice, but that is much more expensive. I'd say > multiprocessor > > would be more important. For a high hit rate, DSCSI is much better > though. > > I think that very strongly depends on your estimated kind of load. Doing > web-hosting with heavy cgi-scripting as main task, processor power and a lot > of RAM will save your performance, but for NFS over high-speed network, your > disk subsystem will be decisive. Da! i was a bit ambivalent about this anyway.... -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 21:53:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from proxy.outblaze.com (proxy.outblaze.com [202.77.223.120]) by hub.freebsd.org (Postfix) with SMTP id E68E137B4CF for ; Tue, 21 Nov 2000 21:53:42 -0800 (PST) Received: (qmail 88184 invoked from network); 22 Nov 2000 05:53:36 -0000 Received: from unknown (HELO yusufg.portal2.com) (202.77.181.217) by proxy.outblaze.com with SMTP; 22 Nov 2000 05:53:36 -0000 Received: (qmail 24458 invoked by uid 500); 22 Nov 2000 05:53:35 -0000 Date: 22 Nov 2000 05:53:35 -0000 Message-ID: <20001122055335.24457.qmail@yusufg.portal2.com> From: Yusuf Goolamabbas To: freebsd-questions@freebsd.org Subject: Port redirection using ipfw Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I am trying to solve the following problem. I have a machine with a single Ethernet interface. I would like incoming packets sent to a certain port on this machine to be redirected/forward to another machine (different IP/subnet) and a different port I compile a 4.2-stable kernel with the following options options IPFIREWALL #firewall options IPFIREWALL_FORWARD #enable transparent proxy support options IPDIVERT #divert sockets options IPFIREWALL_DEFAULT_TO_ACCEPT #allow everything by default For e.g if the machine is at 10.0.0.2 and I want to forward incoming packets at port 81 to 192.168.1.2 port 80. I wrote the following ipfw rule ipfw add fwd 192.168.1.2,80 log tcp from any to 10.0.0.2 81 However, this doesn't seem to work. Any ideas where I am going wrong or this is not possible with ipfw and I need some other toolchain for this Regards, Yusuf -- Yusuf Goolamabbas yusufg@outblaze.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 21:57:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhub.cns.ksu.edu (grunt.ksu.ksu.edu [129.130.12.17]) by hub.freebsd.org (Postfix) with ESMTP id 3F21437B479 for ; Tue, 21 Nov 2000 21:57:31 -0800 (PST) Received: from unix1 (jdt2101@unix1.cc.ksu.edu [129.130.12.3]) by mailhub.cns.ksu.edu (8.9.1/8.9.1/mailhub+tar) with SMTP id XAA28753; Tue, 21 Nov 2000 23:57:30 -0600 (CST) Received: from localhost by unix1 (SMI-8.6/1.34) id XAA18079; Tue, 21 Nov 2000 23:57:29 -0600 Date: Tue, 21 Nov 2000 23:57:29 -0600 (CST) From: Joshua Delong Thomas X-Sender: jdt2101@unix1.cc.ksu.edu To: Chip Cc: "freebsd-questions@freebsd.org" Subject: Re: 'find' is running all by itself In-Reply-To: <3A1A0506.AC75E96C@wiegand.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Find gets run when the locate database is updated. The default is to run once a week, I believe, but you could change the frequency. On Mon, 20 Nov 2000, Chip wrote: > John P. Campbell wrote: > > > > A look at /etc/periodic/daily on my box shows that find runs quite often. > > It's a good chance that is what you are seeing. > > > > : jpc % cd /etc/periodic/daily/ > > : daily % grep find * > > I tried this command as you have it shown above and get > daily: command not found > Besides that, in my daily directory is a whole bunch of stuff, > and > find is not amoung any of it. Should it be? It's not any big > deal, > I'm just curious where it's starting and what is telling it to > start. None of the other fbsd machines do this. > > -- > Chip > > > 100.clean-disks:find / \( ! -fstype local -o -fstype rdonly \) -a -prune -o \ > > 110.clean-tmps: find . -type f -atime +3 -ctime +3 ! -name '.X*-lock' \ > > 110.clean-tmps: find -d . ! -name . -type d -mtime +1 -delete > > 110.clean-tmps: find . ! -name . -atime +7 -ctime +3 -delete > > 110.clean-tmps: find -d . ! -name . ! -name vi.recover -type d -mtime +1 > > -delete > > 120.clean-preserve: cd /var/preserve && find . ! -name . -mtime +7 -delete > > 140.clean-rwho: cd /var/rwho && find . ! -name . -mtime +7 -delete > > 150.clean-hoststat: cd /var/spool/.hoststat && find * -mtime +3 -delete > > > > jpc > > > > On Mon, Nov 20, 2000 at 07:08:57PM -0800, owner-freebsd-questions @ FreeBSD . ORG Mon Nov 20 19 wrote: > > > I have several FBSD 4.0 machines, and on one of them > > > the 'find' command will start running by itself. I found > > > out about this when I heard the hard drive reading itself > > > wildly, so I looked at top, and there was find at the top. > > > This happens at least every evening, sometimes several times. > > > This machine has mysql installed, and nothing much else, just > > > a straight install of 4.0. > > > Any ideas what could be causing this? > > > > > > -- > > > Chip W. > > > www.wiegand.org > > > Alternative Operating Systems > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > -- > > John P. Campbell > > Application Engineer > > Intacct Corporation > > 408-395-0961 > > -- > Chip W. > www.wiegand.org > Alternative Operating Systems > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 21 21:59:50 2000 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 6889F37B479 for ; Tue, 21 Nov 2000 21:59:48 -0800 (PST) Received: from chimp.simianscience.com (cage.simianscience.com [64.7.134.1]) by smtp1.sentex.ca (8.11.1/8.11.1) with SMTP id eAM5xZv52020; Wed, 22 Nov 2000 00:59:35 -0500 (EST) (envelope-from mike@sentex.net) From: Mike Tancsa To: kuku@gilberto.physik.rwth-aachen.de (Christoph Kukulies) Cc: questions@freebsd.org Subject: Re: socks5 configuration Date: Wed, 22 Nov 2000 00:59:34 -0500 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 X-Loop: FreeBSD.ORG On 21 Nov 2000 14:54:41 -0500, in sentex.lists.freebsd.questions you = wrote: >#Socks5 Config file for a normal, single homed server >#set SOCKS5_RECVFROMANYONE >#set SOCKS5_USECLIENTSPORT I have found=20 setenv SOCKS5_V4SUPPORT helps for a lot of client apps. ---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 Nov 21 22:26:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from Gotska.IJP.Si (unknown [193.2.67.226]) by hub.freebsd.org (Postfix) with ESMTP id 25EFF37B4C5 for ; Tue, 21 Nov 2000 22:26:50 -0800 (PST) Received: (from brodnik@localhost) by Gotska.IJP.Si (8.11.0/8.11.0) id eAM5ODK06685; Wed, 22 Nov 2000 06:24:13 +0100 (CET) (envelope-from brodnik) From: Andrej Brodnik (Andy) Message-Id: <200011220524.eAM5ODK06685@Gotska.IJP.Si> Subject: Re: IBM Thinkpad T20 rejects FreeBSD To: freebsd-questions@FreeBSD.ORG Date: Wed, 22 Nov 2000 06:22:55 +0100 (CET) Cc: drosih@rpi.edu, jonas.bulow@servicefactory.se, tony@ncsa.uiuc.edu, netdev@ncsa.uiuc.edu, charlie@infoworks.net, lebel@lebel.org Organization: EffNet AB Reply-To: Andy@EffNet.Com (Andrej Brodnik (Andy)) 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 X-Loop: FreeBSD.ORG Hi there, any progress/solution regarding this problem? My T20 doesn't boot either if I label a partition as FreeBSD partition (type 165). When I change the type of partition to 131 it works again (unfortunatelly without FreeBSD booting). I would appreciate a lot your answers. Thanx in advance! LPA (== Lep pozdrav! Andrej_{Slovene} == Best regards, Andrej) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 22:28:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cwcsun41.cwc.nus.edu.sg (cwcsun41.cwc.nus.edu.sg [137.132.163.102]) by hub.freebsd.org (Postfix) with ESMTP id 5B87237B4E5 for ; Tue, 21 Nov 2000 22:28:35 -0800 (PST) Received: from Beyond.cwc.nus.edu.sg ([172.16.3.32]) by cwcsun41.cwc.nus.edu.sg (8.9.3/8.9.3) with ESMTP id OAA29353 for ; Wed, 22 Nov 2000 14:27:40 +0800 (SGT) Message-Id: <4.3.2.7.0.20001122142712.00af1220@postman.cwc.nus.edu.sg> X-Sender: yipmf@postman.cwc.nus.edu.sg X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Wed, 22 Nov 2000 14:30:00 +0800 To: freebsd-questions@freebsd.org From: Yip Mann Fai Subject: 6to4 problem Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, I've a machine running FreeBSD 4.1 and I want to use it to connect to the 6bone using 6to4 encapsulation. However, I've yet to succeed and am encountering problems or sorts also. I'm using the KAME stack that comes with the FreeBSD 4.1 distribution. The following is the configuration that I have in my /etc/rc.conf file... ipv6_enable="YES" ipv6_gateway_enable="YES" ipv6_router_enable="NO" ipv6_network_interfaces="lo0 xl0" ipv6_prefix_xl0="2002:8984:a376:0" ipv6_static_route="default" ipv6_route_default="default 6to4.ipv6.microsoft.com" stf_interface_ipv4addr="137.132.163.118" I've also recompiled my kernel with the "pseudo-device stf 1" option. Now the problem... After all the above has been done, rebooted the machine and when I tried to "ping6 6to4.ipv6.microsoft.com" or any other 6to4 or 6bone address, I couldn't get a reply at all. It just waits indefinitely for a reply. When I do a ifconfig stf0, it showed stf0: flags=1 mtu 1280 inet6 2002:8984:a376::1 prefixlen 16 stf0 is only UP but not RUNNING and it also does not have a link local address attached to it. Is this what is causing the problem that I'm facing? I've been trying to solve this problem for a week without any progress and its getting really frustrating. Please advise. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 22:31:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (pop3.pioneernet.net [208.240.196.25]) by hub.freebsd.org (Postfix) with ESMTP id 2808F37B4CF for ; Tue, 21 Nov 2000 22:31:37 -0800 (PST) Received: from wiegand.org [208.194.173.26] by pioneernet.net with ESMTP (SMTPD32-6.03) id AC9955B00A0; Tue, 21 Nov 2000 22:50:01 -0800 Message-ID: <3A1B6925.514538CF@wiegand.org> Date: Tue, 21 Nov 2000 22:35:17 -0800 From: Chip X-Mailer: Mozilla 4.08 [en] (X11; I; FreeBSD 4.0-RELEASE i386) MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Subject: Re: 'find' is running all by itself References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Joshua Delong Thomas wrote: > > Find gets run when the locate database is updated. The default is to run > once a week, I believe, but you could change the frequency. What I find most interesting about this is this - I have 6 fbsd machines and they all have the same results from 'grep find *' in the daily directory. But I have only seen it actually do anything on the one machine. All of the machines except one, run fbsd 4.0-release, the other 4.1.1-r. Is there something else going on that may cause this to not run, I guess I am looking for something that would turn it on or off, a conf file somewhere? Really, it's no big deal, I am just curious about this happening on one in six machines. If there are specific docs somewhere maybe someone could point me in the right direction? I tried man periodic but that gives me a small amount of info about motif widgets, I don't think that's the same subject. There is no man entrys for daily, weekly or monthly. I also looked in my 4 unix books and one fbsd book for periodic, monthly, daily, and schedule, but came up with nothing that relates to this subject. Obviously I am missing a key word to search for, what is it? -- Chip -- previous irrelevant stuff snipped -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 22:40:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rz.uni-ulm.de (sirius-giga.rz.uni-ulm.de [134.60.241.36]) by hub.freebsd.org (Postfix) with ESMTP id 42F1237B4C5 for ; Tue, 21 Nov 2000 22:40:54 -0800 (PST) Received: from lilith (lilith.wohnheim.uni-ulm.de [134.60.106.64]) by mail.rz.uni-ulm.de (8.9.3/8.9.3) with SMTP id HAA08144; Wed, 22 Nov 2000 07:40:51 +0100 (MET) Message-ID: <01d001c0544f$298e11e0$4011a8c0@wohnheim.uniulm.de> From: "Siegbert Baude" To: "Andrej Brodnik (Andy)" , References: <200011220524.eAM5ODK06685@Gotska.IJP.Si> Subject: Re: IBM Thinkpad T20 rejects FreeBSD Date: Wed, 22 Nov 2000 07:40:53 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi Andrej, I didn´t follow this thread, so pardon if my answer answer is completely useless. You´re trying to dual-boot WinXX and FreeBSD, but have problems with the partition types, right? > any progress/solution regarding this problem? My T20 doesn't boot > either if I label a partition as FreeBSD partition (type 165). When I > change the type of partition to 131 it works again (unfortunatelly > without FreeBSD booting). To avoid a non-booting-system by using type 165, you could try a boot-manager which implements partition-hiding (i.e. changing partition type on the fly after having chosen the desired OS). Never was forced to use it myself, but www.xosl.org claims to be able to do this. In fact I´m using xosl as boot manager and it does a great job on all my OS including FreeBSD and WinXX. You can download it including ranish partition-manager (a better kind of fdisk). So boot into xosl, adjust your types with ranish as desired and then configure in the xosl menu, which partitions should be hidden with some OS. Just a guess. Ciao Siegbert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 22:46:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from kraeusen.nbrewer.com (unknown [208.42.68.65]) by hub.freebsd.org (Postfix) with ESMTP id 6D30037B4E5 for ; Tue, 21 Nov 2000 22:46:13 -0800 (PST) Received: (from chris@localhost) by kraeusen.nbrewer.com (8.10.1/8.10.1) id eAM6kBo38680; Wed, 22 Nov 2000 00:46:11 -0600 (CST) From: Christopher Farley MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14875.27570.973504.876556@kraeusen.nbrewer.com> Date: Wed, 22 Nov 2000 00:46:10 -0600 (CST) To: Chip Cc: "freebsd-questions@freebsd.org" Subject: Re: 'find' is running all by itself In-Reply-To: <3A1B6925.514538CF@wiegand.org> References: <3A1B6925.514538CF@wiegand.org> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Chip writes: > Obviously I am missing a key word > to search for, > what is it? > cron ---- Christopher Farley Northern Brewer / 1150 Grand Avenue / St. Paul, MN 55105 www.northernbrewer.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 22:51:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from w2xo.pgh.pa.us (ipl-229-095.npt-sdsl.stargate.net [208.223.229.95]) by hub.freebsd.org (Postfix) with ESMTP id AF35A37B4D7 for ; Tue, 21 Nov 2000 22:51:29 -0800 (PST) Received: from w2xo.pgh.pa.us (shazam.w2xo.pgh.pa.us [192.168.5.3]) by w2xo.pgh.pa.us (8.9.3/8.9.3) with ESMTP id GAA41474 for ; Wed, 22 Nov 2000 06:51:27 GMT (envelope-from durham@w2xo.pgh.pa.us) Message-ID: <3A1B6CF6.2BCF298D@w2xo.pgh.pa.us> Date: Wed, 22 Nov 2000 01:51:35 -0500 From: Jim Durham Organization: Dis- X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Netscape IMAP folders on FreeBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I think I'd get nowhere with this talking to the M$ Netscape users, so I'm posting this here. I have been bugged for some time about the fact that Netscape mail seems to insist on saving it's "folders" in my home directory, instead of in my ~/mail directory, where pine imap likes them just fine. You can make it "subscribe" to the folders in ~/mail, but it creates non-existant "ghost" folders which can't be deleted and shows them as if they were a level above the ones in ~/mail. After much looking through deja and netscape, etc, I can't find any references to this problem. Anyone here got a solution? Thanks, Jim Durham To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 23: 7: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tl.itb.ac.id (gerbang.tl.itb.ac.id [167.205.15.230]) by hub.freebsd.org (Postfix) with SMTP id 7F51D37B4C5 for ; Tue, 21 Nov 2000 23:06:44 -0800 (PST) Received: (qmail 15361 invoked by uid 1048); 22 Nov 2000 07:34:20 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 22 Nov 2000 07:34:20 -0000 Date: Wed, 22 Nov 2000 14:34:20 +0700 (JAVT) From: "Adit [001] ^_^" To: Stan Brown Cc: freebsd-questions@freebsd.org Subject: Re: PCI ethernet conflicting? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm sorry, maybe i forgot to tell you. I'm using FreeBSD 4.0 Release. The first time, one of the card is ISA card, the othe one is PCI. After stroke by lightning, the only card available is 2 PCI cards. Then, the problem occured. First i took off one of the card, ed1. The line outside is working nicely (ed0 inet 167.205.15.230 netmask 255.255.255.240). I wrote down the information about the card : IRQ 10, Port 0xe000-0xe01f address 00:c0:26:24:4c:c2 Dev 9 The IRQ and dev information if also shown at bios information. Then, i try to put the other card back. The other card is given dev 10.0, IRQ 5 by the bios. The FreeBSD can detect it correctly, but the strange thing is, when i look at the addres again: ed0 address 00:c0:26:24:49:c2 ed1 address 00:c0:26:24:4c:c2 I'm very curious, what is these address mean? And why they get mixed up? I'm really sorry if my mail get so long and boring. But then again, thanks for your attention. On Mon, 20 Nov 2000, Stan Brown wrote: > On Mon Nov 20 12:50:08 2000 Adit [001] ^_^ wrote... > > > >On Mon, 20 Nov 2000, Stan Brown wrote: > > > >> Sounds like a routing table issue to me. BTW, are both cards connected > >> to the same physical wire? > >> > >Nop, one of the card is connected to the net, and the other one is > >connected to a hub (internal connection). > >How can that got to do with routing table? > >BTW, i use natd as firewall (ipfw divert via natd interface) > >Oh, i replace one of the card with ISA card. It resolve the problem, but i > >still curious. > >Both of the pci card is pnp, and also with the isa card, so i don't have > >to recompile my kernel. So, what the different using both pci from using > >one isa card? > > I'm really a FreeBSD person, just geting back inot Debian. But on > FreeBSD the routing is set based upon the device name. Obviously the > device name changes for you. > > Perhaps Debian does not work this way? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 23:18:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from usagi.cts.com (usagi.cts.com [209.68.192.66]) by hub.freebsd.org (Postfix) with ESMTP id 7E6A837B4C5 for ; Tue, 21 Nov 2000 23:18:30 -0800 (PST) Received: from porion (putc12161208067.cts.com [216.120.8.67]) by usagi.cts.com (8.9.3/8.9.3) with SMTP id XAA15186 for ; Tue, 21 Nov 2000 23:18:29 -0800 (PST) From: "orion slevin" To: "freebsd questions" Subject: how do you change the directory for kde help? kde doesn't find it Date: Tue, 21 Nov 2000 23:19:16 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have Freebsd 4.1 Release. In KDE, when I select the help tab on an application, It says Cannot open: /usr/local/share/doc/HTML/default/ html but the actual help directory is: /usr/local/share/doc/HTML/en/ How do I change the settings in KDE? Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 23:20:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (pop3.pioneernet.net [208.240.196.25]) by hub.freebsd.org (Postfix) with ESMTP id 1587F37B4CF for ; Tue, 21 Nov 2000 23:20:20 -0800 (PST) Received: from wiegand.org [208.194.173.26] by pioneernet.net with ESMTP (SMTPD32-6.03) id A804C8600E2; Tue, 21 Nov 2000 23:38:44 -0800 Message-ID: <3A1B7490.96E6B607@wiegand.org> Date: Tue, 21 Nov 2000 23:24:00 -0800 From: Chip X-Mailer: Mozilla 4.08 [en] (X11; I; FreeBSD 4.0-RELEASE i386) MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Subject: Re: 'find' is running all by itself References: <3A1B6925.514538CF@wiegand.org> <14875.27570.973504.876556@kraeusen.nbrewer.com> <3A1B7445.C6F61D13@wiegand.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Christopher Farley wrote: > > > > Chip writes: > > > Obviously I am missing a key word > > > to search for, > > > what is it? > > > > > > > cron Thanks, that helps. I looked at the crontab on each machine and found it actually exists on only one of 'em, the one that runs find all too often. Now I can deal with it. I appreciate your help. > > ---- > > Christopher Farley > > Northern Brewer / 1150 Grand Avenue / St. Paul, MN 55105 > > www.northernbrewer.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > -- > Chip W. > www.wiegand.org > Alternative Operating Systems -- Chip W. www.wiegand.org Alternative Operating Systems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 23:21:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sublime.efs.org (gatekeeper.efs.org [216.55.163.203]) by hub.freebsd.org (Postfix) with ESMTP id A83A737B4CF for ; Tue, 21 Nov 2000 23:21:22 -0800 (PST) Received: from eclipse (eclipse.efs.org [209.75.71.35]) by sublime.efs.org (8.11.0/8.11.0) with SMTP id eAM7OPt14816 for ; Tue, 21 Nov 2000 23:24:26 -0800 (PST) From: "Matt Wilbur" To: Subject: problems with diskless operation, 4.1.1R Date: Tue, 21 Nov 2000 23:21:11 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I've been working on a diskless config (4.1.1R server and clients) for a lab, and I've come a long way, but I've got one problem I can't seem to get around. I'm able to boot the client using an etherboot floppy, load the kernel, mount the rootfs (passed to the kernel via bootp), and have a working /etc, /dev (vtys are happy, etc) and /var (mostly thanks to rc.diskless*).. I'm kludging to get swap working over nfs using vn for now (long story, but our processing requires a LOT more memory than these systems have..) I can log in, and most everything works, EXCEPT for things like top (nlist error), pstat (missing symbol having to do with vn), vmstat (missing other symbols..) ps works ok. /dev/[mem,kmem] are working OK. libkvm is ok, i've rebuilt/reinstalled it just in case. I've rebuilt the kernel from within the diskless system, same problem. I've unpacked fresh 4.1.1R libraries and reinstalled them, and ldconfig'd just in case. To get the exact error messages I need to print them out and type them in (long story), so I'm hoping someone will have an idea based on the above information... Otherwise I'll inflict the error messages on you tomorrow :) I can't help but think that I'm missing some basic kvm initialization step or something in the boot process. Help ? I swapon my vn swap device and it doesn't complain, but I can't verify that it's actually being used because pstat/swapinfo are broke. I'm assuming that a swapless system will just croak when it runs out of physical memory, not behave this way.. Ideas? Thanks! -Matt Wilbur To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 23:23:29 2000 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 3595037B4D7 for ; Tue, 21 Nov 2000 23:23:26 -0800 (PST) Received: from riic.uni-linz.ac.at (hawkings.riic.uni-linz.ac.at [140.78.161.85]) by mail.riic.uni-linz.ac.at (8.9.3/8.9.3) with ESMTP id IAA04916 for ; Wed, 22 Nov 2000 08:21:43 +0100 Message-ID: <3A1B73EC.92DE90B0@riic.uni-linz.ac.at> Date: Wed, 22 Nov 2000 08:21:16 +0100 From: Gernot Hueber X-Mailer: Mozilla 4.7 [de] (WinNT; I) X-Accept-Language: de MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Root on vinum's RAID-1 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I want to setup a vinum RAID-1 system using 2 large IDE drives. Is it possible to put the root filesystem onto a RAID partition, too, and how can I make the system boot from both disk in case of damage of one? Gernot Hueber To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 23:29:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donkeykong.gpcc.itd.umich.edu (donkeykong.gpcc.itd.umich.edu [141.211.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 6E95537B4C5 for ; Tue, 21 Nov 2000 23:29:34 -0800 (PST) Received: from breakout.gpcc.itd.umich.edu (smtp@breakout.gpcc.itd.umich.edu [141.211.2.141]) by donkeykong.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id CAA10197; Wed, 22 Nov 2000 02:29:30 -0500 (EST) Received: from localhost (timcm@localhost) by breakout.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id CAA11712; Wed, 22 Nov 2000 02:29:30 -0500 (EST) Date: Wed, 22 Nov 2000 02:29:29 -0500 (EST) From: Tim McMillen X-Sender: timcm@breakout.gpcc.itd.umich.edu To: orion slevin Cc: freebsd questions Subject: Re: how do you change the directory for kde help? kde doesn't find it In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I don't know how you can change it in KDE, but you can always make a link. try man ln. Tim On Tue, 21 Nov 2000, orion slevin wrote: > > I have Freebsd 4.1 Release. > In KDE, when I select the help tab on an application, > It says Cannot open: /usr/local/share/doc/HTML/default/ > html > > but the actual help directory is: > /usr/local/share/doc/HTML/en/ > > How do I change the settings in KDE? > 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 Nov 21 23:46:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donkeykong.gpcc.itd.umich.edu (donkeykong.gpcc.itd.umich.edu [141.211.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 6160937B4D7 for ; Tue, 21 Nov 2000 23:46:25 -0800 (PST) Received: from breakout.gpcc.itd.umich.edu (smtp@breakout.gpcc.itd.umich.edu [141.211.2.141]) by donkeykong.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id CAA10661 for ; Wed, 22 Nov 2000 02:46:24 -0500 (EST) Received: from localhost (timcm@localhost) by breakout.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id CAA12667 for ; Wed, 22 Nov 2000 02:46:24 -0500 (EST) Date: Wed, 22 Nov 2000 02:46:24 -0500 (EST) From: Tim McMillen X-Sender: timcm@breakout.gpcc.itd.umich.edu To: freebsd-questions@freebsd.org Subject: Learn command Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Does anybody know of any newer versions of the original unix learn command? (With source of course and green eggs and ham) I think it could be a really valuable tool for newbies if it was updated to apply to FreeBSD. I know of Brian Kernighan's source to it, but I was hoping for something a little more updated. Thanks ----------------------------------------------- "A government big enough to give you everything you want, is a government big enough to take from you everything you have." -Gerald Ford ----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 23:48:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp02.fields.gol.com (smtp02.fields.gol.com [203.216.5.132]) by hub.freebsd.org (Postfix) with ESMTP id 054A137B4D7 for ; Tue, 21 Nov 2000 23:48:18 -0800 (PST) Received: from ex10.exodus.ne.jp ([203.216.2.2] helo=gol.com) by smtp02.fields.gol.com with esmtp (Magnetic Fields) id 13yUdY-0002Yz-00; Wed, 22 Nov 2000 16:48:12 +0900 Message-ID: <3A1B7A3B.126CA7B8@gol.com> Date: Wed, 22 Nov 2000 16:48:11 +0900 From: Jack Morgan X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.17-compact i686) X-Accept-Language: en, ja MIME-Version: 1.0 To: orion slevin Cc: freebsd questions Subject: Re: how do you change the directory for kde help? kde doesn't find it References: Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit X-Abuse-Complaints: abuse@gol.com Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG orion slevin wrote: > > I have Freebsd 4.1 Release. > In KDE, when I select the help tab on an application, > It says Cannot open: /usr/local/share/doc/HTML/default/ > html Why don"t yopu create a directory /usr/local/share/doc/HTML/default/html and move all files from /usr/local/share/doc/HTML/en/ into it? > but the actual help directory is: > /usr/local/share/doc/HTML/en/ > > How do I change the settings in KDE? > Thanks. -jack.morgan Tokyo, Japan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 23:51:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id C767937B4C5 for ; Tue, 21 Nov 2000 23:51:29 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAM7pKN01256; Wed, 22 Nov 2000 18:51:20 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Wed, 22 Nov 2000 18:51:20 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="us-ascii" To: Chip , "freebsd-questions@freebsd.org" References: <3A1B6925.514538CF@wiegand.org> In-Reply-To: <3A1B6925.514538CF@wiegand.org> Subject: Re: 'find' is running all by itself MIME-Version: 1.0 Message-Id: <00112218512002.00531@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wednesday 22 November 2000 17:35, Chip wrote: > Joshua Delong Thomas wrote: > > > > Find gets run when the locate database is updated. The default is to run > > once a week, I believe, but you could change the frequency. > > What I find most interesting about this is this - I have 6 fbsd > machines > and they all have the same results from 'grep find *' in the > daily directory. > But I have only seen it actually do anything on the one machine. > All of the > machines except one, run fbsd 4.0-release, the other 4.1.1-r. Is > there > something else going on that may cause this to not run, I guess I > am looking > for something that would turn it on or off, a conf file > somewhere? > Really, it's no big deal, I am just curious about this happening > on one in six > machines. > If there are specific docs somewhere maybe someone could point me > in the right > direction? I tried man periodic but that gives me a small amount > of info about > motif widgets, I don't think that's the same subject. There is no > man entrys > for daily, weekly or monthly. I also looked in my 4 unix books > and one fbsd > book for periodic, monthly, daily, and schedule, but came up with > nothing > that relates to this subject. Obviously I am missing a key word > to search for, > what is it? > The scripts are run by cron (se man cron). They normally run in the wee small hours, so my guess is that one of your machines has the clock set differently or the CMOS clock is set to local time. Check the times on all the machines. The one that is running it during the day might think it is nighttime. Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Nov 21 23:53:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gilberto.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by hub.freebsd.org (Postfix) with ESMTP id 1B8A237B4CF for ; Tue, 21 Nov 2000 23:53:35 -0800 (PST) Received: (from kuku@localhost) by gilberto.physik.rwth-aachen.de (8.9.3/8.9.3) id IAA80060; Wed, 22 Nov 2000 08:53:32 +0100 (CET) (envelope-from kuku) Date: Wed, 22 Nov 2000 08:53:32 +0100 From: Christoph Kukulies To: Mike Tancsa Cc: Christoph Kukulies , questions@freebsd.org Subject: Re: socks5 configuration Message-ID: <20001122085332.A80012@gil.physik.rwth-aachen.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from mike@sentex.net on Wed, Nov 22, 2000 at 12:59:34AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Nov 22, 2000 at 12:59:34AM -0500, Mike Tancsa wrote: > On 21 Nov 2000 14:54:41 -0500, in sentex.lists.freebsd.questions you wrote: > >#Socks5 Config file for a normal, single homed server > >#set SOCKS5_RECVFROMANYONE > >#set SOCKS5_USECLIENTSPORT > > I have found > setenv SOCKS5_V4SUPPORT Thanks, but setenv? When starting socks5 daemon? I think you mean the socks5.conf file. Note that the above was an excerpt from my socks5.conf and the set lines were deactivated (comment sign). > helps for a lot of client apps. -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 0:35:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.broadway-ps.com (unknown [210.176.238.33]) by hub.freebsd.org (Postfix) with ESMTP id 58A8737B479 for ; Wed, 22 Nov 2000 00:35:18 -0800 (PST) Received: from angus.broadway-ps.com.hk (fw.broadway-ps.com [210.176.238.34]) by ns1.broadway-ps.com (8.9.2/8.9.2) with SMTP id QAA13420 for ; Wed, 22 Nov 2000 16:42:29 +0800 (CST) (envelope-from angus@broadway-ps.com.hk) Received: by angus.broadway-ps.com.hk with Microsoft Mail id <01C054A3.66D659A0@angus.broadway-ps.com.hk>; Wed, 22 Nov 2000 16:43:54 +0800 Message-ID: <01C054A3.66D659A0@angus.broadway-ps.com.hk> From: Angus Tsoi To: "'freebsd-questions@freebsd.org'" Subject: about how to setup ntp server Date: Wed, 22 Nov 2000 16:43:53 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Sir, I'm Angus who is a technical support, I have some problem in setting up = a NTP Server in FreeBSD 2.2.7 The Problems are ---- - I had been set "ntpdate stdtime.gov.hk" in /etc/crontab, it's work in = the "xntpd=3DNO" in /etc/defaults/rc.conf", when I start the = "xntpd=3DYES", then the "ntpdate" doesn't work and so the message "The = NTP socket is using", then I can't sync the time from Hong Kong = Government's Server, how can I solve it?? - if my FreeBSD can work in above problem, then another FreeBSD & Linux = Server how to Sync the time from above Server?? is it use "ntpdate" or = "xntpd" ???=20 Thanks. Best Regards, Angus Tsoi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 0:39:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from villosa.wanadoo.fr (smtp-abo-1.wanadoo.fr [193.252.19.122]) by hub.freebsd.org (Postfix) with ESMTP id 729A437B479 for ; Wed, 22 Nov 2000 00:39:08 -0800 (PST) Received: from oemcomputer (193.251.71.89) by villosa.wanadoo.fr; 22 Nov 2000 09:39:07 +0100 Message-ID: <000201c0545e$ea76ff20$0a00000a@oemcomputer> Reply-To: "philippe" From: "philippe" To: Subject: serveur Date: Tue, 21 Nov 2000 21:15:29 +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.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG salut en quoi freebsd se differencie de linux , est t'il plus puiss=ant comme serveur merci To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 0:50:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from boco.fee.vutbr.cz (boco.fee.vutbr.cz [147.229.9.11]) by hub.freebsd.org (Postfix) with ESMTP id 8B78737B4CF for ; Wed, 22 Nov 2000 00:50:14 -0800 (PST) Received: from kazi.dcse.fee.vutbr.cz (kazi.dcse.fee.vutbr.cz [147.229.8.12]) by boco.fee.vutbr.cz (8.11.1/8.11.1) with ESMTP id eAM8oBf70928 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified OK); Wed, 22 Nov 2000 09:50:12 +0100 (CET) Received: (from cejkar@localhost) by kazi.dcse.fee.vutbr.cz (8.11.0/8.11.0) id eAM8oAZ16546; Wed, 22 Nov 2000 09:50:10 +0100 (CET) Date: Wed, 22 Nov 2000 09:50:10 +0100 From: Cejka Rudolf To: Charles Henrich Cc: questions@FreeBSD.ORG Subject: Re: DES Passwords on 4.1.1? Message-ID: <20001122095010.A15845@dcse.fee.vutbr.cz> References: <20001121151536.A85962@dcse.fee.vutbr.cz> <20001121085540.E37579@sigbus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001121085540.E37579@sigbus.com>; from henrich@sigbus.com on Tue, Nov 21, 2000 at 08:55:40AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Charles Henrich wrote (2000/11/21): > That didnt seem to do it, im running yppasswd to set the accounts and on any > 4.1.1 machines it sets it as the MD5 password, if I do it on any older FreeBSD > boxes it works as expected. This is becoming a nightmare as we have > non-FreeBSD boxes accessing the same YP server and its breaking logins for us > :( Any other ideas? According to sources and recent discussion in freebsd-stable (subject is "Hmm..passwords."), it should work for both passwd and yppasswd. Maybe you can ask here - there was bigger discussion about that. Example of passwd_format usage in login.conf is commited in -stable now. Is passwd_format=des on all NIS FreeBSD > 4.1.1 machines? It has to be workstations, where passwords are changed, not servers. Is yppasswd/passwd binary really from FreeBSD 4.1.1? If you mean that yppasswd uses md5, but passwd des, it has to be bug. However source code looks well (we do not have NIS anymore and local passwords work as expected). -- Rudolf Cejka (cejkar@dcse.fee.vutbr.cz; http://www.fee.vutbr.cz/~cejkar) Brno University of Technology, Faculty of El. Engineering and Comp. Science Bozetechova 2, 612 66 Brno, Czech Republic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 2:55:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ilha.softpolis.softex.br (ilha.softpolis.softex.br [200.237.251.1]) by hub.freebsd.org (Postfix) with SMTP id C108C37B4C5 for ; Wed, 22 Nov 2000 02:55:29 -0800 (PST) Received: from YOSEMITE (complex.funcitec.rct-sc.br [200.135.30.171]) by ilha.softpolis.softex.br (8.6.8.1/8.6.6) with SMTP id GAA04324 for ; Wed, 22 Nov 2000 06:54:41 -0400 Message-ID: <000b01c05473$f2f9c000$0301a8c0@YOSEMITE> From: "Eduardo Kotujansky" To: Subject: startup script Date: Wed, 22 Nov 2000 09:03:23 -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.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Where is the startup scripts of locally installed packages. I would like to start my daemaon and postgresql on boot, I did not find any file like rc.local Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 2:57: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id BBD3237B479 for ; Wed, 22 Nov 2000 02:56:55 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAMAusN02034 for ; Wed, 22 Nov 2000 21:56:55 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Wed, 22 Nov 2000 21:56:54 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: questions@FreeBSD.ORG Subject: Demonic Naming service. MIME-Version: 1.0 Message-Id: <00112221565405.00531@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Please enlighten; I have looked up IPs I found in my firewall logs and, no surprise, some of them do not reverse resolve. No surprise, faked IP, presumably. BUT, I can traceroute and ping the IPs. So they must exist. My conclusion; I have something stuffed in my DNS. Is my conclusion correct? Is my reasoning correct? I've just noticed that my machine has had an smtp conversation with an unresolvable host "202.98.16.1". Ethereal shows a normal mail conversation (w/out going inside the packets). Does that confirm I have a bum DNS setup? Or since my ISP couldn't resolve it, does it confirm that their DNS is stuffed? Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 3: 0:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id 1263537B4CF for ; Wed, 22 Nov 2000 03:00:40 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAMB0RN02091; Wed, 22 Nov 2000 22:00:27 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Wed, 22 Nov 2000 22:00:27 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: "Eduardo Kotujansky" , References: <000b01c05473$f2f9c000$0301a8c0@YOSEMITE> In-Reply-To: <000b01c05473$f2f9c000$0301a8c0@YOSEMITE> Subject: Re: startup script MIME-Version: 1.0 Message-Id: <00112222002706.00531@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wednesday 22 November 2000 22:03, Eduardo Kotujansky wrote: > Where is the startup scripts of locally installed packages. > I would like to start my daemaon and postgresql on boot, > > I did not find any file like rc.local > Try looking in /usr/local/etc/rc.d Scripts from that directory are run at startup and shutdown with the parameters start and stop. Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 3: 9: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.aracnet.com (mail2.aracnet.com [216.99.193.35]) by hub.freebsd.org (Postfix) with ESMTP id 2E54237B4C5 for ; Wed, 22 Nov 2000 03:09:05 -0800 (PST) Received: from aracnet.com (216-99-218-166.dsl.aracnet.com [216.99.218.166]) by mail2.aracnet.com (8.11.0/8.11.0) with ESMTP id eAMB96s04823 for ; Wed, 22 Nov 2000 03:09:06 -0800 Message-ID: <3A1BA94B.D4E268DD@aracnet.com> Date: Wed, 22 Nov 2000 03:08:59 -0800 From: dmp@aracnet.com X-Mailer: Mozilla 4.51 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Disklabel lost Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I did something really stupid, I tried installing Windows 2000 on the same disk as FreeBSD, after I had installed FreeBSD. (What can I say sometimes I put my mind in gear before the hampster is in the wheel). Win2k barfed on my UDMA/66 controller, so it wouldn't install, but when I tried going back to FreeBSD, it barfed on me saying it couldn't find any of my partitions (not even the root partition). So I load the fixit shell off the CD (using the live filesystem disc). dmesg output says my disk is ad4, so I set to poking at the thing: Fixit# fdisk -1 ad4 The data for partition 1 is: sysid 165,(FreeBSD/NetBSD/386BSD) start 63, size 40088097 (19574 Meg), flag 80 (active) beg: cyl 0/ sector 1/ head 1; end: cyl 1023/ sector 63/ head 15 Fixit# disklabel -r ad4 disklabel: bad pack magic number (label is damaged, or pack is unlabeled) Fixit# disklabel ad4 # /dev/ad4: type: unknown disk: amnesiac label: fictitious flags: bytes/sector: 512 sector/track: 63 sectors/cylinder: 1008 cylinders: 39770 sectors/unit: 40088160 rpm: 3600 interleave: 1 trackskew: 0 cylinderskew: 0 headswitch: 0 # milliseconds track-to-track seek: 0 # milliseconds drivedata: 0 8 partitions: # size offset fstype [fsize bsize bps/cpg] c: 40088160 0 unused 0 0 # (Cyl. 0 - 39769 So if I'm reading this correctly, the disklabel is gone? Is this where I reinstall FreeBSD, or do I have a chance of restoring? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 3:16:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from boat.mail.pipex.net (our.mail.pipex.net [158.43.128.75]) by hub.freebsd.org (Postfix) with SMTP id 41E0B37B4CF for ; Wed, 22 Nov 2000 03:16:31 -0800 (PST) Received: (qmail 5079 invoked from network); 22 Nov 2000 11:16:29 -0000 Received: from mailhost.puck.pipex.net (HELO mailhost.uk.internal) (194.130.147.54) by our.mail.pipex.net with SMTP; 22 Nov 2000 11:16:29 -0000 Received: (qmail 9370 invoked from network); 22 Nov 2000 11:16:29 -0000 Received: from camgate2.cam.uk.internal (172.31.6.21) by mailhost.uk.internal with SMTP; 22 Nov 2000 11:16:29 -0000 Received: by camgate2.cam.uk.internal with Internet Mail Service (5.5.2650.21) id ; Wed, 22 Nov 2000 11:15:17 -0000 Message-ID: From: Daniel Bye To: 'Zero Sum' , questions@FreeBSD.ORG Subject: RE: Demonic Naming service. Date: Wed, 22 Nov 2000 11:09:27 -0000 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 X-Loop: FreeBSD.ORG Not all IPs have reverse DNS setup. Whether or not a given address can be resolved backwards through DNS depends on who owns the CIDR block that it comes from, and on their policy with regard to reverse DNS. Generally, mail servers have reverse DNS configured, but there is no reason (except manners and convenience) to do the same for ALL addresses in a given net- range. If the owner of the CIDR block religiously sets up reverse DNS, all is good. However, many ISPs leave this decision to the individual customer- and it then becomes their responsibility to look after the reverse DNS. So, just because you can't resolve an IP address to a name doesn't mean that it is spoofed (incidentally, are they logegd as TCP connections? If so, it is very hard to spoof TCP connections, because of the need for acknowledgement packets after each data packet...). All it means is that the authority that owns the CIDR block, or the authority that owns the net block, hasn't set up reverse DNS, for whatever reason. Dan. -----Original Message----- From: Zero Sum [mailto:count@shalimar.net.au] Sent: 22 November 2000 10:57 To: questions@FreeBSD.ORG Subject: Demonic Naming service. Please enlighten; I have looked up IPs I found in my firewall logs and, no surprise, some of them do not reverse resolve. No surprise, faked IP, presumably. BUT, I can traceroute and ping the IPs. So they must exist. My conclusion; I have something stuffed in my DNS. Is my conclusion correct? Is my reasoning correct? I've just noticed that my machine has had an smtp conversation with an unresolvable host "202.98.16.1". Ethereal shows a normal mail conversation (w/out going inside the packets). Does that confirm I have a bum DNS setup? Or since my ISP couldn't resolve it, does it confirm that their DNS is stuffed? Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of 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 Nov 22 3:31: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id 3DF1B37B4C5 for ; Wed, 22 Nov 2000 03:30:56 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAMBUlN02213; Wed, 22 Nov 2000 22:30:48 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Wed, 22 Nov 2000 22:30:47 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="us-ascii" To: dmp@aracnet.com, freebsd-questions@FreeBSD.ORG References: <3A1BA94B.D4E268DD@aracnet.com> In-Reply-To: <3A1BA94B.D4E268DD@aracnet.com> Subject: Re: Disklabel lost MIME-Version: 1.0 Message-Id: <00112222304707.00531@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wednesday 22 November 2000 22:08, dmp@aracnet.com wrote: > I did something really stupid, I tried installing Windows 2000 on the > same disk as FreeBSD, after I had installed FreeBSD. (What can I say > sometimes I put my mind in gear before the hampster is in the wheel). > Win2k barfed on my UDMA/66 controller, so it wouldn't install, but when > I tried going back to FreeBSD, it barfed on me saying it couldn't find > any of my partitions (not even the root partition). > > So I load the fixit shell off the CD (using the live filesystem disc). > dmesg output says my disk is ad4, so I set to poking at the thing: > > Fixit# fdisk -1 ad4 > The data for partition 1 is: > sysid 165,(FreeBSD/NetBSD/386BSD) > start 63, size 40088097 (19574 Meg), flag 80 (active) > beg: cyl 0/ sector 1/ head 1; > end: cyl 1023/ sector 63/ head 15 > Fixit# disklabel -r ad4 > disklabel: bad pack magic number (label is damaged, or pack is unlabeled) > Fixit# disklabel ad4 > # /dev/ad4: > type: unknown > disk: amnesiac > label: fictitious > flags: > bytes/sector: 512 > sector/track: 63 > sectors/cylinder: 1008 > cylinders: 39770 > sectors/unit: 40088160 > rpm: 3600 > interleave: 1 > trackskew: 0 > cylinderskew: 0 > headswitch: 0 # milliseconds > track-to-track seek: 0 # milliseconds > drivedata: 0 > 8 partitions: > # size offset fstype [fsize bsize bps/cpg] > c: 40088160 0 unused 0 0 # (Cyl. 0 - 39769 > > So if I'm reading this correctly, the disklabel is gone? Is this where > I reinstall FreeBSD, or do I have a chance of restoring? > I'm not an expert here, but I have been in your position, and no, all is not lost. You can create a file with a new disklabel and work from that. Recreating your partions is not impossible. I had my information written down and used /stand/sysinstall to relabel. However, that should not be necessary. Changing the fstype to ufs and creating the a partion oversized should get you back to single user mode. If you can glean enough information from the root filesystem to work out what the rest of the information should be, you modify your disklabel again (with a correctly sized root [a] partition). Next, try and recreate the b partion (swap), and keep going. Remember, if you mount each recreated partion as ro, then you are not going to destroy any information currently on the disk. So you even have room for some "trial and error". When you can mount all your filesystems, and they all fsck ok, you are home and hosed. Mind you, while I'd like to do this out of interest, I'd hate to have to do it. long slow and worrying job. That's the best I can do, so I would bide a while and see if the experts come up with a better solution. Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 3:32:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mss.rdc2.nsw.optushome.com.au (ha1.rdc2.nsw.optushome.com.au [203.164.2.50]) by hub.freebsd.org (Postfix) with ESMTP id 8D6DD37B4C5 for ; Wed, 22 Nov 2000 03:32:25 -0800 (PST) Received: from ryan ([203.164.161.45]) by mss.rdc2.nsw.optushome.com.au (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001122113217.CILS4216.mss.rdc2.nsw.optushome.com.au@ryan> for ; Wed, 22 Nov 2000 22:32:17 +1100 From: "Ryan" To: Subject: HP PCI Nic (AMD PCnet-FAST PCI) Date: Wed, 22 Nov 2000 22:31:55 +1000 Message-ID: <000001c05480$33f95820$0200a8c0@ryan> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi guys I've hunted the freebsd-questions archive and found that several other > people have had the problem I'm having now. My AMD-based PCI adaptor on > lnc0 is spewing loads of "Heartbeat error -- SQE test failed" messages > because the card was shipped with the SQE test enabled. > Has there been any work on the lnc driver to fix this problem? thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 4: 1:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from server1.lojasobino.com.br (server1.lojasobino.com.br [200.248.23.150]) by hub.freebsd.org (Postfix) with ESMTP id 8514637B4CF for ; Wed, 22 Nov 2000 04:01:36 -0800 (PST) Received: from pc2 (pc2.lojasobino.com.br [128.1.1.101]) by server1.lojasobino.com.br (8.10.2/8.10.2) with SMTP id eAMC43m31852 for ; Wed, 22 Nov 2000 10:04:05 -0200 (EDT) Message-ID: <007b01c0547b$4e87b100$65010180@lojasobino.com.br> From: "Fabrizzio Batista" To: Subject: NAT with redirect_address Date: Wed, 22 Nov 2000 09:56:52 -0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi gurus, I have another problem. I´m using redirect_address and everithing is fine, but when I try to out all outgoing packets I have the same public IP. | PC1 - 192.168.1.10 | ---------------------------->200.248.1.1 | | |---------------------------| Server with NAT - 200.248.1.1 | | | PC2 - 192.168.1.20 | ------------------------------>200.248.1.1 How can I do to make internals ips get out with differents IPs ??? | PC1 - 192.168.1.10 | -----------------------------> 200.248.1.3 | | |---------------------------| Server with NAT - 200.248.1.1 | | | PC2 - 192.168.1.20 | ----------------------------> 200.248.1.4 natd -n rl0 -redirect_address 192.168.1.10 200.248.1.3 -redirect_address 192.168.1.20 200.248.1.4 Thanks in advance, Fabrizzio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 4:17:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from debbie.gmx.net (unknown [195.229.53.46]) by hub.freebsd.org (Postfix) with ESMTP id A729A37B4D7 for ; Wed, 22 Nov 2000 04:17:25 -0800 (PST) Received: (from rino@localhost) by debbie.gmx.net (8.9.3/8.9.3) id QAA06226 for freebsd-questions@FreeBSD.ORG; Wed, 22 Nov 2000 16:17:12 +0400 (GST) (envelope-from rino) Date: Wed, 22 Nov 2000 16:17:11 +0400 From: Rino Mardo To: freebsd-questions@FreeBSD.ORG Subject: Re: HP PCI Nic (AMD PCnet-FAST PCI) Message-ID: <20001122161711.A6219@gmx.net> References: <000001c05480$33f95820$0200a8c0@ryan> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <000001c05480$33f95820$0200a8c0@ryan>; from rnera@optushome.com.au on Wed, Nov 22, 2000 at 10:31:55PM +1000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Nov 22, 2000 at 10:31:55PM +1000 or thereabouts, Ryan wrote: > Hi guys > I've hunted the freebsd-questions archive and found that several other > > people have had the problem I'm having now. My AMD-based PCI adaptor on > > lnc0 is spewing loads of "Heartbeat error -- SQE test failed" messages > > because the card was shipped with the SQE test enabled. > > > Has there been any work on the lnc driver to fix this problem? First, if you're using OE please send your messages as text only. Second wrap your lines at column 79 so they look purty. Third, tried switching SQE off? my 2cents and may not be 100% accurate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 4:19:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oggi.spb.ru (unknown [213.221.62.89]) by hub.freebsd.org (Postfix) with ESMTP id 0212E37B4D7 for ; Wed, 22 Nov 2000 04:19:20 -0800 (PST) Received: from lexa.oggi.spb.ru (demlex [10.4.1.50]) by oggi.spb.ru (8.9.3/8.9.2) with SMTP id PAA02571 for ; Wed, 22 Nov 2000 15:13:48 +0300 (MSK) (envelope-from Alexey.Dementsov@oggi.spb.ru) Message-ID: <000c01c0547e$a26340c0$3201040a@oggi.spb.ru> From: "Alexey Dementsov" To: Subject: Date: Wed, 22 Nov 2000 15:20:40 +0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0009_01C05497.C5DC06E0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0009_01C05497.C5DC06E0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable I have problem, please help me. I installed freebsd 4.1 and packages fetchmail-5.5.5.tgz and = gettext-0.10.35.tgz. When I run fetchmail on the screen I saw the message=20 "/usr/libexec/ld-elf.so.1: Shared object "libssl.so.1" not found" What must I do. ------=_NextPart_000_0009_01C05497.C5DC06E0 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable

I have problem, please help = me.
I installed freebsd 4.1 and = packages=20 fetchmail-5.5.5.tgz and gettext-0.10.35.tgz.
When I run fetchmail on the=20 screen I saw the message
"/usr/libexec/ld-elf.so.1: Shared = object=20 "libssl.so.1" not found"
What  must I  = do.
 
------=_NextPart_000_0009_01C05497.C5DC06E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 4:29:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from imr1.ericy.com (imr1.ericy.com [208.237.135.240]) by hub.freebsd.org (Postfix) with ESMTP id DE1D337B4C5 for ; Wed, 22 Nov 2000 04:29:25 -0800 (PST) Received: from mr4u3.ericy.com (mr4u3.ericy.com [208.237.135.127]) by imr1.ericy.com (8.10.2/8.10.2) with ESMTP id eAMCTOY03354 for ; Wed, 22 Nov 2000 06:29:24 -0600 (CST) Received: from SMTP (eamrcnt747.exu.ericsson.se [138.85.133.37]) by mr4u3.ericy.com (8.9.3/8.9.3) with SMTP id GAA27430 for ; Wed, 22 Nov 2000 06:29:24 -0600 (CST) Received: from eamrcnt740.exu.ericsson.se ([138.85.133.41]) by 138.85.133.38 (Norton AntiVirus for Internet Email Gateways 1.0) ; Wed, 22 Nov 2000 12:29:24 0000 (GMT) Received: by eamrcnt740.exu.ericsson.se with Internet Mail Service (5.5.2651.58) id ; Wed, 22 Nov 2000 06:29:23 -0600 Message-ID: From: "Guilherme de Gouvea Cunha (EDB)" To: "'freebsd-questions@freebsd.org'" Subject: FW: FreeBSD Release 2.2.2 Date: Wed, 22 Nov 2000 06:28:16 -0600 Importance: high X-Priority: 1 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2651.58) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C0547F.B076CF50" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk 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_01C0547F.B076CF50 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello.=20 I=B4m looking for a copy of FreeBSD Release 2.2.2 ISO image but I=B4m = not having success.=20 Do you known where can i get (download) a copy of this release???=20 Thanks for attention.=20 Regards=20 Guilherme de Gouv=EAa Cunha=20 Telecom Specialist=20 Data Backbone & Optical Networks=20 Ericsson Brazil Services=20 Phone: +55 11 6224-8873=20 Cel: +55 11 9266-8302=20 Fax: +55 11 6224-2048=20 E-mail: guilherme.cunha@edb.ericsson.se=20 ------_=_NextPart_001_01C0547F.B076CF50 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable FreeBSD Release 2.2.2
Hello.

I=B4m looking for a copy of FreeBSD = Release=20 2.2.2 ISO image but I=B4m not having=20 success.
Do you known where can = i get=20 (download) a copy of this release???

Thanks for attention.

Regards

Guilherme de Gouv=EAa Cunha=20
Telecom Specialist =
Data Backbone = & Optical=20 Networks
Ericsson=20 Brazil Services
Phone: +55 11 6224-8873
Cel:      +55 11=20 9266-8302
Fax:     +55 11 6224-2048=20
E-mail:=20 guilherme.cunha@edb.ericsson.se =



------_=_NextPart_001_01C0547F.B076CF50-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 4:34:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from boat.mail.pipex.net (our.mail.pipex.net [158.43.128.75]) by hub.freebsd.org (Postfix) with SMTP id D9F6837B4D7 for ; Wed, 22 Nov 2000 04:34:24 -0800 (PST) Received: (qmail 29468 invoked from network); 22 Nov 2000 12:34:23 -0000 Received: from mailhost.puck.pipex.net (HELO mailhost.uk.internal) (194.130.147.54) by our.mail.pipex.net with SMTP; 22 Nov 2000 12:34:23 -0000 Received: (qmail 16377 invoked from network); 22 Nov 2000 12:34:23 -0000 Received: from camgate2.cam.uk.internal (172.31.6.21) by mailhost.uk.internal with SMTP; 22 Nov 2000 12:34:23 -0000 Received: by camgate2.cam.uk.internal with Internet Mail Service (5.5.2650.21) id ; Wed, 22 Nov 2000 12:33:11 -0000 Message-ID: From: Daniel Bye To: "'questions@freebsd.org'" Subject: Anonymous ftp and symlinks Date: Wed, 22 Nov 2000 12:27:23 -0000 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 X-Loop: FreeBSD.ORG > Hi all, > > I have been scratching my head over this one for quite some time. I > cannot find any info that > gives me an answer in the ftpd man page or anywhere else I've looked, so > please indulge me. > > I want to allow access by means of the anonymous ftp account to my CDRom > drive. I have set > up the anon ftp site, and want now to do something like: > > mount /cdrom > cd /var/ftp/pub > ln -s deadrat /cdrom > > The idea being that I can allow a Linux user (we have many here...) to do > a network install over > ftp. But, when you connect and try to cd to deadrat, you get this: > > ftp> cd deadrat > 550 deadrat: No such file or directory. > > How can I make the ftp server follow the symlink? I am sure it must be > possible, but I can't > figure out quite how. > > Thanks for any insights or thoughts. > > Dan Bye > _______________________________ > UUNET UK > FM Server Support Engineer > Internet House > 332 Science Park > Milton Road > Cambridge > CB4 0BZ > > Tel: 01223 250 122 > E-mail: servers@support.uk.uu.net > > A WorldCom Company. > ============================ > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 4:37:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from trinity.ucs.co.za (trinity.ucs.co.za [196.23.43.15]) by hub.freebsd.org (Postfix) with ESMTP id 0186737B4C5 for ; Wed, 22 Nov 2000 04:37:43 -0800 (PST) Received: from localhost (glock@localhost) by trinity.ucs.co.za (8.11.1/8.11.1) with ESMTP id eAMCV2k01196 for ; Wed, 22 Nov 2000 14:31:09 +0200 (SAST) (envelope-from glock@trinity.ucs.co.za) Date: Wed, 22 Nov 2000 14:31:02 +0200 (SAST) From: Stefan Lesicnik To: freebsd-questions@FreeBSD.ORG Subject: vim Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Why does freebsd's vim really suck compared to linux's? Is there options I can set to make it more similair? Thanks Stefan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 4:47: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dc-mx06.cluster0.hsacorp.net (unknown [209.225.8.16]) by hub.freebsd.org (Postfix) with ESMTP id 9E44437B4D7 for ; Wed, 22 Nov 2000 04:47:05 -0800 (PST) Received: from [24.216.177.202] (HELO CONCON.enterit.com) by dc-mx06.cluster0.hsacorp.net (CommuniGate Pro SMTP 3.4b1) with ESMTP id 11984078; Wed, 22 Nov 2000 05:46:11 -0700 Message-Id: <5.0.0.25.0.20001122080124.02a04ad0@mail.enterit.com> X-Sender: jconner@mail.enterit.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Wed, 22 Nov 2000 08:02:21 -0500 To: Stefan Lesicnik From: Jim Conner Subject: Re: vim Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In vim do a :h. Look around for a .vimrc on your filesystem somewhere. If you can't find one copy one over from your Linux box. Vim doesn't suck, but thats only because you don't have some options enabled (Im assuming) - Jim At 02:31 PM 11/22/2000 +0200, Stefan Lesicnik wrote: >Why does freebsd's vim really suck compared to linux's? > >Is there options I can set to make it more similair? > > >Thanks > >Stefan > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message - Jim - NOTJames - jconner@enterit.com - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - | Today's errors, in contrast: | - | Windows - "Invalid page fault in module kernel32.dll at 0032:A16F2935" | - | UNIX - "segmentation fault - core dumped" | - | Humans - "OOPS, I've fallen and I can't get up" | - -------------------------------------------------------------------------- - (To view this properly use a non-proportional font in your MUA) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 4:49:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from harp.wrdp.com (harp.dublin.wrdp.net [212.147.130.131]) by hub.freebsd.org (Postfix) with ESMTP id BC2E337B4CF for ; Wed, 22 Nov 2000 04:49:32 -0800 (PST) Received: from JRAFTERY (jraftery.dublin.wrdp.net [172.16.4.52]) by harp.wrdp.com (Postfix) with SMTP id 4D16D10AC1; Wed, 22 Nov 2000 12:49:20 +0000 (GMT) Message-ID: <01ca01c05482$a5ee8d90$340410ac@JRAFTERY> From: "James Raftery" To: "Stefan Lesicnik" , References: Subject: Re: vim Date: Wed, 22 Nov 2000 12:49:27 -0000 Organization: Worldport Communications 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 X-Loop: FreeBSD.ORG Hi, vim is vim, regardless of OS. Try http://www.vim.org/ for help in getting it to act the way you want it to. james ----- Original Message ----- From: "Stefan Lesicnik" To: Sent: Wednesday, November 22, 2000 12:31 PM Subject: vim > > Why does freebsd's vim really suck compared to linux's? > Is there options I can set to make it more similair? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 4:52:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 2CD1837B4CF for ; Wed, 22 Nov 2000 04:52:34 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id QAA63474 for ; Wed, 22 Nov 2000 16:18:31 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAMCpOQ17215 for freebsd-questions@FreeBSD.ORG; Wed, 22 Nov 2000 15:51:24 +0300 Date: Wed, 22 Nov 2000 15:51:24 +0300 From: "Igor' Robul'" To: "'freebsd-questions@freebsd.org'" Subject: Re: FW: FreeBSD Release 2.2.2 Message-ID: <20001122155124.A17180@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: "'freebsd-questions@freebsd.org'" References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: ; from guilherme.cunha@edb.ericsson.se on Wed, Nov 22, 2000 at 06:28:16AM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Nov 22, 2000 at 06:28:16AM -0600, Guilherme de Gouvea Cunha (EDB) wrote: > I?m looking for a copy of FreeBSD Release 2.2.2 ISO image but I?m not having success. You can easily get 2.2.8-RELEASE from any FreeBSD ftp mirror. -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 4:56:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gandalf.lebel.org (modemcable221.220-200-24.mtl.mc.videotron.ca [24.200.220.221]) by hub.freebsd.org (Postfix) with SMTP id AF66137B4CF for ; Wed, 22 Nov 2000 04:56:15 -0800 (PST) Received: (qmail 25939 invoked by uid 1001); 22 Nov 2000 12:56:12 -0000 Date: Wed, 22 Nov 2000 07:56:12 -0500 From: David Lebel To: "Andrej Brodnik (Andy)" Cc: freebsd-questions@FreeBSD.ORG, drosih@rpi.edu, jonas.bulow@servicefactory.se, tony@ncsa.uiuc.edu, netdev@ncsa.uiuc.edu, charlie@infoworks.net Subject: Re: IBM Thinkpad T20 rejects FreeBSD Message-ID: <20001122075612.B16143@lebel.org> References: <200011220524.eAM5ODK06685@Gotska.IJP.Si> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200011220524.eAM5ODK06685@Gotska.IJP.Si>; from brodnik@Gotska.IJP.Si on Wed, Nov 22, 2000 at 06:22:55AM +0100 Organization: None whatsover. X-URL: http://www.lebel.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I think that, as long as you have a DOS partition as the first partition, you should be OK. I don't use BootMgr as my boot loader, also, I'm using Boot Magic from Partition Magic. Ciao, ...David Quoting Andrej Brodnik (brodnik@Gotska.IJP.Si): > Hi there, > > any progress/solution regarding this problem? My T20 doesn't boot > either if I label a partition as FreeBSD partition (type 165). When I > change the type of partition to 131 it works again (unfortunatelly > without FreeBSD booting). > > I would appreciate a lot your answers. > > Thanx in advance! > > LPA (== Lep pozdrav! Andrej_{Slovene} == Best regards, Andrej) > -- // david lebel // nobiaze' Inc. // http://www.lebel.org/ // http://www.nobiaze.com/ // pgp: 3633 6999 D47E 73ED 099F // vox: (514) 943.3045 4341 08A4 8E48 EF56 61D1 // fax: (514) 938.8881 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 4:59:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r01.mx.aol.com (imo-r01.mx.aol.com [152.163.225.1]) by hub.freebsd.org (Postfix) with ESMTP id 6D0EC37B479 for ; Wed, 22 Nov 2000 04:59:35 -0800 (PST) Received: from TStev84666@aol.com by imo-r01.mx.aol.com (mail_out_v28.33.) id n.23.3dd36fc (4446) for ; Wed, 22 Nov 2000 07:59:31 -0500 (EST) From: TStev84666@aol.com Message-ID: <23.3dd36fc.274d1d32@aol.com> Date: Wed, 22 Nov 2000 07:59:30 EST Subject: Help for novice/beginner programmer. To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="part1_23.3dd36fc.274d1d32_boundary" Content-Disposition: Inline X-Mailer: Unknown sub 171 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --part1_23.3dd36fc.274d1d32_boundary Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit I am a beginner programmer who is self taught and struggling to understand different languages (Free Bsd, PHP, ZEND, PERL, etc.) I have some PC knowledge but I am confused in trying to find solutions for my web site. ( Bulk email, Site optimization, indexing and, etc.) I am currently studying Beginner's PERL. Any suggestions are very helpful. I have no interest in becoming a pro programmer but I enjoy hands on experience with my business. --part1_23.3dd36fc.274d1d32_boundary Content-Type: text/html; charset="US-ASCII" Content-Transfer-Encoding: 7bit

I am a beginner programmer who is self taught and struggling to understand
different languages (Free Bsd, PHP, ZEND, PERL, etc.) I have some PC
knowledge but I am confused in trying to find solutions for my web site. (
Bulk email, Site optimization, indexing and, etc.) I am currently studying
Beginner's PERL.
Any suggestions are very helpful. I have no interest in becoming a pro
programmer but I enjoy hands on experience with my business.  
--part1_23.3dd36fc.274d1d32_boundary-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 5: 1:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from isy.liu.se (isy.liu.se [130.236.48.10]) by hub.freebsd.org (Postfix) with ESMTP id 96C2937B4D7 for ; Wed, 22 Nov 2000 05:01:08 -0800 (PST) Received: from lagrange.isy.liu.se (lagrange.isy.liu.se [130.236.49.127]) by isy.liu.se (8.10.0/8.10.0) with ESMTP id eAMD12f20730; Wed, 22 Nov 2000 14:01:02 +0100 (MET) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Wed, 22 Nov 2000 14:01:01 +0100 (CET) From: Micke Josefsson To: "Guilherme de Gouvea Cunha (EDB)" Subject: RE: FW: FreeBSD Release 2.2.2 Cc: "freebsd-questions@freebsd.org" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 22-Nov-00 Guilherme de Gouvea Cunha (EDB) wrote: > Hello. > > I´m looking for a copy of FreeBSD Release 2.2.2 ISO image but I´m not having > success. > Do you known where can i get (download) a copy of this release??? Why do you need exactly 2.2.2? I have a CD with it if you need it. I can make it accessable via the net. > Thanks for attention. > > Regards > > Guilherme de Gouvêa Cunha > Telecom Specialist > Data Backbone & Optical Networks > Ericsson Brazil Services > Phone: +55 11 6224-8873 > Cel: +55 11 9266-8302 > Fax: +55 11 6224-2048 > E-mail: guilherme.cunha@edb.ericsson.se > > > ---------------------------------- Michael Josefsson, MSEE mj@isy.liu.se This message was sent by XFMail running on FreeBSD 3.5-STABLE ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 5:51:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from matrix.advancewebhosting.com (ns.advancewebhosting.com [207.35.169.2]) by hub.freebsd.org (Postfix) with ESMTP id 774F037B4C5 for ; Wed, 22 Nov 2000 05:51:17 -0800 (PST) Received: from joelt (theman.pythonvideo.com [209.226.29.103]) by matrix.advancewebhosting.com (8.9.3/8.9.3) with SMTP id IAA04763 for ; Wed, 22 Nov 2000 08:46:42 -0500 (EST) (envelope-from joe@fasti.net) From: "Joe Oliveiro" To: Subject: Sound Card Date: Wed, 22 Nov 2000 08:45:40 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a sound card 'device sbc' is compiled into my kernel because its a vibra16x card. The card is detected and i can do the './MAKEDEV snd0' but when i run the esd (esound deamon) it says /dev/dsp is not configured. Anyone have any ideas? Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 6: 7:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from piranha.amis.net (piranha.amis.net [212.18.32.3]) by hub.freebsd.org (Postfix) with ESMTP id 0F44437B479 for ; Wed, 22 Nov 2000 06:07:11 -0800 (PST) Received: from titanic.medinet.si (titanic.medinet.si [212.18.32.66]) by piranha.amis.net (Postfix) with ESMTP id A5C705D15 for ; Wed, 22 Nov 2000 15:07:09 +0100 (CET) Date: Wed, 22 Nov 2000 15:07:09 +0100 (CET) From: Blaz Zupan X-Sender: blaz@titanic.medinet.si To: freebsd-questions@freebsd.org Subject: No buffer space available - the weird way Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Customer has a FreeBSD 3.3-RELEASE machine (in a remote location, so a upgrade to 4.x is not so easily done) which suddenly decided it does not want to pass all network traffic. Here's the network card it has: tx0: rev 0x06 int a irq 11 on pci0.10.0 tx0: address 00:e0:29:25:5f:1a, type SMC9432TX, Auto-Neg 10Mbps Pinging a host on the local network produces something like this: 64 bytes from 192.168.0.10: icmp_seq=6 ttl=128 time=1.702 ms 64 bytes from 192.168.0.10: icmp_seq=7 ttl=128 time=0.584 ms 64 bytes from 192.168.0.10: icmp_seq=8 ttl=128 time=4.104 ms 64 bytes from 192.168.0.10: icmp_seq=9 ttl=128 time=1.143 ms ping: sendto: No buffer space available 64 bytes from 192.168.0.10: icmp_seq=101 ttl=128 time=5.948 ms 64 bytes from 192.168.0.10: icmp_seq=102 ttl=128 time=31.502 ms ping: sendto: No buffer space available 64 bytes from 192.168.0.10: icmp_seq=104 ttl=128 time=0.638 ms So every couple of packets, it decides that it does not have enough network buffers available. Why? This was working just fine and absolutely no changes have been made to the machine since it was originally installed. Also network traffic on the LAN is not high at all. I have decided to recompile a kernel and increased maxusers to 128 and set NMBCLUSTERS to 4096. Nothing changed. I'm totally at loss as to what might be causing this. Ideas on how to solve this problem will be much appreciated. Blaz Zupan, Medinet d.o.o, Linhartova 21, 2000 Maribor, Slovenia E-mail: blaz@amis.net, Tel: +386-2-320-6320, Fax: +386-2-320-6325 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 6: 7:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from madness.mdgnet.org (unknown [24.92.156.65]) by hub.freebsd.org (Postfix) with SMTP id 69B8A37B4CF for ; Wed, 22 Nov 2000 06:07:46 -0800 (PST) Received: (qmail 9588 invoked by uid 1000); 22 Nov 2000 14:07:40 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 22 Nov 2000 14:07:40 -0000 Date: Wed, 22 Nov 2000 09:07:40 -0500 (EST) From: Matthew George To: Angus Tsoi Cc: "'freebsd-questions@freebsd.org'" Subject: Re: about how to setup ntp server In-Reply-To: <01C054A3.66D659A0@angus.broadway-ps.com.hk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG echo 'xntpd_enable=YES' >> /etc/rc.conf echo 'server stdtime.gov.hk' >> /etc/ntp.conf ntpd -p /var/run/ntpd.pid you should then be able to run `ntpq` and do a 'readvar' to get your server's stats On Wed, 22 Nov 2000, Angus Tsoi wrote: > Date: Wed, 22 Nov 2000 16:43:53 +0800 > From: Angus Tsoi > To: "'freebsd-questions@freebsd.org'" > Subject: about how to setup ntp server > > Dear Sir, > > I'm Angus who is a technical support, I have some problem in setting up a NTP Server in FreeBSD 2.2.7 > The Problems are ---- > - I had been set "ntpdate stdtime.gov.hk" in /etc/crontab, it's work in the "xntpd=NO" in /etc/defaults/rc.conf", when I start the "xntpd=YES", then the "ntpdate" doesn't work and so the message "The NTP socket is using", then I can't sync the time from Hong Kong Government's Server, how can I solve it?? > > - if my FreeBSD can work in above problem, then another FreeBSD & Linux Server how to Sync the time from above Server?? is it use "ntpdate" or "xntpd" ??? > > Thanks. > > Best Regards, > Angus Tsoi > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 22 6:16:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donkeykong.gpcc.itd.umich.edu (donkeykong.gpcc.itd.umich.edu [141.211.2.163]) by hub.freebsd.org (Postfix) with ESMTP id E86BB37B4C5 for ; Wed, 22 Nov 2000 06:16:16 -0800 (PST) Received: from pacman.gpcc.itd.umich.edu (smtp@pacman.gpcc.itd.umich.edu [141.211.2.150]) by donkeykong.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id JAA23713; Wed, 22 Nov 2000 09:16:16 -0500 (EST) Received: from localhost (timcm@localhost) by pacman.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id JAA05123; Wed, 22 Nov 2000 09:16:15 -0500 (EST) Date: Wed, 22 Nov 2000 09:16:15 -0500 (EST) From: Tim McMillen X-Sender: timcm@pacman.gpcc.itd.umich.edu To: orion slevin Cc: freebsd questions Subject: Re: how do you change the directory for kde help? kde doesn't find it In-Reply-To: <3A1B7A3B.126CA7B8@gol.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > orion slevin wrote: > > > > I have Freebsd 4.1 Release. > > In KDE, when I select the help tab on an application, > > It says Cannot open: /usr/local/share/doc/HTML/default/ > > html > > > but the actual help directory is: > > /usr/local/share/doc/HTML/en/ Sorry it was late last night. I just checked. %ls -l /usr/local/share/doc/HTML/ total 2 lrwxr-xr-x 1 root wheel 2 Oct 30 00:35 default -> en drwxr-xr-x 80 root wheel 1536 Nov 11 18:15 en Check if the documents are really there. If they are it would be odd that you can't access them. Check permissions. And is that what the error literally says? because there is no /usr/local/share/doc/HTML/default/html on my system, but I can access help just fine. The files are in the en dir but can be accessed fine from default. There must have been no language specified or there was some confusion when you installed. > > > > How do I change the settings in KDE? > > Thanks. Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 6:28:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id CE5C237B4CF for ; Wed, 22 Nov 2000 06:28:47 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAMESbN03523; Thu, 23 Nov 2000 01:28:37 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Thu, 23 Nov 2000 01:28:37 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="US-ASCII" To: Blaz Zupan , freebsd-questions@FreeBSD.ORG References: In-Reply-To: Subject: Re: No buffer space available - the weird way MIME-Version: 1.0 Message-Id: <00112301283709.00531@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thursday 23 November 2000 01:07, Blaz Zupan wrote: -[snip]- > I have decided to recompile a kernel and increased maxusers to 128 and set > NMBCLUSTERS to 4096. Nothing changed. > > I'm totally at loss as to what might be causing this. Ideas on how to solve > this problem will be much appreciated. > Have you logged incoming trafic to the remote box? Maybe something is DOSing it. Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 6:33:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from madness.mdgnet.org (unknown [24.92.156.65]) by hub.freebsd.org (Postfix) with SMTP id C2D9537B479 for ; Wed, 22 Nov 2000 06:33:44 -0800 (PST) Received: (qmail 9664 invoked by uid 1000); 22 Nov 2000 14:33:43 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 22 Nov 2000 14:33:43 -0000 Date: Wed, 22 Nov 2000 09:33:43 -0500 (EST) From: Matthew George To: noor@comrax.com Cc: freebsd-questions@freebsd.org Subject: Re: ipfw/natd In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The issues present in such a scenario are by no means easy to deal with. First, divert sockets do not do what you think they do. You will find it easiest to use natd in order to redirect packets to another address. Just add '-f /etc/natd.conf' to your flags when you call natd. In natd.conf, use the redirect lines redirect_[port|proto|address] as defined in natd(8). Note that this will need to be done on a separate firewall box in front of your servers. Second, whether or not you will be able to make your databases fault tolerant in the event of a server failure will ultimately depend on what database platform you are running. Your db must internally support replication. The servers would keep themselves in sync with each other, attempting to maintain consistent copies of the database on each. This feature is most often found in enterprise class databases. Your best bet would be to install a server with your SQL server and an empty schema. In the event of a failure, you can copy the data into your standby server from your most recent backup (or the production server's disk if you can still get to it) and enable the redirection as above. It is often helpful to have enough knowledge of the data to determine what data is essential to the successful operation of the system. Usually you can minimize downtime by copying in this data first, restoring services, and then migrating nonessential data in while the system is running. On Wed, 22 Nov 2000 noor@comrax.com wrote: > Date: Wed, 22 Nov 2000 00:42:03 +0200 (IST) > From: noor@comrax.com > To: freebsd-questions@freebsd.org > Subject: ipfw/natd > > Hello all, > > Sorry for the surge of questions from me today :) > > We have now a server being used as a Web server and a SQL server. Since > we are about to get a new server for SQL, I'll need to split the SQL > server and put it on the new machine. This is not a problem. > > What I want to know is: if the new SQL server fails for some reason, I > want to use the old SQL server (still being hosted on the same old > machine). I want to do this using a divert rule in ipfw. I still don't > know how... > > If box A has IP: 192.168.40.50 > & box B has IP: 192.168.40.10 > > I want to do something like: > > divert tcp from 192.168.40.50 192.168.40.10 for SQL queries... > > > > Thanks for your help again... > > Noor > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 22 7: 9:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ra.obsidian.co.za (lava.obsidian.co.za [160.124.182.1]) by hub.freebsd.org (Postfix) with ESMTP id EB1E037B4C5 for ; Wed, 22 Nov 2000 07:09:29 -0800 (PST) Received: from obsidian.co.za ([10.0.0.59]) by ra.obsidian.co.za (8.9.3/8.9.3) with ESMTP id RAA12146 for ; Wed, 22 Nov 2000 17:09:20 +0200 Message-ID: <3A1BE19A.C0A7C469@obsidian.co.za> Date: Wed, 22 Nov 2000 17:09:14 +0200 From: wibble Organization: Obsidian Systems X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: BSD 4.2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Howdy..... I see that the ports collection offers a meta port to carry out the upgrade to 4.2 from 4.1, listed under {portsdir}/misc Does this work or is it not worth trying? Thanks Warren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 7:14:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.thpoon.com (cr103675-a.bloor1.on.wave.home.com [24.114.152.71]) by hub.freebsd.org (Postfix) with SMTP id AA36B37B4C5 for ; Wed, 22 Nov 2000 07:14:38 -0800 (PST) Received: (qmail 32494 invoked from network); 22 Nov 2000 15:14:37 -0000 Received: from unknown (HELO tea.thpoon.com) (mail@192.168.1.2) by cr103675-a.bloor1.on.wave.home.com with SMTP; 22 Nov 2000 15:14:37 -0000 Received: from antipode by tea.thpoon.com with local (Exim 3.12 #1 (Debian)) id 13ybbZ-0007AW-00 for ; Wed, 22 Nov 2000 10:14:37 -0500 To: freebsd-questions@FreeBSD.ORG Subject: ata driver, PIIX3, DMA for hard drive, and HARD READ ERROR From: Arcady Genkin X-Face: 0=A/O5-+sE[Tf%X>rYr?Y5LD4,:^'jaJ!4jC&UR*ZrrK2>^`g22Qeb]!:d;}2YJ|Hq"LHdF OX`jWX|AT-WVFQ(TPhFVak)0nt$aEdlOq=1~D,:\z5QlVOrZ2(H,mKg=Xr|'VlHA="r Organization: thpoon.com Mail-Copies-To: never Date: 22 Nov 2000 10:14:37 -0500 Message-ID: <87aeas9gyq.fsf@tea.thpoon.com> Lines: 72 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a Pentium Gigabyte GA-586HX motherboard with an HX chipset. It has PIIX3 IDE controller on board. To it are connected two hard drives: a 13G IBM (72K RPM) and a 19G Quantum BigFoot. The IBM is the master drive, and both drives are connected to the secondary controller.[1] The system is a 4.1.1. ,----[ dmesg ] | atapci0: port 0xf000-0xf00f at device 7.1 on pci0 | ata1: at 0x170 irq 15 on atapci0 | ata1-master: DMA limited to UDMA33, non-ATA66 compliant cable | ad2: 13042MB [26500/16/63] at ata1-master WDMA2 | ad3: 18366MB [37317/16/63] at ata1-slave WDMA2 `---- The IBM disk gives me HARD READ ERRORS, which scares me quite a bit. It all starts with a message from the kernel: ,----[ dmesg ] | ad2: HARD READ ERROR blk# 25418671ad2: DMA problem fallback to PIO mode | ad2: HARD READ ERROR blk# 25418687 status=59 error=40 | ad2: DMA problem fallback to PIO mode | ad2: HARD READ ERROR blk# 25418687 status=59 error=40 | ad2: HARD READ ERROR blk# 25418687 status=59 error=40 | ad2: HARD READ ERROR blk# 25677679 status=59 error=40 | ad2: HARD READ ERROR blk# 25677679 status=59 error=40 `---- The ata(4) man page says that PIIX3 supports DMA2, and I know that the drive supports it for sure. However, the documentation to the motherboard has no mention of DMA for the IDE: ,----[ GA-586HX manual ] | 2-channel Enhanced IDE on board. | Supports Mode 3,4 IDE & ATAPI CD-ROM. `---- The errors only come up once in several days. The computer has been up for 20 days, and there have been only 7 such messages. The first drive has fallen back to pio mode, while the second still remains in DMA. However, also note that even in PIO mode it still gives me the HARD READ errors. ,----[ soup:~# sysctl hw.atamodes ] | hw.atamodes: pio,dma, `---- I've installed this hard drive 20 days ago, when the previous one died. The previous drive was also giving me the same kind of errors, which makes me think that perhaps the errors are not the drive's fault. My kernel config file has the following relevant options: ,---- | options SOFTUPDATES | device ata | device atadisk # ATA disk drives | options ATA_STATIC_ID #Static device numbering `---- The question is: how do I find out if the error comes from the drive or the controller or a bug in the driver? [1] I moved the IBM to the secondary controller when I started getting the HARD READ ERROR's. Before that it was on the primary by itself, and the Quantum was on the secondary by itself. I thought that perhaps the primary controller was broken, so I switched it, and it turns out that the same problem appears on the secondary. Many thanks, -- Arcady Genkin Don't read everything you believe. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 7:25:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from MCSMTP.MC.VANDERBILT.EDU (mcsmtp.mc.Vanderbilt.Edu [160.129.93.202]) by hub.freebsd.org (Postfix) with ESMTP id B78DC37B4C5 for ; Wed, 22 Nov 2000 07:25:13 -0800 (PST) Subject: pam To: freebsd-questions@freebsd.org X-Mailer: Lotus Notes Release 5.0.2a November 23, 1999 Message-ID: From: George.Giles@mcmail.vanderbilt.edu Date: Wed, 22 Nov 2000 09:26:01 -0600 X-MIMETrack: Serialize by Router on MCSMTP/VUMC/Vanderbilt(Release 5.0.3 |March 21, 2000) at 11/22/2000 09:21:27 AM MIME-Version: 1.0 Content-type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG What is the status of PAM on FreeBSD? Where would the doco be? George To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 7:25:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 01.dhcp.hck.carroll.com (core1.hck.carroll.com [216.44.16.2]) by hub.freebsd.org (Postfix) with ESMTP id F062437B4D7 for ; Wed, 22 Nov 2000 07:25:54 -0800 (PST) Received: (from damien@localhost) by 01.dhcp.hck.carroll.com (8.9.3/8.9.3) id KAA11631 for freebsd-questions@freebsd.org; Wed, 22 Nov 2000 10:27:04 -0500 (EST) (envelope-from damien) Date: Wed, 22 Nov 2000 10:27:04 -0500 From: Damien Tougas To: freebsd-questions@freebsd.org Subject: Strange Caps-Lock behavior with Citrix Message-ID: <20001122102703.A11439@carroll.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 X-Loop: FreeBSD.ORG Hello, We have a number of FreeBSD workstations that use the Linux Citrix client to access a Windows 2000 servers. Several users have experienced strange behavior when working in Windows applications; when typing with the Caps-Lock key on, uppercase letters will just stop working. The Caps-Lock light will turn off, and the user will not be able to turn it back on, nor are they even able to use the Shift key. Logging out of the Citrix session, then logging back on will bring it back to normal for a short period of time, but only for a few minutes. Has anyone else ever experienced this? Any suggestions? -- Damien Tougas Systems Administrator Carroll-Net, Inc. http://www.carroll.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 7:44: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sunny.fishnet.com (sunny.fishnet.com [209.150.200.6]) by hub.freebsd.org (Postfix) with ESMTP id 7183437B4D7 for ; Wed, 22 Nov 2000 07:44:01 -0800 (PST) Received: from walleye.corp.fishnet.com (209.150.192.114) by sunny.fishnet.com (5.0.048) id 39FECC32003D19AF for freebsd-questions@freebsd.org; Wed, 22 Nov 2000 09:44:04 -0600 Message-ID: From: Matt Schlosser To: "'freebsd-questions@freebsd.org'" Subject: Upgrade Path Date: Wed, 22 Nov 2000 09:45:29 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ok, I'm using FreeBSD 4.1, I want to go to 4.2 All I need is to be pointed in the right direction (documentation page will do nicely) to upgrade. Thanks in advance! "Whenever you find yourself on the side of the majority, it's time to pause and reflect." -Mark Twain To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 7:50:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from MCSMTP.MC.VANDERBILT.EDU (mcsmtp.mc.Vanderbilt.Edu [160.129.93.202]) by hub.freebsd.org (Postfix) with ESMTP id 0564837B4D7 for ; Wed, 22 Nov 2000 07:50:24 -0800 (PST) Subject: Postfix To: freebsd-questions@freebsd.org X-Mailer: Lotus Notes Release 5.0.2a November 23, 1999 Message-ID: From: George.Giles@mcmail.vanderbilt.edu Date: Wed, 22 Nov 2000 09:47:53 -0600 X-MIMETrack: Serialize by Router on MCSMTP/VUMC/Vanderbilt(Release 5.0.3 |March 21, 2000) at 11/22/2000 09:46:37 AM MIME-Version: 1.0 Content-type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How do I update my ports/mail/postfix directory to fetch postfix 2000 instead of the older 1999 version it has? George To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 8:14:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from clyde.goodleaf.net (piscator.seanet.com [199.181.165.218]) by hub.freebsd.org (Postfix) with ESMTP id 4088037B479 for ; Wed, 22 Nov 2000 08:14:15 -0800 (PST) Received: by clyde.goodleaf.net (Postfix, from userid 1001) id 9EEF45BB3; Wed, 22 Nov 2000 08:16:06 -0800 (PST) From: john@goodleaf.net To: questions@freebsd.org Subject: New ata driver: What is tagged queueing? Date: Wed, 22 Nov 2000 16:16:06 GMT Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <20001122161606.9EEF45BB3@clyde.goodleaf.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I was just reading the 4.2 release notes. I see that the ata driver supports tagged queueing. What is that? Does enabling it in the kernel conf either a)enhance performance or b)improve stability? Thanks, John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 8:18:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cheyenne.infinitecnetworks.com (unknown [64.217.101.10]) by hub.freebsd.org (Postfix) with ESMTP id 046EE37B4CF for ; Wed, 22 Nov 2000 08:18:50 -0800 (PST) Received: by CHEYENNE with Internet Mail Service (5.5.2650.21) id ; Wed, 22 Nov 2000 10:18:53 -0600 Message-ID: From: "Bouchard, David" To: "'questions@freebsd.org'" Subject: 3COM 905-TX Can't map ports/memory error Date: Wed, 22 Nov 2000 10:18:52 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've recently completed an instalation of FreeBSD but I have one problem. I can't seem to get the ethernet card to work. During boot-up, the messages I get are: xl0: <3Com 3c905-TX Fast Etherlink XL> irq 11 at device 16.0 on pci0 xl0: couldn't map ports/memory device_probe_and_attach: xl0 attach returned 6 I used the 3com utility to get the following information about the card: Interrupt Level: 11 I/O Base: FC40 Slot # 16 Ethernet Address: 00600815F3E6 The information I got from doing a uname -s is: FreeBSD systest.infinitecnetworks.com 4.0-RELEASE FreeBSD 4.0-RELEASE #1: Wed Nov 15 14:43:51 CST 2000 root@systest.infinitecnetworks.com:/usr/src/sys/compile/SYSTEST i386 As you can tell, I have recompiled the kernel (it didn't work before that, either). I made sure I had the miibus support loaded when I did this as well. I have also tried loading the miibus support as a module, and that hasn't worked either. No matter what I have tried, I continue to get the above message. Any suggestions? I've looked in the handbook, searched the mailing list archives, and through various FAQs to no avail. Thanks in advance, David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 8:30:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from piranha.amis.net (piranha.amis.net [212.18.32.3]) by hub.freebsd.org (Postfix) with ESMTP id 2D01A37B4D7 for ; Wed, 22 Nov 2000 08:30:48 -0800 (PST) Received: from titanic.medinet.si (titanic.medinet.si [212.18.32.66]) by piranha.amis.net (Postfix) with ESMTP id F33145DFA; Wed, 22 Nov 2000 17:30:46 +0100 (CET) Date: Wed, 22 Nov 2000 17:30:46 +0100 (CET) From: Blaz Zupan X-Sender: blaz@titanic.medinet.si To: Zero Sum Cc: freebsd-questions@FreeBSD.ORG Subject: Re: No buffer space available - the weird way In-Reply-To: <00112301283709.00531@shalimar.net.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Have you logged incoming trafic to the remote box? Maybe something is > DOSing it. I have looked at it with tcpdump, yes. Just lots of NetBIOS traffic from the nearby Windoze boxes, but nothing tragic. Also "netstat -m" showed normal numbers. Blaz Zupan, Medinet d.o.o, Linhartova 21, 2000 Maribor, Slovenia E-mail: blaz@amis.net, Tel: +386-2-320-6320, Fax: +386-2-320-6325 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 8:34:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rush.telenordia.se (mail.telenordia.se [194.213.64.42]) by hub.freebsd.org (Postfix) with SMTP id C11F737B4D7 for ; Wed, 22 Nov 2000 08:34:16 -0800 (PST) Received: (qmail 24440 invoked from network); 22 Nov 2000 17:34:10 +0100 Received: from bb-62-5-7-17.bb.tninet.se (HELO marbsd.tninet.se) (62.5.7.17) by mail.telenordia.se with SMTP; 22 Nov 2000 17:34:10 +0100 From: Mark Rowlands Reply-To: mark.rowlands@minmail.net Date: Wed, 22 Nov 2000 17:27:29 +0000 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-2022-jp" Cc: freebsd questions To: Jack Morgan , orion slevin References: <3A1B7A3B.126CA7B8@gol.com> In-Reply-To: <3A1B7A3B.126CA7B8@gol.com> Subject: Re: how do you change the directory for kde help? kde doesn't find it MIME-Version: 1.0 Message-Id: <00112217272900.09151@marbsd.tninet.se> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wednesday 22 November 2000 07:48, Jack Morgan wrote: > orion slevin wrote: > > I have Freebsd 4.1 Release. > > In KDE, when I select the help tab on an application, > > It says Cannot open: /usr/local/share/doc/HTML/default/ > > html > > Why don"t yopu create a directory /usr/local/share/doc/HTML/default/html > and move all files from /usr/local/share/doc/HTML/en/ into it? > > > but the actual help directory is: > > /usr/local/share/doc/HTML/en/ > > > > How do I change the settings in KDE? > > Thanks. > > -jack.morgan > Tokyo, Japan > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > seems like you been a bad boy .. there should be a link from /usr/local/share/doc/HTML/en/default -> usr/local/share/doc/HTML/en/default/en or whatever your chosen language might be.. and while you're at it htdig is worth a look at for adding better search capabilities to the help. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 8:41: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 8DB2437B4CF for ; Wed, 22 Nov 2000 08:41:04 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAMGewA14670; Wed, 22 Nov 2000 08:40:58 -0800 (PST) Date: Wed, 22 Nov 2000 08:40:58 -0800 From: Alfred Perlstein To: Eduardo Kotujansky Cc: questions@FreeBSD.ORG Subject: Re: startup script Message-ID: <20001122084058.K18037@fw.wintelcom.net> References: <000b01c05473$f2f9c000$0301a8c0@YOSEMITE> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000b01c05473$f2f9c000$0301a8c0@YOSEMITE>; from eduardo@complex.com.br on Wed, Nov 22, 2000 at 09:03:23AM -0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Eduardo Kotujansky [001122 02:55] wrote: > Where is the startup scripts of locally installed packages. > I would like to start my daemaon and postgresql on boot, > > I did not find any file like rc.local If you create /etc/rc.local freebsd will use it, lately we use a new way though, we put files in /usr/local/etc/rc.d/ named {something}.sh. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 8:42:42 2000 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 0A7CE37B479 for ; Wed, 22 Nov 2000 08:42:39 -0800 (PST) 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 SAA09854; Wed, 22 Nov 2000 18:47:00 +0100 Message-ID: <3A1BF7A7.6050904@i-clue.de> Date: Wed, 22 Nov 2000 17:43:19 +0100 From: Christoph Sold User-Agent: Mozilla/5.0 (Windows; U; WinNT4.0; en-US; m18) Gecko/20001114 X-Accept-Language: de, en MIME-Version: 1.0 To: wibble Cc: questions@FreeBSD.org Subject: Re: BSD 4.2 References: <3A1BE19A.C0A7C469@obsidian.co.za> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is the _ports_ upgrade kit: the absolute minimum of files you need to have a 4.1-R system to compile 4.2-S ports. This is if you need your box up and running 24/7, but a port needs updating. If you got the chance to do a complete upgrade, this is the way to go. Just my $.02 -Christoph Sold wibble wrote: > Howdy..... > > I see that the ports collection offers a meta port to carry out the > upgrade to 4.2 from 4.1, listed under {portsdir}/misc > > Does this work or is it not worth trying? > > Thanks > Warren > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 22 8:44: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gort.connection.com (gort.connection.com [204.138.111.59]) by hub.freebsd.org (Postfix) with ESMTP id 19A4E37B479 for ; Wed, 22 Nov 2000 08:43:58 -0800 (PST) Received: (from steve@localhost) by gort.connection.com (8.9.3/8.9.3) id MAA32524 for freebsd-questions@freebsd.org; Wed, 22 Nov 2000 12:57:12 -0500 Date: Wed, 22 Nov 2000 12:57:11 -0500 From: Steve Shorter To: freebsd-questions@freebsd.org Subject: 32 bit UID and quota Message-ID: <20001122125711.A32521@gort.connection.com> 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 X-Loop: FreeBSD.ORG Howdy! I have found some historical references to problems using the disk quota system with large uid as is possible with 32 bit uids, problems like large uid's wrapping to smaller ones because of the size of certain structs. in the quota subsystem...whatever.. I was wondering if there are any problems using large uid and quotas in 4.2. I couldn't find any references to a solution and would like to use FreeBSD with large numbers of users and disk quotas. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 9: 3:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rmx194-mta.mail.com (rmx194-mta.mail.com [165.251.48.41]) by hub.freebsd.org (Postfix) with ESMTP id E4AA037B4CF for ; Wed, 22 Nov 2000 09:03:23 -0800 (PST) Received: from weba4.iname.net (weba4.iname.net [165.251.4.14]) by rmx194-mta.mail.com (8.9.3/8.9.3) with ESMTP id MAA20372; Wed, 22 Nov 2000 12:03:17 -0500 (EST) From: thursday@altavista.net Received: (from root@localhost) by weba4.iname.net (8.9.1a/8.9.2.Alpha2) id MAA16360; Wed, 22 Nov 2000 12:03:15 -0500 (EST) MIME-Version: 1.0 Message-Id: <001122120315J3.25320@weba4.iname.net> Date: Wed, 22 Nov 2000 12:03:15 -0500 (EST) Content-Type: Text/Plain Content-Transfer-Encoding: 7bit To: freebsd-questions@freebsd.org Subject: best upgrade path? Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have a FreeBSD 3.3-RELEASE machine which I'm considering upgrading to 4.2-RELEASE. I'm wondering what the best upgrade path is: whether to use the "Upgrade" method provided in /stand/sysinstall, or whether to wipe out the hard drive and do a completely fresh install from scratch. I've never used sysinstall's upgrade mechanism, so I'd be curious to hear others' experiences with it. Is there any documentation on it aside from the text file you're presented with before starting the upgrade? I think I'd like to do whatever would result in the least downtime for the machine (it does virtual hosting for a bunch of my friends' domains) and the least time for me reconfiguring services such as httpd, sendmail samba, natd and my firewall. My concern about using sysinstall's upgrade utility is that I might run into trouble upgrading exisitng installed packages. Is there an automated tool for upgrading installed ports/packages? Thank you, -- ---------------------------------------------------------------- Get your free email from AltaVista at http://altavista.iname.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 9: 9:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lvcablemodem.com (hams2.lvcablemodem.com [24.234.0.76]) by hub.freebsd.org (Postfix) with ESMTP id BD4DB37B4C5 for ; Wed, 22 Nov 2000 09:09:50 -0800 (PST) Received: from dhcp196.122.lvcm.com ([24.234.122.196]) by lvcablemodem.com with Microsoft SMTPSVC(5.5.1877.517.51); Wed, 22 Nov 2000 09:09:08 -0800 Date: Wed, 22 Nov 2000 09:10:01 -0800 (PST) From: Chris Angell To: freebsd-questions@freebsd.org Subject: Watch utility Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The 'watch' utility won't work on my system. I even added the 'snp' entry in the custom kernel built for my machine. Do I need to make the device, or do something else to get that utility working? Thanks, Chris Angell To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 9:10:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from changeofhabit.mr.itd.umich.edu (changeofhabit.mr.itd.umich.edu [141.211.144.17]) by hub.freebsd.org (Postfix) with ESMTP id 2340D37B4C5 for ; Wed, 22 Nov 2000 09:10:05 -0800 (PST) Received: from umich.edu ([141.213.23.85]) by changeofhabit.mr.itd.umich.edu (8.9.3/3.2r) with ESMTP id MAA19134 for ; Wed, 22 Nov 2000 12:10:04 -0500 (EST) Message-ID: <39F31195.49017712@umich.edu> Date: Sun, 22 Oct 2000 12:10:59 -0400 From: Mark Leighton X-Mailer: Mozilla 4.7 (Macintosh; U; PPC) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Macintosh CD copying software Content-Type: text/plain; charset=us-ascii; x-mac-type="54455854"; x-mac-creator="4D4F5353" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Does anyone know where I can find software for copying psx games.. I already have the Astarte software just looking for something different. Thanks :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 9:16:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cortes.cibnor.mx (cortes.cibnor.mx [200.23.161.225]) by hub.freebsd.org (Postfix) with ESMTP id 0FA0F37B479 for ; Wed, 22 Nov 2000 09:16:10 -0800 (PST) Received: from localhost (cestrada@localhost) by cortes.cibnor.mx (8.9.3/8.9.3) with ESMTP id KAA07793 for ; Wed, 22 Nov 2000 10:16:03 -0700 (MST) Date: Wed, 22 Nov 2000 10:16:03 -0700 (MST) From: "Cesar Estrada [INF]" To: freebsd-questions@FreeBSD.ORG Subject: Re: DHCP In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I am using FreeBsd 2.2.8, and each 1 month more o less my server has problem with TCP/IP, and it doesn't work, only with reset work ok again. error is "No buffer space available" Can you help me? Thanks a lot Ing. Cesar Estrada Enriquez Centro de Investigacion Biologicas, La Paz, B.C.S., Mexico Division de Diseno Tecnologico, Redes. Tel.(112) 5 36 33 Ext. 3177,3124 E-mail: cestrada@cibnor.mx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 9:31:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from stecconi-racks.com.ar (unknown [200.43.112.230]) by hub.freebsd.org (Postfix) with ESMTP id 14D4F37B4C5 for ; Wed, 22 Nov 2000 09:31:25 -0800 (PST) Received: from sebastian [192.168.3.5] by stecconi-racks.com.ar [127.0.0.1] with SMTP (MDaemon.v3.1.2.R) for ; Wed, 22 Nov 2000 14:30:38 -0300 Message-ID: <000901c054aa$36139380$0503a8c0@sebastian> From: "Sebastian Galli" To: Subject: RV: ADD a NIC card RTL8029 Date: Wed, 22 Nov 2000 14:32:38 -0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0006_01C05491.0FF54FE0" 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 X-MDRcpt-To: freebsd-questions@FreeBSD.ORG X-MDRemoteIP: 192.168.3.5 X-Return-Path: administrador@stecconi-racks.com.ar X-MDaemon-Deliver-To: freebsd-questions@FreeBSD.ORG Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0006_01C05491.0FF54FE0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I have installed the ver. 4.1, when it boot: dc0: at device 5.0 on pci0 dc0: could't map ports/memory device_probe_attach: dc0 attach returned 6 pci0: (vendor=3D0x11c1, dev=3D0x0442) at 13.0 ed0: at device 18.0 on pci0 device_probe_attach: ed0 attach returned 2 and then, in ifconfig devices not apear the ed0... what can I do for fix = the ethernet device (ed0)? Thanks.=20 Sebastian. ------=_NextPart_000_0006_01C05491.0FF54FE0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
    I have installed the = ver. 4.1,=20 when it boot:
 
dc0: <intel 21143 10/100Tx> at = device 5.0 on=20 pci0
dc0: could't map = ports/memory
device_probe_attach: dc0 attach = returned=20 6
pci0: <unknow card> = (vendor=3D0x11c1,=20 dev=3D0x0442) at 13.0
ed0: <NE2000 pci ethernet (Realtek = 8029)> at=20 device 18.0 on pci0
device_probe_attach: ed0 attach = returned=20 2
 
and then, in ifconfig devices not apear = the ed0...=20 what can I do for fix the ethernet device (ed0)?
 
Thanks.
 
Sebastian.
------=_NextPart_000_0006_01C05491.0FF54FE0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 9:33: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from iteso.mx (iteso.mx [148.201.1.4]) by hub.freebsd.org (Postfix) with ESMTP id F238137B4C5 for ; Wed, 22 Nov 2000 09:32:57 -0800 (PST) Received: from eric (customer11-181.telmex.net.mx [148.233.11.181] (may be forged)) by iteso.mx (8.11.1/8.11.1) with SMTP id eAMHWgZ83260; Wed, 22 Nov 2000 11:32:42 -0600 (CST) (envelope-from eric@iteso.mx) Message-ID: <026d01c054aa$5ab5a0c0$4d011c0a@delacruz.avis.com.mx> Reply-To: "Eric De La Cruz Lugo" From: "Eric De La Cruz Lugo" To: "Cesar Estrada [INF]" , References: Subject: spanish answer here RE: DHCP Date: Wed, 22 Nov 2000 11:32:29 -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.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ing. Cesar: Solo como pregunta, el servidor para que lo utilizan actualmente?, lo usan como firewall, servidor SQL, servidor de ftp o paginas web?, servidor de correo electronico? el problema que se menciona aqui puede ser que se deba a algun proceso que funcione de forma mensual (a traves del cron), si fuera una opcion yo consideraria que hicieran un upgrade a una version mas reciente de FreeBSD, es muy sencillo descargar del sitio de frebsd.org una imagen o archivo ISO y quemarlo mediante un software como el Easy CD Creator, la forma de quemar una imagen es diferente a la de quemar o hacer una copia de archivos en un CD, el archivo de la ultima version de FreeBSD mide aproximadamente unos 641 Megas al quemarlo con el software antes mencionado (o con casi cualquier otro) se obtiene un CD completo con directorios y archivos organizados bajo el estandar ISO 9660, mi recomendación es que prepare un programa de actualización de sistema operativo, con los conesecuentes respaldos de información y hacer una nueva instalacion de FreeBSD la version podria ser la 4.1.1 por ser la mas estable hasta el momento, saludos desde Merida, Yucatan, Mexico. Lic. en Informatica Administrativa del ITESO Eric De La Cruz Lugo P.D. el error de no buffer space, es posible que se deba a que el sistema de archivos de su server esta llegando a sus limites en cuanto a espacio libre en el disco duro, podria poner en su siguiente mensaje a esta lista de FreeBSD questions, el resultado de la ejecucion del comando "df" en su sistema, para saber algo mas respecto al espacio utilizado y la forma de sus particiones "/var" "/usr" y " /" y para saber tambien de que tamaño es su disco duro? ----- Original Message ----- From: Cesar Estrada [INF] To: Sent: Wednesday, November 22, 2000 11:16 AM Subject: Re: DHCP > > Hi, I am using FreeBsd 2.2.8, and each 1 month more o less my server has > problem with TCP/IP, and it doesn't work, only with reset work ok > again. error is "No buffer space available" > > Can you help me? > > Thanks a lot > > > Ing. Cesar Estrada Enriquez > Centro de Investigacion Biologicas, La Paz, B.C.S., Mexico > Division de Diseno Tecnologico, Redes. > Tel.(112) 5 36 33 Ext. 3177,3124 > E-mail: cestrada@cibnor.mx > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 22 9:46:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ossc.ossc.com (oss-gw-pm3.pcnet.net [206.105.29.20]) by hub.freebsd.org (Postfix) with SMTP id BED9B37B479 for ; Wed, 22 Nov 2000 09:46:11 -0800 (PST) Received: from gary.ossc.com by ossc.ossc.com (AIX 3.2/UCB 5.64/4.03) id AA08856; Wed, 22 Nov 2000 12:42:42 -0500 Message-Id: <000a01c054ac$7325f770$39f2f9cc@ossc.com> From: "Gary" To: Subject: alert: the floppies images for rel 4.2 are too large for a 1.44 floppy Date: Wed, 22 Nov 2000 12:48:40 -0500 Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C05482.89E805E0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C05482.89E805E0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable hi the floppies images for rel 4.2 are too large for a 1.44 floppy.=20 gary ------=_NextPart_000_0007_01C05482.89E805E0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
hi
 

the floppies images for rel 4.2 are too large for a = 1.44 floppy.=20

 

gary

------=_NextPart_000_0007_01C05482.89E805E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 9:49: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from earth.wnm.net (earth.wnm.net [208.246.240.243]) by hub.freebsd.org (Postfix) with ESMTP id 6335937B479 for ; Wed, 22 Nov 2000 09:49:07 -0800 (PST) Received: from localhost (alex@localhost) by earth.wnm.net (8.11.0/8.11.0) with ESMTP id eAMHn8443643; Wed, 22 Nov 2000 11:49:08 -0600 (CST) Date: Wed, 22 Nov 2000 11:49:08 -0600 (CST) From: Alex Charalabidis To: George.Giles@mcmail.vanderbilt.edu Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Postfix In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 22 Nov 2000 George.Giles@mcmail.vanderbilt.edu wrote: > How do I update my ports/mail/postfix directory to fetch postfix 2000 > instead of the older 1999 version it has? > Use the postfix-current port. -ac -- ============================================================== Alex Charalabidis (AC8139) 5050 Poplar Ave, Ste 170 System Administrator Memphis, TN 38157 WebNet Memphis (901) 432 6000 Author, The Book of IRC http://www.bookofirc.com/ ============================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 9:50:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from berzerk.gpcc.itd.umich.edu (berzerk.gpcc.itd.umich.edu [141.211.2.162]) by hub.freebsd.org (Postfix) with ESMTP id A0CA937B479 for ; Wed, 22 Nov 2000 09:50:50 -0800 (PST) Received: from breakout.gpcc.itd.umich.edu (smtp@breakout.gpcc.itd.umich.edu [141.211.2.141]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id MAA27443; Wed, 22 Nov 2000 12:50:49 -0500 (EST) Received: from localhost (timcm@localhost) by breakout.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id MAA13991; Wed, 22 Nov 2000 12:50:49 -0500 (EST) Date: Wed, 22 Nov 2000 12:50:48 -0500 (EST) From: Tim McMillen X-Sender: timcm@breakout.gpcc.itd.umich.edu To: Matt Schlosser Cc: "'freebsd-questions@freebsd.org'" Subject: Re: Upgrade Path In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG A trip to the handbook http://www.freebsd.org/handbook/index.html is always a good start. The chapter you want is http://www.freebsd.org/handbook/cutting-edge.html even if you only want to go to 4.2-release this will work well (I just did it last night.) The section you especially want is 18.3 and 18.4 You need to make the port /usr/ports/net/cvsup-bin and edit a supfile to include the line: *default release=cvs tag=RELENG_4_2_0_RELEASE run cvsup and this will get you 4.2 release. Then follow the instructions to make world. Then you will want to recompile your kernel, so you want chapter 7 http://www.freebsd.org/handbook/kernelconfig.html I followed the instructions on those pages and it worked like a charm the first time I've done it. Tim On Wed, 22 Nov 2000, Matt Schlosser wrote: > Ok, I'm using FreeBSD 4.1, I want to go to 4.2 > > All I need is to be pointed in the right direction (documentation page will > do nicely) to upgrade. > > Thanks in advance! > > > "Whenever you find yourself on the side of the majority, it's time to pause > and reflect." > -Mark Twain > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 22 9:56: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from corpmx3.CORP.HARRIS.COM (corpmx3.corp.harris.com [137.237.103.9]) by hub.freebsd.org (Postfix) with ESMTP id 89E4937B479 for ; Wed, 22 Nov 2000 09:55:57 -0800 (PST) Received: by corpmx3 with Internet Mail Service (5.5.2650.21) id ; Wed, 22 Nov 2000 12:55:52 -0500 Message-ID: <95B669A7D872D41182A600508BDFFB8C12D641@mlbmx7.ess.harris.com> From: "Potts, Ross" To: 'Gary' , freebsd-questions@freebsd.org Subject: RE: alert: the floppies images for rel 4.2 are too large for a 1. 44 floppy Date: Wed, 22 Nov 2000 12:55:50 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Try using rawrite. It is on the site for use to download and use. -----Original Message----- From: Gary [SMTP:gary@ossc.ossc.com] Sent: Wednesday, November 22, 2000 12:49 PM To: freebsd-questions@freebsd.org Subject: alert: the floppies images for rel 4.2 are too large for a 1.44 floppy hi the floppies images for rel 4.2 are too large for a 1.44 floppy. gary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10: 0:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cortes.cibnor.mx (cortes.cibnor.mx [200.23.161.225]) by hub.freebsd.org (Postfix) with ESMTP id A374937B479 for ; Wed, 22 Nov 2000 10:00:06 -0800 (PST) Received: from localhost (cestrada@localhost) by cortes.cibnor.mx (8.9.3/8.9.3) with ESMTP id LAA12245; Wed, 22 Nov 2000 11:00:00 -0700 (MST) Date: Wed, 22 Nov 2000 11:00:00 -0700 (MST) From: "Cesar Estrada [INF]" To: Eric De La Cruz Lugo Cc: freebsd-questions@FreeBSD.ORG Subject: Re: spanish answer here RE: DHCP In-Reply-To: <026d01c054aa$5ab5a0c0$4d011c0a@delacruz.avis.com.mx> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Ing. Cesar: >=20 > Solo como pregunta, el servidor para que lo utilizan actualmente?, lo usa= n > como firewall, servidor SQL, servidor de ftp o paginas web?, servidor de > correo electronico? Asi es... tengo como servidor ftp, correo electronico, router.. Efectivamente ya compre la version 4.1 y pensaba actualizarla, pero mi duda era que a lo mejor en kernel podria agregarle mas buffers En cuanto a mi disco duro es de 4 GB.. resultado de df : Filesystem =091K-blocks =09Used =09Avail =09Capacity =09Mounted on=20 /dev/sd0s1a =09925071=09=09207662 =09643404 =0924% =09=09/=20 /dev/sd1s1e =09932239 =09=09632261 =09225399 =0974% =09=09/u=20 /dev/sd0s1e=09925071 =09=09244800 =09606266 =0929% =09=09/usr=20 /dev/sd1s1f =09932239 =09=09629936 =09227724 =0973% =09=09/var procfs =09=094 =09=094 =090 =09100% =09=09/proc Saludos !! y gracias ... >=20 > el problema que se menciona aqui puede ser que se deba a algun proceso qu= e > funcione de forma mensual (a traves del cron), si fuera una opcion yo > consideraria que hicieran un upgrade a una version mas reciente de FreeBS= D, > es muy sencillo descargar del sitio de frebsd.org una imagen o archivo IS= O y > quemarlo mediante un software como el Easy CD Creator, la forma de quemar > una imagen es diferente a la de quemar o hacer una copia de archivos en u= n > CD, el archivo de la ultima version de FreeBSD mide aproximadamente unos = 641 > Megas al quemarlo con el software antes mencionado (o con casi cualquier > otro) se obtiene un CD completo con directorios y archivos organizados ba= jo > el estandar ISO 9660, mi recomendaci=F3n es que prepare un programa de > actualizaci=F3n de sistema operativo, con los conesecuentes respaldos de > informaci=F3n y hacer una nueva instalacion de FreeBSD la version podria = ser > la 4.1.1 por ser la mas estable hasta el momento, saludos desde Merida, > Yucatan, Mexico. >=20 > Lic. en Informatica Administrativa del ITESO > Eric De La Cruz Lugo >=20 > P.D. el error de no buffer space, es posible que se deba a que el sistema= de > archivos de su server esta llegando a sus limites en cuanto a espacio lib= re > en el disco duro, podria poner en su siguiente mensaje a esta lista de > FreeBSD questions, el resultado de la ejecucion del comando "df" en su > sistema, para saber algo mas respecto al espacio utilizado y la forma de = sus > particiones "/var" "/usr" y " /" y para saber tambien de que tama=F1o es = su > disco duro? >=20 > ----- Original Message ----- > From: Cesar Estrada [INF] > To: > Sent: Wednesday, November 22, 2000 11:16 AM > Subject: Re: DHCP >=20 >=20 > > > > Hi, I am using FreeBsd 2.2.8, and each 1 month more o less my server ha= s > > problem with TCP/IP, and it doesn't work, only with reset work ok > > again. error is "No buffer space available" > > > > Can you help me? > > > > Thanks a lot > > > > > > Ing. Cesar Estrada Enriquez > > Centro de Investigacion Biologicas, La Paz, B.C.S., Mexico > > Division de Diseno Tecnologico, Redes. > > Tel.(112) 5 36 33 Ext. 3177,3124 > > E-mail: cestrada@cibnor.mx > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > >=20 >=20 Ing. Cesar Estrada Enriquez Centro de Investigacion Biologicas, La Paz, B.C.S., Mexico Division de Diseno Tecnologico, Redes. Tel.(112) 5 36 33 Ext. 3177,3124 E-mail: cestrada@cibnor.mx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10: 2:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rz.uni-ulm.de (sirius-giga.rz.uni-ulm.de [134.60.241.36]) by hub.freebsd.org (Postfix) with ESMTP id C09FC37B4C5 for ; Wed, 22 Nov 2000 10:02:36 -0800 (PST) Received: from gmx.de (lilith.wohnheim.uni-ulm.de [134.60.106.64]) by mail.rz.uni-ulm.de (8.9.3/8.9.3) with ESMTP id TAA04424; Wed, 22 Nov 2000 19:02:31 +0100 (MET) Message-ID: <3A1C0A30.3DE6EC01@gmx.de> Date: Wed, 22 Nov 2000 19:02:24 +0100 From: Siegbert Baude X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: de, en MIME-Version: 1.0 To: Brian Nelson Cc: freebsd-questions@freebsd.org Subject: Re: Sound on BS AWE64 Gold... References: <20001121111351.A15736@southpark.pocketscience.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > My AWE64 plays sound REALLY, REALLY low. I added the pcm and sbc devices to the kernel. As nobody else answered. Is there maybe a switch or jumper on the card to change between line level output and speaker level output? Also did you check the sound without the splitter? Ciao Siegbert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10: 3: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns3.kisnet1.net (unknown [209.80.16.1]) by hub.freebsd.org (Postfix) with ESMTP id 7B89437B4CF for ; Wed, 22 Nov 2000 10:02:58 -0800 (PST) Received: from winme-07x0h.idealfasteners.com (adsl-64-161-89-218.dsl.lsan03.pacbell.net [64.161.89.218]) by ns3.kisnet1.net (8.10.2/8.10.2) with ESMTP id eAMHhbu03620 for ; Wed, 22 Nov 2000 09:43:37 -0800 (PST) Message-Id: <5.0.2.1.0.20001122095541.00a91df0@pop.mail.yahoo.com> X-Sender: ksscendyn@pop.mail.yahoo.com X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Wed, 22 Nov 2000 10:03:02 -0800 To: questions@freebsd.org From: Kurtis Smith Subject: 5 usable ip's two FreeBSD boxes.. Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ok here is my delima... I have working now webserver, ftp, mailserver, and DNS setup on one box. Now this box is a Dual Homed Host with 2 nics in it also providing DHCP for the LAN. I have NAT Running on xl0 which is connected to my ADSL with Pacbell. This provides me with 5 usable ip's however I am only using one of them on xl0 interface. xl1 is providing DHCP services as well has a Ip of 192.168.1.3. Now my second BSD box I would like to have as a backup DNS as well as backup for the rest of the services. Its ip is on the LAN 192.168.1.2. My question is how to make it so it too can be seen as one of my Usable IP's so I can use this box for say maybe other domains and mail services. Like a super Mini ISP for friends family whatever. Main concern is Slave DNS for it. Can someone give me some insight.. I am Running Apache, Cucipop, ISC DHCP 3, Bind 8 etc... Thanks again... Happy Turkey Day! -Kurt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10: 5:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.limail.com.tw (c57.h202052096.is.net.tw [202.52.96.57]) by hub.freebsd.org (Postfix) with ESMTP id 1981137B4C5 for ; Wed, 22 Nov 2000 10:05:08 -0800 (PST) Received: from lc (c8.h202052096.is.net.tw [202.52.96.8]) by mail.limail.com.tw (8.9.3/8.9.3) with SMTP id BAA02039; Thu, 23 Nov 2000 01:16:30 +0800 From: linuxa@ms65.url.com.tw To: Linuxuser@mail.limail.com.tw Subject: Linux °ê»Ú»{ÃÒ¤å¾Ì»¡©ú·| Date: Thu, 23 Nov 2000 01:10:14 +0800 Message-Id: <36853.048774305555200.24338@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>>>>>>Linux­ì¼t±ÂÅv»P°ê»Ú»{ÃÒ½Òµ{»¡©ú·|<<<<<<<<< ¡m¹w¬ùµn°O»¡©ú·|¡n 1.ªO ¾ô a.»¡©ú·|®É¶¡¡G89¦~11¤ë25¤é¤U¤È2¡G00-3¡G30 b.»¡©ú·|¦aÂI¡GªO¾ô¥«¤å¤Æ¸ô1¬q30¸¹6¼Ó c.µn°O±M½u¡G(02)29681701 Mail¡Glinuxa@edirect168.com 2.¥x ¥_ a.»¡©ú·|®É¶¡¡G89¦~11¤ë30¤é±ß¤W7¡G00-8¡G30 b.»¡©ú·|¦aÂI¡G¥x¥_¥«À]«e¸ô36¸¹4¼Ó c.µn°O±M½u¡G(02)23896577 Mail¡Glinuxcenter@edirect168.com 3.¥x ¤¤ a.»¡©ú·|®É¶¡¡G89¦~11¤ë30¤é±ß¤W7¡G00-8¡G30 b.»¡©ú·|¦aÂI¡G¥x¤¤¥«¥_°Ï¤T¥Á¸ô3¬q112¸¹3¼Ó c.µn°O±M½u¡G(04)2235089 Mail¡Glinuxedu@edirect168.com 3.»¡©ú·|¶O¥Î¡G§K ¶O¡C 4.µn°O¤è¦¡¡G½Ð©ó¹q¸Ü©ÎMail¯d¤U±zªº©m¦W»P¹q¸Ü¥H°µ³sµ¸ ¤§¥Î¡C 5.µn°O®É¶¡¡G¶g¤@¦Ü¶g¤­ AM9:00-PM9:30,¶g¤»¤Î ¶g¤éAM9:00-PM5:30 6.¬°«O»Ù»¡©ú·|«~½è,©Ò¦³³õ¦¸»¡©ú·|­­ÃB40¤H,¹w¬ù±q³t! (ÃBº¡ºI¤î)¡A¨C³õ«e20¦W¹w¬ùµn°O°Ñ¥[»¡©ú·|ªÌ¡A¥iÀòÃØ ¬ü°êCaldera¤½¥q­ì¸ËªÅ¹B¨Ó¥xLinuxÃØ«~¤@¥÷¡C ¡m¾A¦X¹ï¶H¡n 1.¦³§Ó©ó¨ú±oLinux¨t²Î±M·~»{ÃҪ̡C 2.±ý´£ª@­Ó¤H¹ê¤O¡A¥R¹ê¦h¤¸¤Æ§@·~¨t²Î¤ÎInternet¾ã¦X Àô¹Òµ¥¬ÛÃöª¾ÃÑ¡C 3.¹ïºô¸ô³W¹º¡Bºô¯¸¬[³]»PºÞ²z¤u§@¦³¿³½ì©Î¤u§@»Ý¨DªÌ ¡m½Òµ{¥]¬A¡n 1.¬ü°ê OpenLinux 2000¦~³Ì·s³W¹º­ì¼t­ì¸ËªÅ¹B¨Ó¥x±Ð§÷¡C 2.§K¶O´£¨Ñ¬ü°ê OpenLinux 2000¦~³Ì·s­ì¼t³nÅé¡C 3.­ì¼t°V½m½Òµ{§¹¾ã½Æ»s¡A¨Ì¾Ú¬ü°ê©Ò­q³Ì·s½Òµ{¤º®e ±Â½Ò¡C 4.±M¥ôÁ¿®v¡A¨ãALI¸ê®æ¡]¬ü°ê­ì¼t»{ÃÒ®Ö¥iLinuxÁ¿®v¡^ ¤Î¦h¦~Linux¹ê°È¸gÅç¡C 5.¹ê°È¬°¥D¡A²z½×¬°»²¡AÂ×´I¤§Linux¤u§@¥­¥x±Ð¾Ç¡C 6.°ê»Ú»{ÃÒ¦X®æ±Ð«Ç¡G³q¹L­ì¼tÄY®æ¼f®Ö³W®æ¡A¨C¥x¹q¸£ ³]³Æ§¡¶W¹LALEC­q©w¤§¼Ð·Ç¡C ¡m°ê»Ú±M·~ÃÒ·Ó¡n µ²·~¾Ç­û§¹¦¨¥þ´Á°V½m½Òµ{¡A¸g¼f®Ö´úÅ禨ÁZ¦X®æªÌ¡A¥ý¥Ñ ¬ü°êCaldera¤½¥q»P¥xÆWALECÁp¦X±Â»P­ì¼t±ÂÅv»{ÃÒÃҮѡC ¨Ã»²¾É¦Ò¨úVUE°ê»Ú´ú¦Ò¤¤¤ß¤§ LPI LEVEL 1 °ê»ÚÃҮѡC ¡m½Ò µ{¡n ¡½ Linux System Adminstration ¨t²ÎºÞ²z(LSA) ¤º ®e¡G 1.¨t²Î¤¶²Ð¡B°ò¥»­ì²z¡B¦w¸Ë¡B¨Ï¥ÎªÌºÞ²z¡K¡C 2.¨t²Îµn¿ý¡BÀɮרt²Î»PºÞ²z¡B°ò¥»«ü¥O¾Þ§@¡K¡C 3.¤å¥ó¦C¦L¡Bºô¸ô¤¸¥ó¡B¨Ï¥ÎªÌºÞ²z¡BGUI°ò¥»¤¸¥ó¡K¡C 4.¤u§@¥­¥x¦w¸Ë¡BXµøµ¡¨t²ÎºÞ²z¡BStreams¡Bpipes¡K¡C ¡½ Linux Network Adminstration ºô¸ôºÞ²z(LNA) ¤º ®e¡G 1.ºô¸ô°ò¥»³q°T¨ó©w(TCP/IP)¡B¨t²Î¬ö¿ý¡B±Ò°ÊºÞ²z¡K¡C 2.¶l¥ó³]©wªA°È¡BÀɮפÀ¨É»P¦w¥þ©Ê¡B»·ºÝµn¿ý¡K¡C 3.ºô¯¸«Ø¸m»PºÞ²z(Apache Server)¡BµêÀÀ¸ô¥Ñ¾¹¡K¡C 4.DHCP¡BDNS¡BFTP ¦øªA¾¹«Ø¸m»PºÞ²z¡K¡C ¡½ Linux Enterprise Adminstration¥ø·~ºÞ²z(LEA) ¤º ®e¡G 1.Linux®Ö¤ß¡B¼Ò²Õ¡Bpatching¡BIP masquerading...¡C 2.TCP/IP¦w¥þ©Ê¡B¨¾¤õÀð¡BVPN ¸Ñ¨M¤è®×(IPSEC)¡K¡C 3.ºô¸ô masquerading¡BProxy Server(squid)¡K¡C 4.®M¥óºÞ²z(RPMs¡BDebs¡BTar)¡BSendmail ±±¨î¡K¡C ¡m¤W½Ò®É¬q¡n ¤é¶¡¯Z¡B¤È¶¡¯Z¡B±ß¤W¯Z¡B°²¤é¯Z¡C ¡¹¡¹«Ü©êºp!!¦p±z¤£·Q­n¦A¦¬¨ì¦¹Ãþ°T®§¡A½Ð¦^«H¦Ü linuxcenter@ms64.url.com.tw¡A±N·|¥ß¨è§R°£±zªº¶l¥ó ¦a§}! Á ÁÂ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10: 9: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from virtual.sysadmin-inc.com (lists.sysadmin-inc.com [209.16.228.140]) by hub.freebsd.org (Postfix) with ESMTP id 9DB2137B4C5 for ; Wed, 22 Nov 2000 10:08:59 -0800 (PST) Received: from wkst ([10.10.1.70]) by virtual.sysadmin-inc.com (8.9.1/8.9.1) with SMTP id NAA07034 for ; Wed, 22 Nov 2000 13:09:37 -0500 Reply-To: From: "Peter Brezny" To: Subject: partitions and a new install Date: Wed, 22 Nov 2000 13:08:43 -0800 Message-ID: <000901c054c8$65409ea0$46010a0a@sysadmininc.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 CWS, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG For a production firewall machine, is it important to create separate partitions (slices) for different labels. For example, is it a good idea to put / /var /usr /home on separate partitions to help keep the possibility of file system corruption from taking out more than one of these areas at a time? TIA Peter Brezny SysAdmin Services Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10:22:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from merganser.its.uu.se (merganser.its.uu.se [130.238.6.236]) by hub.freebsd.org (Postfix) with ESMTP id 7234937B4D7 for ; Wed, 22 Nov 2000 10:22:55 -0800 (PST) Received: from regulus.student.UU.SE ([130.238.5.2]:47862 "HELO ertr1013.student.uu.se") by merganser.its.uu.se with SMTP id ; Wed, 22 Nov 2000 19:22:43 +0100 Received: (qmail 6234 invoked by uid 1001); 22 Nov 2000 18:22:45 -0000 Date: Wed, 22 Nov 2000 19:22:44 +0100 From: Erik Trulsson To: Gary Cc: freebsd-questions@FreeBSD.ORG Subject: Re: alert: the floppies images for rel 4.2 are too large for a 1.44 floppy Message-ID: <20001122192243.A6217@student.uu.se> Mail-Followup-To: Gary , freebsd-questions@FreeBSD.ORG References: <000a01c054ac$7325f770$39f2f9cc@ossc.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000a01c054ac$7325f770$39f2f9cc@ossc.com>; from gary@ossc.ossc.com on Wed, Nov 22, 2000 at 12:48:40PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Nov 22, 2000 at 12:48:40PM -0500, Gary wrote: > hi > > the floppies images for rel 4.2 are too large for a 1.44 floppy. > No, they are not. They are 1024*1440 = 1474560 bytes long which is exactly the size of a 1.44 floppy. -- 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 Wed Nov 22 10:23: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.wmptl.com (mail2.wmptl.com [216.94.6.26]) by hub.freebsd.org (Postfix) with ESMTP id E346837B4F9 for ; Wed, 22 Nov 2000 10:23:03 -0800 (PST) Received: from wmptl.com ([10.0.0.168]) by mail2.wmptl.com (8.9.3/8.9.3) with ESMTP id NAA58115; Wed, 22 Nov 2000 13:09:31 -0500 (EST) (envelope-from webmaster@wmptl.com) Message-ID: <3A1C0EB0.3A6922CD@wmptl.com> Date: Wed, 22 Nov 2000 13:21:36 -0500 From: Nathan Vidican Reply-To: webmaster@wmptl.com X-Mailer: Mozilla 4.72 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: peter@sysadmin-inc.com Cc: questions@freebsd.org Subject: Re: partitions and a new install References: <000901c054c8$65409ea0$46010a0a@sysadmininc.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Peter Brezny wrote: > > For a production firewall machine, is it important to create separate > partitions (slices) for different labels. > > For example, is it a good idea to put > > / > /var > /usr > /home > > on separate partitions to help keep the possibility of file system > corruption from taking out more than one of these areas at a time? > > TIA > > Peter Brezny > SysAdmin Services Inc. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message Personally, on a firewall machine I try to put them all on one partition, < 100Megs total, and mount it read-only; if at all possible, make the bios write-protect it as well. Makes for easy/quick backup, and by write-protecting it assures better security. -- Nathan Vidican webmaster@wmptl.com Windsor Match Plate & Tool Ltd. http://www.wmptl.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10:26:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from southpark.corp.pocket.com (gateway1.pocketscience.com [209.24.64.3]) by hub.freebsd.org (Postfix) with SMTP id C9CB837B479 for ; Wed, 22 Nov 2000 10:26:40 -0800 (PST) Received: (qmail 13994 invoked by uid 1000); 22 Nov 2000 18:26:40 -0000 Date: Wed, 22 Nov 2000 10:26:40 -0800 From: Brian Nelson To: Siegbert Baude Cc: freebsd-questions@freebsd.org Subject: Re: Sound on BS AWE64 Gold... Message-ID: <20001122102640.B1137@southpark.pocketscience.com> References: <20001121111351.A15736@southpark.pocketscience.com> <3A1C0A30.3DE6EC01@gmx.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A1C0A30.3DE6EC01@gmx.de>; from siegbert.baude@gmx.de on Wed, Nov 22, 2000 at 07:02:24PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Nov 22, 2000 at 07:02:24PM +0100, Siegbert Baude wrote: > > My AWE64 plays sound REALLY, REALLY low. I added the pcm and sbc devices to the kernel. > > As nobody else answered. Is there maybe a switch or jumper on the card to change > between line level output and speaker level output? > Also did you check the sound without the splitter? This card was working fine in another machine, so I don't think any jumpers would do the trick. Perhaps the card ate itself, however. Can someone recommend a good card to get that is readily available in a Fry's store? -- Brian Nelson Demonic Minion/Web Developer Pocket.com, Inc http://www.pocket.com/ *Trying to be happy is like trying to build a machine for which the only specification is that it should run noiselessly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10:26:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.enteract.com (mail.enteract.com [207.229.143.33]) by hub.freebsd.org (Postfix) with ESMTP id 0861037B479 for ; Wed, 22 Nov 2000 10:26:50 -0800 (PST) Received: from shell-1.enteract.com (nasby@shell-1.enteract.com [207.229.143.40]) by mail.enteract.com (8.9.3/8.9.3) with ESMTP id MAA54763 for ; Wed, 22 Nov 2000 12:26:49 -0600 (CST) (envelope-from nasby@shell-1.enteract.com) Received: (from nasby@localhost) by shell-1.enteract.com (8.9.3/8.9.3) id MAA89832 for freebsd-questions@FreeBSD.ORG; Wed, 22 Nov 2000 12:26:48 -0600 (CST) (envelope-from nasby) Date: Wed, 22 Nov 2000 12:26:48 -0600 From: "Jim C. Nasby" To: freebsd-questions@FreeBSD.ORG Subject: Re: Root on vinum's RAID-1 Message-ID: <20001122122648.F96346@enteract.com> Reply-To: jim@nasby.net Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <3A1B73EC.92DE90B0@riic.uni-linz.ac.at> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3i In-Reply-To: <3A1B73EC.92DE90B0@riic.uni-linz.ac.at> X-Operating-System: FreeBSD 3.5-STABLE i386 X-Distributed: Join the Effort! http://www.distributed.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Not at this time. It's on the to-do list. You can read more about this on the vinum website. On Wed, Nov 22, 2000 at 08:21:16AM +0100, Gernot Hueber wrote: > Hi, > > I want to setup a vinum RAID-1 system using 2 large IDE drives. Is it > possible to put the root filesystem onto a RAID partition, too, and how > can I make the system boot from both disk in case of damage of one? > > Gernot Hueber > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Jim C. Nasby (aka Decibel!) /^\ jim@nasby.net /___\ Freelance lighting designer and database developer / | \ Member: Triangle Fraternity, Sports Car Club of America /___|___\ Give your computer some brain-candy! www.distributed.net Team #1828 Get paid to surf!! http://www.enteract.com/~nasby/alladvantage.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10:27:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.100.7]) by hub.freebsd.org (Postfix) with ESMTP id 9BAE237B4CF for ; Wed, 22 Nov 2000 10:27:15 -0800 (PST) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.9.3/8.9.3) with ESMTP id NAA233966; Wed, 22 Nov 2000 13:27:09 -0500 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <200011220524.eAM5ODK06685@Gotska.IJP.Si> References: <200011220524.eAM5ODK06685@Gotska.IJP.Si> Date: Wed, 22 Nov 2000 13:27:07 -0500 To: Andy@EffNet.Com, freebsd-questions@FreeBSD.ORG From: Garance A Drosihn Subject: Re: IBM Thinkpad T20 rejects FreeBSD Cc: jonas.bulow@servicefactory.se, tony@ncsa.uiuc.edu, netdev@ncsa.uiuc.edu, charlie@infoworks.net, lebel@lebel.org Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 6:22 AM +0100 11/22/00, Andrej Brodnik (Andy) wrote: >Hi there, > >any progress/solution regarding this problem? My T20 doesn't >boot either if I label a partition as FreeBSD partition (type 165). >When I change the type of partition to 131 it works again >(unfortunatelly without FreeBSD booting). > >I would appreciate a lot your answers. I am afraid that we (here at RPI) haven't really investigated this all that much more. For our purposes, we can dual-boot the original Win98 install and any FreeBSD install, and for most people that is "good enough". We never have figured out how to dual-boot WinNT and FreeBSD, or if there is any way to have a T20 laptop which is only running FreeBSD. The problem is that once people do get their laptops working (with the Win98/FreeBSD dual-boot), then they suddenly lose interest in experimenting with re-installations... :-) I wouldn't mind experimenting, but I don't own one of the T20's and I don't feel much like spending >$2500 to get one... In our case, we used Partition Magic to shrink the original partition (which was a Win98 install). We usually shrink the Win98 partition to be a little less than 8 gig. We then install freebsd in a new partition in the space which has been freed up. I realize that is not much help, but that is about all we have done with it. -- --- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10:34:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from karon.dynas.se (karon.dynas.se [192.71.43.4]) by hub.freebsd.org (Postfix) with SMTP id F10E837B479 for ; Wed, 22 Nov 2000 10:34:55 -0800 (PST) Received: (qmail 87349 invoked from network); 22 Nov 2000 18:34:53 -0000 Received: from spirit.sto.dynas.se (HELO spirit.dynas.se) (172.16.1.10) by karon.sto.dynas.se with SMTP; 22 Nov 2000 18:34:53 -0000 Received: (qmail 16043 invoked from network); 22 Nov 2000 18:35:20 -0000 Received: from explorer.rsa.com (10.81.217.59) by spirit.dynas.se with SMTP; 22 Nov 2000 18:35:20 -0000 Received: (from mikko@localhost) by explorer.rsa.com (8.11.1/8.11.1) id eAMIYkX42014; Wed, 22 Nov 2000 10:34:46 -0800 (PST) (envelope-from mikko) Date: Wed, 22 Nov 2000 10:34:46 -0800 (PST) From: Mikko Tyolajarvi Message-Id: <200011221834.eAMIYkX42014@explorer.rsa.com> To: root@chrisangell.com Cc: freebsd-questions@freebsd.org Subject: Re: Watch utility Newsgroups: local.freebsd-questions References: X-Newsreader: NN version 6.5.6 (NOV) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In local.freebsd-questions you write: >The 'watch' utility won't work on my system. I even added the 'snp' entry >in the custom kernel built for my machine. Do I need to make the device, [...] Yes. Exacly :) # cd /dev; sh MAKEDEV snp0 $.02, /Mikko -- Mikko Työläjärvi_______________________________________mikko@rsasecurity.com RSA Security To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10:35: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.trident-uk.co.uk (mail.trident-uk.co.uk [195.166.16.10]) by hub.freebsd.org (Postfix) with ESMTP id 063E637B479 for ; Wed, 22 Nov 2000 10:35:06 -0800 (PST) Received: from [194.207.93.139] by gate.trident-uk.co.uk for freebsd-questions@freebsd.org id SAA25021; Wed Nov 22 18:35:04 2000 Organization: Psi-Domain Ltd. Subject: setting -l paths in gcc Date: Wed, 22 Nov 2000 18:39:40 +0000 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <00112218403600.12163@freefire.psi-domain.co.uk> Content-Transfer-Encoding: 8bit To: freebsd-questions@freebsd.org From: Jamie Heckford Reply-To: heckfordj@psi-domain.co.uk Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, If i want to make a custom -l in gcc, for example gcc -lmylib, where is the config file i specify this in? Thanks, -- Jamie Heckford Chief Network Engineer Psi-Domain - Innovative Linux Solutions. Ask Us How. =================================== email: heckfordj@psi-domain.co.uk web: http://www.psi-domain.co.uk/ tel: +44 (0)1737 789 246 fax: +44 (0)1737 789 245 mobile: +44 (0)7779 646 529 =================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10:42:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.cafes.net (mail.cafes.net [207.65.182.25]) by hub.freebsd.org (Postfix) with ESMTP id 52ED937B4C5 for ; Wed, 22 Nov 2000 10:42:40 -0800 (PST) Received: from mail.cafes.net (mail.cafes.net [207.65.182.25]) by mail.cafes.net (8.9.3/8.9.3) with ESMTP id MAA01223; Wed, 22 Nov 2000 12:42:09 -0600 Date: Wed, 22 Nov 2000 12:42:09 -0600 (CST) From: Mike Eldridge To: Jamie Heckford Cc: freebsd-questions@FreeBSD.ORG Subject: Re: setting -l paths in gcc In-Reply-To: <00112218403600.12163@freefire.psi-domain.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 22 Nov 2000, Jamie Heckford wrote: > Hi, > > If i want to make a custom -l in gcc, for example gcc -lmylib, where is the > config file i specify this in? Your question doesn't exactly make sense, but from your subject, it appears you are wanting to specify the library path. To specify additional library search paths on the command line, use -L: gcc -L/path/to/libs -o prog prog.c -lmylib Mike ----------------------------------------------------- Save the whales. Feed the hungry. Free the mallocs. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10:48:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from prissy.pristx.com (unknown [216.60.115.33]) by hub.freebsd.org (Postfix) with ESMTP id 1C0CA37B4CF for ; Wed, 22 Nov 2000 10:48:16 -0800 (PST) Received: from pris3 (pris3.pristx.com [216.60.115.51]) by prissy.pristx.com (8.8.8/8.8.8) with SMTP id NAA20309 for ; Wed, 22 Nov 2000 13:04:36 -0600 (CST) (envelope-from jkolb@pristx.com) Received: by localhost with Microsoft MAPI; Wed, 22 Nov 2000 12:48:06 -0600 Message-ID: <01C05482.75EAFCF0.jkolb@pristx.com> From: Justin Kolb To: "'freebsd-questions@freebsd.org'" Subject: 4.2 ISO Not readable by world Date: Wed, 22 Nov 2000 12:48:05 -0600 Organization: Providence Risk & Insurance Services, Inc. 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 X-Loop: FreeBSD.ORG Not sure how to inform the people that could fix this so I'm posting it here in case someone else will know what to do. The new 4.2 ISO image for i386 on ftp.freebsd.org is set to 400 or 500 and cannot be downloaded. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10:53:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bcfw1d.bridge.com (bcfw1d.ext.bridge.com [167.76.159.31]) by hub.freebsd.org (Postfix) with ESMTP id 47E5D37B479 for ; Wed, 22 Nov 2000 10:53:12 -0800 (PST) Received: (from uucp@localhost) by bcfw1d.bridge.com (8.10.2/8.10.2) id eAMIs5A03275 for ; Wed, 22 Nov 2000 12:54:05 -0600 (CST) Received: from unknown(167.76.56.34) by bcfw1d.bridge.com via smap (V5.5) id xma002475; Wed, 22 Nov 00 12:52:55 -0600 Received: from mnmailhost (mnmailhost.bridge.com [167.76.155.14]) by mail1srv.bridge.com (8.8.8/8.7.3) with SMTP id MAA18380 for ; Wed, 22 Nov 2000 12:51:57 -0600 (CST) Received: from 89-7 by mnmailhost (SMI-8.6/SMI-4.1) id NAA07464; Wed, 22 Nov 2000 13:51:50 -0500 To: questions@FreeBSD.ORG Subject: NIC throughput slowness From: Tim Ayers Date: 22 Nov 2000 12:51:48 -0600 Message-ID: Lines: 54 User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have just installed FreeBSD4.1.1 onto a computer with an Intel Pro 10/100B/100+ Ethernet card connected to a 100Mb Ethernet network. I am noticing very slow network throughput (like 0.24 Mbps) for this computer. I'm gauging this by FTP'ing a 1MB file around between different machines on our local network. The computer has two NIC cards, but I've only set up/activated one card. According to 'ifconfig' the card is using 100baseTX. I checked the router/hub and it is using FAST ethernet for this machine's connection. I've noticed that the times returned by 'traceroute' between my various machines seem the same, so maybe the problem is just with FTP. 'traceroute -P TCP' (FTP uses TCP, right?) always times out so I'm not sure. I don't know what other "benchmarks" to try. Here's some info I hope is pertinent. bash-2.04$ dmesg | grep fxp fxp0: port 0xcc80-0xccbf mem 0xfe100000-0xfe1fffff,0xfe201000-0xfe201fff irq 17 at device 13.0 on pci0 fxp0: Ethernet address 00:d0:b7:84:92:0e fxp1: port 0xcc40-0xcc7f mem 0xfe000000-0xfe0fffff,0xfe200000-0xfe200fff irq 18 at device 14.0 on pci0 fxp1: Ethernet address 00:d0:b7:84:93:1f bash-2.04$ ifconfig fxp0: flags=8843 mtu 1500 inet 167.76.89.57 netmask 0xffffff00 broadcast 167.76.89.255 inet6 fe80::2d0:b7ff:fe84:920d%fxp0 prefixlen 64 scopeid 0x1 ether 00:d0:b7:84:92:0d media: autoselect (100baseTX) status: active supported media: autoselect 100baseTX 100baseTX 10baseT/UTP 10baseT/UTP fxp1: flags=8802 mtu 1500 ether 00:d0:b7:84:8b:e4 media: autoselect status: no carrier supported media: autoselect 100baseTX 100baseTX 10baseT/UTP 10baseT/UTP lp0: flags=8810 mtu 1500 ppp0: flags=8010 mtu 1500 faith0: flags=8000 mtu 1500 gif0: flags=8010 mtu 1280 gif1: flags=8010 mtu 1280 gif2: flags=8010 mtu 1280 gif3: flags=8010 mtu 1280 lo0: flags=8049 mtu 16384 inet6 fe80::1%lo0 prefixlen 64 scopeid 0xa inet6 ::1 prefixlen 128 inet 127.0.0.1 netmask 0xff000000 I'm not sure where else to look. Thanks for any help. Hope you have a very nice day, :-) Tim Ayers (tayers@bridge.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10:55:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.trident-uk.co.uk (mail.trident-uk.co.uk [195.166.16.10]) by hub.freebsd.org (Postfix) with ESMTP id 8414B37B4CF for ; Wed, 22 Nov 2000 10:55:49 -0800 (PST) Received: from [194.207.93.139] by gate.trident-uk.co.uk for diz@cafes.net id SAA25697; Wed Nov 22 18:54:26 2000 Organization: Psi-Domain Ltd. Subject: Re: setting -l paths in gcc Date: Wed, 22 Nov 2000 18:57:01 +0000 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain References: In-Reply-To: MIME-Version: 1.0 Message-Id: <00112218595800.00214@freefire.psi-domain.co.uk> Content-Transfer-Encoding: 8bit To: Mike Eldridge From: Jamie Heckford Reply-To: heckfordj@psi-domain.co.uk Cc: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The problem is I am trying to install Imlib2. the configure script checks for -lttf, and when it can't find it complains that libttf is not installed, which I do have installed under /usr/local/lib/libttf.so. when i type gcc -lttf it complains: /usr/libexec/elf/ld: cannot find -lttf How do i set -lttf to point at the /usr/local/lib/libttf.so so the configure script finds it?? Thanks, J On Wed, 22 Nov 2000, you wrote: > On Wed, 22 Nov 2000, Jamie Heckford wrote: > > Hi, > > > > If i want to make a custom -l in gcc, for example gcc -lmylib, where is the > > config file i specify this in? > > Your question doesn't exactly make sense, but from your subject, it > appears you are wanting to specify the library path. > > To specify additional library search paths on the command line, use -L: > gcc -L/path/to/libs -o prog prog.c -lmylib > > Mike > > ----------------------------------------------------- > Save the whales. Feed the hungry. Free the mallocs. -- Jamie Heckford Chief Network Engineer Psi-Domain - Innovative Linux Solutions. Ask Us How. =================================== email: heckfordj@psi-domain.co.uk web: http://www.psi-domain.co.uk/ tel: +44 (0)1737 789 246 fax: +44 (0)1737 789 245 mobile: +44 (0)7779 646 529 =================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 10:58: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lvcablemodem.com (hams4.lvcablemodem.com [24.234.0.78]) by hub.freebsd.org (Postfix) with ESMTP id 2558B37B4C5 for ; Wed, 22 Nov 2000 10:57:59 -0800 (PST) Received: from dhcp196.122.lvcm.com ([24.234.122.196]) by lvcablemodem.com with Microsoft SMTPSVC(5.5.1877.517.51); Wed, 22 Nov 2000 10:59:15 -0800 Date: Wed, 22 Nov 2000 10:58:01 -0800 (PST) From: Chris Angell To: Mikko Tyolajarvi Cc: freebsd-questions@freebsd.org Subject: Re: Watch utility In-Reply-To: <200011221834.eAMIYkX42014@explorer.rsa.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I tried making the device by taking these steps, basically:=20 cd /dev Then I tried: sh MAKEDEV snp sh MAKEDEV local snp sh MAKEDEV /dev/snp And many other commands, to no avail. Could you please show me how to make the device? Thanks so much for all = =20 your assistance! Chris Angell On Wed, 22 Nov 2000, Mikko Tyolajarvi wrote: > In local.freebsd-questions you write: >=20 > >The 'watch' utility won't work on my system. I even added the 'snp' ent= ry > >in the custom kernel built for my machine. Do I need to make the device= , >=20 > [...] >=20 > Yes. Exacly :) >=20 > # cd /dev; sh MAKEDEV snp0 >=20 > $.02, > /Mikko > --=20 > Mikko Ty=F6l=E4j=E4rvi_______________________________________mikko@rsase= curity.com > RSA Security >=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 11: 2:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from karon.dynas.se (karon.dynas.se [192.71.43.4]) by hub.freebsd.org (Postfix) with SMTP id 173C137B479 for ; Wed, 22 Nov 2000 11:02:46 -0800 (PST) Received: (qmail 87662 invoked from network); 22 Nov 2000 19:02:44 -0000 Received: from spirit.sto.dynas.se (HELO spirit.dynas.se) (172.16.1.10) by karon.sto.dynas.se with SMTP; 22 Nov 2000 19:02:44 -0000 Received: (qmail 17981 invoked by uid 1125); 22 Nov 2000 19:03:12 -0000 Date: Wed, 22 Nov 2000 11:02:41 -0800 (PST) From: =?ISO-8859-1?Q?Mikko_Ty=F6l=E4j=E4rvi?= X-Sender: mikko@dynas.se To: Chris Angell Cc: freebsd-questions@freebsd.org Subject: Re: Watch utility In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Reply-To: mikko@dynas.se X-MIME-Autoconverted: to 8bit by snemail 0.35 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 22 Nov 2000, Chris Angell wrote: > I tried making the device by taking these steps, basically: > > cd /dev > > Then I tried: > > sh MAKEDEV snp > > sh MAKEDEV local snp > > sh MAKEDEV /dev/snp > > And many other commands, to no avail. > > Could you please show me how to make the device? Thanks so much for all > your assistance! > [...] Did you try: > On Wed, 22 Nov 2000, Mikko Tyolajarvi wrote: > [...] > > # cd /dev; sh MAKEDEV snp0 ^ Note: number /Mikko Mikko Työläjärvi_______________________________________mikko@rsasecurity.com RSA Security To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 11: 3:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from wormhole.bluestar.net (wormhole.bluestar.net [208.53.1.61]) by hub.freebsd.org (Postfix) with ESMTP id 42ED937B479 for ; Wed, 22 Nov 2000 11:03:47 -0800 (PST) Received: from planetwe.com (admin.planetwe.com [64.182.69.146]) by wormhole.bluestar.net (8.10.1/8.10.1) with ESMTP id eAMJ3WQ07466; Wed, 22 Nov 2000 13:03:33 -0600 (CST) Message-ID: <3A1C1884.7060704@planetwe.com> Date: Wed, 22 Nov 2000 13:03:32 -0600 From: Drew Sanford User-Agent: Mozilla/5.0 (X11; U; Linux 2.2.12 i386; en-GB; m18) Gecko/20001107 Netscape6/6.0 X-Accept-Language: en MIME-Version: 1.0 To: Justin Kolb Cc: "'freebsd-questions@freebsd.org'" Subject: Re: 4.2 ISO Not readable by world References: <01C05482.75EAFCF0.jkolb@pristx.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'd try again. I'm downloading said ISO as I write this. Justin Kolb wrote: > Not sure how to inform the people that could fix this so I'm posting it > here in case someone else will know what to do. The new 4.2 ISO image for > i386 on ftp.freebsd.org is set to 400 or 500 and cannot be downloaded. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Drew Sanford Systems Administrator Planetwe.com Email: drew@planetwe.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 11: 4: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.cafes.net (mail.cafes.net [207.65.182.25]) by hub.freebsd.org (Postfix) with ESMTP id A151737B479 for ; Wed, 22 Nov 2000 11:04:07 -0800 (PST) Received: from mail.cafes.net (mail.cafes.net [207.65.182.25]) by mail.cafes.net (8.9.3/8.9.3) with ESMTP id NAA15058; Wed, 22 Nov 2000 13:03:55 -0600 Date: Wed, 22 Nov 2000 13:03:55 -0600 (CST) From: Mike Eldridge To: Jamie Heckford Cc: freebsd-questions@freebsd.org Subject: Re: setting -l paths in gcc In-Reply-To: <00112218595800.00214@freefire.psi-domain.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 22 Nov 2000, Jamie Heckford wrote: > The problem is I am trying to install Imlib2. > > the configure script checks for -lttf, and when it can't find it complains that > libttf is not installed, which I do have installed under > /usr/local/lib/libttf.so. > > when i type gcc -lttf it complains: > > /usr/libexec/elf/ld: cannot find -lttf > > How do i set -lttf to point at the /usr/local/lib/libttf.so so the configure > script finds it?? Add the path /usr/local/lib to the ldconfig parameter in /etc/rc.conf. Mike ----------------------------------------------------- Save the whales. Feed the hungry. Free the mallocs. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 11:14: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id A92EE37B4C5 for ; Wed, 22 Nov 2000 11:14:05 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAMJE0W19067; Wed, 22 Nov 2000 11:14:00 -0800 (PST) Date: Wed, 22 Nov 2000 11:14:00 -0800 From: Alfred Perlstein To: Jamie Heckford Cc: Mike Eldridge , freebsd-questions@FreeBSD.ORG Subject: Re: setting -l paths in gcc Message-ID: <20001122111400.N18037@fw.wintelcom.net> References: <00112218595800.00214@freefire.psi-domain.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: <00112218595800.00214@freefire.psi-domain.co.uk>; from heckfordj@psi-domain.co.uk on Wed, Nov 22, 2000 at 06:57:01PM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Jamie Heckford [001122 10:56] wrote: > The problem is I am trying to install Imlib2. > > the configure script checks for -lttf, and when it can't find it complains that > libttf is not installed, which I do have installed under > /usr/local/lib/libttf.so. > > when i type gcc -lttf it complains: > > /usr/libexec/elf/ld: cannot find -lttf > > How do i set -lttf to point at the /usr/local/lib/libttf.so so the configure > script finds it?? adding -L/usr/local/lib to the LDFLAGS variable should work. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 11:17:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.trident-uk.co.uk (mail.trident-uk.co.uk [195.166.16.10]) by hub.freebsd.org (Postfix) with ESMTP id A8E0B37B4D7 for ; Wed, 22 Nov 2000 11:17:50 -0800 (PST) Received: from [194.207.93.139] by gate.trident-uk.co.uk for diz@cafes.net id TAA26666; Wed Nov 22 19:17:47 2000 Organization: Psi-Domain Ltd. Subject: Re: setting -l paths in gcc Date: Wed, 22 Nov 2000 19:22:08 +0000 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain References: In-Reply-To: MIME-Version: 1.0 Message-Id: <00112219231900.00215@freefire.psi-domain.co.uk> Content-Transfer-Encoding: 8bit To: Mike Eldridge From: Jamie Heckford Reply-To: heckfordj@psi-domain.co.uk Cc: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG rc.conf already shows this... odd On Wed, 22 Nov 2000, you wrote: > On Wed, 22 Nov 2000, Jamie Heckford wrote: > > The problem is I am trying to install Imlib2. > > > > the configure script checks for -lttf, and when it can't find it complains that > > libttf is not installed, which I do have installed under > > /usr/local/lib/libttf.so. > > > > when i type gcc -lttf it complains: > > > > /usr/libexec/elf/ld: cannot find -lttf > > > > How do i set -lttf to point at the /usr/local/lib/libttf.so so the configure > > script finds it?? > > Add the path /usr/local/lib to the ldconfig parameter in /etc/rc.conf. > > Mike > > ----------------------------------------------------- > Save the whales. Feed the hungry. Free the mallocs. -- Jamie Heckford Chief Network Engineer Psi-Domain - Innovative Linux Solutions. Ask Us How. =================================== email: heckfordj@psi-domain.co.uk web: http://www.psi-domain.co.uk/ tel: +44 (0)1737 789 246 fax: +44 (0)1737 789 245 mobile: +44 (0)7779 646 529 =================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 11:25:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lvcablemodem.com (hams3.lvcablemodem.com [24.234.0.77]) by hub.freebsd.org (Postfix) with ESMTP id 893C737B4D7 for ; Wed, 22 Nov 2000 11:25:35 -0800 (PST) Received: from dhcp196.122.lvcm.com ([24.234.122.196]) by lvcablemodem.com with Microsoft SMTPSVC(5.5.1877.517.51); Wed, 22 Nov 2000 11:26:10 -0800 Date: Wed, 22 Nov 2000 11:25:51 -0800 (PST) From: Chris Angell To: =?ISO-8859-1?Q?Mikko_Ty=F6l=E4j=E4rvi?= Cc: freebsd-questions@freebsd.org Subject: Re: Watch utility In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks so much! It worked perfectly. Chris On Wed, 22 Nov 2000, [ISO-8859-1] Mikko Ty=F6l=E4j=E4rvi wrote: > On Wed, 22 Nov 2000, Chris Angell wrote: >=20 > > I tried making the device by taking these steps, basically:=20 > >=20 > > cd /dev > >=20 > > Then I tried: > >=20 > > sh MAKEDEV snp > >=20 > > sh MAKEDEV local snp > >=20 > > sh MAKEDEV /dev/snp > >=20 > > And many other commands, to no avail. > >=20 > > Could you please show me how to make the device? Thanks so much for al= l =20 > > your assistance! > >=20 > [...] >=20 > Did you try: >=20 > > On Wed, 22 Nov 2000, Mikko Tyolajarvi wrote: > >=20 > [...] > > > # cd /dev; sh MAKEDEV snp0 > =09=09 ^ > =09=09=09 Note: number >=20 > /Mikko >=20 > Mikko Ty=F6l=E4j=E4rvi_______________________________________mikko@rsase= curity.com > RSA Security >=20 >=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 11:37:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f148.law9.hotmail.com [64.4.9.148]) by hub.freebsd.org (Postfix) with ESMTP id 215CD37B4CF for ; Wed, 22 Nov 2000 11:37:35 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 22 Nov 2000 11:37:29 -0800 Received: from 64.182.205.80 by lw9fd.law9.hotmail.msn.com with HTTP; Wed, 22 Nov 2000 19:37:29 GMT X-Originating-IP: [64.182.205.80] Reply-To: illuminated@thepentagon.com From: "Kris Yates" To: questions@freebsd.org Subject: Where is SOCK5? Date: Wed, 22 Nov 2000 13:37:29 -0600 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 22 Nov 2000 19:37:29.0888 (UTC) FILETIME=[A6B52200:01C054BB] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I looked in post-configure packages/net for socks5 and cant seem to find it. On the FreeBSD site, I found socks.tar, which is a tarball of the port. I am trying to install SOCKS5 on a machine that does not have enough space on the HD to install ports. Can I not just download socks5.tar.gz and compile/install it by hand? Where can I find a copy of this? PS - I'm not subscribed so please email responses directly. Thank you.. _____________________________________________________________________________________ Get more from the Web. FREE MSN Explorer download : 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 Nov 22 12: 6:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from abused.com (abused.com [216.86.128.80]) by hub.freebsd.org (Postfix) with ESMTP id 67EA237B4CF for ; Wed, 22 Nov 2000 12:06:25 -0800 (PST) Received: from localhost (gvb@localhost) by abused.com (8.10.1/I feel abused.) with ESMTP id eAMK6O629373 for ; Wed, 22 Nov 2000 12:06:24 -0800 (PST) Date: Wed, 22 Nov 2000 12:06:24 -0800 (PST) From: GVB To: Subject: Adaptec 2100S RAID card Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I read that Adaptec and FreeBSD support the Adaptec 2100S RAID card, but was curious as to what kind of support there was. I know that you used to not be able to boot off of some of the RAID cards, is that the case with this one? Also, is there any software level support for things like utilities to get health info on the RAID, rebuild, warnings when a drive goes down, etc... Thanks! GVB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 12:28:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from screech.weirdnoise.com (209-128-78-198.bayarea.net [209.128.78.198]) by hub.freebsd.org (Postfix) with ESMTP id 469F637B479; Wed, 22 Nov 2000 12:28:21 -0800 (PST) Received: from screech.weirdnoise.com (localhost [127.0.0.1]) by screech.weirdnoise.com (8.9.3/8.9.3) with ESMTP id MAA12121; Wed, 22 Nov 2000 12:34:09 -0800 Message-Id: <200011222034.MAA12121@screech.weirdnoise.com> X-Mailer: exmh version 2.0.3 To: FreeBSD-questions@FreeBSD.ORG, FreeBSD-I18N@FreeBSD.ORG Cc: edhall@weirdnoise.com Subject: Standard wchar_t functions missing Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 22 Nov 2000 12:34:09 -0800 From: Ed Hall Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG We have a senior developer at Yahoo! who is complaining about FreeBSD's lack of support for wchar_t. In particular, the ISO/ANSI and UNIX98 wide character functions are missing. This isn't the first time someone has complained about this -- internationalization is extremely important at Yahoo!, as you might guess. He wants to move his project to Linux for this and other reasons. I don't think this will happen, but I hear the threat more and more, and unlike most occasions there isn't a ready comeback. Now, I've done a bit of digging in the FreeBSD archives, and discovered that Itojun and his group have announced that their support for wchar_t is ready for integration. This was a month ago--has there been any progress in getting this going? Anything I can do to speed the process? -Ed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 12:32: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id B40C337B4D7; Wed, 22 Nov 2000 12:31:56 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAMKVtM21483; Wed, 22 Nov 2000 12:31:55 -0800 (PST) Date: Wed, 22 Nov 2000 12:31:55 -0800 From: Alfred Perlstein To: Ed Hall Cc: FreeBSD-questions@FreeBSD.ORG, FreeBSD-I18N@FreeBSD.ORG Subject: Re: Standard wchar_t functions missing Message-ID: <20001122123155.O18037@fw.wintelcom.net> References: <200011222034.MAA12121@screech.weirdnoise.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200011222034.MAA12121@screech.weirdnoise.com>; from edhall@weirdnoise.com on Wed, Nov 22, 2000 at 12:34:09PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Ed Hall [001122 12:28] wrote: > We have a senior developer at Yahoo! who is complaining about FreeBSD's > lack of support for wchar_t. In particular, the ISO/ANSI and UNIX98 > wide character functions are missing. This isn't the first time someone > has complained about this -- internationalization is extremely important > at Yahoo!, as you might guess. > > He wants to move his project to Linux for this and other reasons. > I don't think this will happen, but I hear the threat more and more, > and unlike most occasions there isn't a ready comeback. > > Now, I've done a bit of digging in the FreeBSD archives, and discovered > that Itojun and his group have announced that their support for wchar_t > is ready for integration. This was a month ago--has there been any > progress in getting this going? Anything I can do to speed the process? Give me a url to the patches? :) The funny thing is that over a year ago I could have sworn I saw people almost completeing this project. I'm going to dig around a bit and see what I can find. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 12:38:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtprch1.nortel.com (smtprch1.nortelnetworks.com [192.135.215.14]) by hub.freebsd.org (Postfix) with ESMTP id 7BBDE37B4CF for ; Wed, 22 Nov 2000 12:38:43 -0800 (PST) Received: from zrchb213.us.nortel.com (actually zrchb213) by smtprch1.nortel.com; Wed, 22 Nov 2000 14:07:25 -0600 Received: by zrchb213.us.nortel.com with Internet Mail Service (5.5.2652.35) id ; Wed, 22 Nov 2000 14:07:22 -0600 Message-ID: From: "Samuel Chow" To: "'questions@freebsd.org'" Subject: Making a custom release Date: Wed, 22 Nov 2000 14:07:21 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2652.35) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C054BF.D29FAB20" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk 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_01C054BF.D29FAB20 Content-Type: text/plain; charset="iso-8859-1" Hi there, Okay, I can make a custom release using make release. Now, how do I specify what I want in my custom relase? Let assume I am trying to make a custom 3-STABLE release that will fit on a 100MB HD. How do I go about doing that? --- Samuel Chow Software Designer Tel: (403) 769-7667 (ESN 758) samchow@nortelnetworks.com This message is displayed using recycled electrons. Segmentation Fault (core dumped) ------_=_NextPart_001_01C054BF.D29FAB20 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Making a custom release

Hi there,

        Okay, I can make a custom release using make = release.
        Now, how do I specify what I want in my custom = relase?
        Let assume I am trying to make a custom 3-STABLE
        release that will fit on a 100MB HD.  How do I go = about
        doing that?

---
Samuel Chow
Software Designer
Tel: (403) 769-7667 (ESN 758)
samchow@nortelnetworks.com

This message is displayed using = recycled electrons.
Segmentation Fault (core = dumped)


------_=_NextPart_001_01C054BF.D29FAB20-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 13:15:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from outmail3.pacificnet.net (outmail3.pacificnet.net [207.171.0.14]) by hub.freebsd.org (Postfix) with ESMTP id 810B937B4CF for ; Wed, 22 Nov 2000 13:15:18 -0800 (PST) Received: from usr3-20.pacificnet.net (usr3-20.pacificnet.net [207.171.38.149]) by outmail3.pacificnet.net (8.9.3/8.9.3) with ESMTP id NAA27718 for ; Wed, 22 Nov 2000 13:14:28 -0800 (PST) Date: Wed, 22 Nov 2000 13:15:09 -0800 (PST) From: Stephen Krauth X-Sender: stephenk@azazel.inside.killermartian.com To: freebsd-questions@freebsd.org Subject: Problems with LinkSys 10/100 nic && FBSD 4.1? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I can't remember the model name/number of the card I have but the dmesg info is below. This card is on my gateway machine, on the internal side of a NAT network and ever since I bought it to replace an old ISA 10bT card, I've had troubles. The NAT clients inside my network sometimes cannot see the gateway until I log onto the console of the gateway and ping the client. Ever seen this? Should I toss this card and buy another brand? dmesg: dc0: port 0x6500-0x65ff mem 0xe1004000-0xe10043ff irq 10 at device 18.0 on pci0 uname: FreeBSD azazel.inside.killermartian.com 4.1-RELEASE FreeBSD 4.1-RELEASE #5: Mon Oct 9 10:46:11 PDT 2000 stephenk@beelzebub.inside.killermartian.com:/usr/src/sys/compile/AZAZEL i386 Steve K. U.F.O. - "For the feeler gauge in you." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 13:27:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web4305.mail.yahoo.com (web4305.mail.yahoo.com [216.115.104.197]) by hub.freebsd.org (Postfix) with SMTP id 1F10F37B4C5 for ; Wed, 22 Nov 2000 13:27:10 -0800 (PST) Message-ID: <20001122212709.21114.qmail@web4305.mail.yahoo.com> Received: from [63.10.187.108] by web4305.mail.yahoo.com; Wed, 22 Nov 2000 13:27:09 PST Date: Wed, 22 Nov 2000 13:27:09 -0800 (PST) From: Ian Thomas To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have been trying to get an Ensoniq 1371 chip PCI card working on my FreeBSD version 3.2 I have turned off pnp os enabled in the BIOS, added pcm0 with pci substituted for isa value as stated in the LINT file. My dmesg gives me no pcm device on bootup. When I do make I get this, ../../pci/es1370.c:150: warning: initialization from incompatible pointer type, but, make finishes with no errors. I did get the patch for the 1371 chip from ftp.thebarn, but I am not able to install it. What commands would I use. I have tried sh and then the file name, and patch and then the file name. Neither has worked. Patch command just sits there, and sh gives me some RCS errors along with cannot find es1371.patch, even though the file is right there. Any help would be greatly appreciated. Everything else on this system works great. Ian __________________________________________________ Do You Yahoo!? Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.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 Nov 22 13:31: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp5.libero.it (smtp5.libero.it [193.70.192.55]) by hub.freebsd.org (Postfix) with ESMTP id A7AF537B479 for ; Wed, 22 Nov 2000 13:30:59 -0800 (PST) Received: from libero.it (193.70.192.63) by smtp5.libero.it; 22 Nov 2000 22:30:57 +0100 Date: Wed, 22 Nov 2000 22:30:37 +0100 Message-Id: Subject: cdrom supported ? MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable From: "paolo.minazzi@libero.it" To: questions@FreeBSD.org X-XaM3-API-Version: 1.1.9.1.27 X-SenderIP: 151.29.239.60 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello ! I have a question. I have a CDROM 2X linked to secondary slave IDE (on the secondary master IDE there is a hard-drive) named "CD220E" of Creative that works with WIN & LINUX but it doesn't work with FREEBSD. During the boot isn't recognized. What is the problem ? Can I use it ? Thanks a lot Paolo Minazzi my e-mail: paolo.minazzi@libero.it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 13:37: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.hoya.com.tw (mail.hoya.com.tw [210.63.27.23]) by hub.freebsd.org (Postfix) with ESMTP id E527A37B4C5 for ; Wed, 22 Nov 2000 13:36:57 -0800 (PST) Received: from mailserver (p57.ts.kh.hitron.net [210.63.197.57] (may be forged)) by mail.hoya.com.tw (8.9.3/8.8.7) with ESMTP id FAA25071; Thu, 23 Nov 2000 05:37:55 +0800 Message-Id: <200011222137.FAA25071@mail.hoya.com.tw> From: "¾åÁ¨" <157065267@ms64.url.com.tw> Reply-To: cmcass@richdlifeus.com.tw Subject: µ¹±zªº«H To: 157065267@ms64.url.com.tw X-Mailer: DiffondiCool V3,1,6,0 (W95/NT) (Build: Oct 18 1999) Mime-Version: 1.0 Date: Wed, 22 Nov 2000 23:46:50 +0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ·s¼W170¾l®M!!½u¤W¥Ø¿ý,½Ð¬Ý½u¤W·s¤ù°Ï¡@ýyýyúAûAûAúAýyýy http://jessy2000.126.com ýyúAûAûAúAýyýy ýyúAûAûAúAýyýy ¥»´Á±j¤ù¤]«Ü¦h,¤×¨ä----MICROMEDIA FLASH V5.0 ­^¤å§¹¾ã¥¿¦¡ª©ýyúAûAûAúAýyýy ¡]§t¤¤¤å¤Æ¡^¡BADOBE GoLive V5.0 ­^¤å¥úºÐ§¹¾ã¥¿¦¡ª©¡BýyúAûAûAúAýyýy ¤Í¥ß ULEAD MediaStudio PRO V6.0 ¤¤¤å"±M·~"§¹¾ã¥¿¦¡ª© ýyúAûAûAúAýyýy ¡BCorel Painter V6.03 ­^¤å§¹¾ã¥¿¦¡ª© ýyúAûAûAúAýyýy ýyúAûAûAúAýyýy http://jessy2000.126.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 13:52:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from implode.root.com (root.com [209.102.106.178]) by hub.freebsd.org (Postfix) with ESMTP id 8970F37B4CF for ; Wed, 22 Nov 2000 13:52:20 -0800 (PST) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.8/8.8.5) with ESMTP id NAA18369; Wed, 22 Nov 2000 13:51:34 -0800 (PST) Message-Id: <200011222151.NAA18369@implode.root.com> To: Tim Ayers Cc: questions@FreeBSD.ORG Subject: Re: NIC throughput slowness In-reply-to: Your message of "22 Nov 2000 12:51:48 CST." From: David Greenman Reply-To: dg@root.com Date: Wed, 22 Nov 2000 13:51:34 -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >I have just installed FreeBSD4.1.1 onto a computer with an Intel Pro >10/100B/100+ Ethernet card connected to a 100Mb Ethernet network. I am >noticing very slow network throughput (like 0.24 Mbps) for this >computer. I'm gauging this by FTP'ing a 1MB file around between >different machines on our local network. > >The computer has two NIC cards, but I've only set up/activated one >card. According to 'ifconfig' the card is using 100baseTX. I checked >the router/hub and it is using FAST ethernet for this machine's >connection. Sounds like a problem with the duplex autonegotiation with your switch. Try setting both ends to forced full-duplex. If that doesn't work, try setting both to half-duplex. -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. >I've noticed that the times returned by 'traceroute' between my >various machines seem the same, so maybe the problem is just with >FTP. 'traceroute -P TCP' (FTP uses TCP, right?) always times out so >I'm not sure. I don't know what other "benchmarks" to try. > >Here's some info I hope is pertinent. > > bash-2.04$ dmesg | grep fxp > fxp0: port 0xcc80-0xccbf mem 0xfe100000-0xfe1fffff,0xfe201000-0xfe201fff irq 17 at device 13.0 on pci0 > fxp0: Ethernet address 00:d0:b7:84:92:0e > fxp1: port 0xcc40-0xcc7f mem 0xfe000000-0xfe0fffff,0xfe200000-0xfe200fff irq 18 at device 14.0 on pci0 > fxp1: Ethernet address 00:d0:b7:84:93:1f > > bash-2.04$ ifconfig > fxp0: flags=8843 mtu 1500 > inet 167.76.89.57 netmask 0xffffff00 broadcast 167.76.89.255 > inet6 fe80::2d0:b7ff:fe84:920d%fxp0 prefixlen 64 scopeid 0x1 > ether 00:d0:b7:84:92:0d > media: autoselect (100baseTX) status: active > supported media: autoselect 100baseTX 100baseTX 10baseT/UTP 10baseT/UTP > fxp1: flags=8802 mtu 1500 > ether 00:d0:b7:84:8b:e4 > media: autoselect status: no carrier > supported media: autoselect 100baseTX 100baseTX 10baseT/UTP 10baseT/UTP > lp0: flags=8810 mtu 1500 > ppp0: flags=8010 mtu 1500 > faith0: flags=8000 mtu 1500 > gif0: flags=8010 mtu 1280 > gif1: flags=8010 mtu 1280 > gif2: flags=8010 mtu 1280 > gif3: flags=8010 mtu 1280 > lo0: flags=8049 mtu 16384 > inet6 fe80::1%lo0 prefixlen 64 scopeid 0xa > inet6 ::1 prefixlen 128 > inet 127.0.0.1 netmask 0xff000000 > > >I'm not sure where else to look. Thanks for any help. > >Hope you have a very nice day, :-) >Tim Ayers (tayers@bridge.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 Nov 22 13:54:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rush.telenordia.se (mail.telenordia.se [194.213.64.42]) by hub.freebsd.org (Postfix) with SMTP id B403537B4D7 for ; Wed, 22 Nov 2000 13:54:20 -0800 (PST) Received: (qmail 17207 invoked from network); 22 Nov 2000 22:54:19 +0100 Received: from bb-62-5-7-17.bb.tninet.se (HELO marbsd.tninet.se) (62.5.7.17) by mail.telenordia.se with SMTP; 22 Nov 2000 22:54:19 +0100 From: Mark Rowlands Reply-To: mark.rowlands@minmail.net Date: Wed, 22 Nov 2000 22:47:38 +0000 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: freebsd-questions@FreeBSD.ORG Subject: buildworld failed due to vi.recover file MIME-Version: 1.0 Message-Id: <00112222473800.09838@marbsd.tninet.se> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG running a buildworld for 4.2 ... failed in /usr/src/share/termcap at ex - /usr/src/share/termcap/termcap.src < /usr/src/share/termcap/reorder this failed because there was a old vi.recover session hanging around. would ex -s (batch mode for scripting) be more appropriate? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 14:15:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from deborah.paradise.net.nz (deborah.paradise.net.nz [203.96.152.32]) by hub.freebsd.org (Postfix) with ESMTP id 751CD37B4CF for ; Wed, 22 Nov 2000 14:15:05 -0800 (PST) Received: from roger (203-79-84-215.ipn11.paradise.net.nz [203.79.84.215]) by deborah.paradise.net.nz (8.10.1/8.10.1) with SMTP id eAMMF1616863 for ; Thu, 23 Nov 2000 11:15:02 +1300 (NZDT) Message-ID: <000201c054e2$a557a320$d7544fcb@roger> From: "Roger" To: Subject: which download Date: Thu, 23 Nov 2000 13:16:29 +1300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C0554F.973E6540" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C0554F.973E6540 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Greetings From New Zealand, I have an ftp but cannot see which file to down load to get the latest = FreeBSD Thank you for your help Roger=20 roghart@paradise.net.nz ------=_NextPart_000_0007_01C0554F.973E6540 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Greetings From New = Zealand,
 
I have an ftp but cannot see which file = to down=20 load to get the latest FreeBSD
 
Thank you for your = help
 
Roger
roghart@paradise.net.nz
------=_NextPart_000_0007_01C0554F.973E6540-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 14:19:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hadar.cwie.net (hadar.cwie.net [64.38.204.100]) by hub.freebsd.org (Postfix) with ESMTP id 194CF37B479 for ; Wed, 22 Nov 2000 14:19:14 -0800 (PST) Received: from win4nrm9uru4gn (L3-phx-t1-hq-i.cwie.net [64.38.194.18]) by hadar.cwie.net (8.9.3/8.9.3) with SMTP id PAA85574 for ; Wed, 22 Nov 2000 15:19:10 -0700 (MST) Message-ID: <001201c054d2$ec442c50$3300000a@win4nrm9uru4gn> From: "Justin Booth" To: Subject: system monitoring? Date: Wed, 22 Nov 2000 15:24:04 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000F_01C05498.3FA230D0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_000F_01C05498.3FA230D0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello,=20 How can I tell what is wrong with a system? I've managed to weezle = around and figure things here and there, about MaxUsers, FLDSIZ, = MAXFLDSIZ. but is there a definitive way to tell what is wrong with a = system?=20 -Justin Booth ------=_NextPart_000_000F_01C05498.3FA230D0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hello,
    How can I tell what = is wrong=20 with a system?  I've managed to weezle around and figure things = here and=20 there, about MaxUsers, FLDSIZ, MAXFLDSIZ. but is there a definitive way = to tell=20 what is wrong with a system?
 
    -Justin = Booth
 
 
------=_NextPart_000_000F_01C05498.3FA230D0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 14:31:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sigbus.com (sigbus.com [207.211.10.110]) by hub.freebsd.org (Postfix) with ESMTP id 6FCDA37B4C5 for ; Wed, 22 Nov 2000 14:31:21 -0800 (PST) Received: (from henrich@localhost) by sigbus.com (8.9.3/8.9.3) id OAA42213 for questions@freebsd.org; Wed, 22 Nov 2000 14:31:21 -0800 (PST) (envelope-from henrich) Date: Wed, 22 Nov 2000 14:31:21 -0800 From: Charles Henrich To: questions@freebsd.org Subject: NFS mounts in /etc/fstab fail to mount at boot Message-ID: <20001122143120.D41942@sigbus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i X-Operating-System: FreeBSD 3.3-RELEASE X-PGP-Fingerprint: 1024/F7 FD C7 3A F5 6A 23 BF 76 C4 B8 C9 6E 41 A4 4F Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've run into this once before and it has me baffled. When I boot my machine the nfs mounts in /etc/fstab: # Device Mountpoint FStype Options Dump Pass# /dev/da0s1b none swap sw 0 0 /dev/da0s1a / ufs rw 1 1 /dev/da0s1e /tmp ufs rw 2 2 /dev/acd0c /cdrom cd9660 ro,noauto 0 0 proc /proc procfs rw 0 0 netapp1-e5:/home /MFX nfs rw,bg,soft,-3 0 0 netapp1-e6:/vol/slash/home /home nfs rw,bg,soft,-3 0 0 fail to mount automatically. The output of mount -d -a -t nfs when run by /etc/rc is empty. However if I log into the machine and do the mount -d -a -t nfs command it shows the correct thing, i.e.: exec: mount_nfs -o bg -o soft -3 netapp1-e5:/home /MFX exec: mount_nfs -o bg -o soft -3 netapp1-e6:/vol/slash/home /home At the same time some of the scripts in /usr/local/etc/rc.d do not run at boot time (specifially the samba.sh script that is installed by the port). I can run it by hand it works properly, but it just doesnt trigger at boot. Does anyone have any ideas here? Thanks much! -Crh Charles Henrich Manex Visual Effects henrich@sigbus.com http://www.sigbus.com/~henrich To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 14:44:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from molly.straylight.com (molly.straylight.com [209.68.199.242]) by hub.freebsd.org (Postfix) with ESMTP id B7E2137B65E for ; Wed, 22 Nov 2000 14:44:23 -0800 (PST) Received: from dickie (case.straylight.com [209.68.199.244] (may be forged)) by molly.straylight.com (8.11.0/8.10.0) with SMTP id eAMMiIT22614 for ; Wed, 22 Nov 2000 14:44:18 -0800 From: "Jonathan Graehl" To: Subject: support for ES1731 chipset in Creative CT4810 AudioPCI? Date: Wed, 22 Nov 2000 14:48:37 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG device pcm in -STABLE kernel config dmesg: pci0: (vendor=0x1274, dev=0x5880) at 9.0 irq 11 According to creative tech support (which seems quite knowledgable), the card I have (model CT4810) is indeed an AudioPCI, although the driver disk I received with it was "Sound Blaster PCI 16". The card is identified as "Creative Labs AudioPCI" in Windows ME, for what it's worth ;) Is my card supported in -STABLE or -CURRENT? How can I get more detail about the attempted detection, if any, of my card by the ES1371 driver probe? I have searched mailing list archives, and, so far as I can tell, with device pcm in 4.x on, PCI ES1370/1371 cards should be detected on boot without any hints or other intervention. Thanks, Jon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 14:49:22 2000 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 A0C0137B4CF for ; Wed, 22 Nov 2000 14:49:18 -0800 (PST) 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 AAA11740; Thu, 23 Nov 2000 00:51:06 +0100 Message-ID: <3A1C4D01.9070202@i-clue.de> Date: Wed, 22 Nov 2000 23:47:29 +0100 From: Christoph Sold User-Agent: Mozilla/5.0 (Windows; U; WinNT4.0; en-US; m18) Gecko/20001108 Netscape6/6.0 X-Accept-Language: de, en MIME-Version: 1.0 To: Kurtis Smith Cc: questions@FreeBSD.ORG Subject: Re: 5 usable ip's two FreeBSD boxes.. References: <5.0.2.1.0.20001122095541.00a91df0@pop.mail.yahoo.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Kurtis Smith wrote: > Ok here is my delima... I have working now webserver, ftp, mailserver, > and DNS setup on one box. Now this box is a Dual Homed Host with 2 > nics in it also providing DHCP for the LAN. I have NAT Running on xl0 > which is connected to my ADSL with Pacbell. This provides me with 5 > usable ip's however I am only using one of them on xl0 interface. xl1 > is providing DHCP services as well has a Ip of 192.168.1.3. Now my > second BSD box I would like to have as a backup DNS as well as backup > for the rest of the services. Its ip is on the LAN 192.168.1.2. My > question is how to make it so it too can be seen as one of my Usable > IP's so I can use this box for say maybe other domains and mail > services. Like a super Mini ISP for friends family whatever. Main > concern is Slave DNS for it. > > Can someone give me some insight.. I am Running Apache, Cucipop, ISC > DHCP 3, Bind 8 etc Install a second NIC in the new box. give one of your five official IPs to it. Should be nice enough as fallback if your first box goes down. You may host some other services there, too. Spreads the load between both boxes. Setup DNS on the second box as caching server only, feeding off both your primary box and your upstream provider. This way, DNS for in-house services will be available when your primary goes down. If you prefer to slave it's bind to your primary name server, just add the necessary lines to your named.boot. 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 Nov 22 14:50:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donkeykong.gpcc.itd.umich.edu (donkeykong.gpcc.itd.umich.edu [141.211.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 77B8F37B479 for ; Wed, 22 Nov 2000 14:50:28 -0800 (PST) Received: from gorf.gpcc.itd.umich.edu (smtp@gorf.gpcc.itd.umich.edu [141.211.2.147]) by donkeykong.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id RAA21697; Wed, 22 Nov 2000 17:50:27 -0500 (EST) Received: from localhost (timcm@localhost) by gorf.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id RAA19814; Wed, 22 Nov 2000 17:50:26 -0500 (EST) Date: Wed, 22 Nov 2000 17:50:26 -0500 (EST) From: Tim McMillen X-Sender: timcm@gorf.gpcc.itd.umich.edu To: Nathan Vidican Cc: peter@sysadmin-inc.com, questions@FreeBSD.ORG Subject: Re: partitions and a new install In-Reply-To: <3A1C0EB0.3A6922CD@wmptl.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 22 Nov 2000, Nathan Vidican wrote: > Peter Brezny wrote: > > For a production firewall machine, is it important to create separate > > partitions (slices) for different labels. > > For example, is it a good idea to put > > > > / > > /var > > /usr > > /home > > > > on separate partitions to help keep the possibility of file system > > corruption from taking out more than one of these areas at a time? Yes, I really think so. That way if one of them gets hosed you're still able to get somewhere. > Personally, on a firewall machine I try to put them all on one then where do you send your logs? > partition, < 100Megs total, and mount it read-only; if at all possible, > make the bios write-protect it as well. Makes for easy/quick backup, and > by write-protecting it assures better security. Yes good point. RO is good. The easy quick backup for multiple partitions could still be accomplished with a shell script. But how many backups do you need to take fro a firewall? It shouldn't change much, so once you get a few backups, you're fine. Didn't I see something about an append only filesystem for logs? Where even root cannot delete from it? Is that possible on FreeBSD? Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 14:56: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id 266C937B4C5 for ; Wed, 22 Nov 2000 14:55:58 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAMMtRN05334; Thu, 23 Nov 2000 09:55:27 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Thu, 23 Nov 2000 09:55:26 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="us-ascii" Cc: Mike Eldridge , freebsd-questions@FreeBSD.ORG To: Alfred Perlstein , Jamie Heckford References: <00112218595800.00214@freefire.psi-domain.co.uk> <20001122111400.N18037@fw.wintelcom.net> In-Reply-To: <20001122111400.N18037@fw.wintelcom.net> Subject: Re: setting -l paths in gcc MIME-Version: 1.0 Message-Id: <00112309552601.05065@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thursday 23 November 2000 06:14, Alfred Perlstein wrote: > * Jamie Heckford [001122 10:56] wrote: > > The problem is I am trying to install Imlib2. > > > > the configure script checks for -lttf, and when it can't find it complains that > > libttf is not installed, which I do have installed under > > /usr/local/lib/libttf.so. > > > > when i type gcc -lttf it complains: > > > > /usr/libexec/elf/ld: cannot find -lttf > > > > How do i set -lttf to point at the /usr/local/lib/libttf.so so the configure > > script finds it?? > > adding -L/usr/local/lib to the LDFLAGS variable should work. > Won't that look for /usr/local/lib/libttf.a ? Is there some confusion about static and dynamic loading here? Or am I confused? Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 14:58:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id BE40137B4C5 for ; Wed, 22 Nov 2000 14:58:48 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAMMwcN05357; Thu, 23 Nov 2000 09:58:39 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Thu, 23 Nov 2000 09:58:38 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="US-ASCII" To: GVB , References: In-Reply-To: Subject: Re: Adaptec 2100S RAID card MIME-Version: 1.0 Message-Id: <00112309583802.05065@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thursday 23 November 2000 07:06, GVB wrote: > I read that Adaptec and FreeBSD support the Adaptec 2100S RAID card, but was > curious as to what kind of support there was. I know that you used to not > be able to boot off of some of the RAID cards, is that the case with this > one? > > Also, is there any software level support for things like utilities to get > health info on the RAID, rebuild, warnings when a drive goes down, etc... > Yor answer is in the archives. This question seems to get asked more than oce a week. I personally have answered it twice. Did you bother to look? Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 15:24:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 6291137B479 for ; Wed, 22 Nov 2000 15:24:33 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAMNOIj26442; Wed, 22 Nov 2000 15:24:18 -0800 (PST) Date: Wed, 22 Nov 2000 15:24:18 -0800 From: Alfred Perlstein To: Zero Sum Cc: Jamie Heckford , Mike Eldridge , freebsd-questions@FreeBSD.ORG Subject: Re: setting -l paths in gcc Message-ID: <20001122152418.T18037@fw.wintelcom.net> References: <00112218595800.00214@freefire.psi-domain.co.uk> <20001122111400.N18037@fw.wintelcom.net> <00112309552601.05065@shalimar.net.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <00112309552601.05065@shalimar.net.au>; from count@shalimar.net.au on Thu, Nov 23, 2000 at 09:55:26AM +1100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Zero Sum [001122 14:55] wrote: > On Thursday 23 November 2000 06:14, Alfred Perlstein wrote: > > * Jamie Heckford [001122 10:56] wrote: > > > The problem is I am trying to install Imlib2. > > > > > > the configure script checks for -lttf, and when it can't find it > complains that > > > libttf is not installed, which I do have installed under > > > /usr/local/lib/libttf.so. > > > > > > when i type gcc -lttf it complains: > > > > > > /usr/libexec/elf/ld: cannot find -lttf > > > > > > How do i set -lttf to point at the /usr/local/lib/libttf.so so the > configure > > > script finds it?? > > > > adding -L/usr/local/lib to the LDFLAGS variable should work. > > > Won't that look for /usr/local/lib/libttf.a ? > > Is there some confusion about static and dynamic loading here? > Or am I confused? afaik you're confused. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 15:34:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from falcon.sourcee.com (falcon.sourcee.com [12.11.130.185]) by hub.freebsd.org (Postfix) with ESMTP id D355A37B4CF for ; Wed, 22 Nov 2000 15:34:10 -0800 (PST) Received: from fremont.sourcee.com (56-135.sourcee.com [12.7.135.56] (may be forged)) by falcon.sourcee.com (8.9.3/8.9.3) with ESMTP id SAA09344 for ; Wed, 22 Nov 2000 18:34:09 -0500 (EST) Message-ID: <3A1C5853.7013B772@fremont.sourcee.com> Date: Wed, 22 Nov 2000 15:35:47 -0800 From: Chimon Yeung X-Mailer: Mozilla 4.75 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: UNIX Subject: Samba Error Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, When I tried to map a network drive in Windows95 through Samba in UNIX, I got an error message: "Nov 22 15:29:02 moa inetd[124]: /usr/local/samba/bin/nmbd[1154]: exit status 0x100 .... .... Nov 22 15:29:02 moa inetd[124]: netbios-ns/upd server failing (looping), service terminated." Please advice. -- Thanks, Chimon Yeung To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 16:33:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from portnoy.lbl.gov (portnoy.lbl.gov [131.243.2.11]) by hub.freebsd.org (Postfix) with ESMTP id CC7A037B4C5 for ; Wed, 22 Nov 2000 16:33:31 -0800 (PST) Received: (from jin@localhost) by portnoy.lbl.gov (8.11.1/8.11.1) id eAN0XVS05214 for questions@freebsd.org; Wed, 22 Nov 2000 16:33:31 -0800 (PST) Date: Wed, 22 Nov 2000 16:33:31 -0800 (PST) From: Jin Guojun (DSD staff) Message-Id: <200011230033.eAN0XVS05214@portnoy.lbl.gov> To: questions@freebsd.org Subject: mkfile Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Does FreeBSD have some utility that is quivalent to mkfile under Solaris? TIA, -Jin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 16:34: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from glitch.crosswinds.net (glitch.crosswinds.net [209.208.163.35]) by hub.freebsd.org (Postfix) with ESMTP id D54E937B4C5 for ; Wed, 22 Nov 2000 16:34:07 -0800 (PST) Received: from lexx.my.domain ([195.110.170.114]) by glitch.crosswinds.net (8.9.3/8.9.3) with ESMTP id TAA90570; Wed, 22 Nov 2000 19:34:02 -0500 (EST) (envelope-from john253@crosswinds.net) From: John Murphy To: Cc: questions@freebsd.org Subject: Re: AC'97 audio with FreeBSD 4.1.1 Date: Thu, 23 Nov 2000 00:35:00 +0000 Organization: The Organisation Reply-To: john253@crosswinds.net Message-ID: References: <200011210726.AA164430846@wdc.callgtn.com> In-Reply-To: <200011210726.AA164430846@wdc.callgtn.com> 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 X-Loop: FreeBSD.ORG Erik Rothwell wrote: >Hey folks, > >Have any of you successfully used AC'97 onboard audio with FreeBSD?=20 Not yet but it looks as though there's support for it in 4.2 and I'm looking forward to trying it soon. Perhaps we have similar boards. Mine is a K7T Pro (MS-6330) also with a Duron 700. It's sound chip is VIA Technologies VT82C686A. John. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 16:41:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pc759.cs.msu.su (pc759.cs.msu.su [158.250.10.223]) by hub.freebsd.org (Postfix) with ESMTP id 6D5B237B4C5 for ; Wed, 22 Nov 2000 16:40:52 -0800 (PST) Received: from pc759.cs.msu.su (uucp@localhost) by pc759.cs.msu.su (8.9.3/8.9.3) with UUCP id DAA23510; Thu, 23 Nov 2000 03:47:11 +0300 (MSK) (envelope-from der@pc759.cs.msu.su) Received: from pc759.cs.msu.su (megagame.my.home [10.0.1.5]) by gateway.my.home (8.8.8/8.8.8) with ESMTP id UAA03044; Wed, 22 Nov 2000 20:58:50 +0300 (MSK) (envelope-from der@pc759.cs.msu.su) Message-ID: <3A1C34FC.29937BD2@pc759.cs.msu.su> Date: Wed, 22 Nov 2000 21:05:00 +0000 From: Alexander Derevyanko X-Mailer: Mozilla 4.72 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: "Dan Mahoney, System Admin" Cc: FreeBSD.ORG!questions@pc759.cs.msu.su Subject: Re: PPP questions. References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Dan Mahoney, System Admin" wrote: > > Is there any way to have ppp periodically ping the remote host and drop > and reconnect if the ping fails? I'm on a system where the host will get > "stupid" and although I can still hear modem noise, I can't see any > network activity. User ppp have build-in filters capability. It's very usefull. Just configure it such, that it automatically hangup after 5 minutes unactivity on RECEIVING packets. If you need it to connect forewer run in background ping -i 60 some.good.host > > ALSO: > > Is there some way of tracing what connection attempt is opening the > connection in automatic mode (for example, stupid adware, or windows media > player trying to see if there's a new version available)? And once I > know, is the a way of blocking it? It seems JUST BOOTING win98 will cause > a connection to be open. Best of all, doesn't use natd capability of ppp. Install instead squid and configure acl list such that it blocks some requests (analyse log files to see what requests needs blocking). You also may wish to enable logging on you proxy DNS server (supposing you install one) and find out what names does it need to resolve - most of all, it is the root of the evil. If you install squid, you can safely block ALL connections to you DNS proxy from internal network. > > Thanks for all the fish, > > Dan Mahoney > > -- > > "I love you forever eternally." > > -Connaian Expression > > --------Dan Mahoney-------- > Techie, Sysadmin, WebGeek > Gushi on efnet/undernet IRC > ICQ: 13735144 AIM: LarpGM > Web: http://prime.gushi.org > finger danm@prime.gushi.org > for pgp public key and tel# > --------------------------- > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 22 16:41:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pc759.cs.msu.su (pc759.cs.msu.su [158.250.10.223]) by hub.freebsd.org (Postfix) with ESMTP id 1C60137B4C5 for ; Wed, 22 Nov 2000 16:41:38 -0800 (PST) Received: from pc759.cs.msu.su (uucp@localhost) by pc759.cs.msu.su (8.9.3/8.9.3) with UUCP id DAA23511; Thu, 23 Nov 2000 03:47:55 +0300 (MSK) (envelope-from der@pc759.cs.msu.su) Received: from pc759.cs.msu.su (megagame.my.home [10.0.1.5]) by gateway.my.home (8.8.8/8.8.8) with ESMTP id UAA03035; Wed, 22 Nov 2000 20:50:15 +0300 (MSK) (envelope-from der@pc759.cs.msu.su) Message-ID: <3A1C32F9.1DBD4F20@pc759.cs.msu.su> Date: Wed, 22 Nov 2000 20:56:25 +0000 From: Alexander Derevyanko X-Mailer: Mozilla 4.72 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: Jim Durham Cc: FreeBSD.ORG!freebsd-questions@pc759.cs.msu.su Subject: Re: Netscape IMAP folders on FreeBSD References: <3A1B6CF6.2BCF298D@w2xo.pgh.pa.us> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Jim Durham wrote: > > I think I'd get nowhere with this talking to the M$ Netscape users, so > I'm posting > this here. > > I have been bugged for some time about the fact that Netscape mail seems > to insist > on saving it's "folders" in my home directory, instead of in my ~/mail > directory, where > pine imap likes them just fine. > > You can make it "subscribe" to the folders in ~/mail, but it creates > non-existant > "ghost" folders which can't be deleted and shows them as if they were a > level > above the ones in ~/mail. Try to expiriment in Edit/Preferences/Mail&Newsgroups/Copies and Folders. > > After much looking through deja and netscape, etc, I can't find any > references to this > problem. > > Anyone here got a solution? I have no, but don't worry - problems can be much worse. M$ Outlook Express (russian edition) creates in home directory files called Inbox, Drafts and Sent written on russian encoded in 64-bit encoding (comething like BBLIMVSDLNZdfSFDIOPFJ, looks absolutely awfull in home directory) and have no opinion to not to do it. If you connect Netscape to the same server & user, it will create own set of Sent and Drafts folders (in english), and can't both open or delete folders created my M$ outlook express. P.S. Anybody know, how to prevent Netscape to connect messenger.netscape.org every startup ? It's very annoying on auto dialup connection. > > Thanks, > > Jim Durham > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 22 16:57:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from horizon.webcentral.com.au (horizon.webcentral.com.au [202.139.235.244]) by hub.freebsd.org (Postfix) with SMTP id 3181A37B4C5 for ; Wed, 22 Nov 2000 16:57:29 -0800 (PST) Received: (qmail 17417 invoked from network); 23 Nov 2000 00:57:25 -0000 Received: from unknown (HELO webcentral.com.au) (202.139.235.56) by horizon.webcentral.com.au with SMTP; 23 Nov 2000 00:57:25 -0000 From: "Allan Dib" Reply-To: allan.dib@tfc.net.au To: freebsd-questions@FreeBSD.ORG Date: Thu, 23 Nov 2000 11:57:25 aest Subject: NTP Problems X-Mailer: DMailWeb Web to Mail Gateway 2.2i, http://netwinsite.com/top_mail.htm Message-id: <3a1c6b75.d5.0@webcentral.com.au> X-User-Info: 203.23.72.7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi everyone, I am running FreeBSD 4.1.1 and followed the advice given on this mailing list regarding NTP. I created /etc/ntp.conf and put in the line: server ntp.mel.nml.CSIRO.AU I also tried the following in the ntp.conf : (taken from the suggestions at http://www.mostgraveconcern.com/freebsd/ntp.html) server time.nist.gov prefer server 127.127.1.0 fudge 127.127.1.0 stratum 10 driftfile /etc/ntp.drift then ran "ntpd -p /var/run/ntpd.pid" The system log first showed the following (which I beleive is normal) Nov 23 18:43:01 www ntpd[318]: ntpd 4.0.99b Mon Sep 25 23:37:27 GMT 2000 (1) Nov 23 18:43:01 www ntpd[318]: using kernel phase-lock loop 2041 But then after a while the following appeared in the system log: Nov 23 18:50:47 www ntpd[318]: time error -28161 over 1000 seconds; set clock manually I have tried several public "primary" NTP servers in Melbourne/Australia and have had no luck thus far. Should I try secondary time servers. Any help would be greatly appreciated.... Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 17: 1: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.qcislands.net (mail.qcislands.net [209.53.238.6]) by hub.freebsd.org (Postfix) with ESMTP id 5E89237B479 for ; Wed, 22 Nov 2000 17:00:57 -0800 (PST) Received: from [209.53.238.7] (helo=auth.qcislands.net) by mail.qcislands.net with esmtp (Exim 3.14 #3) id 13ykkz-0006HJ-00 for freebsd-questions@freebsd.org; Wed, 22 Nov 2000 17:00:57 -0800 Received: from ccstore by auth.qcislands.net with local (Exim 3.13 #3) id 13ykkz-0005TM-00 for freebsd-questions@freebsd.org; Thu, 23 Nov 2000 01:00:57 +0000 From: Jim Pazarena To: freebsd-questions@freebsd.org Subject: downloading iso image X-Mailer: SCO Shell Date: Wed, 22 Nov 2000 16:57:15 -0800 (PST) Message-ID: <10011221657.aa09616@ccstores.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is it possible to do an install with the ISO image _without_ burning a CD? I've got it downloaded on my drive, and have run into difficulties preventing me from cutting a CD. -- Jim Pazarena mailto:paz@ccstores.com http://www.qcislands.net/paz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 17: 9:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail3.aracnet.com (mail3.aracnet.com [216.99.193.38]) by hub.freebsd.org (Postfix) with ESMTP id 3172D37B4CF for ; Wed, 22 Nov 2000 17:09:20 -0800 (PST) Received: from aracnet.com (216-99-218-166.dsl.aracnet.com [216.99.218.166]) by mail3.aracnet.com (8.11.0/8.11.0) with ESMTP id eAN19Cn16106; Wed, 22 Nov 2000 17:09:12 -0800 Message-ID: <3A1C6E34.8C8FED88@aracnet.com> Date: Wed, 22 Nov 2000 17:09:08 -0800 From: dmp@aracnet.com X-Mailer: Mozilla 4.51 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Zero Sum Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Disklabel lost References: <3A1BA94B.D4E268DD@aracnet.com> <00112222304707.00531@shalimar.net.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Zero Sum wrote: > > On Wednesday 22 November 2000 22:08, dmp@aracnet.com wrote: > > I did something really stupid, I tried installing Windows 2000 on the > > same disk as FreeBSD, after I had installed FreeBSD. > Recreating your partions is not impossible. I had my information written > down and used /stand/sysinstall to relabel. Unfortunately I didn't have them written down. Nevertheless, I was able to regain access to my / partition and save the only things of value on the drive (/etc files). Thanks. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 17:10: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from matt.MUNICH.v-net.org (u57n248.hfx.eastlink.ca [24.222.57.248]) by hub.freebsd.org (Postfix) with ESMTP id 1514537B4CF for ; Wed, 22 Nov 2000 17:10:03 -0800 (PST) Received: from unisys (Windozzze [192.168.8.2]) by matt.MUNICH.v-net.org (8.9.3/8.9.3) with SMTP id VAA61803; Wed, 22 Nov 2000 21:09:49 -0400 (AST) (envelope-from matt@researcher.com) From: "Matt Rudderham" To: , Subject: RE: NTP Problems Date: Wed, 22 Nov 2000 21:08:01 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-reply-to: <3a1c6b75.d5.0@webcentral.com.au> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi everyone, I am running FreeBSD 4.1.1 and followed the advice given on this mailing list regarding NTP. I created /etc/ntp.conf and put in the line: server ntp.mel.nml.CSIRO.AU I also tried the following in the ntp.conf : (taken from the suggestions at http://www.mostgraveconcern.com/freebsd/ntp.html) server time.nist.gov prefer server 127.127.1.0 fudge 127.127.1.0 stratum 10 driftfile /etc/ntp.drift then ran "ntpd -p /var/run/ntpd.pid" The system log first showed the following (which I beleive is normal) Nov 23 18:43:01 www ntpd[318]: ntpd 4.0.99b Mon Sep 25 23:37:27 GMT 2000 (1) Nov 23 18:43:01 www ntpd[318]: using kernel phase-lock loop 2041 But then after a while the following appeared in the system log: Nov 23 18:50:47 www ntpd[318]: time error -28161 over 1000 seconds; set clock manually I have tried several public "primary" NTP servers in Melbourne/Australia and have had no luck thus far. Should I try secondary time servers. Any help would be greatly appreciated.... Thanks Do you have your time zone set correctly? It appears "time error -28161 over 1000 seconds" One possible explanation would be an icorrectly set time zone. - Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of 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 Nov 22 17:19:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from giroc.albury.net.au (giroc.albury.NET.AU [203.15.244.13]) by hub.freebsd.org (Postfix) with ESMTP id 36FA237B4C5 for ; Wed, 22 Nov 2000 17:19:44 -0800 (PST) Received: (from nicks@localhost) by giroc.albury.net.au (8.11.1/8.11.1) id eAN1JOU71162; Thu, 23 Nov 2000 12:19:24 +1100 (EST) Date: Thu, 23 Nov 2000 12:19:24 +1100 From: Nick Slager To: Roger Cc: freebsd-questions@FreeBSD.ORG Subject: Re: which download Message-ID: <20001123121924.A69728@albury.net.au> References: <000201c054e2$a557a320$d7544fcb@roger> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000201c054e2$a557a320$d7544fcb@roger>; from roghart@paradise.net.nz on Thu, Nov 23, 2000 at 01:16:29PM +1300 X-Homer: Whoohooooooo! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Roger (roghart@paradise.net.nz): > I have an ftp but cannot see which file to down load to get the latest FreeBSD It depends how you want to install. Look at the Handbook's Install section for details at http://www.freebsd.org/handbook/install.html Nick -- From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 17:38:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.hutchtel.net (ns1.hutchtel.net [206.9.112.100]) by hub.freebsd.org (Postfix) with ESMTP id 260D637B4C5 for ; Wed, 22 Nov 2000 17:38:38 -0800 (PST) Received: from mark8 (hutch-336.hutchtel.net [206.10.68.36]) by ns1.hutchtel.net (8.9.1/8.9.0) with SMTP id TAA29544; Wed, 22 Nov 2000 19:38:16 -0600 (CST) Message-ID: <004601c054ee$8527c6a0$0200000a@vladsempire.net> From: "Josh Paetzel" To: "Justin Booth" , References: <001201c054d2$ec442c50$3300000a@win4nrm9uru4gn> Subject: Re: system monitoring? Date: Wed, 22 Nov 2000 19:41:36 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Justin Booth" To: Sent: Wednesday, November 22, 2000 4:24 PM Subject: system monitoring? Hello, How can I tell what is wrong with a system? I've managed to weezle around and figure things here and there, about MaxUsers, FLDSIZ, MAXFLDSIZ. but is there a definitive way to tell what is wrong with a system? Yes...there is usually a definite way to figure out what is wrong with a system. I am sorry to say that its not the sort of thing that we can just tell you in one simple email. If you are having a specific problem and would like some hejp, send us the details of the problem you are encountering along with your system configuration and we'll give you a hand. If you are just looking for some general FreeBSD help then I can recommend the on-line handbook and FAQ....if you like books, then I can recommend The Complete FreeBSD by Greg Lehey. Josh -Justin Booth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 17:44: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from echunga.lemis.com (freebie.lemis.com [192.109.197.137]) by hub.freebsd.org (Postfix) with ESMTP id 56ADE37B479 for ; Wed, 22 Nov 2000 17:43:57 -0800 (PST) Received: (from grog@localhost) by echunga.lemis.com (8.11.1/8.9.3) id eAN1ZSR91744; Thu, 23 Nov 2000 12:05:28 +1030 (CST) (envelope-from grog) Date: Thu, 23 Nov 2000 12:05:28 +1030 From: Greg Lehey To: cjclark@alum.mit.edu Cc: Ulrich_Gruenebaum , freebsd-questions@FreeBSD.ORG Subject: Re: Vinum setup questions Message-ID: <20001123120528.R83853@echunga.lemis.com> References: <200011101400.PAA15973@luzi.e-technik.uni-dortmund.de> <20001110235734.B75251@149.211.6.64.reflexcom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001110235734.B75251@149.211.6.64.reflexcom.com>; from cjclark@reflexnet.net on Fri, Nov 10, 2000 at 11:57:34PM -0800 Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Friday, 10 November 2000 at 23:57:34 -0800, Crist J . Clark wrote: > On Fri, Nov 10, 2000 at 03:00:47PM +0100, Ulrich_Gruenebaum" wrote: >> - The default location for the vinum logfile >> (vinum(8), section "LOG FILE") seems to be >> /var/log/vinum_history, not /var/tmp/... . The >> logfile should also be mentioned in vinum(8), >> section FILES. > > Oops, Greg, this is confused a bit in my docs too. In "LOG FILE" on > vinum(8), > > LOG FILE > vinum maintains a log file, by default /var/tmp/vinum_history, in which > it keeps track of the commands issued to vinum. You can override the name > of this file by setting the environment variable VINUM_HISTORY to the > name of the file. > > > But then farther down, > > > ENVIRONMENT > > VINUM_HISTORY The name of the log file, by default /var/log/vinum_histo- > ry. Oops. It used to be in /var/tmp, but that was a possible security breach, so we moved it to /var/log, except for the first reference. I've fixed it now. Thanks for the heads up. Greg -- Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 17:48:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cantvc.canterbury.ac.nz (cantvc.canterbury.ac.nz [132.181.30.1]) by hub.freebsd.org (Postfix) with ESMTP id 8B99F37B4D7 for ; Wed, 22 Nov 2000 17:48:41 -0800 (PST) Received: from CONVERSION-DAEMON.it.canterbury.ac.nz by it.canterbury.ac.nz (PMDF V6.0-24 #45723) id <01JWVT7NO3KG8ZJKFC@it.canterbury.ac.nz> for freebsd-questions@FreeBSD.org; Thu, 23 Nov 2000 14:48:34 +1300 (NEW ZEALAND DAYLIGHT TIME) Received: from student.canterbury.ac.nz (rbm49.tacacs.canterbury.ac.nz [172.31.164.87]) by it.canterbury.ac.nz (PMDF V6.0-24 #45723) with ESMTP id <01JWVT7LWQ8M8X23GQ@it.canterbury.ac.nz> for freebsd-questions@FreeBSD.org; Thu, 23 Nov 2000 14:48:33 +1300 (NEW ZEALAND DAYLIGHT TIME) Received: (from rbm49@localhost) by student.canterbury.ac.nz (8.9.3/8.9.3) id OAA43822 for freebsd-questions@FreeBSD.org; Thu, 23 Nov 2000 14:47:14 +1300 (NZDT envelope-from rbm49) Date: Thu, 23 Nov 2000 14:46:45 +1300 From: "Richard B. Mahoney" Subject: Restricting a users CPU usage -- Possible? To: freebsd-questions@FreeBSD.org Reply-To: Richard B Mahoney Mail-followup-to: freebsd-questions@FreeBSD.org Message-id: <20001123144644.B42752@student.canterbury.ac.nz> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.0 Release Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Readers, I know its possible to restrict user disk storage quotas under FreeBSD but what about a user's CPU usage? I've searched for info on this and have come up empty handed. The reason I ask is as follows. This is the system: FreeBSD student.canterbury.ac.nz 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Thu Jul 20 13:20:28 NZST 2000 root@172.31.45.238:/usr/src/sys/compile/MUGGINS i386 It's an elderly Digital Venturis 5133 with 40Meg RAM. This is the problem: I spend most of my time in Emacs writing papers with AucTeX and teTeX. They have lots of footnotes & I am always reformating paragraphs and so on. On occaision, if the formating is particularly tricky, Emacs starts chewing up memory. It can blow out from its usual 8Meg or so to over 30Meg. The trouble is that once it reaches these levels it just stays there and never returns to its original level. The only way to peg it back is to kill it and startup all over again. The other problem is that when its formating it almost completely takes over the processor and other programmes become unresponsive. The other day Emacs kept climbing in this way and exceeded the available swap space. The system promptly stepped in and killed it by itself! I was in many ways delighted. Under any other system and a reboot would have been needed. Nonetheless, what I would like to do is to restrict the amount of CPU that emacs has access to. In this way, if it decides to become a rogue programme I can simply Ctl-Alt-F2 out of Blackbox, then log in as root, and have sufficient CPU available to quickly put a stop to it. Any assistance would be appreciated. Regards, Richard Mahoney -- ====================================================================== Richard Mahoney /^^^\ Telephone: +64-3-351-5831 78 Jeffreys Rd (| , , |) Christchurch | * | NEW ZEALAND \_-_/ mailto:rbm49@csc.canterbury.ac.nz ---------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 17:55: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from backup.af.speednet.com.au (af.speednet.com.au [202.135.188.244]) by hub.freebsd.org (Postfix) with ESMTP id BF29A37B4CF for ; Wed, 22 Nov 2000 17:54:59 -0800 (PST) Received: from backup.af.speednet.com.au (backup.af.speednet.com.au [172.22.2.4]) by backup.af.speednet.com.au (8.11.0/8.11.0) with ESMTP id eAN1skB35566; Thu, 23 Nov 2000 12:54:47 +1100 (EST) (envelope-from andyf@speednet.com.au) Date: Thu, 23 Nov 2000 12:54:46 +1100 (EST) From: Andy Farkas X-Sender: andyf@backup.af.speednet.com.au To: Richard B Mahoney Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Restricting a users CPU usage -- Possible? In-Reply-To: <20001123144644.B42752@student.canterbury.ac.nz> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 23 Nov 2000, Richard B. Mahoney wrote: > Nonetheless, what I would like to do is to restrict the amount of CPU > that emacs has access to. In this way, if it decides to become a rogue > programme I can simply Ctl-Alt-F2 out of Blackbox, then log in as > root, and have sufficient CPU available to quickly put a stop to it. man 1 nice > Any assistance would be appreciated. > > Regards, > > Richard Mahoney > > > -- > ====================================================================== > Richard Mahoney /^^^\ Telephone: +64-3-351-5831 > 78 Jeffreys Rd (| , , |) > Christchurch | * | > NEW ZEALAND \_-_/ mailto:rbm49@csc.canterbury.ac.nz > ---------------------------------------------------------------------- > -- :{ andyf@speednet.com.au Andy Farkas System Administrator Speednet Communications http://www.speednet.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 Nov 22 17:55:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from alamis.holywar.net (unknown [211.232.152.6]) by hub.freebsd.org (Postfix) with ESMTP id A9C0F37B4C5 for ; Wed, 22 Nov 2000 17:55:26 -0800 (PST) Received: from localhost (hollywar@localhost) by alamis.holywar.net (8.11.1/8.11.1) with SMTP id eAN1tHr01886; Thu, 23 Nov 2000 10:55:17 +0900 (KST) (envelope-from hollywar@holywar.net) X-Authentication-Warning: alamis.holywar.net: hollywar owned process doing -bs Date: Thu, 23 Nov 2000 10:55:17 +0900 (KST) From: JunSeon Oh X-Sender: hollywar@alamis.holywar.net To: dbouchard@InfinitecNetworks.com Cc: freebsd-questions@freebsd.org Subject: RE: 3COM 905-TX Can't map ports/memory error Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Turn off plug and play OS in CMOS :) good luck ------------------------------------------------------------- Software Development Team / Manager / JunSeon Oh Email : holywar@holynet.co.kr Internet total solutions - holynet (http://www.holywar.net) ------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 17:56:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from resnetnt.resnet.uconn.edu (resnet.resnet.uconn.edu [137.99.156.20]) by hub.freebsd.org (Postfix) with ESMTP id C130D37B4C5 for ; Wed, 22 Nov 2000 17:56:44 -0800 (PST) Received: by resnetnt.resnet.uconn.edu with Internet Mail Service (5.5.2650.21) id ; Wed, 22 Nov 2000 20:54:34 -0500 Message-ID: <9F36E367710D474E9806AA393FE737FB019ECA@resnetnt.resnet.uconn.edu> From: Peter Lai To: 'Stephen Krauth ' , "'freebsd-questions@freebsd.org '" Subject: RE: Problems with LinkSys 10/100 nic && FBSD 4.1? Date: Wed, 22 Nov 2000 20:54:34 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hmm i have the same NIC (it's an LNE100TX) on a machine and i run 4.1.1-STABLE no problems whatsoever with it. I have the PCI version... yes dc0 is the correct driver...i get pretty much the same info... make sure your existing isa devices aren't conflicting with that irq etc etc. -----Original Message----- From: Stephen Krauth To: freebsd-questions@freebsd.org Sent: 11/22/2000 4:15 PM Subject: Problems with LinkSys 10/100 nic && FBSD 4.1? I can't remember the model name/number of the card I have but the dmesg info is below. This card is on my gateway machine, on the internal side of a NAT network and ever since I bought it to replace an old ISA 10bT card, I've had troubles. The NAT clients inside my network sometimes cannot see the gateway until I log onto the console of the gateway and ping the client. Ever seen this? Should I toss this card and buy another brand? dmesg: dc0: port 0x6500-0x65ff mem 0xe1004000-0xe10043ff irq 10 at device 18.0 on pci0 uname: FreeBSD azazel.inside.killermartian.com 4.1-RELEASE FreeBSD 4.1-RELEASE #5: Mon Oct 9 10:46:11 PDT 2000 stephenk@beelzebub.inside.killermartian.com:/usr/src/sys/compile/AZAZEL i386 Steve K. U.F.O. - "For the feeler gauge in you." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of 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 Nov 22 18: 2:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from femail3.sdc1.sfba.home.com (femail3.sdc1.sfba.home.com [24.0.95.83]) by hub.freebsd.org (Postfix) with ESMTP id 3864837B479 for ; Wed, 22 Nov 2000 18:02:17 -0800 (PST) Received: from cx443070b ([24.0.36.170]) by femail3.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001123020102.CLCI16459.femail3.sdc1.sfba.home.com@cx443070b>; Wed, 22 Nov 2000 18:01:02 -0800 Message-ID: <002701c054f1$b7bd9380$aa240018@cx443070b> From: "Jeremiah Gowdy" To: "Richard B Mahoney" , References: <20001123144644.B42752@student.canterbury.ac.nz> Subject: Re: Restricting a users CPU usage -- Possible? Date: Wed, 22 Nov 2000 18:04:30 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Dear Readers, > > I know its possible to restrict user disk storage quotas under FreeBSD > but what about a user's CPU usage? I've searched for info on this and > have come up empty handed. The reason I ask is as follows. man login.conf You can restrict alot of things Here's the default settings (no limits) so that you can see what's available. default:\ :copyright=/etc/COPYRIGHT:\ :welcome=/etc/motd:\ :setenv=MAIL=/var/mail/$,BLOCKSIZE=K,FTP_PASSIVE_MODE=YES:\ :path=/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin /usr/X11R6/bin ~/bin:\ :nologin=/var/run/nologin:\ :cputime=unlimited:\ :datasize=unlimited:\ :stacksize=unlimited:\ :memorylocked=unlimited:\ :memoryuse=unlimited:\ :filesize=unlimited:\ :coredumpsize=unlimited:\ :openfiles=unlimited:\ :maxproc=unlimited:\ :sbsize=unlimited:\ :priority=0:\ :ignoretime@:\ :umask=022: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 18: 5:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 2026037B479 for ; Wed, 22 Nov 2000 18:05:26 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAN25NT00357; Wed, 22 Nov 2000 18:05:23 -0800 (PST) Date: Wed, 22 Nov 2000 18:05:23 -0800 From: Alfred Perlstein To: Richard B Mahoney Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Restricting a users CPU usage -- Possible? Message-ID: <20001122180523.U18037@fw.wintelcom.net> References: <20001123144644.B42752@student.canterbury.ac.nz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001123144644.B42752@student.canterbury.ac.nz>; from rbm49@student.canterbury.ac.nz on Thu, Nov 23, 2000 at 02:46:45PM +1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Richard B. Mahoney [001122 17:48] wrote: > Dear Readers, > > I know its possible to restrict user disk storage quotas under FreeBSD > but what about a user's CPU usage? I've searched for info on this and > have come up empty handed. The reason I ask is as follows. [snip] Well you can limit RAM usage via the login.conf(5) limiting facility. That ought to keep the programs from getting out of control and swamping the box. > The other day Emacs kept climbing in this way and exceeded the > available swap space. The system promptly stepped in and killed it by > itself! I was in many ways delighted. Under any other system and a > reboot would have been needed. Maybe we ought to switch the policy of out of memory so that the kernel will seek and destroy all emacs processes... :) -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 18: 8:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from monk.via.net (monk.via.net [209.81.2.10]) by hub.freebsd.org (Postfix) with ESMTP id 9E82037B4C5 for ; Wed, 22 Nov 2000 18:08:50 -0800 (PST) Received: (from joe@localhost) by monk.via.net (8.11.0/8.11.0) id eAN29kC21693 for questions@freebsd.org; Wed, 22 Nov 2000 18:09:46 -0800 (PST) (envelope-from joe) From: Joe McGuckin Message-Id: <200011230209.eAN29kC21693@monk.via.net> Date: Wed, 22 Nov 2000 18:09:29 -0800 (PST) To: questions@freebsd.org Subject: newfs problem on 3.3 X-Mailer: Ishmail 1.3.1-970608-bsdi MIME-Version: 1.0 Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG While I was newfs'ing a 45G IDE drive, I received the following error: 88997920, 89063456, 89128992, 89194528, 89260064, 89325600, 89391136, 89456672, 89522208, 89587744, 89653280, 89718816, 89784352, 89849888, 89915424, 89980960, write error: 0 newfs: wtfs: Read-only file system su-2.02# What does it mean? Is there a work-around? Thanks, Joe -- Joe McGuckin ViaNet Communications 994 San Antonio Road Palo Alto, CA 94303 Phone: 650-969-2203 Cell: 650-207-0372 Fax: 650-969-2124 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 18:16:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from wdc.callgtn.com (wdc.callgtn.com [209.47.57.75]) by hub.freebsd.org (Postfix) with ESMTP id DB1E337B4C5 for ; Wed, 22 Nov 2000 18:16:24 -0800 (PST) Received: from callgtn.com [24.114.251.145] by wdc.callgtn.com with ESMTP (SMTPD32-6.04) id ADCF5C6029E; Wed, 22 Nov 2000 21:15:43 -0500 Message-ID: <3871DC14.A61407B8@callgtn.com> Date: Tue, 04 Jan 2000 06:40:04 -0500 From: Bacchus Rex Hydrobromide Reply-To: erothwell@callgtn.com Organization: xxxxx xxxxxxxxxxxxx xxxx X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: john253@crosswinds.net, freebsd-questions@freebsd.org Subject: Re: AC'97 audio with FreeBSD 4.1.1 References: <200011210726.AA164430846@wdc.callgtn.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG John Murphy wrote: > Erik Rothwell wrote: > > >Hey folks, > > > >Have any of you successfully used AC'97 onboard audio with FreeBSD? > > Not yet but it looks as though there's support for it in 4.2 and I'm > looking forward to trying it soon. Perhaps we have similar boards. > Mine is a K7T Pro (MS-6330) also with a Duron 700. > > It's sound chip is VIA Technologies VT82C686A. > > John. What a coincidence, that's the same board I've got ;-) Yeah, I just installed 4.2-RELEASE and I'm about 10 minutes away from compileing in device pcm0, I'll let you know how it goes! Erik. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 18:19:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 4703F37B4CF for ; Wed, 22 Nov 2000 18:19:22 -0800 (PST) Received: (qmail 77592 invoked by uid 100); 23 Nov 2000 02:19:20 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14876.32424.685746.322164@guru.mired.org> Date: Wed, 22 Nov 2000 20:19:20 -0600 (CST) To: Kurtis Smith Cc: questions@freebsd.org Subject: Re: 5 usable ip's two FreeBSD boxes.. In-Reply-To: <71307415@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Kurtis Smith types: > Ok here is my delima... I have working now webserver, ftp, mailserver, and > DNS setup on one box. Now this box is a Dual Homed Host with 2 nics in it > also providing DHCP for the LAN. I have NAT Running on xl0 which is > connected to my ADSL with Pacbell. This provides me with 5 usable ip's > however I am only using one of them on xl0 interface. xl1 is providing > DHCP services as well has a Ip of 192.168.1.3. Now my second BSD box I > would like to have as a backup DNS as well as backup for the rest of the > services. Its ip is on the LAN 192.168.1.2. My question is how to make it > so it too can be seen as one of my Usable IP's so I can use this box for > say maybe other domains and mail services. Like a super Mini ISP for > friends family whatever. Main concern is Slave DNS for it. That's easy - move the second box to the other side of your firewall. This requires another hub, but will do the job. However, I'd recommending splitting the functionality differently. You have three categories of services: intranet - DHCP and anything else that your local LAN uses, but not the outside world; internet - Apache, and things the outside world talks to in general, whether or not your LAN boxes talk to it; and router - nat and possibly similar things. If put all the internet services on the second box, then someone breaking into it won't have access to traffic on your internal network. As a final note, you can probably get this to work with an ipfw rule along the lines: fwd ip from any to but the security implications of putting an external web server inside your firewall are horrendous. ; Wed, 22 Nov 2000 18:36:53 -0800 (PST) Received: (qmail 78020 invoked by uid 100); 23 Nov 2000 02:36:52 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14876.33476.106713.227147@guru.mired.org> Date: Wed, 22 Nov 2000 20:36:52 -0600 (CST) To: thursday@altavista.net Cc: questions@freebsd.org Subject: Re: best upgrade path? In-Reply-To: <60284412@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG thursday@altavista.net types: > Hi, > > I have a FreeBSD 3.3-RELEASE machine which I'm considering upgrading to 4.2-RELEASE. > > I'm wondering what the best upgrade path is: whether to use the "Upgrade" method provided in /stand/sysinstall, or whether to wipe out the hard drive and do a completely fresh install from scratch. Wipe the hard drive (or at least everything fs that install is going to touch) and do a fresh install. The upgrade stuff is relatively painless, but it doesn't safe very much time. > I think I'd like to do whatever would result in the least downtime for the machine (it does virtual hosting for a bunch of my friends' domains) and the least time for me reconfiguring services such as httpd, sendmail samba, natd and my firewall. Hopefully, you know what you changed, and can put it back. Ideally, you've got it all in CVS or something similar (Perforce, anyone?) as well. The only real gotcha will be that sendmail's config files have moved. Maybe it's time to consider postfix or qmail? > My concern about using sysinstall's upgrade utility is that I might run into trouble upgrading exisitng installed packages. Is there an automated tool for upgrading installed ports/packages? "pkg_version -c" provides a script that ties to rebuild everything that's not out of date. However, you want to rebuild everything. You'll need to do that whether you install or upgrade, though. ; Wed, 22 Nov 2000 18:58:23 -0800 (PST) Received: from pop1.pacific.net.sg (pop1.pacific.net.sg [203.120.90.85]) by sunny.pacific.net.sg with ESMTP id eAN2wKv16984; Thu, 23 Nov 2000 10:58:20 +0800 (SGT) Received: from computer1 (spoff140.pacific.net.sg [203.120.95.140]) by pop1.pacific.net.sg with SMTP id KAA15972; Thu, 23 Nov 2000 10:58:18 +0800 (SGT) Message-ID: <00a001c054f9$5806bb80$8c5f78cb@computer1> From: "James Lim" To: "Justin Booth" , References: <001201c054d2$ec442c50$3300000a@win4nrm9uru4gn> Subject: Re: system monitoring? Date: Thu, 23 Nov 2000 10:59:01 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_009D_01C0553C.6382F760" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_009D_01C0553C.6382F760 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi there, You need to tell us to what problems you have. :) Regards, James Lim ----- Original Message -----=20 From: Justin Booth=20 To: freebsd-questions@FreeBSD.ORG=20 Sent: Thursday, November 23, 2000 6:24 AM Subject: system monitoring? Hello,=20 How can I tell what is wrong with a system? I've managed to = weezle around and figure things here and there, about MaxUsers, FLDSIZ, = MAXFLDSIZ. but is there a definitive way to tell what is wrong with a = system?=20 -Justin Booth ------=_NextPart_000_009D_01C0553C.6382F760 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi there,
 
          &nbs= p; You=20 need to tell us to what problems you have. :)
 
Regards,
James Lim
 
----- Original Message -----
From:=20 Justin = Booth=20
To: freebsd-questions@FreeBSD.O= RG=20
Sent: Thursday, November 23, = 2000 6:24=20 AM
Subject: system = monitoring?

Hello,
    How can I tell = what is wrong=20 with a system?  I've managed to weezle around and figure things = here and=20 there, about MaxUsers, FLDSIZ, MAXFLDSIZ. but is there a definitive = way to=20 tell what is wrong with a system?
 
    -Justin = Booth
 
 
------=_NextPart_000_009D_01C0553C.6382F760-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 19: 0:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from public.szptt.net.cn (mail1-smtp.szptt.net.cn [202.96.136.221]) by hub.freebsd.org (Postfix) with SMTP id 46BA937B479 for ; Wed, 22 Nov 2000 19:00:30 -0800 (PST) Received: from virtual([61.141.91.149]) by public.szptt.net.cn(JetMail 2.3.2.6) with SMTP id /m0/aimcque/jmail.rcv/1/jm2a3a1cccb3; Thu, 23 Nov 2000 02:58:32 -0000 Message-ID: <010a01c054f9$50322f70$1425440a@virtual> From: "James Wang" To: Subject: HELP:XFree86 3.3.6 can not start Date: Thu, 23 Nov 2000 10:58:51 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0107_01C0553C.5D4B7980" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0107_01C0553C.5D4B7980 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: base64 SGkgYWxsDQoNCiAgICAgSSBhbSB1c2luZyBmYnNkIHJlbGVhc2VzIDQuMixnbm9tZStzYXdmaXNo LA0Kd2hlbiBpIHN0YXJ0IFgsaXQgcmVwb3J0czoNCg0KICAgIEZhdGFsIFNlcnZlciBlcnJvcjoN CiAgICAgICAgICAgeGY4Nk9wZW5Db25zb2xlOktERU5BQklPIGZhaWxlZChPcGVyYXRpb24gbm90 IHBlcm1pdHRlZCkNCg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgUmVnYXJkcw0KDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgSmFtZXMNCg== ------=_NextPart_000_0107_01C0553C.5D4B7980 Content-Type: text/html; charset="gb2312" Content-Transfer-Encoding: base64 PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMCBUcmFuc2l0aW9uYWwv L0VOIj4NCjxIVE1MPjxIRUFEPg0KPE1FVEEgY29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PWdi MjMxMiIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8TUVUQSBjb250ZW50PSJNU0hUTUwgNS4w MC4yOTIwLjAiIG5hbWU9R0VORVJBVE9SPg0KPFNUWUxFPjwvU1RZTEU+DQo8L0hFQUQ+DQo8Qk9E WSBiZ0NvbG9yPSNmZmZmZmY+DQo8RElWPjxGT05UIGZhY2U9IlRpbWVzIE5ldyBSb21hbiI+SGkm bmJzcDthbGw8L0ZPTlQ+PC9ESVY+DQo8RElWPiZuYnNwOzwvRElWPg0KPERJVj48Rk9OVCBmYWNl PSJUaW1lcyBOZXcgUm9tYW4iPiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwO0kgYW0gdXNp bmcgZmJzZCANCnJlbGVhc2VzIDQuMixnbm9tZStzYXdmaXNoLDwvRk9OVD48L0RJVj4NCjxESVY+ PEZPTlQgZmFjZT0iVGltZXMgTmV3IFJvbWFuIj53aGVuIGkgc3RhcnQgWCxpdCByZXBvcnRzOjwv Rk9OVD48L0RJVj4NCjxESVY+Jm5ic3A7PC9ESVY+DQo8RElWPjxGT05UIGZhY2U9IlRpbWVzIE5l dyBSb21hbiI+Jm5ic3A7Jm5ic3A7Jm5ic3A7IEZhdGFsIFNlcnZlciANCmVycm9yOjwvRk9OVD48 L0RJVj4NCjxESVY+PEZPTlQgDQpmYWNlPSJUaW1lcyBOZXcgUm9tYW4iPiZuYnNwOyZuYnNwOyZu YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyANCnhmODZPcGVu Q29uc29sZTpLREVOQUJJTyBmYWlsZWQoT3BlcmF0aW9uIG5vdCBwZXJtaXR0ZWQpPC9GT05UPjwv RElWPg0KPERJVj4mbmJzcDs8L0RJVj4NCjxESVY+PEZPTlQgDQpmYWNlPSJUaW1lcyBOZXcgUm9t YW4iPiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw OyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw OyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyANClJlZ2FyZHM8L0ZPTlQ+ PC9ESVY+DQo8RElWPiZuYnNwOzwvRElWPg0KPERJVj48Rk9OVCANCmZhY2U9IlRpbWVzIE5ldyBS b21hbiI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7 Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7 Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7IA0KSmFtZXM8L0ZPTlQ+PC9ESVY+PC9CT0RZPjwv SFRNTD4NCg== ------=_NextPart_000_0107_01C0553C.5D4B7980-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 19:11:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hot.net.au (red.hot.net.au [203.58.126.2]) by hub.freebsd.org (Postfix) with ESMTP id DA17337B4C5 for ; Wed, 22 Nov 2000 19:11:41 -0800 (PST) Received: from localhost (steve@localhost) by hot.net.au (8.9.3/8.9.3) with SMTP id OAA61403 for ; Thu, 23 Nov 2000 14:12:36 +1100 (EST) (envelope-from steve@red.hot.net.au) Date: Thu, 23 Nov 2000 14:12:36 +1100 (EST) From: Steve the teco To: freebsd-questions@FreeBSD.ORG Subject: removing escape chr (printer) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi All, I have about 200 files to convert to plain text or better still html. The problem is the text is full of printer codes ^[^[&a8R^[^[&f0S^[^[&a4C^[^[&f0S^[*c2221A^[*c95B^[*c15G^[*c2P^[*c4A^[*c1852B^[*c0P^[*c2221A^[*c4B^[*c0P^[*p+59Y^[*p +200X^[^[(s0p10h0s3b4099TPROJECT COST^[*p+330X^[*p-20Y^[^[(s0p17h0s3b4099T1999^[*p+40Y^[*p-85XActual^[*p-40Y^[*p+70 X2000^[*p+40Y^[*p-89XBudget^[*p-40Y^[^[&f0S Do I need a port or something to clean up this mess. hope someone can help. Thanks for your time. Steve Hutson. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 19:14:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from public.szptt.net.cn (mail1-smtp.szptt.net.cn [202.96.136.221]) by hub.freebsd.org (Postfix) with SMTP id 4966B37B4C5 for ; Wed, 22 Nov 2000 19:14:21 -0800 (PST) Received: from virtual([61.141.91.149]) by public.szptt.net.cn(JetMail 2.3.2.6) with SMTP id /m0/aimcque/jmail.rcv/8/jm43a1ccff3; Thu, 23 Nov 2000 03:12:23 -0000 Message-ID: <011b01c054fb$3fb5d6e0$1425440a@virtual> From: "James Wang" To: Subject: HELP:XFree86 3.3.6 can not start Date: Thu, 23 Nov 2000 11:12:44 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0118_01C0553E.4D6C9970" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0118_01C0553E.4D6C9970 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: base64 DQoNCkhpIGFsbA0KDQogICAgIEkgYW0gdXNpbmcgZmJzZCByZWxlYXNlcyA0LjIsZ25vbWUrc2F3 ZmlzaCwNCndoZW4gaSBzdGFydCBYLGl0IHJlcG9ydHM6DQoNCiAgICBGYXRhbCBTZXJ2ZXIgZXJy b3I6DQogICAgICAgICAgIHhmODZPcGVuQ29uc29sZTpLREVOQUJJTyBmYWlsZWQoT3BlcmF0aW9u IG5vdCBwZXJtaXR0ZWQpDQoNCiAgICBQbGVhc2UgaGVscCBtZSENCg0KICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgUmVnYXJkcw0KDQogICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgSmFtZXMNCg== ------=_NextPart_000_0118_01C0553E.4D6C9970 Content-Type: text/html; charset="gb2312" Content-Transfer-Encoding: base64 PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMCBUcmFuc2l0aW9uYWwv L0VOIj4NCjxIVE1MPjxIRUFEPg0KPE1FVEEgY29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PWdi MjMxMiIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8TUVUQSBjb250ZW50PSJNU0hUTUwgNS4w MC4yOTIwLjAiIG5hbWU9R0VORVJBVE9SPg0KPFNUWUxFPjwvU1RZTEU+DQo8L0hFQUQ+DQo8Qk9E WSBiZ0NvbG9yPSNmZmZmZmY+DQo8RElWPjxCUj48L0RJVj4NCjxESVY+PEZPTlQgZmFjZT0iVGlt ZXMgTmV3IFJvbWFuIj5IaSZuYnNwO2FsbDwvRk9OVD48L0RJVj4NCjxESVY+Jm5ic3A7PC9ESVY+ DQo8RElWPjxGT05UIGZhY2U9IlRpbWVzIE5ldyBSb21hbiI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i c3A7Jm5ic3A7SSBhbSB1c2luZyBmYnNkIA0KcmVsZWFzZXMgNC4yLGdub21lK3Nhd2Zpc2gsPC9G T05UPjwvRElWPg0KPERJVj48Rk9OVCBmYWNlPSJUaW1lcyBOZXcgUm9tYW4iPndoZW4gaSBzdGFy dCBYLGl0IHJlcG9ydHM6PC9GT05UPjwvRElWPg0KPERJVj4mbmJzcDs8L0RJVj4NCjxESVY+PEZP TlQgZmFjZT0iVGltZXMgTmV3IFJvbWFuIj4mbmJzcDsmbmJzcDsmbmJzcDsgRmF0YWwgU2VydmVy IA0KZXJyb3I6PC9GT05UPjwvRElWPg0KPERJVj48Rk9OVCANCmZhY2U9IlRpbWVzIE5ldyBSb21h biI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7 Jm5ic3A7IA0KeGY4Nk9wZW5Db25zb2xlOktERU5BQklPIGZhaWxlZChPcGVyYXRpb24gbm90IHBl cm1pdHRlZCk8L0ZPTlQ+PC9ESVY+DQo8RElWPiZuYnNwOzwvRElWPg0KPERJVj48Rk9OVCBmYWNl PSJUaW1lcyBOZXcgUm9tYW4iPiZuYnNwOyZuYnNwOyZuYnNwOyBQbGVhc2UgaGVscCANCm1lITwv Rk9OVD48L0RJVj4NCjxESVY+Jm5ic3A7PC9ESVY+DQo8RElWPjxGT05UIA0KZmFjZT0iVGltZXMg TmV3IFJvbWFuIj4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJz cDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsm bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJz cDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsm bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsgDQpSZWdhcmRz PC9GT05UPjwvRElWPg0KPERJVj4mbmJzcDs8L0RJVj4NCjxESVY+PEZPTlQgDQpmYWNlPSJUaW1l cyBOZXcgUm9tYW4iPiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw OyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw OyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyANCkphbWVzPC9GT05UPjwvRElWPjwv Qk9EWT48L0hUTUw+DQo= ------=_NextPart_000_0118_01C0553E.4D6C9970-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 19:19: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail7.mgfairfax.rr.com (mail7.southeast.rr.com [24.93.67.54]) by hub.freebsd.org (Postfix) with ESMTP id D1DC437B4C5 for ; Wed, 22 Nov 2000 19:19:00 -0800 (PST) Received: from wdmp ([24.163.96.134]) by mail7.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.537.53); Wed, 22 Nov 2000 22:18:34 -0500 From: "David M. Plummer" To: "'Matt Rudderham'" Cc: Subject: RE: NTP Problems Date: Wed, 22 Nov 2000 22:18:57 -0500 Message-ID: <000801c054fc$1e3e1210$0201a8c0@wdmp> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Nov 23 18:50:47 www ntpd[318]: time error -28161 over 1000 > seconds; set > clock > manually > with "unsubscribe freebsd-questions" in the body of the message Before starting the daemon, run "ntpdate -b ntp.mel.nml.CSIRO.AU". That will force a step adjustment of the clock to get it close to the "real" time. From there, the daemon should work nicely, barring any strange problems. Hope this helps, Dave Plummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 19:57:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from servidor.exsocom.com.mx (servidor.exsocom.com.mx [200.34.46.130]) by hub.freebsd.org (Postfix) with ESMTP id E5B1837B4CF for ; Wed, 22 Nov 2000 19:57:28 -0800 (PST) Received: from Lumac (pppc04.exsocom.com.mx [200.34.46.154]) by servidor.exsocom.com.mx (8.9.3/8.9.3) with SMTP id WAA26436 for ; Wed, 22 Nov 2000 22:03:04 -0600 (CST) Message-ID: <000801c05506$83318800$9a2e22c8@Lumac> From: "Ing. Guillermo R. Martinez Hernandez" To: Subject: help!!!! i forget passwd root and i have ttys close Date: Wed, 22 Nov 2000 22:33:20 -0600 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C054D4.37476680" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C054D4.37476680 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I forget passwd of root, I access my sistem how admin but i can not su = login, my ttys is marked insecure all WHAT I DO ?? thanks=20 Ing. Guillermo R. Martinez gmo@comunica.net.mx ------=_NextPart_000_0005_01C054D4.37476680 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I forget passwd of root, I access my = sistem how=20 admin but i can not su login, my ttys is marked insecure all WHAT I DO=20 ??
 
 
thanks
 
 
Ing. Guillermo R. Martinez
gmo@comunica.net.mx
------=_NextPart_000_0005_01C054D4.37476680-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 20: 0:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sr14.nsw-remote.bigpond.net.au (sr14.nsw-remote.bigpond.net.au [24.192.3.29]) by hub.freebsd.org (Postfix) with ESMTP id A690C37B4C5 for ; Wed, 22 Nov 2000 20:00:53 -0800 (PST) Received: from freebsd.freebsd.org (CPE-203-45-68-28.nsw.bigpond.net.au [203.45.68.28]) by sr14.nsw-remote.bigpond.net.au (Pro-8.9.3/8.9.3) with SMTP id OAA02754; Thu, 23 Nov 2000 14:59:51 +1100 (EDT) From: Danny To: Chimon Yeung , UNIX Subject: Re: Samba Error Date: Fri, 24 Nov 2000 01:57:48 +1100 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain References: <3A1C5853.7013B772@fremont.sourcee.com> MIME-Version: 1.0 Message-Id: <00112401595700.00360@freebsd.freebsd.org> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Using Windows 95 and Samba shouldn't be any problems In order for me to get a better understanding of the situation. Type out the following reply to the questions: What version of FreeBSD are you using? What version of Samba are you using? Do you have a copy of smb.conf Did you install Samba using the ports collection? (if you didn't I strongly recommend you should) Please forward your reply to everyone in the mailings list to get a more effective response. On Thu, 23 Nov 2000, Chimon Yeung wrote: > Hello, > > When I tried to map a network drive in Windows95 through Samba in UNIX, > I got an error message: > > "Nov 22 15:29:02 moa inetd[124]: /usr/local/samba/bin/nmbd[1154]: exit > status 0x100 > .... > ..... > NNov 22 15:29:02 moa inetd[124]: netbios-ns/upd server failing (looping), > service terminated." > > Please advice. > > -- > Thanks, > > Chimon Yeung > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 22 20: 2:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sr14.nsw-remote.bigpond.net.au (sr14.nsw-remote.bigpond.net.au [24.192.3.29]) by hub.freebsd.org (Postfix) with ESMTP id 6E29337B4CF for ; Wed, 22 Nov 2000 20:02:23 -0800 (PST) Received: from freebsd.freebsd.org (CPE-203-45-68-28.nsw.bigpond.net.au [203.45.68.28]) by sr14.nsw-remote.bigpond.net.au (Pro-8.9.3/8.9.3) with SMTP id PAA03059; Thu, 23 Nov 2000 15:02:09 +1100 (EDT) From: Danny To: "Eduardo Kotujansky" , Subject: Re: startup script Date: Fri, 24 Nov 2000 02:01:16 +1100 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain References: <000b01c05473$f2f9c000$0301a8c0@YOSEMITE> MIME-Version: 1.0 Message-Id: <00112402021601.00360@freebsd.freebsd.org> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Try] /usr/local/etc/rc.d If you install postgresql using the ports The startup script is never a issue because install the Postgresql ports will install the script for you automatically On Wed, 22 Nov 2000, Eduardo Kotujansky wrote: > Where is the startup scripts of locally installed packages. > I would like to start my daemaon and postgresql on boot, > > I did not find any file like rc.local > > 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 Wed Nov 22 20: 3:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.knology.net (user-24-214-63-11.knology.net [24.214.63.11]) by hub.freebsd.org (Postfix) with SMTP id 6A70537B479 for ; Wed, 22 Nov 2000 20:03:08 -0800 (PST) Received: (qmail 2377 invoked by uid 1003); 23 Nov 2000 04:00:12 -0000 Received: from user-24-214-88-65.knology.net (HELO jason.carters.net) (24.214.88.65) by user-24-214-63-11.knology.net with SMTP; 23 Nov 2000 04:00:12 -0000 Message-ID: <3A1C96F9.41C67EA6@servex.yi.org> Date: Wed, 22 Nov 2000 22:03:05 -0600 From: servex Organization: servex X-Mailer: Mozilla 3.04Gold (X11; I; FreeBSD 4.0-RELEASE i386) MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: burncd audio cd-to-cd Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello all, Well, ive slowly been figuring things out about my cd-burner, and can burn data cd's, and audio cd's from wav files. One thing i haven't been able to find is how to burn from one cd, directly to another. Is this possible? I am using burncd with FreeBSD 4.0-release. Also, when i burn audio cd's from wav files, i get a popping noise in between tracks, ive read that this could be avoided when copying in DAO (disk at once) mode. But, i don't see anything about this in the burncd man pages, or the mailing lists. Thanks, Jason Carter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 20: 6:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r07.mx.aol.com (imo-r07.mx.aol.com [152.163.225.7]) by hub.freebsd.org (Postfix) with ESMTP id 852C737B4CF for ; Wed, 22 Nov 2000 20:06:26 -0800 (PST) Received: from Catlover1024@aol.com by imo-r07.mx.aol.com (mail_out_v28.33.) id n.4a.de23974 (4234) for ; Wed, 22 Nov 2000 23:06:21 -0500 (EST) From: Catlover1024@aol.com Message-ID: <4a.de23974.274df1bd@aol.com> Date: Wed, 22 Nov 2000 23:06:21 EST Subject: FreeBSD To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Windows AOL sub 181 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I was wondering what copyrights were on FreeBSD and what they were... Why I was asking because I wanted to modify the FreeBSD kernel to support more things and debug the existing stuff... I wanted to create my own distribution... Why I wanted to create my own distribution of FreeBSD was because I felt there was not enough support in the kernel for today's devices. Also it was because I felt there were not enough apps in the official distribution I didn't have to port over. Don't criticize me on any of this I don't like flames just constructive criticism. Also, I wouldn't have to make my own distribution of FreeBSD if I knew how to submit apps and kernel code to be in the official dist. If anyone wants it and it's good I mean. How would I go about that? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 20:21:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from newsf2.texas.rr.com (newsf2.texas.rr.com [24.28.95.154]) by hub.freebsd.org (Postfix) with ESMTP id 8CF6237B4D7 for ; Wed, 22 Nov 2000 20:21:27 -0800 (PST) Received: from satx.rr.com (cs160145-193.satx.rr.com [24.160.145.193]) by newsf2.texas.rr.com (8.10.1/8.10.1) with ESMTP id eAN4LKG02359 for ; Wed, 22 Nov 2000 22:21:20 -0600 (CST) Message-ID: <3A1C9B27.4B541E68@satx.rr.com> Date: Wed, 22 Nov 2000 22:20:55 -0600 From: Jason X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: freaking charlie root Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG howdy, i take full responsibility for being root. how can i redirect the log msgs from appearing in my xterms or console as root? i want them just to show up in xterm -C, and not every other freaking terminal. this has to be possible, and any help would be appreciated. thanks, xbsd rules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 20:32:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hot.net.au (red.hot.net.au [203.58.126.2]) by hub.freebsd.org (Postfix) with ESMTP id 055FF37B4C5 for ; Wed, 22 Nov 2000 20:32:33 -0800 (PST) Received: from localhost (steve@localhost) by hot.net.au (8.9.3/8.9.3) with SMTP id PAA62234; Thu, 23 Nov 2000 15:32:09 +1100 (EST) (envelope-from steve@red.hot.net.au) Date: Thu, 23 Nov 2000 15:32:09 +1100 (EST) From: Steve the teco To: James Wang Cc: freebsd-questions@FreeBSD.ORG Subject: Re: HELP:XFree86 3.3.6 can not start In-Reply-To: <011b01c054fb$3fb5d6e0$1425440a@virtual> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi James Looks like Atrl+Alt+Del will do the trick then at reboot use the -s I think, to bring the server up in single user mode. change the pw and reboot Steve H On Thu, 23 Nov 2000, James Wang wrote: > > > Hi all > > I am using fbsd releases 4.2,gnome+sawfish, > when i start X,it reports: > > Fatal Server error: > xf86OpenConsole:KDENABIO failed(Operation not permitted) > > Please help me! > > Regards > > James > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 21:15:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from debbie.gmx.net (unknown [195.229.53.46]) by hub.freebsd.org (Postfix) with ESMTP id 8F80337B4C5 for ; Wed, 22 Nov 2000 21:15:33 -0800 (PST) Received: (from rino@localhost) by debbie.gmx.net (8.9.3/8.9.3) id JAA16787; Thu, 23 Nov 2000 09:14:55 +0400 (GST) (envelope-from rino) Date: Thu, 23 Nov 2000 09:14:54 +0400 From: Rino Mardo To: Alexey Dementsov Cc: freebsd-questions@freebsd.org Subject: Re: your mail Message-ID: <20001123091454.A16783@gmx.net> References: <000c01c0547e$a26340c0$3201040a@oggi.spb.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <000c01c0547e$a26340c0$3201040a@oggi.spb.ru>; from Alexey.Dementsov@oggi.spb.ru on Wed, Nov 22, 2000 at 03:20:40PM +0300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Nov 22, 2000 at 03:20:40PM +0300 or thereabouts, Alexey Dementsov wrote: > I have problem, please help me. > I installed freebsd 4.1 and packages fetchmail-5.5.5.tgz and gettext-0.10.35.tgz. > When I run fetchmail on the screen I saw the message > "/usr/libexec/ld-elf.so.1: Shared object "libssl.so.1" not found" > What must I do. > goto /usr/ports/mail/fetchmail and reinstall fetchmail from there. are your ports tree updated? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 21:23:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 9224837B4C5 for ; Wed, 22 Nov 2000 21:23:49 -0800 (PST) Received: by static.unixfreak.org (Postfix, from userid 1000) id 44CAD1F31; Wed, 22 Nov 2000 21:23:49 -0800 (PST) Subject: Re: help!!!! i forget passwd root and i have ttys close In-Reply-To: <000801c05506$83318800$9a2e22c8@Lumac> "from Ing. Guillermo R. Martinez Hernandez at Nov 22, 2000 10:33:20 pm" To: "Ing. Guillermo R. Martinez Hernandez" Date: Wed, 22 Nov 2000 21:23:49 -0800 (PST) Cc: freebsd-questions@FreeBSD.ORG From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001123052349.44CAD1F31@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [ Charset ISO-8859-1 unsupported, converting... ] > I forget passwd of root, I access my sistem how admin but i can not > su login, my ttys is marked insecure all WHAT I DO ?? RTFM. More specifically, read http://www.freebsd.org/FAQ/admin.html#FORGOT-ROOT-PW. -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 21:29:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from nivek.org (cr688613-a.wlfdle1.on.wave.home.com [24.43.91.177]) by hub.freebsd.org (Postfix) with ESMTP id 2A23E37B479 for ; Wed, 22 Nov 2000 21:29:20 -0800 (PST) Received: by nivek.org (Postfix, from userid 1001) id 42CA522F; Thu, 23 Nov 2000 00:29:19 -0500 (EST) Date: Thu, 23 Nov 2000 00:29:19 -0500 From: Dave Dunaway To: Rino Mardo Cc: Alexey Dementsov , freebsd-questions@freebsd.org Subject: Re: your mail Message-ID: <20001123002919.A15498@nivek.org> References: <000c01c0547e$a26340c0$3201040a@oggi.spb.ru> <20001123091454.A16783@gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001123091454.A16783@gmx.net>; from helixfish@gmx.net on Thu, Nov 23, 2000 at 09:14:54AM +0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG libssl.so.1 should be installed as part of the openssl port. On Thu, Nov 23, 2000 at 09:14:54AM +0400, Rino Mardo wrote: > On Wed, Nov 22, 2000 at 03:20:40PM +0300 or thereabouts, Alexey Dementsov wrote: > > I have problem, please help me. > > I installed freebsd 4.1 and packages fetchmail-5.5.5.tgz and gettext-0.10.35.tgz. > > When I run fetchmail on the screen I saw the message > > "/usr/libexec/ld-elf.so.1: Shared object "libssl.so.1" not found" > > What must I do. > > > > goto /usr/ports/mail/fetchmail and reinstall fetchmail from there. are your > ports tree updated? -- Dave. bela@nivek.org Head Trauma Victim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 21:47:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from buchanan-181-249.stures.iastate.edu (buchanan-181-249.stures.iastate.edu [129.186.181.249]) by hub.freebsd.org (Postfix) with ESMTP id 48F0337B4D7 for ; Wed, 22 Nov 2000 21:47:09 -0800 (PST) Received: (from kparz@localhost) by buchanan-181-249.stures.iastate.edu (8.11.1/8.11.1) id eAN5o3F11794 for freebsd-questions@freebsd.org; Wed, 22 Nov 2000 23:50:03 -0600 (CST) (envelope-from kparz) Date: Wed, 22 Nov 2000 23:50:03 -0600 From: Krzysztof Parzyszek To: freebsd-questions@freebsd.org Subject: Mounting Solaris 8 slices Message-ID: <20001122235003.A11757@buchanan-181-249.stures.iastate> 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 X-Loop: FreeBSD.ORG Can FreeBSD 4.2 read/write Solaris 8 slices? How can I mount them without having a BSD disklabel on the disk? -- ,oPq J --- Krzysztof Parzyszek 10/15/2000 1:29am --- 7 `8oP' --- Abandon the search for Truth; settle for a good fantasy. --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 22: 8: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from george.he.net (george.he.net [216.218.157.2]) by hub.freebsd.org (Postfix) with ESMTP id A688C37B4C5 for ; Wed, 22 Nov 2000 22:08:00 -0800 (PST) Received: from wiliweld.com (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by george.he.net (8.8.6/8.8.2) with ESMTP id WAA04243; Wed, 22 Nov 2000 22:07:26 -0800 Message-ID: <3A1CB39A.15E399C@wiliweld.com> Date: Wed, 22 Nov 2000 22:05:14 -0800 From: Bill Schoolcraft Organization: " UNIX, A Way of Life !!! " X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 i86pc) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Cc: Gerd Knops Subject: USB and "camcontrol" update Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello Gerd and Family, I have followed the instructions for having my USB HP Digital camera recognized by FreeBSD 4.1 and the commands I used were: (A) mkdir /camera (B) camcontrol rescan 0 /*which reported success */ (C) mount_msdos /dev/da0s1 /camera And the error that I received from the last command is: mount_msdos: /dev/da0s1: Device not configured. The FreeBSD-4.1 detects and identifies the camera each and every time I turn it on. It detected and identified it 4 seperate times trying each port on the hub. Again 4 seperate times with the hub plugged into the second USB port on the back of the machine. And it was identified plugging the camera directly into the USB port(s) on the back of the machine. I did that thinking that maybe the 4 port USB hub might be causing some issues. I'd like to thank anyone in advance for any tips here. -- Bill Schoolcraft PO Box 210076 San Francisco, CA 94121 "UNIX, A Way of Life !!!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 22:13:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.armentel.com (unknown [212.73.65.12]) by hub.freebsd.org (Postfix) with ESMTP id C5C4D37B4D7 for ; Wed, 22 Nov 2000 22:13:24 -0800 (PST) Received: from user0000011909 (192.168.7.74 [192.168.7.74]) by mail1.armentel.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id X2FZZX3X; Thu, 23 Nov 2000 09:56:16 +0400 From: "Arthur Boynagryan" To: "'Danny'" Cc: Subject: RE: Samba Error Date: Thu, 23 Nov 2000 09:54:45 +0400 Message-ID: <001e01c05511$e239fcf0$4a07a8c0@user0000011909> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_001F_01C05533.694EAA30" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <00112401595700.00360@freebsd.freebsd.org> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Disposition-Notification-To: "Arthur Boynagryan" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_001F_01C05533.694EAA30 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit I have the same problem on FreeBSD 4.0-4.1.1 (RELEASE) and Windows NT network. Every once in a while nmbd gives me this error message. But that happens only if I start Samba daemons from inetd.conf. If I start them with a startup script in /usr/local/etc/rc.d everything works just fine. Only once (on FreeBSD 4.1-RELEASE) another error occured: nmbd just wouldn't start from local startup script, even though smbd and swat were running just fine. This problems occur both in Samba 2.0.6 and 2.0.7 Please see attached smb.conf file for more information Regards, Arthur > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Danny > Sent: Thursday, November 23, 2000 18:58 > To: Chimon Yeung; UNIX > Subject: Re: Samba Error > > > Using Windows 95 and Samba shouldn't be any problems > > In order for me to get a better understanding of the > situation. Type out the > following reply to the questions: > > What version of FreeBSD are you using? > What version of Samba are you using? > Do you have a copy of smb.conf > Did you install Samba using the ports collection? (if you > didn't I strongly > recommend you should) > > Please forward your reply to everyone in the mailings list to > get a more > effective response. > > > On Thu, 23 Nov 2000, Chimon Yeung wrote: > > Hello, > > > > When I tried to map a network drive in Windows95 through > Samba in UNIX, > > I got an error message: > > > > "Nov 22 15:29:02 moa inetd[124]: > /usr/local/samba/bin/nmbd[1154]: exit > > status 0x100 > > .... > > ..... > > NNov 22 15:29:02 moa inetd[124]: netbios-ns/upd server > failing (looping), > > service terminated." > > > > Please advice. > > > > -- > > Thanks, > > > > Chimon Yeung > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > -- > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ------=_NextPart_000_001F_01C05533.694EAA30 Content-Type: application/octet-stream; name="smb.conf" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="smb.conf" # Samba config file created using SWAT=0A= # from 192.168.1.2 (192.168.1.2)=0A= # Date: 2000/10/05 00:44:20=0A= =0A= # Global parameters=0A= [global]=0A= workgroup =3D MIS D=0A= netbios name =3D USER-1000012572=0A= server string =3D Samba 2.07 on FreeBSD 4.1.1-RELEASE=0A= interfaces =3D 127.0.0.1/24 192.168.7.250/24=0A= bind interfaces only =3D Yes=0A= security =3D SERVER=0A= encrypt passwords =3D Yes=0A= password server =3D Netserver_b1=0A= log file =3D /var/log/log.%m=0A= max log size =3D 50=0A= load printers =3D No=0A= dns proxy =3D No=0A= wins server =3D 192.168.1.47=0A= =0A= [homes]=0A= comment =3D Home Directories=0A= writeable =3D Yes=0A= browseable =3D No=0A= =0A= [printers]=0A= comment =3D All Printers=0A= path =3D /var/spool/samba=0A= printable =3D Yes=0A= browseable =3D No=0A= ------=_NextPart_000_001F_01C05533.694EAA30-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 22:31:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost01.reflexnet.net (mailhost01.reflexnet.net [64.6.192.82]) by hub.freebsd.org (Postfix) with ESMTP id 8F29037B4C5 for ; Wed, 22 Nov 2000 22:31:55 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Wed, 22 Nov 2000 22:30:19 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAN6Vl964526; Wed, 22 Nov 2000 22:31:47 -0800 (PST) (envelope-from cjc) Date: Wed, 22 Nov 2000 22:31:47 -0800 From: "Crist J . Clark" To: Jason Cc: questions@FreeBSD.ORG Subject: Re: freaking charlie root Message-ID: <20001122223147.L12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: <3A1C9B27.4B541E68@satx.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <3A1C9B27.4B541E68@satx.rr.com>; from blaz@satx.rr.com on Wed, Nov 22, 2000 at 10:20:55PM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Nov 22, 2000 at 10:20:55PM -0600, Jason wrote: > howdy, > > i take full responsibility for being root. how can i redirect the log > msgs from appearing > in my xterms or console as root? i want them just to show up in xterm > -C, and not > every other freaking terminal. this has to be possible, and any help > would be > appreciated. $ man syslog.conf . . . The action field of each line specifies the action to be taken when the selector field selects a message. There are five forms: . . . o A comma separated list of users. Selected messages are written to those users if they are logged in. $ grep root /etc/syslog.conf *.err root *.notice;news.err root *.alert root -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 22:34:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost01.reflexnet.net (mailhost01.reflexnet.net [64.6.192.82]) by hub.freebsd.org (Postfix) with ESMTP id 0E46537B479 for ; Wed, 22 Nov 2000 22:34:47 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Wed, 22 Nov 2000 22:33:17 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAN6YjK64568; Wed, 22 Nov 2000 22:34:45 -0800 (PST) (envelope-from cjc) Date: Wed, 22 Nov 2000 22:34:45 -0800 From: "Crist J . Clark" To: "Ing. Guillermo R. Martinez Hernandez" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: help!!!! i forget passwd root and i have ttys close Message-ID: <20001122223445.M12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: <000801c05506$83318800$9a2e22c8@Lumac> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <000801c05506$83318800$9a2e22c8@Lumac>; from gmo@www.comunica.net.mx on Wed, Nov 22, 2000 at 10:33:20PM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Nov 22, 2000 at 10:33:20PM -0600, Ing. Guillermo R. Martinez Hernandez wrote: > I forget passwd of root, I access my sistem how admin but i can not su login, my ttys is marked insecure all WHAT I DO ?? Boot from a floppy. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 22:43:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 792CA37B4C5 for ; Wed, 22 Nov 2000 22:43:08 -0800 (PST) Received: by static.unixfreak.org (Postfix, from userid 1000) id BDE311F33; Wed, 22 Nov 2000 22:43:07 -0800 (PST) Subject: Re: help!!!! i forget passwd root and i have ttys close In-Reply-To: <000601c05519$89062ac0$972e22c8@Lumac> "from Ing. Guillermo R. Martinez Hernandez at Nov 23, 2000 00:49:31 am" To: "Ing. Guillermo R. Martinez Hernandez" Date: Wed, 22 Nov 2000 22:43:07 -0800 (PST) Cc: freebsd-questions@freebsd.org From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001123064307.BDE311F33@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [ Charset ISO-8859-1 unsupported, converting... ] > yes I know, but I can not open my system because in my ttys are one line > said > > # > ttyv0 "/usr/libexec/getty Pc" cons25 on insecure I don't know why you did that, but the basic idea would be to boot from a floppy (I believe the fixit disk should work), mount your root filesystem, edit the password file unsetting the password, rebuilding the password databases, and rebooting. Or, if you don't want to mess with the password databases, just edit /etc/ttys. BTW, when replying, please cc the original recipients; in this case, freebsd-questions@freebsd.org. Thanks. > > > [ Charset ISO-8859-1 unsupported, converting... ] > > > I forget passwd of root, I access my sistem how admin but i can not > > > su login, my ttys is marked insecure all WHAT I DO ?? > > > > RTFM. More specifically, read > > http://www.freebsd.org/FAQ/admin.html#FORGOT-ROOT-PW. > > > > -- > > Dima Dorfman > > Finger dima@unixfreak.org for my public PGP key. > > > > -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. "Thus the metric system did not really catch on in the States, unless you count the increasing popularity of the nine-millimeter bullet." -- Dave Barry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 22:56: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from servidor.exsocom.com.mx (servidor.exsocom.com.mx [200.34.46.130]) by hub.freebsd.org (Postfix) with ESMTP id 0A19537B4C5 for ; Wed, 22 Nov 2000 22:56:03 -0800 (PST) Received: from Lumac (pppc01.exsocom.com.mx [200.34.46.151]) by servidor.exsocom.com.mx (8.9.3/8.9.3) with SMTP id BAA00211; Thu, 23 Nov 2000 01:01:42 -0600 (CST) Message-ID: <003001c0551f$779e8b00$972e22c8@Lumac> From: "Ing. Guillermo R. Martinez Hernandez" To: Cc: References: <20001123064307.BDE311F33@static.unixfreak.org> Subject: RE: help!!!! i forget passwd root and i have ttys close Date: Thu, 23 Nov 2000 01:31:58 -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.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks . I did this becaue I have to many problems whit craker ( last Administrator fo my site ) . in this momen I´m booting whit one floppy, but i can not change my passwd, you have other idea ? Please :-) ----- Original Message ----- From: Dima Dorfman To: Ing. Guillermo R. Martinez Hernandez Cc: Sent: Thursday, November 23, 2000 12:43 AM Subject: Re: help!!!! i forget passwd root and i have ttys close > [ Charset ISO-8859-1 unsupported, converting... ] > > yes I know, but I can not open my system because in my ttys are one line > > said > > > > # > > ttyv0 "/usr/libexec/getty Pc" cons25 on insecure > > I don't know why you did that, but the basic idea would be to boot > from a floppy (I believe the fixit disk should work), mount your root > filesystem, edit the password file unsetting the password, rebuilding > the password databases, and rebooting. Or, if you don't want to mess > with the password databases, just edit /etc/ttys. > > BTW, when replying, please cc the original recipients; in this case, > freebsd-questions@freebsd.org. Thanks. > > > > > > [ Charset ISO-8859-1 unsupported, converting... ] > > > > I forget passwd of root, I access my sistem how admin but i can not > > > > su login, my ttys is marked insecure all WHAT I DO ?? > > > > > > RTFM. More specifically, read > > > http://www.freebsd.org/FAQ/admin.html#FORGOT-ROOT-PW. > > > > > > -- > > > Dima Dorfman > > > Finger dima@unixfreak.org for my public PGP key. > > > > > > > > > > -- > Dima Dorfman > Finger dima@unixfreak.org for my public PGP key. > > "Thus the metric system did not really catch on in the States, unless you > count the increasing popularity of the nine-millimeter bullet." > -- Dave Barry > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 22:58:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id BCF4637B4C5 for ; Wed, 22 Nov 2000 22:58:06 -0800 (PST) Received: by static.unixfreak.org (Postfix, from userid 1000) id 7C9DC1F32; Wed, 22 Nov 2000 22:58:06 -0800 (PST) Subject: Re: help!!!! i forget passwd root and i have ttys close In-Reply-To: <003001c0551f$779e8b00$972e22c8@Lumac> "from Ing. Guillermo R. Martinez Hernandez at Nov 23, 2000 01:31:58 am" To: "Ing. Guillermo R. Martinez Hernandez" Date: Wed, 22 Nov 2000 22:58:06 -0800 (PST) Cc: dima@unixfreak.org, freebsd-questions@freebsd.org From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001123065806.7C9DC1F32@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [ Charset ISO-8859-1 unsupported, converting... ] > Thanks . > > I did this becaue I have to many problems whit craker ( last > Administrator fo my site ) . > in this momen I?m booting whit one floppy, > > but i can not change my passwd, you have other idea ? Boot from a floppy and edit /etc/ttys to remove the 'insecure' flag. > > [ Charset ISO-8859-1 unsupported, converting... ] > > > yes I know, but I can not open my system because in my ttys are one line > > > said > > > > > > # > > > ttyv0 "/usr/libexec/getty Pc" cons25 on insecure > > > > I don't know why you did that, but the basic idea would be to boot > > from a floppy (I believe the fixit disk should work), mount your root > > filesystem, edit the password file unsetting the password, rebuilding > > the password databases, and rebooting. Or, if you don't want to mess > > with the password databases, just edit /etc/ttys. > > > > BTW, when replying, please cc the original recipients; in this case, > > freebsd-questions@freebsd.org. Thanks. > > > > > > > > > [ Charset ISO-8859-1 unsupported, converting... ] > > > > > I forget passwd of root, I access my sistem how admin but i can not > > > > > su login, my ttys is marked insecure all WHAT I DO ?? > > > > > > > > RTFM. More specifically, read > > > > http://www.freebsd.org/FAQ/admin.html#FORGOT-ROOT-PW. > > > > > > > > -- > > > > Dima Dorfman > > > > Finger dima@unixfreak.org for my public PGP key. > > > > > > > > > > > > > > > > -- > > Dima Dorfman > > Finger dima@unixfreak.org for my public PGP key. > > > > "Thus the metric system did not really catch on in the States, unless you > > count the increasing popularity of the nine-millimeter bullet." > > -- Dave Barry > > > > -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. "He who laughs last obviously didn't get the joke." -- Bazooka Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 22:59:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from servidor.exsocom.com.mx (servidor.exsocom.com.mx [200.34.46.130]) by hub.freebsd.org (Postfix) with ESMTP id 4D84537B4C5 for ; Wed, 22 Nov 2000 22:59:26 -0800 (PST) Received: from Lumac (pppc01.exsocom.com.mx [200.34.46.151]) by servidor.exsocom.com.mx (8.9.3/8.9.3) with SMTP id BAA00295; Thu, 23 Nov 2000 01:05:05 -0600 (CST) Message-ID: <003301c0551f$f0c89c00$972e22c8@Lumac> From: "Ing. Guillermo R. Martinez Hernandez" To: Cc: References: <000801c05506$83318800$9a2e22c8@Lumac> <20001122223445.M12190@149.211.6.64.reflexcom.com> <001a01c0551c$c09e02c0$972e22c8@Lumac> <20001122224224.N12190@149.211.6.64.reflexcom.com> Subject: RE: help!!!! i forget passwd root and i have ttys close Date: Thu, 23 Nov 2000 01:35: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.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I did, but can not change the passwd, no show next step for change passswd, only show the window in where you choice this option and dont change to next windows ? you have other idea ? Please :-) Guillermo ----- Original Message ----- From: Crist J . Clark To: Ing. Guillermo R. Martinez Hernandez Sent: Thursday, November 23, 2000 12:42 AM Subject: Re: help!!!! i forget passwd root and i have ttys close > On Thu, Nov 23, 2000 at 01:12:33AM -0600, Ing. Guillermo R. Martinez Hernandez wrote: > > please tellme how because i don know how do :-) i´m novice > > Oh, a newbie. > > Did you install from a floppy or CD? Do you still have the media you > used? Boot from it. On the first menu of sysinstall is a "Configure" > option, choose it. On the configure menu is a "Root Password" > choice. I think you can handle it from there. > -- > Crist J. Clark cjclark@alum.mit.edu > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 23: 3:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from servidor.exsocom.com.mx (servidor.exsocom.com.mx [200.34.46.130]) by hub.freebsd.org (Postfix) with ESMTP id 98FD237B4C5 for ; Wed, 22 Nov 2000 23:03:40 -0800 (PST) Received: from Lumac (pppc01.exsocom.com.mx [200.34.46.151]) by servidor.exsocom.com.mx (8.9.3/8.9.3) with SMTP id BAA00366; Thu, 23 Nov 2000 01:09:19 -0600 (CST) Message-ID: <003c01c05520$88866f40$972e22c8@Lumac> From: "Ing. Guillermo R. Martinez Hernandez" To: Cc: References: <20001123065806.7C9DC1F32@static.unixfreak.org> Subject: RE: help!!!! i forget passwd root and i have ttys close Date: Thu, 23 Nov 2000 01:39:35 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ok but how make boot disk ? because i`m newbie :-) in this I have my floppy disk for install, is good ? Thanks Gmo ----- Original Message ----- From: Dima Dorfman To: Ing. Guillermo R. Martinez Hernandez Cc: ; Sent: Thursday, November 23, 2000 12:58 AM Subject: Re: help!!!! i forget passwd root and i have ttys close > [ Charset ISO-8859-1 unsupported, converting... ] > > Thanks . > > > > I did this becaue I have to many problems whit craker ( last > > Administrator fo my site ) . > > in this momen I?m booting whit one floppy, > > > > but i can not change my passwd, you have other idea ? > > Boot from a floppy and edit /etc/ttys to remove the 'insecure' flag. > > > > [ Charset ISO-8859-1 unsupported, converting... ] > > > > yes I know, but I can not open my system because in my ttys are one line > > > > said > > > > > > > > # > > > > ttyv0 "/usr/libexec/getty Pc" cons25 on insecure > > > > > > I don't know why you did that, but the basic idea would be to boot > > > from a floppy (I believe the fixit disk should work), mount your root > > > filesystem, edit the password file unsetting the password, rebuilding > > > the password databases, and rebooting. Or, if you don't want to mess > > > with the password databases, just edit /etc/ttys. > > > > > > BTW, when replying, please cc the original recipients; in this case, > > > freebsd-questions@freebsd.org. Thanks. > > > > > > > > > > > > [ Charset ISO-8859-1 unsupported, converting... ] > > > > > > I forget passwd of root, I access my sistem how admin but i can not > > > > > > su login, my ttys is marked insecure all WHAT I DO ?? > > > > > > > > > > RTFM. More specifically, read > > > > > http://www.freebsd.org/FAQ/admin.html#FORGOT-ROOT-PW. > > > > > > > > > > -- > > > > > Dima Dorfman > > > > > Finger dima@unixfreak.org for my public PGP key. > > > > > > > > > > > > > > > > > > > > > > -- > > > Dima Dorfman > > > Finger dima@unixfreak.org for my public PGP key. > > > > > > "Thus the metric system did not really catch on in the States, unless you > > > count the increasing popularity of the nine-millimeter bullet." > > > -- Dave Barry > > > > > > > > > > -- > Dima Dorfman > Finger dima@unixfreak.org for my public PGP key. > > "He who laughs last obviously didn't get the joke." > -- Bazooka Joe > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 23: 5: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mta6.snfc21.pbi.net (mta6.snfc21.pbi.net [206.13.28.240]) by hub.freebsd.org (Postfix) with ESMTP id CE15A37B479 for ; Wed, 22 Nov 2000 23:05:07 -0800 (PST) Received: from multiuse ([206.170.121.50]) by mta6.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with SMTP id <0G4G00I8ZU8P87@mta6.snfc21.pbi.net> for freebsd-questions@FreeBSD.ORG; Wed, 22 Nov 2000 23:02:51 -0800 (PST) Date: Wed, 22 Nov 2000 23:12:39 -0800 From: Galecki Subject: BSD gen info To: freebsd-questions@FreeBSD.ORG Message-id: <000a01c0551c$c4fe0180$3279aace@multiuse> MIME-version: 1.0 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: multipart/alternative; boundary="----=_NextPart_000_0007_01C054D9.B5836EE0" X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Priority: 3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C054D9.B5836EE0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable How much would it cost me to buy the free bsd software for a DNS machine = and http machine, I am also looking into configuring a anonymous ftp and = https servers. Where can I find documentation on DNS configuration? --Thank you for your time. ------=_NextPart_000_0007_01C054D9.B5836EE0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
How much would it cost me to buy the = free bsd=20 software for a DNS machine and http machine, I am also looking into = configuring=20 a anonymous ftp and https servers.  Where can I find documentation = on DNS=20 configuration?
        = --Thank you=20 for your time.
------=_NextPart_000_0007_01C054D9.B5836EE0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 23: 5:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from Gotska.IJP.Si (unknown [193.2.67.226]) by hub.freebsd.org (Postfix) with ESMTP id 8475737B4C5 for ; Wed, 22 Nov 2000 23:05:08 -0800 (PST) Received: (from brodnik@localhost) by Gotska.IJP.Si (8.11.0/8.11.0) id eAN5ENg08697; Thu, 23 Nov 2000 06:14:23 +0100 (CET) (envelope-from brodnik) From: Andrej Brodnik (Andy) Message-Id: <200011230514.eAN5ENg08697@Gotska.IJP.Si> Subject: Re: IBM Thinkpad T20 rejects FreeBSD In-Reply-To: <20001122075612.B16143@lebel.org> "from David Lebel at Nov 22, 2000 07:56:12 am" To: David Lebel Date: Thu, 23 Nov 2000 06:14:22 +0100 (CET) Cc: freebsd-questions@FreeBSD.ORG, drosih@rpi.edu, jonas.bulow@servicefactory.se, tony@ncsa.uiuc.edu, netdev@ncsa.uiuc.edu, charlie@infoworks.net Organization: Institute of Mathematics, Physics, and Mechanics Reply-To: Andrej.Brodnik@IMFM.Uni-Lj.SI (Andrej Brodnik (Andy)) 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 X-Loop: FreeBSD.ORG > Date: Wed, 22 Nov 2000 07:56:12 -0500 > From: David Lebel > Subject: Re: IBM Thinkpad T20 rejects FreeBSD > > Quoting Andrej Brodnik (brodnik@Gotska.IJP.Si): > > > > any progress/solution regarding this problem? My T20 doesn't boot > > either if I label a partition as FreeBSD partition (type 165). When I > > change the type of partition to 131 it works again (unfortunatelly > > without FreeBSD booting). > > I think that, as long as you have a DOS partition as the first > partition, you should be OK. I don't use BootMgr as my boot loader, > also, I'm using Boot Magic from Partition Magic. I do have DOS partition as the first one on my disk. Now, where can I get (and how do I install) BootMagic? And, did you try it with FreeBSD partition? LPA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 23: 6: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from Gotska.IJP.Si (unknown [193.2.67.226]) by hub.freebsd.org (Postfix) with ESMTP id 2AABB37B479 for ; Wed, 22 Nov 2000 23:05:57 -0800 (PST) Received: (from brodnik@localhost) by Gotska.IJP.Si (8.11.0/8.11.0) id eAN5H4p08707; Thu, 23 Nov 2000 06:17:04 +0100 (CET) (envelope-from brodnik) From: Andrej Brodnik (Andy) Message-Id: <200011230517.eAN5H4p08707@Gotska.IJP.Si> Subject: Re: IBM Thinkpad T20 rejects FreeBSD In-Reply-To: "from Garance A Drosihn at Nov 22, 2000 01:27:07 pm" To: Garance A Drosihn Date: Thu, 23 Nov 2000 06:17:04 +0100 (CET) Cc: jonas.bulow@servicefactory.se, tony@ncsa.uiuc.edu, netdev@ncsa.uiuc.edu, charlie@infoworks.net, lebel@lebel.org, freebsd-questions@FreeBSD.ORG Organization: Institute of Mathematics, Physics, and Mechanics Reply-To: Andrej.Brodnik@IMFM.Uni-Lj.SI (Andrej Brodnik (Andy)) 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 X-Loop: FreeBSD.ORG > Date: Wed, 22 Nov 2000 13:27:07 -0500 > From: Garance A Drosihn > Subject: Re: IBM Thinkpad T20 rejects FreeBSD > At 6:22 AM +0100 11/22/00, Andrej Brodnik (Andy) wrote: > > > >any progress/solution regarding this problem? My T20 doesn't > >boot either if I label a partition as FreeBSD partition (type 165). > >When I change the type of partition to 131 it works again > >(unfortunatelly without FreeBSD booting). > > I am afraid that we (here at RPI) haven't really investigated > this all that much more. For our purposes, we can dual-boot > the original Win98 install and any FreeBSD install, and for > most people that is "good enough". We never have figured out > how to dual-boot WinNT and FreeBSD, or if there is any way to > have a T20 laptop which is only running FreeBSD. So, if I understand this correctly, you can dual-boot Win98 and FreeBSD on T20? LPA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 23: 9: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 3425137B4D7 for ; Wed, 22 Nov 2000 23:08:58 -0800 (PST) Received: by static.unixfreak.org (Postfix, from userid 1000) id EB97F1F32; Wed, 22 Nov 2000 23:08:57 -0800 (PST) Subject: Re: help!!!! i forget passwd root and i have ttys close In-Reply-To: <003c01c05520$88866f40$972e22c8@Lumac> "from Ing. Guillermo R. Martinez Hernandez at Nov 23, 2000 01:39:35 am" To: "Ing. Guillermo R. Martinez Hernandez" Date: Wed, 22 Nov 2000 23:08:57 -0800 (PST) Cc: dima@unixfreak.org, freebsd-questions@freebsd.org From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001123070857.EB97F1F32@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [ Charset ISO-8859-1 unsupported, converting... ] > Ok but how make boot disk ? because i`m newbie :-) in this As I said, try the fixit disk. The image is available in the same place as the others. I haven't done this in a long time, but I'm sure someone else on the list will help you if you require further assistance. > > > > > > I did this becaue I have to many problems whit craker ( last > > > Administrator fo my site ) . > > > in this momen I?m booting whit one floppy, > > > > > > but i can not change my passwd, you have other idea ? > > > > Boot from a floppy and edit /etc/ttys to remove the 'insecure' flag. > > > > > > [ Charset ISO-8859-1 unsupported, converting... ] > > > > > yes I know, but I can not open my system because in my ttys are one > line > > > > > said > > > > > > > > > > # > > > > > ttyv0 "/usr/libexec/getty Pc" cons25 on insecure > > > > > > > > I don't know why you did that, but the basic idea would be to boot > > > > from a floppy (I believe the fixit disk should work), mount your root > > > > filesystem, edit the password file unsetting the password, rebuilding > > > > the password databases, and rebooting. Or, if you don't want to mess > > > > with the password databases, just edit /etc/ttys. > > > > > > > > BTW, when replying, please cc the original recipients; in this case, > > > > freebsd-questions@freebsd.org. Thanks. > > > > > > > > > > > > > > > [ Charset ISO-8859-1 unsupported, converting... ] > > > > > > > I forget passwd of root, I access my sistem how admin but i can > not > > > > > > > su login, my ttys is marked insecure all WHAT I DO ?? > > > > > > > > > > > > RTFM. More specifically, read > > > > > > http://www.freebsd.org/FAQ/admin.html#FORGOT-ROOT-PW. > > > > > > > > > > > > -- > > > > > > Dima Dorfman > > > > > > Finger dima@unixfreak.org for my public PGP key. > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > Dima Dorfman > > > > Finger dima@unixfreak.org for my public PGP key. > > > > > > > > "Thus the metric system did not really catch on in the States, unless > you > > > > count the increasing popularity of the nine-millimeter bullet." > > > > -- Dave Barry > > > > > > > > > > > > > > > > -- > > Dima Dorfman > > Finger dima@unixfreak.org for my public PGP key. > > > > "He who laughs last obviously didn't get the joke." > > -- Bazooka Joe > > > > -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. "Never understimate the power of human stupidity." -- Robert A. Heinlein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 23:22:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f34.law8.hotmail.com [216.33.241.34]) by hub.freebsd.org (Postfix) with ESMTP id F1B3837B4D7 for ; Wed, 22 Nov 2000 23:22:47 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 22 Nov 2000 23:22:47 -0800 Received: from 161.142.78.86 by lw8fd.law8.hotmail.msn.com with HTTP; Thu, 23 Nov 2000 07:22:47 GMT X-Originating-IP: [161.142.78.86] From: "T.K C.Chua" To: questions@FreeBSD.org Subject: Mailserver Date: Thu, 23 Nov 2000 15:22:47 +0800 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 23 Nov 2000 07:22:47.0534 (UTC) FILETIME=[2DFD78E0:01C0551E] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I need some help here. When my company setup a webserver using FreeBSD as the O/S, they didn't setup the mailserver, hence the mail was point to the ISP UUCP, now the company wish to point it to our company server. The problem here is: 1. I'm not quite clear the mailserver is setup or not at server, so, how do I check? 2. If the mailserver is ok, what should do? 3. What is mx-record? I'm new in FreeBSD but getting alot document to help me out. Thanks. chua. _____________________________________________________________________________________ Get more from the Web. FREE MSN Explorer download : 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 Nov 22 23:26:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from debbie.gmx.net (unknown [195.229.53.46]) by hub.freebsd.org (Postfix) with ESMTP id EAB4037B4FE for ; Wed, 22 Nov 2000 23:26:28 -0800 (PST) Received: (from rino@localhost) by debbie.gmx.net (8.9.3/8.9.3) id LAA17085 for freebsd-questions@freebsd.org; Thu, 23 Nov 2000 11:26:24 +0400 (GST) (envelope-from rino) Date: Thu, 23 Nov 2000 11:26:24 +0400 From: Rino Mardo To: freebsd-questions@freebsd.org Subject: Re: your mail Message-ID: <20001123112623.A17070@gmx.net> References: <000c01c0547e$a26340c0$3201040a@oggi.spb.ru> <20001123091454.A16783@gmx.net> <20001123002919.A15498@nivek.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20001123002919.A15498@nivek.org>; from bela@nivek.org on Thu, Nov 23, 2000 at 12:29:19AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Nov 23, 2000 at 12:29:19AM -0500 or thereabouts, Dave Dunaway wrote: > > libssl.so.1 should be installed as part of the openssl port. > this is like a catch-22. openssl is installed with the stock fbsd install yet he and me (once) got the same error message. what i did is reinstalled fetchmail from portsdir. > On Thu, Nov 23, 2000 at 09:14:54AM +0400, Rino Mardo wrote: > > On Wed, Nov 22, 2000 at 03:20:40PM +0300 or thereabouts, Alexey Dementsov wrote: > > > I have problem, please help me. > > > I installed freebsd 4.1 and packages fetchmail-5.5.5.tgz and gettext-0.10.35.tgz. > > > When I run fetchmail on the screen I saw the message > > > "/usr/libexec/ld-elf.so.1: Shared object "libssl.so.1" not found" > > > What must I do. > > > > > > > goto /usr/ports/mail/fetchmail and reinstall fetchmail from there. are your > > ports tree updated? > > -- > > Dave. > > bela@nivek.org > Head Trauma Victim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 23:29: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from debbie.gmx.net (unknown [195.229.53.46]) by hub.freebsd.org (Postfix) with ESMTP id B016B37B4CF for ; Wed, 22 Nov 2000 23:29:00 -0800 (PST) Received: (from rino@localhost) by debbie.gmx.net (8.9.3/8.9.3) id LAA17091 for freebsd-questions@FreeBSD.ORG; Thu, 23 Nov 2000 11:28:59 +0400 (GST) (envelope-from rino) Date: Thu, 23 Nov 2000 11:28:58 +0400 From: Rino Mardo To: freebsd-questions@FreeBSD.ORG Subject: Re: BSD gen info Message-ID: <20001123112858.B17070@gmx.net> References: <000a01c0551c$c4fe0180$3279aace@multiuse> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <000a01c0551c$c4fe0180$3279aace@multiuse>; from step2@pacbell.net on Wed, Nov 22, 2000 at 11:12:39PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Nov 22, 2000 at 11:12:39PM -0800 or thereabouts, Galecki wrote: > How much would it cost me to buy the free bsd software for a DNS machine and http machine, I am also looking into configuring a anonymous ftp and https servers. Where can I find documentation on DNS configuration? > --Thank you for your time. FreeBSD is very well documented. You can find it in /usr/share/doc/handbook or in www.freebsd.org itself. As for the software it all depends on how you want to go about it. You can download the ISO and burn your own fbsd cd or order one from freebsdmall.org which should be around US$69 with manuals and several CDs with it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 23:29:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mta5-rme.xtra.co.nz (mta5-rme.xtra.co.nz [203.96.92.17]) by hub.freebsd.org (Postfix) with ESMTP id F044E37B479; Wed, 22 Nov 2000 23:27:47 -0800 (PST) Received: from themail.com ([210.54.197.59]) by mta5-rme.xtra.co.nz with SMTP id <20001123072744.OAIP60565.mta5-rme.xtra.co.nz@themail.com>; Thu, 23 Nov 2000 20:27:44 +1300 From: "turehu" To: Subject: Accept credit cards on-line THE EASY WAY! Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Thu, 23 Nov 2000 08:24:45 +1300 Content-Transfer-Encoding: 8bit Message-Id: <20001123072744.OAIP60565.mta5-rme.xtra.co.nz@themail.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG No set up fees No monthly interest No minimum transaction fees The only charge is a small percentage of the cost of the transaction. You can not lose money! You only pay fees if you sell your product. Get in the act and launch your online bussiness which will work for you 24hrs a day, seven days a week and it is worldwide. Want to find out more? Go to: http://www.cyberturf.com/creditcard If this Email has reached you by mistake, we apologize. To remove your Email from the mailing list please send: jennifer@nottern.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 23:30:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mta5-rme.xtra.co.nz (mta5-rme.xtra.co.nz [203.96.92.17]) by hub.freebsd.org (Postfix) with ESMTP id F044E37B479; Wed, 22 Nov 2000 23:27:47 -0800 (PST) Received: from themail.com ([210.54.197.59]) by mta5-rme.xtra.co.nz with SMTP id <20001123072744.OAIP60565.mta5-rme.xtra.co.nz@themail.com>; Thu, 23 Nov 2000 20:27:44 +1300 From: "turehu" To: Subject: Accept credit cards on-line THE EASY WAY! Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Thu, 23 Nov 2000 08:24:45 +1300 Content-Transfer-Encoding: 8bit Message-Id: <20001123072744.OAIP60565.mta5-rme.xtra.co.nz@themail.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG No set up fees No monthly interest No minimum transaction fees The only charge is a small percentage of the cost of the transaction. You can not lose money! You only pay fees if you sell your product. Get in the act and launch your online bussiness which will work for you 24hrs a day, seven days a week and it is worldwide. Want to find out more? Go to: http://www.cyberturf.com/creditcard If this Email has reached you by mistake, we apologize. To remove your Email from the mailing list please send: jennifer@nottern.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 23:35:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailweb4.rediffmail.com (unknown [202.54.124.149]) by hub.freebsd.org (Postfix) with SMTP id 05A4637B479 for ; Wed, 22 Nov 2000 23:35:43 -0800 (PST) Received: (qmail 27923 invoked by uid 510); 23 Nov 2000 07:16:31 -0000 Date: 23 Nov 2000 07:16:31 -0000 Message-ID: <20001123071631.27922.qmail@mailweb4.rediffmail.com> MIME-Version: 1.0 To: questions@freebsd.org Subject: Query foo JDK2 From: "sonam sin sla" Content-ID: Content-type: text/plain Content-Description: Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hello i installed the FreeBSD in Compaq PIII .i would like to install the JDK2,Jsdk,Javamail in FreeBSD so from where i will get the software of these product with regards _____________________________________________________ Chat with your friends as soon as they come online. Get Rediff Bol at http://bol.rediff.com Participate in crazy auctions at http://auctions.rediff.com/auctions/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Nov 22 23:53: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from debbie.gmx.net (unknown [195.229.53.46]) by hub.freebsd.org (Postfix) with ESMTP id 4A5EE37B4C5 for ; Wed, 22 Nov 2000 23:53:02 -0800 (PST) Received: (from rino@localhost) by debbie.gmx.net (8.9.3/8.9.3) id LAA17173; Thu, 23 Nov 2000 11:52:50 +0400 (GST) (envelope-from rino) Date: Thu, 23 Nov 2000 11:52:49 +0400 From: Rino Mardo To: "T.K C.Chua" Cc: freebsd-questions@freebsd.org Subject: Re: Mailserver Message-ID: <20001123115249.A17169@gmx.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from chewchua@hotmail.com on Thu, Nov 23, 2000 at 03:22:47PM +0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG best is get the cricket book called "DNS and BIND" from amazon.com or your local bookstore. mx record is a pointer to the ipaddress of your mail server. your problem is you have to tell your isp to point it to your mailserver. it's a DNS thang. On Thu, Nov 23, 2000 at 03:22:47PM +0800 or thereabouts, T.K C.Chua wrote: > Hi, > I need some help here. > When my company setup a webserver using FreeBSD as the O/S, they didn't > setup the mailserver, hence the mail was point to the ISP UUCP, now the > company wish to point it to our company server. > The problem here is: > 1. I'm not quite clear the mailserver is setup or not at server, > so, how do I check? > 2. If the mailserver is ok, what should do? > 3. What is mx-record? > > I'm new in FreeBSD but getting alot document to help me out. > > Thanks. > > > chua. > > _____________________________________________________________________________________ > Get more from the Web. FREE MSN Explorer download : 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 Nov 22 23:56:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from capital.col.com.np (unknown [202.51.69.2]) by hub.freebsd.org (Postfix) with SMTP id A179237B4CF for ; Wed, 22 Nov 2000 23:56:39 -0800 (PST) Received: (qmail 18351 invoked from network); 23 Nov 2000 08:05:23 -0000 Received: from unknown (HELO Partha) (202.51.69.55) by capital.col.com.np with SMTP; 23 Nov 2000 08:05:23 -0000 Message-ID: <000801c05525$440c94c0$0100a8c0@Partha> From: "Parthasarathi Biswas" To: Subject: Date: Thu, 23 Nov 2000 13:43:28 +0530 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C05553.5C9837A0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C05553.5C9837A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, My name is Parthasarathi Biswas.Iam Trying to install FreeBSD.My problem = is I have a multioperating systems in the same machine..98/NT/Linux. 1.98 and Nt are in the same disk but different partition. 2.the second disk is partioned in two ways one is a DOS partition which = has some important datas.and the other partition is the LINUX partion. 3.My system first has LILO boot..and then its gives choices among 98 and = NT Now I want to delete linux partion/LINUX from the second disk/fourth = partion and install FreeBSD there but don't know how to do am afraid it = might delete my second disk and the datas.Pls advise how do I go about = it. Thanks and Brgds Partha ------=_NextPart_000_0005_01C05553.5C9837A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hello,
My name is Parthasarathi Biswas.Iam Trying to = install=20 FreeBSD.My problem is I have a multioperating systems in the same=20 machine..98/NT/Linux.
1.98 and Nt are in the same disk but different=20 partition.
2.the second disk is partioned in two ways one is a = DOS=20 partition which has some important datas.and the other partition is the = LINUX=20 partion.
3.My system first has LILO boot..and then its gives = choices=20 among 98 and NT
 
Now I want to delete linux partion/LINUX from the = second=20 disk/fourth partion and install FreeBSD there but don't know how to do = am afraid=20 it might delete my second disk and the datas.Pls advise how do I go = about=20 it.
Thanks and Brgds
Partha
 
------=_NextPart_000_0005_01C05553.5C9837A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 0:35:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from camelot.bitart.com (BITart-45.BITart.com [206.103.221.45]) by hub.freebsd.org (Postfix) with SMTP id 91A1C37B479 for ; Thu, 23 Nov 2000 00:35:29 -0800 (PST) Received: (qmail 16069 invoked by uid 101); 23 Nov 2000 08:35:28 -0000 Message-ID: <20001123083528.16068.qmail@camelot.bitart.com> Content-Type: text/plain MIME-Version: 1.0 (NeXT Mail 4.2mach v148) In-Reply-To: <3A1CB39A.15E399C@wiliweld.com> X-Nextstep-Mailer: Mail 4.2mach (Enhance 2.2p1) Received: by NeXT.Mailer (1.148) From: Gerd Knops Date: Thu, 23 Nov 2000 02:35:27 -0600 To: Bill Schoolcraft Subject: Re: USB and "camcontrol" update Cc: FreeBSD Reply-To: gerti-freebsdq@BITart.com References: <3A1CB39A.15E399C@wiliweld.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bill Schoolcraft wrote: > Hello Gerd and Family, > > I have followed the instructions for having my USB HP Digital camera > recognized by FreeBSD 4.1 > I havn't worked with an HP camera (using a Sony S70 here), so I can't be off too much help. It may not work the way below at all. I have not come across any positive report about HP camera's, USB and FreeBSD. But then again USB support is quite new in FreeBSD. Read on though: > and the commands I used were: > > (A) mkdir /camera > > (B) camcontrol rescan 0 /*which reported success */ > At this point check your dmesg output. Does it say anything about da0? BTW as AFAIK you can use HP camera's via the serial interface with gphoto (/usr/ports/graphics/gphoto, or www.gphoto.org). Gerd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 1:24:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.hk.hi.cn (unknown [202.100.192.27]) by hub.freebsd.org (Postfix) with ESMTP id 22D1D37B4D7 for ; Thu, 23 Nov 2000 01:24:33 -0800 (PST) Received: from man (service.hk.hi.cn [202.97.20.210]) by mail.hk.hi.cn (8.8.7/8.8.7) with SMTP id RAA27601 for ; Thu, 23 Nov 2000 17:20:05 +0800 (CST) (envelope-from wangsr@hq.cninfo.net) Message-ID: <002801c0552f$84bb86c0$021410ac@man> From: "wang shiran" To: Subject: question about 3com 3c905B-TX Date: Thu, 23 Nov 2000 17:26:54 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0025_01C05572.92C1C8E0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0025_01C05572.92C1C8E0 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: base64 SGkhDQpJIGhhdmUgaW5zdGFsbCBGcmVlQlNEIDQuMC1zdGFibGUsIHRoZSBzZXJ2ZXIgd29ya3Mg d2VsbC4NCkJ1dCB3aGVuIEZyZWVCU0QgYm9vdHMsIHRoZSBiZWxvdyBtZXNzYWdlIGlzIGFwcGVh cjoNCg0KeGwwOiBEQUQgY29tcGxldGUgZm9yIGZlODA6MDAwMTo6MDIwMTowMmZmOmZlOGQ6OGZh MiAtIG5vIGR1cGxpY2F0ZXMgZm91bmQNCnhsMTogREFEIGNvbXBsZXRlIGZvciBmZTgwOjAwMDI6 OjAyMDE6MDJmZjpmZThkOjhmOTEgLSBubyBkdXBsaWNhdGVzIGZvdW5kDQoNCg0Kd2h5Pw0KDQpJ IGFwcHJlY2lhdGUgeW91ciByZXNwb25zZSBhcyBzb29uIGFzIHBvc3NpYmxlLg0KDQpCZXN0IFJl Z2FyZHMNCg0Kd2FuZyBzaGlyYW4NCg0K ------=_NextPart_000_0025_01C05572.92C1C8E0 Content-Type: text/html; charset="gb2312" Content-Transfer-Encoding: base64 PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMCBUcmFuc2l0aW9uYWwv L0VOIj4NCjxIVE1MPjxIRUFEPg0KPE1FVEEgY29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PWdi MjMxMiIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8TUVUQSBjb250ZW50PSJNU0hUTUwgNS4w MC4yOTIwLjAiIG5hbWU9R0VORVJBVE9SPg0KPFNUWUxFPjwvU1RZTEU+DQo8L0hFQUQ+DQo8Qk9E WSBiZ0NvbG9yPSNmZmZmZmY+DQo8RElWPjxGT05UIHNpemU9Mj5IaSE8L0ZPTlQ+PC9ESVY+DQo8 RElWPjxGT05UIHNpemU9Mj5JIGhhdmUgaW5zdGFsbCBGcmVlQlNEIDQuMC1zdGFibGUsIHRoZSBz ZXJ2ZXIgd29ya3MgDQp3ZWxsLjwvRk9OVD48L0RJVj4NCjxESVY+PEZPTlQgc2l6ZT0yPkJ1dCB3 aGVuIEZyZWVCU0QgYm9vdHMsIHRoZSBiZWxvdyBtZXNzYWdlIGlzIA0KYXBwZWFyOjwvRk9OVD48 L0RJVj4NCjxESVY+Jm5ic3A7PC9ESVY+DQo8RElWPjxGT05UIHNpemU9Mj54bDA6IERBRCBjb21w bGV0ZSBmb3IgZmU4MDowMDAxOjowMjAxOjAyZmY6ZmU4ZDo4ZmEyIC0gbm8gDQpkdXBsaWNhdGVz IGZvdW5kPC9GT05UPjwvRElWPg0KPERJVj48Rk9OVCBzaXplPTI+eGwxOiBEQUQgY29tcGxldGUg Zm9yIGZlODA6MDAwMjo6MDIwMTowMmZmOmZlOGQ6OGY5MSAtIG5vIA0KZHVwbGljYXRlcyBmb3Vu ZDwvRk9OVD48L0RJVj4NCjxESVY+Jm5ic3A7PC9ESVY+DQo8RElWPiZuYnNwOzwvRElWPg0KPERJ Vj48Rk9OVCBzaXplPTI+d2h5PzwvRk9OVD48L0RJVj4NCjxESVY+Jm5ic3A7PC9ESVY+DQo8RElW PjxGT05UIHNpemU9Mj5JIGFwcHJlY2lhdGUgeW91ciByZXNwb25zZSBhcyBzb29uIGFzIHBvc3Np YmxlLjwvRk9OVD48L0RJVj4NCjxESVY+Jm5ic3A7PC9ESVY+DQo8RElWPjxGT05UIHNpemU9Mj5C ZXN0IFJlZ2FyZHM8L0ZPTlQ+PC9ESVY+DQo8RElWPiZuYnNwOzwvRElWPg0KPERJVj48Rk9OVCBz aXplPTI+d2FuZyBzaGlyYW48L0ZPTlQ+PC9ESVY+DQo8RElWPiZuYnNwOzwvRElWPjwvQk9EWT48 L0hUTUw+DQo= ------=_NextPart_000_0025_01C05572.92C1C8E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 1:42:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mel.alcatel.fr (mel.alcatel.fr [212.208.74.132]) by hub.freebsd.org (Postfix) with ESMTP id 9FB6B37B4C5 for ; Thu, 23 Nov 2000 01:42:25 -0800 (PST) Received: from aifhs2.alcatel.fr (mailhub.alcatel.fr [155.132.180.80]) by mel.alcatel.fr (ALCANET/SMTP) with ESMTP id KAA02724 for ; Thu, 23 Nov 2000 10:41:47 +0100 Received: from dnscit.cit.alcatel.fr (dnscit.cit.alcatel.fr [139.54.100.2]) by aifhs2.alcatel.fr (ALCANET/SMTP2) with ESMTP id KAA19003 for ; Thu, 23 Nov 2000 10:38:52 +0100 (MET) Received: from dnsvz.vz.cit.alcatel.fr (dnsvz.vz.cit.alcatel.fr [139.54.85.1]) by dnscit.cit.alcatel.fr (8.9.3+Sun/8.9.3) with ESMTP id KAA20920 for ; Thu, 23 Nov 2000 10:44:14 +0100 (MET) Received: from bcv01y01.vz.cit.alcatel.fr (bcv01y01.vz.cit.alcatel.fr [139.54.101.1]) by dnsvz.vz.cit.alcatel.fr (8.9.3+Sun/8.9.3) with ESMTP id KAA09756 for ; Thu, 23 Nov 2000 10:45:05 +0100 (MET) Received: from bcv01y01.vz.cit.alcatel.fr ([172.25.128.14] (may be forged)) by bcv01y01.vz.cit.alcatel.fr with ESMTP (8.8.6 (PHNE_17135)/8.7.1) id KAA08913 for ; Thu, 23 Nov 2000 10:39:31 +0100 (MET) Message-ID: <3A1CE7B3.43179C45@bcv01y01.vz.cit.alcatel.fr> Date: Thu, 23 Nov 2000 11:47:31 +0200 From: Tudor Florea X-Mailer: Mozilla 4.75 [en] (X11; U; SunOS 5.6 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: kernel modules Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, My name is Tudor Florea, I'm quite new to FreeBSD. I'm wonderring if it is possible to compile the pcm driver as a kernel module (as in Linux). Is it ? Thanks, Tudor. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 1:54:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 2EB8637B479 for ; Thu, 23 Nov 2000 01:54:49 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id NAA66644; Thu, 23 Nov 2000 13:21:37 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAN9saq01090; Thu, 23 Nov 2000 12:54:36 +0300 Date: Thu, 23 Nov 2000 12:54:36 +0300 From: "Igor' Robul'" To: Tudor Florea Cc: freebsd-questions@freebsd.org Subject: Re: kernel modules Message-ID: <20001123125436.A1036@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: Tudor Florea , freebsd-questions@freebsd.org References: <3A1CE7B3.43179C45@bcv01y01.vz.cit.alcatel.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <3A1CE7B3.43179C45@bcv01y01.vz.cit.alcatel.fr>; from tudor@bcv01y01.vz.cit.alcatel.fr on Thu, Nov 23, 2000 at 11:47:31AM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Nov 23, 2000 at 11:47:31AM +0200, Tudor Florea wrote: > I'm wonderring if it is possible to compile the pcm driver as a kernel > module (as in Linux). > Is it ? If you don't include something into kernel configuration it will be builded as module. _But_ when I have tried this with pcm module it does not worked, so I have just include into kernel. -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 1:56:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from camel.ck.tp.edu.tw (camel.ck.tp.edu.tw [203.64.26.1]) by hub.freebsd.org (Postfix) with ESMTP id 5727037B479 for ; Thu, 23 Nov 2000 01:56:23 -0800 (PST) Received: from localhost (rafan@localhost) by camel.ck.tp.edu.tw (8.11.1/8.11.0) with ESMTP id eAN9uD178213 for ; Thu, 23 Nov 2000 17:56:16 +0800 (CST) (envelope-from rafan@camel.ck.tp.edu.tw) Date: Thu, 23 Nov 2000 17:56:13 +0800 (CST) From: Jung-an Fan To: freebsd-questions@freebsd.org Subject: radius & limit login times Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG If user A dialed up, then no one can use User A's password to dialup when user A is online. How to achieve this ? thx. Jung-an Fan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 2: 9:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 8F4FE37B479 for ; Thu, 23 Nov 2000 02:09:23 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id NAA66707 for ; Thu, 23 Nov 2000 13:36:17 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eANA9EY01246 for freebsd-questions@FreeBSD.ORG; Thu, 23 Nov 2000 13:09:14 +0300 Date: Thu, 23 Nov 2000 13:09:14 +0300 From: "Igor' Robul'" To: freebsd-questions@FreeBSD.ORG Subject: Re: removing escape chr (printer) Message-ID: <20001123130913.B1036@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: ; from steve@red.hot.net.au on Thu, Nov 23, 2000 at 02:12:36PM +1100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Nov 23, 2000 at 02:12:36PM +1100, Steve the teco wrote: > X2000^[*p+40Y^[*p-89XBudget^[*p-40Y^[^[&f0S > > > > Do I need a port or something to clean up this mess. Write some Perl script. Or C program. Or something else :-( It will not very easy, but you'll have mach fun when you'll have done :-) -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 2:16:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id 7BD8537B4CF for ; Thu, 23 Nov 2000 02:16:39 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eANA5vN08355; Thu, 23 Nov 2000 21:05:57 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Thu, 23 Nov 2000 21:05:57 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="US-ASCII" To: Jung-an Fan , freebsd-questions@FreeBSD.ORG References: In-Reply-To: Subject: Re: radius & limit login times MIME-Version: 1.0 Message-Id: <0011232105570P.05065@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thursday 23 November 2000 20:56, Jung-an Fan wrote: > If user A dialed up, then no one can use User A's password to dialup > when user A is online. > How to achieve this ? > thx. > In the system profile, check to see if the user has another login shell (this will be prefaced by a '-'). If they have, then exit. Since the system profiles are (or should be) dot executed, the shell will then exit and the next thing seen should be the login prompt (or connection dropped by foreign host for telnet). That should do the trick... Geoff -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 2:21:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mel.alcatel.fr (mel.alcatel.fr [212.208.74.132]) by hub.freebsd.org (Postfix) with ESMTP id DB7AB37B4D7 for ; Thu, 23 Nov 2000 02:21:08 -0800 (PST) Received: from aifhs2.alcatel.fr (mailhub.alcatel.fr [155.132.180.80]) by mel.alcatel.fr (ALCANET/SMTP) with ESMTP id LAA23980; Thu, 23 Nov 2000 11:20:29 +0100 Received: from dnscit.cit.alcatel.fr (dnscit.cit.alcatel.fr [139.54.100.2]) by aifhs2.alcatel.fr (ALCANET/SMTP2) with ESMTP id LAA27920; Thu, 23 Nov 2000 11:17:34 +0100 (MET) Received: from dnsvz.vz.cit.alcatel.fr (dnsvz.vz.cit.alcatel.fr [139.54.85.1]) by dnscit.cit.alcatel.fr (8.9.3+Sun/8.9.3) with ESMTP id LAA21790; Thu, 23 Nov 2000 11:22:55 +0100 (MET) Received: from bcv01y01.vz.cit.alcatel.fr (bcv01y01.vz.cit.alcatel.fr [139.54.101.1]) by dnsvz.vz.cit.alcatel.fr (8.9.3+Sun/8.9.3) with ESMTP id LAA10784; Thu, 23 Nov 2000 11:23:47 +0100 (MET) Received: from bcv01y01.vz.cit.alcatel.fr ([172.25.128.14] (may be forged)) by bcv01y01.vz.cit.alcatel.fr with ESMTP (8.8.6 (PHNE_17135)/8.7.1) id LAA11144; Thu, 23 Nov 2000 11:18:12 +0100 (MET) Message-ID: <3A1CEDE2.7E392C3A@bcv01y01.vz.cit.alcatel.fr> Date: Thu, 23 Nov 2000 12:13:54 +0200 From: Tudor Florea X-Mailer: Mozilla 4.75 [en] (X11; U; SunOS 5.6 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: igorr@crosswinds.net Cc: questions@freebsd.org Subject: Re: kernel modules References: <3A1CE7B3.43179C45@bcv01y01.vz.cit.alcatel.fr> <20001123125436.A1036@linux.rainbow> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Can you tell me how to specify the compilation type of a driver (kernel/module) ? If the pcm is compiled as a module which is the name of this module ? Thanks, Tudor. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 2:23:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sun.psychosun.com (CPE-144-132-49-2.vic.bigpond.net.au [144.132.49.2]) by hub.freebsd.org (Postfix) with ESMTP id 6640937B4C5 for ; Thu, 23 Nov 2000 02:23:25 -0800 (PST) Received: from purple (purple.psychosun.com [192.168.1.34]) by sun.psychosun.com (8.11.1/8.9.3) with SMTP id eANANFj12950 for ; Thu, 23 Nov 2000 21:23:16 +1100 (EST) (envelope-from michael@oztechnews.com) Message-ID: <016d01c05537$7422e4e0$2201a8c0@michaelvince.com> From: "Michael Vince" To: Subject: IDE Tape drive, comes up but doesn't work Date: Thu, 23 Nov 2000 21:23:41 +1100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I installed a IDE tape drive, it comes up in dmesg ast0: TAPE at ata0-slave using PIO4 But I cant backup anything onto it doing "tar -cvf /dev/ast0 /etc" just makes it create a tar file in /dev and not backup to tape Doing "MAKEDEV all" doesn't create the device either Can some one help? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 2:34:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from c008.sfo.cp.net (c008-h015.c008.sfo.cp.net [209.228.14.204]) by hub.freebsd.org (Postfix) with SMTP id 1424837B4D7 for ; Thu, 23 Nov 2000 02:34:13 -0800 (PST) Received: (cpmta 3093 invoked from network); 23 Nov 2000 02:34:12 -0800 Date: 23 Nov 2000 02:34:11 -0800 Message-ID: <20001123103411.3092.cpmta@c008.sfo.cp.net> X-Sent: 23 Nov 2000 10:34:11 GMT Received: from [164.164.56.2] by mail.123india.com with HTTP; 23 Nov 2000 02:34:11 PST Content-Type: text/plain Content-Disposition: inline Mime-Version: 1.0 To: freebsd-questions@FreeBSD.org From: gbnaidu@123india.com Cc: gbnaidu@sasi.com X-Mailer: Web Mail 3.8.1.1 Subject: Kernel Compilation... Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I would like to know how to compile kernel when a new directory is added into kernel sources? Suppose in the new directory, I want to have one makefile and use it from the main Makefile. So what is the configuration files that I need to edit to compile? I know the normal way of adding the list of files to /sys/conf/files but how to compile a new directory with a new makefile init? Any suggestions and pointers to documentation will be appreciated. Please cc to this address and also gbnaidu@sasken.com as I am not subsribed to this list. thanks --gb ______________________________________________________ 123India.com - India's Premier Portal Get your Free Email Account at http://www.123india.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 2:38:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id BFF4637B479 for ; Thu, 23 Nov 2000 02:38:26 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id OAA66794 for ; Thu, 23 Nov 2000 14:04:47 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eANAbRC01391 for freebsd-questions@FreeBSD.ORG; Thu, 23 Nov 2000 13:37:27 +0300 Date: Thu, 23 Nov 2000 13:37:27 +0300 From: "Igor' Robul'" To: freebsd-questions@FreeBSD.ORG Subject: Re: downloading iso image Message-ID: <20001123133727.C1036@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <10011221657.aa09616@ccstores.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <10011221657.aa09616@ccstores.com>; from paz@ccstores.com on Wed, Nov 22, 2000 at 04:57:15PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Nov 22, 2000 at 04:57:15PM -0800, Jim Pazarena wrote: > Is it possible to do an install with the ISO image _without_ burning > a CD? If you have another FreeBSD or Linux PC and network then it is possible. Just mount ISO using 'loop' on Linux or vn on FreeBSD And install over FTP. Or you can mount this ISO, then copy /mnt/* to primary DOS partition and install from it. -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 2:38:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from giroc.albury.net.au (giroc.albury.NET.AU [203.15.244.13]) by hub.freebsd.org (Postfix) with ESMTP id 8AF6737B4E5 for ; Thu, 23 Nov 2000 02:38:29 -0800 (PST) Received: (from nicks@localhost) by giroc.albury.net.au (8.11.1/8.11.1) id eANAcEW46203; Thu, 23 Nov 2000 21:38:14 +1100 (EST) Date: Thu, 23 Nov 2000 21:38:14 +1100 From: Nick Slager To: sonam sin sla Cc: "questions@freebsd.org" Subject: Re: Query foo JDK2 Message-ID: <20001123213814.A45343@albury.net.au> References: <20001123071631.27922.qmail@mailweb4.rediffmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001123071631.27922.qmail@mailweb4.rediffmail.com>; from sonamsingh10@rediffmail.com on Thu, Nov 23, 2000 at 07:16:31AM -0000 X-Homer: Whoohooooooo! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake sonam sin sla (sonamsingh10@rediffmail.com): > i installed the FreeBSD in Compaq PIII .i would like to install the > JDK2,Jsdk,Javamail in FreeBSD so from where i will get the software of > these product Use the ports collection to install support for Java 2. cd /usr/ports/java/jdk12-beta make install && make clean Nick -- From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 2:42:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from giroc.albury.net.au (giroc.albury.NET.AU [203.15.244.13]) by hub.freebsd.org (Postfix) with ESMTP id 687ED37B4C5 for ; Thu, 23 Nov 2000 02:42:31 -0800 (PST) Received: (from nicks@localhost) by giroc.albury.net.au (8.11.1/8.11.1) id eANAgNT46755; Thu, 23 Nov 2000 21:42:23 +1100 (EST) Date: Thu, 23 Nov 2000 21:42:23 +1100 From: Nick Slager To: wang shiran Cc: questions@FreeBSD.ORG Subject: Re: question about 3com 3c905B-TX Message-ID: <20001123214222.B45343@albury.net.au> References: <002801c0552f$84bb86c0$021410ac@man> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <002801c0552f$84bb86c0$021410ac@man>; from wangsr@hq.cninfo.net on Thu, Nov 23, 2000 at 05:26:54PM +0800 X-Homer: Whoohooooooo! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake wang shiran (wangsr@hq.cninfo.net): > Hi! > I have install FreeBSD 4.0-stable, the server works well. > But when FreeBSD boots, the below message is appear: > > xl0: DAD complete for fe80:0001::0201:02ff:fe8d:8fa2 - no duplicates found > xl1: DAD complete for fe80:0002::0201:02ff:fe8d:8f91 - no duplicates found It's normal, part of Neighbour Discovery in IPv6. There are more details in the FreeBSD Handbook at http://www.freebsd.org/handbook/ Nick -- From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 3: 9:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost01.reflexnet.net (mailhost01.reflexnet.net [64.6.192.82]) by hub.freebsd.org (Postfix) with ESMTP id 490E837B4C5 for ; Thu, 23 Nov 2000 03:09:52 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Thu, 23 Nov 2000 03:08:20 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eANB9nS66286; Thu, 23 Nov 2000 03:09:49 -0800 (PST) (envelope-from cjc) Date: Thu, 23 Nov 2000 03:09:48 -0800 From: "Crist J . Clark" To: "Ing. Guillermo R. Martinez Hernandez" Cc: freebsd-questions@freebsd.org Subject: Re: help!!!! i forget passwd root and i have ttys close Message-ID: <20001123030948.P12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: <000801c05506$83318800$9a2e22c8@Lumac> <20001122223445.M12190@149.211.6.64.reflexcom.com> <001a01c0551c$c09e02c0$972e22c8@Lumac> <20001122224224.N12190@149.211.6.64.reflexcom.com> <003301c0551f$f0c89c00$972e22c8@Lumac> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <003301c0551f$f0c89c00$972e22c8@Lumac>; from gmo@www.comunica.net.mx on Thu, Nov 23, 2000 at 01:35:22AM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Nov 23, 2000 at 01:35:22AM -0600, Ing. Guillermo R. Martinez Hernandez wrote: > > I did, but can not change the passwd, no show next step for change passswd, > only show the window in where you choice this option and dont change to next > windows ? I am not sure if I understand you, but I guess this might not work. > you have other idea ? Boot off your alternate media again, and get into sysinstall. This time, choose the 'Fixit' option. If you have a floppy, great. If you don't, this could be fun. Choose the emergency shell option. The first thing you want to do is mount the root partition on your hard drive. Do you know the device name? For example, let's say its da0s1a. The following should clear the root password, # mount /dev/ad0s1a /mnt # mount /dev/ad0s1e /mnt/usr # vipw -d /mnt/etc At this point you should get a session in an editor, probably ed(1). If you are not familiar with ed(1), these are the commands to type to clear the root password: 1 s/root:[^:]*// w q Some of those commands will return output, but that is what you will type. It's been a while since I had to boot a system from fixit floppies for repairs. I hope this helps. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 3:17:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pegasus.cs.csubak.edu (pegasus.cs.csubak.edu [136.168.201.110]) by hub.freebsd.org (Postfix) with SMTP id 127CE37B4D7 for ; Thu, 23 Nov 2000 03:17:36 -0800 (PST) Received: from [63.92.89.136] by pegasus.cs.csubak.edu (5.65v4.0/1.1.19.2/07Sep99-1031AM) id AA05442; Thu, 23 Nov 2000 03:16:27 -0800 Message-Id: <000801c0553f$4acd6810$0200a8c0@eru> From: "rjackson" To: Subject: Kernel linking errors Date: Thu, 23 Nov 2000 03:19:47 -0800 Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0005_01C054FC.3B6DD780" X-Priority: 3 X-Msmail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Disposition-Notification-To: "rjackson" X-Mimeole: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C054FC.3B6DD780 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit I keep getting link time errors while building a custom kernel under freeBSD 4.1 - Release. I've looked over the configuration file many times. I've attached a copy of my configuration. The errors that I get are as follows: linking kernel umass.o: In function `umass_cam_attach_sim': umass.o(.text+0x1273): undefined reference to `cam_simq_alloc' umass.o(.text+0x1299): undefined reference to `cam_sim_alloc' umass.o(.text+0x12b2): undefined reference to `xpt_bus_register' umass.o(.text+0x12c2): undefined reference to `cam_simq_free' umass.o: In function `umass_cam_rescan_callback': umass.o(.text+0x12db): undefined reference to `xpt_free_path' umass.o: In function `umass_cam_rescan': umass.o(.text+0x1325): undefined reference to `xpt_periph' umass.o(.text+0x132e): undefined reference to `xpt_create_path' umass.o(.text+0x1341): undefined reference to `xpt_setup_ccb' umass.o(.text+0x135c): undefined reference to `xpt_action' umass.o: In function `umass_cam_detach_sim': umass.o(.text+0x1413): undefined reference to `xpt_bus_deregister' umass.o(.text+0x1431): undefined reference to `cam_sim_free' umass.o: In function `umass_cam_detach': umass.o(.text+0x1469): undefined reference to `xpt_create_path' umass.o(.text+0x1480): undefined reference to `xpt_async' umass.o(.text+0x1488): undefined reference to `xpt_free_path' umass.o: In function `umass_cam_action': umass.o(.text+0x17ad): undefined reference to `xpt_done' umass.o(.text+0x17bd): undefined reference to `xpt_done' umass.o: In function `umass_cam_cb': umass.o(.text+0x18b1): undefined reference to `xpt_done' umass.o: In function `umass_cam_sense_cb': umass.o(.text+0x1928): undefined reference to `xpt_done' umass.o(.text+0x1939): undefined reference to `xpt_done' *** Error code 1 Stop in /usr/src/sys/compile/STRIDER. -- Russell A. Jackson (rjackson@stridernet.com) "The unexamined life is not worth living" - Socrates ------=_NextPart_000_0005_01C054FC.3B6DD780 Content-Type: application/octet-stream; name="STRIDER" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="STRIDER" machine i386 cpu I586_CPU ident STRIDER maxusers 32 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 UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev options USER_LDT #allow user-level control of i386 ldt options NETATALK #Appletalk communications protocol options SOFTUPDATES options QUOTA #enable disk quotas device isa device eisa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 device fd1 at fdc0 drive 1 # ATA and ATAPI devices device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives options ATA_STATIC_ID #Static device numbering options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device psm0 at atkbdc? irq 12 device vga0 at isa? # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT = lines #options PCVT_SCANSET=3D2 # IBM keyboards are non-std # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) device apm0 at nexus? disable flags 0x20 # Advanced Power Management # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 device sio2 at isa? disable port IO_COM3 irq 5 device sio3 at isa? disable port IO_COM4 irq 9 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # 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. device miibus # MII bus support device dc # DEC/Intel 21143 and various workalikes 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'') # 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 fe0 at isa? port 0x300 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 allocated. 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 # 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 #IP Firewall option IPFIREWALL #firewall option IPFIREWALL_VERBOSE #print information about dropped packets option IPFIREWALL_VERBOSE_LIMIT=3D100 #limit verbosity option IPFIREWALL_FORWARD #enable transparent proxy support option IPFIREWALL_DEFAULT_TO_ACCEPT option IPDIVERT #divert sockets option IPFILTER #ipfilter support option IPFILTER_LOG option TCP_DROP_SYNFIN #drop TCP packets with SYN+FIN option TCP_RESTRICT_RST #restrict emisssion of TCP RST ------=_NextPart_000_0005_01C054FC.3B6DD780-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 3:38:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bumper.jellybaby.net (bumper.jellybaby.net [194.159.247.1]) by hub.freebsd.org (Postfix) with ESMTP id 771A337B4D7 for ; Thu, 23 Nov 2000 03:38:26 -0800 (PST) Received: (from simond@localhost) by bumper.jellybaby.net (8.9.2/8.9.2) id LAA06855; Thu, 23 Nov 2000 11:38:21 GMT (envelope-from simond) Date: Thu, 23 Nov 2000 11:38:20 +0000 From: simond@irrelevant.org To: rjackson Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Kernel linking errors Message-ID: <20001123113820.A5343@irrelevant.org> References: <000801c0553f$4acd6810$0200a8c0@eru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <000801c0553f$4acd6810$0200a8c0@eru>; from rjackson@stridernet.com on Thu, Nov 23, 2000 at 03:19:47AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Nov 23, 2000 at 03:19:47AM -0800, rjackson wrote: > I keep getting link time errors while building a custom kernel under freeBSD > 4.1 - Release. I've looked over the configuration file many times. I've > attached a copy of my configuration. The errors that I get are as follows: > > linking kernel > umass.o: In function `umass_cam_attach_sim': > umass.o(.text+0x1273): undefined reference to `cam_simq_alloc' > umass.o(.text+0x1299): undefined reference to `cam_sim_alloc' > umass.o(.text+0x12b2): undefined reference to `xpt_bus_register' > umass.o(.text+0x12c2): undefined reference to `cam_simq_free' > umass.o: In function `umass_cam_rescan_callback': > umass.o(.text+0x12db): undefined reference to `xpt_free_path' > umass.o: In function `umass_cam_rescan': > umass.o(.text+0x1325): undefined reference to `xpt_periph' > umass.o(.text+0x132e): undefined reference to `xpt_create_path' > umass.o(.text+0x1341): undefined reference to `xpt_setup_ccb' > umass.o(.text+0x135c): undefined reference to `xpt_action' > umass.o: In function `umass_cam_detach_sim': > umass.o(.text+0x1413): undefined reference to `xpt_bus_deregister' > umass.o(.text+0x1431): undefined reference to `cam_sim_free' > umass.o: In function `umass_cam_detach': > umass.o(.text+0x1469): undefined reference to `xpt_create_path' > umass.o(.text+0x1480): undefined reference to `xpt_async' > umass.o(.text+0x1488): undefined reference to `xpt_free_path' > umass.o: In function `umass_cam_action': > umass.o(.text+0x17ad): undefined reference to `xpt_done' > umass.o(.text+0x17bd): undefined reference to `xpt_done' > umass.o: In function `umass_cam_cb': > umass.o(.text+0x18b1): undefined reference to `xpt_done' > umass.o: In function `umass_cam_sense_cb': > umass.o(.text+0x1928): undefined reference to `xpt_done' > umass.o(.text+0x1939): undefined reference to `xpt_done' > *** Error code 1 > > Stop in /usr/src/sys/compile/STRIDER. Try adding device scbus device da into your kernel config file as they're both required by the umass device (as you can see if you read the comment next to the umass entry) -- Simon Dick simond@irrelevant.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 3:57:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.thpoon.com (cr103675-a.bloor1.on.wave.home.com [24.114.152.71]) by hub.freebsd.org (Postfix) with SMTP id DBF1537B4CF for ; Thu, 23 Nov 2000 03:57:24 -0800 (PST) Received: (qmail 3393 invoked from network); 23 Nov 2000 11:57:24 -0000 Received: from unknown (HELO tea.thpoon.com) (mail@192.168.1.2) by cr103675-a.bloor1.on.wave.home.com with SMTP; 23 Nov 2000 11:57:24 -0000 Received: from antipode by tea.thpoon.com with local (Exim 3.12 #1 (Debian)) id 13yv0F-0007gy-00 for ; Thu, 23 Nov 2000 06:57:23 -0500 To: freebsd-questions@FreeBSD.ORG Subject: hard drive problems From: Arcady Genkin X-Face: 0=A/O5-+sE[Tf%X>rYr?Y5LD4,:^'jaJ!4jC&UR*ZrrK2>^`g22Qeb]!:d;}2YJ|Hq"LHdF OX`jWX|AT-WVFQ(TPhFVak)0nt$aEdlOq=1~D,:\z5QlVOrZ2(H,mKg=Xr|'VlHA="r Organization: thpoon.com Mail-Copies-To: never Date: 23 Nov 2000 06:57:23 -0500 Message-ID: <87pujmlx3w.fsf@tea.thpoon.com> Lines: 43 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is there any way to non-destructively diagnose if a certain block on a hard drive is bad? I keep getting these had read errors for certain blocks. Since the block numbers are repeating repeatedly, it makes me suspect that the disk is at fault. Also, where can I read what the `status' ad `error' values tell me? Nov 1 ad2: HARD READ ERROR blk# 25423887 Nov 1 ad2: HARD READ ERROR blk# 25423887 status=59 error=40 Nov 1 ad2: HARD READ ERROR blk# 25423887 status=59 error=40 Nov 1 ad2: HARD READ ERROR blk# 25426943 status=59 error=40 Nov 1 ad2: HARD READ ERROR blk# 25427071 status=59 error=40 Nov 1 ad2: HARD READ ERROR blk# 25426943 status=59 error=40 Nov 1 ad2: HARD READ ERROR blk# 25427071 status=59 error=40 Nov 1 ad2: HARD READ ERROR blk# 25426943 status=59 error=40 Nov 1 ad2: HARD READ ERROR blk# 25416623 status=59 error=40 Nov 1 ad2: HARD READ ERROR blk# 25416623 status=59 error=40 Nov 1 ad2: HARD READ ERROR blk# 25418671 Nov 1 ad2: HARD READ ERROR blk# 25418687 status=59 error=40 Nov 1 ad2: HARD READ ERROR blk# 25418687 status=59 error=40 Nov 1 ad2: HARD READ ERROR blk# 25418687 status=59 error=40 Nov 1 ad2: HARD READ ERROR blk# 25418671 Nov 1 ad2: HARD READ ERROR blk# 25418687 status=59 error=40 Nov 1 ad2: HARD READ ERROR blk# 25418687 status=59 error=40 Nov 1 ad2: HARD READ ERROR blk# 25418687 status=59 error=40 Nov 4 ad2: HARD READ ERROR blk# 25677679 status=59 error=40 Nov 11 ad2: HARD READ ERROR blk# 25677679 status=59 error=40 Nov 18 ad2: HARD READ ERROR blk# 25677679 status=59 error=40 Nov 23 ad2: HARD READ ERROR blk# 25418671 Nov 23 ad2: HARD READ ERROR blk# 25418687 status=59 error=40 Nov 23 ad2: HARD READ ERROR blk# 25418687 status=59 error=40 Nov 23 ad2: HARD READ ERROR blk# 25418687 status=59 error=40 FWIW, the harddrive is an IBM Deskstar 13G. The motherboard is an HX chipset-based. I'm running 4.2-S. I have been using the harddrive for FreeBSD since Nov 1. When I put it in, I dedicated it all to one slice, and checked for free blocks. Nevertheless, the very first day I started getting these kernel messages. Many thanks, -- Arcady Genkin Don't read everything you believe. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 4: 6: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate3.eds.co.uk (gate3.eds.co.uk [205.191.194.194]) by hub.freebsd.org (Postfix) with ESMTP id 25A6237B4C5 for ; Thu, 23 Nov 2000 04:05:59 -0800 (PST) Received: (from smap@localhost) by gate3.eds.co.uk (8.8.5/8.8.5) id MAA29542 for ; Thu, 23 Nov 2000 12:45:53 +0100 From: raj.choudhury@de.opel.com Received: from relay3a.cyberlink.eds.com(192.168.5.2) by gate3.eds.co.uk via smap (V2.1) id xma029438; Thu, 23 Nov 00 12:45:26 +0100 Received: (from smap@localhost) by relay3.cyberlink.eds.com (8.8.5/8.8.5) id NAA20996 for ; Thu, 23 Nov 2000 13:05:05 +0100 Received: from es160347.ws.ru.de.eds.com(134.46.99.73) by relay3.cyberlink.eds.com via smap (V2.1) id xma020895; Thu, 23 Nov 00 13:04:34 +0100 Received: by derumg01.lneu.emea.eds.com(Lotus SMTP MTA v4.6.7 (934.1 12-30-1999)) id 412569A0.00425778 ; Thu, 23 Nov 2000 13:04:37 +0100 X-Lotus-FromDomain: GMRUESSELSHEIM@EDSHUBEUROPE To: questions@freebsd.org Message-ID: <412569A0.00424D7B.00@derumg01.lneu.emea.eds.com> Date: Thu, 23 Nov 2000 13:04:10 +0100 Subject: shared OS installation on laptop-2 Questions Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Two newbie questions if I may:- (A) I "successfully" (?!?) installed FreeBSD 4.0 from CD on an HP-N5135 laptop to be shared with Windows M.E. I used the Boot Manager to accomplish this (having first used FIPS 2.0 to split its 5GB hard drive). Upon reboot I was given 3 choices: F1 ?? F2 DOS F3 FreeBSD Now I realize the "??" refers to the fact that I had a type UNKNOWN partition on my hard disk when I entered the partition editor: Disk name: ad0 SIZE NAME DESC 63 -- unused 562212 ad0s1 unknown** 4466070 ad0s2 fat 4739175 ad0s3 freebsd I believe this ** space (namely some 275MB) is used by the laptop for housekeeping when it goes into "HIBERNATE" mode. My two questions are: 1. from an "aesthetic" point of view, can I eliminate choice F1 from appearing when I boot up the computer? (Should I have somehow designated the ad0s1 partition as unbootable in the partition editor?) 2. since I don't care about the hibernate feature (if indeed that's what the mysterious quarter-gig allocation is for), can I safely get rid of it without creating general boot problems or Windows problems? And if so, would I just be desginating ad0s1 as freebsd space and create a mount point for it and treat it as if it were just a 2nd freebsd partition? (B) I know I need to play around with this more, but any hints or suggestions would be appreciated: I got X windows "barely working" via the install process: I can now do startx and get a GUI window showing xterm, login and xclock.The resolution is too low and the window size too small. So, I messed up my configuration settings no doubt! But I was feeling around in the dark because.... I have no info on the HP-N5135 monitor beyond what's shown on the specs webpage ( http://www.hp.com/cposupport/mobile_computing/support_doc/bpi04266.html). I called HP and asked for the horiz & vertical sync ranges, dot clock frequency, chip set, video mode, etc (all the stuff listed in Greg Lehey's fine book). They couldn't tell me anything beyond "RDAC 24 bit 110Mhz; CRT 1024x768 85MHz; 1280x1024 75MHz; 1600x1280 60MHz; Trident Cyberblade RDAC 24 bit 230MHz 1600x1280 ?? ". That's a direct quote (including the question marks) from the HP rep. He claimed no info on sync ranges, dot clock or chip set. This spec page says video chip is S3 Savage/IX. Can you provide any leads on what I would want to select when configuring X (I tried "S3 Savage (generic)" with standard VGA)? Should HP have more info than what the one rep gave me? Or is it available elsewhere on the web that you know of? Am I out of luck with a "Savage/IX" chip? Thanks for your help. I will really appreciate it !! Happy Turkey Day... Raj Choudhury Wiesbaden, Germany PS: if you could cc: me at rajchoud@sitecom.de as well that would be great, so I can curl up with a good [note]book and read it in bed ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 4: 7:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mss.rdc2.nsw.optushome.com.au (ha1.rdc2.nsw.optushome.com.au [203.164.2.50]) by hub.freebsd.org (Postfix) with ESMTP id 3B75A37B479 for ; Thu, 23 Nov 2000 04:07:21 -0800 (PST) Received: from ryan ([203.164.161.45]) by mss.rdc2.nsw.optushome.com.au (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001123120718.CZLC28304.mss.rdc2.nsw.optushome.com.au@ryan>; Thu, 23 Nov 2000 23:07:18 +1100 From: "Ryan" To: "'Rino Mardo'" , Subject: RE: HP PCI Nic (AMD PCnet-FAST PCI) Date: Thu, 23 Nov 2000 23:06:58 +1000 Message-ID: <002701c0554e$43bc0720$0200a8c0@ryan> 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 CWS, Build 9.0.2416 (9.0.2911.0) In-reply-to: <20001122161711.A6219@gmx.net> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I didnt even know what SQE was... anyone know how to turn it off? -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Rino Mardo Sent: Wednesday, 22 November 2000 10:17 PM To: freebsd-questions@FreeBSD.ORG Subject: Re: HP PCI Nic (AMD PCnet-FAST PCI) On Wed, Nov 22, 2000 at 10:31:55PM +1000 or thereabouts, Ryan wrote: > Hi guys > I've hunted the freebsd-questions archive and found that several other > > people have had the problem I'm having now. My AMD-based PCI adaptor on > > lnc0 is spewing loads of "Heartbeat error -- SQE test failed" messages > > because the card was shipped with the SQE test enabled. > > > Has there been any work on the lnc driver to fix this problem? First, if you're using OE please send your messages as text only. Second wrap your lines at column 79 so they look purty. Third, tried switching SQE off? my 2cents and may not be 100% accurate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of 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 Nov 23 4:57: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shiva.mccomm.nl (shiva.mccomm.nl [193.67.87.2]) by hub.freebsd.org (Postfix) with ESMTP id ADD1737B479 for ; Thu, 23 Nov 2000 04:57:01 -0800 (PST) Received: from mccomm.nl (ammor.mccomm.nl [193.67.87.75]) by shiva.mccomm.nl (Postfix) with ESMTP id 3517959204 for ; Thu, 23 Nov 2000 13:56:57 +0100 (CET) Message-ID: <3A1D1400.F471D4B1@mccomm.nl> Date: Thu, 23 Nov 2000 13:56:32 +0100 From: "J. Buesink" X-Mailer: Mozilla 4.7 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: 2nd ip address and routing. Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I'm trying to give my ex0 a second ip adress with ifconfig, this works I've also added a route to another gateway, this works. But where and how can I save this configuration in the files? Could somebody give me a sample config file? Kind regards in advanche. Jorg Buesink, The Netherlands To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 4:59:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sinshost.sins.ru (sinshost.sins.ru [195.230.67.40]) by hub.freebsd.org (Postfix) with ESMTP id E6CE137B479 for ; Thu, 23 Nov 2000 04:59:51 -0800 (PST) Received: from olq ([10.1.1.14]) by sinshost.sins.ru (8.9.3/8.9.3) with ESMTP id PAA53813 for ; Thu, 23 Nov 2000 15:58:50 +0300 (MSK) (envelope-from olq@sinshost.sins.ru) Message-Id: <200011231258.PAA53813@sinshost.sins.ru> From: "O.Trofileeva" To: Subject: natd + ftp-client Date: Thu, 23 Nov 2000 16:03:49 +0300 X-MSMail-Priority: Normal X-Priority: 3 X-Mailer: Microsoft Internet Mail 4.70.1162 MIME-Version: 1.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a local net with false addresses and a router to internet made on FreeBSD 3.4 with nat. A router has two network adapters: one with false address and the other with two real (one as "primary" a.a.a.a and one as alias b.b.b.b). Nat works well in its conventional configuration but I need that all packets making ftp-connections and going from local clients behind nat have not primary real address, but alias address - they should go out with alias address. So, now I have: ip divert 8668 ip from any to any via tl0 /sbin/natd -p 8668 -a a.a.a.a Thanks for any advice. Olga Trofileeva To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 5:30: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from transport.itb.ac.id (transport.itb.ac.id [167.205.9.60]) by hub.freebsd.org (Postfix) with SMTP id 5B4D537B479 for ; Thu, 23 Nov 2000 05:29:53 -0800 (PST) Received: (qmail 4885 invoked by uid 1020); 23 Nov 2000 13:29:16 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 23 Nov 2000 13:29:16 -0000 Date: Thu, 23 Nov 2000 20:29:16 +0700 (JAVT) From: Fadli Syarid To: 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 X-Loop: FreeBSD.ORG subscribe freebsd-questions To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 6:17:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.wmptl.com (mail2.wmptl.com [216.94.6.26]) by hub.freebsd.org (Postfix) with ESMTP id E3C8D37B4C5 for ; Thu, 23 Nov 2000 06:17:52 -0800 (PST) Received: from wmptl.com ([10.0.0.168]) by mail2.wmptl.com (8.9.3/8.9.3) with ESMTP id JAA68399; Thu, 23 Nov 2000 09:04:10 -0500 (EST) (envelope-from webmaster@wmptl.com) Message-ID: <3A1D26B4.14B746E2@wmptl.com> Date: Thu, 23 Nov 2000 09:16:20 -0500 From: Nathan Vidican Reply-To: webmaster@wmptl.com X-Mailer: Mozilla 4.72 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: "J. Buesink" Cc: questions@freebsd.org Subject: Re: 2nd ip address and routing. References: <3A1D1400.F471D4B1@mccomm.nl> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "J. Buesink" wrote: > > Hi, > > I'm trying to give my ex0 a second ip adress with ifconfig, this works > I've also added a route to another gateway, this works. > > But where and how can I save this configuration in the files? > Could somebody give me a sample config file? > > Kind regards in advanche. > > Jorg Buesink, The Netherlands > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message /etc/rc.conf, you'd add something similar to this: ifconfig_ex0="inet 10.0.0.1 netmask 255.255.255.0" ifconfig_ex0_alias0="inet 10.0.0.2 netmask 255.255.255.0" defaultrouter="10.0.0.254" Take a look at /etc/defaults/rc.conf for all the possible configuration variables.. -- Nathan Vidican webmaster@wmptl.com Windsor Match Plate & Tool Ltd. http://www.wmptl.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 6:26:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.wmptl.com (mail2.wmptl.com [216.94.6.26]) by hub.freebsd.org (Postfix) with ESMTP id 09F5337B4C5 for ; Thu, 23 Nov 2000 06:26:55 -0800 (PST) Received: from wmptl.com ([10.0.0.168]) by mail2.wmptl.com (8.9.3/8.9.3) with ESMTP id JAA68573; Thu, 23 Nov 2000 09:13:17 -0500 (EST) (envelope-from webmaster@wmptl.com) Message-ID: <3A1D28D7.2990D1DB@wmptl.com> Date: Thu, 23 Nov 2000 09:25:27 -0500 From: Nathan Vidican Reply-To: webmaster@wmptl.com X-Mailer: Mozilla 4.72 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: Jason Cc: questions@freebsd.org Subject: Re: freaking charlie root References: <3A1C9B27.4B541E68@satx.rr.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Jason wrote: > > howdy, > > i take full responsibility for being root. how can i redirect the log > msgs from appearing > in my xterms or console as root? i want them just to show up in xterm > -C, and not > every other freaking terminal. this has to be possible, and any help > would be > appreciated. > > thanks, xbsd rules > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message how about just stopping the errors from being produced? If however you cannot do that, man syslog -- Nathan Vidican webmaster@wmptl.com Windsor Match Plate & Tool Ltd. http://www.wmptl.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 6:37:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.wmptl.com (mail2.wmptl.com [216.94.6.26]) by hub.freebsd.org (Postfix) with ESMTP id 90EEC37B4C5 for ; Thu, 23 Nov 2000 06:37:28 -0800 (PST) Received: from wmptl.com ([10.0.0.168]) by mail2.wmptl.com (8.9.3/8.9.3) with ESMTP id JAA68773; Thu, 23 Nov 2000 09:23:44 -0500 (EST) (envelope-from webmaster@wmptl.com) Message-ID: <3A1D2B4A.F40D87B6@wmptl.com> Date: Thu, 23 Nov 2000 09:35:54 -0500 From: Nathan Vidican Reply-To: webmaster@wmptl.com X-Mailer: Mozilla 4.72 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: Catlover1024@aol.com Cc: questions@freebsd.org Subject: Re: FreeBSD References: <4a.de23974.274df1bd@aol.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Catlover1024@aol.com wrote: > > I was wondering what copyrights were on FreeBSD and what they were... > Why I was asking because I wanted to modify the FreeBSD kernel to support > more things and debug the existing stuff... I wanted to create my own > distribution... > Why I wanted to create my own distribution of FreeBSD was because I felt > there was > not enough support in the kernel for today's devices. Also it was because I > felt there were not enough apps in the official distribution I didn't have to > port over. Don't criticize me on any of this I don't like flames just > constructive criticism. > > Also, I wouldn't have to make my own distribution of FreeBSD if I knew how to > submit apps and kernel code to be in the official dist. If anyone wants it > and it's good I mean. > How would I go about that? > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message Not itending to give you a rub-off here, but two things you should have done with this message. First -send it to freebsd-hackers@freebsd.org, these are generally the people you'd want to talk to regarding programming/source-commit/etc issues. Generally speaking if you're code is good, and allows FreeBSD to be extended in functionality to an extent that others can use the code; they'll accept it. The very worst case scenario, they don't except it...at least you've got it working for yourself. Secondly, I don't think creating your own release of FreeBSD will at all solve the problem(s) your facing. Deal with other FreeBSD developers, and you're more likely to produce better results than trying to create a whole new dist all by yourself. I am not much of a developer myself, in the way of kernel-land stuff. I do subscribe to hackers@freebsd.org, just for the sake of listening and lurking. I watch what the other developers ask about, and read the replies, etc. I hope that by doing so, I will learn more myself. You however, as it seems should also consider subscribing to this list. If not to learn more about the way things work with the FreeBSD project, then to actually contribute to the greater well-being of it. In Short, I suggest you re-send this message to freebsd-hackers@freebsd.org, preferably with a more appropriate message subject; "FreeBSD" is a little vague... almost all messages sent to any of these lists could use "FreeBSD" as the subject. Typically these messages get over-looked for something like "Can't get Creative Labs ... Soundcard to work with 4.1-STABLE". Remember that the people answering your questions to these lists are in most cases volounteers, (myself included), spending their time to answer the messages they deem worth spending their time on. I'm not trying to flame your message here, or start any type of argument or anything; just suggesting you use a more appropriate subject next time. -- Nathan Vidican webmaster@wmptl.com Windsor Match Plate & Tool Ltd. http://www.wmptl.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 6:45:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.wmptl.com (mail2.wmptl.com [216.94.6.26]) by hub.freebsd.org (Postfix) with ESMTP id 50ED537B4C5 for ; Thu, 23 Nov 2000 06:45:37 -0800 (PST) Received: from wmptl.com ([10.0.0.168]) by mail2.wmptl.com (8.9.3/8.9.3) with ESMTP id JAA68938; Thu, 23 Nov 2000 09:31:57 -0500 (EST) (envelope-from webmaster@wmptl.com) Message-ID: <3A1D2D38.FE2FEE12@wmptl.com> Date: Thu, 23 Nov 2000 09:44:08 -0500 From: Nathan Vidican Reply-To: webmaster@wmptl.com X-Mailer: Mozilla 4.72 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: Richard B Mahoney Cc: freebsd-questions@freebsd.org Subject: Re: Restricting a users CPU usage -- Possible? References: <20001123144644.B42752@student.canterbury.ac.nz> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Richard B. Mahoney" wrote: > > Dear Readers, > > I know its possible to restrict user disk storage quotas under FreeBSD > but what about a user's CPU usage? I've searched for info on this and > have come up empty handed. The reason I ask is as follows. > > This is the system: > > FreeBSD student.canterbury.ac.nz 4.0-RELEASE FreeBSD 4.0-RELEASE #0: > Thu Jul 20 13:20:28 NZST 2000 > root@172.31.45.238:/usr/src/sys/compile/MUGGINS i386 > > It's an elderly Digital Venturis 5133 with 40Meg RAM. > > This is the problem: > > I spend most of my time in Emacs writing papers with AucTeX and > teTeX. They have lots of footnotes & I am always reformating > paragraphs and so on. > > On occaision, if the formating is particularly tricky, Emacs starts > chewing up memory. It can blow out from its usual 8Meg or so to over > 30Meg. The trouble is that once it reaches these levels it just stays > there and never returns to its original level. The only way to peg it > back is to kill it and startup all over again. The other problem is > that when its formating it almost completely takes over the processor > and other programmes become unresponsive. > > The other day Emacs kept climbing in this way and exceeded the > available swap space. The system promptly stepped in and killed it by > itself! I was in many ways delighted. Under any other system and a > reboot would have been needed. > > Nonetheless, what I would like to do is to restrict the amount of CPU > that emacs has access to. In this way, if it decides to become a rogue > programme I can simply Ctl-Alt-F2 out of Blackbox, then log in as > root, and have sufficient CPU available to quickly put a stop to it. > > Any assistance would be appreciated. > > Regards, > > Richard Mahoney > > > -- > ====================================================================== > Richard Mahoney /^^^\ Telephone: +64-3-351-5831 > 78 Jeffreys Rd (| , , |) > Christchurch | * | > NEW ZEALAND \_-_/ mailto:rbm49@csc.canterbury.ac.nz > ---------------------------------------------------------------------- > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message try using 'nice' for the CPU usage, but seems you have a ram issue here. -- Nathan Vidican webmaster@wmptl.com Windsor Match Plate & Tool Ltd. http://www.wmptl.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 6:46:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from trinity.ucs.co.za (trinity.ucs.co.za [196.23.43.15]) by hub.freebsd.org (Postfix) with ESMTP id 225D037B4C5 for ; Thu, 23 Nov 2000 06:46:11 -0800 (PST) Received: from localhost (glock@localhost) by trinity.ucs.co.za (8.11.1/8.11.1) with ESMTP id eANEbOw04991; Thu, 23 Nov 2000 16:37:27 +0200 (SAST) (envelope-from glock@trinity.ucs.co.za) Date: Thu, 23 Nov 2000 16:37:24 +0200 (SAST) From: Stefan Lesicnik To: Nathan Vidican Cc: "J. Buesink" , questions@FreeBSD.ORG Subject: Re: 2nd ip address and routing. In-Reply-To: <3A1D26B4.14B746E2@wmptl.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ive noticed, im not sure of the theory why, that when you alias your nic, you need to make the alias's subnet 255.255.255.255 ie > ifconfig_ex0="inet 10.0.0.1 netmask 255.255.255.0" > ifconfig_ex0_alias0="inet 10.0.0.2 netmask 255.255.255.255" > defaultrouter="10.0.0.254" I might be wrong Just a thought, Stefan On Thu, 23 Nov 2000, Nathan Vidican wrote: > "J. Buesink" wrote: > > > > Hi, > > > > I'm trying to give my ex0 a second ip adress with ifconfig, this works > > I've also added a route to another gateway, this works. > > > > But where and how can I save this configuration in the files? > > Could somebody give me a sample config file? > > > > Kind regards in advanche. > > > > Jorg Buesink, The Netherlands > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > /etc/rc.conf, you'd add something similar to this: > > ifconfig_ex0="inet 10.0.0.1 netmask 255.255.255.0" > ifconfig_ex0_alias0="inet 10.0.0.2 netmask 255.255.255.0" > defaultrouter="10.0.0.254" > > Take a look at /etc/defaults/rc.conf for all the possible configuration > variables.. > > -- > Nathan Vidican > webmaster@wmptl.com > Windsor Match Plate & Tool Ltd. > http://www.wmptl.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 Nov 23 6:54:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from postmarq.mu.edu (hermes.mu.edu [134.48.1.5]) by hub.freebsd.org (Postfix) with ESMTP id C7B3C37B4C5 for ; Thu, 23 Nov 2000 06:54:40 -0800 (PST) Received: from marquette.edu ([127.0.0.1]) by postmarq.mu.edu (Netscape Messaging Server 4.15) with ESMTP id G4HG3300.1PF; Thu, 23 Nov 2000 08:54:39 -0600 From: Jeremy Vandenhouten To: Rino Mardo , questions@freebsd.org Message-ID: <2cd6d82cc3e5.2cc3e52cd6d8@marquette.edu> Date: Thu, 23 Nov 2000 08:54:39 -0600 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: DNS & Bind Book [Was Re: Mailserver] X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > best is get the cricket book called "DNS and BIND" from amazon.com > or your > local bookstore. If you're looking for this book, the cheapest I've found it anywhere was 21.50 US from daemonnews.org in the specials section of the mall. Amazon and Barnes and Noble don't even come close at almost 30 US. This book is a definite keeper, so if you don't have it, you might want to pick it up for the fact that it just happens to be that "cheap." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 6:55:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.wmptl.com (mail2.wmptl.com [216.94.6.26]) by hub.freebsd.org (Postfix) with ESMTP id 0990237B4C5 for ; Thu, 23 Nov 2000 06:55:39 -0800 (PST) Received: from wmptl.com ([10.0.0.168]) by mail2.wmptl.com (8.9.3/8.9.3) with ESMTP id JAA69120; Thu, 23 Nov 2000 09:41:27 -0500 (EST) (envelope-from webmaster@wmptl.com) Message-ID: <3A1D2F71.1A219E9@wmptl.com> Date: Thu, 23 Nov 2000 09:53:37 -0500 From: Nathan Vidican Reply-To: webmaster@wmptl.com X-Mailer: Mozilla 4.72 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: Stefan Lesicnik Cc: questions@freebsd.org Subject: Re: 2nd ip address and routing. References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Stefan Lesicnik wrote: > > Ive noticed, im not sure of the theory why, that when you alias your nic, > you need to make the alias's subnet 255.255.255.255 > > ie > > > ifconfig_ex0="inet 10.0.0.1 netmask 255.255.255.0" > > ifconfig_ex0_alias0="inet 10.0.0.2 netmask 255.255.255.255" > > defaultrouter="10.0.0.254" > > I might be wrong > > Just a thought, > > Stefan > > On Thu, 23 Nov 2000, Nathan Vidican wrote: > > > "J. Buesink" wrote: > > > > > > Hi, > > > > > > I'm trying to give my ex0 a second ip adress with ifconfig, this works > > > I've also added a route to another gateway, this works. > > > > > > But where and how can I save this configuration in the files? > > > Could somebody give me a sample config file? > > > > > > Kind regards in advanche. > > > > > > Jorg Buesink, The Netherlands > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > > /etc/rc.conf, you'd add something similar to this: > > > > ifconfig_ex0="inet 10.0.0.1 netmask 255.255.255.0" > > ifconfig_ex0_alias0="inet 10.0.0.2 netmask 255.255.255.0" > > defaultrouter="10.0.0.254" > > > > Take a look at /etc/defaults/rc.conf for all the possible configuration > > variables.. > > > > -- > > Nathan Vidican > > webmaster@wmptl.com > > Windsor Match Plate & Tool Ltd. > > http://www.wmptl.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 Never done it that way personally; the machine this message is being sent through, (our mailserver), has several NIC's, each with several IP addresses. They are aliased using the same netmask. For example, I have one NIC, (on internal LAN), aliasing 16IP addresses in the 10.0.0.255 network, all using 255.255.255.0 as their netmask. This may be incorrect, but it works? -- Nathan Vidican webmaster@wmptl.com Windsor Match Plate & Tool Ltd. http://www.wmptl.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 7: 2: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from postmarq.mu.edu (hermes.mu.edu [134.48.1.5]) by hub.freebsd.org (Postfix) with ESMTP id E658E37B479 for ; Thu, 23 Nov 2000 07:02:00 -0800 (PST) Received: from marquette.edu ([127.0.0.1]) by postmarq.mu.edu (Netscape Messaging Server 4.15) with ESMTP id G4HGFC00.DIR; Thu, 23 Nov 2000 09:02:00 -0600 From: Jeremy Vandenhouten To: Steve the teco , questions@freebsd.org Message-ID: <2ce8522d2567.2d25672ce852@marquette.edu> Date: Thu, 23 Nov 2000 09:02:00 -0600 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: Re: removing escape chr (printer) X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > The problem is the text is full of printer codes > > ^[^[&a8R^[^[&f0S^[^[&a4C^[^[&f0S^[*c2221A^[*c95B^[*c15G^[*c2P^[*c4A^ [*c1852B^[*c0P^[*c2221A^[*c4B^[*c0P^[*p+59Y^[*p > +200X^[^[(s0p10h0s3b4099TPROJECT > COST^[*p+330X^[*p-20Y^[^[(s0p17h0s3b4099T1999^[*p+40Y^[*p- > 85XActual^[*p-40Y^[*p+70 > X2000^[*p+40Y^[*p-89XBudget^[*p-40Y^[^[&f0S > Someone probably already beat me to this, but the easiest way is to write a shell or Perl script to look for control characters and remove them. I have something similar at work that looks for ^M when I receive text files written in MS format to remove all the ^M's. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 7:22:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fox.univers.cv.ua (fox.univers.cv.ua [212.113.36.98]) by hub.freebsd.org (Postfix) with ESMTP id C851F37B479 for ; Thu, 23 Nov 2000 07:22:37 -0800 (PST) Received: from default (d5-ppp.univers.cv.ua [194.44.100.198]) by fox.univers.cv.ua (8.9.3/8.9.3) with SMTP id TAA13818 for ; Thu, 23 Nov 2000 19:20:57 +0200 (EET) (envelope-from chimsp@unicom.cv.ua) Message-ID: <005801c05557$c0860c20$c6642cc2@default> From: "Vitaly Dugaev" To: Subject: MySQL Date: Thu, 23 Nov 2000 17:14:34 +0300 Organization: IMSPAS MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0055_01C05570.D9F23080" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0055_01C05570.D9F23080 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Please help me get some information how conect to MySQL from ODBC (Win = 98). I have 12 computors in ethernet, in computer IP=3D200.0.0.1 I install = FreBSD 4.0 with MySQL, but I can't or don't know how connect to them = using ODBC (I want make program in Delphi as client). I am beginer ------=_NextPart_000_0055_01C05570.D9F23080 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable
Please help me get some = information how=20 conect to MySQL from ODBC (Win 98).
 
I have 12 computors in ethernet, = in computer=20 IP=3D200.0.0.1 I install FreBSD 4.0 with MySQL, but I can't or don't know how connect to them using ODBC = (I want=20 make program in Delphi as client).
 
I am beginer
 
------=_NextPart_000_0055_01C05570.D9F23080-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 7:25: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from admin.cgocable.net (admin.cgocable.net [24.226.1.21]) by hub.freebsd.org (Postfix) with ESMTP id DC6C837B4D7 for ; Thu, 23 Nov 2000 07:24:55 -0800 (PST) Received: from Fuzzy (d141-152-103.home.cgocable.net [24.141.152.103]) by admin.cgocable.net (8.10.0/8.9.3) with SMTP id eANFQ4P05754 for ; Thu, 23 Nov 2000 10:26:04 -0500 (EST) Message-ID: <001201c0557b$05e4e840$67988d18@Fuzzy.kico1.on.home.com> From: "Dave Lessard" To: Subject: I'm lost and desparate Date: Thu, 23 Nov 2000 10:27:22 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000F_01C05537.F753CB40" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_000F_01C05537.F753CB40 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable New lesson for me ::: Out of blissfull ignorance, come total confusion Hello, My name is Dave : Am I ever lost here. The prediciment is, always getting a signal = 11-shut down screen every time I try to install fBSD 4.0 {March 2000}. Fiest I bought the gfour disk set with a copy of 4.1 as well, and was = told they would work well on a 486/33 *meg and 512meg+450Meg HDs. Novell = 2000 compatable net card ( That works at IRQ10, addr 0x300 ) and have = gone as far as triing to install by floppies, Dos, FTP, and even tossed = the HDs into my Pentium and did a floppy install... No matter what I do, = I can not get a FTP transfer to work because I am on the wave ( Cable ), = asd knbow whats happening there, but every attempt that I have made to = install has been frustrating ( Thats alright )... A while a go, I even = bought the book (and another set of 4.0 March disks in the covers ), = only to find the book ( Third edition ) reffers mostly to 3.x = version.... Am I doing something that is obviously wrong ??? What does signal 11 = mean/// Can you help me futher with more information ???? Dave Lessard Kingston, Ontario... Thank you ------=_NextPart_000_000F_01C05537.F753CB40 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
New lesson for me :::
 Out of blissfull = ignorance,=20 come total confusion
Hello, My name is Dave :
 Am I ever lost here. The prediciment is, = always getting=20 a signal 11-shut down screen every time I try to install fBSD 4.0 {March = 2000}.
Fiest I bought the gfour disk set with a copy of 4.1 = as well,=20 and was told they would work well on a 486/33 *meg and 512meg+450Meg = HDs. Novell=20 2000 compatable net card ( That works at IRQ10, addr 0x300 ) and have = gone as=20 far as triing to install by floppies, Dos, FTP, and even tossed the HDs = into my=20 Pentium and did a floppy install... No matter what I do, I can not get a = FTP=20 transfer to work because I am on the wave ( Cable ), asd knbow whats = happening=20 there, but every attempt that I have made to install has been = frustrating (=20 Thats alright )... A while a go, I even bought the book (and another set = of 4.0=20 March disks in the covers ), only to find the book ( Third edition ) = reffers=20 mostly to 3.x version....
   Am I doing something that is obviously = wrong ???=20 What does signal 11 mean/// Can you help me futher with more information = ????
Dave Lessard
Kingston, Ontario...
 Thank you
------=_NextPart_000_000F_01C05537.F753CB40-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 7:27:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gamma.ru (unknown [195.161.157.34]) by hub.freebsd.org (Postfix) with ESMTP id 8B9B837B4CF for ; Thu, 23 Nov 2000 07:27:32 -0800 (PST) Received: from [158.250.50.133] (HELO izotov.gamma.ru) by gamma.ru (CommuniGate Pro SMTP 3.3.2) with ESMTP id 1080049 for freebsd-questions@FreeBSD.ORG; Thu, 23 Nov 2000 18:27:25 +0300 Date: Thu, 23 Nov 2000 18:27:08 +0300 From: Valery Izotov X-Mailer: The Bat! (v1.46d) PersonalCD5BF9353B3B7091 Reply-To: Valery Izotov Organization: GAMMA X-Priority: 3 (Normal) Message-ID: <117148212.20001123182708@gol.ru> To: freebsd-questions@FreeBSD.ORG Subject: Support for MATSHITA CD-ROM CR-581 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Good Day. I have installed FreeBSD 4.2. 1. I have a litle problem with configuration CD-ROM. I have included in the kernel configuration the following options for support of a CD-ROM device mcd0 at isa? port 0x300 irq 10 device matcd0 at isa? port 0x230 But, then system restart, But at loading the system, there is a following message: MATSHITA CD-ROM CR-581 have no driver. How I can correct it? And whether this CD-ROM is supported by FreeBSD 4.2 system 2. Problem with IOMEGA ZIP 100. The disk has file system MSDOS. (I so think. Files were written to the disk in the system of a Windows 95) At mounting this device, the system produces the following message (mount -t msdos /dev/afd0 /mnt... ): invalid argument How I can mount it? -- Best regards, Valery Izotov To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 7:29:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id BFFE437B4CF for ; Thu, 23 Nov 2000 07:29:43 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id SAA67752 for ; Thu, 23 Nov 2000 18:56:24 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eANFTAj07662 for freebsd-questions@freebsd.org; Thu, 23 Nov 2000 18:29:10 +0300 Date: Thu, 23 Nov 2000 18:29:10 +0300 From: "Igor' Robul'" To: freebsd-questions@freebsd.org Subject: Re: removing escape chr (printer) Message-ID: <20001123182910.A7651@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@freebsd.org References: <2ce8522d2567.2d25672ce852@marquette.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <2ce8522d2567.2d25672ce852@marquette.edu>; from jeremy.vandenhouten@marquette.edu on Thu, Nov 23, 2000 at 09:02:00AM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Nov 23, 2000 at 09:02:00AM -0600, Jeremy Vandenhouten wrote: > them. I have something similar at work that looks for ^M when I receive > text files written in MS format to remove all the ^M's. But remove ^M is much easoer than remove non-fixed lenght control character which can contain alphas and numbers :-) -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 7:35:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gamma.ru (unknown [195.161.157.34]) by hub.freebsd.org (Postfix) with ESMTP id 6F94137B4CF for ; Thu, 23 Nov 2000 07:35:08 -0800 (PST) Received: from [158.250.50.133] (HELO izotov.gamma.ru) by gamma.ru (CommuniGate Pro SMTP 3.3.2) with ESMTP id 1080063 for questions@freebsd.org; Thu, 23 Nov 2000 18:35:07 +0300 Date: Thu, 23 Nov 2000 18:34:49 +0300 From: Valery Izotov X-Mailer: The Bat! (v1.46d) PersonalCD5BF9353B3B7091 Reply-To: Valery Izotov Organization: GAMMA X-Priority: 3 (Normal) Message-ID: <69609550.20001123183450@gol.ru> To: questions@freebsd.org Subject: Support for MATSHITA CD-ROM CR-581 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Good Day. I have installed FreeBSD 4.2. 1. I have a litle problem with configuration CD-ROM. I have included in the kernel configuration the following options for support of a CD-ROM device mcd0 at isa? port 0x300 irq 10 device matcd0 at isa? port 0x230 But, then system restart, But at loading the system, there is a following message: MATSHITA CD-ROM CR-581 have no driver. How I can correct it? And whether this CD-ROM is supported by FreeBSD 4.2 system 2. Problem with IOMEGA ZIP 100. The disk has file system MSDOS. (I so think. Files were written to the disk in the system of a Windows 95) At mounting this device, the system produces the following message (mount -t msdos /dev/afd0 /mnt... ): invalid argument How I can mount it? -- Best regards, Valery Izotov To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 7:50:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from albatross-ext.wise.edt.ericsson.se (albatross-ext.wise.edt.ericsson.se [194.237.142.116]) by hub.freebsd.org (Postfix) with ESMTP id 2907E37B479 for ; Thu, 23 Nov 2000 07:50:35 -0800 (PST) Received: from esealnt461 (esealnt461.al.sw.ericsson.se [153.88.251.61]) by albatross.wise.edt.ericsson.se (8.11.0/8.11.0/WIREfire-1.3) with SMTP id eANFoYt05789 for ; Thu, 23 Nov 2000 16:50:34 +0100 (MET) Received: FROM esealnt743.al.sw.ericsson.se BY esealnt461 ; Thu Nov 23 16:50:02 2000 +0100 Received: by esealnt743.al.sw.ericsson.se with Internet Mail Service (5.5.2651.58) id ; Thu, 23 Nov 2000 16:50:03 +0100 Message-ID: <5E5172B4DE05D311B3AB0008C75DA94104727D1A@edeacnt100.eed.ericsson.se> From: "Sven Huster (QED)" Reply-To: sven.huster@t-online.de To: "'freebsd-questions@freebsd.org'" Cc: "'sven.huster@t-online.de'" Subject: terminal trouble over ssh Date: Thu, 23 Nov 2000 16:49:58 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2651.58) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi there, i want to connect to a intel isp1100 server via serial cable. this works perfect if connect it to my local machine and use kermit in an xterm window. this works also having the server connected to another one and run xterm on the other server. but if i use local xterm, connect to the other server via ssh and then use kermit on it, i can not get the "F2" key to work, which i need for entering BIOS on the machine. thanks sven To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 7:53:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id A7EE437B479 for ; Thu, 23 Nov 2000 07:53:49 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id TAA67824; Thu, 23 Nov 2000 19:20:39 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eANFrMT07850; Thu, 23 Nov 2000 18:53:22 +0300 Date: Thu, 23 Nov 2000 18:53:22 +0300 From: "Igor' Robul'" To: Dave Lessard Cc: freebsd-questions@freebsd.org Subject: Re: I'm lost and desparate Message-ID: <20001123185322.A7784@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: Dave Lessard , freebsd-questions@freebsd.org References: <001201c0557b$05e4e840$67988d18@Fuzzy.kico1.on.home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <001201c0557b$05e4e840$67988d18@Fuzzy.kico1.on.home.com>; from fuzzy@kos.net on Thu, Nov 23, 2000 at 10:27:22AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Please wrap text at 70-75 column On Thu, Nov 23, 2000 at 10:27:22AM -0800, Dave Lessard wrote: > Am I doing something that is obviously wrong ??? > What does signal 11 mean/// Can you help me futher with more > information ???? http://www.bitwizard.nl/sig11 Above link IS NOT Linux specific :-( -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 7:56:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.rdc1.az.home.com (mail2.rdc1.az.home.com [24.1.240.76]) by hub.freebsd.org (Postfix) with ESMTP id F19A537B4C5 for ; Thu, 23 Nov 2000 07:56:15 -0800 (PST) Received: from home.com ([24.1.247.6]) by mail2.rdc1.az.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001123155615.ZTIU29905.mail2.rdc1.az.home.com@home.com>; Thu, 23 Nov 2000 07:56:15 -0800 Message-ID: <3A1D3D65.7A93451@home.com> Date: Thu, 23 Nov 2000 08:53:09 -0700 From: Joel Mc Graw X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Steve the teco Cc: freebsd-questions@FreeBSD.ORG Subject: Re: removing escape chr (printer) References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Steve the teco wrote: > > Hi All, > > I have about 200 files to convert to plain text or better still html. > > The problem is the text is full of printer codes > > ^[^[&a8R^[^[&f0S^[^[&a4C^[^[&f0S^[*c2221A^[*c95B^[*c15G^[*c2P^[*c4A^[*c1852B^[*c0P^[*c2221A^[*c4B^[*c0P^[*p+59Y^[*p > +200X^[^[(s0p10h0s3b4099TPROJECT > COST^[*p+330X^[*p-20Y^[^[(s0p17h0s3b4099T1999^[*p+40Y^[*p-85XActual^[*p-40Y^[*p+70 > X2000^[*p+40Y^[*p-89XBudget^[*p-40Y^[^[&f0S > > > Do I need a port or something to clean up this mess. > > hope someone can help. > > Thanks for your time. > > Steve Hutson. > Steve, These appear to be PCL codes--which is HP's printer control language (kinda like PostScript). Notice that they appear to always begin with an escape character and end with a capital letter. Using this info, writing a program/script to remove the codes should be fairly trivial. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 7:58:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from berzerk.gpcc.itd.umich.edu (berzerk.gpcc.itd.umich.edu [141.211.2.162]) by hub.freebsd.org (Postfix) with ESMTP id 421CD37B4CF for ; Thu, 23 Nov 2000 07:58:16 -0800 (PST) Received: from stargate.gpcc.itd.umich.edu (smtp@stargate.gpcc.itd.umich.edu [141.211.2.154]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id KAA26326; Thu, 23 Nov 2000 10:58:15 -0500 (EST) Received: from localhost (timcm@localhost) by stargate.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id KAA03622; Thu, 23 Nov 2000 10:58:14 -0500 (EST) Date: Thu, 23 Nov 2000 10:58:14 -0500 (EST) From: Tim McMillen X-Sender: timcm@stargate.gpcc.itd.umich.edu To: Catlover1024@aol.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD In-Reply-To: <4a.de23974.274df1bd@aol.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 22 Nov 2000 Catlover1024@aol.com wrote: > I was wondering what copyrights were on FreeBSD and what they were... see http://www.freebsd.org/copyright/copyright.html > Why I was asking because I wanted to modify the FreeBSD kernel to support > more things and debug the existing stuff... That would be great. We'd all enjoy more hardware support and bug fixes. > I wanted to create my own > distribution... > Why I wanted to create my own distribution of FreeBSD was because I felt > there was > not enough support in the kernel for today's devices. Also it was because I > felt there were not enough apps in the official distribution I didn't have to > port over. Don't criticize me on any of this I don't like flames just > constructive criticism. Then why frame your question in a way that invites flames? The questions you've asked could all have been easily answered by yourself by reading the documentation available at www.freebsd.org. Especially if you have the skills to hack the kernel and write drivers. You of course don't need to go to all the work of creating a new distribution, because if you write good code it will be included in FreeBSD's and will benefit everybody. > Also, I wouldn't have to make my own distribution of FreeBSD if I knew how to > submit apps and kernel code to be in the official dist. If anyone wants it > and it's good I mean. > How would I go about that? Yes if you submitted apps and code diffs that were good, they would likely be included. The only reason they wouldn't is if you didn't take into account the complexities of the FreeBSD code and your code would break something else if it was included, or your code had serious flaws or security issues. So as Nathan said, subscribe to freebsd-hackers by mailing majordomo@freebsd.org and spend some time there. To get new applications included take a look at http://www.freebsd.org/porters-handbook/ There are over 4000 already, have you checked www.freebsd.org/ports/ ? And finally there is a whole chapter in the online handbook about how to contribute to FreeBSD. See: http://www.freebsd.org/handbook/contrib.html Of course it would be great if you could develop support for more hardware. Check the HARDWARE.TXT files in each release to check what hardware is already supported. You'll proably also want to have a drive with freebsd -current on it so you know where the cutting edge is at. See http://www.freebsd.org/handbook/cutting-edge.html for that. Have fun, Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 8: 9:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from berzerk.gpcc.itd.umich.edu (berzerk.gpcc.itd.umich.edu [141.211.2.162]) by hub.freebsd.org (Postfix) with ESMTP id 33DB737B479 for ; Thu, 23 Nov 2000 08:09:36 -0800 (PST) Received: from stargate.gpcc.itd.umich.edu (smtp@stargate.gpcc.itd.umich.edu [141.211.2.154]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id LAA26660; Thu, 23 Nov 2000 11:09:35 -0500 (EST) Received: from localhost (timcm@localhost) by stargate.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id LAA04436; Thu, 23 Nov 2000 11:09:35 -0500 (EST) Date: Thu, 23 Nov 2000 11:09:34 -0500 (EST) From: Tim McMillen X-Sender: timcm@stargate.gpcc.itd.umich.edu To: Galecki Cc: freebsd-questions@FreeBSD.ORG Subject: Re: BSD gen info In-Reply-To: <20001123112858.B17070@gmx.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 23 Nov 2000, Rino Mardo wrote: > On Wed, Nov 22, 2000 at 11:12:39PM -0800 or thereabouts, Galecki wrote: > > How much would it cost me to buy the free bsd software for a DNS machine and http machine, I am also looking into configuring a anonymous ftp and https servers. Where can I find documentation on DNS configuration? > > --Thank you for your time. > > FreeBSD is very well documented. You can find it in /usr/share/doc/handbook or > in www.freebsd.org itself. As for the software it all depends on how you want > to go about it. You can download the ISO and burn your own fbsd cd or order > one from freebsdmall.org which should be around US$69 with manuals and several Good advice but it's freebsdmall.com .org gives me a host not found error in konqueror. Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 8:34: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web110.yahoomail.com (web110.mail.yahoo.com [205.180.60.80]) by hub.freebsd.org (Postfix) with SMTP id C8B3937B479 for ; Thu, 23 Nov 2000 08:33:59 -0800 (PST) Received: (qmail 6498 invoked by uid 60001); 23 Nov 2000 16:33:59 -0000 Message-ID: <20001123163359.6497.qmail@web110.yahoomail.com> Received: from [38.31.16.177] by web110.yahoomail.com; Thu, 23 Nov 2000 08:33:59 PST Date: Thu, 23 Nov 2000 08:33:59 -0800 (PST) From: Andrew Gould Subject: Re: MySQL To: Vitaly Dugaev , freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You need to install the MySQL ODBC driver on the Windows box and configure a connection using the driver. You can find the driver or a link to the driver at: http://www.mysql.com Once the driver is installed, use the ODBC Administration application to configure a connection. You'll need the following information: 1. Database server IP address (or the server's name if DNS is used) 2. The name of the database. 3. The database server's port number if the default is not used. 4. If you don't want to be prompted for the user's name and password when you connect, you can also enter this information into the configuration. Obviously, this isn't a very secure thing to do. Best of luck, Andrew Gould --- Vitaly Dugaev wrote: > Please help me get some information how conect to > MySQL from ODBC (Win 98). > > I have 12 computors in ethernet, in computer > IP=200.0.0.1 I install FreBSD 4.0 with MySQL, but I > can't or don't know how connect to them using ODBC > (I want make program in Delphi as client). > > I am beginer > > __________________________________________________ Do You Yahoo!? Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.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 Nov 23 8:36:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web108.yahoomail.com (web108.mail.yahoo.com [205.180.60.75]) by hub.freebsd.org (Postfix) with SMTP id D957137B4C5 for ; Thu, 23 Nov 2000 08:36:15 -0800 (PST) Received: (qmail 22056 invoked by uid 60001); 23 Nov 2000 16:36:15 -0000 Message-ID: <20001123163615.22055.qmail@web108.yahoomail.com> Received: from [38.31.16.177] by web108.yahoomail.com; Thu, 23 Nov 2000 08:36:15 PST Date: Thu, 23 Nov 2000 08:36:15 -0800 (PST) From: Andrew Gould Subject: Re: UDMA ICRC READ ERRORs To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks, it worked great! Andrew Gould --- Craig Huckabee wrote: > Andrew, > > I've got the same problem with 4.2-BETA and an AMD > K6/2 500Mhz box, built > with an ASUS P5A, and a Western Digital hard drive. > I searched the mailing > list archives and found this fix : > > /sbin/sysctl -w hw.atamodes=pio,pio,pio,pio > > I added that line to /etc/rc near the top so it runs > each time the system > boots. Turns off UDMA mode, so performance suffers, > but the errors go away > (at least after /etc/rc runs they do, so a few may > sneak in before that) > > I have two other 4.2 systems with the same hardware > except they use Maxtor > hard drives that don't have this problem. > > If anyone knows of a better solution, pass it along. > I guess it is > possible (or should be) to somehow to turn of UDMA > in the kernel ? > > HTH, > --Craig > > > At 04:50 AM 11/20/00 -0800, you wrote: > >Good morning all, > > > >I have installed FreeBSD 4.1 on an AMD K6/2 450MHz > box > >and keep getting the following error message when I > >boot the computer: > > > >'ad0: UDMA ICRC READ ERROR blk# 4144087 retrying' > >There are more messages where the blk# is > different. > > > >At first I thought it might be the version of > FreeBSD > >or a hard drive problem; but I switched hard drives > >and installed FreeBSD 4.0 without any improvement. > >(The current hard drive is a Seagate 8G ATA66.) So > I > >installed 4.1 again. > > > >Last night, I ran fsck and rebooted. The problem > went > >away for a couple of test reboots; but is back > again > >this morning with different blk#'s. > > > >Does anyone have any advice regarding this matter? > > > >Thanks, > > > >Andrew Gould > > > >__________________________________________________ > >Do You Yahoo!? > >Yahoo! Calendar - Get organized for the holidays! > >http://calendar.yahoo.com/ > > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org > >with "unsubscribe freebsd-questions" in the body of > the message > > ------------------------------------------------------- > Craig Huckabee > huck@spawar.navy.mil > Systems Engineer, Compliance Corporation > (843) 218 6459 > SPAWAR Systems Center - Charleston, Charleston, SC > __________________________________________________ Do You Yahoo!? Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.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 Nov 23 8:53:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from larry.webcom.com (larry.webcom.com [209.1.28.41]) by hub.freebsd.org (Postfix) with ESMTP id 81CF137B479 for ; Thu, 23 Nov 2000 08:53:49 -0800 (PST) Received: from eresh (eresh.webcom.com [209.1.28.49]) by larry.webcom.com (8.9.3/8.9.3) with SMTP id IAA12767 for ; Thu, 23 Nov 2000 08:53:51 -0800 Received: from [195.68.27.132] by inanna.webcom.com (WebCom SMTP 2.0) with SMTP id 50361240; Thu Nov 23 08:53 PST 2000 Message-Id: <3A1D59C7.1060706@celermajer.com> Date: Thu, 23 Nov 2000 18:54:15 +0100 From: olivier CELERMAJER User-Agent: Mozilla/5.0 (X11; U; FreeBSD 4.1.1-RELEASE i386; en-US; m18) Gecko/20001015 X-Accept-Language: en Mime-Version: 1.0 To: freebsd-questions@freebsd.org Subject: HA with FreeBSD Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I use freeBSD for a short time. I Use for Squid, but I want to had High Avability under FreeBSD. Do you know a magic (and cheap) solution? Thanks Olivier Dan CELERMAJER To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 8:55:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.living-source.com (unknown [212.2.36.144]) by hub.freebsd.org (Postfix) with SMTP id BF0EB37B4C5 for ; Thu, 23 Nov 2000 08:55:06 -0800 (PST) Received: (qmail 12791 invoked by uid 0); 23 Nov 2000 17:13:42 -0000 Received: from unknown (HELO admin) (192.168.0.155) by 212.2.36.251 with SMTP; 23 Nov 2000 17:13:42 -0000 Message-ID: <001001c0556d$e0326850$9b00a8c0@admin> From: "Aistis Zenkevicius" To: References: <20001123163615.22055.qmail@web108.yahoomail.com> Subject: Re: UDMA ICRC READ ERRORs Date: Thu, 23 Nov 2000 17:53:16 +0100 Organization: uab "Living Source Vilnius" 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 X-Loop: FreeBSD.ORG hi all, > > I've got the same problem with 4.2-BETA and an AMD > > K6/2 500Mhz box, built > > with an ASUS P5A, and a Western Digital hard drive. > > I searched the mailing > > list archives and found this fix : > > > > /sbin/sysctl -w hw.atamodes=pio,pio,pio,pio don't want to get onto someones nerves, but is it a "solution" ??? where's the normal support for udma-66 ? Jenty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 9:29:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from datasphereweb.com (c182500-a.frndl1.wa.home.com [24.10.46.121]) by hub.freebsd.org (Postfix) with ESMTP id 99DF537B4D7 for ; Thu, 23 Nov 2000 09:29:21 -0800 (PST) Received: from localhost (davidd@localhost) by datasphereweb.com (8.11.1/8.9.3) with ESMTP id eANHSda59831 for ; Thu, 23 Nov 2000 09:28:40 -0800 (PST) (envelope-from davidd@datasphereweb.com) Date: Thu, 23 Nov 2000 09:27:49 -0800 (PST) From: David Daugherty To: questions@freebsd.org Subject: courier-imap setup Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Does anyone know if there is a web site for courier-imap? A Google search doesn't turn it up. I've installed the port but there are no instructions for setting it up. I've never administered imap before so I'm pretty green. |> /\ \/ @ davidd@datasphereweb.com DataSphere - Back end web programming, site security, and networking david.daugherty@netmanage.com Software Engineer NetManage - The Bridge to E-Business http://www.wcug.wwu.edu/~doc ICQ: 21106703 "I like the dreams of the future better than the history of the past" -Thomas Jefferson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 9:31:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (law2-f231.hotmail.com [216.32.181.231]) by hub.freebsd.org (Postfix) with ESMTP id E636B37B479 for ; Thu, 23 Nov 2000 09:31:37 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 23 Nov 2000 09:31:37 -0800 Received: from 64.229.232.78 by lw2fd.hotmail.msn.com with HTTP; Thu, 23 Nov 2000 17:31:37 GMT X-Originating-IP: [64.229.232.78] From: "Dudecom3 Dudecom3" To: questions@freebsd.org Subject: PPPoe Date: Thu, 23 Nov 2000 17:31:37 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 23 Nov 2000 17:31:37.0690 (UTC) FILETIME=[3BA8EBA0:01C05573] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi , i use pppoe and the release 4.1.1 so all work fine but i cant go to www.sympatico.com ....all other site work and i know that the URL is not down...any idea? thanks _____________________________________________________________________________________ Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 9:51: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mel.alcatel.fr (mel.alcatel.fr [212.208.74.132]) by hub.freebsd.org (Postfix) with ESMTP id 2C92F37B4C5 for ; Thu, 23 Nov 2000 09:50:58 -0800 (PST) Received: from aifhs2.alcatel.fr (mailhub.alcatel.fr [155.132.180.80]) by mel.alcatel.fr (ALCANET/SMTP) with ESMTP id SAA21187; Thu, 23 Nov 2000 18:49:58 +0100 From: tudor@bcv01y01.vz.cit.alcatel.fr Received: from dnscit.cit.alcatel.fr (dnscit.cit.alcatel.fr [139.54.100.2]) by aifhs2.alcatel.fr (ALCANET/SMTP2) with ESMTP id SAA08751; Thu, 23 Nov 2000 18:05:30 +0100 (MET) Received: from dnsvz.vz.cit.alcatel.fr (dnsvz.vz.cit.alcatel.fr [139.54.85.1]) by dnscit.cit.alcatel.fr (8.9.3+Sun/8.9.3) with ESMTP id SAA00234; Thu, 23 Nov 2000 18:10:53 +0100 (MET) Received: from bcv01y01.vz.cit.alcatel.fr (bcv01y01.vz.cit.alcatel.fr [139.54.101.1]) by dnsvz.vz.cit.alcatel.fr (8.9.3+Sun/8.9.3) with ESMTP id SAA22914; Thu, 23 Nov 2000 18:11:43 +0100 (MET) Received: from bcv01y01.vz.cit.alcatel.fr ([172.25.128.14] (may be forged)) by bcv01y01.vz.cit.alcatel.fr with ESMTP (8.8.6 (PHNE_17135)/8.7.1) id SAA13476; Thu, 23 Nov 2000 18:06:09 +0100 (MET) Message-ID: <3A1D5062.7568C465@bcv01y01.vz.cit.alcatel.fr> Date: Thu, 23 Nov 2000 19:14:10 +0200 X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.6 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: Parthasarathi Biswas Cc: "questions@FreeBSD.ORG" Subject: Re: References: <000801c05525$440c94c0$0100a8c0@Partha> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Parthasarathi Biswas wrote: > > Hello, > My name is Parthasarathi Biswas.Iam Trying to install FreeBSD.My > problem is I have a multioperating systems in the same > machine..98/NT/Linux. > 1.98 and Nt are in the same disk but different partition. > 2.the second disk is partioned in two ways one is a DOS partition > which has some important datas.and the other partition is the LINUX > partion. > 3.My system first has LILO boot..and then its gives choices among 98 > and NT > > Now I want to delete linux partion/LINUX from the second disk/fourth > partion and install FreeBSD there but don't know how to do am afraid > it might delete my second disk and the datas.Pls advise how do I go > about it. > Thanks and Brgds > Partha > hello, I think you don't have to be afraid of loosing your DOS partition with important data. I guess you're used with fdisk and you're able to delete the Linux partition and not the DOS one. In the worse case, when you're not able to boot any operating system you still can use a DOS boot disk and read your DOS partition. Anyway, if you install FreeBSD over your Linux, you must use FreeBSD's boot manager which is able to boot all your operating systems. In the setup process at the boot manager section you should select the BootMgr option. The boot manager MUST be installed on the 1st drive even if your FreeBSD lies on your 2nd disk. Here is a reference for installing FreeBSD's boot manager: http://people.FreeBSD.org/~rpratt/40/boot_mgr.html Of course, you can search other references, too. If something happens, a solution for booting at least your NT/98 is to boot from a DOS bootdisk, then: fdisk /mbr and then setting your 98 or NT partition as active. Good luck ! Tudor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 9:52:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shekel.sentient.co.uk (unknown [212.188.163.132]) by hub.freebsd.org (Postfix) with ESMTP id A371237B4C5 for ; Thu, 23 Nov 2000 09:52:20 -0800 (PST) Subject: RE: courier-imap setup MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C05576.1DC1B466" Date: Thu, 23 Nov 2000 17:52:16 -0000 X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 content-class: urn:content-classes:message Message-ID: <7DCD990CD0436840A8B2BEB7454690220C3232@shekel.sentient.co.uk> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: courier-imap setup Thread-Index: AcBVcvLr+VjoxlzQSIqPAdBiZM5mogAAx9eQ From: "Daniel Fairs" To: "David Daugherty" , Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------_=_NextPart_001_01C05576.1DC1B466 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Try heading over to www.inter7.com and following the links... > -----Original Message----- > From: David Daugherty [mailto:davidd@datasphereweb.com] > Sent: 23 November 2000 17:28 > To: questions@freebsd.org > Subject: courier-imap setup >=20 >=20 > Does anyone know if there is a web site for courier-imap? A=20 > Google search > doesn't turn it up. I've installed the port but there are no=20 > instructions > for setting it up. I've never administered imap before so I'm pretty > green. >=20 > |> /\ \/ @ > davidd@datasphereweb.com > DataSphere - Back end web programming, site security, and networking >=20 > david.daugherty@netmanage.com > Software Engineer > NetManage - The Bridge to E-Business >=20 > http://www.wcug.wwu.edu/~doc > ICQ: 21106703 >=20 > "I like the dreams of the future better than the history of the past" > -Thomas Jefferson >=20 >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message >=20 ------_=_NextPart_001_01C05576.1DC1B466 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable RE: courier-imap setup

Try heading over to www.inter7.com and following the = links...

> -----Original Message-----
> From: David Daugherty [mailto:davidd@datasphereweb.com<= /A>]
> Sent: 23 November 2000 17:28
> To: questions@freebsd.org
> Subject: courier-imap setup
>
>
> Does anyone know if there is a web site for = courier-imap? A
> Google search
> doesn't turn it up. I've installed the port but = there are no
> instructions
> for setting it up. I've never administered imap = before so I'm pretty
> green.
>
> |> /\ \/ @
> davidd@datasphereweb.com
> DataSphere - Back end web programming, site = security, and networking
>
> david.daugherty@netmanage.com
> Software Engineer
> NetManage - The Bridge to E-Business
>
>
http://www.wcug.wwu.edu/~doc
> ICQ: 21106703
>
> "I like the dreams of the future better = than the history of the past"
>          =             &= nbsp;           &n= bsp; -Thomas Jefferson
>
>
>
> To Unsubscribe: send mail to = majordomo@FreeBSD.org
> with "unsubscribe freebsd-questions" = in the body of the message
>

------_=_NextPart_001_01C05576.1DC1B466-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 10: 3:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gw.carpoolbc.com (cr45465-a.abtsfd1.bc.wave.home.com [24.113.176.126]) by hub.freebsd.org (Postfix) with ESMTP id 262EC37B4C5 for ; Thu, 23 Nov 2000 10:03:24 -0800 (PST) Received: from localhost (roop@localhost) by gw.carpoolbc.com (8.11.1/8.9.3) with ESMTP id eANI3eQ58880; Thu, 23 Nov 2000 10:03:40 -0800 (PST) (envelope-from roop@gw.carpoolbc.com) Date: Thu, 23 Nov 2000 10:03:40 -0800 (PST) From: Roop Nanuwa To: sonam sin sla Cc: "questions@freebsd.org" Subject: Re: Query foo JDK2 In-Reply-To: <20001123071631.27922.qmail@mailweb4.rediffmail.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, These three programs are in the same place where you can get over 90% of FreeBSD programs: in your ports collection. These particular programs are under: /usr/ports/java. If you don't know how to install ports then you can RTFM @ http://www.freebsd.org/handbook/ports.html RSN On 23 Nov 2000, sonam sin sla wrote: > hello > i installed the FreeBSD in Compaq PIII .i would like to install the JDK2,Jsdk,Javamail > in FreeBSD so from where i will get the software of these product > with regards > > > > _____________________________________________________ > Chat with your friends as soon as they come online. Get Rediff Bol at > http://bol.rediff.com > > Participate in crazy auctions at http://auctions.rediff.com/auctions/ > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 23 10:43:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from george.he.net (george.he.net [216.218.157.2]) by hub.freebsd.org (Postfix) with ESMTP id 4BBE037B4C5 for ; Thu, 23 Nov 2000 10:43:40 -0800 (PST) Received: from wiliweld.com (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by george.he.net (8.8.6/8.8.2) with ESMTP id KAA11118; Thu, 23 Nov 2000 10:43:34 -0800 Message-ID: <3A1D64D3.54F5C648@wiliweld.com> Date: Thu, 23 Nov 2000 10:41:23 -0800 From: Bill Schoolcraft Organization: " UNIX, A Way of Life !!! " X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 i86pc) X-Accept-Language: en MIME-Version: 1.0 To: gerti-freebsdq@bitart.com Cc: FreeBSD Subject: Re: USB and "camcontrol" update References: <3A1CB39A.15E399C@wiliweld.com> <20001123083528.16068.qmail@camelot.bitart.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Gerd Knops wrote: > > Bill Schoolcraft wrote: > > Hello Gerd and Family, > > > > I have followed the instructions for having my USB HP Digital camera > > recognized by FreeBSD 4.1 > > > I havn't worked with an HP camera (using a Sony S70 here), so I can't > be off too much help. It may not work the way below at all. I have not > come across any positive report about HP camera's, USB and FreeBSD. But > then again USB support is quite new in FreeBSD. Read on though: > > > and the commands I used were: > > > > (A) mkdir /camera > > > > (B) camcontrol rescan 0 /*which reported success */ > > > At this point check your dmesg output. Does it say anything about da0? > > BTW as AFAIK you can use HP camera's via the serial interface with > gphoto (/usr/ports/graphics/gphoto, or www.gphoto.org). > > Gerd Thanks, the HP-315 was a great deal, has 2.1 depth but it's a USB, at $299 I couldn't complain. In addition to the built in USB on that particular machine I have obtained a few Belkin USB cards (pci) which I have to test and see if FBSD-4.1 recognizes. I was hoping to avoid this whole USB thing period (like I've tried to avoid owning a fuel-injected car) for maintainence reasons but it seems to be unavoidable. I applaud the fact that it's built into 4.1, way ahead of the Linux distro. -- Bill Schoolcraft PO Box 210076 San Francisco, CA 94121 "UNIX, A Way of Life !!!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 11: 5:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tcif.rdscv.ro (unknown [193.231.227.194]) by hub.freebsd.org (Postfix) with ESMTP id C369137B4D7 for ; Thu, 23 Nov 2000 11:05:34 -0800 (PST) Received: from rdscv.ro ([193.231.227.197]) by tcif.rdscv.ro (8.9.3/8.8.7) with ESMTP id WAA05246 for ; Thu, 23 Nov 2000 22:33:15 +0200 Message-ID: <3A1EBAF2.93DE1A00@rdscv.ro> Date: Fri, 24 Nov 2000 21:01:06 +0200 From: Nicu Matau Reply-To: nicu.matau@rdsnet.ro X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.16-22 i686) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: mirror Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Helo there I want to create an romanian mirror: www.ro.freebsd.org and ftp.ro.freebsd.org If you want that, please contact me. p.s.:for start how much free space should i have?? -- ------------------------------------------------------------------------ Nicu Matau Network Administrator RDS Craiova +40-051-416579 +40-051-410194 ------------------------------------------------------------------------ Privileged/Confidential Information may be contained in this message.If you are not the addressee indicated in this message (or responsible for delivery of the message to such person), you may not copy or deliver this message to anyone. In such a case, you should destroy this message and kindly notify the sender by reply e-mail. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 11: 9:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from servidor.exsocom.com.mx (servidor.exsocom.com.mx [200.34.46.130]) by hub.freebsd.org (Postfix) with ESMTP id 34DFB37B4CF for ; Thu, 23 Nov 2000 11:09:02 -0800 (PST) Received: from Lumac (pppc07.exsocom.com.mx [200.34.46.157]) by servidor.exsocom.com.mx (8.9.3/8.9.3) with SMTP id NAA12799; Thu, 23 Nov 2000 13:14:39 -0600 (CST) Message-ID: <000c01c05585$df13c500$9d2e22c8@Lumac> From: "Ing. Guillermo R. Martinez Hernandez" To: "Tim McMillen" Cc: References: Subject: RE: help!!!! i forget passwd root and i have ttys close Date: Thu, 23 Nov 2000 13:45:00 -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.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Tim si Hablas español seria fabuloso!!! if no speak panish :-( but no problem I worked whit floppy but i can not mount root file system, i thing if a may put my kernel of my system in one floppy without rc file ( or this file whit other config ) maybe i can change my passwd of root ( in this moment i have login of admin maybe is util ) Thanks for all and i Wait for your help Guillermo Mtz ----- Original Message ----- From: Tim McMillen To: Ing. Guillermo R. Martinez Hernandez Sent: Thursday, November 23, 2000 10:04 AM Subject: RE: help!!!! i forget passwd root and i have ttys close The advice others gave will definitely work. Just boot from floppy instead of dropping to single user. You have to follow the instructions correctly and especially the instructions in the FAQ link they gave. You need to mount root filesystem read/write. Buena suerte, Tim On Thu, 23 Nov 2000, Ing. Guillermo R. Martinez Hernandez wrote: > > I did, but can not change the passwd, no show next step for change passswd, > only show the window in where you choice this option and dont change to next > windows ? > > you have other idea ? > > Please :-) > > Guillermo > > > > ----- Original Message ----- > From: Crist J . Clark > To: Ing. Guillermo R. Martinez Hernandez > Sent: Thursday, November 23, 2000 12:42 AM > Subject: Re: help!!!! i forget passwd root and i have ttys close > > > > On Thu, Nov 23, 2000 at 01:12:33AM -0600, Ing. Guillermo R. Martinez > Hernandez wrote: > > > please tellme how because i don know how do :-) i´m novice > > > > Oh, a newbie. > > > > Did you install from a floppy or CD? Do you still have the media you > > used? Boot from it. On the first menu of sysinstall is a "Configure" > > option, choose it. On the configure menu is a "Root Password" > > choice. I think you can handle it from there. > > -- > > 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 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 11: 9:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from george.he.net (george.he.net [216.218.157.2]) by hub.freebsd.org (Postfix) with ESMTP id 3413337B4CF for ; Thu, 23 Nov 2000 11:09:30 -0800 (PST) Received: from wiliweld.com (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by george.he.net (8.8.6/8.8.2) with ESMTP id LAA17087 for ; Thu, 23 Nov 2000 11:09:27 -0800 Message-ID: <3A1D6AE4.EC7C277A@wiliweld.com> Date: Thu, 23 Nov 2000 11:07:16 -0800 From: Bill Schoolcraft Organization: " UNIX, A Way of Life !!! " X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 i86pc) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Subject: VMware for FreeBSD ? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, anyone know of any source of instructions to get VMware to run on FreeBSD-4.x ? -- Bill Schoolcraft PO Box 210076 San Francisco, CA 94121 "UNIX, A Way of Life !!!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 11:22:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 185FD37B4D7 for ; Thu, 23 Nov 2000 11:22:46 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eANJMj623093; Thu, 23 Nov 2000 11:22:45 -0800 (PST) Date: Thu, 23 Nov 2000 11:22:45 -0800 From: Alfred Perlstein To: rjackson Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Kernel linking errors Message-ID: <20001123112245.W18037@fw.wintelcom.net> References: <000801c0553f$4acd6810$0200a8c0@eru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000801c0553f$4acd6810$0200a8c0@eru>; from rjackson@stridernet.com on Thu, Nov 23, 2000 at 03:19:47AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * rjackson [001123 03:18] wrote: > I keep getting link time errors while building a custom kernel under freeBSD > 4.1 - Release. I've looked over the configuration file many times. I've > attached a copy of my configuration. The errors that I get are as follows: > > linking kernel > umass.o: In function `umass_cam_attach_sim': > umass.o(.text+0x1273): undefined reference to `cam_simq_alloc' Don't remove things you don't understand. Start from GENERIC again and try taking out only a couple of things at a time if you must. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 11:23:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id CC28D37B4C5 for ; Thu, 23 Nov 2000 11:23:46 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eANJNZx23113; Thu, 23 Nov 2000 11:23:35 -0800 (PST) Date: Thu, 23 Nov 2000 11:23:35 -0800 From: Alfred Perlstein To: Vitaly Dugaev Cc: freebsd-questions@FreeBSD.ORG Subject: Re: MySQL Message-ID: <20001123112335.X18037@fw.wintelcom.net> References: <005801c05557$c0860c20$c6642cc2@default> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <005801c05557$c0860c20$c6642cc2@default>; from chimsp@unicom.cv.ua on Thu, Nov 23, 2000 at 05:14:34PM +0300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Vitaly Dugaev [001123 07:24] wrote: > Please help me get some information how conect to MySQL from ODBC (Win 98). > > I have 12 computors in ethernet, in computer IP=200.0.0.1 I install FreBSD 4.0 with MySQL, but I can't or don't know how connect to them using ODBC (I want make program in Delphi as client). > > I am beginer Please wrap lines at 70 characters. You probably want to ask on the Mysql users list. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 11:34:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tomts5-srv.bellnexxia.net (tomts5.bellnexxia.net [209.226.175.25]) by hub.freebsd.org (Postfix) with ESMTP id 3A07B37B4C5 for ; Thu, 23 Nov 2000 11:34:52 -0800 (PST) Received: from HSE-Toronto-ppp168679.sympatico.ca ([64.229.46.174]) by tomts5-srv.bellnexxia.net (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001123193451.EEPH24509.tomts5-srv.bellnexxia.net@HSE-Toronto-ppp168679.sympatico.ca>; Thu, 23 Nov 2000 14:34:51 -0500 Date: Thu, 23 Nov 2000 14:35:30 -0500 (EST) From: Rajesh Saxena X-Sender: rookie@purple.haze To: freebsd-questions@FreeBSD.ORG Cc: chat@gtabug.org Subject: Problems playing mpegs in FreeBSD 4.2 Stable Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi.. I had initially installed FreeBSD 4.1 Release and I had no problems playing mpegs with smpeg-gtv or xmps. But as soon as I upgraded to 4.2 beta and now 4.2 stable both gtv and xmps crash immediately when I try to load a mpeg file. Is anyone else having this problem or knows how I can fix this? There usually aren't a lot of error messages except for today when gtv complained about this.. Fatal signal: Bus Error (SDL Parachute Deployed) Fatal signal: Segmentation Fault (SDL Parachute Deployed) gtv in free(): warning: junk pointer, too high to make sense. gtv in free(): warning: modified (chunk-) pointer. gtv in free(): warning: junk pointer, too high to make sense. gtv in free(): warning: junk pointer, too high to make sense. Nov 23 01:13:39 purple /kernel: pid 4959 (gtv), uid 1001: exited on signal 11 (c ore dumped) Segmentation fault - core dumped To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 11:43:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from satan.freebsdsystems.com (satan.freebsdsystems.com [24.69.168.5]) by hub.freebsd.org (Postfix) with ESMTP id 4631037B479 for ; Thu, 23 Nov 2000 11:43:25 -0800 (PST) Received: from satan.freebsdsystems.com (satan.freebsdsystems.com [24.69.168.5]) by satan.freebsdsystems.com (8.11.1/8.11.0) with ESMTP id eANJhCp24968; Thu, 23 Nov 2000 14:43:13 -0500 (EST) Date: Thu, 23 Nov 2000 14:43:12 -0500 (EST) From: Lanny Baron To: Alfred Perlstein Cc: Richard B Mahoney , freebsd-questions@FreeBSD.ORG Subject: Re: Restricting a users CPU usage -- Possible? In-Reply-To: <20001122180523.U18037@fw.wintelcom.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Here is how I manage cpu usage for shell users on one of my FreeBSD Freedom servers: shell:\ :cputime=30M:\ :datasize-cur=22M:\ :stacksize-cur=8M:\ :memorylocked-cur=10M:\ :memoryuse-cur=30M:\ :filesize=infinity:\ :coredumpsize=infinity:\ :maxproc-cur=6:\ :openfiles-cur=64:\ :priority=10:\ :requirehome@:\ :umask=022:\ :tc=default: Which is in /etc/login.conf What you need to do, is make a class inside login.conf and put in there, the values you want. Remember to do the following if you change your /etc/login.conf file: cap_mkdb /etc/login.conf --Lanny On Wed, 22 Nov 2000, Alfred Perlstein in the last wild and more than...: >* Richard B. Mahoney [001122 17:48] wrote: >> Dear Readers, >> >> I know its possible to restrict user disk storage quotas under FreeBSD >> but what about a user's CPU usage? I've searched for info on this and >> have come up empty handed. The reason I ask is as follows. >[snip] > >Well you can limit RAM usage via the login.conf(5) limiting facility. > >That ought to keep the programs from getting out of control and >swamping the box. > >> The other day Emacs kept climbing in this way and exceeded the >> available swap space. The system promptly stepped in and killed it by >> itself! I was in many ways delighted. Under any other system and a >> reboot would have been needed. > >Maybe we ought to switch the policy of out of memory so that the >kernel will seek and destroy all emacs processes... :) > >-- >-Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] >"I have the heart of a child; I keep it in a jar on my desk." > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of 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 Nov 23 11:53:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe44.law7.hotmail.com [216.33.236.80]) by hub.freebsd.org (Postfix) with ESMTP id 6849437B4C5 for ; Thu, 23 Nov 2000 11:53:56 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 23 Nov 2000 11:53:56 -0800 X-Originating-IP: [63.227.124.92] From: "Bert" To: Subject: installation from DOS Date: Thu, 23 Nov 2000 12:50:22 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C0554B.F18C8440" 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: 23 Nov 2000 19:53:56.0172 (UTC) FILETIME=[1CFDE0C0:01C05587] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C0554B.F18C8440 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi There, I downloaded all the files from the tucows FTP site but now = i'm not sure how to proceed. It says to copy the 5 .flp fies to a = floppy but how do i do that , some files are twice the size of an 1.44 = floppy. Any suggestions ? Regards, Bert. ------=_NextPart_000_0007_01C0554B.F18C8440 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi There, I downloaded all the files = from the=20 tucows FTP site but now i'm not sure how to proceed.  It says to = copy the 5=20 .flp fies to a floppy but how do i do that , some files are twice the = size of an=20 1.44 floppy.  Any suggestions ?
 
Regards,
Bert.
------=_NextPart_000_0007_01C0554B.F18C8440-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 11:56:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp7.thrunet.com (unknown [211.49.129.168]) by hub.freebsd.org (Postfix) with ESMTP id C481237B4CF for ; Thu, 23 Nov 2000 11:56:37 -0800 (PST) Received: from thrunet ([210.205.197.216]) by smtp7.thrunet.com with Microsoft SMTPSVC(5.5.1877.197.19); Fri, 24 Nov 2000 04:55:24 +0900 Date: Fri, 24 Nov 2000 04:57:26 +0900 From: "Online Korea" To: questions@freebsd.org Subject: questions´Ô ¾È³çÇϼ¼¿ä? X-AD2000-Serial: 1033 X-AD2000-Register: "¹ÚÀçÇö" MIME-Version: 1.0 Content-Type: text/html Content-Transfer-Encoding: base64 Message-ID: <08de424551917b0SMTP7@smtp7.thrunet.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG PEhUTUw+DQo8SEVBRD4NCjxNRVRBIE5BTUU9IkdFTkVSQVRPUiIgQ29udGVudD0iTWljcm9z b2Z0IERIVE1MIEVkaXRpbmcgQ29udHJvbCI+DQo8VElUTEU+PC9USVRMRT4NCjwvSEVBRD4N CjxCT0RZPg0KPFA+PEZPTlQgZmFjZT2xvLiyw7wgc2l6ZT0yPqaspqymrKaspqymrKaspqym rKaspqymrKaspqymrKaspqymrKaspqymrKaspqymrKaspqymrKaspqymrKaspqw8QlI+osQg v8C0w8DHIMCvuNMgx9G4trXwIA0KosU8L0ZPTlQ+PC9QPg0KPFA+PEZPTlQgZmFjZT2xvLiy w7wgc2l6ZT0yPiZuYnNwOyAiRGFkLCBJIGRvbid0IHdhbnQgdG8gZ28gdG8gc2Nob29sIHRv ZGF5LiwiIHNhaWQgDQp0aGUgYm95LjxCUj4mbmJzcDsgIldoeSBub3QsIHNvbj8iPEJSPiZu YnNwOyAiV2VsbCwgb25lIG9mIHRoZSBjaGlja2VucyBvbiB0aGUgDQpzY2hvb2wgZmFybSBk aWVkIGxhc3Qgd2VlayBhbmQgPEJSPiZuYnNwOyZuYnNwOyB3ZSBoYWQgY2hpY2tlbiBzb3Vw IGZvciBsdW5jaCANCnRoZSBuZXh0IGRheS4gQW5kIHRocmVlIGRheXMgYWdvIDxCUj4mbmJz cDsmbmJzcDsgb25lIG9mIHRoZSBwaWdzIGRpZWQgYW5kIHdlIA0KaGFkIHJvYXN0IHBvcmsg dGhlIG5leHQgZGF5LCwsLiI8QlI+Jm5ic3A7ICJCdXQgd2h5IGRvbid0IHlvdSB3YW50IHRv IGdvIA0KdG9kYXk/IjxCUj4mbmJzcDsgIkJlY2F1c2UgdGhlIEVuZ2xpc2ggdGVhY2hlciBk aWVkIHllc3RlcmRheSEiPEJSPiZuYnNwOyANCiIuLi4uLiI8L0ZPTlQ+PC9QPg0KPFA+PEZP TlQgZmFjZT2xvLiyw7wgc2l6ZT0yPiZuYnNwOyAivsa6/Cwgs6ogv8C0wyDH0LGzILChseIg vci+7i4iIMfPsO0gvNKz4sDMILi7x9+02S48QlI+Jm5ic3A7ICK/1iCwobHiIA0Kvci+7j8i PEJSPiZuYnNwOyAiwfazrSDB1r+hIMfQsbMgs/PA5b+hvK0gtN8gx9EguLa4rrChIMHXvvq0 wrWlILTZwL2zryDBob3JwLi3ziA8QlI+Jm5ic3A7Jm5ic3A7ILTfIL26x8G4piC41L76vu4u IA0Ksde4rrDtIDPAzyDA/L+htMIgtcXB9iDH0SC4triusKEgwde++rTCtaUgPEJSPiZuYnNw OyZuYnNwOyCx1yC02cC9ILOvv6G0wiC1xcH2ILrSsO2x4rimILjUvvqw7S4uLi4iPEJSPiZu YnNwOyANCiKx17extaUgv8C0w8C6IL/WIMfQsbO/oSCwobHiIL3Ivu4/IjxCUj4mbmJzcDsg Ir7uwaYgv7W+7iC8sbv9tNTAzCC1ub7GsKG8zLTcILi7vt8hIjxCUj4mbmJzcDsgDQoiLi4u Li4iPC9GT05UPjwvUD4NCjxQPjxGT05UIGZhY2U9sby4ssO8IHNpemU9Mj6ixCC/wLTDwMcg v7W+7iDH0bi2tfAgosUmbmJzcDsmbmJzcDsmbmJzcDsgPC9GT05UPjwvUD4NCjxQPjxGT05U IGZhY2U9sby4ssO8IHNpemU9Mj6iwiBJIGZlbHQgb24gdG9wIG9mIHRoZSANCndvcmxkJm5i c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7IA0KPC9GT05UPjwvUD4N CjxQPjxGT05UIGZhY2U9sby4ssO8IHNpemU9Mj6757b3wLogtKmxuLOqILy6sPjHz7jpILHi utDAzCDBwcC6ILDNwLogtOe/rMfPwfa/5C4gPEJSPrmwt9AsIL7utrIgu+e297XpwLogvLqw +MffwLsgtqe/oSC09SANCrDivNXH2MH2wfa4uCC067rOutDAxyC757b3tenAuiA8QlI+W7Oq uKYgusEhILO7sKEgw9aw7b7fXbbzsO0gu/2wosfVtM+02S4gPEJSPsDMv80gsLDAuiCx4rrQ wLsgs6rFuLO7tMIgx6XH9sDMICdvbiB0b3Agb2YgDQp0aGUgd29ybGQntvi0z7TZLjwvRk9O VD48L1A+DQo8UD48Rk9OVCBmYWNlPbG8uLLDvCBzaXplPTI+QTogSSBoZWFyZCB5b3Ugd2Vy ZSBlbmdhZ2VkIHRvIE1hcmlhbi48L0ZPTlQ+PC9QPg0KPFA+PEZPTlQgZmFjZT2xvLiyw7wg c2l6ZT0yPkI6IEFjdHVhbGx5LCBJIHdhcy48L0ZPTlQ+PC9QPg0KPFA+PEZPTlQgZmFjZT2x vLiyw7wgc2l6ZT0yPkE6IE9oLCByZWFsbHk/IFNvLCBob3cgZGlkIHlvdSBmZWVsIG9uIHRo ZSBuaWdodCBvZiANCnlvdXIgZW5nYWdlbWVudD88L0ZPTlQ+PC9QPg0KPFA+PEZPTlQgZmFj ZT2xvLiyw7wgc2l6ZT0yPkI6IEkgZmVsdCBsaWtlIEkgd2FzIG9uIHRvcCBvZiB0aGUgd29y bGQuPC9GT05UPjwvUD4NCjxQPjxGT05UIGZhY2U9sby4ssO8IHNpemU9Mj6h4SdvbiB0b3Ag b2YgdGhlIHdvcmxkJ7imIMH3v6rHz7jpIFu8vLvzILLAtOux4r+hXbbztMIgwMe5zMDMuOcg DQo8QlI+Jm5ic3A7ICdJIGZlbHQgb24gdG9wIG9mIHRoZSB3b3JsZC4ntMIgIry8u/MgssC0 67Hiv6EgwNa0wiC0wLOmwMy++rTZLiI8QlI+Jm5ic3A7IMHvLCAosbLA5cj3IA0KseK60MDM IMHBvtK02Sm4piC25sfVtM+02S48QlI+Jm5ic3A7IMjnyPcgW7HiutDAzCDBwb7Svu5dtvO0 wiDAx7nMt84gJ0kgZmVsdCBnb29kLie4uMC7ILv9sKLHz7HiIL2sv+yzqiANCjxCUj4mbmJz cDsgwMwgx6XH9rW1IL7LsO0gwNbAuLjpILCowaTAxyDHpcf2wLsgtPUgwN8gx9IgvPYgwNbA uyCwxb+hv+QuPC9GT05UPjwvUD4NCjxQPjxGT05UIGZhY2U9sby4ssO8IHNpemU9Mj6iwSAn b24gdG9wIG9mIHRoZSB3b3JsZCe0wiC8vLvzILLAtOux4r+hIMDWtMIgtMCzpiEuILHXt7i0 2bjpIA0KPEJSPiZuYnNwOyZuYnNwOyAnb3V0IG9mIHRoaXMgd29ybGQntMI/IMDMILy8u/PA xyDAzyCwsMH2IL7KsNQgsdm758fRW3dvbmRlcmZ1bF0sIA0KPEJSPiZuYnNwOyZuYnNwOyDI pMC6IMivu/PA+8DOW2ZhbnRhc3RpY13AzLb1ILbmwMy/ob/kLjwvRk9OVD48L1A+DQo8UD48 Rk9OVCBmYWNlPbG8uLLDvCBzaXplPTI+QToguN64rr7IsPogvuDIpcfRtNmw7SC16b76tMK1 pS48QlI+Qjogu+e9xyDAzLnMIMffvu4uPEJSPkE6IL7uLCANCsGkuLvAzL7fPyZuYnNwOyCx 17ehLL7gyKW9xMfRILHXs68gueO/oSCx4rrQwMwgvu62rr7uPzxCUj5COiC8vLvzwLsgvvLA uiCx4rrQwMy++sH2LjwvRk9OVD48L1A+DQo8UD48Rk9OVCBmYWNlPbG8uLLDvCBzaXplPTI+ osQgv8C0w8DHIMDPvu4mbmJzcDsgx9G4trXwIKLFPC9GT05UPjwvUD4NCjxQPjxGT05UIGZh Y2U9sby4ssO8IHNpemU9Mj4mbmJzcDsmbmJzcDsgodjAz77utbUgv7W+7r/NILCwwLogx/zF wrfOILG4vLogtce+7iANCsDWvcC0z7TZLjxCUj4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS08QlI+cXVlc3Rpb25ztNQgDQq+ yLPnx8+8vL/kPyA8L0ZPTlQ+PC9QPg0KPFA+PEZPTlQgZmFjZT2xvLiyw7wgc2l6ZT0yPsD6 yPG0wiDA/MituKYgwMy/68fYvK0gsK2757/NIDE6MbfOIL/csbm+7iDH0L3AwLsgx9IgvPYg wNa0wiA8QlI+osQgT25saW5lIEtvcmVhIA0KWyZuYnNwOyA8QSBocmVmPSJodHRwOi8vd3d3 Lm9say5jby5rciI+aHR0cDovL3d3dy5vbGsuY28ua3I8L0E+Jm5ic3A7IF0gosUgtvOw7SAN CsfVtM+02S48L0ZPTlQ+PC9QPg0KPFA+PEZPTlQgZmFjZT2xvLiyw7wgc2l6ZT0yPrjVwPos IMfjtvS++MDMIMbtwfYgteW3wSDBy7zbx9W0z7TZLiC6zrXwILPKsde3r7/uIL/rvK24pi4u Li4uLjwvRk9OVD48L1A+DQo8UD48Rk9OVCBmYWNlPbG8uLLDvCBzaXplPTI+wPrI8SDIuLvn v6G8rbTCIL+1vu4gwK+407/NILv9yLAgyLjIrb+hILD8vckgwNa0wiC60LXpsrIguMXAzyi/ +S2x3SksIDxCUj6/tb7uIMCvuNO/zSC9xyANCrv9yLC/oSDHyr/kx9Egu/3IsMi4yK0gx9Eg ua7A5b6/wLsguau34bfOILq4s7sgteW4rrDtIMDWvu6/5C48L0ZPTlQ+PC9QPg0KPFA+PEZP TlQgZmFjZT2xvLiyw7wgc2l6ZT0yPsCnv82wsMC6ILO7v+vAxyC8rbrxvbq4piC53r7Gurix 4iC/+MfPvcO46SCh7CA8QSANCmhyZWY9Im1haWx0bzpvbGtAb2xrLmNvLmtyIj5vbGtAb2xr LmNvLmtyPC9BPiCh7bfOIDxCUj4ieWVzIrbztMIgs7u/68DHILTkwOXAuyDB1r3DseIgDQq5 2bb4tM+02S48L0ZPTlQ+PC9QPg0KPFA+PEZPTlQgZmFjZT2xvLiyw7wgc2l6ZT0yPrHXuK6w 7SwgwPrI8SDA/MitIL/csbm+7iCwrcDHsKEgscOx3cfPvcUgutC16cC7IMCnx9gmbmJzcDsg PEEgDQpocmVmPSJodHRwOi8vd3d3Lm9say5jby5rci9sZWN0dXJlX2ZyYW1lLmh0bSI+osIg vcO5/LCtwMcgosIgPC9BPrW1IDxCUj4xyLi/oSDH0cfYvK0guau34bfOIA0Kvce9w8fPsO0g wNbAuLTPIMfRufggtem+7rq4sO0gvc3AuL3DuOkgwfax3SC9xcO7x9ggwda8vL/kLjwvRk9O VD48L1A+DQo8UD48Rk9OVCBmYWNlPbG8uLLDvCBzaXplPTI+uau34SC9w7n8sK3AxyC9xcO7 ILnmuf3AuiA8QSANCmhyZWY9Imh0dHA6Ly93d3cub2xrLmNvLmtyL2xlY3R1cmVfZnJhbWUu aHRtIj6iuiC/qbHiIKK4IDwvQT64piDFrLivx8+9xSDIxCCwrcDHIL3Fw7u29b+hIA0KwNa0 wjxCUj69w7n8sK3Ax7imIL3Fw7vHz73DuOkgwPrI8bChIMD8yK24piC15bfBIL3DufywrcDH uKYgx9ggteW4sLTktM+02S48L0ZPTlQ+PC9QPg0KPFA+PEZPTlQgZmFjZT2xvLiyw7wgc2l6 ZT0yPrmwt9AsIMD8yK0gMDItNTg4LTA1MTAgwLi3zrW1IL3Fw7vHz73HILz2IMDWsbi/5C48 L0ZPTlQ+PC9QPg0KPFA+PEZPTlQgZmFjZT2xvLiyw7wgc2l6ZT0yPr7GuavCybfPIMDMIMfQ vcC5/cDMIHF1ZXN0aW9uc7TUwMcgyLjIrSC9x7fCIMfiu/O/oSDA28C6ILq4xcbAzCANCrXH vvrAuLjpPEJSPsfVtM+02S48L0ZPTlQ+PC9QPg0KPFA+PEZPTlQgZmFjZT2xvLiyw7wgc2l6 ZT0yPrCou+fH1bTPtNkuPC9GT05UPjwvUD4NCjxQPjxGT05UIGZhY2U9sby4ssO8IHNpemU9 Mj5xdWVzdGlvbnO01LKytMIgaHR0cDovL2dvb3NpYS5jb20vZG9jL2hhbmRib29rL21haWwt YWR2YW5jZWQuaHRtbL+hIMDWtMIgwda80rimILq4sO0guN7AzyC15biusNQgDQq1x776vcC0 z7TZLjwvRk9OVD48L1A+DQo8UD48Rk9OVCBmYWNlPbG8uLLDvCBzaXplPTI+utLHyr/kx9Eg waS6uL+0tNm46SDBpLi7IMHLvNvH1bTPtNkuPEJSPjwvRk9OVD48L1A+DQo8L0JPRFk+DQo8 L0hUTUw+DQo= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 12: 7:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clhs.kiev.ua (ns.clhs.kiev.ua [195.123.34.130]) by hub.freebsd.org (Postfix) with ESMTP id 9FF7E37B479 for ; Thu, 23 Nov 2000 12:07:15 -0800 (PST) Received: (from mail@localhost) by ns.clhs.kiev.ua (8.8.8/8.8.8/Debian/GNU) id WAA26758 for ; Thu, 23 Nov 2000 22:03:30 +0200 Received: from visor.kiev.clearing(10.3.1.3) by ns.clhs.kiev.ua via smap (V2.1) id xma026753; Thu, 23 Nov 00 22:02:46 +0200 Received: from eugene (eugene.kiev.clearing [10.3.2.4]) by visor.clhs.kiev.ua (8.8.5/8.8.5) with SMTP id WAA26739 for ; Thu, 23 Nov 2000 22:02:55 +0200 Message-ID: <001701c05588$e3cf49e0$0402030a@kiev.clearing> From: "Eugene Ezhov" To: Subject: About ARP kernel messages Date: Thu, 23 Nov 2000 22:06:38 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0014_01C05599.A7368820" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0014_01C05599.A7368820 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, sirs I have installed FreeBSD-4.1 on my machine with two NICs such as 3Com 3C905B. One of them (xl1) is looking to the internal network with 10.x.x.x address and other one (xl0) is looking to the Internet with the real IP. The problem is following: kernel sends the message to my console - "arp: 10.x.x.x is on xl1 but got reply from xx:xx:xx:xx:xx:xx on xl0. Why? What I'm doing wrong? Is this message error or just warning? These are different networks but I'm getting this message. Thank you, Eugene Ezhov Clearing House JSB -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 6.5.8 for non-commercial use iQA/AwUBOh1crciLtpsXHvd8EQJSuACgy70h+VPdwk5JUrsqkrwgH4K2CeQAoJ3U 9Gzfuwne7qtCIb9oyg/mNoTt =3DOdd2 -----END PGP SIGNATURE----- ------=_NextPart_000_0014_01C05599.A7368820 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable
-----BEGIN PGP SIGNED = MESSAGE-----
Hash:=20 SHA1
 
Hello, sirs
 
I have installed FreeBSD-4.1 on = my machine=20 with two NICs such as 3Com
3C905B. One of them (xl1) is looking to = the=20 internal network with
10.x.x.x address and other one (xl0) is looking = to the=20 Internet with
the real IP.
 
The problem is following: kernel = sends the=20 message to my console -
"arp: 10.x.x.x is on xl1 but got reply from=20 xx:xx:xx:xx:xx:xx on xl0.
Why? What I'm doing wrong? Is this message = error or=20 just warning?
These are different networks but I'm getting this=20 message.
 
Thank you,
Eugene = Ezhov
Clearing House=20 JSB
 
-----BEGIN PGP = SIGNATURE-----
Version:=20 PGPfreeware 6.5.8 for non-commercial use <http://www.pgp.com>
 
iQA/AwUBOh1crciLtpsXHvd8EQJSuACgy70h+VPdwk5JUrsqkrwgH4K2CeQAoJ3U=
9Gzfuwne7qtCIb9oyg/mNoTt
=3DOdd2
-----END=20 PGP SIGNATURE-----
------=_NextPart_000_0014_01C05599.A7368820-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 12:25:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from spectre.honk.org (cr876208-a.flfrd1.on.wave.home.com [24.42.175.137]) by hub.freebsd.org (Postfix) with ESMTP id 852AE37B4C5 for ; Thu, 23 Nov 2000 12:25:44 -0800 (PST) Received: from spectre.honk.org (spectre.honk.org [24.42.175.137]) by spectre.honk.org (8.9.1/8.9.1) with SMTP id PAA21123 for ; Thu, 23 Nov 2000 15:25:49 -0500 Date: Thu, 23 Nov 2000 15:25:18 -0500 (EST) From: Marty Poulin To: freebsd-questions@freebsd.org Subject: PicoBSD questions Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sorry if this isn't the right place, but I didn't see a PicoBSD forum anywhere... I have a few questions that may or may not be really stupid, so please bear with me. I want to set up an old 486 as a gateway machine for a small internal network to the @HOME service via a cable modem. I've done this successfully at my own home using FreeBSD and a couple of old SMC NICs. The reason I want to use PicoBSD for this new setup is that it's for some *really* computer-illiterate people, and all they want is to hook their 2 pc's up to their cable modem, and have some basic firewall protection. I figure PicoBSD is a good choice because if they need to reload the firewall for whatever reason, all they will need to do is power off the 486 and power it back up again. No worries about hard disks, filesystems, etc. and the floppy can be write-protected. Now the questions: 1. What version of PicoBSD should I use? Network (router-like) or Router version or what? 2. How on earth do I configure PicoBSD so it loads the right drivers (ed0 and ed1 on 0x280 IRQ 3 and 0x300 IRQ 10, respectively) So far all I can do is boot into visual config mode and manually set up the correct IRQ's etc, but I can't find any way to make these changes permanent... 3. Is there any editing tool on PicoBSD? I need an editor to edit the config files, but I can't find vi or anything in the PicoBSD system. 4. Will PicoBSD support the DHCP requirements of @home? More specifically, @home requires not only a DHCP client, but also send the hostname (ca12345o) and request broadcast address, default gateway and a few other things I set in my /etc/dhclient.conf on FreeBSD. If anyone can help me with this, I'd really appreciate it. Please forward any replies to my email address - I don't subscribe to -questions because of the volume. Thanks - M - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 12:39:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from allcet.com (unknown [63.88.123.58]) by hub.freebsd.org (Postfix) with SMTP id 7C94137B479 for ; Thu, 23 Nov 2000 12:39:42 -0800 (PST) Received: (qmail 99023 invoked from network); 23 Nov 2000 20:38:21 -0000 Received: from cc49797-a.wlgrv1.pa.home.com (HELO cc64747a) (24.6.196.46) by buzz.allcet.com with SMTP; 23 Nov 2000 20:38:21 -0000 Message-ID: <005701c0558d$5ef77800$2ec40618@home> From: "Francis Abella" To: Subject: How do I move my server? Date: Thu, 23 Nov 2000 15:38:42 -0500 Organization: AllCet.com MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hey all! I have to move from one coast to another (U.S.) and am scared s@#tless about moving my server. I've a hand-me-down Compaq Proliant 1600 with 4 hot-swappable drives running FreeBSD 3.4. I'm sure many of you have moved your computers before, but this is my first time. Does anyone have any insight to what to specifically do and watch out for? Is there some sort of park utility for the hard drives? Should I pull the hard drives before shipping the server? Does anyone have any experience with either Fedex or UPS and have any recommendations on either? or should I try to check "my baby" on as luggage with me? I've done a complete dump of all the info on my hard drives, but am clueless as to the next step! Please help! TYIA abellaf@allcet.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 12:46:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tomts7-srv.bellnexxia.net (tomts7.bellnexxia.net [209.226.175.40]) by hub.freebsd.org (Postfix) with ESMTP id 6E19537B4C5 for ; Thu, 23 Nov 2000 12:46:15 -0800 (PST) Received: from fauvelle ([64.229.134.79]) by tomts7-srv.bellnexxia.net (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001123204614.FTOH12366.tomts7-srv.bellnexxia.net@fauvelle> for ; Thu, 23 Nov 2000 15:46:14 -0500 Received: by localhost with Microsoft MAPI; Thu, 23 Nov 2000 15:54:53 -0500 Message-ID: <01C05565.B7CB8480.ffauvelle@plaintree.com> From: Francis Fauvelle To: "'questions@freebsd.org'" Subject: FreeBSD and Windows 2000 pro Date: Thu, 23 Nov 2000 15:54:52 -0500 Organization: Plaintree Systems 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 X-Loop: FreeBSD.ORG Installing FreeBSD on a laptop running win2k pro. The laptop is a Toshiba Satellite 2100CDS with 96MB RAM 4.3 GB HDD (2GB for win2k and the reste for FreeBSD) a PCMCIA network card (3Com 574 10/100). I'm using Red Hat and Slackware on other systems but FreeBSD has always attracted me to try it. I've got FreeBSD 4.0 and i was asking myself how i can dual boot both win2k and FreeBSD on the same machine. The laptop runs Linux and XFree86 so compatibility should not be an issue. thanks for all the info you can send. /Francis Fauvelle Product Verification Specialist Plaintree Systems Inc Suite 1300, 2081 Merivale Road Nepean, Ontario K2G 1G9 phone 613-274-7979 fax 613-274-7538 ffauvelle@plaintree.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 12:56:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from uranus.interscope.ro (unknown [193.226.188.3]) by hub.freebsd.org (Postfix) with ESMTP id 2A8FA37B4CF for ; Thu, 23 Nov 2000 12:56:12 -0800 (PST) Received: by URANUS with Internet Mail Service (5.5.2650.21) id ; Thu, 23 Nov 2000 22:54:17 +0200 Message-ID: From: Stefan KORONKA To: "'nicu.matau@rdsnet.ro'" Cc: freebsd-questions@FreeBSD.ORG Subject: RE: mirror Date: Thu, 23 Nov 2000 22:54:16 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi Nicu You should made your homework first: Name: www.ro.freebsd.org Address: 193.226.13.67 Maybe you should try www2/ftp2.ro.freebsd.org. And no, i am not behind that server :) Stefan > > Helo there > > I want to create an romanian mirror: www.ro.freebsd.org and > ftp.ro.freebsd.org > > If you want that, please contact me. > > p.s.:for start how much free space should i have?? > > > -- > -------------------------------------------------------------- > ---------- > Nicu Matau > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 13:26:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.prod.itd.earthlink.net [207.217.121.50]) by hub.freebsd.org (Postfix) with ESMTP id 0E27137B4CF for ; Thu, 23 Nov 2000 13:26:32 -0800 (PST) Received: from gunnar.weygold.edu (pool0446.cvx14-bradley.dialup.earthlink.net [209.179.39.191]) by avocet.prod.itd.earthlink.net (EL-8_9_3_3/8.9.3) with SMTP id NAA26029; Thu, 23 Nov 2000 13:26:10 -0800 (PST) From: Gunnar H Reichert-Weygold Organization: The Pagan Library To: "Michael Vince" , Subject: Re: IDE Tape drive, comes up but doesn't work Date: Thu, 23 Nov 2000 13:23:27 -0800 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain References: <016d01c05537$7422e4e0$2201a8c0@michaelvince.com> In-Reply-To: <016d01c05537$7422e4e0$2201a8c0@michaelvince.com> MIME-Version: 1.0 Message-Id: <00112313241300.00339@gunnar.weygold.edu> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Have you enabled ATAPI tape drive support in the kernel? On Thu, 23 Nov 2000, Michael Vince wrote: > I installed a IDE tape drive, it comes up in dmesg > ast0: TAPE at ata0-slave using PIO4 > But I cant backup anything onto it > doing "tar -cvf /dev/ast0 /etc" just makes it create a tar file in /dev and > not backup to tape > Doing "MAKEDEV all" doesn't create the device either > Can some one help? > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Beware of a tall dark man with a spoon up his nose. Above address is an autoresponder! Correct email address: gunnar at paganlibrary dot com Gunnar H Reichert-Weygold http://www.paganlibrary.com Spam Filter Your Mail! Go to http://www.Brightmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 14: 2:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp02.teb1.iconnet.net (smtp02.teb1.iconnet.net [209.3.218.43]) by hub.freebsd.org (Postfix) with ESMTP id 4878637B479; Thu, 23 Nov 2000 14:02:37 -0800 (PST) Received: from bellatlantic.net (client-151-198-117-158.nnj.dialup.bellatlantic.net [151.198.117.158]) by smtp02.teb1.iconnet.net (8.9.1/8.9.1) with ESMTP id RAA03148; Thu, 23 Nov 2000 17:01:39 -0500 (EST) Message-ID: <3A1D93C2.9DEC01F1@bellatlantic.net> Date: Thu, 23 Nov 2000 17:01:38 -0500 From: Sergey Babkin X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 4.0-19990626-CURRENT i386) X-Accept-Language: en, ru MIME-Version: 1.0 To: walter@pelissero.org Cc: questions@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: SVR4 missing syscall References: <14873.23011.159826.718978@hyde.lpds.sublink.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Walter C. Pelissero" wrote: > > I'm trying to run a SCO SVR4 executable on FreeBSD but I get a SIGSYS > (invalid system call) at the very beginning. Here is the kdump: > > 39525 ktrace RET ktrace 0 > 39525 ktrace CALL sigprocmask(0x1,0x28061000,0x28061010) > 39525 ktrace RET sigprocmask 0 > 39525 ktrace CALL sigprocmask(0x3,0x28061010,0) > 39525 ktrace RET sigprocmask 0 > 39525 ktrace CALL sigprocmask(0x1,0x28061000,0x28061010) > 39525 ktrace RET sigprocmask 0 > 39525 ktrace CALL sigprocmask(0x3,0x28061010,0) > 39525 ktrace RET sigprocmask 0 > 39525 ktrace CALL sigprocmask(0x1,0x28061000,0x28061010) > 39525 ktrace RET sigprocmask 0 > 39525 ktrace CALL sigprocmask(0x3,0x28061010,0) > 39525 ktrace RET sigprocmask 0 > 39525 ktrace CALL execve(0xbfbff9a3,0xbfbff880,0xbfbff88c) > 39525 ktrace NAMI "./scobin" > 39525 ktrace NAMI "/compat/svr4/usr/lib/libc.so.1" > 39525 scobin RET execve 0 > 39525 scobin CALL getuid > 39525 scobin RET getuid 1001/0x3e9 > 39525 scobin CALL getuid > 39525 scobin RET getuid 1001/0x3e9 > 39525 scobin CALL getgid > 39525 scobin RET getgid 0 > 39525 scobin CALL getgid > 39525 scobin RET getgid 0 > 39525 scobin CALL setlogin(0x72,0x805056c) > 39525 scobin RET setlogin 0 > 39525 scobin CALL setlogin(0x28,0x280a9764) > 39525 scobin RET setlogin 0 > 39525 scobin CALL break(0x8051580) > 39525 scobin RET break 0 > 39525 scobin CALL setlogin(0x68,0x8049830) > 39525 scobin RET setlogin 0 > 39525 scobin CALL getpid > 39525 scobin RET getpid 39525/0x9a65 > 39525 scobin CALL old.lstat > 39525 scobin PSIG SIGSYS SIG_DFL > 39525 scobin NAMI "scobin.core" > > Which call is it about? I see an "old.lstat" but I couldn't find any I believe old.ldstat is the name of BSD syscall with the same number. The other syscall names are also not SVR4 but BSD, kdump has the same problem with Linux binaries too. -SB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 14:15:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id A154837B4C5 for ; Thu, 23 Nov 2000 14:15:43 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eANMFff27133; Thu, 23 Nov 2000 14:15:41 -0800 (PST) Date: Thu, 23 Nov 2000 14:15:41 -0800 From: Alfred Perlstein To: Francis Abella Cc: freebsd-questions@FreeBSD.ORG Subject: Re: How do I move my server? Message-ID: <20001123141541.A18037@fw.wintelcom.net> References: <005701c0558d$5ef77800$2ec40618@home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <005701c0558d$5ef77800$2ec40618@home>; from abellaf@allcet.com on Thu, Nov 23, 2000 at 03:38:42PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Francis Abella [001123 12:39] wrote: > Hey all! > > I have to move from one coast to another (U.S.) and am scared s@#tless about > moving my server. > > I've a hand-me-down Compaq Proliant 1600 with 4 hot-swappable drives running > FreeBSD 3.4. > > I'm sure many of you have moved your computers before, but this is my first > time. Does anyone have any insight to what to specifically do and watch out > for? > > Is there some sort of park utility for the hard drives? > > Should I pull the hard drives before shipping the server? > > Does anyone have any experience with either Fedex or UPS and have any > recommendations on either? or should I try to check "my baby" on as luggage > with me? > > I've done a complete dump of all the info on my hard drives, but am clueless > as to the next step! Dissassemble it completely and use insane amounts of packing material (bubble wrap and static bags). Both UPS and FedEx are terrible shipping companies. I used UPS to ship all my computer equipment out from NYC to CA. Results: 1 Broken monitor 3 Broken drives 1 Box jolted so hard that: the soundcard came out of the slot even though it was screwed in 1 CPU dislodged from the dual board 1 Box smashed so badly that the front of case had the plastic shattered. I've seen FedEx guys shipping monitors just tumbling the boxes out of the truck onto the street. Fear these guys. And if you do a UPS claim they insist that you ship the equipment back to them to have it assesed unless you become beligerant with thier representatives. A better idea would be to get an extra plane ticket and sit the computer next to you if possible. :) best of luck, -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 14:25:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from deliver.hccnet.nl (deliver.hccnet.nl [193.172.127.77]) by hub.freebsd.org (Postfix) with ESMTP id 0FE4E37B4C5 for ; Thu, 23 Nov 2000 14:25:53 -0800 (PST) Received: from parmenides.utp.net by deliver.hccnet.nl via uds46-123.dial.hccnet.nl [193.173.123.46] with ESMTP id XAA17076 (8.8.8/1.13); Thu, 23 Nov 2000 23:25:45 +0100 (MET) Received: from localhost (janko@localhost) by parmenides.utp.net (8.9.3/8.9.3) with ESMTP id XAA01058; Thu, 23 Nov 2000 23:25:50 +0100 (CET) (envelope-from janko@compuserve.com) X-Authentication-Warning: parmenides.utp.net: janko owned process doing -bs Date: Thu, 23 Nov 2000 23:25:50 +0100 (CET) From: Janko van Roosmalen X-Sender: janko@parmenides.utp.net To: TStev84666@aol.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Help for novice/beginner programmer. In-Reply-To: <23.3dd36fc.274d1d32@aol.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You probably will find www.devshed.com a valuable resource. ===Janko van Roosmalen - Vught - Netherlands=== On Wed, 22 Nov 2000 TStev84666@aol.com wrote: > > > > I am a beginner programmer who is self taught and struggling to understand > different languages (Free Bsd, PHP, ZEND, PERL, etc.) I have some PC > knowledge but I am confused in trying to find solutions for my web site. ( > Bulk email, Site optimization, indexing and, etc.) I am currently studying > Beginner's PERL. > Any suggestions are very helpful. I have no interest in becoming a pro > programmer but I enjoy hands on experience with my business. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 14:43:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mta.teaser.net (math.teaser.net [213.91.2.4]) by hub.freebsd.org (Postfix) with ESMTP id C45AF37B4D7 for ; Thu, 23 Nov 2000 14:42:59 -0800 (PST) Received: from titine.fr.eu.org (Cour-N1D33-120.teaser.net [213.91.33.120]) by mta.teaser.net (Postfix) with ESMTP id 216D96C8D5 for ; Thu, 23 Nov 2000 23:42:53 +0100 (CET) Received: by titine.fr.eu.org (Postfix, from userid 1000) id 7BE333A20D; Thu, 23 Nov 2000 23:18:13 +0100 (CET) X-Attribution: Jaco To: "freebsd-questions@freebsd.org" Subject: About SHM{ALL|MIN|MAX...} From: Eric Jacoboni Date: 23 Nov 2000 23:18:13 +0100 In-Reply-To: Chip's message of "Tue, 21 Nov 2000 06:38:01 -0800" Message-ID: <87u28yjpsq.fsf_-_@titine.fr.eu.org> Lines: 12 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Just wonder about the default values of these options in a kernel config : i've found no explanations of their recommended values nor how they can modify the system/applications behaviour... Nothing in the handbook, nothing in the Complete FreeBSD. Is there some document explaining their configuration ? Thanks in advance, -- Éric Jacoboni, né il y a 1278378703 secondes. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 14:44:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 7D2C737B479 for ; Thu, 23 Nov 2000 14:44:28 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eANMiQl27750; Thu, 23 Nov 2000 14:44:26 -0800 (PST) Date: Thu, 23 Nov 2000 14:44:26 -0800 From: Alfred Perlstein To: Eric Jacoboni Cc: "freebsd-questions@freebsd.org" Subject: Re: About SHM{ALL|MIN|MAX...} Message-ID: <20001123144426.C18037@fw.wintelcom.net> References: <87u28yjpsq.fsf_-_@titine.fr.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: <87u28yjpsq.fsf_-_@titine.fr.eu.org>; from jaco@teaser.fr on Thu, Nov 23, 2000 at 11:18:13PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Eric Jacoboni [001123 14:43] wrote: > Hi, > > Just wonder about the default values of these options in a kernel > config : i've found no explanations of their recommended values > nor how they can modify the system/applications behaviour... > > Nothing in the handbook, nothing in the Complete FreeBSD. Is there > some document explaining their configuration ? Yes, grab a copy of the most recent GENERIC kernel, in 4.2 they are documented. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 15: 2:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailrelay.theboss.net (mailrelay.theboss.net [206.191.102.53]) by hub.freebsd.org (Postfix) with ESMTP id CE21137B4E5 for ; Thu, 23 Nov 2000 15:02:09 -0800 (PST) Received: from pyth.pith ([206.191.102.217]) by mailrelay.theboss.net (8.9.1b+Sun/8.9.1) with ESMTP id PAA23587 for ; Thu, 23 Nov 2000 15:59:01 -0700 (MST) Received: (from chris@localhost) by pyth.pith (8.9.3/8.9.3) id QAA04132 for freebsd-questions@freebsd.org; Thu, 23 Nov 2000 16:00:13 -0700 (MST) (envelope-from chris) From: chris Message-Id: <200011232300.QAA04132@pyth.pith> Subject: Mp3 to wav To: freebsd-questions@freebsd.org Date: Thu, 23 Nov 2000 16:00:09 -0700 (MST) 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 X-Loop: FreeBSD.ORG Hello. I am trying to convert some mp3s to wav format so I can play them on a normal cd player but I am having considerable trouble. Does anyone have any idea how to go about doing this?? TIA, Chris Moline To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 15:21: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sr14.nsw-remote.bigpond.net.au (sr14.nsw-remote.bigpond.net.au [24.192.3.29]) by hub.freebsd.org (Postfix) with ESMTP id B7B3D37B479 for ; Thu, 23 Nov 2000 15:21:02 -0800 (PST) Received: from freebsd.freebsd.org (CPE-203-45-68-28.nsw.bigpond.net.au [203.45.68.28]) by sr14.nsw-remote.bigpond.net.au (Pro-8.9.3/8.9.3) with SMTP id KAA03185; Fri, 24 Nov 2000 10:18:54 +1100 (EDT) From: Danny To: "Vitaly Dugaev" , Subject: Re: MySQL Date: Fri, 24 Nov 2000 21:18:10 +1100 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain References: <005801c05557$c0860c20$c6642cc2@default> MIME-Version: 1.0 Message-Id: <00112421190305.00363@freebsd.freebsd.org> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Send a email to this mailing list And they can help you better On Fri, 24 Nov 2000, Vitaly Dugaev wrote: > >%_Please help me get some information how conect to MySQL from ODBC (Win 98). > > I have 12 computors in ethernet, in computer IP=200.0.0.1 I install FreBSD 4.0 with MySQL, but I can't or don't know how connect to them using ODBC (I want make program in Delphi as client). > > I am beginer > > ---------------------------------------- Content-Type: text/html; name="unnamed" 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 Thu Nov 23 15:53:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from imo-d09.mx.aol.com (imo-d09.mx.aol.com [205.188.157.41]) by hub.freebsd.org (Postfix) with ESMTP id 2998537B4C5 for ; Thu, 23 Nov 2000 15:53:18 -0800 (PST) Received: from SUPERZERO001@aol.com by imo-d09.mx.aol.com (mail_out_v28.33.) id n.3d.3f2014c (6932) for ; Thu, 23 Nov 2000 18:53:11 -0500 (EST) From: SUPERZERO001@aol.com Message-ID: <3d.3f2014c.274f07e7@aol.com> Date: Thu, 23 Nov 2000 18:53:11 EST Subject: hardware for BSD To: questions@freebsd.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="part1_3d.3f2014c.274f07e7_boundary" Content-Disposition: Inline X-Mailer: Unknown sub 171 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --part1_3d.3f2014c.274f07e7_boundary Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Hello there i purchase a freebsd software package package from best buy around a week ago. I read the book that came with it, and still trying to find out what are the hardware configurations. I really want to try the system out but still not sure what type of hardware i should get,, should i get a pentium 2 or pentium 3,, right know i have a pentium 3 from intel. By the way the package that i purchased has 6 cd roms, and no floppies, when i install those cd's the computer doesn't seem to pick it up, I was trying to experiment to see if the cd's would work on my dvd rom. I want to stay with my windows 98 system, and put free BSD on another computer. Please email me with more specific details. Thank you very much. --part1_3d.3f2014c.274f07e7_boundary Content-Type: text/html; charset="US-ASCII" Content-Transfer-Encoding: 7bit Hello there i purchase a freebsd software package package from best buy
around a week ago. I read the book that came with it, and still trying to
find out what are the hardware configurations. I really want to try the
system out but still not sure what type of hardware i should get,, should i
get a pentium 2 or pentium 3,, right know i have a pentium 3 from intel. By
the way the package that i purchased has 6 cd roms, and no floppies, when i
install those cd's the computer doesn't seem to pick it up, I was trying to
experiment to see if the cd's would work on my dvd rom. I want to stay with
my windows 98 system, and put free BSD on another computer. Please email me
with more specific details. Thank you very much.
--part1_3d.3f2014c.274f07e7_boundary-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 16:24:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donkeykong.gpcc.itd.umich.edu (donkeykong.gpcc.itd.umich.edu [141.211.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 4337337B479 for ; Thu, 23 Nov 2000 16:24:05 -0800 (PST) Received: from pacman.gpcc.itd.umich.edu (smtp@pacman.gpcc.itd.umich.edu [141.211.2.150]) by donkeykong.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id TAA06868; Thu, 23 Nov 2000 19:24:04 -0500 (EST) Received: from localhost (timcm@localhost) by pacman.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id TAA04883; Thu, 23 Nov 2000 19:24:03 -0500 (EST) Date: Thu, 23 Nov 2000 19:24:03 -0500 (EST) From: Tim McMillen X-Sender: timcm@pacman.gpcc.itd.umich.edu To: Bill Schoolcraft Cc: FreeBSD Subject: Re: VMware for FreeBSD ? In-Reply-To: <3A1D6AE4.EC7C277A@wiliweld.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I can get it running, but not well. It runs and boot windows 98 inside of it. I even got freebsd to boot inside of it. But I can't get full screen mode or networking to work. Also it's so slooooooooow. Windows also doesn't like the video card that vmware emulates, because I can only get 640x480. It also doesn't see my cd drive even though booting into windows for real the cd drive is fine. Vmware doesn't support freebsd so they aren't too much help but try the documentation at their site www.vmware.com/support/ Did you get the port to install? After that make sure to mount linprocfs. Do you get it to run? Tim On Thu, 23 Nov 2000, Bill Schoolcraft wrote: > Hello, anyone know of any source of instructions to get VMware to run on > FreeBSD-4.x ? > > -- > Bill Schoolcraft > PO Box 210076 > San Francisco, CA 94121 > > "UNIX, A Way of Life !!!" > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 23 16:33:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id 6AB4237B479 for ; Thu, 23 Nov 2000 16:33:22 -0800 (PST) Received: by heorot.1nova.com (Postfix, from userid 1000) id 0060E189B; Wed, 22 Nov 2000 16:56:48 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id ED322189A for ; Wed, 22 Nov 2000 16:56:48 +0000 (GMT) Date: Wed, 22 Nov 2000 16:56:48 +0000 (GMT) From: Rick Hamell To: FreeBSD-questions Subject: Ifconfig Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How do I get Ifconfig to configure my network card (fxp1) into half-duplex? Also, dose anyone happen to know if the Intel Express 10/100 Stackable Hubs are half-duplex? My old Kingston 10mbs card (da0) worked just fine, and all I did was add a 2nd Intel (fxp1) 100mbs card... Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***FreeBSD - The Power to Serve! http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 17: 0:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from grumpy.dyndns.org (cm-24-246-28-166.toney.mediacom.ispchannel.com [24.246.28.166]) by hub.freebsd.org (Postfix) with ESMTP id 0B08A37B479 for ; Thu, 23 Nov 2000 17:00:38 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by grumpy.dyndns.org (8.11.1/8.11.1) with ESMTP id eAO10XS77289; Thu, 23 Nov 2000 19:00:35 -0600 (CST) (envelope-from dkelly@grumpy.dyndns.org) Message-Id: <200011240100.eAO10XS77289@grumpy.dyndns.org> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: Rick Hamell Cc: FreeBSD-questions From: David Kelly Subject: Re: Ifconfig In-reply-to: Message from Rick Hamell of "Wed, 22 Nov 2000 16:56:48 GMT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Nov 2000 19:00:33 -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Rick Hamell writes: > > How do I get Ifconfig to configure my network card (fxp1) into > half-duplex? Also, dose anyone happen to know if the Intel Express 10/100 > Stackable Hubs are half-duplex? My old Kingston 10mbs card (da0) worked > just fine, and all I did was add a 2nd Intel (fxp1) 100mbs card... If its a hub then it is half-duplex, not full-duplex. You have to have a switch or dedicated point-to-point wire to run full-duplex. By default FreeBSD autonegotiates on the fxp driver. If you are connected to a hub then its smart enough to go half-duplex. Here is an example of an fxp which has decided to be full duplex at 100: grumpy: {1013} ifconfig fxp0 fxp0: flags=8843 mtu 1500 [snip] media: autoselect (100baseTX ) status: active supported media: autoselect 100baseTX 100baseTX 10baseT/UTP 10baseT/UTP grumpy: {1014} Were I to yank the wire and insert into a 10baseT hub then it will automatically do the right thing without any additional help. Notice the media: line says, "autoselect" then in parenthisis it shows what it has decided to do. I believe if one wanted to force half duplex 100baseTX then "ifconfig fxp1 media 100baseTX" would do it. Then to manually force full duplex guessing from the man page on fxp (haven't tried it) one would have to do "ifconfig fxp1 media 100baseTX mediaopt full-duplex". -- 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 Thu Nov 23 17: 2:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-server.tampabay.rr.com (unknown [65.32.2.68]) by hub.freebsd.org (Postfix) with ESMTP id B226C37B4C5 for ; Thu, 23 Nov 2000 17:02:19 -0800 (PST) Received: from craig (653410hfc75.tampabay.rr.com [65.34.10.75]) by smtp-server.tampabay.rr.com (8.9.3/8.9.3) with SMTP id UAA04759 for ; Thu, 23 Nov 2000 20:02:19 -0500 (EST) From: "Craig" To: Subject: Probing Devices Locks up Dell PC Date: Thu, 23 Nov 2000 20:02:19 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG A few days ago, I obtained the kern.flp and mfsroot.flp disks to install FreeBSD on my Dell PC -- a Pentium III/1000Mhz, 256 megs RAM. When I try to install FreeBSD, I get to the blue "probing devices" screen and my PC locks up. I can leave my PC on overnight and it will still be on the same screen the next morning. I've even gone into Windows and printed a System Resource Report of my current IRQ and port settings for each hardware device and then matched that information to the drivers screen in FreeBSD. I'm using two Intel Ultra ATA Controllers and am not using any SCSI devcies so I am disabling all of the SCSI drivers from the selection list. Also, I've tried disabling all of the drivers such as all of the network drivers, etc.(except the bare minimum like the floppy driver) and I still get stuck on the probing devices screen. Can anyone help me get by this problem? Pushing this reset button so many times is starting to get annoying because it reminds me so much of Windows! Thanks! Craig To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 17:11:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from grumpy.dyndns.org (cm-24-246-28-166.toney.mediacom.ispchannel.com [24.246.28.166]) by hub.freebsd.org (Postfix) with ESMTP id ABE4837B479 for ; Thu, 23 Nov 2000 17:11:27 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by grumpy.dyndns.org (8.11.1/8.11.1) with ESMTP id eAO1AZS77311; Thu, 23 Nov 2000 19:10:35 -0600 (CST) (envelope-from dkelly@grumpy.dyndns.org) Message-Id: <200011240110.eAO1AZS77311@grumpy.dyndns.org> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: Alfred Perlstein Cc: Francis Abella , freebsd-questions@FreeBSD.ORG From: David Kelly Subject: Re: How do I move my server? In-reply-to: Message from Alfred Perlstein of "Thu, 23 Nov 2000 14:15:41 PST." <20001123141541.A18037@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 23 Nov 2000 19:10:35 -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alfred Perlstein writes: > Dissassemble it completely and use insane amounts of packing material > (bubble wrap and static bags). Do not use foam peanuts as your delicate parts will sink until they are right next to the outside edges and will get full impact on those sides. > A better idea would be to get an extra plane ticket and sit the > computer next to you if possible. :) Suspect FAA regs will not allow luggage in a seat, only under or over. It may fit in one of the "carry on luggage" roll around suitcases which are popular these days. Can get one for $20 at Walmart or Kmart. Then use dense foam to make custom fit. If its too large for over/under seat then often one can carry on a large piece to be stored in a closet in the galley. The only way to get real answers is to call the airlines and ask. Make sure they know its a fragile computer worth $10,000 and they'll cut you some slack simply to keep from having to handle the thing themselves. Or drive it yourself in the car. -- 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 Thu Nov 23 17:15:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from post.webmailer.de (natmail2.webmailer.de [192.67.198.65]) by hub.freebsd.org (Postfix) with ESMTP id 2256B37B4C5 for ; Thu, 23 Nov 2000 17:15:17 -0800 (PST) Received: from localhost.localdom (p3E9E1598.dip.t-dialin.net [62.158.21.152]) by post.webmailer.de (8.9.3/8.8.7) with ESMTP id CAA13933; Fri, 24 Nov 2000 02:15:13 +0100 (MET) Received: from masterpc (master [192.168.0.1]) by localhost.localdom (8.11.1/8.11.1) with ESMTP id eAO0DV341387; Fri, 24 Nov 2000 01:13:31 +0100 (CET) Date: Fri, 24 Nov 2000 01:13:38 -0800 From: Boris X-Mailer: The Bat! (v1.46d) Personal Reply-To: Boris X-Priority: 3 (Normal) Message-ID: <9516316251.20001124011338@x-itec.de> To: "T.K C.Chua" Cc: questions@FreeBSD.ORG Subject: Re: Mailserver 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 X-Loop: FreeBSD.ORG Hello T.K, Wednesday, November 22, 2000, 11:22:47 PM, you wrote: TKCC> 1. I'm not quite clear the mailserver is setup or not at server, TKCC> so, how do I check? Telnet on port 25 of the server or port 109/110 if there is no reply, no mailserver is enabled TKCC> 3. What is mx-record? A mx-record is an entry in a dns server. If i want to send mail to www.domain.com for example, we need to know where to send the mail to this domain, so we are looking at the mx-record to see where to send to (internally). TKCC> I'm new in FreeBSD but getting alot document to help me out. Maybe you should buy some books about DNS and Sendmail as well as some books about routing. -- Best regards, Boris mailto:koester@x-itec.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 17:39:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from berzerk.gpcc.itd.umich.edu (berzerk.gpcc.itd.umich.edu [141.211.2.162]) by hub.freebsd.org (Postfix) with ESMTP id 7D56437B4C5 for ; Thu, 23 Nov 2000 17:39:46 -0800 (PST) Received: from pacman.gpcc.itd.umich.edu (smtp@pacman.gpcc.itd.umich.edu [141.211.2.150]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id UAA13642; Thu, 23 Nov 2000 20:39:45 -0500 (EST) Received: from localhost (timcm@localhost) by pacman.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id UAA09988; Thu, 23 Nov 2000 20:39:45 -0500 (EST) Date: Thu, 23 Nov 2000 20:39:45 -0500 (EST) From: Tim McMillen X-Sender: timcm@pacman.gpcc.itd.umich.edu To: "Ing. Guillermo R. Martinez Hernandez" Cc: freebsd-questions@freebsd.org Subject: RE: help!!!! i forget passwd root and i have ttys close In-Reply-To: <000c01c05585$df13c500$9d2e22c8@Lumac> Message-ID: 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 X-Loop: FreeBSD.ORG On Thu, 23 Nov 2000, Ing. Guillermo R. Martinez Hernandez wrote: > Tim si Hablas espa=F1ol seria fabuloso!!! > I worked whit floppy but i can not mount root file system, i thing if a m= ay > put my kernel of my system in one floppy without rc file ( or this file w= hit > other config ) maybe i can change my passwd of root ( in this moment i ha= ve > login of admin maybe is util ) Yes I'm now eating some roast crow right now. I had assumed that you could use the boot floppies to get to a shell prompt and mount the root filesystem, because I can in OpenBSD. I guess that's what I get for assuming. Apparently you also need the fixit floppy. So create the fixit by writing the fixit.flp image to a floppy with dd. Then boot into sysinstall either with the boot floppies or an installation cd and go to the fixit option. The fixit.flp file is on an installation cd or at ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/4.1.1-RELEASE/floppies Then you should be able to mount your root filesystem rw and fix your password. =20 =09=09=09=09=09Tim > Thanks for all and i Wait for your help >=20 > Guillermo Mtz >=20 > ----- Original Message ----- > From: Tim McMillen > To: Ing. Guillermo R. Martinez Hernandez > Sent: Thursday, November 23, 2000 10:04 AM > Subject: RE: help!!!! i forget passwd root and i have ttys close >=20 >=20 >=20 >=20 > The advice others gave will definitely work. Just boot from floppy instea= d > of dropping to single user. You have to follow the instructions correctl= y > and especially the instructions in the FAQ link they gave. You need to > mount root filesystem read/write. > Buena suerte, >=20 > Tim >=20 >=20 > On Thu, 23 Nov 2000, Ing. Guillermo R. Martinez Hernandez wrote: >=20 > > > > I did, but can not change the passwd, no show next step for change > passswd, > > only show the window in where you choice this option and dont change to > next > > windows ? > > > > you have other idea ? > > > > Please :-) > > > > Guillermo > > > > > > > > ----- Original Message ----- > > From: Crist J . Clark > > To: Ing. Guillermo R. Martinez Hernandez > > Sent: Thursday, November 23, 2000 12:42 AM > > Subject: Re: help!!!! i forget passwd root and i have ttys close > > > > > > > On Thu, Nov 23, 2000 at 01:12:33AM -0600, Ing. Guillermo R. Martinez > > Hernandez wrote: > > > > please tellme how because i don know how do :-) i=B4m novice > > > > > > Oh, a newbie. > > > > > > Did you install from a floppy or CD? Do you still have the media you > > > used? Boot from it. On the first menu of sysinstall is a "Configure" > > > option, choose it. On the configure menu is a "Root Password" > > > choice. I think you can handle it from there. > > > -- > > > 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 > > >=20 >=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 17:49:46 2000 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 3A11F37B4CF for ; Thu, 23 Nov 2000 17:49:43 -0800 (PST) Received: from chimp.simianscience.com (cage.simianscience.com [64.7.134.1]) by smtp1.sentex.ca (8.11.1/8.11.1) with SMTP id eAO1nZB02210; Thu, 23 Nov 2000 20:49:35 -0500 (EST) (envelope-from mike@sentex.net) From: Mike Tancsa To: mtadbf@hotmail.com ("Dudecom3 Dudecom3") Cc: questions@freebsd.org Subject: Re: PPPoe Date: Thu, 23 Nov 2000 20:49:35 -0500 Message-ID: <48ir1tc1dhc36vadfm26f8dfsb2cesvodk@4ax.com> 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 X-Loop: FreeBSD.ORG On 23 Nov 2000 12:31:50 -0500, in sentex.lists.freebsd.questions you = wrote: >Hi , i use pppoe and the release 4.1.1 >so all work fine but i cant go to www.sympatico.com ....all other site = work=20 >and i know that the URL is not down...any idea? >thanks If you are using NAT, check the FAQ about MTU size issues at www.freebsd.org ---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 Thu Nov 23 17:51:37 2000 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 0EB6F37B479 for ; Thu, 23 Nov 2000 17:51:36 -0800 (PST) Received: from chimp.simianscience.com (cage.simianscience.com [64.7.134.1]) by smtp1.sentex.ca (8.11.1/8.11.1) with SMTP id eAO1pXB02473; Thu, 23 Nov 2000 20:51:33 -0500 (EST) (envelope-from mike@sentex.net) From: Mike Tancsa To: craignws@tampabay.rr.com ("Craig") Cc: questions@freebsd.org Subject: Re: Probing Devices Locks up Dell PC Date: Thu, 23 Nov 2000 20:51:33 -0500 Message-ID: <4bir1t0s7ilggnp36pfr4adph8e28vnfi2@4ax.com> 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 X-Loop: FreeBSD.ORG On 23 Nov 2000 20:02:30 -0500, in sentex.lists.freebsd.questions you = wrote: >A few days ago, I obtained the kern.flp and mfsroot.flp disks to install >FreeBSD on my Dell PC -- a Pentium III/1000Mhz, 256 megs RAM. Are the drives ATA100 ? Try connecting them at ATA66 if so. Also, make = sure you are using the kern.flp and mfsroot.flp from 4.2Release and not = earlier. ---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 Thu Nov 23 17:56:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from berzerk.gpcc.itd.umich.edu (berzerk.gpcc.itd.umich.edu [141.211.2.162]) by hub.freebsd.org (Postfix) with ESMTP id B8D6037B479 for ; Thu, 23 Nov 2000 17:56:24 -0800 (PST) Received: from pacman.gpcc.itd.umich.edu (smtp@pacman.gpcc.itd.umich.edu [141.211.2.150]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id UAA14067; Thu, 23 Nov 2000 20:56:24 -0500 (EST) Received: from localhost (timcm@localhost) by pacman.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id UAA10896; Thu, 23 Nov 2000 20:56:23 -0500 (EST) Date: Thu, 23 Nov 2000 20:56:23 -0500 (EST) From: Tim McMillen X-Sender: timcm@pacman.gpcc.itd.umich.edu To: SUPERZERO001@aol.com Cc: questions@FreeBSD.ORG Subject: Re: hardware for BSD In-Reply-To: <3d.3f2014c.274f07e7@aol.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 23 Nov 2000 SUPERZERO001@aol.com wrote: > Hello there i purchase a freebsd software package package from best buy > around a week ago. I read the book that came with it, and still trying to > find out what are the hardware configurations. I really want to try the > system out but still not sure what type of hardware i should get,, should i > get a pentium 2 or pentium 3,, right know i have a pentium 3 from intel. By Either should work, but it is possible to get some computers with strange hardware that will not work. If you're going to buy a computer, check http://www.freebsd.org/handbook/install-hw.html to make sure all of the components are listed there. > the way the package that i purchased has 6 cd roms, and no floppies, when i > install those cd's the computer doesn't seem to pick it up, I was trying to How did you 'install' them? I'm guessing your BIOS is not set to boot from CD first. > experiment to see if the cd's would work on my dvd rom. I want to stay with > my windows 98 system, and put free BSD on another computer. Please email me > with more specific details. Thank you very much. Well specifically what have you tried so far? Have you looked at the instructions at http://www.freebsd.org/handbook/install.html ? Try putting the installation cd in the drive and setting your bios to boot from the cd first. Then it will boot into the installation program. Then just follow the instructions. Having a spare hard drive where you can make mistakes and not care is a very helpful thing for first time learning. My personal feeling is you'll want to install KDE2 at first, because it is a very intuitive interface, but that is my opinion alone and others are sure to disagree. Either way, when you install successfully you will be rewarded with a very powerful system. Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 18: 1:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from berzerk.gpcc.itd.umich.edu (berzerk.gpcc.itd.umich.edu [141.211.2.162]) by hub.freebsd.org (Postfix) with ESMTP id B57F037B4CF for ; Thu, 23 Nov 2000 18:01:08 -0800 (PST) Received: from pacman.gpcc.itd.umich.edu (smtp@pacman.gpcc.itd.umich.edu [141.211.2.150]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id VAA14126; Thu, 23 Nov 2000 21:01:08 -0500 (EST) Received: from localhost (timcm@localhost) by pacman.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id VAA11164; Thu, 23 Nov 2000 21:01:07 -0500 (EST) Date: Thu, 23 Nov 2000 21:01:07 -0500 (EST) From: Tim McMillen X-Sender: timcm@pacman.gpcc.itd.umich.edu To: Bert Cc: freebsd-questions@FreeBSD.ORG Subject: Re: installation from DOS In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 23 Nov 2000, Bert wrote: > Hi There, I downloaded all the files from the tucows FTP site but now i'm not sure how to proceed. It says to copy the 5 .flp fies to a floppy but how do i do that , some files are twice the size of an 1.44 floppy. You must have downloaded them in ascii, instead of binary. Try the instructions at http://www.freebsd.org/handbook/install.html Why download the files from somewhere besides FreeBSD? Either way, those are the best instructions. Also see http://www.freebsd.org/FAQ/install.html#FLOPPY-IMAGE-TOO-LARGE Tim > Regards, > Bert. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 18: 9:10 2000 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 63CFF37B4C5 for ; Thu, 23 Nov 2000 18:09:07 -0800 (PST) Received: from localhost (freymann@localhost) by marlo.eagle.ca (8.11.0/8.11.0) with ESMTP id eAO29bb68418 for ; Thu, 23 Nov 2000 21:09:37 -0500 (EST) (envelope-from freymann@marlo.eagle.ca) Date: Thu, 23 Nov 2000 21:09:37 -0500 (EST) From: Gerry Freymann To: questions@FreeBSD.ORG Subject: cistron-radius Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I realize this isn't the radious support list, but are there any radius saavy people out there that can help me with a few problems? I'm using radiusd-cistron-1.6.3 from the ports collection on Freebsd4.1.1-stable. For the life of me, I can't get it to authenticate passwords. It runs, it responds, but it will never, eeeeeever say a password is correct. My other daemons are fine, like email, ftp, ssh, etc. I can provide a sample users file and debug info if somebody is willing to experiment. I joined the mailing list like 5 hours ago and have yet to receive a reply back, even acknowledging my subscribe request. I've read the FAQ's and all sorts of stuff from www.freeradius.org/faq/FAQ. The radtest, even with a simple two line user file, won't authenticate either. I'm lost. I have users authenticating off our old machine (freebsd 2.2.6 and really really old livingston radius) and with radiusd running on the new machine, it's even happily writing detail files for me so at least I'm able to run the billing program again. A neat project for a few people willing to lend a hand perhaps? Email me here or privately (gerry@eagle.ca) =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Gerry Freymann -- Senior Systems Manager Northumbria EAGLE Internet www.eagle.ca Voice: 905-373-9313 Fax: 905-373-1801 http://www.eagle.ca/customer_support NetBios probes are flooding the Internet! Uncheck File & Printer Sharing from TCP/IP -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 19:17: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f97.law7.hotmail.com [216.33.237.97]) by hub.freebsd.org (Postfix) with ESMTP id 9C28537B4D7 for ; Thu, 23 Nov 2000 19:17:01 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 23 Nov 2000 19:17:01 -0800 Received: from 206.68.196.222 by lw7fd.law7.hotmail.msn.com with HTTP; Fri, 24 Nov 2000 03:17:01 GMT X-Originating-IP: [206.68.196.222] Reply-To: degraz@tusco.net From: "Travis Troyer" To: freebsd-questions@FreeBSD.ORG Subject: Apache Installation Date: Fri, 24 Nov 2000 03:17:01 -0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 24 Nov 2000 03:17:01.0516 (UTC) FILETIME=[031770C0:01C055C5] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I installed FreeBSD 4.1 not too long ago, and installed the httpd along with it. I decided I wanted a modified apache, so I downloaded the source code, modified, and compiled it. It is in a different directory than the apache I was using, plus used a different httpd.conf, so I changed the port from 80 to test it while the other server is running, and it worked fine. So, now I want to replace my old apache with my newly compiled apache. I can not figure out what causes apache to load on startup, so that I can change it to point to my new apache. I have looked at every file in /etc and see no reference to it at all. How can I go about doing this? _____________________________________________________________________________________ Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 19:31: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from frontier.netnology.com.au (frontier.netnology.com.au [203.33.30.19]) by hub.freebsd.org (Postfix) with ESMTP id 762F637B479 for ; Thu, 23 Nov 2000 19:30:46 -0800 (PST) Received: from dogbolter ([203.33.30.209]) by frontier.netnology.com.au (8.8.7/8.8.7) with SMTP id LAA04067; Fri, 24 Nov 2000 11:37:08 +0800 From: "Craig Beasland" To: "'Gerry Freymann'" Cc: Subject: RE: cistron-radius Date: Fri, 24 Nov 2000 11:36:22 +0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, 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 X-Loop: FreeBSD.ORG Gerry, From the sounds of it, you may have the client passwords specified incorrectly. Do you get garbage back when running in debug mode. cheers craig -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Gerry Freymann Sent: Friday, 24 November 2000 10:10 To: questions@FreeBSD.ORG Subject: cistron-radius I realize this isn't the radious support list, but are there any radius saavy people out there that can help me with a few problems? I'm using radiusd-cistron-1.6.3 from the ports collection on Freebsd4.1.1-stable. For the life of me, I can't get it to authenticate passwords. It runs, it responds, but it will never, eeeeeever say a password is correct. My other daemons are fine, like email, ftp, ssh, etc. I can provide a sample users file and debug info if somebody is willing to experiment. I joined the mailing list like 5 hours ago and have yet to receive a reply back, even acknowledging my subscribe request. I've read the FAQ's and all sorts of stuff from www.freeradius.org/faq/FAQ. The radtest, even with a simple two line user file, won't authenticate either. I'm lost. I have users authenticating off our old machine (freebsd 2.2.6 and really really old livingston radius) and with radiusd running on the new machine, it's even happily writing detail files for me so at least I'm able to run the billing program again. A neat project for a few people willing to lend a hand perhaps? Email me here or privately (gerry@eagle.ca) =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Gerry Freymann -- Senior Systems Manager Northumbria EAGLE Internet www.eagle.ca Voice: 905-373-9313 Fax: 905-373-1801 http://www.eagle.ca/customer_support NetBios probes are flooding the Internet! Uncheck File & Printer Sharing from TCP/IP -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of 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 Nov 23 19:31:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.new.rr.com (mail1.rdc-detw.rr.com [24.30.0.23]) by hub.freebsd.org (Postfix) with ESMTP id E378437B4CF for ; Thu, 23 Nov 2000 19:31:23 -0800 (PST) Received: from karr ([24.164.235.228]) by mail1.new.rr.com with Microsoft SMTPSVC(5.5.1877.357.35); Thu, 23 Nov 2000 22:31:57 -0500 Reply-To: From: "Brian" To: , Subject: RE: Apache Installation Date: Thu, 23 Nov 2000 21:31:13 -0600 Message-ID: X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG /usr/local/etc/rc.d/apache.sh My apache server starts up with the above script. Scripts in this directory run automatically on boot. > > I installed FreeBSD 4.1 not too long ago, and > installed the httpd along with > it. I decided I wanted a modified apache, so I > downloaded the source code, > modified, and compiled it. It is in a different > directory than the apache I > was using, plus used a different httpd.conf, so I > changed the port from 80 > to test it while the other server is running, and it > worked fine. So, now I > want to replace my old apache with my newly compiled > apache. I can not > figure out what causes apache to load on startup, so > that I can change it to > point to my new apache. I have looked at every file > in /etc and see no > reference to it at all. How can I go about doing this? > _______________________________________________________ > ______________________________ > Get more from the Web. FREE MSN Explorer download : 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 Thu Nov 23 19:53:37 2000 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 D8CB437B479 for ; Thu, 23 Nov 2000 19:53:35 -0800 (PST) Received: from localhost (freymann@localhost) by marlo.eagle.ca (8.11.0/8.11.0) with ESMTP id eAO3rhN80366; Thu, 23 Nov 2000 22:53:43 -0500 (EST) (envelope-from freymann@marlo.eagle.ca) Date: Thu, 23 Nov 2000 22:53:42 -0500 (EST) From: Gerry Freymann To: Craig Beasland Cc: questions@FreeBSD.ORG Subject: RE: cistron-radius In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > From the sounds of it, you may have the client passwords specified > incorrectly. Do you get garbage back when running in debug mode. Nope. Everything fine that way. We were using a very old, old copy of Livingston Radius. I'm stubborn and have been reading and playing and I have discovered a few things tonight! First, if you change the raddb/users file you need to kill -1 radiusd. Our older version didn't require you to do that when you made changes to users. There's a new "Auth-Type = System" that needs to replace our old Password="UNIX" command. With those changes, radtest works! Now I'm just trying to figure out the dictionary changes. ;-) -Gerry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 20: 8:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from camel.ck.tp.edu.tw (camel.ck.tp.edu.tw [203.64.26.1]) by hub.freebsd.org (Postfix) with ESMTP id B406337B4CF for ; Thu, 23 Nov 2000 20:08:23 -0800 (PST) Received: from localhost (rafan@localhost) by camel.ck.tp.edu.tw (8.11.1/8.11.0) with ESMTP id eAO46mA15304; Fri, 24 Nov 2000 12:06:48 +0800 (CST) (envelope-from rafan@camel.ck.tp.edu.tw) Date: Fri, 24 Nov 2000 12:06:47 +0800 (CST) From: Jung-an Fan To: Zero Sum Cc: freebsd-questions@FreeBSD.ORG Subject: Re: radius & limit login times In-Reply-To: <0011232105570P.05065@shalimar.net.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 23 Nov 2000, Zero Sum wrote: > On Thursday 23 November 2000 20:56, Jung-an Fan wrote: > > If user A dialed up, then no one can use User A's password to dialup > > when user A is online. > > How to achieve this ? > > thx. > > > In the system profile, check to see if the user has another login shell > (this will be prefaced by a '-'). If they have, then exit. Since the > system profiles are (or should be) dot executed, the shell will then exit > and the next thing seen should be the login prompt (or connection dropped > by foreign host for telnet). > > That should do the trick... > > Geoff Uh...I mean if someone use USER A's password to dialup, then no one can use USER A's password to dialup again (when USER A is using dialup) Jung-an Fan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 20:53:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id CAB2E37B4CF for ; Thu, 23 Nov 2000 20:53:29 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id IAA69462 for ; Fri, 24 Nov 2000 08:20:39 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAO4rFi11694 for freebsd-questions@FreeBSD.ORG; Fri, 24 Nov 2000 07:53:15 +0300 Date: Fri, 24 Nov 2000 07:53:15 +0300 From: "Igor' Robul'" To: freebsd-questions@FreeBSD.ORG Subject: Re: Apache Installation Message-ID: <20001124075314.A11674@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: ; from tmtroyer@hotmail.com on Fri, Nov 24, 2000 at 03:17:01AM -0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 24, 2000 at 03:17:01AM -0000, Travis Troyer wrote: > modified, and compiled it. It is in a different directory than the apache I Better check if there is port you need :-) : %ls -d /usr/ports/www/apache* /usr/ports/www/apache-contrib /usr/ports/www/apache13-modssl /usr/ports/www/apache-jserv /usr/ports/www/apache13-php3 /usr/ports/www/apache13 /usr/ports/www/apache13-php4 /usr/ports/www/apache13+ipv6 /usr/ports/www/apache13-ssl /usr/ports/www/apache13-fp You, of course, can install these ports combined :-) -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 20:57:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from buchanan-181-249.stures.iastate.edu (buchanan-181-249.stures.iastate.edu [129.186.181.249]) by hub.freebsd.org (Postfix) with ESMTP id EB96537B4C5 for ; Thu, 23 Nov 2000 20:57:27 -0800 (PST) Received: (from kparz@localhost) by buchanan-181-249.stures.iastate.edu (8.11.1/8.11.1) id eAO50M205394 for freebsd-questions@FreeBSD.ORG; Thu, 23 Nov 2000 23:00:22 -0600 (CST) (envelope-from kparz) Date: Thu, 23 Nov 2000 23:00:22 -0600 From: Krzysztof Parzyszek To: freebsd-questions@FreeBSD.ORG Subject: Re: VMware for FreeBSD ? Message-ID: <20001123230022.A5362@buchanan-181-249.stures.iastate> References: <3A1D6AE4.EC7C277A@wiliweld.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from timcm@umich.edu on Thu, Nov 23, 2000 at 07:24:03PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Nov 23, 2000 at 07:24:03PM -0500, Tim McMillen wrote: > > I can get it running, but not well. I got it running and it runs pretty well. I have Windows NT4 inside of it. Networking (host only) works with no problems. I have a local network which is natd'ed, so NT can see the outside world. I had some trouble with sound from NT. Besides that and it being kind of slow I had no problems at all. I just installed the port. No magic was involed at any stage. I first installed it on 4.1.1-STABLE (or 4.1S). Now it runs on 4.2-R. -- ,oPq J --- Krzysztof Parzyszek 10/15/2000 1:29am --- 7 `8oP' --- Abandon the search for Truth; settle for a good fantasy. --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 20:59:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id DC3DC37B4C5 for ; Thu, 23 Nov 2000 20:59:36 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id IAA69474 for ; Fri, 24 Nov 2000 08:26:50 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAO4xWZ11710 for freebsd-questions@FreeBSD.ORG; Fri, 24 Nov 2000 07:59:32 +0300 Date: Fri, 24 Nov 2000 07:59:32 +0300 From: "Igor' Robul'" To: freebsd-questions@FreeBSD.ORG Subject: Re: Mp3 to wav Message-ID: <20001124075931.B11674@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <200011232300.QAA04132@pyth.pith> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <200011232300.QAA04132@pyth.pith>; from chris@theboss.net on Thu, Nov 23, 2000 at 04:00:09PM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Nov 23, 2000 at 04:00:09PM -0700, chris wrote: > Hello. > I am trying to convert some mp3s to wav format so I can play them on a normal cd player but I am having considerable trouble. Does anyone have any idea how to go about doing this?? Most MP3 players can produce "raw" output into file. Then just use sox (/usr/ports/audio/sox) to convert "raw" into "wav". But, really WAV is not single format :-) It has header, which tell how it is encoded, so for example there are WAVs which are really MP3s. T And also, how to convert RealAudio to MP3 without two soundcards? -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 21:20:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 9B93F37B479 for ; Thu, 23 Nov 2000 21:20:14 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id IAA69547 for ; Fri, 24 Nov 2000 08:47:24 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAO57lL11778 for freebsd-questions@FreeBSD.ORG; Fri, 24 Nov 2000 08:07:47 +0300 Date: Fri, 24 Nov 2000 08:07:47 +0300 From: "Igor' Robul'" To: freebsd-questions@FreeBSD.ORG Subject: Re: PicoBSD questions Message-ID: <20001124080747.C11674@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: ; from mpoulin@honk.org on Thu, Nov 23, 2000 at 03:25:18PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Nov 23, 2000 at 03:25:18PM -0500, Marty Poulin wrote: > > Sorry if this isn't the right place, but I didn't see a PicoBSD forum > anywhere... freebsd-small@freebsd.org :-) > > 2. How on earth do I configure PicoBSD so it loads the right drivers (ed0 > and ed1 on 0x280 IRQ 3 and 0x300 IRQ 10, respectively) > So far all I can do is boot into visual config mode and manually set up > the correct IRQ's etc, but I can't find any way to make these changes > permanent... mount /dev/fd0a4 This is /etc for PicoBSD Maybe this is not 4 but 1 2 or 3 can't remember > > 3. Is there any editing tool on PicoBSD? I need an editor to edit the > config files, but I can't find vi or anything in the PicoBSD system. See above. So you can edit files on FreeBSD with even Emacs :-) -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 21:24: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shalimar.net.au (shalimar.net.au [198.142.161.98]) by hub.freebsd.org (Postfix) with ESMTP id C478037B4C5 for ; Thu, 23 Nov 2000 21:24:02 -0800 (PST) Received: from shalimar.net.au (localhost [127.0.0.1]) by shalimar.net.au (8.11.1/8.11.1) with SMTP id eAO5JHN11378; Fri, 24 Nov 2000 16:19:17 +1100 (EST) (envelope-from count@shalimar.net.au) From: Zero Sum Organization: Tobacco Chewers and Body Painters Association. Date: Fri, 24 Nov 2000 16:19:17 +1100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="US-ASCII" Cc: freebsd-questions@FreeBSD.ORG To: Jung-an Fan References: In-Reply-To: Subject: Re: radius & limit login times MIME-Version: 1.0 Message-Id: <00112416191702.10199@shalimar.net.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Friday 24 November 2000 15:06, Jung-an Fan wrote: > On Thu, 23 Nov 2000, Zero Sum wrote: > > > On Thursday 23 November 2000 20:56, Jung-an Fan wrote: > > > If user A dialed up, then no one can use User A's password to dialup > > > when user A is online. > > > How to achieve this ? > > > thx. > > > > > In the system profile, check to see if the user has another login shell > > (this will be prefaced by a '-'). If they have, then exit. Since the > > system profiles are (or should be) dot executed, the shell will then exit > > and the next thing seen should be the login prompt (or connection dropped > > by foreign host for telnet). > > > > That should do the trick... > > > > Geoff > Uh...I mean if someone use USER A's password to dialup, > then no one can use USER A's password to dialup again > (when USER A is using dialup) Yes, I understood. How does that I suggested nfail to give you what you want? -- count@shalimar.net.au Nihil curo de ista tua stulta superstitione To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 21:37:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from comp1.mastery.ca (lan12.dzyn.win.mnsi.net [208.28.54.140]) by hub.freebsd.org (Postfix) with ESMTP id 8004637B479 for ; Thu, 23 Nov 2000 21:37:33 -0800 (PST) Received: (from nobody@localhost) by comp1.mastery.ca (8.11.1/8.11.1) id eAO5cYE05675; Fri, 24 Nov 2000 00:38:34 -0500 (EST) (envelope-from rmasse@mastery.ca) Date: Fri, 24 Nov 2000 00:38:34 -0500 (EST) Message-Id: <200011240538.eAO5cYE05675@comp1.mastery.ca> X-Authentication-Warning: comp1.mastery.ca: nobody set sender to rmasse@mastery.ca using -f From: "Ryan Masse" To: freebsd-questions@freebsd.org Reply-To: rmasse@mastery.ca Subject: sendmail relaying X-Mailer: NeoMail 1.14 X-IPAddress: 206.48.125.234 MIME-Version: 1.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alright i need everyone's opinion to as how i should go about running my smtp server. Here's my situation... I'm running fbsd 4.1.1 stable using cucipop and sendmail for mail. The server is being used as our company mail/webserver hosting a couple of our domains and hosting all of our mail. Now we have a ton of sales people that are constantly on the road and need to send/check their mail (mostly using outlook). Now obviously this is coming down to a sendmail relaying issue.. atm i have added people's isp host and ips into an access file determining who can relay and who can't, cause want to prevent open access for people to spam of our box =\. This is becoming a huge pain in the ass and the sales people can't send mail. I setup a webmail program and made pine available through telnet but there still bitchin. Anyone know a remedy to my problem and stickin with sendmail? Thanks, Ryan Masse Authoring Technician Mastery Group of Canada Inc. Rmasse@mastery.ca (519)791-3775 http://www.masterycanada.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 21:43:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from berzerk.gpcc.itd.umich.edu (berzerk.gpcc.itd.umich.edu [141.211.2.162]) by hub.freebsd.org (Postfix) with ESMTP id 2F16737B4CF for ; Thu, 23 Nov 2000 21:43:31 -0800 (PST) Received: from joust.gpcc.itd.umich.edu (smtp@joust.gpcc.itd.umich.edu [141.211.2.148]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id AAA20157; Fri, 24 Nov 2000 00:43:30 -0500 (EST) Received: from localhost (timcm@localhost) by joust.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id AAA19936; Fri, 24 Nov 2000 00:43:29 -0500 (EST) Date: Fri, 24 Nov 2000 00:43:29 -0500 (EST) From: Tim McMillen X-Sender: timcm@joust.gpcc.itd.umich.edu To: Krzysztof Parzyszek Cc: freebsd-questions@FreeBSD.ORG Subject: Re: VMware for FreeBSD ? In-Reply-To: <20001123230022.A5362@buchanan-181-249.stures.iastate> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 23 Nov 2000, Krzysztof Parzyszek wrote: > On Thu, Nov 23, 2000 at 07:24:03PM -0500, Tim McMillen wrote: > > I can get it running, but not well. > I got it running and it runs pretty well. I have Windows NT4 inside of > it. Networking (host only) works with no problems. I have a local > network which is natd'ed, so NT can see the outside world. I had some > trouble with sound from NT. Besides that and it being kind of slow I had > no problems at all. Are you able to use it as a normal user or is that not a good idea anyway? It tells me failed to open /dev/hda permission denied. Of course that doesn't exist it's just because of linux emulation. What device does it refer to? My hard drive ad0? I did fail to get the vmware tools installed. Maybe I'll try that again and give it another go. Tim > I just installed the port. No magic was involed at any stage. > I first installed it on 4.1.1-STABLE (or 4.1S). Now it runs > on 4.2-R. > -- > ,oPq J --- Krzysztof Parzyszek 10/15/2000 1:29am --- > 7 `8oP' --- Abandon the search for Truth; settle for a good fantasy. --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 21:46:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from giroc.albury.net.au (giroc.albury.NET.AU [203.15.244.13]) by hub.freebsd.org (Postfix) with ESMTP id 5DCDC37B479 for ; Thu, 23 Nov 2000 21:46:23 -0800 (PST) Received: (from nicks@localhost) by giroc.albury.net.au (8.11.1/8.11.1) id eAO5jpH45441; Fri, 24 Nov 2000 16:45:51 +1100 (EST) Date: Fri, 24 Nov 2000 16:45:51 +1100 From: Nick Slager To: Ryan Masse Cc: freebsd-questions@FreeBSD.ORG Subject: Re: sendmail relaying Message-ID: <20001124164551.A44467@albury.net.au> References: <200011240538.eAO5cYE05675@comp1.mastery.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200011240538.eAO5cYE05675@comp1.mastery.ca>; from rmasse@mastery.ca on Fri, Nov 24, 2000 at 12:38:34AM -0500 X-Homer: Whoohooooooo! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Ryan Masse (rmasse@mastery.ca): > Alright i need everyone's opinion to as how i should go about running > my smtp server. Here's my situation... I'm running fbsd 4.1.1 stable > using cucipop and sendmail for mail. The server is being used as our > company mail/webserver hosting a couple of our domains and hosting all > of our mail. Now we have a ton of sales people that are constantly on > the road and need to send/check their mail (mostly using outlook). Now > obviously this is coming down to a sendmail relaying issue.. atm i have > added people's isp host and ips into an access file determining who can > relay and who can't, cause want to prevent open access for people to > spam of our box =\. This is becoming a huge pain in the ass and the > sales people can't send mail. I setup a webmail program and made pine > available through telnet but there still bitchin. Anyone know a remedy > to my problem and stickin with sendmail? If the client MUAs support SMTP AUTH, you can install the Cyrus SASL libraries to provide controlled relaying. You can also implement SMTP after POP, but it's a kludge and leaves a small window open when someone could theoretically use your server(s) for spam. http://sendmail.net/?feed=usingsmtpauth Nick -- From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 21:48:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from krel.org (mail.krel.org [216.141.123.213]) by hub.freebsd.org (Postfix) with ESMTP id 09B0A37B4C5 for ; Thu, 23 Nov 2000 21:48:49 -0800 (PST) Received: from shark [160.79.102.254] by krel.org (SMTPD32-6.05) id A1E1187E0140; Fri, 24 Nov 2000 00:51:29 -0500 Message-ID: <01c601c055da$31ae9390$0100a8c0@krel.org> From: "Ilya" To: References: <200011240538.eAO5cYE05675@comp1.mastery.ca> Subject: StarOffice 5.2 install Date: Fri, 24 Nov 2000 00:48:37 -0500 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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi. Ive been trying to install SO 5.2 from ports, but always unsuccesfull. I get libX11.so.6 - not found. This is what i have in my ldconfig -r: var/run/ld-elf.so.hints: search directories: /usr/lib:/usr/lib/compat:/usr/local/lib:/usr/local/lib/mysql:/usr/libexec:/u sr/X11R6/lib 174:-lX11.6 => /usr/X11R6/lib/libX11.so.6 here is the locate result: /usr/X11R6/lib/aout/libX11.so.6.1 /usr/X11R6/lib/libX11.so.6 /usr/compat/linux/usr/X11R6/lib/libX11.so.6 /usr/compat/linux/usr/X11R6/lib/libX11.so.6.1 /usr/compat/linux/usr/i486-linux-libc5/lib/libX11.so.6 /usr/compat/linux/usr/i486-linux-libc5/lib/libX11.so.6.1 I even tried to change Makefile : LD_PATH= ${TMPDIR}:${WRKSRC}:${LINUXBASE}/lib:${LINUXBASE}/usr/lib:${LINUXBASE}/usr/X 11R6/lib to add X11R6/lib but always get same result. when i run ldd on any binary .in /work i get this: so-5_2-ga-bin-linux-en.bin: /lib/libNoVersion.so.1 => /lib/libNoVersion.so.1 (0x2806a000) libX11.so.6 => not found libdl.so.2 => /lib/libdl.so.2 (0x2806f000) libpthread.so.0 => /lib/libpthread.so.0 (0x28072000) libm.so.6 => /lib/libm.so.6 (0x28083000) libc.so.6 => /lib/libc.so.6 (0x2809f000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x28057000) can someone advise on what is happening? X run normally by itself. so does netscape thx PS i am running 4.2 release To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 21:51:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from george.he.net (george.he.net [216.218.157.2]) by hub.freebsd.org (Postfix) with ESMTP id B9BE137B4CF for ; Thu, 23 Nov 2000 21:51:41 -0800 (PST) Received: from wiliweld.com (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by george.he.net (8.8.6/8.8.2) with ESMTP id VAA21913; Thu, 23 Nov 2000 21:51:29 -0800 Message-ID: <3A1E015F.5588E6E5@wiliweld.com> Date: Thu, 23 Nov 2000 21:49:19 -0800 From: Bill Schoolcraft Organization: " UNIX, A Way of Life !!! " X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 i86pc) X-Accept-Language: en MIME-Version: 1.0 To: Tim McMillen Cc: Krzysztof Parzyszek , freebsd-questions@FreeBSD.ORG Subject: Re: VMware for FreeBSD ? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Tim McMillen wrote: > > On Thu, 23 Nov 2000, Krzysztof Parzyszek wrote: > > > On Thu, Nov 23, 2000 at 07:24:03PM -0500, Tim McMillen wrote: > > > I can get it running, but not well. > > I got it running and it runs pretty well. I have Windows NT4 inside of > > it. Networking (host only) works with no problems. I have a local > > network which is natd'ed, so NT can see the outside world. I had some > > trouble with sound from NT. Besides that and it being kind of slow I had > > no problems at all. > > Are you able to use it as a normal user or is that not a good idea anyway? > It tells me failed to open /dev/hda permission denied. Of course that > doesn't exist it's just because of linux emulation. What device does it > refer to? My hard drive ad0? I did fail to get the vmware tools > installed. Maybe I'll try that again and give it another go. > Hello, I was prompted for some paths that were Linux specific during the install. What version of VMware did you both install ? -- Bill Schoolcraft PO Box 210076 San Francisco, CA 94121 "UNIX, A Way of Life !!!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 22: 4:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id A5C7937B4C5 for ; Thu, 23 Nov 2000 22:04:37 -0800 (PST) Received: (qmail 11673 invoked by uid 100); 24 Nov 2000 06:04:36 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14878.1268.383566.580911@guru.mired.org> Date: Fri, 24 Nov 2000 00:04:36 -0600 (CST) To: Tim McMillen Cc: questions@freebsd.org Subject: Re: partitions and a new install In-Reply-To: <65535877@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Tim McMillen types: > On Wed, 22 Nov 2000, Nathan Vidican wrote: > > Peter Brezny wrote: > > > For a production firewall machine, is it important to create separate > > > partitions (slices) for different labels. > > > For example, is it a good idea to put > > > / > > > /var > > > /usr > > > /home > > > on separate partitions to help keep the possibility of file system > > > corruption from taking out more than one of these areas at a time? > Yes, I really think so. That way if one of them gets hosed you're > still able to get somewhere. I don't agree - at least not if we're talking about modern BSD systems. Other systems I wouldn't trust, because either my experience indicates their file system code isn't sufficiently crash-resistant, or because I don't have experience indicating otherwise. > > Personally, on a firewall machine I try to put them all on one > > partition, < 100Megs total, and mount it read-only; if at all possible, > then where do you send your logs? You need two partitions - / and /var. The logs and queues are on /var. Home directories for the admin are there as well (/home is a symlink to /var/home), but they should have almost nothing on them. I regularly configure network servers that way, but I haven't worked all the kinks out of the r/o part of the setup. Does anyone have a How-To for doing r/o root file systems? If you don't, I'd appreciate a description of the process. In return, I'll turn it into a FAQ entry for FreeBSD. > > make the bios write-protect it as well. Makes for easy/quick backup, and > > by write-protecting it assures better security. > Yes good point. RO is good. The easy quick backup for multiple > partitions could still be accomplished with a shell script. But how many > backups do you need to take fro a firewall? It shouldn't change much, so > once you get a few backups, you're fine. Cd's blanks are cheap enough - and the data for a server is small enough - that you can probably put it all on a new CD on a regular basis. Making it bootable might be an interesting exercise as well. > Didn't I see something about an append only filesystem for logs? > Where even root cannot delete from it? Is that possible on FreeBSD? That would be a nice idea as well. You might check the other BSD web sites, and possibly Linux. ; Thu, 23 Nov 2000 22:08:11 -0800 (PST) Received: (qmail 11780 invoked by uid 100); 24 Nov 2000 06:08:11 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14878.1483.244654.354284@guru.mired.org> Date: Fri, 24 Nov 2000 00:08:11 -0600 (CST) To: Charles Henrich Cc: questions@freebsd.org Subject: Re: NFS mounts in /etc/fstab fail to mount at boot In-Reply-To: <24434604@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Charles Henrich types: > I've run into this once before and it has me baffled. When I boot my machine > the nfs mounts in /etc/fstab: > # Device Mountpoint FStype Options Dump Pass# > /dev/da0s1b none swap sw 0 0 > /dev/da0s1a / ufs rw 1 1 > /dev/da0s1e /tmp ufs rw 2 2 > /dev/acd0c /cdrom cd9660 ro,noauto 0 0 > proc /proc procfs rw 0 0 > netapp1-e5:/home /MFX nfs rw,bg,soft,-3 0 0 > netapp1-e6:/vol/slash/home /home nfs rw,bg,soft,-3 0 0 > fail to mount automatically. The output of mount -d -a -t nfs when run by > /etc/rc is empty. However if I log into the machine and do the mount -d -a -t > nfs command it shows the correct thing, i.e.: > > exec: mount_nfs -o bg -o soft -3 netapp1-e5:/home /MFX > exec: mount_nfs -o bg -o soft -3 netapp1-e6:/vol/slash/home /home > > At the same time some of the scripts in /usr/local/etc/rc.d do not run at boot > time (specifially the samba.sh script that is installed by the port). I can > run it by hand it works properly, but it just doesnt trigger at boot. > > Does anyone have any ideas here? Thanks much! Yes, show us the error messages! I have a system that does that. Specifically, the *first* time I boot it after powering it on, the NFS mounts time out. If I interrupt them, the next thing that tries to use the network card times out. If I reboot it after having the network up, everything works fine. I assume it's a problem with the card initialization, but haven't gotten around to looking into it. Are you seeing that kind of behavior by any chance. ; Thu, 23 Nov 2000 22:18:21 -0800 (PST) Received: (qmail 12048 invoked by uid 100); 24 Nov 2000 06:18:20 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14878.2092.417505.235178@guru.mired.org> Date: Fri, 24 Nov 2000 00:18:20 -0600 (CST) To: "Jonathan Graehl" Cc: questions@freebsd.org Subject: Re: support for ES1731 chipset in Creative CT4810 AudioPCI? In-Reply-To: <94456170@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Jonathan Graehl types: > device pcm in -STABLE kernel config How old a -stable kernel? > dmesg: > pci0: (vendor=0x1274, dev=0x5880) at 9.0 irq 11 That ID number is in the 4.2-RELEASE kernel source (dev/sounds/pci/es137x.c). -STABLE finds my 1370 and it works just fine. > According to creative tech support (which seems quite knowledgable), the > card I have (model CT4810) is indeed an AudioPCI, although the driver disk I > received with it was "Sound Blaster PCI 16". The card is identified as > "Creative Labs AudioPCI" in Windows ME, for what it's worth ;) Yup, that's right. If you go to the www.ensoniq.com, you get the Creative Labs web site. > Is my card supported in -STABLE or -CURRENT? How can I get more detail > about the attempted detection, if any, of my card by the ES1371 driver > probe? It's possible that that ID isn't in the source you have if you're running -STABLE prior to 4.2 RELEASE (there are no less than *3* 1371 vendor id's in 4.2-RELEASE). ; Thu, 23 Nov 2000 22:24:23 -0800 (PST) Received: from pacman.gpcc.itd.umich.edu (smtp@pacman.gpcc.itd.umich.edu [141.211.2.150]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id BAA21298; Fri, 24 Nov 2000 01:24:22 -0500 (EST) Received: from localhost (timcm@localhost) by pacman.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id BAA28130; Fri, 24 Nov 2000 01:24:22 -0500 (EST) Date: Fri, 24 Nov 2000 01:24:21 -0500 (EST) From: Tim McMillen X-Sender: timcm@pacman.gpcc.itd.umich.edu To: Bill Schoolcraft Cc: Krzysztof Parzyszek , freebsd-questions@FreeBSD.ORG Subject: Re: VMware for FreeBSD ? In-Reply-To: <3A1E015F.5588E6E5@wiliweld.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 23 Nov 2000, Bill Schoolcraft wrote: > Tim McMillen wrote: > > On Thu, 23 Nov 2000, Krzysztof Parzyszek wrote: > > > Hello, I was prompted for some paths that were Linux specific during the > install. What version of VMware did you both install ? So was I. I could only get the vmware2 port to build on 4.1.1 I don't remember the details, but I just sort of picked through some stuff in the config wizard to see if I could get it working. I have a Win98 partition on my hard drive and I was able to use that and boot it. I learned after a heads up from Chip that a lot of my problems were from vmware tools not being installed. As I have it currently I don't want to install them because I think it will mess up my real win98 installation. So maybe I'll wipe the win98 partition, give that space to freebsd and see how it goes. Anyway as for the linux specific stuff I was hoping somebody could say exactly what was needed to get it working just right. Bill, I can run through the configuration wizard another time and tell you what I did so far if you think it will help. Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 22:29:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailweb14.rediffmail.com (unknown [203.199.83.22]) by hub.freebsd.org (Postfix) with SMTP id E27FE37B479 for ; Thu, 23 Nov 2000 22:29:16 -0800 (PST) Received: (qmail 5406 invoked by uid 510); 24 Nov 2000 06:23:56 -0000 Date: 24 Nov 2000 06:23:56 -0000 Message-ID: <20001124062356.5405.qmail@mailweb14.rediffmail.com> MIME-Version: 1.0 To: questions@freebsd.org Subject: Query , From: "sonam sin sla" Content-ID: Content-type: text/plain Content-Description: Body Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG i sonam singh , insatlled the FreeBSD 4.0 on Compaq PIII .i want to know that how to install FTP on it . so that i can upload the file from window machine . with regards _____________________________________________________ Chat with your friends as soon as they come online. Get Rediff Bol at http://bol.rediff.com Participate in crazy auctions at http://auctions.rediff.com/auctions/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 22:31:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id F1B1937B479 for ; Thu, 23 Nov 2000 22:31:02 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id JAA69735 for ; Fri, 24 Nov 2000 09:58:12 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAO6Th112542 for freebsd-questions@freebsd.org; Fri, 24 Nov 2000 09:29:43 +0300 Date: Fri, 24 Nov 2000 09:29:43 +0300 From: "Igor' Robul'" To: freebsd-questions@freebsd.org Subject: SFT-III like for FreeBSD? Message-ID: <20001124092943.A12421@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I'm thinking about making my _file_ servers more fault tolerant. Is there anything for FreeBSD like SFT-III for Netware servers? So I can mirror not only disks in one server, but mirror disk in one server to disk in other server. For example I can install additional netcards and connect they with direct cable. I know that this will not give full protection for file server based DBs, but this will better than nothing. Also, not FreeBSD related question: is it possible in DOS FoxPro flush all buffers without closing tables, so data on netserver will be in sync with data in workstation memory. Then I can just make snapshop on local disk on file server, and then copy data to other server. For example once per 10 minutes. I'm trying to build system which will work without me. -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 22:37:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.melt.ru (mail.melt.ru [195.161.74.130]) by hub.freebsd.org (Postfix) with ESMTP id 576BF37B4C5 for ; Thu, 23 Nov 2000 22:37:07 -0800 (PST) Received: from tcnti.ru (cnti.mi.ru [213.24.139.82]) by mail.melt.ru (8.9.3/8.9.3) with ESMTP id JAA00616 for ; Fri, 24 Nov 2000 09:37:04 +0300 (MSK) Received: from Dima1 (dima1 [192.168.0.3]) by tcnti.ru (8.9.3/8.9.3) with SMTP id JAA31237 for ; Fri, 24 Nov 2000 09:39:19 +0300 (MSK) Message-ID: <000c01c055e0$ea0e12c0$0300a8c0@Dima1> From: "Dmitri Zenkine" To: Subject: What's the matter? Date: Fri, 24 Nov 2000 09:36:44 +0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0009_01C055FA.0EF69580" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0009_01C055FA.0EF69580 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable I have done the following on my FreeBSD 4.0 Installing FreeBSD's JDK is typically straightforward: cd /usr/ports/java/jdk=20 make=20 make install=20 make clean and when i try to run java applicatiom it writes /usr/libexec/ld-elf.so.1: Shared object "libc.co.3" not found What i heve to do to start Java =20 Best regards, Dmitri Zenkine ------=_NextPart_000_0009_01C055FA.0EF69580 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable

I have done the following on my FreeBSD 4.0

Installing FreeBSD's JDK is typically=20 straightforward:

cd /usr/ports/java/jdk
make
make install
make=20 clean

and when i try to run java = applicatiom it=20 writes

/usr/libexec/ld-elf.so.1: = Shared object=20 "libc.co.3" not found

 

What i heve to do to start = Java=20  

Best regards,
Dmitri = Zenkine
------=_NextPart_000_0009_01C055FA.0EF69580-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 22:45:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id B6C6E37B4D7 for ; Thu, 23 Nov 2000 22:45:48 -0800 (PST) Received: (qmail 12645 invoked by uid 100); 24 Nov 2000 06:45:47 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14878.3739.220008.449799@guru.mired.org> Date: Fri, 24 Nov 2000 00:45:47 -0600 (CST) To: gbnaidu@123india.com Cc: questions@freebsd.org Subject: Re: Kernel Compilation... In-Reply-To: <40787493@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG gbnaidu@123india.com types: > Hi, > I would like to know how to compile kernel when a new directory is added into kernel sources? First, please hit carriage return before your lines get to be more than 80 characters long - 70 would be even better. Try checking the Makefile in the directory you created the new directory in. It should be obvious how new directories are added there to anyone who can write kernel code. If the directory isn't in the kernel tree, you may have problems. But a symlink will probably solve them. ; Thu, 23 Nov 2000 22:49:53 -0800 (PST) Received: (qmail 12766 invoked by uid 100); 24 Nov 2000 06:49:52 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14878.3984.651345.451021@guru.mired.org> Date: Fri, 24 Nov 2000 00:49:52 -0600 (CST) To: Rajesh Saxena Cc: questions@freebsd.org Subject: Re: Problems playing mpegs in FreeBSD 4.2 Stable In-Reply-To: <93011000@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Rajesh Saxena types: > Hi.. I had initially installed FreeBSD 4.1 Release and I had no problems > playing mpegs with smpeg-gtv or xmps. But as soon as I upgraded to 4.2 > beta and now 4.2 stable both gtv and xmps crash immediately when I try to > load a mpeg file. Is anyone else having this problem or knows how I can > fix this? There usually aren't a lot of error messages except for today > when gtv complained about this.. > > Fatal signal: Bus Error (SDL Parachute Deployed) > Fatal signal: Segmentation Fault (SDL Parachute Deployed) > gtv in free(): warning: junk pointer, too high to make sense. > gtv in free(): warning: modified (chunk-) pointer. > gtv in free(): warning: junk pointer, too high to make sense. > gtv in free(): warning: junk pointer, too high to make sense. > Nov 23 01:13:39 purple /kernel: pid 4959 (gtv), uid 1001: exited on signal > 11 (c > ore dumped) Are you running the same binaries you were running on 4.1-RELEASE? If so, did you try upgrading to the 4.2-RELEASE versions of them? No guarantees, but that may fix the problem. It wouldn't hurt in any case. ; Thu, 23 Nov 2000 22:51:48 -0800 (PST) Received: from [209.197.156.152] ([209.197.156.152]) by smtp2.cybersurf.net (Netscape Messaging Server 4.15) with SMTP id G4IOEC00.SHQ for ; Thu, 23 Nov 2000 23:51:48 -0700 From: "Duke Normandin" <01031149@3web.net> To: questions@freebsd.org Date: Thu, 23 Nov 2000 23:51:04 mst7mst MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: 3.3R boot manager Reply-To: 01031149@3web.net X-mailer: Pegasus Mail v3.50 Message-Id: <20001124065148.5348237B479@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi...again wd0 = DOS wd1=3.3R Some &^%$*ing how, I installed a boot manager on *both* drives. At boot-time I get F1 DOS F5 Freebsd. I hit F5, then I get another menu F1 Freebsd F5 (I can't remember). I of course want to keep the wd0 boot manager. How do I nuke the boot manager on wd1 -- or is the above the correct behavior? Thanks... -duke Calgary,Alberta, Canada To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 22:51:54 2000 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 326A437B657 for ; Thu, 23 Nov 2000 22:51:51 -0800 (PST) Received: from [209.197.156.152] ([209.197.156.152]) by smtp2.cybersurf.net (Netscape Messaging Server 4.15) with SMTP id G4IOE900.6GA for ; Thu, 23 Nov 2000 23:51:45 -0700 From: "Duke Normandin" <01031149@3web.net> To: questions@freebsd.org Date: Thu, 23 Nov 2000 23:42:50 mst7mst MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: 3.3R <--> win95 Reply-To: 01031149@3web.net X-mailer: Pegasus Mail v3.50 Message-Id: <20001124065151.326A437B657@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all... I'm trying to network one 3.3R box to a win95 one using a x-over cable. My ep0 NIC is detected at boot-time and shows "up". However, the last message to appear before login is "Using interface tun0" or something to that effect. Then I get: Nov 23 19:47:36 odie ppp[1469]:tun0:warning:chat script failed Nov 23 19:48:37 odie last message repeated 3 times I then have to do a ^C to get a prompt. As well, when I ping "odie" (10.0.0.1) from the win95 box "mandy" (10.0.0.2), odie chokes with: Nov 23 19:47:26 odie /kernel: arplookup 10.0.0.2 failed: could not allocate llinfo I want the following: 3.3R win95 ISP I *have* to use win95 to connect to my ISP. Win95 won't route so I'm pooched as far as connecting to my ISP from the FBSD box - I think. So, for the moment, all I want is an ethernet connection between the two boxes. Should I disable tun0 in rc.conf? Can't the "lo0, tun0 and ep0 co-exist? I thought that "routed" was suppose to do just that. What have I missed in my RTFM blitz? I was using the start_if.tun0 script some time ago (different -now extinct- ISP). Could this be causing the problem? My rc.conf (parts) network_interface="lo0 tun0 ep0" ifconfig_tun0="" ifconfig_ep0="inet 10.0.0.1 netmask 255.255.255.0" defaultrouter="10.0.0.254" gateway_enable="YES" router_enable="YES" ppp_enable="NO" I have 10.0.0.1 and 10.0.0.2 blah blah in /etc/hosts-- 2 lines each. help/advice/suggestions -- hell even &^%**# flames welcome. ;) 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 Thu Nov 23 23: 5:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.csx.ro (router.csx.ro [194.102.122.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FA6C37B4C5 for ; Thu, 23 Nov 2000 23:05:42 -0800 (PST) Received: from csx.ro ([194.102.122.105]) by gate.csx.ro (8.9.3/8.9.3) with ESMTP id KAA17694 for ; Fri, 24 Nov 2000 10:07:32 +0200 Message-ID: <3A1CD2CF.22EFFE1A@csx.ro> Date: Thu, 23 Nov 2000 10:18:23 +0200 From: Romeo X-Mailer: Mozilla 4.03 [en] (Win95; I) MIME-Version: 1.0 To: questions@FreeBSD.org Subject: IMPORTANT Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How can I use linux modules under FreeBSD. If I can how can I do ? Thnx. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 23:39:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 88CCB37B479 for ; Thu, 23 Nov 2000 23:39:15 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id LAA69947; Fri, 24 Nov 2000 11:06:21 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAO7coA19069; Fri, 24 Nov 2000 10:38:50 +0300 Date: Fri, 24 Nov 2000 10:38:50 +0300 From: "Igor' Robul'" To: Romeo Cc: freebsd-questions@freebsd.org Subject: Re: IMPORTANT Message-ID: <20001124103850.A18997@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: Romeo , freebsd-questions@freebsd.org References: <3A1CD2CF.22EFFE1A@csx.ro> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <3A1CD2CF.22EFFE1A@csx.ro>; from cromeo@csx.ro on Thu, Nov 23, 2000 at 10:18:23AM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Nov 23, 2000 at 10:18:23AM +0200, Romeo wrote: > How can I use linux modules under FreeBSD. If I can how can I do You can't. Search mailing list archives before asking basic questions like this. -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Nov 23 23:51:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 50BC937B479 for ; Thu, 23 Nov 2000 23:51:08 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id LAA70000 for ; Fri, 24 Nov 2000 11:18:15 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAO7iEQ19354; Fri, 24 Nov 2000 10:44:14 +0300 Date: Fri, 24 Nov 2000 10:44:14 +0300 From: "Igor' Robul'" To: Duke Normandin <01031149@3web.net> Cc: freebsd-questions@freebsd.org Subject: Re: 3.3R <--> win95 Message-ID: <20001124104414.B18997@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: Duke Normandin <01031149@3web.net>, freebsd-questions@freebsd.org References: <20001124065151.326A437B657@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <20001124065151.326A437B657@hub.freebsd.org>; from 01031149@3web.net on Thu, Nov 23, 2000 at 11:42:50PM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Duke On Thu, Nov 23, 2000 at 11:42:50PM +0000, Duke Normandin wrote: > I want the following: > 3.3R win95 ISP > > I *have* to use win95 to connect to my ISP. Win95 won't route so I'm > pooched as far as connecting to my ISP from the FBSD box - I think. > > So, for the moment, all I want is an ethernet connection between the two > boxes. Should I disable tun0 in rc.conf? Can't the "lo0, tun0 and ep0 > co-exist? I thought that "routed" was suppose to do just that. What Disable tun0. You don't need it. Also, make sure you have made correct crossover. -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 0:19:37 2000 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 682E337B4CF for ; Fri, 24 Nov 2000 00:19:35 -0800 (PST) Received: from localhost (doug@localhost) by pemaquid.safeport.com (8.9.3/8.9.3) with ESMTP id DAA29496 for ; Fri, 24 Nov 2000 03:19:34 -0500 (EST) (envelope-from doug@safeport.com) X-Authentication-Warning: pemaquid.safeport.com: doug owned process doing -bs Date: Fri, 24 Nov 2000 03:19:34 -0500 (EST) From: To: freebsd-questions@FreeBSD.ORG Subject: Installing KDE 2 via pkg_add Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am trying to install KDE 2.0. on 4.2-beta. My system was too small to install via the ports collection. It was suggested that I could install it from a package. I assume that ftp://ftp.freebsd.org/pub/FreeBSD/ports/packages/x11/ is not the correct place to do this from, a pkg_add gets several errors including kdesupport-2.0 and qt-2.2.1 could not be found. Is it possible to do this? What is the correct directory to get the package from? In the meantime I just added more swap space which will probably solve the original problem. _____ 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 Fri Nov 24 0:31:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from buchanan-181-249.stures.iastate.edu (buchanan-181-249.stures.iastate.edu [129.186.181.249]) by hub.freebsd.org (Postfix) with ESMTP id 0E3E637B4CF for ; Fri, 24 Nov 2000 00:31:10 -0800 (PST) Received: (from kparz@localhost) by buchanan-181-249.stures.iastate.edu (8.11.1/8.11.1) id eAO8Y3W07198; Fri, 24 Nov 2000 02:34:03 -0600 (CST) (envelope-from kparz) Date: Fri, 24 Nov 2000 02:34:03 -0600 From: Krzysztof Parzyszek To: Tim McMillen Cc: freebsd-questions@FreeBSD.ORG Subject: Re: VMware for FreeBSD ? Message-ID: <20001124023403.A7169@buchanan-181-249.stures.iastate> References: <20001123230022.A5362@buchanan-181-249.stures.iastate> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from timcm@umich.edu on Fri, Nov 24, 2000 at 12:43:29AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 24, 2000 at 12:43:29AM -0500, Tim McMillen wrote: > > Are you able to use it as a normal user or is that not a good idea anyway? I guess it's not a good idea to run it as root... I can run it as a normal user. > It tells me failed to open /dev/hda permission denied. Of course that > doesn't exist it's just because of linux emulation. What device does it > refer to? My hard drive ad0? When exactly does it complain? -- ,oPq J --- Krzysztof Parzyszek 10/15/2000 1:29am --- 7 `8oP' --- Abandon the search for Truth; settle for a good fantasy. --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 0:31:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.suntop.com (unknown [61.140.208.60]) by hub.freebsd.org (Postfix) with ESMTP id A9EA237B4CF for ; Fri, 24 Nov 2000 00:31:24 -0800 (PST) Received: from rep1 (rep1.suntop.com [192.168.1.88]) by gate.suntop.com (8.9.3/8.9.0) with SMTP id QAA14814; Fri, 24 Nov 2000 16:31:00 +0800 Message-ID: <01a201c055f0$ea6d0860$5801a8c0@suntop.com> From: "Edwin chan" To: "Tim McMillen" Cc: References: Subject: Re: freebsd vs netbsd/openbsd Date: Fri, 24 Nov 2000 16:31:11 +0800 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 X-Loop: FreeBSD.ORG thanks, for your great answer. It's clear my mind. I asked this question few days ago, now I tried install all of them, then got some experience from all of them, eventually, delete NetBSD from my computer. NetBSD said them got some important internet service build into kernel and have a very fast filesystem. but to me , it not support my mx98715a NIC. Just like you said, OpenBSD have a very good man page and clear system, I feel good when I operate it. so I keeped it on one of my computer as OS. FreeBSD can't boot from my old sis chipset computer, but play good with my other old intel chipset computer, and I like the performance it give me. I keeped it on one of my computer as OS , used it as gateway(with ppp) to internet. another computer one for win98, one for slackware linux 7.0. I have very good home network environment now. thanks a lot. edwin chan ----- Original Message ----- From: Tim McMillen To: Edwin chan Sent: Sunday, November 19, 2000 9:39 AM Subject: Re: freebsd vs netbsd/openbsd > > Only you can decide that. It depends on what is important to you. > You've done the correct thing. Spend time on their websites learn as much > as you can about their features. > OpenBSD really is more secure and I like that, but it is not > oriented towards a newbie. Their mailing lists do not tolerate people > asking questions if they have not done their homework and researched their > problem first. This is of course a good idea in any questions list, but > they are serious about it. I have OpenBSD installed and Am learning to > use it as a firewall. The OpenBSD man pages are the best man pages ever, > and their FAQ is more like a book--very useful whether you run FreeBSD or > OpenBSD. > NetBSD seems kind of pointless to me unless you have all sorts of > odd hardware lying around, or you want to run it on a PDA or something. > They really did get NetBSD running on a toaster! The one advantage is > that your user experience is consistent across all devices and machines > that run NetBSD. I've never installed it. > I decided to run FreeBSD because there is a lot more documentation > available. Also because it is much easier to use for a newbie. FreeBSD > with X and KDE2 is a very easy to use system. I have not had it crash in > two months. I've bought the FreeBSD powerpack with ver 3.4 in it. I've > since upgraded to 4.1.1 and will upgrade to 4.2 when it comes out on > Monday hopefully. > Good luck, > > Tim > > ----------------------------------------------- > "A government big enough to give you everything > you want, is a government big enough to take > from you everything you have." > -Gerald Ford > ----------------------------------------------- > > On Fri, 17 Nov 2000, Edwin chan wrote: > > > I am new to freebsd, I noticed that there are netbsd and openbsd exist. I > > watched homepage for every 3 BSD. they have difference goal and idea behind > > it. so I worried which one suit for 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 Fri Nov 24 0:33:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from buchanan-181-249.stures.iastate.edu (buchanan-181-249.stures.iastate.edu [129.186.181.249]) by hub.freebsd.org (Postfix) with ESMTP id 00CFF37B479 for ; Fri, 24 Nov 2000 00:33:48 -0800 (PST) Received: (from kparz@localhost) by buchanan-181-249.stures.iastate.edu (8.11.1/8.11.1) id eAO8aUm07228; Fri, 24 Nov 2000 02:36:30 -0600 (CST) (envelope-from kparz) Date: Fri, 24 Nov 2000 02:36:30 -0600 From: Krzysztof Parzyszek To: Bill Schoolcraft Cc: Tim McMillen , freebsd-questions@freebsd.org Subject: Re: VMware for FreeBSD ? Message-ID: <20001124023630.B7169@buchanan-181-249.stures.iastate> References: <3A1E015F.5588E6E5@wiliweld.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <3A1E015F.5588E6E5@wiliweld.com>; from bill@wiliweld.com on Thu, Nov 23, 2000 at 09:49:19PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Nov 23, 2000 at 09:49:19PM -0800, Bill Schoolcraft wrote: > > Hello, I was prompted for some paths that were Linux specific during the > install. What version of VMware did you both install ? I installed vmware2 from the ports. I can't remember being asked about anything... -- ,oPq J --- Krzysztof Parzyszek 10/15/2000 1:29am --- 7 `8oP' --- Abandon the search for Truth; settle for a good fantasy. --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 0:35: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mel.alcatel.fr (mel.alcatel.fr [212.208.74.132]) by hub.freebsd.org (Postfix) with ESMTP id 4C3DE37B479 for ; Fri, 24 Nov 2000 00:34:56 -0800 (PST) Received: from aifhs2.alcatel.fr (mailhub.alcatel.fr [155.132.180.80]) by mel.alcatel.fr (ALCANET/SMTP) with ESMTP id JAA18975; Fri, 24 Nov 2000 09:34:01 +0100 From: tudor@bcv01y01.vz.cit.alcatel.fr Received: from dnscit.cit.alcatel.fr (dnscit.cit.alcatel.fr [139.54.100.2]) by aifhs2.alcatel.fr (ALCANET/SMTP2) with ESMTP id JAA12198; Fri, 24 Nov 2000 09:31:15 +0100 (MET) Received: from dnsvz.vz.cit.alcatel.fr (dnsvz.vz.cit.alcatel.fr [139.54.85.1]) by dnscit.cit.alcatel.fr (8.9.3+Sun/8.9.3) with ESMTP id JAA06390; Fri, 24 Nov 2000 09:36:36 +0100 (MET) Received: from bcv01y01.vz.cit.alcatel.fr (bcv01y01.vz.cit.alcatel.fr [139.54.101.1]) by dnsvz.vz.cit.alcatel.fr (8.9.3+Sun/8.9.3) with ESMTP id JAA03457; Fri, 24 Nov 2000 09:37:28 +0100 (MET) Received: from bcv01y01.vz.cit.alcatel.fr ([172.25.128.14] (may be forged)) by bcv01y01.vz.cit.alcatel.fr with ESMTP (8.8.6 (PHNE_17135)/8.7.1) id JAA16798; Fri, 24 Nov 2000 09:33:36 +0100 (MET) Message-ID: <3A1E2956.9568027B@bcv01y01.vz.cit.alcatel.fr> Date: Fri, 24 Nov 2000 10:39:50 +0200 X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.6 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: doug@safeport.com Cc: "questions@FreeBSD.ORG" Subject: Re: Installing KDE 2 via pkg_add References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG doug@safeport.com wrote: > > I am trying to install KDE 2.0. on 4.2-beta. My system was too small to > install via the ports collection. It was suggested that I could install > it from a package. > > I assume that ftp://ftp.freebsd.org/pub/FreeBSD/ports/packages/x11/ is > not the correct place to do this from, a pkg_add gets several errors > including kdesupport-2.0 and qt-2.2.1 could not be found. > > Is it possible to do this? What is the correct directory to get the > package from? > > In the meantime I just added more swap space which will probably solve > the original problem. > > _____ > 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 Take the packages from ftp://ftp.freebsd.org/pub/FreeBSD/ports/packages/kde. Here must be the required qt package: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-4-stable/All/qt-2.2.1.tgz Tudor. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 0:35: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from belcebu.upc.es (belcebu.upc.es [147.83.2.63]) by hub.freebsd.org (Postfix) with ESMTP id 4B98A37B4C5 for ; Fri, 24 Nov 2000 00:34:57 -0800 (PST) Received: from mat.upc.es (mat.upc.es [147.83.39.3]) by belcebu.upc.es (8.8.8+Sun/8.8.8) with ESMTP id JAA29260 for ; Fri, 24 Nov 2000 09:34:50 +0100 (MET) Received: from mat.upc.es (maite137 [147.83.39.137]) by mat.upc.es (8.8.8/8.8.8) with ESMTP id JAA07897 for ; Fri, 24 Nov 2000 09:34:18 +0100 (MET) Message-ID: <3A1E284F.2C3FCD7A@mat.upc.es> Date: Fri, 24 Nov 2000 09:35:27 +0100 From: Carles =?iso-8859-1?Q?G=F3mez?= Montenegro Organization: DMAT-UPC X-Mailer: Mozilla 4.51 [es] (WinNT; U) X-Accept-Language: es MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: getting FreeBSD 3.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I am a telecommunications student from UPC (Polytechnic University ofCatalonia). I am writing this mail to you because I would like to get the FreeBSD 3.0 version. I have been searching for it unsuccessfully through the ftp.FreeBSD.org/pub/FreeBSD/releases/alpha directory, and also through the ftp.FreeBSD.org/pub/FreeBSD/releases/i386 directory. It seems like the earlier Free BSD version I can get from those directories is FreeBSD 3.4, so I would be very pleased if you could tell me how I can get the 3.0 version. I would also like to ask two more questions: 1) If some software runs correctly on FreeBSD 3.0, can I install it on an upgraded FreeBSD version without any problems? 2) Which is the difference between the following: "3.4.-Release" "3.4.-Stable" Thank you. Carles Gómez Montenegro Polytechnic University of Catalonia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 0:43: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from isy.liu.se (isy.liu.se [130.236.48.10]) by hub.freebsd.org (Postfix) with ESMTP id 2D43837B4CF for ; Fri, 24 Nov 2000 00:42:59 -0800 (PST) Received: from lagrange.isy.liu.se (lagrange.isy.liu.se [130.236.49.127]) by isy.liu.se (8.10.0/8.10.0) with ESMTP id eAO8gvf11225 for ; Fri, 24 Nov 2000 09:42:57 +0100 (MET) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Fri, 24 Nov 2000 09:42:56 +0100 (CET) From: Micke Josefsson To: freebsd-questions@freebsd.org Subject: A quickie about make update Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Will a 'make update' update my 3.x-STABLE to 4.x-STABLE or just to a later, better 3.x-STABLE? In the past I have only cvsup'ped my sources from the RELENG_3 branch, but I have now made myself the entire repository without the 'tags' so I should have all versions, right? Anyway my previous cvsup and 'make world' have only gotten me from 3.2-RELEASE to 3.x-STABLE (Due to the RELENG_3 tag in my cvsup-file). Is it possible to get RELENG_4 sources and try a make world with that without causing havoc? /Micke ---------------------------------- Michael Josefsson, MSEE mj@isy.liu.se This message was sent by XFMail running on FreeBSD 3.5-STABLE ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 1:21:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from myhakas.matti.ee (myhakas.matti.ee [194.126.114.87]) by hub.freebsd.org (Postfix) with ESMTP id 357BC37B4D7 for ; Fri, 24 Nov 2000 01:21:55 -0800 (PST) Received: (from vallo@localhost) by myhakas.matti.ee (8.11.1/8.11.1) id eAO9LCx66833; Fri, 24 Nov 2000 11:21:12 +0200 (EET) (envelope-from vallo) Date: Fri, 24 Nov 2000 11:21:11 +0200 From: Vallo Kallaste To: Ryan Cc: freebsd-questions@FreeBSD.ORG Subject: Re: HP PCI Nic (AMD PCnet-FAST PCI) Message-ID: <20001124112111.A66749@myhakas.matti.ee> Reply-To: vallo@matti.ee References: <20001122161711.A6219@gmx.net> <002701c0554e$43bc0720$0200a8c0@ryan> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.11i In-Reply-To: <002701c0554e$43bc0720$0200a8c0@ryan>; from rnera@optushome.com.au on Thu, Nov 23, 2000 at 11:06:58PM +1000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Nov 23, 2000 at 11:06:58PM +1000, Ryan wrote: > I didnt even know what SQE was... > > anyone know how to turn it off? lnc driver is the most ugly I've ever seen by means of spewing out boatloads of error messages for every reason you can ever imagine. I had to edit driver source for 3-card FreeBSD based bridge to plug this big mouth. These cards were PCnet-ISA+ though. -- Vallo Kallaste vallo@matti.ee To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 1:32:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns.anritsu.co.jp (ns.anritsu.co.jp [133.236.48.2]) by hub.freebsd.org (Postfix) with ESMTP id 2A27637B479 for ; Fri, 24 Nov 2000 01:32:23 -0800 (PST) Received: from gatekeeper.noc.anritsu.co.jp (gatekeeper.noc.anritsu.co.jp [133.236.19.3]) by ns.anritsu.co.jp (8.9.3+3.1W/3.7W/20001122.13/C) with ESMTP id SAA18198 for ; Fri, 24 Nov 2000 18:32:21 +0900 (JST) (envelope-from Saito.Masao@pp.anritsu.co.jp) Received: (from root@localhost) by gatekeeper.noc.anritsu.co.jp (8.8.8+2.7Wbeta7/CF-3.5Wpl7/19991218.23/N) id SAA07471; Fri, 24 Nov 2000 18:32:20 +0900 (JST) Received: from mail1.cr.anritsu.co.jp (mail1.cr.anritsu.co.jp [172.16.32.28]) by gatekeeper.noc.anritsu.co.jp (8.8.8+2.7Wbeta7/CF-3.5Wpl7/19991218.23/C) with ESMTP id SAA07468 for ; Fri, 24 Nov 2000 18:32:20 +0900 (JST) Received: from pp.anritsu.co.jp ([172.16.80.156]) by mail1.cr.anritsu.co.jp (Netscape Messaging Server 3.54) with ESMTP id AAA6ED5 for ; Fri, 24 Nov 2000 18:29:48 +0900 Message-ID: <3A1E363B.3D72C257@pp.anritsu.co.jp> Date: Fri, 24 Nov 2000 18:34:51 +0900 From: Masao SAITO X-Mailer: Mozilla 4.7 [ja] (Win95; I) X-Accept-Language: ja MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: =?iso-2022-jp?B?dGVsbmV0ZBskQiRLJEQkJCRGGyhC?= Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG $B$3$s$K$A$O!#(B $B@FF#$G$9!#(B $B;d$O:#!"0J2<$N$h$&$J$3$H$r;n$=$&$H;W$C$F$$$^$9!#(B $B!&<+J,FH<+$N%3%^%s%I$r@8@.$9$k(B $B!&(Btelnet$B$rMQ$$$F!"%j%b!<%H$+$i\:Y$,8+$($F$-$^$;$s!#(B telnetd$B$N%=!<%9$r2r@O$7$?$3$H$,$"$kJ}!"(B $B4JC1$K65$($F$/$@$5$$!#(B $B59$7$/$*4j$$$7$^$9!#(B To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 1:44:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from thing.orbitel.bg (thing.orbitel.bg [195.24.32.46]) by hub.freebsd.org (Postfix) with SMTP id 0A13937B479 for ; Fri, 24 Nov 2000 01:44:19 -0800 (PST) Received: (qmail 7726 invoked by uid 1001); 24 Nov 2000 09:44:15 -0000 Date: Fri, 24 Nov 2000 11:44:15 +0200 From: Stanislav Grozev To: questions@freebsd.org Subject: 4.2-release iso image md5 mismatch Message-ID: <20001124114415.A7686@thing.orbitel.bg> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qMm9M+Fa2AknHoGS" Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --qMm9M+Fa2AknHoGS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, Yesterday I downloaded the 4.2-release iso image from ftp.freebsd.org. the file burns fine to a cd, and the cd mounts fine. however, the md5 checksum of the file is: 93e9256209887af0286f85e58f139b00 and the one listed in CHECKSUMS.MD5 is: MD5 (4.2-install.iso) =3D 7eec8a2e4bc2211fccf18b5a6fd5b55e also, a friend of mine downloaded the iso from the same location, but today, and yet with different checksum: 9b306c6e9140d05f96b035e033c46465 so, what's going on? -tacho --=20 [i don't follow] | [http://daemonz.org/ || tacho@daemonz.org] [everything should be made as simple as possible, but no simpler] 0x44FC3339 || [02B5 798B 4BD1 97FB F8DB 72E4 DCA4 BE03 44FC 3339] --qMm9M+Fa2AknHoGS 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 iD8DBQE6Hjhv3KS+A0T8MzkRAvJeAJ9DQ1rC+OR5R/CI1Tv5hztzCHhz0gCfe97n WhnocyGVMLqTlvVXDkoGakc= =2qWF -----END PGP SIGNATURE----- --qMm9M+Fa2AknHoGS-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 1:48:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id E1EC037B4C5 for ; Fri, 24 Nov 2000 01:48:38 -0800 (PST) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id WAA00661 for ; Fri, 24 Nov 2000 22:48:13 +1300 (NZDT) Message-Id: <200011240948.WAA00661@ducky.nz.freebsd.org> From: "Dan Langille" Organization: The FreeBSD Diary To: freebsd-questions@freebsd.org Date: Fri, 24 Nov 2000 22:48:31 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: boot freezes on is0: isa bus on motherboard Reply-To: dan@freebsddiary.org X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a lovely old 486 with 16MB of ram. If I do a shutdown -r now, the box consistenly freezes on the reboot. And always at the same spot. The last line shown on the console is: on is0: isa bus on motherboard If I then press the reset button, or do a shutdown -h now and then hit reset, the box boot normally. Looking at the dmesg output, I see this: md0: Malloc disk npx0: on motherboard npx0: INT 16 interface isa0: on motherboard fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ata0 at port 0x1f0-0x1f7,0x3f6 irq 14 on isa0 That's my floppy drive as as I know. Why would it freeze up like that? cheers. -- Dan Langille - DVL Software Limited FreshPorts - http://freshports.org/ - the place for ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 1:52:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id BF78937B4CF for ; Fri, 24 Nov 2000 01:52:38 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id NAA70284 for ; Fri, 24 Nov 2000 13:19:49 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAO9qIt20878 for freebsd-questions@freebsd.org; Fri, 24 Nov 2000 12:52:18 +0300 Date: Fri, 24 Nov 2000 12:52:18 +0300 From: "Igor' Robul'" To: freebsd-questions@freebsd.org Subject: Just BSD Chuky :-) Message-ID: <20001124125218.A20828@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sorry, but I have just found nice link :-) http://www.gonzo.kiev.ua/bsd.html -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 2: 2:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id CD5B337B4C5 for ; Fri, 24 Nov 2000 02:02:40 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id NAA70324; Fri, 24 Nov 2000 13:29:42 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAOA2H820971; Fri, 24 Nov 2000 13:02:17 +0300 Date: Fri, 24 Nov 2000 13:02:17 +0300 From: "Igor' Robul'" To: Stanislav Grozev Cc: freebsd-questions@freebsd.org Subject: Re: 4.2-release iso image md5 mismatch Message-ID: <20001124130217.A20919@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: Stanislav Grozev , freebsd-questions@freebsd.org References: <20001124114415.A7686@thing.orbitel.bg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <20001124114415.A7686@thing.orbitel.bg>; from tacho@orbitel.bg on Fri, Nov 24, 2000 at 11:44:15AM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 24, 2000 at 11:44:15AM +0200, Stanislav Grozev wrote: > Yesterday I downloaded the 4.2-release iso image from ftp.freebsd.org. > the file burns fine to a cd, and the cd mounts fine. however, the Stanislav, But this is not mean that you can install everything on this CD :-( For example, I have one 4.0-RELEASE CD which I can mount, and more, I can read most of files on this CD, but I can't install FBSD from it. Because some of sbin* files are corrupted :-( So, now I will not burn to CD any image if it has incorrect checksum, just because I don't have unneeded money. Even $1.5 for CD can be very nice in some situations there in Russia. -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 2: 3:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ngo.org.uk (ngo.org.uk [193.62.43.28]) by hub.freebsd.org (Postfix) with ESMTP id 8ECE637B4C5 for ; Fri, 24 Nov 2000 02:03:53 -0800 (PST) Received: (from mac@localhost) by ngo.org.uk (8.9.3/8.9.3) id KAA19771; Fri, 24 Nov 2000 10:06:45 GMT From: Mac Message-Id: <200011241006.KAA19771@ngo.org.uk> Subject: Trouble install expect-5.32.1 from ports on 4.1-RELEASE To: freebsd-questions@freebsd.org Date: Fri, 24 Nov 2000 10:06:44 +0000 (GMT) Cc: make@ngo.org.uk, install@ngo.org.uk X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, I'm having trouble installing expect-5.32.1 from the ports on FreeBSD 4.1-RELEASE (intel). 'make' (in /usr/ports/lang/expect) runs fine. 'make install' produces this:- # make install ===> Installing for expect-5.32.1 ===> expect-5.32.1 depends on shared library: tk82.1 - found Making binaries in testsuite... ./mkinstalldirs /usr/local/lib/expect5.32 if [ -s libexpect532.a ] ; then install -c -o root -g wheel -m 444 libexpect532.a /usr/local/lib/expect5.32/libexpect532.a ; ranlib /usr/local/lib/expect5.32/libexpect532.a ; install -c -o root -g wheel -m 444 libexpect532.a /usr/local/lib/libexpect532.a ; ranlib /usr/local/lib/libexpect532.a ; else true; fi /usr/libexec/elf/strip: /usr/local/lib/expect5.32/pkgIndex.tcl: File format not recognized *** Error code 70 Stop in /usr/ports/lang/expect/work/expect-5.32. *** Error code 1 Stop in /usr/ports/lang/expect. *** Error code 1 Stop in /usr/ports/lang/expect. *** Error code 1 Stop in /usr/ports/lang/expect. # I attempted a workaround by replacing the 'INSTALL_PROGRAM' with 'INSTALL_DATA' in the Makefile (work/expect-5.32/Makefile) for pkgIndex.tcl (line 368), but that then produced this (which looks like a nearly complete install):- # make install [... load deleted here for brevity for i in kibitz dislocate xkibitz tknewsbiff unbuffer mkpasswd passmass cryptdir decryptdir autoexpect end_of_list ; do if [ -f ./example/$i.m an ] ; then install -c -o root -g wheel -m 444 ./example/$i.man /usr/local/man/man1/$i.1 ; else true; fi ; done ===> Generating temporary packing list ** Missing package files for expect-5.32.1. *** Error code 1 Stop in /usr/ports/lang/expect. *** Error code 1 Stop in /usr/ports/lang/expect. *** Error code 1 Stop in /usr/ports/lang/expect. # I'm now out of ideas. There's no package for this (as far as I can see) so I have to use the port, and I'd _really_ like to get this working. Anyone got _any_ ideas? Mac To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 2: 8:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from thing.orbitel.bg (thing.orbitel.bg [195.24.32.46]) by hub.freebsd.org (Postfix) with SMTP id 740AF37B4CF for ; Fri, 24 Nov 2000 02:08:11 -0800 (PST) Received: (qmail 8266 invoked by uid 1001); 24 Nov 2000 10:08:06 -0000 Date: Fri, 24 Nov 2000 12:08:06 +0200 From: Stanislav Grozev To: igorr@crosswinds.net Cc: questions@freebsd.org Subject: Re: 4.2-release iso image md5 mismatch Message-ID: <20001124120806.A8161@thing.orbitel.bg> References: <20001124114415.A7686@thing.orbitel.bg> <20001124130217.A20919@linux.rainbow> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="NzB8fVQJ5HfG6fxh" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001124130217.A20919@linux.rainbow>; from igor@raduga.dyndns.org on Fri, Nov 24, 2000 at 01:02:17PM +0300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --NzB8fVQJ5HfG6fxh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Nov 24, 2000 at 01:02:17PM +0300, Igor' Robul' wrote: > On Fri, Nov 24, 2000 at 11:44:15AM +0200, Stanislav Grozev wrote: > > Yesterday I downloaded the 4.2-release iso image from ftp.freebsd.org. > > the file burns fine to a cd, and the cd mounts fine. however, the > Stanislav,=20 > But this is not mean that you can install everything on this CD :-(=20 yes i know. that's why i am asking here. > For example, I have one 4.0-RELEASE CD which I can mount, and more, I > can read most of files on this CD, but I can't install FBSD from it. > Because some of sbin* files are corrupted :-(=20 > So, now I will not burn to CD any image if it has incorrect checksum, > just because I don't have unneeded money. Even $1.5 for CD can be very > nice in some situations there in Russia. same here in bulgaria, but i am lucky that my employer pays for the cd's so it's not big deal;) -tacho --=20 [i don't follow] | [http://daemonz.org/ || tacho@daemonz.org] [everything should be made as simple as possible, but no simpler] 0x44FC3339 || [02B5 798B 4BD1 97FB F8DB 72E4 DCA4 BE03 44FC 3339] --NzB8fVQJ5HfG6fxh 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 iD8DBQE6Hj4G3KS+A0T8MzkRAiVdAJwPBVtZltO6ULpl8/wkgNJ6Bpmp2ACdFdo+ T7XN7bAhOwtMWsvWSwqFLHo= =Gohg -----END PGP SIGNATURE----- --NzB8fVQJ5HfG6fxh-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 2:12:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.suntop.com (unknown [61.140.208.60]) by hub.freebsd.org (Postfix) with ESMTP id 24C1C37B4D7 for ; Fri, 24 Nov 2000 02:12:41 -0800 (PST) Received: from rep1 (rep1.suntop.com [192.168.1.88]) by gate.suntop.com (8.9.3/8.9.0) with SMTP id SAA14871 for ; Fri, 24 Nov 2000 18:12:38 +0800 Message-ID: <000c01c055ff$1a7572a0$5801a8c0@suntop.com> From: "Edwin chan" To: References: <20001124114415.A7686@thing.orbitel.bg> <20001124130217.A20919@linux.rainbow> <20001124120806.A8161@thing.orbitel.bg> Subject: Re: 4.2-release iso image md5 mismatch Date: Fri, 24 Nov 2000 18:12:50 +0800 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 X-Loop: FreeBSD.ORG I download a copy of 4.2 too, it just match the md5 checksum. ----- Original Message ----- From: Stanislav Grozev To: Cc: Sent: Friday, November 24, 2000 6:08 PM Subject: Re: 4.2-release iso image md5 mismatch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 2:31:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from post.webmailer.de (natmail2.webmailer.de [192.67.198.65]) by hub.freebsd.org (Postfix) with ESMTP id BC52837B479 for ; Fri, 24 Nov 2000 02:31:51 -0800 (PST) Received: from localhost.localdom (p3E9E156A.dip.t-dialin.net [62.158.21.106]) by post.webmailer.de (8.9.3/8.8.7) with ESMTP id LAA03417; Fri, 24 Nov 2000 11:31:48 +0100 (MET) Received: from masterpc (master [192.168.0.1]) by localhost.localdom (8.11.1/8.11.1) with ESMTP id eAOAP8I00597; Fri, 24 Nov 2000 11:25:08 +0100 (CET) Date: Fri, 24 Nov 2000 11:25:21 -0800 From: Boris X-Mailer: The Bat! (v1.46d) Personal Reply-To: Boris X-Priority: 3 (Normal) Message-ID: <76395278.20001124112521@x-itec.de> To: "Vitaly Dugaev" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: MySQL In-reply-To: <005801c05557$c0860c20$c6642cc2@default> References: <005801c05557$c0860c20$c6642cc2@default> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello Vitaly, Thursday, November 23, 2000, 6:14:34 AM, you wrote: VD> Please help me get some information how conect to MySQL from ODBC (Win 98). VD> I have 12 computors in ethernet, in computer IP=200.0.0.1 I install FreBSD 4.0 with MySQL, but I can't or don't know how connect to them using ODBC (I want make program in Delphi as client). VD> I am beginer U need to download the ODBC driver from the mysql website. Internally, the driver connects to port 3306 on your bsd box. You have to read the dox about GRANT someone access to tables and how to allow connecting other hosts to your mysql-database, if you are not logging in with a @localhost (or similar). A small answer but there is everything well documented at mysql.com -- Best regards, Boris mailto:koester@x-itec.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 3: 3: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rhea.king.ac.uk (rhea.king.ac.uk [141.241.2.9]) by hub.freebsd.org (Postfix) with SMTP id 804D937B4C5 for ; Fri, 24 Nov 2000 03:03:03 -0800 (PST) Received: from atlas.kingston.ac.uk (actually host team.king.ac.uk) by rhea.king.ac.uk with SMTP (XT-PP) with ESMTP; Fri, 24 Nov 2000 11:06:57 +0000 Received: from TENDSPR/SpoolDir by atlas.kingston.ac.uk (Mercury 1.48); 24 Nov 00 11:02:41 +0000 Received: from SpoolDir by TENDSPR (Mercury 1.48); 24 Nov 00 11:02:38 +0000 From: Amit UPPAL Organization: Kingston University To: freeBSD-questions@freebsd.org Date: Fri, 24 Nov 2000 11:02:22 -0000 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: BSD's contribution to the world Message-ID: <3A1E4ABE.2338.3FB0160@localhost> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I am currently doing a assignment on how BSD has contributed > to unix as a whole. I need some information concerning what > contributions the BSD series has given to the world and its > influence on the internet. I am also going to be using Mac OS X > and naturally a new member of the BSD unix community. I hope of > hearing from you soon Amit. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 3:47:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 3577F37B4CF for ; Fri, 24 Nov 2000 03:47:56 -0800 (PST) Received: from [128.130.111.75] (procyon [128.130.111.75]) by vexpert.dbai.tuwien.ac.at (8.9.3/8.9.3) with ESMTP id MAA12183; Fri, 24 Nov 2000 12:47:42 +0100 (MET) Date: Fri, 24 Nov 2000 12:47:43 +0100 (CET) From: Toni Pisjak To: Cc: , Admin Subject: RE: ipfw on multiple NICs Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello ! It's a long time ago, that you wrote this message, but perhaps you still remember what you did at that time, to setup your firewall. These days i have the same problem, namely i cannot get the packages *through* the firewall. They arrive at one NIC, but don't reach the other NIC, though i tried all the suggestions explained below. Were these suggestions sufficient for you, or did you have to do something additional? Thanks in advance: Toni. ------------------------------------------------------------- On Sun, 9 May 1999, daniel B wrote: > I am in the process of setting up a firewall for my internal Freebsd LAN > The network looks like this: > > Internet-----[ DSL router ]----[ fbsd firewall ]----[ LAN ] > ep1 ep0 > > I have compiled my kernel for IPFIREWALL_VERBOSE > Added support for net interface ep1 in kernel > Enabled ipfw in the /etc/rc.conf > and I am using the 'simple' rule-set in /etc/rc.firewall to test setup > All machines (router, firewall and LAN) are on the same subnet /27 > All vital services DNS, HTTP and SMTP are running on the LAN machines > > My questions are: > 1.) What kind of gateway or routing mechanism should I use to force > incoming packets from the Internet to arrive at ep1 and pass through the > firewall and to ep0 and to the LAN > > 2.) outgoing packets from LAN to pass through ep0, firewall, ep1, router > and to the Internet. > > The LAN consept here is probably misleading because all machines are in > the same /27 subnet. Turn 'gateway_enable=YES' on in /etc/rc.conf, configure your interfaces, add a default route, and you should be set to go. I would _highly_ suggest saving some cash and setting up natd on the firewall. Doug White Internet: dwhite@resnet.uoregon.edu | FreeBSD: The Power to Serve http://gladstone.uoregon.edu/~dwhite | www.freebsd.org -------------------------------------------------------------------- -- Toni Pisjak Technische Universitaet Wien pisjak@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 3:59: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fwse.teligent.se (gateway.teligent.se [194.17.198.3]) by hub.freebsd.org (Postfix) with SMTP id 6E90237B4C5 for ; Fri, 24 Nov 2000 03:59:01 -0800 (PST) To: Subject: Shared Memory Date: Fri, 24 Nov 2000 12:56:27 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Priority: 1 (Highest) X-MSMail-Priority: High X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: High Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by iservern.teligent.se id MAA09640 Disposition-Notification-To: "William Carlsson - Teligent Nordic, AB - Sweden" Message-ID: From: "William Carlsson - Teligent Nordic, AB - Sweden" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've noticed that there are no safe way to set the maximum number of open files and processes for the system in 3.x+ Nor a good way to set the size of shared memory... Please prove me wrong and let me know how? ---------------------------------------------------- William Carlsson Second Line Support Teligent Nordic AB P.O. Box 213 S-149 21 Nyn=E4shamn SWEDEN Telephone: +46 - 8 - 59 99 11 92 eMail: william.carlsson@teligent.se http://www.teligent.se ---------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 3:59:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from thesadmachine.org (dsl254-008-078-sea1.dsl-isp.net [216.254.8.78]) by hub.freebsd.org (Postfix) with SMTP id 67C8937B4C5 for ; Fri, 24 Nov 2000 03:59:34 -0800 (PST) Received: (qmail 9339 invoked by uid 1001); 24 Nov 2000 12:09:02 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 24 Nov 2000 12:09:02 -0000 Date: Fri, 24 Nov 2000 06:09:02 -0600 (CST) From: brian william wolter To: Francis Abella Cc: Subject: Re: How do I move my server? In-Reply-To: <005701c0558d$5ef77800$2ec40618@home> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG do ANYTHING but let it out of your immediate control... peace, brian t h e S a d M a c h i n e . o r g On Thu, 23 Nov 2000, Francis Abella wrote: > Hey all! > > I have to move from one coast to another (U.S.) and am scared s@#tless about > moving my server. > > I've a hand-me-down Compaq Proliant 1600 with 4 hot-swappable drives running > FreeBSD 3.4. > > I'm sure many of you have moved your computers before, but this is my first > time. Does anyone have any insight to what to specifically do and watch out > for? > > Is there some sort of park utility for the hard drives? > > Should I pull the hard drives before shipping the server? > > Does anyone have any experience with either Fedex or UPS and have any > recommendations on either? or should I try to check "my baby" on as luggage > with me? > > I've done a complete dump of all the info on my hard drives, but am clueless > as to the next step! > > Please help! > > TYIA > > abellaf@allcet.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 Nov 24 4: 5:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from thesadmachine.org (dsl254-008-078-sea1.dsl-isp.net [216.254.8.78]) by hub.freebsd.org (Postfix) with SMTP id 50B0437B4C5 for ; Fri, 24 Nov 2000 04:05:45 -0800 (PST) Received: (qmail 9358 invoked by uid 1001); 24 Nov 2000 12:15:13 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 24 Nov 2000 12:15:13 -0000 Date: Fri, 24 Nov 2000 06:15:13 -0600 (CST) From: brian william wolter To: Cc: Subject: Re: Apache Installation In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG the FreeBSD startup script is /etc/rc... just modify that and you'll be good to go. peace, brian t h e S a d M a c h i n e . o r g On Fri, 24 Nov 2000, Travis Troyer wrote: > I installed FreeBSD 4.1 not too long ago, and installed the httpd along with > it. I decided I wanted a modified apache, so I downloaded the source code, > modified, and compiled it. It is in a different directory than the apache I > was using, plus used a different httpd.conf, so I changed the port from 80 > to test it while the other server is running, and it worked fine. So, now I > want to replace my old apache with my newly compiled apache. I can not > figure out what causes apache to load on startup, so that I can change it to > point to my new apache. I have looked at every file in /etc and see no > reference to it at all. How can I go about doing this? > _____________________________________________________________________________________ > Get more from the Web. FREE MSN Explorer download : 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 Fri Nov 24 4:16:11 2000 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 3FD6F37B4CF for ; Fri, 24 Nov 2000 04:16:07 -0800 (PST) Received: from wp2 (wp2 [192.168.0.12]) by osiris.ipform.ru (8.11.1/8.11.1) with SMTP id eAOCFqU01977 for ; Fri, 24 Nov 2000 15:15:56 +0300 (MSK) (envelope-from matrix@ipform.ru) Message-ID: <008701c05610$4c73d920$0c00a8c0@ipform.ru> From: "Artem Koutchine" To: References: Subject: Limiting CPU usage Date: Fri, 24 Nov 2000 15:15:48 +0300 Organization: IP Form MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! How can I run a programm so it will not use more than X% of CPU? Also, how can i change that param for existing process? nice and renice do a little different thing, a process still can eat up all of cpu. 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 Nov 24 4:46:27 2000 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 C706337B4CF for ; Fri, 24 Nov 2000 04:46:20 -0800 (PST) Received: from wp2 (wp2 [192.168.0.12]) by osiris.ipform.ru (8.11.1/8.11.1) with SMTP id eAOCk0U02274; Fri, 24 Nov 2000 15:46:01 +0300 (MSK) (envelope-from matrix@ipform.ru) Message-ID: <00a201c05614$80e1f300$0c00a8c0@ipform.ru> From: "Artem Koutchine" To: "Francis Abella" Cc: References: Subject: Re: How do I move my server? Date: Fri, 24 Nov 2000 15:43:26 +0300 Organization: IP Form MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hmm.. i've been moving servers for 5 years now:) Well, i'd pull out the hdds and some other important parts with MECHANICAL MOVING PART and take it with me on a plane. The rest i'd send via UPS or FEDEX (i personally used fedex, it is expensive but no problems occured at all). I am pretty sure that you could use some ground based mailing for parsel delivery, that'd be a lot cheaper. And remember, HARDWARE can be restored or bought, INFORMATION is PRICELESS! So, keep all storage media under control, everything else is secondary. You do not need any parking utility, since all modern HDDs are autoparkable. I am sure i'l be fine with these recommendations. Good luck! Artem > > Hey all! > > > > I have to move from one coast to another (U.S.) and am scared s@#tless about > > moving my server. > > > > I've a hand-me-down Compaq Proliant 1600 with 4 hot-swappable drives running > > FreeBSD 3.4. > > > > I'm sure many of you have moved your computers before, but this is my first > > time. Does anyone have any insight to what to specifically do and watch out > > for? > > > > Is there some sort of park utility for the hard drives? > > > > Should I pull the hard drives before shipping the server? > > > > Does anyone have any experience with either Fedex or UPS and have any > > recommendations on either? or should I try to check "my baby" on as luggage > > with me? > > > > I've done a complete dump of all the info on my hard drives, but am clueless > > as to the next step! > > > > Please help! > > > > TYIA > > > > abellaf@allcet.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 Fri Nov 24 4:47:58 2000 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 1172537B479 for ; Fri, 24 Nov 2000 04:47:55 -0800 (PST) Received: from wp2 (wp2 [192.168.0.12]) by osiris.ipform.ru (8.11.1/8.11.1) with SMTP id eAOClrU02280 for ; Fri, 24 Nov 2000 15:47:53 +0300 (MSK) (envelope-from matrix@ipform.ru) Message-ID: <00a301c05614$c2a805e0$0c00a8c0@ipform.ru> From: "Artem Koutchine" To: Subject: Powering down HDD and FM Radio control. Date: Fri, 24 Nov 2000 15:47:50 +0300 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.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! I am assembling a very weird system which supposed to be very quite and low power cosuming and work on 24x7 bases. As an OS i am planning to use FreeBSD (the box is something like home multimedia system: MP3 player, CD player, Radio, Termometer. Input: a small keypad in one of the 5,25" bays and output via 20x4 LCD with LED backlight. Currently i am working on the hardware, but soon i'll need some software too. So, i need to know how to power down the hdd (it is a very cheap, small HDD which is used to boot the system and then it must be powerd down). Also, I need to know if there is some software for controlling FM radio cards. And the last: i need some sample on how to access port in fbsd, since i need to write some controlling software for the lcd, termometer and probably the FM card. 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 Nov 24 5:32:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost.esil.univ-mrs.fr (jiyu.esil.univ-mrs.fr [139.124.44.249]) by hub.freebsd.org (Postfix) with ESMTP id 7FD2137B479 for ; Fri, 24 Nov 2000 05:32:21 -0800 (PST) Received: from cam (cam.esil.univ-mrs.fr [139.124.44.65]) by mailhost.esil.univ-mrs.fr (8.9.3/ESIL/jtpda-5.3.1) with SMTP id OAA36073 for ; Fri, 24 Nov 2000 14:32:12 +0100 (CET) Message-Id: <200011241332.OAA36073@mailhost.esil.univ-mrs.fr> Date: Fri, 24 Nov 2000 14:33:14 +0100 From: cam To: questions@freebsd.org Subject: how to shutdown the computer X-Mailer: Sylpheed version 0.4.2 (GTK+ 1.2.7; Linux 2.2.17; i686) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi I would like to have some informations (web pages, man pages) about how to proceed to make FreeBSD shutdown the computer when I 'halt' it like with windows 98 or Linux (ATX). Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 5:41:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from styx.astrom.net (unknown [193.15.98.30]) by hub.freebsd.org (Postfix) with ESMTP id 71F3937B479 for ; Fri, 24 Nov 2000 05:41:46 -0800 (PST) Received: from localhost (astrom@localhost) by styx.astrom.net (8.11.0/8.11.0) with ESMTP id eAODdDd76579; Fri, 24 Nov 2000 14:39:13 +0100 (CET) (envelope-from patrik@astrom.net) Date: Fri, 24 Nov 2000 14:37:58 +0100 (CET) From: Patrik Astrom X-Sender: astrom@styx.astrom.net To: cam Cc: freebsd-questions@freebsd.org Subject: Re: how to shutdown the computer In-Reply-To: <200011241332.OAA36073@mailhost.esil.univ-mrs.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG From the manpage... -p The system will turn off the power if it can. This is of course likely to make reboot rather similar to halt. This works if you have apm support in your kernel. Regards Patrik Astrom On Nov 24, 2000 at 14:33, cam wrote: > Date: Fri, 24 Nov 2000 14:33:14 +0100 > From: cam > To: questions@FreeBSD.ORG > Subject: how to shutdown the computer > > Hi > > I would like to have some informations (web pages, man pages) about how to proceed to make FreeBSD shutdown the computer when I 'halt' it like with windows 98 or Linux (ATX). > > 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 Fri Nov 24 5:42:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bumper.jellybaby.net (bumper.jellybaby.net [194.159.247.1]) by hub.freebsd.org (Postfix) with ESMTP id AD05437B479 for ; Fri, 24 Nov 2000 05:42:19 -0800 (PST) Received: (from simond@localhost) by bumper.jellybaby.net (8.9.2/8.9.2) id NAA45547; Fri, 24 Nov 2000 13:42:05 GMT (envelope-from simond) Date: Fri, 24 Nov 2000 13:42:05 +0000 From: simond@irrelevant.org To: cam Cc: questions@FreeBSD.ORG Subject: Re: how to shutdown the computer Message-ID: <20001124134205.B41148@irrelevant.org> References: <200011241332.OAA36073@mailhost.esil.univ-mrs.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200011241332.OAA36073@mailhost.esil.univ-mrs.fr>; from cam@bsdfr.org on Fri, Nov 24, 2000 at 02:33:14PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 24, 2000 at 02:33:14PM +0100, cam wrote: > Hi > > I would like to have some informations (web pages, man pages) about how to proceed to make FreeBSD shutdown the computer when I 'halt' it like with windows 98 or Linux (ATX). First make sure you have apm enabled (ie put "device apm0" in your kernel config file), put apm_enable="YES" in your /etc/rc.conf and then do shutdown -p now to power the machine down. Hope that helps :) -- Simon Dick simond@irrelevant.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 5:45:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from corpmx1.ess.harris.com (corpmx1.ess.harris.com [130.41.65.49]) by hub.freebsd.org (Postfix) with ESMTP id E68C537B4C5 for ; Fri, 24 Nov 2000 05:45:32 -0800 (PST) Received: by corpmx1 with Internet Mail Service (5.5.2650.21) id ; Fri, 24 Nov 2000 08:45:31 -0500 Message-ID: <95B669A7D872D41182A600508BDFFB8C12D642@mlbmx7.ess.harris.com> From: "Potts, Ross" To: 'Alfred Perlstein' , Francis Abella Cc: freebsd-questions@freebsd.org Subject: RE: How do I move my server? Date: Fri, 24 Nov 2000 08:45:26 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Don't forget insane amount of insurance -----Original Message----- From: Alfred Perlstein [SMTP:bright@wintelcom.net] Sent: Thursday, November 23, 2000 5:16 PM To: Francis Abella Cc: freebsd-questions@freebsd.org Subject: Re: How do I move my server? * Francis Abella [001123 12:39] wrote: > Hey all! > > I have to move from one coast to another (U.S.) and am scared s@#tless about > moving my server. > > I've a hand-me-down Compaq Proliant 1600 with 4 hot-swappable drives running > FreeBSD 3.4. > > I'm sure many of you have moved your computers before, but this is my first > time. Does anyone have any insight to what to specifically do and watch out > for? > > Is there some sort of park utility for the hard drives? > > Should I pull the hard drives before shipping the server? > > Does anyone have any experience with either Fedex or UPS and have any > recommendations on either? or should I try to check "my baby" on as luggage > with me? > > I've done a complete dump of all the info on my hard drives, but am clueless > as to the next step! Dissassemble it completely and use insane amounts of packing material (bubble wrap and static bags). Both UPS and FedEx are terrible shipping companies. I used UPS to ship all my computer equipment out from NYC to CA. Results: 1 Broken monitor 3 Broken drives 1 Box jolted so hard that: the soundcard came out of the slot even though it was screwed in 1 CPU dislodged from the dual board 1 Box smashed so badly that the front of case had the plastic shattered. I've seen FedEx guys shipping monitors just tumbling the boxes out of the truck onto the street. Fear these guys. And if you do a UPS claim they insist that you ship the equipment back to them to have it assesed unless you become beligerant with thier representatives. A better idea would be to get an extra plane ticket and sit the computer next to you if possible. :) best of luck, -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of 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 Nov 24 5:48:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost.esil.univ-mrs.fr (jiyu.esil.univ-mrs.fr [139.124.44.249]) by hub.freebsd.org (Postfix) with ESMTP id EED5E37B479 for ; Fri, 24 Nov 2000 05:48:11 -0800 (PST) Received: from cam (cam.esil.univ-mrs.fr [139.124.44.65]) by mailhost.esil.univ-mrs.fr (8.9.3/ESIL/jtpda-5.3.1) with SMTP id OAA36504 ; Fri, 24 Nov 2000 14:48:04 +0100 (CET) Message-Id: <200011241348.OAA36504@mailhost.esil.univ-mrs.fr> Date: Fri, 24 Nov 2000 14:49:06 +0100 From: cam To: cam Cc: questions@FreeBSD.ORG Subject: Re: how to shutdown the computer In-Reply-To: <200011241332.OAA36073@mailhost.esil.univ-mrs.fr> References: <200011241332.OAA36073@mailhost.esil.univ-mrs.fr> X-Mailer: Sylpheed version 0.4.2 (GTK+ 1.2.7; Linux 2.2.17; i686) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 24 Nov 2000 14:33:14 +0100 cam wrote: thanks for your quicks answer :) of course halt -p works perfectly To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 5:56:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from grumpy.dyndns.org (cm-24-246-28-166.toney.mediacom.ispchannel.com [24.246.28.166]) by hub.freebsd.org (Postfix) with ESMTP id B569437B479 for ; Fri, 24 Nov 2000 05:56:15 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by grumpy.dyndns.org (8.11.1/8.11.1) with ESMTP id eAODtdS96152; Fri, 24 Nov 2000 07:55:39 -0600 (CST) (envelope-from dkelly@grumpy.dyndns.org) Message-Id: <200011241355.eAODtdS96152@grumpy.dyndns.org> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: degraz@tusco.net Cc: freebsd-questions@FreeBSD.ORG From: David Kelly Subject: Re: Apache Installation In-reply-to: Message from "Travis Troyer" of "Fri, 24 Nov 2000 03:17:01 GMT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 24 Nov 2000 07:55:39 -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Travis Troyer" writes: > I installed FreeBSD 4.1 not too long ago, and installed the httpd along with > it. I decided I wanted a modified apache, so I downloaded the source code, > modified, and compiled it. It is in a different directory than the apache I > was using, plus used a different httpd.conf, so I changed the port from 80 > to test it while the other server is running, and it worked fine. So, now I > want to replace my old apache with my newly compiled apache. I can not > figure out what causes apache to load on startup, so that I can change it to > point to my new apache. I have looked at every file in /etc and see no > reference to it at all. How can I go about doing this? As a general rule if there is a port of an application, start with the port if you have to make changes, as the port should represent the sum of knowledge and best practices for best running that app under FreeBSD. Meaning it will fix things you didn't know were broken. Apache starts at boot with /usr/local/etc/rc.d/apache.sh I suggest you remove your installed port with "pkg_delete /var/db/pkg/apache*" Then "cd /usr/ports/www/apache13" (or one of the others if they are a better match). Then "make patch" to apply the sum of FreeBSD knowledge. Make your customizations in the ./work/ directory. Return to the apache port directory and continue the process with "make install". Make your configuration changes in /usr/local/etc/apache/ Fire it up with "/usr/local/sbin/apachectl start" -- 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 Nov 24 6: 1: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from adv.oabsp.org.br (unknown [200.230.205.9]) by hub.freebsd.org (Postfix) with ESMTP id 5AD9C37B4C5 for ; Fri, 24 Nov 2000 06:00:55 -0800 (PST) Received: from mkleber [200.240.93.232] by adv.oabsp.org.br (SMTPD32-6.05) id A267557900EE; Fri, 24 Nov 2000 11:59:51 -0300 Message-ID: <000201c0561f$7552a7e0$e85df0c8@mkleber> From: "Marcos Kleber" To: Subject: hello from brazil Date: Fri, 24 Nov 2000 02:26:04 -0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0024_01C055BD.E50A20C0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0024_01C055BD.E50A20C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable hello freebsd is really nice and cool, I have a quantum hd, that I use = in these way : 1000MB dos partition with windows=20 13000MB for exetendend to windows 7MB for bsd.... to mount the msdos partition is simple :) but I can't mount exetende = partitions ??? tkz anywams ------=_NextPart_000_0024_01C055BD.E50A20C0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
hello freebsd is really nice and cool, = I have a=20 quantum hd, that I use in these way :
 
1000MB dos partition with windows =
13000MB for exetendend to = windows
 
7MB for bsd....
 
to mount the msdos partition is simple = :) but I=20 can't mount exetende partitions ???
 
tkz anywams
------=_NextPart_000_0024_01C055BD.E50A20C0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 6: 1: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from adv.oabsp.org.br (unknown [200.230.205.9]) by hub.freebsd.org (Postfix) with ESMTP id BCCA137B4CF for ; Fri, 24 Nov 2000 06:00:56 -0800 (PST) Received: from mkleber [200.240.93.232] by adv.oabsp.org.br (SMTPD32-6.05) id A269557900EE; Fri, 24 Nov 2000 11:59:53 -0300 Message-ID: <000301c0561f$76b19ba0$e85df0c8@mkleber> From: "Marcos Kleber" To: Subject: another bsd magazine Date: Fri, 24 Nov 2000 02:30:51 -0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0030_01C055BE.90534F60" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0030_01C055BE.90534F60 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable http://www.geek.com.br/ is it from brasil !!! the special edition is all for FREEBSD !!! great :) cya ------=_NextPart_000_0030_01C055BE.90534F60 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
http://www.geek.com.br/
=
 
is it from brasil !!! the special = edition is all=20 for FREEBSD !!!
great :)
 
cya
------=_NextPart_000_0030_01C055BE.90534F60-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 6:24:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from droid.nosc.mil (droid.nosc.mil [128.49.4.117]) by hub.freebsd.org (Postfix) with ESMTP id 6C8A837B479 for ; Fri, 24 Nov 2000 06:24:51 -0800 (PST) Received: from slartibartfast.nosc.mil (slartibartfast.nosc.mil [198.253.21.36]) by droid.nosc.mil (8.11.0/8.11.0) with ESMTP id eAOEP3p11495; Fri, 24 Nov 2000 06:25:03 -0800 (PST) Message-Id: <4.3.2.7.2.20001124091604.00ad7d60@localhost> X-Sender: huck@localhost X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Fri, 24 Nov 2000 09:24:38 -0500 To: "Aistis Zenkevicius" , From: Craig Huckabee Subject: Re: UDMA ICRC READ ERRORs In-Reply-To: <001001c0556d$e0326850$9b00a8c0@admin> References: <20001123163615.22055.qmail@web108.yahoomail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 05:53 PM 11/23/00 +0100, Aistis Zenkevicius wrote: >hi all, > > > > I've got the same problem with 4.2-BETA and an AMD > > > K6/2 500Mhz box, built > > > with an ASUS P5A, and a Western Digital hard drive. > > > I searched the mailing > > > list archives and found this fix : > > > > > > /sbin/sysctl -w hw.atamodes=pio,pio,pio,pio > >don't want to get onto someones nerves, but is it a "solution" ??? It is a work around for what appears to be a problem with a particular combination of specific brands or models of hard drives and specific brands of ATAPI controllers. It is not a solution. Possible solutions would be (IMHO) to fix the ata driver so that it works with this combination (if possible), or augment the driver so it recognizes this type of problem and backs off to pio mode on its own, or compile a list of broken hardware, add that list to a FAQ, and have the millions of users to complain to the manufacturers to fix their hardware (I am assuming it is fixable). >where's the normal support for udma-66 ? udma works fine with other combinations of hardware - as I stated in my reply I have two systems now running 4.2 (using different hard drives) that are working just fine. --Craig ------------------------------------------------------- Craig Huckabee huck@spawar.navy.mil Systems Engineer, Compliance Corporation (843) 218 6459 SPAWAR Systems Center - Charleston, Charleston, SC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 6:37: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donkeykong.gpcc.itd.umich.edu (donkeykong.gpcc.itd.umich.edu [141.211.2.163]) by hub.freebsd.org (Postfix) with ESMTP id E55DD37B4CF for ; Fri, 24 Nov 2000 06:36:59 -0800 (PST) Received: from galaxian.gpcc.itd.umich.edu (smtp@galaxian.gpcc.itd.umich.edu [141.211.2.146]) by donkeykong.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id JAA25653; Fri, 24 Nov 2000 09:36:59 -0500 (EST) Received: from localhost (timcm@localhost) by galaxian.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id JAA23376; Fri, 24 Nov 2000 09:36:58 -0500 (EST) Date: Fri, 24 Nov 2000 09:36:58 -0500 (EST) From: Tim McMillen X-Sender: timcm@galaxian.gpcc.itd.umich.edu To: Krzysztof Parzyszek Cc: freebsd-questions@FreeBSD.ORG Subject: Re: VMware for FreeBSD ? In-Reply-To: <20001124023403.A7169@buchanan-181-249.stures.iastate> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 24 Nov 2000, Krzysztof Parzyszek wrote: > On Fri, Nov 24, 2000 at 12:43:29AM -0500, Tim McMillen wrote: > > Are you able to use it as a normal user or is that not a good idea anyway? > > I guess it's not a good idea to run it as root... I can run it as > a normal user. > > > It tells me failed to open /dev/hda permission denied. Of course that > > doesn't exist it's just because of linux emulation. What device does it > > refer to? My hard drive ad0? > > When exactly does it complain? As soon as I try to power on the virtual machine. Perhaps I made a mistake in setting up the directory that the machine used as it's virtual disk. I'll be out of town this weekend without a chance to work on it, but I'll try to make a few changes in the way I configure vmware. Thanks, Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 6:46:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.living-source.com (unknown [212.2.36.144]) by hub.freebsd.org (Postfix) with SMTP id 43D7D37B479 for ; Fri, 24 Nov 2000 06:46:54 -0800 (PST) Received: (qmail 19590 invoked by uid 0); 24 Nov 2000 15:06:03 -0000 Received: from jenty.int-fr.living-source.com (HELO admin) (192.168.0.155) by mail.living-source.com with SMTP; 24 Nov 2000 15:06:03 -0000 Message-ID: <005101c05625$23c4c290$9b00a8c0@admin> From: "Aistis Zenkevicius" To: , "Craig Huckabee" References: <20001123163615.22055.qmail@web108.yahoomail.com> <4.3.2.7.2.20001124091604.00ad7d60@localhost> Subject: Re: UDMA ICRC READ ERRORs Date: Fri, 24 Nov 2000 15:45:07 +0100 Organization: uab "Living Source Vilnius" 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 X-Loop: FreeBSD.ORG howdy, [snip]> It is a work around for what appears to be a problem with a particular > combination of specific brands or models of hard drives and specific brands > of ATAPI controllers. It is not a solution. [snip] yes, that's truth...yesterday i was a bit mad and even forgot that few days ago i installed 4.1.1r on "IBM-DTLA-305020" which is udma-66 with no problems. Motherboard has "VIA 82C686 ATA66 controller" and cpu is amd thunderbird 600mhz. But i have problems running even udma-33 on IBM-DTLA-307075 with amd k6-2 450mhz cpu and some aladin motherboard which has "AcerLabs Aladdin ATA33 controller" :( Jenty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 6:48:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rdc1.tx.home.com (ha1.rdc1.tx.home.com [24.4.0.66]) by hub.freebsd.org (Postfix) with ESMTP id 33C2437B479 for ; Fri, 24 Nov 2000 06:48:54 -0800 (PST) Received: from home.com ([24.8.250.184]) by mail.rdc1.tx.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001124144853.VAEE4294.mail.rdc1.tx.home.com@home.com> for ; Fri, 24 Nov 2000 06:48:53 -0800 Message-ID: <3A1E7E94.1D3467CA@home.com> Date: Fri, 24 Nov 2000 08:43:32 -0600 From: leoric@home.com X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: cvs tag for 4.2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG What cvsup tag should I use to have it fetch 4.2 stable source. I searched the mailing list archives but I found nothing useful. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 6:57:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-1.sjc (mail-1.sjc.telocity.net [216.227.56.41]) by hub.freebsd.org (Postfix) with ESMTP id 7098137B4CF for ; Fri, 24 Nov 2000 06:57:24 -0800 (PST) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-1.sjc (8.9.3/8.9.3) with SMTP id GAA05798; Fri, 24 Nov 2000 06:54:03 -0800 (PST) From: "Otter" To: "Marcos Kleber" , Subject: RE: hello from brazil Date: Fri, 24 Nov 2000 09:59:29 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <000201c0561f$7552a7e0$e85df0c8@mkleber> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG First, if you expect to get full support from the list, you'll need to send your requests in the form of plain text. No one here is a big fan of HTML in the mail formatting. Second, assuming you have the appropriate device in your /dev directory, you should be able to mount the extended partition if you use the mount_msdos or mount -t msdos and slice 5 on whatever drive you happen to be using it on. -Otter -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Marcos Kleber Sent: Thursday, November 23, 2000 11:26 PM To: freebsd-questions@FreeBSD.ORG Subject: hello from brazil }hello freebsd is really nice and cool, I have a quantum hd, that I use in these way : }1000MB dos partition with windows }13000MB for exetendend to windows }7MB for bsd.... }to mount the msdos partition is simple :) but I can't mount exetende partitions ??? }tkz anywams To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 7: 6:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from comnet.ca (comnet.ca [207.107.47.2]) by hub.freebsd.org (Postfix) with ESMTP id BC98137B4CF; Fri, 24 Nov 2000 07:06:57 -0800 (PST) Received: from spruce (d-141.comnet.ca [207.107.44.141]) by comnet.ca (8.10.0/8.10.0) with SMTP id eAOF6tR16372; Fri, 24 Nov 2000 10:06:56 -0500 (EST) Message-Id: <3.0.5.32.20001124100813.008abc80@205.206.213.2> X-Sender: mkuchta@205.206.213.2 X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.5 (32) Date: Fri, 24 Nov 2000 10:08:13 -0500 To: wosch@freeBSD.org From: Milan Kuchta Subject: www.freebsd.org website Cc: freebsd-questions@freeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Can you please explain why I can not get to www.freebsd.org I realize that there is a www.ca.freebsd.org BUT there are hundreds of web pages which point to www.freebsd.org and it is intensely IRRITATING to click on a URL only to have to wait several minutes to be told that it is "not answering". If there is a "rational" explanation for these, please have the mirror sites include a "please read this" link. Milan Kuchta To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 7:50:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rdc2.mi.home.com (ha1.rdc2.mi.home.com [24.2.68.68]) by hub.freebsd.org (Postfix) with ESMTP id 1885537B479 for ; Fri, 24 Nov 2000 07:50:42 -0800 (PST) Received: from home.com ([24.13.51.226]) by mail.rdc2.mi.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001124155041.UPAY2833.mail.rdc2.mi.home.com@home.com> for ; Fri, 24 Nov 2000 07:50:41 -0800 Message-ID: <3A1E8EF9.3F0C7582@home.com> Date: Fri, 24 Nov 2000 10:53:29 -0500 From: Jim DeLisle X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: "FreeBSD-questions@FreeBSD.ORG" Subject: pthreads library Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello All, I'm miffed on where the pthreads libraries are on a FreeBSD 4.0 install. There seems to be on in the /usr/compat/linux/lib directory, but I would have thought to have found a FreeBSD native version in /usr/lib. Any direction on how folks write c/c++ apps on FreeBSD using pthreads? Cheers, Jim DeLisle orbitor@home.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 7:55:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from satan.freebsdsystems.com (satan.freebsdsystems.com [24.69.168.5]) by hub.freebsd.org (Postfix) with ESMTP id 7B62E37B4CF for ; Fri, 24 Nov 2000 07:55:32 -0800 (PST) Received: from satan.freebsdsystems.com (satan.freebsdsystems.com [24.69.168.5]) by satan.freebsdsystems.com (8.11.1/8.11.0) with ESMTP id eAOFtUh10318; Fri, 24 Nov 2000 10:55:30 -0500 (EST) Date: Fri, 24 Nov 2000 10:55:30 -0500 (EST) From: Lanny Baron To: leoric@home.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: cvs tag for 4.2 In-Reply-To: <3A1E7E94.1D3467CA@home.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG What is your current version? Lanny On Fri, 24 Nov 2000, leoric@home.com in the last wild and more than...: >What cvsup tag should I use to have it fetch 4.2 stable source. I >searched the mailing list archives but I found nothing useful. > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of 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 Nov 24 7:59: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.mco.bellsouth.net (mail2.mco.bellsouth.net [205.152.111.14]) by hub.freebsd.org (Postfix) with ESMTP id 5073437B479 for ; Fri, 24 Nov 2000 07:59:01 -0800 (PST) Received: from bellsouth.net (host-209-214-129-153.jax.bellsouth.net [209.214.129.153]) by mail2.mco.bellsouth.net (3.3.5alt/0.75.2) with ESMTP id KAA23266 for ; Fri, 24 Nov 2000 10:51:34 -0500 (EST) Message-ID: <3A1E9042.F1C6B696@bellsouth.net> Date: Fri, 24 Nov 2000 10:58:58 -0500 From: Ted Knight Reply-To: efknight@bellsouth.net X-Mailer: Mozilla 4.76 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: questions Subject: DSL and FreeBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG DSL service is now available for my phone line and BellSouth is supplying 3COM Home Connect PCI DSL modem. Is this device supported by FreeBSD 3.X and 4.X? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 8: 1:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from spunkmedia.com (spunkmedia.com [207.159.134.124]) by hub.freebsd.org (Postfix) with ESMTP id DD82437B479 for ; Fri, 24 Nov 2000 08:01:22 -0800 (PST) Received: by spunkmedia.com (8.9.3/8.9.3) id IAA19683; Fri, 24 Nov 2000 08:01:22 -0800 (PST) Date: Fri, 24 Nov 2000 08:01:22 -0800 (PST) From: "spunkmedia.com" Message-Id: <200011241601.IAA19683@spunkmedia.com> To: freebsd-questions@FreeBSD.ORG Subject: Your Software Submission Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I just wanted to inform you that your site or selected software on your site, is now being featured at FileClicks.Com. • http://www.fileclicks.com • http://www.fileclicks.com/software.phtml?id=2017 FileClicks is growing more and more every day and we can't keep up to date with all the newest software programs on the web. If you have time we ask that you head over to our software submission forum and upload your other software programs and updates. • http://www.fileclicks.com/sendprog.phtml If you want to link back to us, please use one of the buttons below: • http://www.fileclicks.com/images/link1.jpg • http://www.fileclicks.com/images/link4.jpg Other Images: http://www.fileclicks.com/link.phtml We now have a page talking about all our advertising plans. Check that out at http://www.spunkmedia.com/adinfo.phtml. We offer different discounts to shareware and banner-driven freeware can receive reduced rates. Package and volume deals are also available. Please forward advertising info on to your marketing team, please. Congratulations on providing fine resources to the Internet community at large! You can visit us at FileClicks.Com. If you have any other questions, please let me know. My ICQ number is 4690394 and e-mail address is tony@spunkmedia.com, Thanks again.Thank you, The SpunkMedia Team http://www.spunkmedia.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 8: 6: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rdc1.tx.home.com (ha1.rdc1.tx.home.com [24.4.0.66]) by hub.freebsd.org (Postfix) with ESMTP id A1A9937B4CF for ; Fri, 24 Nov 2000 08:06:00 -0800 (PST) Received: from home.com ([24.8.250.184]) by mail.rdc1.tx.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001124160600.VJYU4294.mail.rdc1.tx.home.com@home.com>; Fri, 24 Nov 2000 08:06:00 -0800 Message-ID: <3A1E90A2.C6270498@home.com> Date: Fri, 24 Nov 2000 10:00:34 -0600 From: leoric@home.com X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Lanny Baron Cc: freebsd-questions@FreeBSD.ORG Subject: Re: cvs tag for 4.2 References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My current version is 4.2 Beta Lanny Baron wrote: > What is your current version? > > Lanny > > On Fri, 24 Nov 2000, leoric@home.com in the last wild and more than...: > > >What cvsup tag should I use to have it fetch 4.2 stable source. I > >searched the mailing list archives but I found nothing useful. > > > > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org > >with "unsubscribe freebsd-questions" 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 Nov 24 8: 7:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.bna.bellsouth.net (mail1.bna.bellsouth.net [205.152.150.13]) by hub.freebsd.org (Postfix) with ESMTP id 1A90D37B4C5 for ; Fri, 24 Nov 2000 08:07:47 -0800 (PST) Received: from planetwe.com (adsl-63-164-15.bna.bellsouth.net [208.63.164.15]) by mail1.bna.bellsouth.net (3.3.5alt/0.75.2) with ESMTP id LAA05540; Fri, 24 Nov 2000 11:07:45 -0500 (EST) Message-ID: <3A1E9241.5090404@planetwe.com> Date: Fri, 24 Nov 2000 10:07:29 -0600 From: Drew Sanford User-Agent: Mozilla/5.0 (X11; U; Linux 2.2.12 i386; en-US; m18) Gecko/20001107 Netscape6/6.0 X-Accept-Language: en MIME-Version: 1.0 To: efknight@bellsouth.net Cc: questions Subject: Re: DSL and FreeBSD References: <3A1E9042.F1C6B696@bellsouth.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm not sure about that device, but I know if you twist bellsouth's tail hardenough you can make them give an Alcatel speed touch home external modem that works just wonderfully with FreeBSD. Ted Knight wrote: > DSL service is now available for my phone line and BellSouth is > supplying 3COM Home Connect PCI DSL modem. Is this device supported by > FreeBSD 3.X and 4.X? > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 24 8: 8:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tetboss.internal.tetronsoftware.com (tetboss.tetronsoftware.com [64.217.1.45]) by hub.freebsd.org (Postfix) with ESMTP id 90C5D37B4C5 for ; Fri, 24 Nov 2000 08:08:42 -0800 (PST) Received: by tetboss.internal.tetronsoftware.com with Internet Mail Service (5.5.2448.0) id ; Fri, 24 Nov 2000 10:10:42 -0600 Message-ID: <51F9B228ED26D311A17700A0C9982664013F3F@tetboss.internal.tetronsoftware.com> From: Gene Harris To: freebsd-questions Subject: RE: DSL and FreeBSD Date: Fri, 24 Nov 2000 10:10:40 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You might want to see if they can furnish you with an external model. Then, all you have to worry about is a simple Ethernet connection between your box and the external DSL modem. Southwestern Bell can furnish either setup, but you have to ask. Gene > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Ted Knight > Sent: Friday, November 24, 2000 9:59 AM > To: freebsd-questions > Subject: DSL and FreeBSD > > > DSL service is now available for my phone line and BellSouth is > supplying 3COM Home Connect PCI DSL modem. Is this device > supported by > FreeBSD 3.X and 4.X? > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 24 8:15:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 1ststoponline.net (unknown [208.231.27.60]) by hub.freebsd.org (Postfix) with SMTP id 0CA3D37B4E5 for ; Fri, 24 Nov 2000 08:15:08 -0800 (PST) Received: (qmail 38052 invoked from network); 24 Nov 2000 16:41:00 -0000 Received: from unknown (HELO teo) (195.243.139.47) by 208.231.27.60 with SMTP; 24 Nov 2000 16:41:00 -0000 From: To: badonkelz2@aol.com Cc: Subject: Anglerfreunde - Einladung zum kostenlosen Fischfraß Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Message-Id: <20001124161508.0CA3D37B4E5@hub.freebsd.org> Date: Fri, 24 Nov 2000 08:15:08 -0800 (PST) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi Kutte, ich sag Dir ich hab am Wochenende sooooooooooooooo, einen riesen dicken AAAAL gefangen, und wollte Dich zum Essen einladen, hast noch ein paar Freund die Du mitbringen willst, ich hab`mal an alle meine Fischfreunde schon ein riesen Mailing gemacht, und mit dem neuen Emailversender hab ich gleich 100 Fischfreunde aufeinmal anschreiben können. Tolle Sache. Mfg Teo! --------------------------------------------------------------- unregistrierte Demoversion http://www.aquadrat.de/download/psmail.htm Referenz zu http://www.stripline.de Referenz zu http://www.selfproducer.de co. 2000 --------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 8:16:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tetboss.internal.tetronsoftware.com (tetboss.tetronsoftware.com [64.217.1.45]) by hub.freebsd.org (Postfix) with ESMTP id 760B837B479 for ; Fri, 24 Nov 2000 08:16:41 -0800 (PST) Received: by tetboss.internal.tetronsoftware.com with Internet Mail Service (5.5.2448.0) id ; Fri, 24 Nov 2000 10:18:41 -0600 Message-ID: <51F9B228ED26D311A17700A0C9982664013F40@tetboss.internal.tetronsoftware.com> From: Gene Harris To: freebsd-questions Subject: Using MergeMaster Date: Fri, 24 Nov 2000 10:18:41 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have two simple questions about mergemaster. When is it appropriate to run mergemaster? I usually update my 4.x-STABLE sources once per month. I haven't been trying to merge changes in /etc, but I noticed that my sendmail version and sendmail.cf versions were badly out of sync and I manually update sendmail.cf from freebsd.cf. Is it appropriate to just run mergemaster by typing the command and letting it run its course? Many Thanks, Gene Harris http://www.tetronsoftware.com FreeBSD Samba PostgreSQL Apache To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 8:26:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-1.sjc (mail-1.sjc.telocity.net [216.227.56.41]) by hub.freebsd.org (Postfix) with ESMTP id 6C56037B4CF for ; Fri, 24 Nov 2000 08:26:54 -0800 (PST) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-1.sjc (8.9.3/8.9.3) with SMTP id IAA08273; Fri, 24 Nov 2000 08:25:50 -0800 (PST) From: "Otter" To: , "Lanny Baron" Cc: Subject: RE: cvs tag for 4.2 Date: Fri, 24 Nov 2000 11:31:16 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <3A1E90A2.C6270498@home.com> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The tag=RELENG_4 that got you to 4.2-BETA will now take you to 4.2-STABLE (since Nov. 20/21) if you cvsup and make world, kernel, etc. -Otter }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of }leoric@home.com }Sent: Friday, November 24, 2000 11:01 AM }To: Lanny Baron }Cc: freebsd-questions@FreeBSD.ORG }Subject: Re: cvs tag for 4.2 } } }My current version is 4.2 Beta } }Lanny Baron wrote: } }> What is your current version? }> }> Lanny }> }> On Fri, 24 Nov 2000, leoric@home.com in the last wild and }more than...: }> }> >What cvsup tag should I use to have it fetch 4.2 stable source. I }> >searched the mailing list archives but I found nothing useful. }> > }> > }> > }> >To Unsubscribe: send mail to majordomo@FreeBSD.org }> >with "unsubscribe freebsd-questions" in the body of the message }> > }> }> To Unsubscribe: send mail to majordomo@FreeBSD.org }> with "unsubscribe freebsd-questions" in the body of the message } } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 8:37:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.wanadoo.nl (smtp.wanadoo.nl [194.134.193.6]) by hub.freebsd.org (Postfix) with ESMTP id 353F137B4CF for ; Fri, 24 Nov 2000 08:37:15 -0800 (PST) Received: from wanadoo.nl (i0782.pvu.euronet.nl [194.134.167.17]) by smtp.wanadoo.nl (8.9.3/8.9.3) with ESMTP id RAA08626 for ; Fri, 24 Nov 2000 17:37:12 +0100 (MET) Message-ID: <3A1E9960.3A524240@wanadoo.nl> Date: Fri, 24 Nov 2000 17:37:52 +0100 From: Dorian Harmans X-Mailer: Mozilla 4.76 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: questions@FreeBSD.org Subject: Question Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Which program do I need to use to burn the .iso file of the 4.2 release? I tried Nero, Blindread, Clonecd but none of them seem to recognize the .iso filetype. Please help me. Thank in advantage. Dorian Harmans To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 8:39:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from Dm2cw2.Bell.Ca (dm2cw1.bell.ca [198.235.69.154]) by hub.freebsd.org (Postfix) with ESMTP id 9141137B479 for ; Fri, 24 Nov 2000 08:39:18 -0800 (PST) Received: from Dmoc61.On.Bell.Ca ([142.182.248.8]) by Dm2cw2.Bell.Ca with ESMTP id eAOGdGb28595 for ; Fri, 24 Nov 2000 11:39:16 -0500 (EST) Received: from on.bell.ca (dmoi06-s03.ON.Bell.CA [142.182.64.207]) by Dmoc61.On.Bell.Ca with ESMTP id eAOGdES07900 for ; Fri, 24 Nov 2000 11:39:14 -0500 (EST) Message-ID: <3A1E99B1.7DA9AE70@on.bell.ca> Date: Fri, 24 Nov 2000 11:39:14 -0500 From: "Ian J. Brown" Organization: Bell Nexxia X-Mailer: Mozilla 4.74 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: VRRP? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Does FreeBSD support Virtual Router Redundancy Protocol (VRRP) and if not, are there any plans to?? -- ===================================================================== Ian J. Brown CCIE #3372 Consultant - Bell Nexxia, Engineering and Design 100 Wynford Drive, Toronto, Ontario Tel: (416)215-2793 Fax: (416)444-6380 Mail: ijbrown@on.bell.ca {fdNvDBZJaLfzk} ===================================================================== "Don't take life too serious...you won't get out alive!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 8:42:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bart.esiee.fr (bart.esiee.fr [147.215.1.20]) by hub.freebsd.org (Postfix) with ESMTP id 029CD37B4C5 for ; Fri, 24 Nov 2000 08:42:37 -0800 (PST) Received: (from bonnetf@localhost) by bart.esiee.fr (8.11.1/8.11.1) id eAOGgVo23599 for freebsd-questions@freebsd.org; Fri, 24 Nov 2000 17:42:31 +0100 (MET) From: Frank Bonnet Message-Id: <200011241642.eAOGgVo23599@bart.esiee.fr> Subject: Which crypto package works with NIS ? To: freebsd-questions@freebsd.org Date: Fri, 24 Nov 2000 17:42:31 MET X-Mailer: Elm [revision: 212.5] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi I'm wondering which crypto package I would choose at 4.2-RELEASE in order to have a working NIS client ? We use NIS for passwd and aliases distribution and I've read in FreeBSD documentation that NIS works only with DES package. What is the alternative solution ? Thanks -- Frank Bonnet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 8:48:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.eagle.ca (mail2.eagle.ca [209.167.16.30]) by hub.freebsd.org (Postfix) with ESMTP id E1D9437B4CF for ; Fri, 24 Nov 2000 08:48:35 -0800 (PST) Received: from phantom (phantom.eagle.ca [209.167.16.15]) by mail2.eagle.ca (8.11.1/8.11.0) with SMTP id eAOGlJT74430; Fri, 24 Nov 2000 11:47:19 -0500 (EST) (envelope-from freymann@eagle.ca) Reply-To: From: "Gerald T. Freymann" To: "Brandt Everett" Cc: Subject: RE: cistron-radius 1.6.3-stable won't authenticate Date: Fri, 24 Nov 2000 11:47:51 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <003501c05633$6f4a1220$7901a8c0@everett> X-MimeOLE: Produced By Microsoft MimeOLE V5.00.3018.1300 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG |O|> I know it sounds like a stupid question, but do you have the |O|> correct secret |O|> defined in the new server and the device authenticating? Yes, it logs the username/password clearly. I got it working mostly... The old version we ran didn't require you to kill -1 radiusd when you made a change to the /raddb/users file. That was my biggest problem. Also, the format of the USER record is somewhat different (requires Auth-Type = System). Once I rebuilt the raddb/users file (I wrote a perl program to run through our /etc/passwd file and compare against our accounting records [to ignore system accounts, non-dial-up accounts, etc] using the newer syntax, kill -1 radiusd, I have 3 of the Terminal Servers authenticating fine as of this morning. Only 8 more to go! :-) =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Gerry Freymann -- Senior Systems Manager Northumbria EAGLE Internet www.eagle.ca Voice: 905-373-9313 Fax: 905-373-1801 http://www.eagle.ca/customer_support NetBios probes are flooding the Internet! Uncheck File & Printer Sharing from TCP/IP -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 8:48:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from space.rede-rs.com.br (unknown [200.248.243.129]) by hub.freebsd.org (Postfix) with ESMTP id 5717B37B4F9 for ; Fri, 24 Nov 2000 08:48:50 -0800 (PST) Received: from jerry ([200.213.78.177]) by space.rede-rs.com.br (8.9.3/8.9.3) with SMTP id OAA00704 for ; Fri, 24 Nov 2000 14:13:47 GMT Message-Id: <3.0.6.32.19970101014937.007cad20@mail.rede-rs.com.br> X-Sender: trainini@mail.rede-rs.com.br X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Wed, 01 Jan 1997 01:49:37 -0200 To: freebsd-questions@FreeBSD.ORG From: Paulo Ricardo Trainini Subject: FTP Server with invalid ip 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 X-Loop: FreeBSD.ORG I have the FTP Server (Freebsd 4.1) inside of my network, with the ip 192.168.12.3. It work well for clients connections in intranet, but connections from clients outside (valids ips) don=B4t work. I have installed the socket-1.1 in firewall (Freebsd 3.3)* to redirect external ftp clients connections to internal FTP Server. *inetd.conf: ... ftp stream tcp nowait nobody /usr/local/bin/socket socket 192.168.12.3 ftp ... The messages returned to connections from clients outside is: $ ftp x.x.x.x (external ip of my firewall) Connected to x.x.x.x. 220 x.x.x.x FTP server (Version 6.00LS) ready. Name (x.x.x.x:jonh): 331 Password required for jonh. Password: 230 User jonh logged in. Remote system type is UNIX. Using binary mode to transfer files. ftp> pwd 257 "/usr/home/jonh" is current directory. ftp> dir 500 Illegal PORT range rejected. 425 Can't build data connection: Connection refused. Do you know what=B4s happen? Thank you for your help. Paulo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 8:54:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail6.svr.pol.co.uk (mail6.svr.pol.co.uk [195.92.193.212]) by hub.freebsd.org (Postfix) with ESMTP id 693DC37B479 for ; Fri, 24 Nov 2000 08:54:19 -0800 (PST) Received: from modem-48.eressea.dialup.pol.co.uk ([62.136.199.48] helo=beast) by mail6.svr.pol.co.uk with smtp (Exim 3.13 #0) id 13zM77-0006YE-00 for freebsd-questions@freebsd.org; Fri, 24 Nov 2000 16:54:17 +0000 From: "Matt Greenslade" To: Subject: Modem/mouse confflict Date: Fri, 24 Nov 2000 16:56:01 -0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have installed v3.3 on an intel pentium desktop and everything works fine. However when I try to get a ppp connection through the K desktops Kppp app theres a conflict between the modem and the mouse. The mouse dies when the modem is queried or tries to dial and no dial up connection works. Under W98 (its a dual boot machine) the modem appears on COM3. When I configure the FBSD kernel during installation ports 3 & 4 show as not found in the bitmap of probed ports. Kppp says the modem is on port 1 which is also used by the modem.I'm sure I can edit a confg file somewhere and solve the problem buit I cant find the advice I need in the FBSD handbook or the other books and manuals I've got. Any advice or suggestions gratefully recieved. Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 9:21:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sanson.reyes.somos.net (freyes.static.inch.com [216.223.199.224]) by hub.freebsd.org (Postfix) with ESMTP id C96D737B4C5 for ; Fri, 24 Nov 2000 09:21:32 -0800 (PST) Received: from zoraida.reyes.somos.net (zoraida.reyes.somos.net [10.0.0.15]) by sanson.reyes.somos.net (8.9.3/8.9.3) with ESMTP id MAA11535; Fri, 24 Nov 2000 12:15:22 -0500 (EST) (envelope-from fran@reyes.somos.net) Date: Fri, 24 Nov 2000 12:25:12 -0500 (EST) From: Francisco Reyes To: igorr@crosswinds.net Cc: freebsd-questions@FreeBSD.ORG Subject: Re: SFT-III like for FreeBSD? In-Reply-To: <20001124092943.A12421@linux.rainbow> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 24 Nov 2000, Igor' Robul' wrote: > Is there anything for FreeBSD like SFT-III for Netware servers? No. The closest you can get is a failover solution which makes two computer work with one IP and when the primary fails the secondary picks up. This solution however does not handle data synchronization between the two machines like SFT III it only handles allowing the secondary to start responding. > all buffers without closing tables, so data on netserver will be in > sync with data in workstation memory. I think your best bet is to flush often. > Then I can just make snapshop on local disk on file server, I don't know if Visual has any type of synchronization, but Foxpro for DOS has NO synchronization capabilities. You can do a procedural type of syncing, but thas has nothing to do with FreeBSD. If interested write to me and I will write when I come back (going away for a few days). > I'm trying to build system which will work without me. If you are using Foxpro for DOS there is no way to make a system so that if your primary server goes down the secondary will pick up without your intervention. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 9:25:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sanson.reyes.somos.net (freyes.static.inch.com [216.223.199.224]) by hub.freebsd.org (Postfix) with ESMTP id 8E94637B479; Fri, 24 Nov 2000 09:25:35 -0800 (PST) Received: from zoraida.reyes.somos.net (zoraida.reyes.somos.net [10.0.0.15]) by sanson.reyes.somos.net (8.9.3/8.9.3) with ESMTP id MAA11544; Fri, 24 Nov 2000 12:19:29 -0500 (EST) (envelope-from fran@reyes.somos.net) Date: Fri, 24 Nov 2000 12:29:19 -0500 (EST) From: Francisco Reyes To: Milan Kuchta Cc: wosch@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: www.freebsd.org website In-Reply-To: <3.0.5.32.20001124100813.008abc80@205.206.213.2> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 24 Nov 2000, Milan Kuchta wrote: > Can you please explain why I can not get to www.freebsd.org Chances are that is is a problem on your upstream ISP or somewhere along the line to that site or some misconfiguration somewhere. I access that site in one way or another almost every day.. also ftp.freebsd.org. I even just tried it a second ago with no problems. Try a traceroute (or tracert if on NT) and see where the packets are getting stuck. >If there is a "rational" explanation for these, please have the mirror sites > include a "please read this" link. Unless you see MANY other people complaining about the same problem more often than not these connectivity problems are on the user's computer or ISP. On the rare cases when Freebsd.org has problems you usually see several messages to that regard from different people. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 9:39:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from services.BSDI.COM (services.BSDI.COM [207.174.116.2]) by hub.freebsd.org (Postfix) with ESMTP id 882A537B4CF for ; Fri, 24 Nov 2000 09:39:56 -0800 (PST) Received: from spindle (spindle-ppp.DISKDRIVE.COM [207.174.116.41]) by services.BSDI.COM (8.9.3/8.9.3) with ESMTP id KAA29021 for ; Fri, 24 Nov 2000 10:39:54 -0700 (MST) Message-Id: <4.2.0.58.20001124103206.00a30100@relay.bsdi.com> X-Sender: reames@relay.bsdi.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Fri, 24 Nov 2000 10:39:57 +0000 To: freebsd-questions@freebsd.org From: Steve Reames Subject: Sysinstall crash on install Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Greetings all, I'm installing FreeBSD 4.1 on a 120 MHz Pentium. I'm following the instructions in the Lehey book. Both floppies load OK, system get to point where I get about two screens of "ppd0: blah blah blah, fd0: blah blah blah". When sysinstall programs starts, I see the color screen for about 0.1 seconds. The screen goes blank for 5 seconds and restarts again with the click-click-click of the memory test (cold boot). All I can figure is a jump to the cold boot vector, or an unexpected non-maskable interrupt. Has anyone seen this problem? I don't need an exact solution, but if someone could send me in the right direction I would appreciate it. (Note: I'm well versed with hardware and Windows, a novice with FreeBSD.) Thanks, Steve Reames reames@diskdrive.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 9:44:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 33BB637B479 for ; Fri, 24 Nov 2000 09:44:31 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAOHhv522609; Fri, 24 Nov 2000 09:43:57 -0800 (PST) Date: Fri, 24 Nov 2000 09:43:56 -0800 From: "'Alfred Perlstein'" To: "Potts, Ross" Cc: Francis Abella , freebsd-questions@FreeBSD.ORG Subject: Re: How do I move my server? Message-ID: <20001124094356.C8051@fw.wintelcom.net> References: <95B669A7D872D41182A600508BDFFB8C12D642@mlbmx7.ess.harris.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <95B669A7D872D41182A600508BDFFB8C12D642@mlbmx7.ess.harris.com>; from rpotts@harris.com on Fri, Nov 24, 2000 at 08:45:26AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Potts, Ross [001124 05:45] wrote: > Don't forget insane amount of insurance Yes, good call. However, even with insurance, the claims process UPS uses is pretty annoying. They want you to ship your already damaged equipment back to them (if you're an individual). "Hi, you broke all my stuff..." "Well ship it back to depot XXX so we can inspect it." "Uh, didn't you break it _enough_ the first time it went through you guys?" "Sir, I don't follow..." "%$@#%@%^@#$^#$!@^&@#$^@#^@#%#@%@##@" "Ok, I guess we can send someone over to look..." Don't know about FedEx, but it's probably not any better. blech, -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 9:48:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id B7A0837B4CF for ; Fri, 24 Nov 2000 09:48:44 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAOHjML22694; Fri, 24 Nov 2000 09:45:22 -0800 (PST) Date: Fri, 24 Nov 2000 09:45:22 -0800 From: Alfred Perlstein To: Jim DeLisle Cc: "FreeBSD-questions@FreeBSD.ORG" Subject: Re: pthreads library Message-ID: <20001124094522.D8051@fw.wintelcom.net> References: <3A1E8EF9.3F0C7582@home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A1E8EF9.3F0C7582@home.com>; from orbitor@home.com on Fri, Nov 24, 2000 at 10:53:29AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Jim DeLisle [001124 07:50] wrote: > Hello All, > > I'm miffed on where the pthreads libraries are on a FreeBSD 4.0 install. > There > seems to be on in the /usr/compat/linux/lib directory, but I would have > thought to have found a FreeBSD native version in /usr/lib. > > Any direction on how folks write c/c++ apps on FreeBSD using pthreads? Compile your app with -pthread supplied to gcc. read the 'pthread' manpage. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 9:48:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from wdc.callgtn.com (wdc.callgtn.com [209.47.57.75]) by hub.freebsd.org (Postfix) with ESMTP id 71CC637B4CF for ; Fri, 24 Nov 2000 09:48:49 -0800 (PST) Date: Fri, 24 Nov 2000 12:48:11 -0500 Message-Id: <200011241248.AA44826836@wdc.callgtn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii From: "Erik Rothwell" Reply-To: X-Sender: To: Subject: AUDIO PROBLEM: Only 1 user can hear sound. X-Mailer: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi folks, I got my audio working, fine, I thought. Until I added more users to the system. I have the K7T Pro motherboard from MSI which features that neat VIA chipset with the onboard audio. . . so, I compiled device pcm into my kernel and, although it didn't work at first, it seemed to correct itself (I did nothing but it started working) and off I was happy as a bird, yadda yadda. But then, when I added user accounts for my roommates, I came to the horrible discovery that *sound does not work for them.* It's not a multiple users at one time issue, it's just, a single-user at a time, still, no sound. I'm running GNOME 1.2 with Enlightenment 0.16.5 on FreeBSD 4.2/i386. I'm not really sure if it is a FreeBSD issue or a GNOME/E issue, but I have a feeling it's FreeBSD. . . it's all no good. Anyone know how to correct this? ------- E. L. Rothwell xxxxxxxx xxxxxxxxx xxxxxxxxxxxxx xxxxx xxxxxxxxxxxxx xxxx ------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 9:52:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from k9k203-3.kam.afb.lu.se (k9k203-3.kam.afb.lu.se [194.47.220.194]) by hub.freebsd.org (Postfix) with SMTP id 3B1BC37B4CF for ; Fri, 24 Nov 2000 09:52:52 -0800 (PST) Received: (qmail 36716 invoked from network); 24 Nov 2000 17:53:57 -0000 Received: from unknown (HELO gollum.k9k203-3.kam.afb.lu.se) (192.168.0.2) by k9k203-3.kam.afb.lu.se with SMTP; 24 Nov 2000 17:53:57 -0000 Received: (qmail 15990 invoked by uid 1001); 24 Nov 2000 17:52:49 -0000 Date: Fri, 24 Nov 2000 18:52:49 +0100 From: Sverre Valgeirsson To: freebsd-questions@freebsd.org Subject: ifhp and parallel port Message-ID: <20001124185249.A15901@gollum.k9k203-3.kam.afb.lu.se> Reply-To: e96sv@efd.lth.se Mail-Followup-To: Sverre Valgeirsson , 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 X-Loop: FreeBSD.ORG Hi. I'm trying to get my HP4 compatible printer (parallel) to work with ifhp 3.3.10. When I try to use ifhp I get this error: # ifhp -Tmode=hp4,dev=/dev/lpt0,trace < hi.txt ifhp 18:49:13.583 [36664] ifhp: fcntl fd 1 F_SETFL failed - Operation not supported by device I can print by using cat filename >/dev/lpt0, so the printer is alive and the computer can communicate with it. Any ideas? I'm using FreeBSD-4.2-STABLE /sverre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 10: 2:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id AA93B37B4C5 for ; Fri, 24 Nov 2000 10:02:12 -0800 (PST) Received: by heorot.1nova.com (Postfix, from userid 1000) id 8C8CB1899; Thu, 23 Nov 2000 10:25:35 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 7C7681898 for ; Thu, 23 Nov 2000 10:25:35 +0000 (GMT) Date: Thu, 23 Nov 2000 10:25:35 +0000 (GMT) From: Rick Hamell To: FreeBSD-questions Subject: Gateway machine slow to respond Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! Just upgraded to 4.1.1 on my gateway machine along with an entire new 18 gig SCSI disk. I put my old drive into another computer to refrence the setup. My problem seems to be along the lines of a reverse DNS problem, I can ping the gateway from another FreeBSD machine, and a Windows machine, can telnet into them, although the initial connection is really slow. Netscape on both the other machines times out before it can load a page. Here is my rc.conf # This file now contains just the overrides from /etc/defaults/rc.conf # please make all changes to this file. # Enable network daemons for user convenience. # -- sysinstall generated deltas -- # #sendmail_enable="YES" sshd_enable="YES" #inetd_enable="YES" # -- sysinstall generated deltas -- # ifconfig_fxp0="inet xxx.xxx.xxx.xxx netmask 255.255.255.0" ifconfig_fxp1="inet 192.168.1.1 netmask 255.255.255.0" gateway_enable="YES" defaultrouter="xxx.xxx.xxx.xxx" hostname="heorot.1nova.com" # Added Nov 26, 2000 RGH nat_enable="YES" #Enabled Address Trans natd_interface="fxp0" #NIC to use natd_flags="-f /etc/natd.conf" #Additional flags for NATD named_enable="YES" named_program="/usr/sbin/named" named_flag="-u bind -g bind" #firewall_enable="YES" #firewall_type="OPEN" I don't think I really need named at this point, though I do want to run a local nameserver. This machine can also connect to the outside world just fine. Thanks in advance for any help! Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***FreeBSD - The Power to Serve! http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 10: 4: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from locust.etext.org (locust.etext.org [216.93.75.148]) by hub.freebsd.org (Postfix) with ESMTP id 3CAE837B4CF; Fri, 24 Nov 2000 10:03:50 -0800 (PST) Received: from localhost (pauls@localhost) by locust.etext.org (8.11.0/8.11.0) with ESMTP id eAOI3hT31200; Fri, 24 Nov 2000 13:03:49 -0500 (EST) (envelope-from pauls@etext.org) Date: Fri, 24 Nov 2000 13:03:43 -0500 (EST) From: Paul Southworth To: Greg Lehey Cc: "Eric S. Nooden" , Michael Hughes , freebsd-questions@freebsd.org, freebsd-scsi@freebsd.org Subject: Re: Mounting a SCSI tape drive In-Reply-To: <19991202195345.47886@mojave.sitaranetworks.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [About a year ago there was a thread on freebsd-questions about Exabyte 8200 drives which I would like to revive with the hope that someone found a solution.] On Thu, 2 Dec 1999, Greg Lehey wrote: :On Thursday, 2 December 1999 at 15:17:47 -0600, Eric S. Nooden wrote: :> At 02:29 PM 12/2/99 -0600, Michael Hughes wrote: :>> Eric S. Nooden said in email to me: :>>> :>>> I am running into some problems trying to mount a tape drive. When I run: :>>> :>>> mt -f /dev/nrsa0 rewind (or any command i.e. status) :>>> :>>> I get the following error message: :>>> :>>> (sa0:ahc0:0:4:0): MODE SENSE(06). CDB: 1a 0 0 0 c 0 :>>> (sa0:ahc0:0:4:0): ILLEGAL REQUEST :>>> :>>> ***I did notice that when the command ran, the light on the tape drive did :>>> flash. :>>> :>>> The file /var/log/messages reports the following about sa0: :>>> :>>> sa0: at ahc0 bus 0 target 4 lun 0 :>>> sa0: Removable Sequential Access SCSI-CCS device :>>> sa0: 3.300MB/s transfers I have what appears to be an almost identical drive. Mine is reported as " Removable Sequential Access SCSI-CCS device". This was a drive Exabyte made OEM for IBM and was sold in RS/6000s ten years ago, white faceplate and round blue eject button. I am aware that it is a piece of crap - if I can make it work this whole machine is going to a charitable cause, otherwise the drive goes to the dumpster. I have it attached to a SCSI bus with a hard drive attached (id #0). The tape is id #1. The host adapter is an Adaptec 2930C at id #7. I have verified no SCSI ID conflicts by removing each device and probing. I get the exact same error message when I 'mt -f /dev/rsa0 status'. I am running a 4.1.1 GENERIC kernel (freshly installed OS). :>>> Any help in mounting this beast and get backups done would be appreciated. :>> :>> Type changing dup switch 4 to on, on the MX Card. :> :> Thanks for replying. I unfortunately must show my ignorance and ask "What :> is an MX Card?" Are you referring to the SCCI controller or a card :> physically attached to the tape drive. : :I believe the MX board is the second from the back ot the unit. You :should see an 8-position DIP switch on the right (looking from the :front). Unfortunately, the units I have have special screws for which :I don't have any screwdrivers available here. I'll see if I can :arrange something tomorrow. The small screws are Torx T-8 and the large are T-10. Examining the MX 2 card DIP block, factory settings were different from what I find on Exabyte's web site. They say default is all switches "off". http://www.exabyte.com/suppserv/techsupp/8mm/fullhigh/in0011.html On mine, switches 2, 3, 4, 5, and 8 were on by default (ie, for use in an RS/6000). I tried moving all switches to off, and all switches off but 4 on. When switch 4 is _off_ the drive returns an error immediately after an 'mt -f /dev/rsa0 status'. If switch 4 is _on_ it takes about 10 seconds and then returns the same error, after blinking the drive lights and making it's little Exabyte tape tensioning noises. I realize that Exabyte shipped drives with insane firmware variations (especially OEM) but this drive previously worked (a while ago) in a Linux box (Intel hardware) with a 1.2 kernel, which seems like a good sign. If anyone has the dirt on this drive, please drop me a note. --Paul Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.1.1-RELEASE #0: Tue Sep 26 00:46:59 GMT 2000 jkh@narf.osd.bsdi.com:/usr/src/sys/compile/GENERIC Timecounter "i8254" frequency 1193182 Hz CPU: Pentium/P54C (99.87-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x526 Stepping = 6 Features=0x1bf real memory = 33488896 (32704K bytes) config> di sn0 config> di lnc0 config> di le0 config> di ie0 config> di fe0 config> di ed0 config> di cs0 config> di bt0 config> di ata1 config> di ata0 config> di aic0 config> di aha0 config> di adv0 config> q avail memory = 28614656 (27944K bytes) Preloaded elf kernel "kernel" at 0xc0416000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc041609c. Intel Pentium detected, installing workaround for F00F bug md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf at device 7.1 on pci0 atapci0: Busmastering DMA not enabled uhci0: port 0xef80-0xef9f irq 11 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered chip1: port 0xfcb0-0xfcbf at device 7.3 on pci0 ahc0: port 0xec00-0xecff mem 0xfebef000-0xfebeffff irq 9 at device 18.0 on pci0 aic7850: Single Channel A, SCSI Id=7, 3/255 SCBs pci0: at 20.0 irq 11 ep0: <3Com 3C509-Combo EtherLink III> at port 0x300-0x30f irq 10 on isa0 ep0: Ethernet address 00:a0:24:4d:35:5f fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/9 bytes threshold plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 Waiting 15 seconds for SCSI devices to settle sa0 at ahc0 bus 0 target 1 lun 0 sa0: Removable Sequential Access SCSI-CCS device sa0: 3.300MB/s transfers da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 10.000MB/s transfers (10.000MHz, offset 15) da0: 4095MB (8388315 512 byte sectors: 255H 63S/T 522C) Mounting root from ufs:/dev/da0s1a (sa0:ahc0:0:1:0): MODE SENSE(06). CDB: 1a 0 0 0 c 0 (sa0:ahc0:0:1:0): ILLEGAL REQUEST (sa0:ahc0:0:1:0): MODE SENSE(06). CDB: 1a 0 0 0 c 0 (sa0:ahc0:0:1:0): ILLEGAL REQUEST (sa0:ahc0:0:1:0): MODE SENSE(06). CDB: 1a 0 0 0 c 0 (sa0:ahc0:0:1:0): ILLEGAL REQUEST (sa0:ahc0:0:1:0): MODE SENSE(06). CDB: 1a 0 0 0 c 0 (sa0:ahc0:0:1:0): ILLEGAL REQUEST (sa0:ahc0:0:1:0): MODE SENSE(06). CDB: 1a 0 0 0 c 0 (sa0:ahc0:0:1:0): ILLEGAL REQUEST (sa0:ahc0:0:1:0): MODE SENSE(06). CDB: 1a 0 0 0 c 0 (sa0:ahc0:0:1:0): ILLEGAL REQUEST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 10:28:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from arcticbears.com (cr762385-b.poco1.bc.wave.home.com [24.112.114.174]) by hub.freebsd.org (Postfix) with ESMTP id B5A6F37B479 for ; Fri, 24 Nov 2000 10:28:54 -0800 (PST) Received: from CR762385C [24.113.4.109] by arcticbears.com [24.112.114.174] with SMTP (MDaemon.v3.0.3.R) for ; Fri, 24 Nov 2000 10:27:34 -0800 Message-ID: <020101c05644$524c2260$6600a8c0@arcticbears.com> From: "Eric Paynter" To: Subject: ../../conf/files: x must be optional, mandatory or standard Date: Fri, 24 Nov 2000 10:28:20 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_01FE_01C05601.43E43840" 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-MDaemon-Deliver-To: freebsd-questions@freebsd.org X-Return-Path: eric@arcticbears.com X-MDRcpt-To: freebsd-questions@freebsd.org X-MDRemoteIP: 24.113.4.109 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_01FE_01C05601.43E43840 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi all! I just finished a binary upgrade from 4.1 to 4.2 from the iso and all = went well! Now, I'm trying to recompile my kernel and I'm having a = problem. When I run /usr/sbin/config from within = /usr/src/sys/i386/conf, it returns ../../conf/files: coda/coda_fbsd.c = must be optional, mandatory, or standard. When I look in = ../../conf/files, I see that there are many lines with "count" in place = of "optional". My assumption is that I missed something when updating my = sources, since I've never seen this before. My CVSup file requests the following sources: doc_all ports_all src_base src_include src_lib src_sys src_sys_crypto I'm not a kernel guru; usually I just remove the lines for drivers I = don't need from the conf file and recompile. I don't know what the files = in ../../conf are and I would also like some pointers to documentation = about them. I read the man for config and it was completely unhelpful. = Also, the FBSD Handbook doesn't get into that much detail about kernel = recompiles...=20 Thanks for any help! -Eric ------------------------------------------------------- arctic bears - the internet - your way. 50000 domain names were reserved today. was yours? domains from US$25/year, name resolution, mail hosting. http://www.arcticbears.com ------=_NextPart_000_01FE_01C05601.43E43840 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi all!
 
I just finished a = binary upgrade=20 from 4.1 to 4.2 from the iso and all went well! Now, I'm trying to = recompile my=20 kernel and I'm having a problem. When I run /usr/sbin/config = <myconfig>=20 from within /usr/src/sys/i386/conf, it returns ../../conf/files:=20 coda/coda_fbsd.c must be optional, mandatory, or standard. When I look = in=20 ../../conf/files, I see that there are many lines with "count" in place = of=20 "optional". My assumption is that I missed something when updating my = sources,=20 since I've never seen this before.
 
My CVSup file = requests the=20 following sources:
 
doc_all
ports_all
src_base
src_include
src_lib
src_sys
src_sys_crypto
 
I'm not a kernel = guru; usually I=20 just remove the lines for drivers I don't need from the conf file and = recompile.=20 I don't know what the files in ../../conf are and I would also like some = pointers to documentation about them. I read the man for config and it = was=20 completely unhelpful. Also, the FBSD Handbook doesn't get into that much = detail=20 about kernel recompiles...
 
Thanks for any = help!
 
-Eric

-------------------------------------------------------
a= rctic=20 bears - the internet - your way.
50000 domain names were reserved = today. was=20 yours?
domains from US$25/year, name resolution, mail hosting.
http://www.arcticbears.com
=
 
 
------=_NextPart_000_01FE_01C05601.43E43840-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 10:29:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from el.com.br (srv01.el.com.br [200.217.18.162]) by hub.freebsd.org (Postfix) with ESMTP id 971B537B479 for ; Fri, 24 Nov 2000 10:29:20 -0800 (PST) Received: from el.com.br (srv02.el.com.br [200.217.18.163]) by el.com.br (el_mail_server) with ESMTP id 7436A192E for ; Tue, 21 Nov 2000 16:13:27 -0200 (EDT) Message-ID: <3A1ABB47.E11FFE79@el.com.br> Date: Tue, 21 Nov 2000 16:13:27 -0200 From: Paiva Reply-To: npd@el.com.br Organization: E&L Producoes de Software X-Mailer: Mozilla 4.7 [en] (X11; I; FreeBSD 4.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: AWE64, pcm and isa0 ... What should I do ? Content-Type: multipart/mixed; boundary="------------56CDA2113462CB0C1F14CB64" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------56CDA2113462CB0C1F14CB64 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi list. All this problem started after a NT crash that destroyed all the systems on my HD. I installed the 4.2 RELEASE and, since I lost my kernel config file, I'm unable to get this sound card working again. At http://docs.freebsd.org/ I find various messages posted about the "isa0: Too many dependants configs (8)" error, but could not find an answer applicable to my case. Any ideas? --------------56CDA2113462CB0C1F14CB64 Content-Type: text/plain; charset=us-ascii; name="G-PAIVA" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="G-PAIVA" machine i386 cpu I586_CPU cpu I686_CPU ident G-PAIVA maxusers 32 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 EXT2FS options SC_DISABLE_REBOOT # disable reboot key sequence options SOFTUPDATES #Enable FFS soft updates support options MFS #Memory Filesystem options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=5000 #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 pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 # ATA and ATAPI devices device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives options ATA_STATIC_ID #Static device numbering options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # SCSI Controllers device ahc # AHA2940 and onboard AIC7xxx devices device amd # AMD 53C974 (Teckram DC-390(T)) # 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) device pt #SCSI processor type # atkbdc0 controls both the keyboard and the PS/2 mouse device npx0 at nexus? port IO_NPX flags 0x0 irq 13 options VESA device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 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 # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 # 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 xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device tun # Packet tunnel. pseudo-device pty # Pseudo-ttys (telnet etc) # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter # Sound support device sbc device sbc0 at isa? port 0x220 irq 5 drq 1 flags 0x15 device pcm options IPFIREWALL #firewall options IPFIREWALL_VERBOSE #print information about options IPFIREWALL_FORWARD #enable transparent proxy support options IPFIREWALL_VERBOSE_LIMIT=100 #limit verbosity # options IPFIREWALL_DEFAULT_TO_ACCEPT #allow everything by default options IPDIVERT #divert sockets options IPSTEALTH #support for stealth forwarding options ACCEPT_FILTER_DATA options ACCEPT_FILTER_HTTP options TCP_DROP_SYNFIN #drop TCP packets with SYN+FIN options TCP_RESTRICT_RST #restrict emission of TCP RST options ICMP_BANDLIM --------------56CDA2113462CB0C1F14CB64 Content-Type: text/plain; charset=us-ascii; name="dmesg_output" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dmesg_output" Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.2-STABLE #0: Tue Nov 21 14:36:52 EDT 2000 root@g-paiva.el.com.br:/usr/obj/usr/src/sys/G-PAIVA Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 267273934 Hz CPU: Pentium II/Pentium II Xeon/Celeron (267.27-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x633 Stepping = 3 Features=0x80f9ff real memory = 67108864 (65536K bytes) avail memory = 62328832 (60868K bytes) Preloaded elf kernel "kernel" at 0xc0307000. VESA: v1.2, 2048k memory, flags:0x0, mode table:0xc00c09da (c00009da) VESA: S3 Incorporated. Trio64V+ Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf 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 0 chip1: port 0x5f00-0x5f0f at device 7.3 on pci0 xl0: <3Com 3c905B-TX Fast Etherlink XL> port 0xdc00-0xdc7f mem 0xebfeef80-0xebfeefff irq 11 at device 8.0 on pci0 xl0: Ethernet address: 00:10:4b:c9:02:1a miibus0: on xl0 xlphy0: <3Com internal media interface> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto ahc0: port 0xde00-0xdeff mem 0xebfef000-0xebfeffff irq 10 at device 9.0 on pci0 aic7880: Wide Channel A, SCSI Id=7, 16/255 SCBs pci0: at 10.0 irq 9 pci0: at 11.0 irq 5 isa0: too many dependant configs (8) fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A sbc1: at port 0x220-0x22f,0x330-0x331,0x388-0x38b irq 5 drq 1,5 on isa0 pcm0: on sbc1 IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to deny, logging limited to 100 packets/entry by default ad0: 1549MB [3148/16/63] at ata0-master WDMA2 Waiting 5 seconds for SCSI devices to settle Mounting root from ufs:/dev/da0s2a da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 20.000MB/s transfers (20.000MHz, offset 15) da0: 2063MB (4226725 512 byte sectors: 255H 63S/T 263C) da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 20.000MB/s transfers (20.000MHz, offset 15) da1: 2063MB (4226725 512 byte sectors: 255H 63S/T 263C) pcm0: play interrupt timeout, channel dead --------------56CDA2113462CB0C1F14CB64 Content-Type: text/plain; charset=us-ascii; name="pnpinfo_output" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="pnpinfo_output" Checking for Plug-n-Play devices... Card assigned CSN #1 Vendor ID CTL00c1 (0xc1008c0e), Serial Number 0x1655ca65 PnP Version 1.0, Vendor Version 16 Device Description: Creative SB AWE64 PnP Logical Device ID: CTL0042 0x42008c0e #0 Device Description: Audio TAG Start DF Good Configuration IRQ: 5 - only one type (true/edge) DMA: channel(s) 1 8-bit, not a bus master, count by byte, , Compatibility mode DMA: channel(s) 5 16-bit, not a bus master, , count by word, Compatibility mode I/O Range 0x220 .. 0x220, alignment 0x1, len 0x10 [16-bit addr] I/O Range 0x330 .. 0x330, alignment 0x1, len 0x2 [16-bit addr] I/O Range 0x388 .. 0x388, alignment 0x1, len 0x4 [16-bit addr] TAG Start DF Acceptable Configuration IRQ: 5 7 9 10 - only one type (true/edge) DMA: channel(s) 0 1 3 8-bit, not a bus master, count by byte, , Compatibility mode DMA: channel(s) 5 6 7 16-bit, not a bus master, , count by word, Compatibility mode I/O Range 0x220 .. 0x280, alignment 0x20, len 0x10 [16-bit addr] I/O Range 0x300 .. 0x330, alignment 0x30, len 0x2 [16-bit addr] I/O Range 0x388 .. 0x388, alignment 0x1, len 0x4 [16-bit addr] TAG Start DF Acceptable Configuration IRQ: 5 7 9 10 - only one type (true/edge) DMA: channel(s) 0 1 3 8-bit, not a bus master, count by byte, , Compatibility mode DMA: channel(s) 5 6 7 16-bit, not a bus master, , count by word, Compatibility mode I/O Range 0x220 .. 0x280, alignment 0x20, len 0x10 [16-bit addr] I/O Range 0x300 .. 0x330, alignment 0x30, len 0x2 [16-bit addr] TAG Start DF Acceptable Configuration IRQ: 5 7 9 10 - only one type (true/edge) DMA: channel(s) 0 1 3 8-bit, not a bus master, count by byte, , Compatibility mode DMA: channel(s) 5 6 7 16-bit, not a bus master, , count by word, Compatibility mode I/O Range 0x220 .. 0x280, alignment 0x20, len 0x10 [16-bit addr] TAG Start DF Acceptable Configuration IRQ: 5 7 9 10 - only one type (true/edge) DMA: channel(s) 0 1 3 8-bit, not a bus master, count by byte, , Compatibility mode I/O Range 0x220 .. 0x280, alignment 0x20, len 0x10 [16-bit addr] I/O Range 0x300 .. 0x330, alignment 0x30, len 0x2 [16-bit addr] I/O Range 0x388 .. 0x388, alignment 0x1, len 0x4 [16-bit addr] TAG Start DF Acceptable Configuration IRQ: 5 7 9 10 - only one type (true/edge) DMA: channel(s) 0 1 3 8-bit, not a bus master, count by byte, , Compatibility mode I/O Range 0x220 .. 0x280, alignment 0x20, len 0x10 [16-bit addr] I/O Range 0x300 .. 0x330, alignment 0x30, len 0x2 [16-bit addr] TAG Start DF Acceptable Configuration IRQ: 5 7 9 10 - only one type (true/edge) DMA: channel(s) 0 1 3 8-bit, not a bus master, count by byte, , Compatibility mode I/O Range 0x220 .. 0x280, alignment 0x20, len 0x10 [16-bit addr] TAG Start DF Sub-optimal Configuration IRQ: 5 7 9 10 - only one type (true/edge) DMA: channel(s) 0 1 3 8-bit, not a bus master, count by byte, , Compatibility mode DMA: channel(s) 5 6 7 16-bit, not a bus master, , count by word, Compatibility mode I/O Range 0x220 .. 0x280, alignment 0x20, len 0x10 [16-bit addr] I/O Range 0x300 .. 0x330, alignment 0x10, len 0x2 [16-bit addr] I/O Range 0x388 .. 0x394, alignment 0x4, len 0x4 [16-bit addr] TAG End DF Logical Device ID: CTL7002 0x02708c0e #1 Compatible Device ID: PNPb02f (2fb0d041) Device Description: Game TAG Start DF Good Configuration I/O Range 0x200 .. 0x200, alignment 0x1, len 0x8 [16-bit addr] TAG Start DF Acceptable Configuration I/O Range 0x200 .. 0x208, alignment 0x8, len 0x8 [16-bit addr] TAG End DF Logical Device ID: CTL0022 0x22008c0e #2 Device Description: WaveTable TAG Start DF Good Configuration I/O Range 0x620 .. 0x620, alignment 0x1, len 0x4 [16-bit addr] TAG Start DF Acceptable Configuration I/O Range 0x620 .. 0x680, alignment 0x20, len 0x4 [16-bit addr] TAG End DF End Tag Successfully got 67 resources, 3 logical fdevs -- card select # 0x0001 CSN CTL00c1 (0xc1008c0e), Serial Number 0x1655ca65 Logical device #0 IO: 0x0220 0x0220 0x0220 0x0220 0x0220 0x0220 0x0220 0x0220 IRQ 5 0 DMA 1 5 IO range check 0x00 activate 0x01 Logical device #1 IO: 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 IRQ 0 0 DMA 4 4 IO range check 0x00 activate 0x01 Logical device #2 IO: 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 IRQ 0 0 DMA 4 4 IO range check 0x00 activate 0x01 --------------56CDA2113462CB0C1F14CB64 Content-Type: text/plain; charset=us-ascii; name="sndstat_output" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="sndstat_output" FreeBSD Audio Driver (newpcm) Nov 21 2000 14:35:45 Installed devices: pcm0: at io 0x220 irq 5 drq 1:5 (1p/1r channels duplex) --------------56CDA2113462CB0C1F14CB64-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 10:30:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from alex.intersurf.net (alex.intersurf.net [216.115.129.11]) by hub.freebsd.org (Postfix) with SMTP id B2B4037B4CF for ; Fri, 24 Nov 2000 10:30:21 -0800 (PST) Received: (qmail 4370 invoked from network); 24 Nov 2000 12:30:19 -0600 Received: from mdm-143-20.dialup.intersurf.com (HELO win2k) (216.115.143.20) by alex.intersurf.net with SMTP; 24 Nov 2000 12:30:19 -0600 Message-ID: <000d01c05644$7b494c60$0101a8c0@win2k> From: "Jeremy Falcon" To: "Dorian Harmans" , References: <3A1E9960.3A524240@wanadoo.nl> Subject: Re: Question Date: Fri, 24 Nov 2000 12:29:27 -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 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG If I remember correctly, Nero does support the "iso file type". I used to use Nero at my old job for burning CDs for clients. Adaptec's Easy CD Creator and CDRWin are other programs that support that file type. It's pretty standard. :o) haha (ISO Standard, get it? -- I know, that was cheesy.) Sincerely, Jeremy L. Falcon ----- Original Message ----- From: "Dorian Harmans" To: Sent: Friday, November 24, 2000 10:37 AM Subject: Question > Which program do I need to use to burn the .iso file of the 4.2 release? > > I tried Nero, Blindread, Clonecd but none of them seem to recognize the > .iso filetype. > Please help me. > Thank in advantage. > > Dorian Harmans > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 24 10:41:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from buchanan-181-249.stures.iastate.edu (buchanan-181-249.stures.iastate.edu [129.186.181.249]) by hub.freebsd.org (Postfix) with ESMTP id 69B6737B4D7 for ; Fri, 24 Nov 2000 10:41:20 -0800 (PST) Received: (from kparz@localhost) by buchanan-181-249.stures.iastate.edu (8.11.1/8.11.1) id eAOIiEx08704; Fri, 24 Nov 2000 12:44:14 -0600 (CST) (envelope-from kparz) Date: Fri, 24 Nov 2000 12:44:14 -0600 From: Krzysztof Parzyszek To: Tim McMillen Cc: freebsd-questions@FreeBSD.ORG Subject: Re: VMware for FreeBSD ? Message-ID: <20001124124414.A8686@buchanan-181-249.stures.iastate> References: <20001124023403.A7169@buchanan-181-249.stures.iastate> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from timcm@umich.edu on Fri, Nov 24, 2000 at 09:36:58AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 24, 2000 at 09:36:58AM -0500, Tim McMillen wrote: > > On Fri, 24 Nov 2000, Krzysztof Parzyszek wrote: > > > > When exactly does it complain? > > As soon as I try to power on the virtual machine. Mine only says something about the mouse, but it's nothing critical. Try to create a fresh configuration and see if it fails again. -- ,oPq J --- Krzysztof Parzyszek 10/15/2000 1:29am --- 7 `8oP' --- Abandon the search for Truth; settle for a good fantasy. --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 10:57:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id 7BE8337B4C5 for ; Fri, 24 Nov 2000 10:57:40 -0800 (PST) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id KAA07150; Fri, 24 Nov 2000 10:57:27 -0800 Message-ID: <3A1EBA17.65FE598E@urx.com> Date: Fri, 24 Nov 2000 10:57:27 -0800 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Gene Harris Cc: freebsd-questions Subject: Re: Using MergeMaster References: <51F9B228ED26D311A17700A0C9982664013F40@tetboss.internal.tetronsoftware.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Gene Harris wrote: > > I have two simple questions about mergemaster. > > When is it appropriate to run mergemaster? I usually update my 4.x-STABLE > sources once per month. I haven't been trying to merge changes in /etc, but > I noticed that my sendmail version and sendmail.cf versions were badly out > of sync and I manually update sendmail.cf from freebsd.cf. It is appropriate everytime they are upgraded. If you don't follow the cvsup changes, than I would think that is everytime you do an installworld. Otherwise, you will have installed a module and haven't installed the configuration file that it needs. > > Is it appropriate to just run mergemaster by typing the command and letting > it run its course? Not unless you have configuration files you want to redo. For example, I have a rc.firewall that has additional stuff and if they update it, my rc firewall disappears. My root abbreviations also disappear along with my modified dot."files" that I have setup for typical new user additions. Kent > > Many Thanks, > > Gene Harris > http://www.tetronsoftware.com > FreeBSD Samba PostgreSQL Apache > > 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 Fri Nov 24 10:58:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 6F0F037B4C5 for ; Fri, 24 Nov 2000 10:58:32 -0800 (PST) Received: (qmail 57609 invoked by uid 100); 24 Nov 2000 18:58:26 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14878.47698.527801.429925@guru.mired.org> Date: Fri, 24 Nov 2000 12:58:26 -0600 (CST) To: "Duke Normandin" <01031149@3web.net> Cc: questions@freebsd.org Subject: Re: 3.3R boot manager In-Reply-To: <69137104@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Duke Normandin <01031149@3web.net> types: > Hi...again > wd0 = DOS wd1=3.3R > Some &^%$*ing how, I installed a boot manager on *both* drives. At > boot-time I get F1 DOS F5 Freebsd. I hit F5, then I get another menu > F1 Freebsd F5 (I can't remember). I of course want to keep the wd0 > boot manager. How do I nuke the boot manager on wd1 -- or is the above > the correct behavior? Thanks... It's correct under the conditions you described, and some people prefer it (since you can then go back to the other drive). See the man page for fdisk to see how to install a standard boot manager on a drive, and boot0cfg for how to install the booteasy boot manager. ; Fri, 24 Nov 2000 11:02:42 -0800 (PST) Received: from FreeBSD.org (Studded@master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id LAA84786; Fri, 24 Nov 2000 11:02:32 -0800 (PST) (envelope-from DougB@FreeBSD.org) Message-ID: <3A1EBB48.4EBC9110@FreeBSD.org> Date: Fri, 24 Nov 2000 11:02:32 -0800 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Gene Harris Cc: freebsd-questions Subject: Re: Using MergeMaster References: <51F9B228ED26D311A17700A0C9982664013F40@tetboss.internal.tetronsoftware.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Gene Harris wrote: > > I have two simple questions about mergemaster. > > When is it appropriate to run mergemaster? Whenever you update your system binaries. Basically, you want to keep the sources in /etc/ updated to the same level as your system as a whole. > Is it appropriate to just run mergemaster by typing the command and letting > it run its course? You need to read the man page first. Make sure you take good backups, and the first few times you run it you should probably use the -v switch. Good luck, Doug -- So what I want to know is, where does the RED brick road go? 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 Fri Nov 24 11: 6:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from berzerk.gpcc.itd.umich.edu (berzerk.gpcc.itd.umich.edu [141.211.2.162]) by hub.freebsd.org (Postfix) with ESMTP id 2807E37B4C5 for ; Fri, 24 Nov 2000 11:06:46 -0800 (PST) Received: from frogger.gpcc.itd.umich.edu (smtp@frogger.gpcc.itd.umich.edu [141.211.2.144]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id OAA10285; Fri, 24 Nov 2000 14:06:45 -0500 (EST) Received: from localhost (timcm@localhost) by frogger.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id OAA06659; Fri, 24 Nov 2000 14:06:44 -0500 (EST) Date: Fri, 24 Nov 2000 14:06:44 -0500 (EST) From: Tim McMillen X-Sender: timcm@frogger.gpcc.itd.umich.edu To: Dorian Harmans Cc: questions@FreeBSD.ORG Subject: Re: Question In-Reply-To: <3A1E9960.3A524240@wanadoo.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Burncd (man burncd) is supposed to work but since I don't have an atapi cdr drive I used /usr/ports/sysutils/cdrecord to burn with a usb drive. It actually worked, but I got a lot of errors. Oh, wait, were you talking about an os besides FreeBSD? I think any cd burner software can handle an ISO if you do it right, but I'm sure at least one numscull out there has made one that can't use an international standard file format. Tim On Fri, 24 Nov 2000, Dorian Harmans wrote: > Which program do I need to use to burn the .iso file of the 4.2 release? > > I tried Nero, Blindread, Clonecd but none of them seem to recognize the > .iso filetype. > Please help me. > Thank in advantage. > > Dorian Harmans To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 11: 8:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ontfire1.ssfhs.org (smtp.ssfhs.org [199.189.61.35]) by hub.freebsd.org (Postfix) with SMTP id 9CC2937B4C5 for ; Fri, 24 Nov 2000 11:08:34 -0800 (PST) Received: from smtp.ssfhs.org by ontfire1.ssfhs.org via smtpd (for hub.FreeBSD.org [216.136.204.18]) with SMTP; 24 Nov 2000 19:08:34 UT Received: from ontexbh01.chmw.org by smtp.chmw.org (AIX 4.1/UCB 5.64/4.03) id AA14542; Fri, 24 Nov 2000 14:08:27 -0500 Received: by ontexbh01v.chmw.org with Internet Mail Service (5.5.2650.21) id ; Fri, 24 Nov 2000 14:03:56 -0500 Message-Id: <2C77956AA59FD411B19A00508BAEC8230CCDE3@ontexcst01.chmw.org> From: Joy Jim To: "'freebsd-questions@FreeBSD.org'" Subject: Removing FreeBSD from a PC Date: Fri, 24 Nov 2000 14:03:31 -0500 Mime-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG A former co-worker installed FreeBSD on a PC which I now need to set up as a Windows box for a user. My problem is that I am unable to boot from a DOS floppy to run FDISK to remove the partitions and reformat the drive. I appreciate your assistance. > James Joy > Alverno Information Services > PC/LAN Specialist -- St. Anthony Memorial Health Centers > Phone: 219-877-1957 Fax: 219-877-1001 > jim.joy@ssfhs.org > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 11:14:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 80EAD37B4C5 for ; Fri, 24 Nov 2000 11:14:56 -0800 (PST) Received: (qmail 93862 invoked by uid 100); 24 Nov 2000 19:14:56 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14878.48687.841801.748670@guru.mired.org> Date: Fri, 24 Nov 2000 13:14:55 -0600 (CST) To: Rajesh Saxena Cc: questions@freebsd.org Subject: Re: Problems playing mpegs in FreeBSD 4.2 Stable Newsgroups: mailing.freebsd.questions In-Reply-To: References: <8vl33c$2mi0$1@FreeBSD.csie.NCTU.edu.tw> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Rajesh Saxena types: > > Are you running the same binaries you were running on 4.1-RELEASE? If > > so, did you try upgrading to the 4.2-RELEASE versions of them? No > > guarantees, but that may fix the problem. It wouldn't hurt in any > > case. > I was using the same binaries initially but when I read your message I did > make deinstall && make clean for sdl-devel-1.1.6, sdl-1.0.8_1, smpeg-0.4.0 > and Mesa-3.2.1_1 and then reinstalled all of those ports but still no > luck. I don't really know what the problem is because most of the time gtv > won't even give me an error message, just doesn't load the files and then > i have to kill -9 pid. I've tried xanim but that seems to skip a lot of > frames for some reason. Mind you.. it isn't my hardware(atleast I don't > think it is)since Realplayer has no problems playing video files. Is there > any other media player I can use for mpg's & avi's? Please keep your replies on the -questions list. Others may be interested in knowing how well the answer works - or didn't. Two things you might try: 1) plaympeg (it's part of the smpeg package as well), which should give you better error messages. 2) Get the SDL-1.1.4 from the web site, and try to install it. The sdl development port *is* for development, and tends to break. I know sdl-devel-1.1.5 was broken; 1.1.6 may also be broken. Unfortunately, nobody has bothered to update the sdl port to anything more recent than 1.0.8, which smpeg can't use. ; Fri, 24 Nov 2000 11:17:13 -0800 (PST) Received: from frogger.gpcc.itd.umich.edu (smtp@frogger.gpcc.itd.umich.edu [141.211.2.144]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id OAA10618; Fri, 24 Nov 2000 14:17:12 -0500 (EST) Received: from localhost (timcm@localhost) by frogger.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id OAA07297; Fri, 24 Nov 2000 14:17:12 -0500 (EST) Date: Fri, 24 Nov 2000 14:17:12 -0500 (EST) From: Tim McMillen X-Sender: timcm@frogger.gpcc.itd.umich.edu To: Steve Reames Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Sysinstall crash on install In-Reply-To: <4.2.0.58.20001124103206.00a30100@relay.bsdi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've never seen anything like that, but try booting in verbose mode to see if that tells you anything. Any error messages could be helpful to those in the know. When you see the boot loader press any key for a prompt, do that and type boot -v. That may give you some detail as to why. Otherwise try to get new floppies and create the bootdisks again. Errors on the disk surface can cause some crazy booting problems, since the bootdisks use every sector on the disk. I assume the problem is repeatable? If it wigs out at different spots in the boot process then you would of course be led to suspect hardware flakiness. Even if not, try different memory or a different hard drive or floppy drive etc. Play with the hardware, lots of different combinations if you can. It may surprise you. Tim On Fri, 24 Nov 2000, Steve Reames wrote: > Greetings all, > I'm installing FreeBSD 4.1 on a 120 MHz Pentium. I'm following the > instructions in the Lehey book. Both floppies load OK, system get to point > where I get about two screens of "ppd0: blah blah blah, fd0: blah blah > blah". When sysinstall programs starts, I see the color screen for about > 0.1 seconds. The screen goes blank for 5 seconds and restarts again with > the click-click-click of the memory test (cold boot). > All I can figure is a jump to the cold boot vector, or an unexpected > non-maskable interrupt. Has anyone seen this problem? I don't need an exact > solution, but if someone could send me in the right direction I would > appreciate it. (Note: I'm well versed with hardware and Windows, a novice > with FreeBSD.) > > Thanks, > Steve Reames > reames@diskdrive.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 Nov 24 11:20:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from berzerk.gpcc.itd.umich.edu (berzerk.gpcc.itd.umich.edu [141.211.2.162]) by hub.freebsd.org (Postfix) with ESMTP id EC7CA37B4CF for ; Fri, 24 Nov 2000 11:20:17 -0800 (PST) Received: from frogger.gpcc.itd.umich.edu (smtp@frogger.gpcc.itd.umich.edu [141.211.2.144]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id OAA10860; Fri, 24 Nov 2000 14:20:16 -0500 (EST) Received: from localhost (timcm@localhost) by frogger.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id OAA07662; Fri, 24 Nov 2000 14:20:16 -0500 (EST) Date: Fri, 24 Nov 2000 14:20:15 -0500 (EST) From: Tim McMillen X-Sender: timcm@frogger.gpcc.itd.umich.edu To: "'Alfred Perlstein'" Cc: "Potts, Ross" , Francis Abella , freebsd-questions@FreeBSD.ORG Subject: Re: How do I move my server? In-Reply-To: <20001124094356.C8051@fw.wintelcom.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 24 Nov 2000, 'Alfred Perlstein' wrote: > * Potts, Ross [001124 05:45] wrote: > > Don't forget insane amount of insurance > > Yes, good call. > > However, even with insurance, the claims process UPS uses is pretty > annoying. They want you to ship your already damaged equipment back > to them (if you're an individual). Yes but you can get 3rd party insurance too. Try taking digital photos of everything before and after. Then any issues could be resolved with them. > "Hi, you broke all my stuff..." > "Well ship it back to depot XXX so we can inspect it." > "Uh, didn't you break it _enough_ the first time it went through you guys?" > "Sir, I don't follow..." > "%$@#%@%^@#$^#$!@^&@#$^@#^@#%#@%@##@" > "Ok, I guess we can send someone over to look..." I needed a good laugh today. :) > Don't know about FedEx, but it's probably not any better. > > blech, > -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 11:26:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from soholinux.mine.nu (adsl-141-150-72-3.nnj.adsl.bellatlantic.net [141.150.72.3]) by hub.freebsd.org (Postfix) with ESMTP id CB49337B4C5 for ; Fri, 24 Nov 2000 11:26:27 -0800 (PST) Received: from soholinux.mine.nu ( [192.168.0.7]) by soholinux.mine.nu (8.9.3/8.8.7) with ESMTP id OAA31641 for ; Fri, 24 Nov 2000 14:24:00 -0500 Message-ID: <3A1EC03A.199C2AD3@soholinux.mine.nu> Date: Fri, 24 Nov 2000 14:23:39 -0500 From: Mike Wafkowski X-Mailer: Mozilla 4.75 [en] (Win95; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: subscribe Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG subscribe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 11:38:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from arcticbears.com (cr762385-b.poco1.bc.wave.home.com [24.112.114.174]) by hub.freebsd.org (Postfix) with ESMTP id B358437B479 for ; Fri, 24 Nov 2000 11:38:19 -0800 (PST) Received: from CR762385C [192.168.0.102] by arcticbears.com [24.112.114.174] with SMTP (MDaemon.v3.0.3.R) for ; Fri, 24 Nov 2000 11:36:20 -0800 Message-ID: <026101c0564d$edaa37c0$6600a8c0@arcticbears.com> From: "Eric Paynter" To: References: <2C77956AA59FD411B19A00508BAEC8230CCDE3@ontexcst01.chmw.org> Subject: Re: Removing FreeBSD from a PC Date: Fri, 24 Nov 2000 11:37:06 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-MDaemon-Deliver-To: freebsd-questions@FreeBSD.org X-Return-Path: eric@arcticbears.com X-MDRcpt-To: freebsd-questions@FreeBSD.org X-MDRemoteIP: 192.168.0.102 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Try running "fdisk /mbr" to replace the master boot record. DOS fdisk cannot handle certain partition types and chokes rather than allowing you to delete them. I've often seen it say "cannot delete this extended partition while logical drives exist". So I try to delete the logical drives and it says "no logical drives exist"... You may need a more sophisticated program like Partition Magic (by powerquest) if that doesn't work. Alternatively, if FreeBSD is still working on the box, boot to single user mode (-s) and use use /stand/sysinstall to blow away all partitions on the disk. Then, DOS should see it as a virgin disk and allow you to make partitions. Also, the Windows NT setup program has a little bit more robust partition creator... which "flavor" of Windows are you planning on installing? -Eric ------------------------------------------------------- arctic bears - the internet - your way. 50000 domain names were reserved today. was yours? domains from US$25/year, name resolution, mail hosting. http://www.arcticbears.com ----- Original Message ----- From: "Joy Jim" To: Sent: Friday, November 24, 2000 11:03 AM Subject: Removing FreeBSD from a PC > A former co-worker installed FreeBSD on a PC which I now need to set up as a > Windows box for a user. > > My problem is that I am unable to boot from a DOS floppy to run FDISK to > remove the partitions and reformat the drive. > > I appreciate your assistance. > > > James Joy > > Alverno Information Services > > PC/LAN Specialist -- St. Anthony Memorial Health Centers > > Phone: 219-877-1957 Fax: 219-877-1001 > > jim.joy@ssfhs.org > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 11:47:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-2.sjc.telocity.net (mail-2.sjc.telocity.net [216.227.56.42]) by hub.freebsd.org (Postfix) with ESMTP id EB02637B4C5; Fri, 24 Nov 2000 11:47:51 -0800 (PST) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-2.sjc.telocity.net (8.9.3/8.9.3) with SMTP id LAA07645; Fri, 24 Nov 2000 11:43:30 -0800 (PST) From: "Otter" To: "FreeBSD Questions" , Subject: PCCARD config question Date: Fri, 24 Nov 2000 14:51:12 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I just got a laptop (Toshiba 330CDS) and have a pccard which worked for ftp install, but after the reboot, won't work now. I realize the install automated the enabling of the device, but I need to set it up so it's found at boot or at least so I can manually start the NIC. It's a 3com 3CXFE574BT, found on the install as an "ep" device. I've got the default/generic kernel, so no device support has been removed. At boot time, I can see it tries to ifconfig the device, but there is a message about "device ep does not exist". Shortly before that, I see an error message stating "/dev/card0: device not configured". What am i missing? There are entries for card0-3 in my /dev. I haven't found much in the way of documentation for this, other than searching the mailing list and reading the man page for pccard.conf. Any info would be greatly appreciated. Please Cc: me in the reply as I'm not subscribed to -mobile. TIA. -Otter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 12: 0:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-4.sjc.telocity.net (mail-4.sjc.telocity.net [216.227.56.44]) by hub.freebsd.org (Postfix) with ESMTP id 0531237B4CF for ; Fri, 24 Nov 2000 12:00:15 -0800 (PST) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-4.sjc.telocity.net (8.9.3/8.9.3) with SMTP id LAA07883; Fri, 24 Nov 2000 11:54:30 -0800 (PST) From: "Otter" To: "Paulo Ricardo Trainini" , Subject: RE: FTP Server with invalid ip Date: Fri, 24 Nov 2000 15:01:56 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <3.0.6.32.19970101014937.007cad20@mail.rede-rs.com.br> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Another possibility might be to install natd on the outside machine, with port redirection pointing to the inside box for ftp links from the outside. man natd for more info. -Otter }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of }Paulo Ricardo }Trainini }Sent: Tuesday, December 31, 1996 10:50 PM }To: freebsd-questions@FreeBSD.ORG }Subject: FTP Server with invalid ip } } }I have the FTP Server (Freebsd 4.1) inside of my network, with the ip }192.168.12.3. It work well for clients connections in intranet, but }connections from clients outside (valids ips) don´t work. I }have installed }the socket-1.1 in firewall (Freebsd 3.3)* to redirect }external ftp clients }connections to internal FTP Server. } }*inetd.conf: }... }ftp stream tcp nowait nobody /usr/local/bin/socket socket }192.168.12.3 ftp }... } }The messages returned to connections from clients outside is: } }$ ftp x.x.x.x (external ip of my firewall) }Connected to x.x.x.x. }220 x.x.x.x FTP server (Version 6.00LS) ready. }Name (x.x.x.x:jonh): }331 Password required for jonh. }Password: }230 User jonh logged in. }Remote system type is UNIX. }Using binary mode to transfer files. }ftp> pwd }257 "/usr/home/jonh" is current directory. }ftp> dir }500 Illegal PORT range rejected. }425 Can't build data connection: Connection refused. } }Do you know what´s happen? } }Thank you for your help. } } Paulo } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of 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 Nov 24 12:11:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from george.he.net (george.he.net [216.218.157.2]) by hub.freebsd.org (Postfix) with ESMTP id 1E09837B4C5 for ; Fri, 24 Nov 2000 12:11:58 -0800 (PST) Received: from wiliweld.com (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by george.he.net (8.8.6/8.8.2) with ESMTP id MAA26909; Fri, 24 Nov 2000 12:11:54 -0800 Message-ID: <3A1ECB09.FDF4CDB8@wiliweld.com> Date: Fri, 24 Nov 2000 12:09:45 -0800 From: Bill Schoolcraft Organization: " UNIX, A Way of Life !!! " X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 i86pc) X-Accept-Language: en MIME-Version: 1.0 To: Krzysztof Parzyszek Cc: Tim McMillen , freebsd-questions@freebsd.org Subject: Re: VMware for FreeBSD ? References: <3A1E015F.5588E6E5@wiliweld.com> <20001124023630.B7169@buchanan-181-249.stures.iastate> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Krzysztof Parzyszek wrote: > > I installed vmware2 from the ports. I can't remember being asked about > anything... > You know, I never thought of that (duh) I went for the tarball. I went and installed vmware2 from /usr/ports/ and when I went to run vmware I received the following error: ELF interperter /lib/ld-linux.so.2 not found I'm pulling some stuff now that will hopefully satisfy this dependency. Apparently the "linux-base" didn't have it. -- Bill Schoolcraft PO Box 210076 San Francisco, CA 94121 "UNIX, A Way of Life !!!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 12:19:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from relay.brno.anet.cz (unknown [194.212.171.11]) by hub.freebsd.org (Postfix) with ESMTP id 16A1E37B479 for ; Fri, 24 Nov 2000 12:19:09 -0800 (PST) Received: from gate.brno.cz (gate.brno.cz [194.108.32.61]) by relay.brno.anet.cz (8.9.3/8.9.3/CESNET) with ESMTP id VAA05417 for ; Fri, 24 Nov 2000 21:19:13 +0100 (CET) Received: from aragorn.reckovice.brno.cz ([10.3.0.6]) by gate.brno.cz (8.9.3/8.9.3/CESNET) with ESMTP id VAA01913 for ; Fri, 24 Nov 2000 21:18:34 +0100 (CET) Received: from informatik (informatik.reckovice.brno.cz [192.168.3.11]) by aragorn.reckovice.brno.cz (8.9.3/8.9.3) with SMTP id VAA00448 for ; Fri, 24 Nov 2000 21:18:33 +0100 (CET) (envelope-from holub@reckovice.brno.cz) Message-ID: <001d01c05653$b73ff430$0b03a8c0@reckovice.brno.cz> From: "Jiri Holub" To: Subject: 4.2 crashes during install Date: Fri, 24 Nov 2000 21:17:23 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, I just tried to install 4.2 release on my FreeBSD server (it's currently still runnig 4.0) as a fresh installation on the new harddisk. The problem is it always freezes - usually while unpacking ports (it always crashes during fist unpacking phase of installation (bin, doc ... ports etc.)). Usually it just freezes but once it said something like: Panic - reserved/trap Buffer syncing 618 619 ... (or some numbers like that and then some message that it failed) Rebooting in 15 seconds (I think it's not exactely that message but I don't remember it and I am not able to reproduce it though I tried many times) The box has following configuration: 2x Celeron 500 MHz Abit BP6 256 MB RAM 1 x 14 GB HDDs on ATA 33 (master - I try to install system on) 4 x 14 GB HDDs on ATA 66 CD-ROM (master on second IDE controller - I'm installing from CD) It is overclocked - but setting the normal nonoverclocked frequency has no effect anyway :-(. Release 4.0 is running without any problem. Has anybody some idea? Many thanks, Jiri --- Odchozí zpráva neobsahuje viry. Zkontrolováno antivirovým systémem AVG (http://www.grisoft.cz). Verze: 6.0.215 / Virová báze: 101 - datum vydání: 16.11. 2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 12:29:18 2000 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 5C49437B4C5 for ; Fri, 24 Nov 2000 12:29:16 -0800 (PST) Received: (from dan@localhost) by dan.emsphone.com (8.11.1/8.11.1) id eAOKTDF13883; Fri, 24 Nov 2000 14:29:13 -0600 (CST) (envelope-from dan) Date: Fri, 24 Nov 2000 14:29:12 -0600 From: Dan Nelson To: Jim DeLisle Cc: "FreeBSD-questions@FreeBSD.ORG" Subject: Re: pthreads library Message-ID: <20001124142912.B2959@dan.emsphone.com> References: <3A1E8EF9.3F0C7582@home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.11i In-Reply-To: <3A1E8EF9.3F0C7582@home.com>; from "Jim DeLisle" on Fri Nov 24 10:53:29 GMT 2000 X-OS: FreeBSD 5.0-CURRENT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In the last episode (Nov 24), Jim DeLisle said: > I'm miffed on where the pthreads libraries are on a FreeBSD 4.0 > install. There seems to be on in the /usr/compat/linux/lib directory, > but I would have thought to have found a FreeBSD native version in > /usr/lib. /usr/lib/libc_r.* are the pthreads libraries. Add the "-pthread" option to your gcc compile and link lines to use them. -- Dan Nelson dnelson@emsphone.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 12:36:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from grumpy.dyndns.org (cm-24-246-28-166.toney.mediacom.ispchannel.com [24.246.28.166]) by hub.freebsd.org (Postfix) with ESMTP id 4B11737B4C5 for ; Fri, 24 Nov 2000 12:36:31 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by grumpy.dyndns.org (8.11.1/8.11.1) with ESMTP id eAOKaTS02370; Fri, 24 Nov 2000 14:36:29 -0600 (CST) (envelope-from dkelly@grumpy.dyndns.org) Message-Id: <200011242036.eAOKaTS02370@grumpy.dyndns.org> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: leoric@home.com Cc: freebsd-questions@FreeBSD.ORG From: David Kelly Subject: Re: cvs tag for 4.2 In-reply-to: Message from leoric@home.com of "Fri, 24 Nov 2000 08:43:32 CST." <3A1E7E94.1D3467CA@home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 24 Nov 2000 14:36:29 -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG leoric@home.com writes: > What cvsup tag should I use to have it fetch 4.2 stable source. I > searched the mailing list archives but I found nothing useful. RELENG_4 for -stable RELENG_4_2_0_RELEASE for -RELEASE -- 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 Nov 24 12:45:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.icehouse.net (mail.icehouse.net [204.203.53.2]) by hub.freebsd.org (Postfix) with ESMTP id 4621337B4C5 for ; Fri, 24 Nov 2000 12:45:08 -0800 (PST) Received: from deimos.walker.dom (ppp-119.icehouse.net [204.203.52.119]) by mail.icehouse.net (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id MAA12509; Fri, 24 Nov 2000 12:45:05 -0800 X-Authentication-Warning: mail.icehouse.net: Host ppp-119.icehouse.net [204.203.52.119] claimed to be deimos.walker.dom Received: from mars.walker.dom (mars.walker.dom. [192.168.0.1]) by deimos.walker.dom (8.11.1/8.11.1) with SMTP id eAOKj3i06165; Fri, 24 Nov 2000 12:45:03 -0800 (PST) (envelope-from kew@icehouse.net) From: Keith Walker Date: Fri, 24 Nov 2000 12:45:03 -0800 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: "Walter C. Pelissero" Cc: questions@freebsd.org Subject: Problem with USB printer MIME-Version: 1.0 Message-Id: <00112412450300.00442@mars.walker.dom> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You wrote: > I'm trying to print to my Epson 860 via USB interface but both with my > FreeBSD 3.4 and 4.0 boxes I just get the printer heads to move (like > reseting) and that's it. Nothing printed. > I'm using /dev/ulpt0 as reported by the bootstrap log. > Does anyone know what I'm doing wrong? > Thanks. Hey, did you ever get your problem resolved with your USB printer? I just bought an Epson 900 with a USB port. Sending any data to the printer will result in the heads "charging" or whatever you call that when they wiggle around, but no printing. I turned on the tracing in the ulpt.c code, and the driver *thinks* it's sending data to the printer, but nothing happens. Hmmm... BTW, this is 4.2-STABLE. -- Keith Walker kew@icehouse.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 12:45:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from comnet.ca (comnet.ca [207.107.47.2]) by hub.freebsd.org (Postfix) with ESMTP id 4EE9C37B4CF; Fri, 24 Nov 2000 12:45:08 -0800 (PST) Received: from spruce (d-25.comnet.ca [207.107.44.25]) by comnet.ca (8.10.0/8.10.0) with SMTP id eAOKj2R24729; Fri, 24 Nov 2000 15:45:06 -0500 (EST) Message-Id: <3.0.5.32.20001124154621.008a4180@205.206.213.2> X-Sender: mkuchta@205.206.213.2 X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.5 (32) Date: Fri, 24 Nov 2000 15:46:21 -0500 To: freebsd-questions@FreeBSD.ORG From: Milan Kuchta Subject: Re: www.freebsd.org website Cc: wosch@FreeBSD.ORG In-Reply-To: References: <3.0.5.32.20001124100813.008abc80@205.206.213.2> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks for your excellent suggestion (which I should have thought of). The traceroutes follow. The problem appears to be after T1-CDROM-00-EX.US.CRL.COM [165.113.118.2]. This is clearly not mine to fix but hopefully whoever is responsible for the freebsd.org domain can get it fixed. BTW. I did realize the site was up since a local friend does not have a problem reaching it (presumably since his ISP goes through some other set of routes totally). Thanks again. Milan Kuchta ---------------> Tracing route to www.freebsd.org [204.216.27.21] over a maximum of 30 hops: 1 141 ms 144 ms 143 ms pm16.comnet.ca [207.107.47.104] 2 145 ms 144 ms 152 ms spr-gateway.comnet.ca [207.107.47.1] 3 151 ms 146 ms 153 ms spc-mon-1-Serial-9-4.Sprint-Canada.Net [207.107. 247.121] 4 169 ms 158 ms 165 ms spc-isp-nitro-01-66.sprint.ca [207.107.254.66] 5 196 ms 158 ms 163 ms sl-gw9-nyc-2-0.sprintlink.net [144.232.173.17] 6 168 ms 184 ms 154 ms sl-bb20-nyc-3-0.sprintlink.net [144.232.7.93] 7 180 ms 168 ms 179 ms sl-bb22-rly-13-0.sprintlink.net [144.232.9.226] 8 175 ms 165 ms 170 ms 144.232.25.214 9 427 ms 191 ms 171 ms sl-e2-mae-0-1-0.sprintlink.net [144.228.10.42] 10 170 ms 163 ms 174 ms mae-e-1.e0.crl.com [192.41.177.104] 11 288 ms 260 ms 273 ms vva1-sfo2.ATM.us.crl.com [165.113.0.253] 12 270 ms 282 ms 263 ms E0-CRL-SFO-03-E0X0.US.CRL.COM [165.113.55.3] 13 294 ms 274 ms 267 ms T1-CDROM-00-EX.US.CRL.COM [165.113.118.2] 14 * * * Request timed out. 15 * Tracing route to www.freebsd.org [204.216.27.21] over a maximum of 30 hops: 1 140 ms 136 ms 135 ms tnt5.ottawa.on.da.uu.net [142.77.230.79] 2 131 ms 138 ms 138 ms dr.t1.tnt5.ottawa.on.da.uu.net [142.77.230.193] 3 137 ms 136 ms 140 ms 121.ATM5-0-0.HR1.TOR2.ALTER.NET [152.63.131.94] 4 1391 ms 1822 ms 1820 ms 101.ATM2-0.XR1.TOR2.ALTER.NET [152.63.128.130] 5 248 ms 144 ms 143 ms 195.ATM3-0.TR1.TOR2.ALTER.NET [152.63.128.38] 6 160 ms 163 ms 160 ms 137.at-7-3-0.TR1.DCA8.ALTER.NET [146.188.141.209 ] 7 169 ms 166 ms 166 ms 197.at-5-0-0.XR1.TCO1.ALTER.NET [152.63.32.189] 8 165 ms 166 ms 166 ms 193.ATM11-0-0.BR2.TCO1.ALTER.NET [146.188.160.89 ] 9 170 ms 164 ms 166 ms mae-e-1.e0.crl.com [192.41.177.104] 10 250 ms 251 ms 250 ms vva1-sfo2.ATM.us.crl.com [165.113.0.253] 11 250 ms 252 ms 247 ms E0-CRL-SFO-03-E0X0.US.CRL.COM [165.113.55.3] 12 253 ms 258 ms 256 ms T1-CDROM-00-EX.US.CRL.COM [165.113.118.2] 13 * * * Request timed out. 14 * * * Request timed out. 15 * * * Request timed out. 16 * * * Request timed out. At 12:29 PM 11/24/00 -0500, Francisco Reyes wrote: >On Fri, 24 Nov 2000, Milan Kuchta wrote: > >> Can you please explain why I can not get to www.freebsd.org > >Chances are that is is a problem on your upstream ISP or somewhere along >the line to that site or some misconfiguration somewhere. I access that >site in one way or another almost every day.. also ftp.freebsd.org. > >I even just tried it a second ago with no problems. > >Try a traceroute (or tracert if on NT) and see where the packets are >getting stuck. > >>If there is a "rational" explanation for these, please have the mirror sites >> include a "please read this" link. > >Unless you see MANY other people complaining about the same problem more >often than not these connectivity problems are on the user's computer or >ISP. On the rare cases when Freebsd.org has problems you usually see >several messages to that regard from different people. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 13: 9:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-1.sjc (mail-1.sjc.telocity.net [216.227.56.41]) by hub.freebsd.org (Postfix) with ESMTP id 876AC37B4CF; Fri, 24 Nov 2000 13:09:20 -0800 (PST) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-1.sjc (8.9.3/8.9.3) with SMTP id NAA06296; Fri, 24 Nov 2000 13:07:33 -0800 (PST) From: "Otter" To: "Ben Lutgens" , , Subject: RE: PCCARD config question Date: Fri, 24 Nov 2000 16:12:58 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 In-Reply-To: <20001124140919.B6405@socrates.sistina.com> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks Ben! After installing 4.2-R (I should have stated this earlier) I had all this with one exception: where you show the line with device pcic1. By default, mine was the same as yours, but with a "disable" at the end of the line. Removing that word and rebuilding the kernel, and of course rebooting, made everything come together. Thanks for pointing that out! Just one more question: Is there a way to make rc pause for 10 seconds or so after calling rc.pccard before setting up the network? -Otter }-----Original Message----- }From: Ben Lutgens [mailto:blutgens@sistina.com] }Sent: Friday, November 24, 2000 3:09 PM }To: Otter }Subject: Re: PCCARD config question } } }On Fri, Nov 24, 2000 at 02:51:12PM -0500, Otter wrote: }>I just got a laptop (Toshiba 330CDS) and have a pccard which worked }>for ftp install, but after the reboot, won't work now. I realize the }>install automated the enabling of the device, but I need to }set it up }>so it's found at boot or at least so I can manually start the NIC. }>It's a 3com 3CXFE574BT, found on the install as an "ep" device. I've }>got the default/generic kernel, so no device support has }been removed. }>At boot time, I can see it tries to ifconfig the device, }but there is }>a message about "device ep does not exist". Shortly before }that, I see }>an error message stating "/dev/card0: device not }configured". What am } }Sounds to me like you need to recompile your kernel. Make }sure the lines }for the card devices are in there. I run 4.2-STABLE and have }device card }device pcic0 at isa? irq 0 port 0x3e0 iomem 0xd0000 }device pcic1 at isa? irq 0 port 0x3e2 iomem 0xd4000 } }>i missing? There are entries for card0-3 in my /dev. I haven't found }>much in the way of documentation for this, other than searching the }>mailing list and reading the man page for pccard.conf. Any }info would }>be greatly appreciated. Please Cc: me in the reply as I'm not }>subscribed to -mobile. TIA. }>-Otter }> }> }> }> }>To Unsubscribe: send mail to majordomo@FreeBSD.org }>with "unsubscribe freebsd-mobile" in the body of 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 Nov 24 13:31:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from implode.root.com (root.com [209.102.106.178]) by hub.freebsd.org (Postfix) with ESMTP id 0406937B4C5; Fri, 24 Nov 2000 13:31:48 -0800 (PST) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.8/8.8.5) with ESMTP id NAA23041; Fri, 24 Nov 2000 13:30:41 -0800 (PST) Message-Id: <200011242130.NAA23041@implode.root.com> To: Milan Kuchta Cc: freebsd-questions@FreeBSD.ORG, wosch@FreeBSD.ORG Subject: Re: www.freebsd.org website In-reply-to: Your message of "Fri, 24 Nov 2000 15:46:21 EST." <3.0.5.32.20001124154621.008a4180@205.206.213.2> From: David Greenman Reply-To: dg@root.com Date: Fri, 24 Nov 2000 13:30:41 -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >Thanks for your excellent suggestion (which I should have thought >of). The traceroutes follow. The problem appears to be >after T1-CDROM-00-EX.US.CRL.COM [165.113.118.2]. This is clearly >not mine to fix but hopefully whoever is responsible for the >freebsd.org domain can get it fixed. > >BTW. I did realize the site was up since a local friend >does not have a problem reaching it (presumably since his ISP goes >through some other set of routes totally). > >Thanks again. > >Milan Kuchta > >---------------> > >Tracing route to www.freebsd.org [204.216.27.21] With this information, the reason it is not working is pretty obvious. For some reason, you're getting the wrong IP address. www.freebsd.org has not been at the above address for several months now. The correct address is: [implode:dg] host www.freebsd.org www.freebsd.org is a nickname for freefall.FreeBSD.org freefall.FreeBSD.org has address 216.136.204.21 freefall.FreeBSD.org mail is handled (pri=10) by hub.FreeBSD.org ...which is located at Yahoo's facilities. -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 Fri Nov 24 13:33:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost01.reflexnet.net (mailhost01.reflexnet.net [64.6.192.82]) by hub.freebsd.org (Postfix) with ESMTP id D8B5A37B4CF for ; Fri, 24 Nov 2000 13:33:18 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Fri, 24 Nov 2000 13:31:44 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAOLX8F77050; Fri, 24 Nov 2000 13:33:08 -0800 (PST) (envelope-from cjc) Date: Fri, 24 Nov 2000 13:33:08 -0800 From: "Crist J . Clark" To: Frank Bonnet Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Which crypto package works with NIS ? Message-ID: <20001124133308.R12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: <200011241642.eAOGgVo23599@bart.esiee.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200011241642.eAOGgVo23599@bart.esiee.fr>; from bonnetf@bart.esiee.fr on Fri, Nov 24, 2000 at 05:42:31PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 24, 2000 at 05:42:31PM +0100, Frank Bonnet wrote: > Hi > > I'm wondering which crypto package I would choose > at 4.2-RELEASE in order to have a working NIS > client ? > > We use NIS for passwd and aliases distribution > and I've read in FreeBSD documentation that NIS > works only with DES package. > > What is the alternative solution ? This is about interoperability. If you are using NIS on Sun machines and want to also include FreeBSD platforms on the NIS domain, you need to use DES since Sun's use DES. As for alternative solutions, I don't think there is any reason you actually cannot use non-DES passwords with NIS among a group of FreeBSD machines. If the NIS code does not handle it now (and I don't see why it wouldn't), it would be pretty easy to make the changes. However, once you start mixing different OSes, you are going to need to be careful that they all are using the same passowrd scheme. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 13:54: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from buchanan-181-249.stures.iastate.edu (buchanan-181-249.stures.iastate.edu [129.186.181.249]) by hub.freebsd.org (Postfix) with ESMTP id E552F37B4C5 for ; Fri, 24 Nov 2000 13:54:03 -0800 (PST) Received: (from kparz@localhost) by buchanan-181-249.stures.iastate.edu (8.11.1/8.11.1) id eAOLuvf11676; Fri, 24 Nov 2000 15:56:57 -0600 (CST) (envelope-from kparz) Date: Fri, 24 Nov 2000 15:56:57 -0600 From: Krzysztof Parzyszek To: Bill Schoolcraft Cc: Tim McMillen , freebsd-questions@freebsd.org Subject: Re: VMware for FreeBSD ? Message-ID: <20001124155657.A10072@buchanan-181-249.stures.iastate> References: <3A1E015F.5588E6E5@wiliweld.com> <20001124023630.B7169@buchanan-181-249.stures.iastate> <3A1ECB09.FDF4CDB8@wiliweld.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <3A1ECB09.FDF4CDB8@wiliweld.com>; from bill@wiliweld.com on Fri, Nov 24, 2000 at 12:09:45PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 24, 2000 at 12:09:45PM -0800, Bill Schoolcraft wrote: > > I went and installed vmware2 from /usr/ports/ and when I went to run > vmware I received the following error: > > ELF interperter /lib/ld-linux.so.2 not found > > I'm pulling some stuff now that will hopefully satisfy this dependency. > Apparently the "linux-base" didn't have it. That's strange. Let's see... $ cat /var/db/pkg/linux_base-6.1/+CONTENTS | grep ld-linux lib/ld-linux.so.1 lib/ld-linux.so.1.9.5 lib/ld-linux.so.2 Apparently my linux-base has it... Interesting thing is that at my computer vmware is linked statically: $ ldd `which vmware` ldd: /usr/local/bin/vmware: not a dynamic executable Maybe there are some installation options. I can't remember now. :( I know that I first installed it on 4.1-S and forgot about it for a while. Then I upgraded to 4.1.1-S and vmware didn't want to run, so I reinstalled it anew. It has worked since then (now I'm using 4.2-R). -- ,oPq J --- Krzysztof Parzyszek 10/15/2000 1:29am --- 7 `8oP' --- Abandon the search for Truth; settle for a good fantasy. --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 14: 3:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from intranet.com.mx (intranet.com.mx [200.33.246.7]) by hub.freebsd.org (Postfix) with ESMTP id F401D37B4C5 for ; Fri, 24 Nov 2000 14:03:48 -0800 (PST) Received: from piii (200.33.246.4) by intranet.com.mx with SMTP (Eudora Internet Mail Server 3.0) for ; Fri, 24 Nov 2000 16:03:43 -0600 Message-Id: <3.0.6.32.20001124155951.00a8fa00@intranet.com.mx> X-Sender: jbiquez@intranet.com.mx X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Fri, 24 Nov 2000 15:59:51 -0600 To: freebsd-questions@freebsd.org From: Jorge Biquez Subject: Re: Just BSD Chuky :-) In-Reply-To: <20001124125218.A20828@linux.rainbow> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG just great!. Any idea on what did they use to do it? JB At 12:52 p.m. 24/11/00 +0300, you wrote: >Sorry, but I have just found nice link :-) > >http://www.gonzo.kiev.ua/bsd.html > >-- >Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", >Sochi, Russia >http://www.brainbench.com/transcript.jsp?pid=304744 > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of 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 Nov 24 14:11: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from nw175.netaddress.usa.net (nw175.netaddress.usa.net [204.68.24.75]) by hub.freebsd.org (Postfix) with SMTP id 7257637B4C5 for ; Fri, 24 Nov 2000 14:10:59 -0800 (PST) Received: (qmail 29340 invoked by uid 60001); 24 Nov 2000 22:10:55 -0000 Message-ID: <20001124221055.29339.qmail@nw175.netaddress.usa.net> Received: from 204.68.24.75 by nw175 for [132.206.124.203] via web-mailer(34FM.0700.4.03) on Fri Nov 24 22:10:55 GMT 2000 Date: 24 Nov 00 17:10:55 EST From: MUSSAI KAILESH To: freebsd-questions@FreeBSD.ORG Subject: X-Mailer: USANET web-mailer (34FM.0700.4.03) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Sir/Madam, I would very much like to know if I can program in Java on freeBSD and use the compiler of Sun . Thanking you in advance , Yours faithfully, Kailesh Mussai ____________________________________________________________________ Get free email and a permanent address at http://www.netaddress.com/?N=3D= 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 14:15:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 67D4137B4CF for ; Fri, 24 Nov 2000 14:15:52 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAOMFpG29132; Fri, 24 Nov 2000 14:15:51 -0800 (PST) Date: Fri, 24 Nov 2000 14:15:51 -0800 From: Alfred Perlstein To: MUSSAI KAILESH Cc: freebsd-questions@FreeBSD.ORG Subject: Re: your mail Message-ID: <20001124141550.F8051@fw.wintelcom.net> References: <20001124221055.29339.qmail@nw175.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: <20001124221055.29339.qmail@nw175.netaddress.usa.net>; from kailesh@usa.net on Fri, Nov 24, 2000 at 05:10:55PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * MUSSAI KAILESH [001124 14:11] wrote: > Dear Sir/Madam, > I would very much like to know if I can program in Java on > freeBSD and use the compiler of Sun . see /usr/ports/java -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 14:17:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bsd1.alaptech.com (cable-225-4-237-24.anchorageak.net [24.237.4.225]) by hub.freebsd.org (Postfix) with ESMTP id 9E96B37B4C5 for ; Fri, 24 Nov 2000 14:17:36 -0800 (PST) Received: (from kirk@localhost) by bsd1.alaptech.com (8.11.0/8.9.3) id eAOME5R55875; Fri, 24 Nov 2000 13:14:05 -0900 (AKST) (envelope-from kirk) Date: Fri, 24 Nov 2000 13:14:05 -0900 From: Kirk Brogdon To: Jeremy Vandenhouten Cc: freebsd-questions@freebsd.org Subject: Re: DNS & Bind Book [Was Re: Mailserver] Message-ID: <20001124131405.B35669@bsd1.alaptech.com> References: <2cd6d82cc3e5.2cc3e52cd6d8@marquette.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <2cd6d82cc3e5.2cc3e52cd6d8@marquette.edu>; from jeremy.vandenhouten@marquette.edu on Thu, Nov 23, 2000 at 08:54:39AM -0600 DisOrganization: ALAP Technology - Chugiak, AK USA Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Nov 23, 2000 at 08:54:39AM -0600, Jeremy Vandenhouten wrote: > > best is get the cricket book called "DNS and BIND" from amazon.com > > or your > > local bookstore. > > If you're looking for this book, the cheapest I've found it anywhere > was 21.50 US from daemonnews.org in the specials section of the mall. > Amazon and Barnes and Noble don't even come close at almost 30 US. > > This book is a definite keeper, so if you don't have it, you might want > to pick it up for the fact that it just happens to be that "cheap." > > I found this a few months back at Barnes & Noble in the bargain bin for 9.95! I couldn't believe it. It's easily one of the best books I own. You never know what they are going to throw out there. Kirk > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- ALAP Technology PO Box 672298 Chugiak, AK - USA 99567 (907) 688 8843 www.alaptech.com Specializing in Open Source Solutions To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 14:21: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hood.tvd.be (hood.tvd.be [195.162.196.21]) by hub.freebsd.org (Postfix) with ESMTP id A529737B479 for ; Fri, 24 Nov 2000 14:20:58 -0800 (PST) Received: from sakajimo (cable-195-162-212-130.upc.chello.be [195.162.212.130]) by hood.tvd.be (8.9.3/8.9.3/RELAY-1.1) with SMTP id XAA14133 for ; Fri, 24 Nov 2000 23:20:56 +0100 (MET) From: Raphael Bauduin Date: Fri, 24 Nov 2000 23:41:26 +0100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: freebsd-questions@FreeBSD.ORG Subject: open source developers meeting MIME-Version: 1.0 Message-Id: <00112423412603.00319@sakajimo> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! I hope I send this mail to the right address. If not, could you tell me who could be interested in this? I'm organising an open source developers meeting, and it would be interesting to have some freebsd present. It will happen in Brussels the 3rd and 4th february 2001 just after the linux-expo in Paris, so if you are there, it shouldn't be a problem to come over to Brusselsx and if you don't go to Paris, we would be happy to have you in Brussels anyway :-) A very basic website is at http://www.raphinou.com with a mailing list, and an apply form (this is not organised by a corporation, the .com was easier to remember for my friends.... :-) If you need more info, you can contact me at rb@raphinou.com so I can mail you a document explaining what will hapen and who's coming (confirmed are: Jeremy Allison-Samba, David Faure-KDE, Kevin Lawton-Plex86,Mathieu LAcage-Gnome, Peter De Schrijver-Embedded Linux, Ami Gangula-Midgard, Phil Thomson-Veepee, fyodor told me he would come too) Thanks for your interest! Raph -- Open Source and Free Software Developers Meeting 3rd and 4th february 2001, Brussels Visit http://www.raphinou.com and subscribe to the mailing list! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 14:23: 3 2000 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 30CA937B479 for ; Fri, 24 Nov 2000 14:23:01 -0800 (PST) Received: from [209.197.153.199] ([209.197.153.199]) by smtp2.cybersurf.net (Netscape Messaging Server 4.15) with SMTP id G4JVIA00.0F1; Fri, 24 Nov 2000 15:22:58 -0700 From: "Duke Normandin" <01031149@3web.net> To: Mike Meyer Date: Fri, 24 Nov 2000 08:14:18 mst7mst MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: best upgrade path? Reply-To: 01031149@3web.net Cc: questions@freebsd.org X-mailer: Pegasus Mail v3.50 Message-Id: <20001124222301.30CA937B479@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 22 Nov 00 at 20:36, Mike Meyer wrote: >thursday@altavista.net types: >> Hi, >> >> I have a FreeBSD 3.3-RELEASE machine which I'm considering upgrading to >> 4.2-RELEASE. >> >> I'm wondering what the best upgrade path is: whether to use the "Upgrade" >> method provided in /stand/sysinstall, or whether to wipe out the hard >> drive and do a completely fresh install from scratch. > >Wipe the hard drive (or at least everything fs that install is going >to touch) and do a fresh install. The upgrade stuff is relatively >painless, but it doesn't safe very much time. Did you mean reformating the HDD in DOS when you wrote "wipe the hard drive" above - or something more Unix-centric? Thanks.... -duke Calgary,Alberta, Canada To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 14:38: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 0312637B4C5 for ; Fri, 24 Nov 2000 14:37:57 -0800 (PST) Received: (qmail 98694 invoked by uid 100); 24 Nov 2000 22:37:56 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14878.60867.961436.82467@guru.mired.org> Date: Fri, 24 Nov 2000 16:37:55 -0600 (CST) To: 01031149@3web.net Cc: questions@freebsd.org Subject: Re: best upgrade path? In-Reply-To: <131222714@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Duke Normandin <01031149@3web.net> types: > On 22 Nov 00 at 20:36, Mike Meyer wrote: > >thursday@altavista.net types: > >> Hi, > >> I have a FreeBSD 3.3-RELEASE machine which I'm considering upgrading to > >> 4.2-RELEASE. > >> I'm wondering what the best upgrade path is: whether to use the "Upgrade" > >> method provided in /stand/sysinstall, or whether to wipe out the hard > >> drive and do a completely fresh install from scratch. > >Wipe the hard drive (or at least everything fs that install is going > >to touch) and do a fresh install. The upgrade stuff is relatively > >painless, but it doesn't safe very much time. > Did you mean reformating the HDD in DOS when you wrote "wipe the hard drive" > above - or something more Unix-centric? Thanks.... Well, that would do it. I was thinking more along the lines of using the Unix newfs on the file systems. Assuming you've set things up so you have FreeBSD partitions (some combo of /, /usr, /var and maybe /usr/local) and a local content partition (call it /home) do a level 0 dump of the FreeBSD partitions, as you're about to destroy them. A printed ls of /var/db/pkg will be useful, and a level 0 of /home is probably a good idea. During the install, don't change the DOS slices or the partitions. Use the old FreeBSD partitions, and set the newfs flag so that those file system gets reformatted during the install. Just mount /home, don't newfs it. While doing the install, the ls of /var will tell you what packages you had installed so you can install current versions. If you don't have your local content on a separate partion, now is a good time to fix that. ; Fri, 24 Nov 2000 14:42:42 -0800 (PST) Received: from computer - 63.28.216.204 by email.msn.com with Microsoft SMTPSVC; Fri, 24 Nov 2000 14:42:38 -0800 Received: by localhost with Microsoft MAPI; Fri, 24 Nov 2000 14:42:38 -0800 Message-ID: <01C05624.CAEFD2E0.groversonnier@msn.com> From: Grover Sonnier To: "'questions@freebsd.org'" Subject: User ID and Password Date: Wed, 22 Nov 2000 23:09:49 -0800 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 X-Loop: FreeBSD.ORG I have forgotten my user name and password and don't know how to get into the system to make a change. I would greatly appreciate your help. It's taken me about a week to install the program and now I cannot get into the darn thing. If I would frustrated it's because I am. I will be patiently awaiting your help. Frustrated and Waiting Grover To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 14:53:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gw.carpoolbc.com (cr45465-a.abtsfd1.bc.wave.home.com [24.113.176.126]) by hub.freebsd.org (Postfix) with ESMTP id 0E76D37B4C5 for ; Fri, 24 Nov 2000 14:53:49 -0800 (PST) Received: from localhost (roop@localhost) by gw.carpoolbc.com (8.11.1/8.9.3) with ESMTP id eAOMsIb61582; Fri, 24 Nov 2000 14:54:18 -0800 (PST) (envelope-from roop@gw.carpoolbc.com) Date: Fri, 24 Nov 2000 14:54:18 -0800 (PST) From: Roop Nanuwa To: Grover Sonnier Cc: "'questions@freebsd.org'" Subject: Re: User ID and Password In-Reply-To: <01C05624.CAEFD2E0.groversonnier@msn.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Look at: http://www.freebsd.org/FAQ/admin.html#FORGOT-ROOT-PW This will let you change the password for root... if you have just forgotten a user password (but you know the root password) you can 'su' in as root, and then type: >passwd with replaced with the forgetten password user... RSN On Wed, 22 Nov 2000, Grover Sonnier wrote: > I have forgotten my user name and password and don't know how to get into > the system to make a change. I would greatly appreciate your help. It's > taken me about a week to install the program and now I cannot get into the > darn thing. If I would frustrated it's because I am. I will be patiently > awaiting your help. > > Frustrated and Waiting > > Grover > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 24 14:59:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from iteso.mx (iteso.mx [148.201.1.4]) by hub.freebsd.org (Postfix) with ESMTP id C9C0137B4C5 for ; Fri, 24 Nov 2000 14:59:35 -0800 (PST) Received: from eric (customer11-181.telmex.net.mx [148.233.11.181] (may be forged)) by iteso.mx (8.11.1/8.11.1) with SMTP id eAOMwdZ90229; Fri, 24 Nov 2000 16:58:39 -0600 (CST) (envelope-from eric@iteso.mx) Message-ID: <010801c0566a$33cbf2e0$4d011c0a@delacruz.avis.com.mx> Reply-To: "Eric De La Cruz Lugo" From: "Eric De La Cruz Lugo" To: "Grover Sonnier" , "'questions@freebsd.org'" References: <01C05624.CAEFD2E0.groversonnier@msn.com> Subject: RE: User ID and Password Date: Fri, 24 Nov 2000 16:58:53 -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.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Just a question. Did you tried using the root user name?, if you installed the OS, the first username you use is allways "root" (with out the quotes) the password in your case most be something important to you in order to remember it all the time. if everything fails, try to boot as a single user, at the boot prompt write: boot -s then mount your partitions and edit the password file in order to erase the password for "root". if you don´t know how to mount or edit that password, its time to start reading the handbook in http://www.freebsd.org/handbook Eric De La Cruz Lugo Merida, Yucatan, Mexico The Maya Land. ----- Original Message ----- From: Grover Sonnier To: 'questions@freebsd.org' Sent: Thursday, November 23, 2000 1:09 AM Subject: User ID and Password > I have forgotten my user name and password and don't know how to get into > the system to make a change. I would greatly appreciate your help. It's > taken me about a week to install the program and now I cannot get into the > darn thing. If I would frustrated it's because I am. I will be patiently > awaiting your help. > > Frustrated and Waiting > > Grover > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 24 15: 6:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from george.he.net (george.he.net [216.218.157.2]) by hub.freebsd.org (Postfix) with ESMTP id 3FCB337B661 for ; Fri, 24 Nov 2000 15:06:30 -0800 (PST) Received: from wiliweld.com (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by george.he.net (8.8.6/8.8.2) with ESMTP id PAA09985; Fri, 24 Nov 2000 15:06:25 -0800 Message-ID: <3A1EF3F0.11D085EA@wiliweld.com> Date: Fri, 24 Nov 2000 15:04:16 -0800 From: Bill Schoolcraft Organization: " UNIX, A Way of Life !!! " X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 i86pc) X-Accept-Language: en MIME-Version: 1.0 To: Krzysztof Parzyszek Cc: Tim McMillen , freebsd-questions@FreeBSD.ORG Subject: Re: VMware for FreeBSD ? References: <20001124023403.A7169@buchanan-181-249.stures.iastate> <20001124124414.A8686@buchanan-181-249.stures.iastate> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Krzysztof Parzyszek wrote: > Mine only says something about the mouse, but it's nothing > critical. Try to create a fresh configuration and see if it fails > again. Well, now I'm at the point where vmware is looking for "insmod" -- Bill Schoolcraft PO Box 210076 San Francisco, CA 94121 "UNIX, A Way of Life !!!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 15:13:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mint.nl.gxn.net (mint.nl.gxn.net [62.100.30.37]) by hub.freebsd.org (Postfix) with ESMTP id 64A8737B4C5 for ; Fri, 24 Nov 2000 15:13:52 -0800 (PST) Received: from hotbot.com(asd-tel-ap01-d12-148.dial.freesurf.nl[62.100.11.148]) (1193 bytes) by mint.nl.gxn.net via sendmail with P:esmtp/R:inet_hosts/T:smtp (sender: ) id for ; Sat, 25 Nov 2000 00:13:45 +0100 (MET) (Smail-3.2.0.106-3 1999-Mar-31 #11 built DST-Sep-7) Message-ID: <39803B5E.4D0ACD68@hotbot.com> Date: Thu, 27 Jul 2000 14:38:38 +0100 From: Tom Otermans X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.4.0-test11 alpha) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: booting 4.1AXP Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I'm new to freebsd, and trying to go from debian linux to freebsd. Exept that I'm facing a problem during booting the 4.1AXP cd. The system is getting as far as setting up SCSI drives and comes back with: Panic: init must be set up first and automaticly reboots it. I'm using a DEC 3300 server (noritake), no exotic hardware (just the basic system, eth and on board vga) and I boot via SRM. Linux works and boots without problems. I've tried to boot the system via floppy, but also without any succes, I get a trap error back which is too long to write down in 15 seconds..... Well has anyone got suggestions ? Thanks for your time, Tom Otermans, student electronics To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 15:34:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.west.se (unknown [194.52.130.37]) by hub.freebsd.org (Postfix) with ESMTP id 1646B37B479 for ; Fri, 24 Nov 2000 15:34:22 -0800 (PST) Received: from west.se (bashful [192.168.0.14]) by mail.west.se (8.11.0/8.9.3) with ESMTP id eAONYDs87573; Sat, 25 Nov 2000 00:34:13 +0100 (CET) (envelope-from bjorn.tornqvist@west.se) Message-ID: <3A1EFB31.33288BDC@west.se> Date: Sat, 25 Nov 2000 00:35:13 +0100 From: Bjorn Tornqvist Organization: West AB X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Julian Elischer Cc: questions@freebsd.org Subject: Re: any ways to look at powerpoint slides? References: <3A1EFA3F.5EEEE620@elischer.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [moved to -questions were it belongs] StarOffice (a "somewhat" compliant MS Office suite) You can install it like this (as root): cd /usr/ports/textproc/staroffice52 make install Julian Elischer wrote: > > I have looked in the ports xlhtml seems to extract out the text > but it's not exactly easy to see what is in the ppt slides. > > I've seen ppt presentations moved to some free S/W at usenix and BSDcon.. > how was that done? > > -- > __--_|\ Julian Elischer > / \ julian@elischer.org > ( OZ ) World tour 2000 > ---> X_.---._/ presently in: Budapest > v > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hackers" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 15:41:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from swan.prod.itd.earthlink.net (swan.prod.itd.earthlink.net [207.217.120.123]) by hub.freebsd.org (Postfix) with ESMTP id CBA1037B4C5 for ; Fri, 24 Nov 2000 15:41:56 -0800 (PST) Received: from bsdbox.gregory.earthlink.net (1Cust89.tnt2.warrenton.va.da.uu.net [63.20.83.89]) by swan.prod.itd.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id PAA13415; Fri, 24 Nov 2000 15:41:25 -0800 (PST) Date: Fri, 24 Nov 2000 18:41:24 -0500 (EST) From: freebsduser X-Sender: freebsduser@bsdbox.gregory.earthlink.net To: Francisco Reyes Cc: freebsd-questions@FreeBSD.ORG Subject: Re: SFT-III like for FreeBSD? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Does FreeBSD have an IP failover solution? I could really use one. Scott On Fri, 24 Nov 2000, Francisco Reyes wrote: > On Fri, 24 Nov 2000, Igor' Robul' wrote: > > > Is there anything for FreeBSD like SFT-III for Netware servers? > > No. The closest you can get is a failover solution which makes two > computer work with one IP and when the primary fails the secondary picks > up. This solution however does not handle data synchronization between the > two machines like SFT III it only handles allowing the secondary to start > responding. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 15:55:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rmx602-mta.mail.com (rmx602-mta.mail.com [165.251.48.51]) by hub.freebsd.org (Postfix) with ESMTP id 0F28137B4C5 for ; Fri, 24 Nov 2000 15:55:24 -0800 (PST) Received: from web597-mc (web597-mc.mail.com [165.251.48.98]) by rmx602-mta.mail.com (8.9.3/8.9.3) with SMTP id SAA02482 for ; Fri, 24 Nov 2000 18:55:23 -0500 (EST) Message-ID: <384182977.975110123189.JavaMail.root@web597-mc> Date: Fri, 24 Nov 2000 18:55:23 -0500 (EST) From: Overdog McNabab To: questions@freebsd.org Subject: Is FreeBSD billable? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: mail.com X-Originating-IP: 216.244.25.177 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG http://bill_able.tripod.com/index.html ______________________________________________ FREE Personalized Email at Mail.com Sign up at http://www.mail.com/?sr=signup To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 16:15:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from destro.newdream.net (newdream.net [207.155.21.2]) by hub.freebsd.org (Postfix) with ESMTP id 1A8EE37B479 for ; Fri, 24 Nov 2000 16:15:29 -0800 (PST) Received: from hq.newdream.net (jazz.hq.newdream.net [216.246.35.141]) by destro.newdream.net (8.9.3/8.9.3/Debian/GNU) with ESMTP id QAA29644 for ; Fri, 24 Nov 2000 16:15:23 -0800 Message-ID: <3A1F05AA.89000FEC@hq.newdream.net> Date: Fri, 24 Nov 2000 16:19:54 -0800 From: Will Yardley Organization: New Dream Network 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: Re: DNS & Bind Book [Was Re: Mailserver] References: <2cd6d82cc3e5.2cc3e52cd6d8@marquette.edu> <20001124131405.B35669@bsd1.alaptech.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I know that this isn't specifically applicable to FreeBSD, but Liunx DNS Server Administration by Craig Hunt is also very useful (and almost all of the information is applicable to BSD based systems as well). I have both; I think the Craig Hunt one is a little more useful since it pretty much only concentrates on Bind 8. -will Kirk Brogdon wrote: > > On Thu, Nov 23, 2000 at 08:54:39AM -0600, Jeremy Vandenhouten wrote: > > > best is get the cricket book called "DNS and BIND" from amazon.com > > > or your > > > local bookstore. > > > > If you're looking for this book, the cheapest I've found it anywhere > > was 21.50 US from daemonnews.org in the specials section of the mall. > > Amazon and Barnes and Noble don't even come close at almost 30 US. > > > > This book is a definite keeper, so if you don't have it, you might want > > to pick it up for the fact that it just happens to be that "cheap." > > > > > I found this a few months back at Barnes & Noble in the bargain bin > for 9.95! I couldn't believe it. It's easily one of the best books > I own. You never know what they are going to throw out there. > > Kirk > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > -- > ALAP Technology > PO Box 672298 > Chugiak, AK - USA 99567 > (907) 688 8843 > www.alaptech.com > > Specializing in Open Source Solutions > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 24 16:31:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 3D23F37B4D7 for ; Fri, 24 Nov 2000 16:31:10 -0800 (PST) Received: (qmail 1312 invoked by uid 100); 25 Nov 2000 00:31:08 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14879.2124.559429.607850@guru.mired.org> Date: Fri, 24 Nov 2000 18:31:08 -0600 (CST) To: "Erik Rothwell" Cc: questions@freebsd.org Subject: Re: AUDIO PROBLEM: Only 1 user can hear sound. In-Reply-To: <129088838@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Erik Rothwell types: > I got my audio working, fine, I thought. Until I added more users to the system. > > I have the K7T Pro motherboard from MSI which features that neat VIA chipset with the onboard audio. . . so, I compiled device pcm into my kernel and, although it didn't work at first, it seemed to correct itself (I did nothing but it started working) and off I was happy as a bird, yadda yadda. Please put newlines in your text every 70 characters or so; it makes your mail easier to deal with for people with RFC-compliant mailers. > But then, when I added user accounts for my roommates, I came to the horrible discovery that *sound does not work for them.* > > It's not a multiple users at one time issue, it's just, a single-user at a time, still, no sound. Well, without error messages, the best that can be done is a guess. My guess is that other users don't have permission to use the device files for the audio subsystem. ; Fri, 24 Nov 2000 16:39:45 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Fri, 24 Nov 2000 16:38:13 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAP0dLE78301; Fri, 24 Nov 2000 16:39:21 -0800 (PST) (envelope-from cjc) Date: Fri, 24 Nov 2000 16:39:21 -0800 From: "Crist J . Clark" To: Overdog McNabab Cc: questions@FreeBSD.ORG Subject: Re: Is FreeBSD billable? Message-ID: <20001124163921.U12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: <384182977.975110123189.JavaMail.root@web597-mc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <384182977.975110123189.JavaMail.root@web597-mc>; from overdog@chemist.com on Fri, Nov 24, 2000 at 06:55:23PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 24, 2000 at 06:55:23PM -0500, Overdog McNabab wrote: > http://bill_able.tripod.com/index.html Don't use underscores in domain names. What is this supposed to point to? -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 16:51:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tidal.wave.net (unknown [198.68.31.227]) by hub.freebsd.org (Postfix) with ESMTP id D0C3437B479 for ; Fri, 24 Nov 2000 16:51:28 -0800 (PST) Received: from jj ([208.7.50.47]) by tidal.wave.net (8.9.3/8.9.3) with SMTP id QAA77310 for ; Fri, 24 Nov 2000 16:51:26 -0800 (PST) (envelope-from chuckw@wave.net) From: "Chuck" To: Subject: Am I going to have to switch to LINUX? Date: Fri, 24 Nov 2000 16:50:26 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I need help... Here's my dilemma... I have a server that was running some chat scripts written in perl... They were running on FreeBSD 2.2.7 just fine... I got the idea to upgrade my hardware and software to FreeBSD 4.1... I get an error every time I try to send 2 things to the chat daemon at once... It causes an error that said "Accept : bad file descriptor" ... Here is what the code that sets up the chat daemon looks like... Afterward this is the script that sends the chat messages to the chat daemon... Is there any variable that I need to set that is different between the versions... If I send one request to the chat deamon at a time it works fine... If I send more than one thing to it the chat daemon crashes... I'm about to give up and use a different operating system... Chuck... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ chatd (perl script) # # Get socket stuff ready to listen for messages # unlink($socket_path); socket(CHAT,$AF_UNIX,$SOCK_STREAM,0) || die "socket: $!"; bind(CHAT, pack($sockaddr_un, $AF_UNIX, $socket_path)) || die "bind: $!\n"; listen(CHAT,5) || die "listen: $!"; select(CHAT); $| = 1; select(NS); $| = 1; select(STDOUT); # # The Big Loop # while (1) { print "Waiting for connection..." if $verbose; ACCEPT: { if (!accept(NS,CHAT)) { # probably got interrupted from a HUP for a reload if ($! =~ /^Int/) { redo ACCEPT; } # or, maybe they just want us dead, or error else { die "accept: $!\n"; } } } # # Child does all the dirty work # if (($child = fork) == 0) { local($message, $forum, $writer); print "got one!\n" if $verbose; # command comes in as a null-separated list of arguments chop($_ = ); local($command, $forum, $writer) = split(/\0/); while () { $message .= $_; } close(NS); if ($verbose) { print "COMMAND $command, FORUM $forum, WRITER $writer\n"; print "WROTE: $message\n\n"; } if ($command eq 'TALK') { &announce($forum, $writer, $message); } elsif ($command =~ /^WHISPER (\d+)/) { &whisper($forum, $1, $writer, $message); } elsif ($command eq 'LEAVE' ) { &announce_exit($forum, $writer, $message); } exit(0); } waitpid(-1, 0); close(NS); } ## ## Subroutines ## # # Make me a daemon # sub daemonize { local($pid); FORK: { if ($pid = fork) { &drop_pid($pid) || die "Could not write pid to file $pidfile\n"; print "Chat Daemon started at pid $pid\n"; exit(0); } elsif (defined $pid) {;} # child...continues from here elsif ($! =~ /No more process/) { sleep 5; redo FORK; } else { return 0; # can't fork } } return 1; } # # Signal handler. Cleans up after the daemon and quits. # sub handler { local($sig) = @_; print "Caught SIG$sig, cleaning up and quitting...\n"; unlink($socket_path, $pidfile); exit(0); } # # Do a reload of the data files after a HUP signal. # sub reload { print "\n\nReloading data...\n\n"; do "$chatdir/chat-defs.pl"; } ## ## end of chatd ## ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ chat-subs.pl (perl script) # Send a command to the chat daemon. Needs forum, writer number, and # a message to send. # sub chat { local($command, $forum, $writer, $message) = @_; if (socket(S,$AF_UNIX,$SOCK_STREAM,0) && connect(S,pack($sockaddr_un,$AF_UNIX,$socket_path))) { select(S); $| = 1; select(STDOUT); print S "$command\0$forum\0$writer\n"; print S $message; close(S); } else { print <$server Chat Error: Could not connect $background

Error: Could not connect to Chat Daemon

Use the "back" button on your browser to return to the previous page and try again. If this error persists for over 15 minutes, please e-mail me $chatmaster regarding this error.

EOH exit(0); } } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 17: 2:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id 4E75737B4D7; Fri, 24 Nov 2000 17:02:06 -0800 (PST) To: FreeBSD-questions@FreeBSD.org Subject: "The Complete FreeBSD", third edition: errata and addenda Message-Id: <20001125010206.4E75737B4D7@hub.freebsd.org> Date: Fri, 24 Nov 2000 17:02:06 -0800 (PST) From: grog@FreeBSD.ORG (Greg Lehey) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk 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 Nov 24 17: 2:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id 2B3BC37B479; Fri, 24 Nov 2000 17:02:06 -0800 (PST) To: FreeBSD-questions@FreeBSD.org Subject: How to get best results from FreeBSD-questions Message-Id: <20001125010206.2B3BC37B479@hub.freebsd.org> Date: Fri, 24 Nov 2000 17:02:06 -0800 (PST) From: grog@FreeBSD.ORG (Greg Lehey) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk 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 Nov 24 17: 3: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id 6317737B4F9; Fri, 24 Nov 2000 17:02:06 -0800 (PST) To: FreeBSD-questions@FreeBSD.org Subject: "The Complete FreeBSD", second edition: errata and addenda Message-Id: <20001125010206.6317737B4F9@hub.freebsd.org> Date: Fri, 24 Nov 2000 17:02:06 -0800 (PST) From: grog@FreeBSD.ORG (Greg Lehey) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk 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 Nov 24 17:25:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from george.he.net (george.he.net [216.218.157.2]) by hub.freebsd.org (Postfix) with ESMTP id 1CEB337B4C5 for ; Fri, 24 Nov 2000 17:25:11 -0800 (PST) Received: from wiliweld.com (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by george.he.net (8.8.6/8.8.2) with ESMTP id RAA21042; Fri, 24 Nov 2000 17:25:06 -0800 Message-ID: <3A1F1471.B5A7F7D4@wiliweld.com> Date: Fri, 24 Nov 2000 17:22:57 -0800 From: Bill Schoolcraft Organization: " UNIX, A Way of Life !!! " X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 i86pc) X-Accept-Language: en MIME-Version: 1.0 To: Krzysztof Parzyszek Cc: Tim McMillen , freebsd-questions@freebsd.org Subject: Re: VMware for FreeBSD ? References: <3A1E015F.5588E6E5@wiliweld.com> <20001124023630.B7169@buchanan-181-249.stures.iastate> <3A1ECB09.FDF4CDB8@wiliweld.com> <20001124155657.A10072@buchanan-181-249.stures.iastate> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Krzysztof Parzyszek wrote: > > On Fri, Nov 24, 2000 at 12:09:45PM -0800, Bill Schoolcraft wrote: > > > > I went and installed vmware2 from /usr/ports/ and when I went to run > > vmware I received the following error: > > > > ELF interperter /lib/ld-linux.so.2 not found > > > > I'm pulling some stuff now that will hopefully satisfy this dependency. > > Apparently the "linux-base" didn't have it. > > That's strange. Let's see... > > $ cat /var/db/pkg/linux_base-6.1/+CONTENTS | grep ld-linux > lib/ld-linux.so.1 > lib/ld-linux.so.1.9.5 > lib/ld-linux.so.2 > > Apparently my linux-base has it... > > Interesting thing is that at my computer vmware is linked statically: > > $ ldd `which vmware` > ldd: /usr/local/bin/vmware: not a dynamic executable > I found that on mine, maybe it wasn't in the $PATH during the build ? Anyway, here is my ldd output. su-2.04# ldd `which vmware` /usr/bin/vmware: /lib/libNoVersion.so.1 => /lib/libNoVersion.so.1 (0x2823c000) libm.so.6 => /lib/libm.so.6 (0x28241000) libdl.so.2 => /lib/libdl.so.2 (0x2825d000) libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x28260000) libXtst.so.6 => /usr/X11R6/lib/libXtst.so.6 (0x28304000) libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x28309000) libXi.so.6 => /usr/X11R6/lib/libXi.so.6 (0x28315000) libXt.so.6 => /usr/X11R6/lib/libXt.so.6 (0x2831e000) libXp.so.6 => /usr/X11R6/lib/libXp.so.6 (0x2836a000) libXpm.so.4 => /usr/X11R6/lib/libXpm.so.4 (0x28371000) libXmu.so.6 => /usr/X11R6/lib/libXmu.so.6 (0x2837e000) libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x28391000) libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x283a8000) libc.so.6 => /lib/libc.so.6 (0x283b2000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x28229000) But I'm still having vmware complain looking for "insmod" -- Bill Schoolcraft PO Box 210076 San Francisco, CA 94121 "UNIX, A Way of Life !!!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 17:27:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f211.law7.hotmail.com [216.33.237.211]) by hub.freebsd.org (Postfix) with ESMTP id CE88F37B4CF for ; Fri, 24 Nov 2000 17:27:14 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 24 Nov 2000 17:27:14 -0800 Received: from 24.15.178.198 by lw7fd.law7.hotmail.msn.com with HTTP; Sat, 25 Nov 2000 01:27:14 GMT X-Originating-IP: [24.15.178.198] From: "Wayne Leriche" To: freebsd-questions@FreeBSD.ORG Subject: Install problem Date: Sat, 25 Nov 2000 01:27:14 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 25 Nov 2000 01:27:14.0745 (UTC) FILETIME=[D77BB290:01C0567E] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG can anyone shed some light on why my Free BSD won't install? I keep getting to the point where is is building the root directory - Blue screen says "making a new root filesystem on /dev/rad2s1a" then the hard drive just hangs (light is lit) for hours. the PC is an intel Celeron 333 with 98Mb Ram. Can anyone help, this is a CD install from the "BSD Power pak" ver 4.0 dated March 2000 thanks Wleriche@hotmail.com _____________________________________________________________________________________ Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 17:40:10 2000 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 A460737B4D7 for ; Fri, 24 Nov 2000 17:40:06 -0800 (PST) Received: from [209.197.153.99] ([209.197.153.99]) by smtp2.cybersurf.net (Netscape Messaging Server 4.15) with SMTP id G4K4MR00.ELX; Fri, 24 Nov 2000 18:40:03 -0700 From: "Duke Normandin" <01031149@3web.net> To: igorr@crosswinds.net Date: Fri, 24 Nov 2000 15:48:31 mst7mst MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: 3.3R <--> win95 Reply-To: 01031149@3web.net Cc: freebsd-questions@freebsd.org X-mailer: Pegasus Mail v3.50 Message-Id: <20001125014006.A460737B4D7@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 24 Nov 00 at 10:44, Igor' Robul' wrote: >Hello, Duke > >On Thu, Nov 23, 2000 at 11:42:50PM +0000, Duke Normandin wrote: >> I want the following: >> 3.3R win95 ISP >> >> I *have* to use win95 to connect to my ISP. Win95 won't route so I'm >> pooched as far as connecting to my ISP from the FBSD box - I think. >> >> So, for the moment, all I want is an ethernet connection between the two >> boxes. Should I disable tun0 in rc.conf? Can't the "lo0, tun0 and ep0 >> co-exist? I thought that "routed" was suppose to do just that. What >Disable tun0. You don't need it. >Also, make sure you have made correct crossover. The crossover custom (professionally) made and pre-tested. So I'm relying on that. Do I comment out the following in rc.conf to disable tun0:? if_config_tun0="" and remove tun0 from the following:? network_interface="lo0 tun0 ep0" Why would I *have* to do that? What if I wanted to use a modem on tun0 *and* ep0 for my LAN? Should I not be able to use both, with ppp "bound" to tun0 only, or does ppp drive the packets on ethernet as well? I'm so confused, I wouldn't know sh*t from Shine-Olla anymore ;,) Thanks... -duke Calgary,Alberta, Canada To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 17:40:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from satan.freebsdsystems.com (satan.freebsdsystems.com [24.69.168.5]) by hub.freebsd.org (Postfix) with ESMTP id 9B41437B4CF for ; Fri, 24 Nov 2000 17:40:06 -0800 (PST) Received: from satan.freebsdsystems.com (satan.freebsdsystems.com [24.69.168.5]) by satan.freebsdsystems.com (8.11.1/8.11.0) with ESMTP id eAP1e1h17545; Fri, 24 Nov 2000 20:40:01 -0500 (EST) Date: Fri, 24 Nov 2000 20:40:01 -0500 (EST) From: Lanny Baron To: Otter Cc: leoric@home.com, freebsd-questions@FreeBSD.ORG Subject: RE: cvs tag for 4.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 X-Loop: FreeBSD.ORG Hi, Well I just had 4.1-STABLE installed, and only cd'ed to /usr/src and did make update, then make world, followed by kernel config. And presto, it runs actually faster than before :-) Thanks for the reply Otter. Lanny On Fri, 24 Nov 2000, Otter in the last wild and more than exciting episode...: >The tag=RELENG_4 that got you to 4.2-BETA will now take you to >4.2-STABLE (since Nov. 20/21) if you cvsup and make world, kernel, >etc. >-Otter > > >}-----Original Message----- >}From: owner-freebsd-questions@FreeBSD.ORG >}[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of >}leoric@home.com >}Sent: Friday, November 24, 2000 11:01 AM >}To: Lanny Baron >}Cc: freebsd-questions@FreeBSD.ORG >}Subject: Re: cvs tag for 4.2 >} >} >}My current version is 4.2 Beta >} >}Lanny Baron wrote: >} >}> What is your current version? >}> >}> Lanny >}> >}> On Fri, 24 Nov 2000, leoric@home.com in the last wild and >}more than...: >}> >}> >What cvsup tag should I use to have it fetch 4.2 stable source. I >}> >searched the mailing list archives but I found nothing useful. >}> > >}> > >}> > >}> >To Unsubscribe: send mail to majordomo@FreeBSD.org >}> >with "unsubscribe freebsd-questions" in the body of the message >}> > >}> >}> To Unsubscribe: send mail to majordomo@FreeBSD.org >}> with "unsubscribe freebsd-questions" in the body of the message >} >} >} >}To Unsubscribe: send mail to majordomo@FreeBSD.org >}with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 17:40:18 2000 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 DEA2437B4F9 for ; Fri, 24 Nov 2000 17:40:11 -0800 (PST) Received: from [209.197.153.99] ([209.197.153.99]) by smtp2.cybersurf.net (Netscape Messaging Server 4.15) with SMTP id G4K4MX00.TJU; Fri, 24 Nov 2000 18:40:09 -0700 From: "Duke Normandin" <01031149@3web.net> To: Mike Meyer Date: Fri, 24 Nov 2000 15:56:57 mst7mst MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: 3.3R boot manager Reply-To: 01031149@3web.net Cc: questions@freebsd.org X-mailer: Pegasus Mail v3.50 Message-Id: <20001125014011.DEA2437B4F9@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 24 Nov 00 at 12:58, Mike Meyer wrote: >Duke Normandin <01031149@3web.net> types: >> Hi...again >> wd0 = DOS wd1=3.3R >> Some &^%$*ing how, I installed a boot manager on *both* drives. At >> boot-time I get F1 DOS F5 Freebsd. I hit F5, then I get another menu >> F1 Freebsd F5 (I can't remember). I of course want to keep the wd0 >> boot manager. How do I nuke the boot manager on wd1 -- or is the above >> the correct behavior? Thanks... > >It's correct under the conditions you described, and some people >prefer it (since you can then go back to the other drive). See the man >page for fdisk to see how to install a standard boot manager on a >drive, and boot0cfg for how to install the booteasy boot manager. > > ; Fri, 24 Nov 2000 17:40:30 -0800 (PST) Received: from d-ppp14.zssm.zp.ua (d-ppp14.zssm.zp.ua [212.8.32.78]) by lexx.zssm.zp.ua (8.9.2/8.9.2) with ESMTP id DAA20972 for ; Sat, 25 Nov 2000 03:39:49 +0200 (EET) Date: Sat, 25 Nov 2000 03:38:52 +0200 From: Chirikba X-Mailer: The Bat! (v1.47 Halloween Edition) UNREG / CD5BF9353B3B7091 Reply-To: Chirikba X-Priority: 3 (Normal) Message-ID: <17313702202.20001125033852@chirikba.zssm.zp.ua> To: freebsd-questions@FreeBSD.ORG Subject: What about 2.2.8 Stable? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello! Could you tell me where I can download version 2.2.8 stable. It doesn't seem to be present on any FTP sites. Is it still available on the Internet? -- Best regards, Chirikba mailto:chirikba@chirikba.zssm.zp.ua To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 17:41:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from resnetnt.resnet.uconn.edu (resnet.resnet.uconn.edu [137.99.156.20]) by hub.freebsd.org (Postfix) with ESMTP id 225AE37B4C5 for ; Fri, 24 Nov 2000 17:41:40 -0800 (PST) Received: by resnetnt.resnet.uconn.edu with Internet Mail Service (5.5.2650.21) id ; Fri, 24 Nov 2000 20:39:28 -0500 Message-ID: <9F36E367710D474E9806AA393FE737FB019ED4@resnetnt.resnet.uconn.edu> From: Peter Lai To: "'Crist J . Clark '" , 'Overdog McNabab ' Cc: "'questions@FreeBSD.ORG '" Subject: RE: Is FreeBSD billable? Date: Fri, 24 Nov 2000 20:39:25 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG spam... -----Original Message----- From: Crist J . Clark To: Overdog McNabab Cc: questions@FreeBSD.ORG Sent: 11/24/2000 7:39 PM Subject: Re: Is FreeBSD billable? On Fri, Nov 24, 2000 at 06:55:23PM -0500, Overdog McNabab wrote: > http://bill_able.tripod.com/index.html Don't use underscores in domain names. What is this supposed to point to? -- 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 18:17:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from henry.noproblem.net (unknown [195.172.128.80]) by hub.freebsd.org (Postfix) with SMTP id D361037B4C5 for ; Fri, 24 Nov 2000 18:17:42 -0800 (PST) Received: (qmail 92155 invoked from network); 25 Nov 2000 02:13:27 -0000 Received: from 41-47.surf.dial.plus.net (HELO james) (212.159.47.41) by henry.noproblem.net with SMTP; 25 Nov 2000 02:13:27 -0000 Reply-To: From: "Thomas Beauchamp" To: Subject: Message Board package Date: Sat, 25 Nov 2000 02:17:40 -0000 Message-ID: <000001c05685$e2d93a20$0101a8c0@james> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! I am looking for a message board GNU licensed package. Should be able to register users, post messages, track answers and threads. Pointers please! Thomas Beauchamp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 18:37:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from SMTP.Network-Alchemy.COM (Hydrogen.Network-Alchemy.COM [199.46.17.130]) by hub.freebsd.org (Postfix) with SMTP id 78E7237B4C5 for ; Fri, 24 Nov 2000 18:37:39 -0800 (PST) Received: from cips.nokia.com ([172.16.7.2]) by Hydrogen.Network-Alchemy.COM via INTERNET ; Fri, 24 Nov 2000 18:37:38 PST Message-ID: <3A1F264C.7EE54F32@cips.nokia.com> Date: Fri, 24 Nov 2000 18:39:08 -0800 From: "Michael J. Ruhl" X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: netscape hang Content-Type: multipart/mixed; boundary="------------D0A82096B7B88CAF9B36461D" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------D0A82096B7B88CAF9B36461D Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Howdy, I just cvsup to 4.2-STABLE. Everything was hunky dory until I ran Netscape. When I run Netscape, it will load my home page, and then "hang". Looking at top, I see that Netscape is using 99% of the cpu. This happened with 4.75 and 4.76. Can anybody shed some light on why this might be occuring? Thanks! Mike --------------D0A82096B7B88CAF9B36461D Content-Type: text/x-vcard; charset=us-ascii; name="mruhl.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for Michael J. Ruhl Content-Disposition: attachment; filename="mruhl.vcf" begin:vcard n:Ruhl;Michael J. x-mozilla-html:FALSE adr:;;;;;; version:2.1 email;internet:mruhl@cips.nokia.com fn:Michael J. Ruhl end:vcard --------------D0A82096B7B88CAF9B36461D-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 19:12:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web5301.mail.yahoo.com (web5301.mail.yahoo.com [216.115.106.110]) by hub.freebsd.org (Postfix) with SMTP id 3849237B4C5 for ; Fri, 24 Nov 2000 19:12:48 -0800 (PST) Message-ID: <20001125031248.918.qmail@web5301.mail.yahoo.com> Received: from [162.42.8.255] by web5301.mail.yahoo.com; Fri, 24 Nov 2000 19:12:47 PST Date: Fri, 24 Nov 2000 19:12:47 -0800 (PST) From: george vagner Subject: simple tech modem (pcmcia) help To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I never used the pccard stuff before but now i have a brandy new laptop and need to figure out how to configure it correctly. i have a simpletech pcmcia card installed because the internal modem is detected as follows and a minicom connection to it freezes the machine totally. sio0: configured irq 4 not in bitmap of probed irqs 0 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 8250 the laptop is a Toshiba 2805. the pccard stuff detects my modem card as bieng on sio4 but cuaa4 and sio4 dont exist in /dev so i tried to create new one in the kernel but the kernel make failed with sio4 not declared. maybe i need to use a different device to connect to but i dont know where to go from here. where can i get info on how to figure this out. I was able to get X going at 1024x768 with this savage IX/MX card, it only took me a week... I really would like to use the internal modem since it seems to detect something is there but i am afraid it might be a winmodem variant of some sort. __________________________________________________ Do You Yahoo!? Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.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 Nov 24 19:14:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ash25.adelaide.on.net (ash25.internode.on.net [203.16.214.248]) by hub.freebsd.org (Postfix) with ESMTP id 339EA37B4CF for ; Fri, 24 Nov 2000 19:14:16 -0800 (PST) Received: from zen.dodsworth.org ([203.26.95.225]) by internode.on.net (PMDF V5.2-32 #42627) with ESMTP id <01JWYJNJ5ZGQ00J8EU@internode.on.net> for freebsd-questions@freebsd.org; Sat, 25 Nov 2000 13:47:25 +0930 Date: Sat, 25 Nov 2000 13:44:45 +0000 (GMT) From: marcd@internode.on.net Subject: Installing to a new drive from existing sources To: freebsd-questions@freebsd.org Message-id: MIME-version: 1.0 X-Mailer: XFMail 1.4.0 on FreeBSD Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 8bit X-Priority: 3 (Normal) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi I currently have 4.2Beta on my system (currently building 4.2-RELEASE). Anyway I want to install FreeBSD onto another hard disk that will go into a second system. Is there anyway that I can do the install using the src that I have compiled? without having to go through and do an install of an older version first? (I though I had seen a mention of make release somewhere but can't see it mentioned in the makefile options). Thanx in Advance Marc ---------------------------------- E-Mail: marcd@internode.on.net Date: 25-Nov-00 Time: 13:40:25 ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 19:16:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from buchanan-181-249.stures.iastate.edu (buchanan-181-249.stures.iastate.edu [129.186.181.249]) by hub.freebsd.org (Postfix) with ESMTP id 4AAEA37B479 for ; Fri, 24 Nov 2000 19:16:35 -0800 (PST) Received: (from kparz@localhost) by buchanan-181-249.stures.iastate.edu (8.11.1/8.11.1) id eAP3JTZ12674; Fri, 24 Nov 2000 21:19:29 -0600 (CST) (envelope-from kparz) Date: Fri, 24 Nov 2000 21:19:29 -0600 From: Krzysztof Parzyszek To: Bill Schoolcraft Cc: Tim McMillen , freebsd-questions@freebsd.org Subject: Re: VMware for FreeBSD ? Message-ID: <20001124211929.A12645@buchanan-181-249.stures.iastate> References: <3A1E015F.5588E6E5@wiliweld.com> <20001124023630.B7169@buchanan-181-249.stures.iastate> <3A1ECB09.FDF4CDB8@wiliweld.com> <20001124155657.A10072@buchanan-181-249.stures.iastate> <3A1F1471.B5A7F7D4@wiliweld.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <3A1F1471.B5A7F7D4@wiliweld.com>; from bill@wiliweld.com on Fri, Nov 24, 2000 at 05:22:57PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 24, 2000 at 05:22:57PM -0800, Bill Schoolcraft wrote: > [...] > But I'm still having vmware complain looking for "insmod" Hmmm... I'm running out of ideas here... Can you just try to install vmware from scratch using ports (vmware2)? This may seem stupid, but I guess that's what I would do. Good luck! -- ,oPq J --- Krzysztof Parzyszek 10/15/2000 1:29am --- 7 `8oP' --- Abandon the search for Truth; settle for a good fantasy. --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 19:39: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 873F337B479 for ; Fri, 24 Nov 2000 19:38:55 -0800 (PST) Received: by static.unixfreak.org (Postfix, from userid 1000) id 496D01F2F; Fri, 24 Nov 2000 19:38:55 -0800 (PST) Subject: Re: Installing to a new drive from existing sources In-Reply-To: "from marcd@internode.on.net at Nov 25, 2000 01:44:45 pm" To: marcd@internode.on.net Date: Fri, 24 Nov 2000 19:38:55 -0800 (PST) Cc: freebsd-questions@freebsd.org From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001125033855.496D01F2F@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Hi > > I currently have 4.2Beta on my system (currently building 4.2-RELEASE). > > Anyway I want to install FreeBSD onto another hard disk that will go into > a second system. > > Is there anyway that I can do the install using the src that I have compiled? > without having to go through and do an install of an older version first? (I > though I had seen a mention of make release somewhere but can't see > it mentioned in the makefile options). `make release` is implemented in src/release/Makefile, but it doesn't provide step-by-step instructions (at least it didn't last time I looked at it). Maybe somebody else will be nice enough to guide you through it, but that's where it is in case you want to try to figure it out yourself. Hope this helps -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. If two wrongs don't make a right, try three! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 19:45:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from empty1.ekahuna.com (empty1.ekahuna.com [205.178.102.196]) by hub.freebsd.org (Postfix) with ESMTP id A2EBA37B4CF for ; Fri, 24 Nov 2000 19:45:50 -0800 (PST) Received: from pc-02 (pc02.ekahuna.com [205.178.102.197]) by empty1.ekahuna.com (Post.Office MTA v3.5.3 release 223 ID# 0-0U10L2S100V35) with ESMTP id com for ; Fri, 24 Nov 2000 19:45:50 -0800 From: "Philip J. Koenig" Organization: The Electric Kahuna Organization To: questions@FreeBSD.ORG Date: Fri, 24 Nov 2000 19:45:49 -0800 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: 4.2 upgrade problems Reply-To: pjklist@ekahuna.com Message-ID: <3A1EC56D.6061.140DBBB@localhost> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Trying to upgrade a 4.1-RELEASE system to 4.2-RELEASE. (Skip down to paragraph 10 to cut to the chase if you like) Downloaded the iso image, burned the CD, mounted it on the machine and determined everything was readable. Diskspace is at a bit of a premium on this machine so I don't have sources installed on it by default. I decided to use /stand /sysinstall to do a binary upgrade. (once again the installation program drives me nuts) In the UPGRADE.TXT it suggests to always use the version of sysinstall that comes with the new release.. but I can't find a file with that name anywhere! Nowhere on the CD, and nowhere on any of the floppies. (I created kern.flop, mfsroot.flp and fixit.flp from the CD just to check. Is it part of the kernel or something?) So I used the existing sysinstall. Asked me the usual questions (I really wish there was better descriptions in the install utility about what the distributions actually *contain*, ie what are "local additions"? Also there is no indication in the utility about whether it is imperative that you select everything you had previously installed) I selected to install from CD, it appeared to backup the existing configuration OK, but when it went to start copying files it said something like "this disk doesn't look like a FreeBSD disk, or perhaps it was an older one without a version number. Did I want to use the disk anyway?" (the disk was already mounted and I was able to access the data on it fine from another console window) I figured this had something to do with my "home-grown" CD, ie a label issue, so I told it to go ahead. Then it said it couldn't find or access the distributions etc., brought up dialog boxes which asked me if I wanted to retry (for each distribution) which didn't work, so I ended up cancelling these error boxes. All the while I could go to another console window, login and access the CD fine. Then it cheerfully told me that it was all installed, it copied the previous configuration files back to /etc, and to reboot when I wanted to run it. But nothing had been copied to the HD. In the root directory I had kernel.prev and kernel.GENERIC but no kernel. I tried installing some distributions by using the shell scripts in the directories, that went OK. But I realized none of the configuration files had been updated, etc. To make a long story short I figured out to copy /kernel.GENERIC to /kernel, and installed the other files manually. I had to manually compare the new files copied to /etc by the bin distribution to my old files and made various changes. After a lot of time and to my great surprise, it actually booted. But I have the following remaining problems: - None of the files in /stand were updated. Even weirder, when I go into that directory all the filenames are 1729520 bytes. If I run sysinstall and tell it to display release notes for this version, it shows the ones for 4.1. - I had copied the passwd, master.passwd files back to /etc but it didn't seem to recognize them. Then tried copying pwd.db and spwd.db too. Root had no password. I fixed that with passwd, but I had to use chpass to remove the password on a regular user and then let them re-enter a password in order for them to login. - I have no idea what other settings might be scattered outside of /etc that I need to ensure are updated, or whether I need to re- install other packages because of the upgrade. Advice appreciated.. -- Philip J. Koenig pjklist@ekahuna.com Electric Kahuna Systems -- Computers & Communications for the New Millenium To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 20:12: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from grumpy.dyndns.org (cm-24-246-28-166.toney.mediacom.ispchannel.com [24.246.28.166]) by hub.freebsd.org (Postfix) with ESMTP id 84AF137B479 for ; Fri, 24 Nov 2000 20:11:55 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by grumpy.dyndns.org (8.11.1/8.11.1) with ESMTP id eAP4BiS39344; Fri, 24 Nov 2000 22:11:44 -0600 (CST) (envelope-from dkelly@grumpy.dyndns.org) Message-Id: <200011250411.eAP4BiS39344@grumpy.dyndns.org> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: marcd@internode.on.net Cc: freebsd-questions@FreeBSD.ORG From: David Kelly Subject: Re: Installing to a new drive from existing sources In-reply-to: Message from marcd@internode.on.net of "Sat, 25 Nov 2000 13:44:45 GMT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 24 Nov 2000 22:11:44 -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcd@internode.on.net writes: > Hi > > I currently have 4.2Beta on my system (currently building 4.2-RELEASE). > > Anyway I want to install FreeBSD onto another hard disk that will go into > a second system. > > Is there anyway that I can do the install using the src that I have compiled? > without having to go through and do an install of an older version first? (I > though I had seen a mention of make release somewhere but can't see it mentioned > in the makefile options). It may be that "make installworld" does not do a 100% complete install. I forget. Seems like it (used to?) skip /stand/ for instance. As others have suggested you can take your current compiled sources one step further with "cd /usr/src/release; make release" but there are several more parameters needed, and the vn device has to be in your running kernel (its not in GENERIC). Release will build the exact files one would find on a CDROM, short of the precompiled ports. One way to achieve your goal would be to use dump piped into restore to simply copy your running system to the slices on the other drive then move that drive to the other machine. # dump -0af - / | ( cd /mnt/; restore -rf - ) # dump -0af - /var | ( cd /mnt/var; restore -rf - ) # dump -0af - /usr | ( cd /mnt/usr; restore -rf - ) Then again, its not such a bad idea to use "make buildworld" on the new machine as a stress test to make sure its working. -- 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 Nov 24 20:48:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f214.law7.hotmail.com [216.33.237.214]) by hub.freebsd.org (Postfix) with ESMTP id B4A9237B4CF for ; Fri, 24 Nov 2000 20:48:20 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 24 Nov 2000 20:48:20 -0800 Received: from 63.27.239.101 by lw7fd.law7.hotmail.msn.com with HTTP; Sat, 25 Nov 2000 04:48:20 GMT X-Originating-IP: [63.27.239.101] Reply-To: degraz@tusco.net From: "Travis Troyer" To: freebsd-questions@FreeBSD.ORG Subject: Editing fstab when system won't boot? Date: Sat, 25 Nov 2000 04:48:20 -0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 25 Nov 2000 04:48:20.0527 (UTC) FILETIME=[EF3FEBF0:01C0569A] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I edited my fstab file to mount a second hard drive I have. I made a mistake, typing "/dec" instead of "/dev", now the system will not boot. I remember having a problem like this before, and somehow I got into a mode, even though the os wouldn't load, where I typed "edit" and it allowed me to edit the file, and reboot.. I absolutely cannot remember, or find how I did this. Anybody have any ideas? Also, this is another problem I have fixed awhile ago, but forgot how :) When I connect to telnet or the ftp server, it takes forever for the login to come up. Before I was told to comment out a line, I beleive, that had to do with resoliving the hostname? Any help with either problem would be appreciated. Thanks, travis troyer _____________________________________________________________________________________ Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 20:55: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fremont.bolingbroke.com (adsl-216-102-90-210.dsl.snfc21.pacbell.net [216.102.90.210]) by hub.freebsd.org (Postfix) with ESMTP id C80CC37B4C5 for ; Fri, 24 Nov 2000 20:55:03 -0800 (PST) Received: from fremont.bolingbroke.com (fremont.bolingbroke.com [216.102.90.210]) by fremont.bolingbroke.com (Switch-2.1.0/Switch-2.1.0) with ESMTP id eAP4t3p23704 for ; Fri, 24 Nov 2000 20:55:03 -0800 (PST) Date: Fri, 24 Nov 2000 20:55:03 -0800 (PST) From: Ken Bolingbroke To: freebsd-questions@FreeBSD.ORG Subject: DigiBoard support in 4.2-STABLE? In-Reply-To: <200011250411.eAP4BiS39344@grumpy.dyndns.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a 16-port DigiBoard that I've been using under FreeBSD 2.x and 3.x, most recently 3.5-STABLE. I just upgraded to 4.2-STABLE, and now the DigiBoard doesn't work. dmesg shows: dgb0: PC/Xe 64K dgb0 at port 0x220-0x223 iomem 0xfc000-0x10bfff on isa0 dgb0: BIOS download failed dgb0: driver is using old-style compatability shims Any hints on what I need I need to do to get the DigiBoard working? Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 21: 9:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id 51F2137B4C5 for ; Fri, 24 Nov 2000 21:09:27 -0800 (PST) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id VAA08923; Fri, 24 Nov 2000 21:06:12 -0800 Message-ID: <3A1F48C4.89CE0EB3@urx.com> Date: Fri, 24 Nov 2000 21:06:12 -0800 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: degraz@tusco.net Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Editing fstab when system won't boot? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Travis Troyer wrote: > > I edited my fstab file to mount a second hard drive I have. I made a > mistake, typing "/dec" instead of "/dev", now the system will not boot. I > remember having a problem like this before, and somehow I got into a mode, > even though the os wouldn't load, where I typed "edit" and it allowed me to > edit the file, and reboot.. I absolutely cannot remember, or find how I did > this. Anybody have any ideas? The last time I did this, I did a "mount /" from the console in single user mode, edited the fstab with vi and rebooted. > > Also, this is another problem I have fixed awhile ago, but forgot how :) > When I connect to telnet or the ftp server, it takes forever for the login > to come up. Before I was told to comment out a line, I beleive, that had to > do with resoliving the hostname? It might be reverse DNS where the machine you are starting the session from is not in the host's DNS table. I usually pass my /etc/hosts table around to all of the computers, since there aren't enough to justify starting named. Kent > > Any help with either problem would be appreciated. > > Thanks, > > travis troyer > _____________________________________________________________________________________ > Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 21:19:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web10306.mail.yahoo.com (web10306.mail.yahoo.com [216.136.130.84]) by hub.freebsd.org (Postfix) with SMTP id 2908737B479 for ; Fri, 24 Nov 2000 21:19:11 -0800 (PST) Message-ID: <20001125051911.19410.qmail@web10306.mail.yahoo.com> Received: from [205.216.162.34] by web10306.mail.yahoo.com; Fri, 24 Nov 2000 21:19:11 PST Date: Fri, 24 Nov 2000 21:19:11 -0800 (PST) From: donny garcia Subject: help with liraries... To: FreeBSD-Questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi . im new to freebsd. i used to use linux, but decided to switch.straight off the bat ive been having trouble with my libraries.can anyone tell me what ports this file, libgtk-1.2.so.0, is in and anymore libraries that i should install to have be running smooth. For example, i installed gtk and glib to use with ymessenger.ive done a lot of string searches and cant seem to really find anything that specifically helps with libraries. Thanks in advance. d __________________________________________________ Do You Yahoo!? Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.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 Nov 24 21:20:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www.erohard.com (unknown [64.23.8.38]) by hub.freebsd.org (Postfix) with ESMTP id D4EBC37B479 for ; Fri, 24 Nov 2000 21:20:44 -0800 (PST) Received: (from nobody@localhost) by www.erohard.com (8.9.3/8.9.3) id MAA18934; Sat, 25 Nov 2000 12:20:23 -0500 Date: Sat, 25 Nov 2000 12:20:23 -0500 Message-Id: <200011251720.MAA18934@www.erohard.com> From: free-pix@erohard.com To: questions@FreeBSD.ORG Reply_to: free-pix@erohard.com Subject: $BFCJLL5NA$4>7BT(B ALL FREE PIX JAPANESE CHERRIES! (November) Content-Transfer-Encoding: 7bit Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG +++++++++++++++ Free Japanese girl pics present site +++++++++++++++++ +++++++++++++++++++++++++ free-pix.net ++++++++++++++++++++++++++ To cancel your subscription please click on the link below: http://www.free-pix.net/rejectmail.html Information registration URL http://www.free-pix.net/calender/ New Amateurs Just Added. Japanese Amateur Pages Is Filled With Hot Teens! Free-Pix valuable URL *************************************** http://free-pix.net/dynamic/ http://free-pix.net/a_vijin/ http://free-pix.net/pic1999/enter.html *************************************** <><><><><><><><><><><><>Check!!<><><><><><><><><><><><> ******* http://www.vovoweb.com/ol/ ********** ******* http://www.vovoweb.com/teens/ ******* ******* http://www.vovoweb.com/sm/ ********** <><><><><><><><><><><><>Check!!<><><><><><><><><><><><> _____________________________________________________________________ All contents are copyrighted (c) FREE PIX.NET Inc. _____________________________________________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 21:27:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from c004.sfo.cp.net (c004-h005.c004.sfo.cp.net [209.228.14.76]) by hub.freebsd.org (Postfix) with SMTP id 1A3C837B4C5 for ; Fri, 24 Nov 2000 21:27:52 -0800 (PST) Received: (cpmta 8948 invoked from network); 24 Nov 2000 21:27:51 -0800 Received: from kaging221.august.net (HELO kaginginc.com) (64.90.32.221) by smtp.namezero.com (209.228.14.76) with SMTP; 24 Nov 2000 21:27:51 -0800 X-Sent: 25 Nov 2000 05:27:51 GMT Message-ID: <3A1F4DFC.C26134B8@kaginginc.com> Date: Fri, 24 Nov 2000 23:28:28 -0600 From: Kevin Greenidge X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: "freebsd-questions@FreeBSD.ORG" Subject: Cyrix 6x86 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I Installed FreeBSD 4.1.1 on my Cyrix 6x86 200Mhz and the system thinks it's a 486-class cpu. I recompiled my kernel and 486 optimization is the only cpu option it would accept when the installation of linux that I had on this box previously saw it as a "586". Could there be something I'm missing? Thanks, Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 21:38:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www3.pacific-pages.com (www3.pacific-pages.com [192.41.48.219]) by hub.freebsd.org (Postfix) with ESMTP id 5B4B737B479 for ; Fri, 24 Nov 2000 21:38:45 -0800 (PST) Received: from d.tracker ([216.191.60.24]) by www3.pacific-pages.com (8.8.5) id WAA11099; Fri, 24 Nov 2000 22:38:24 -0700 (MST) Received: (from david@localhost) by d.tracker (8.9.3/8.9.3) id AAA00520 for questions@freebsd.org; Sat, 25 Nov 2000 00:37:37 -0500 (EST) (envelope-from david) Date: Sat, 25 Nov 2000 00:37:37 -0500 (EST) From: David Banning Message-Id: <200011250537.AAA00520@d.tracker> To: questions@freebsd.org Subject: web hosting with a dynamic IP address question Reply-To: david@banning.com Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I would like to call into my computer and access it like a web host from somewhere else on the web. My thought is that this should be possible if my IP address is known. Since my dynamic IP address changes on every dialup, would it not be possible for my FreeBSD machine to, following connection do some inquiry into what my IP address is, then have FreeBSD copy the IP address to my external WEB site, where I could have a link/script that takes the address and guides me into my home server? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 21:43:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id C2B5A37B4C5 for ; Fri, 24 Nov 2000 21:43:33 -0800 (PST) Received: by heorot.1nova.com (Postfix, from userid 1000) id 8BB3B18A0; Thu, 23 Nov 2000 22:07:05 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 7B9DD189F for ; Thu, 23 Nov 2000 22:07:05 +0000 (GMT) Date: Thu, 23 Nov 2000 22:07:05 +0000 (GMT) From: Rick Hamell To: FreeBSD-questions Subject: 3.4 and 4.1 differences? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ok, so I've got 4.1 installed on my gateway machine, this exact hardware was running 3.4 as the gateway for almost a year. An upgrade to a 18 gig SCSI drive prompted and upgrade in the software. I'm having problems with the inside machines connecting to the outside world. They can telnet to the gateway machine fine, but it's a bit slow (about 30 seconds to connect.) Netscape on these machines don't work, it times out. I've gone so far as to put all the old configuration files from the old hard drive on to the new one, with the exact same problem. I've disabled my firewalls, removed named, natd looks like it's working - to no avail... I have no clue what could be the problem at this point... :( Can anyone give me a clue as to what I need to look for..? Thanks much! Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***FreeBSD - The Power to Serve! http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 22: 9:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id F13FB37B4C5 for ; Fri, 24 Nov 2000 22:09:25 -0800 (PST) Received: by static.unixfreak.org (Postfix, from userid 1000) id 8CD2B1F33; Fri, 24 Nov 2000 22:09:25 -0800 (PST) Subject: Re: 3.4 and 4.1 differences? In-Reply-To: "from Rick Hamell at Nov 23, 2000 10:07:05 pm" To: Rick Hamell Date: Fri, 24 Nov 2000 22:09:25 -0800 (PST) Cc: FreeBSD-questions From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001125060925.8CD2B1F33@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Ok, so I've got 4.1 installed on my gateway machine, this exact > hardware was running 3.4 as the gateway for almost a year. An upgrade to a > 18 gig SCSI drive prompted and upgrade in the software. I'm having > problems with the inside machines connecting to the outside world. They > can telnet to the gateway machine fine, but it's a bit slow (about 30 > seconds to connect.) Netscape on these machines don't work, it times > out. I've gone so far as to put all the old configuration files from the > old hard drive on to the new one, with the exact same problem. I've > disabled my firewalls, removed named, natd looks like it's working - to no > avail... I have no clue what could be the problem at this point... :( Can > anyone give me a clue as to what I need to look for..? Thanks much! Sounds like DNS isn't working on them. Make sure the DNS server they are trying to contact are indeed there. You may want to try restarting named and making sure it works rather than removing it on your gateway if you think the machines behind it may be referencing it as a nameserver. To check if DNS is properly configured, try to ping something using a hostname. Hope this helps -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. If the government wants us to behave, they should set a better example! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 22:18:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from trinity.ucs.co.za (trinity.ucs.co.za [196.23.43.15]) by hub.freebsd.org (Postfix) with ESMTP id A7D7337B4CF for ; Fri, 24 Nov 2000 22:18:43 -0800 (PST) Received: from localhost (glock@localhost) by trinity.ucs.co.za (8.11.1/8.11.1) with ESMTP id eAP6C0B12066; Sat, 25 Nov 2000 08:12:00 +0200 (SAST) (envelope-from glock@trinity.ucs.co.za) Date: Sat, 25 Nov 2000 08:12:00 +0200 (SAST) From: Stefan Lesicnik To: Dorian Harmans Cc: questions@FreeBSD.ORG Subject: Re: Question In-Reply-To: <3A1E9960.3A524240@wanadoo.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I use nero. Just rename the .iso to .nrg works then cya stefan On Fri, 24 Nov 2000, Dorian Harmans wrote: > Which program do I need to use to burn the .iso file of the 4.2 release? > > I tried Nero, Blindread, Clonecd but none of them seem to recognize the > .iso filetype. > Please help me. > Thank in advantage. > > Dorian Harmans > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 24 22:34:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from george.he.net (george.he.net [216.218.157.2]) by hub.freebsd.org (Postfix) with ESMTP id 80C2137B479 for ; Fri, 24 Nov 2000 22:34:26 -0800 (PST) Received: from wiliweld.com (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by george.he.net (8.8.6/8.8.2) with ESMTP id WAA17132; Fri, 24 Nov 2000 22:34:21 -0800 Message-ID: <3A1F5CEC.DF2DDD63@wiliweld.com> Date: Fri, 24 Nov 2000 22:32:12 -0800 From: Bill Schoolcraft Organization: " UNIX, A Way of Life !!! " X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 i86pc) X-Accept-Language: en MIME-Version: 1.0 To: Krzysztof Parzyszek Cc: Tim McMillen , freebsd-questions@freebsd.org Subject: Re: VMware for FreeBSD ? References: <3A1E015F.5588E6E5@wiliweld.com> <20001124023630.B7169@buchanan-181-249.stures.iastate> <3A1ECB09.FDF4CDB8@wiliweld.com> <20001124155657.A10072@buchanan-181-249.stures.iastate> <3A1F1471.B5A7F7D4@wiliweld.com> <20001124211929.A12645@buchanan-181-249.stures.iastate> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Krzysztof Parzyszek wrote: > > On Fri, Nov 24, 2000 at 05:22:57PM -0800, Bill Schoolcraft wrote: > > > [...] > > But I'm still having vmware complain looking for "insmod" > > Hmmm... I'm running out of ideas here... Can you just try to install > vmware from scratch using ports (vmware2)? This may seem stupid, but > I guess that's what I would do. [First I'd like to thank you for taking the time to help me.] Oh, I did, and it installed fine. It's when I go to run it I receive the following: ///////////////////////////////////////// [root@FreeBSD ~]--> /usr/bin/vmware & [1] 572 [root@FreeBSD ~]--> VMware Workstation is installed, but it has not been (correctly) configured for your running kernel. To (re-)configure it, your system administrator must find and run "vmware-config.pl". For more information, please read the INSTALL file in VMware Workstation's documentation directory. //////////////////////////////////////// Then I go to run the "vmware-config.pl" and I get the following: [root@FreeBSD ~]--> /usr/bin/vmware-config.pl Setup is unable to find the "insmod" program on your machine. Please make sure it is installed. Do you want to specify the location of this program by hand? [yes] //////////////////////////////////////// The smoothest thing was the install from /usr/ports, it's running the program that's killing me. :( -- Bill Schoolcraft PO Box 210076 San Francisco, CA 94121 "UNIX, A Way of Life !!!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 22:41:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tomts7-srv.bellnexxia.net (tomts7.bellnexxia.net [209.226.175.40]) by hub.freebsd.org (Postfix) with ESMTP id 8218537B479 for ; Fri, 24 Nov 2000 22:41:36 -0800 (PST) Received: from HSE-Toronto-ppp167435.sympatico.ca ([64.229.41.200]) by tomts7-srv.bellnexxia.net (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001125064135.FCDX12366.tomts7-srv.bellnexxia.net@HSE-Toronto-ppp167435.sympatico.ca> for ; Sat, 25 Nov 2000 01:41:35 -0500 Date: Sat, 25 Nov 2000 01:42:23 -0500 (EST) From: Rajesh Saxena X-Sender: rookie@purple.haze To: freebsd-questions@FreeBSD.ORG Subject: anyone had any luck with Adaptec 2903 SCSI-2 controller Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi.. I didn't see this scsi controller listed under the freebsd hardware compatibility list but I was just curious to know if someone had this working in 4.2 Stable. Cheers. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 22:42:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from datasphereweb.com (c182500-a.frndl1.wa.home.com [24.10.46.121]) by hub.freebsd.org (Postfix) with ESMTP id CCFEE37B479 for ; Fri, 24 Nov 2000 22:42:57 -0800 (PST) Received: from localhost (davidd@localhost) by datasphereweb.com (8.11.1/8.9.3) with ESMTP id eAP6gvC04645 for ; Fri, 24 Nov 2000 22:42:57 -0800 (PST) (envelope-from davidd@datasphereweb.com) Date: Fri, 24 Nov 2000 22:42:56 -0800 (PST) From: David Daugherty To: questions@freebsd.org Subject: qmail over sendmail Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Do I need to uninstall sendmail before installing qmail on 4.2B? I don't see sendmail in /var/db/pkg and I've tried 'pkg_delete sendmail.' |> /\ \/ @ davidd@datasphereweb.com DataSphere - Back end web programming, site security, and networking david.daugherty@netmanage.com Software Engineer NetManage - The Bridge to E-Business http://www.wcug.wwu.edu/~doc ICQ: 21106703 "I like the dreams of the future better than the history of the past" -Thomas Jefferson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 22:59:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from moldova.md (ns.moldova.md [212.0.210.19]) by hub.freebsd.org (Postfix) with ESMTP id 4C0AB37B4CF for ; Fri, 24 Nov 2000 22:59:45 -0800 (PST) Received: from king ([212.0.210.215]) by moldova.md (8.9.3/8.9.3) with SMTP id JAA02591 for ; Sat, 25 Nov 2000 09:00:31 +0200 (EET) Message-ID: <002701c056ad$e6c25400$d7d200d4@moldova.md> From: "Veaceslav Z." To: Subject: traffic cryptation Date: Sat, 25 Nov 2000 09:04:05 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0024_01C056BE.A9C4DD00" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0024_01C056BE.A9C4DD00 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable need to encript all ip traffic between some BSD servers=20 and Cisco router. How make this? Any sugestion are welcome. ------=_NextPart_000_0024_01C056BE.A9C4DD00 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable
need to encript all ip traffic between = some BSD=20 servers
and Cisco router. How make = this?
 
Any sugestion are welcome.
 
 
------=_NextPart_000_0024_01C056BE.A9C4DD00-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 23: 0:54 2000 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 2AC3937B4C5 for ; Fri, 24 Nov 2000 23:00:49 -0800 (PST) Received: from FreeBSD.org (Studded@master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id XAA88858; Fri, 24 Nov 2000 23:00:41 -0800 (PST) (envelope-from DougB@FreeBSD.org) Message-ID: <3A1F6399.1D0A8B1E@FreeBSD.org> Date: Fri, 24 Nov 2000 23:00:41 -0800 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: allan.dib@tfc.net.au Cc: freebsd-questions@FreeBSD.org, dan@mostgraveconcern.org Subject: Re: NTP Problems References: <3a1c6b75.d5.0@webcentral.com.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Allan Dib wrote: > > Hi everyone, > > I am running FreeBSD 4.1.1 and followed the advice given on this mailing list > regarding NTP. I created /etc/ntp.conf and put in the line: > > server ntp.mel.nml.CSIRO.AU All you really need is one lower stratum public server to synch a workstation. You definitely don't want to use this server, it's a stratum 1 time server and good netiquette dictates that strat 1 servers are only used to synch publicly available strat 2 servers. It's very common for ISP's to set up their nameservers as time servers, and in fact, your ISP has done just that: dig tfc.net.au ns ;; ANSWER SECTION: tfc.net.au. 1D IN NS oldent.powerup.com.au. tfc.net.au. 1D IN NS galileo.powerup.com.au. ntptrace oldent.powerup.com.au. oldent.powerup.com.au: stratum 4, offset -0.033629, synch distance 0.05203 lnx02-f1.powerup.com.au: stratum 3, offset -0.000951, synch distance 0.04160 oznet.ozemail.com.au: stratum 2, offset -0.024467, synch distance 0.01111 stl0gps0.syd.ops.au.ozemail.net: stratum 1, offset -0.019876, synch distance 0.00000, refid 'GPS' ntptrace galileo.powerup.com.au. galileo.powerup.com.au: stratum 1, offset -402.350426, synch distance 0.01044, refid 'LCL' You could use either one of those as time servers, but in this case it would be a bad idea to use both, since they are at different stratums. If this technique doesn't yield you a timeserver to use, you can take a look at the publicly available server list at http://www.eecis.udel.edu/~ntp/ > I also tried the following in the ntp.conf : > (taken from the suggestions at http://www.mostgraveconcern.com/freebsd/ntp.html) The problem with this is that A) time.nist.gov is definitely not appropriate for anyone other than a publicly available strat 2 server. B) There is no explanation as to what the server 127.127.1.0 lines are for, who should use them, or why they aren't needed for a workstation that's permanently connected to the internet. > server time.nist.gov prefer > server 127.127.1.0 > fudge 127.127.1.0 stratum 10 > driftfile /etc/ntp.drift > > then ran "ntpd -p /var/run/ntpd.pid" > > The system log first showed the following (which I beleive is normal) > > Nov 23 18:43:01 www ntpd[318]: ntpd 4.0.99b Mon Sep 25 23:37:27 GMT 2000 (1) > > Nov 23 18:43:01 www ntpd[318]: using kernel phase-lock loop 2041 > > But then after a while the following appeared in the system log: > > Nov 23 18:50:47 www ntpd[318]: time error -28161 over 1000 seconds; set clock > manually As someone else already mentioned, you should run 'ntpdate oldent.powerup.com.au' (or whatever server you choose) before running ntpd by hand. ntpd won't synch the clock if it starts off more than a certain number of seconds away from real time. Good luck, Doug -- So what I want to know is, where does the RED brick road go? 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 Fri Nov 24 23:23:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from buchanan-181-249.stures.iastate.edu (buchanan-181-249.stures.iastate.edu [129.186.181.249]) by hub.freebsd.org (Postfix) with ESMTP id E254037B479 for ; Fri, 24 Nov 2000 23:23:32 -0800 (PST) Received: (from kparz@localhost) by buchanan-181-249.stures.iastate.edu (8.11.1/8.11.1) id eAP7QS481168; Sat, 25 Nov 2000 01:26:28 -0600 (CST) (envelope-from kparz) Date: Sat, 25 Nov 2000 01:26:27 -0600 From: Krzysztof Parzyszek To: Bill Schoolcraft Cc: Tim McMillen , freebsd-questions@freebsd.org Subject: Re: VMware for FreeBSD ? Message-ID: <20001125012627.A44419@buchanan-181-249.stures.iastate> References: <3A1E015F.5588E6E5@wiliweld.com> <20001124023630.B7169@buchanan-181-249.stures.iastate> <3A1ECB09.FDF4CDB8@wiliweld.com> <20001124155657.A10072@buchanan-181-249.stures.iastate> <3A1F1471.B5A7F7D4@wiliweld.com> <20001124211929.A12645@buchanan-181-249.stures.iastate> <3A1F5CEC.DF2DDD63@wiliweld.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <3A1F5CEC.DF2DDD63@wiliweld.com>; from bill@wiliweld.com on Fri, Nov 24, 2000 at 10:32:12PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 24, 2000 at 10:32:12PM -0800, Bill Schoolcraft wrote: > > Oh, I did, and it installed fine. It's when I go to run it I receive the > following: > > ///////////////////////////////////////// > > [root@FreeBSD ~]--> /usr/bin/vmware & > [1] 572 > [root@FreeBSD ~]--> VMware Workstation is installed, but it has not been > (correctly) configured for your running kernel. To (re-)configure it, your > system administrator must find and run "vmware-config.pl". For more > information, please read the INSTALL file in VMware Workstation's > documentation directory. > > //////////////////////////////////////// Ok, I have figured something out. VMware stores its configuration files in /etc/vmware/ I was able to force vmware to display this message by putting a file `not_configured' in that directory. Removing it brought the usual behavior back (i.e. it was working again). My next guess would be to look for file `not_configured' in the vmware config directory and remove it. As I said, in my case vmware stores it's config stuff in /etc/vmware (it is itself a symbolic link). $ ls -l /etc/vmware/ total 1 -rw-r--r-- 1 root wheel 344 Oct 20 02:52 config lrwxr-xr-x 1 root wheel 21 Oct 19 12:17 vmware -> /usr/local/etc/vmware If you don't have the file `config', here are contents of mine. If you use it, make sure the directories are valid. $ cat /etc/vmware/config vmware.fullpath = "/usr/local/lib/vmware/bin/vmware" wizard.fullpath = "/usr/local/lib/vmware/bin/vmware-wizard" dhcpd.fullpath = "/usr/local/lib/vmware/bin/vmnet-dhcpd" loop.fullpath = ""/usr/local/lib/vmware/bin/vmware-loop" libdir = "/usr/local/lib/vmware/lib" vmnet1.HostOnlyAddress = "192.168.1.1" vmnet1.HostOnlyNetMask = "255.255.255.0" I hope this helps. -- ,oPq J --- Krzysztof Parzyszek 10/15/2000 1:29am --- 7 `8oP' --- Abandon the search for Truth; settle for a good fantasy. --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Nov 24 23:56:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 8760137B479 for ; Fri, 24 Nov 2000 23:56:31 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id LAA75158 for ; Sat, 25 Nov 2000 11:23:52 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: from igor-home.rainbow (igor-home.rainbow [192.168.4.102]) by raduga.dyndns.org (8.10.1/8.10.0) with ESMTP id eAP7tTP32024 for ; Sat, 25 Nov 2000 10:55:31 +0300 Received: (from igor@localhost) by igor-home.rainbow (8.11.0/8.11.1) id eAP7sR512184 for freebsd-questions@freebsd.org; Sat, 25 Nov 2000 10:54:27 +0300 (MSK) (envelope-from igor) Date: Sat, 25 Nov 2000 10:54:27 +0300 From: Igor Roboul To: freebsd-questions@freebsd.org Subject: linux_realplayer and esound? Message-ID: <20001125105427.A12176@igor-home.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: Igor Roboul , 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 X-Loop: FreeBSD.ORG Hello, Is it possible use linux_realplayer port with FreeBSD native Esound? -- Igor Roboul, Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 0:11: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fremont.bolingbroke.com (adsl-216-102-90-210.dsl.snfc21.pacbell.net [216.102.90.210]) by hub.freebsd.org (Postfix) with ESMTP id 24B8337B4C5 for ; Sat, 25 Nov 2000 00:11:07 -0800 (PST) Received: from fremont.bolingbroke.com (fremont.bolingbroke.com [216.102.90.210]) by fremont.bolingbroke.com (Switch-2.1.0/Switch-2.1.0) with ESMTP id eAP8B6p83347 for ; Sat, 25 Nov 2000 00:11:06 -0800 (PST) Date: Sat, 25 Nov 2000 00:11:06 -0800 (PST) From: Ken Bolingbroke To: freebsd-questions@FreeBSD.ORG Subject: Re: DigiBoard support in 4.2-STABLE? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Oops, never mind--I had a typo in the iomem parameter in the kernel config that was causing the failure. With that corrected, it's working now. Ken On Fri, 24 Nov 2000, Ken Bolingbroke wrote: > > I have a 16-port DigiBoard that I've been using under FreeBSD 2.x and 3.x, > most recently 3.5-STABLE. I just upgraded to 4.2-STABLE, and now the > DigiBoard doesn't work. dmesg shows: > > dgb0: PC/Xe 64K > dgb0 at port 0x220-0x223 iomem 0xfc000-0x10bfff on isa0 > dgb0: BIOS download failed > dgb0: driver is using old-style compatability shims > > Any hints on what I need I need to do to get the DigiBoard working? > > Ken > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 1:31:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from daffy.uwnet.nl (daffy.uwnet.nl [195.7.130.35]) by hub.freebsd.org (Postfix) with ESMTP id 0FF1D37B4CF for ; Sat, 25 Nov 2000 01:31:42 -0800 (PST) Received: from dyn.dailup.c227129017.isd.to (dyn.dailup.c227129017.isd.to [213.227.129.17]) by daffy.uwnet.nl (8.11.1/8.11.0) with ESMTP id eAP9Xe131382 for ; Sat, 25 Nov 2000 10:33:40 +0100 Received: (qmail 2719 invoked by uid 1000); 25 Nov 2000 09:30:09 -0000 Date: Sat, 25 Nov 2000 10:30:09 +0100 From: Andre Goeree To: freebsd-questions@freebsd.org Subject: JDK-1.1.8_ELF broken? (Shared object "libxpg4.so.2" not found) Message-ID: <20001125103009.A2591@mandark.attica.home> Reply-To: abgoeree@uwnet.nl Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Sender: abgoeree@uwnet.nl Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, After installation of /usr/ports/java/jdk, the port doesn't work. mandark# /usr/local/jdk1.1.8/bin/java -version /usr/libexec/ld-elf.so.1: Shared object "libxpg4.so.2" not found mandark# This is correct, the file is nowhere found on the system. What am i missing? Please send replies off-list, i am not on this list. Regards, Andre. system: FreeBSD 4.2-RELEASE #0: Mon Nov 20 21:45:08 CET 2000 output of the installation of the port: mandark# cd /usr/ports/java/jdk mandark# make install ===> Extracting for jdk-1.1.8 >> Checksum OK for jdk1.1.8_ELF.V1999-11-9.tar.gz. ===> Patching for jdk-1.1.8 ===> Applying FreeBSD patches for jdk-1.1.8 ===> Configuring for jdk-1.1.8 ===> Installing for jdk-1.1.8 ===> jdk-1.1.8 depends on executable: javavm - not found ===> Verifying install for javavm in /usr/ports/java/javavmwrapper ===> Extracting for javavmwrapper-1.1 >> No MD5 checksum file. ===> Patching for javavmwrapper-1.1 ===> Configuring for javavmwrapper-1.1 /usr/bin/sed 's|%%PREFIX%%|/usr/local|' < /usr/ports/java/javavmwrapper/src/javavmwrapper.sh > /usr/ports/java/javavmwrapper/work/javavmwrapper.sh ===> Installing for javavmwrapper-1.1 install -c -o root -g wheel -m 555 /usr/ports/java/javavmwrapper/work/javavmwrapper.sh /usr/local/bin/javavm /bin/ln -sf /usr/local/bin/javavm /usr/local/bin/registervm /bin/ln -sf /usr/local/bin/javavm /usr/local/bin/unregistervm ===> Generating temporary packing list ===> Registering installation for javavmwrapper-1.1 ===> Returning to build of jdk-1.1.8 /bin/mkdir -p /usr/local/jdk1.1.8 (cd /usr/ports/java/jdk/work/jdk1.1.8 && /usr/bin/tar -c -f - .) | (cd /usr/local/jdk1.1.8 && /usr/bin/tar --unlink -x -f -) /bin/mkdir -p /usr/local/share/java/classes /bin/mkdir -p /usr/local/share/doc/java ===> Generating temporary packing list /usr/local/bin/registervm "/usr/local/jdk1.1.8/bin/java # JDK1.1.8" ===> Registering installation for jdk-1.1.8 mandark# rehash mandark# /usr/local/jdk1.1.8/bin/java -version /usr/libexec/ld-elf.so.1: Shared object "libxpg4.so.2" not found mandark# To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 1:51:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hyperreal.org (taz.hyperreal.org [209.133.83.16]) by hub.freebsd.org (Postfix) with SMTP id 9D1C437B4CF for ; Sat, 25 Nov 2000 01:51:07 -0800 (PST) Received: (qmail 17977 invoked by uid 12); 25 Nov 2000 09:51:08 -0000 Message-ID: <20001125095108.17976.qmail@hyperreal.org> From: mike@hyperreal.org Subject: natd basic setup help To: freebsd-questions@freebsd.org Date: Sat, 25 Nov 2000 01:51:08 -0800 (PST) X-Mailer: ELM [version 2.4ME+ PL60 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG NAT. I've been RTFM'ing all night and am just not getting it. My ISP has assigned me a static IP address. I want to use that address for my FreeBSD machine, and have my 2 other machines masquerading as the same IP. The configuration is pretty simple: [private_box_1]-----. | [private_box_2]-----|___[switch]___[DSL_modem]___[ISPs_router] | [public_BSD_box]----' The switch is unmanaged and the DSL modem is in bridging mode, so it's essentially just a wire between my network and my ISP's router, which I use as my gateway (216.241.42.1). No PPP or dynamic IPs are involved. I want to give the private boxes IP addresses 10.0.0.*, and have them use the BSD box as their gateway. The BSD box needs to keep its public IP address (216.241.42.159). Sounds pretty typical, right? 1. I have a fresh install of FreeBSD 4.2-RELEASE. 2. I compiled my kernel with options IPFIREWALL options IPDIVERT 3. I have in my /etc/rc.conf ifconfig_rl0="inet 216.241.42.159 netmask 255.255.255.0" defaultrouter="216.241.42.1" gateway_enable="YES" natd_enable="YES" natd_interface="216.241.42.159" firewall_type="open" According to a post I found in the freebsd-questions archive, despite the natd man page's mention of the -f option, for some reason I don't really want to have natd_flags="-f /etc/natd.conf" pointing to a file containing things like redirect_address 10.0.0.1 216.241.42.159 redirect_address 10.0.0.2 216.241.42.159 because now all one has to do is edit some magic /etc/rc.firewall script. Am I just being especially dense tonight or is there nothing in /etc/rc.firewall that says anything about mapping IP addresses or passing arguments to natd? All I see in there is stuff that looks like it shouldn't be changed.. just making sure packets *go* to natd.. nothing about actually *configuring* natd. So with this setup, regardless of whether I put in the natd_flags and a natd.conf, inbound and outbound packets are all being denied or dropped at the BSD box. I can't ping it from the outside, I can't ping it from the inside, I can't ping the router from there, nothing.. What am I missing, here? The Complete FreeBSD (3rd ed.), the Handbook, the man pages and the 'tutorials' I have seen are all very sketchy about setting up what seems like a pretty common thing. One other caveat, but shouldn't be affecting what I'm seeing now, is that my /etc/resolv.conf is pointing to DNS servers on 192.168.*.*, indicating that my ISP is doing some aliasing of their own (and the reason why I want 10.0.0.* for my private network). Many thanks in advance, - Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 1:57:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cantvc.canterbury.ac.nz (cantvc.canterbury.ac.nz [132.181.30.1]) by hub.freebsd.org (Postfix) with ESMTP id 6B27B37B4C5 for ; Sat, 25 Nov 2000 01:57:38 -0800 (PST) Received: from CONVERSION-DAEMON.it.canterbury.ac.nz by it.canterbury.ac.nz (PMDF V6.0-24 #45723) id <01JWZ2VG5EB48ZJGRS@it.canterbury.ac.nz> for freebsd-questions@FreeBSD.ORG; Sat, 25 Nov 2000 22:57:25 +1300 (NEW ZEALAND DAYLIGHT TIME) Received: from student.canterbury.ac.nz (rbm49.tacacs.canterbury.ac.nz [172.31.164.87]) by it.canterbury.ac.nz (PMDF V6.0-24 #45723) with ESMTP id <01JWZ2V4J0P88X2TZ9@it.canterbury.ac.nz> for freebsd-questions@FreeBSD.ORG; Sat, 25 Nov 2000 22:57:25 +1300 (NEW ZEALAND DAYLIGHT TIME) Received: (from rbm49@localhost) by student.canterbury.ac.nz (8.9.3/8.9.3) id WAA08345 for freebsd-questions@FreeBSD.ORG; Sat, 25 Nov 2000 22:55:37 +1300 (NZDT envelope-from rbm49) Date: Sat, 25 Nov 2000 22:55:34 +1300 From: "Richard B. Mahoney" Subject: Re: Restricting a users CPU usage -- Possible? In-reply-to: <"from lnb"@FreeBSDsystems.COM> To: freebsd-questions@FreeBSD.ORG Mail-followup-to: freebsd-questions@FreeBSD.ORG Message-id: <20001125225534.A8248@student.canterbury.ac.nz> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.0 Release References: <20001122180523.U18037@fw.wintelcom.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Readers, To those of you who responded to my request for help I'd like to give my thanks. Within half an hour I'd received at least four replies. I'm sure this is better than one could expect from a commercial helpdesk. I've implemented roughly what is given below. This has succeeded in keeping a tight rein on emacs. Even at its worst, it now doesn't seem to be able to climb much past 30Meg. And, once its been at this level for a while, it isn't able to absorb much more than about 65% CPU. The upshot is that I'm left plenty of room to move, other programmes still respond, and I can easily kill emacs without having to switch over to root. Many regards, Richard Mahoney On Thu, Nov 23, 2000 at 02:43:12PM -0500, Lanny Baron wrote: > Hi, > Here is how I manage cpu usage for shell users on one of my FreeBSD > Freedom servers: > > shell:\ > :cputime=30M:\ > :datasize-cur=22M:\ > :stacksize-cur=8M:\ > :memorylocked-cur=10M:\ > :memoryuse-cur=30M:\ > :filesize=infinity:\ > :coredumpsize=infinity:\ > :maxproc-cur=6:\ > :openfiles-cur=64:\ > :priority=10:\ > :requirehome@:\ > :umask=022:\ > :tc=default: > Which is in /etc/login.conf > > What you need to do, is make a class inside login.conf and put in there, > the values you want. > Remember to do the following if you change your /etc/login.conf file: > > cap_mkdb /etc/login.conf > > --Lanny > -- ====================================================================== Richard Mahoney /^^^\ Telephone: +64-3-351-5831 78 Jeffreys Rd (| , , |) Christchurch | * | NEW ZEALAND \_-_/ mailto:rbm49@csc.canterbury.ac.nz ---------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 2:15:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 371.net (unknown [202.102.249.15]) by hub.freebsd.org (Postfix) with SMTP id 554ED37B4E5 for ; Sat, 25 Nov 2000 02:15:08 -0800 (PST) Received: (fmail 12372 invoked by uid 1004); 25 Nov 2000 10:01:46 -0000 Date: 25 Nov 2000 10:01:46 -0000 Message-ID: <20001125100146.12371.fmail@371.net> Reply-To: sharpmind2@371.net From: sharpmind2@371.net To: freebsd-questions@freebsd.org Subject: about ppp's mode Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Working in foreground mode using interface: tun0 warning: manual dial is only available for auto and interactive links Nov 23 13:39:53 cp ppp[629]: Warning: Manual dial is only available for auto and interactive links Warning: dial: Failed 1 Nov 23 13:39:53 cp ppp[629]: Warning: dial: Failed 1 when i made ppp work in ddial and background mode, the error was the same. however, ppp could still work. I could hear my modem's voice,and then I went into internet successively. from the output I knew that "Manual" dial is only available for auto and interactive mode. I dont kown what method is available for foreground ,background,ddial mode. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 2:29:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from relay1.intercom.es (relay1.intercom.es [212.66.160.19]) by hub.freebsd.org (Postfix) with ESMTP id 2FD4D37B4CF for ; Sat, 25 Nov 2000 02:29:27 -0800 (PST) Received: from lix.intercom.es (root@lix.intercom.es [212.66.160.2]) by relay1.intercom.es (8.11.1/8.11.1) with ESMTP id eAP9FJL03211; Sat, 25 Nov 2000 10:15:19 +0100 Received: from intercom.es (iv1-44.intercom.es [212.66.168.44]) by lix.intercom.es (8.9.3/8.9.3) with ESMTP id LAA28432; Sat, 25 Nov 2000 11:10:18 +0100 Received: (from megarcia@localhost) by intercom.es (8.11.0/8.11.0) id eAPATGO00721; Sat, 25 Nov 2000 11:29:16 +0100 (CET) (envelope-from megarcia) Date: Sat, 25 Nov 2000 11:29:16 +0100 From: Manuel Enrique Garcia Cuesta To: david@banning.com Cc: questions@FreeBSD.ORG Subject: Re: web hosting with a dynamic IP address question Message-ID: <20001125112916.A372@ilex.kicelo.org> References: <200011250537.AAA00520@d.tracker> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <200011250537.AAA00520@d.tracker> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David, === David Banning escribia (Sat, Nov 25, 2000 at 12:37:37AM -0500): > > I would like to call into my computer and access it like a web host > from somewhere else on the web. My thought is that this should be possible > if my IP address is known. > > Since my dynamic IP address changes on every dialup, > would it not be possible for my FreeBSD machine to, following connection > do some inquiry into what my IP address is, then have FreeBSD copy the > IP address to my external WEB site, where I could have a link/script > that takes the address and guides me into my home server? It should be possible, have you cheked /etc/ppp/ppp.linkup (for userland ppp ) or /etc/ppp/ip-up (for kernel ppp ) ? Or maybe you are not using ppp ? Manuel Garcia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 2:33:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 371.net (unknown [202.102.249.15]) by hub.freebsd.org (Postfix) with SMTP id B01F337B4CF for ; Sat, 25 Nov 2000 02:33:46 -0800 (PST) Received: (fmail 23214 invoked by uid 1004); 25 Nov 2000 10:20:23 -0000 Date: 25 Nov 2000 10:20:23 -0000 Message-ID: <20001125102023.23213.fmail@371.net> Reply-To: sharpmind2@371.net From: sharpmind2@371.net To: freebsd-questions@freebsd.org Subject: about picoBSD Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I had a box running freebsd3.2 smoothly. One day i decided to try a dial picobsd.Below is what i have done: 1. because my kernel had configured well; I didn't modify the file "PICOBSD" and "crunch1" in the dial directory. 2. I ran the file "build" in the build directory directly. cd /usr/src/release/picobsd/build ./build 3. i chose the type "dial" ,and then I typed "n" to run. 4. now there was a file named "fs.PICOBSD" in the build directory, instead of the file "PICOBSD.bin". At the same time , the size of the file "fs.PICOBSD" is about 1635000 bytes. Obviously it isnt fit for a flooy disk. It proved that what I said was right. when i run the file "install" in the same directory to install "fs.PICOBSD", my box told me only 1475000 bytes was transfered. <1>. I want to know why my file is "fs.PICOBSD" ,instead of "PICOBSD.bin" <2> why my fs.PICOBSD is so big. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 2:52:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from beethoven.singa.pore.net (beethoven.singa.pore.net [202.156.1.28]) by hub.freebsd.org (Postfix) with ESMTP id CA82B37B4CF for ; Sat, 25 Nov 2000 02:52:55 -0800 (PST) Received: from sleipnir (mcns46.docsis24.singa.pore.net [202.156.24.46]) by beethoven.singa.pore.net (8.9.3/8.9.3) with SMTP id SAA06525; Sat, 25 Nov 2000 18:53:28 +0800 (SST) Message-ID: <002501c056cd$dd9fdda0$2e189cca@sleipnir> From: "James Lim" To: "Richard B. Mahoney" , References: <20001122180523.U18037@fw.wintelcom.net> <20001125225534.A8248@student.canterbury.ac.nz> Subject: Re: Restricting a users CPU usage -- Possible? Date: Sat, 25 Nov 2000 18:52:49 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, Ulimit actually worked perfectly for me. Give it a shot :) Hope this helps, James Lim ----- Original Message ----- From: "Richard B. Mahoney" To: Sent: Saturday, November 25, 2000 5:55 PM Subject: Re: Restricting a users CPU usage -- Possible? > Dear Readers, > > To those of you who responded to my request for help I'd like to give > my thanks. Within half an hour I'd received at least four replies. I'm > sure this is better than one could expect from a commercial helpdesk. > > I've implemented roughly what is given below. This has succeeded in > keeping a tight rein on emacs. Even at its worst, it now doesn't seem > to be able to climb much past 30Meg. And, once its been at this level > for a while, it isn't able to absorb much more than about 65% CPU. The > upshot is that I'm left plenty of room to move, other programmes still > respond, and I can easily kill emacs without having to switch over to > root. > > Many regards, > > Richard Mahoney > > On Thu, Nov 23, 2000 at 02:43:12PM -0500, Lanny Baron wrote: > > Hi, > > Here is how I manage cpu usage for shell users on one of my FreeBSD > > Freedom servers: > > > > shell:\ > > :cputime=30M:\ > > :datasize-cur=22M:\ > > :stacksize-cur=8M:\ > > :memorylocked-cur=10M:\ > > :memoryuse-cur=30M:\ > > :filesize=infinity:\ > > :coredumpsize=infinity:\ > > :maxproc-cur=6:\ > > :openfiles-cur=64:\ > > :priority=10:\ > > :requirehome@:\ > > :umask=022:\ > > :tc=default: > > Which is in /etc/login.conf > > > > What you need to do, is make a class inside login.conf and put in there, > > the values you want. > > Remember to do the following if you change your /etc/login.conf file: > > > > cap_mkdb /etc/login.conf > > > > --Lanny > > > > -- > ====================================================================== > Richard Mahoney /^^^\ Telephone: +64-3-351-5831 > 78 Jeffreys Rd (| , , |) > Christchurch | * | > NEW ZEALAND \_-_/ mailto:rbm49@csc.canterbury.ac.nz > ---------------------------------------------------------------------- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 2:57:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hyperreal.org (taz.hyperreal.org [209.133.83.16]) by hub.freebsd.org (Postfix) with SMTP id BD96437B4C5 for ; Sat, 25 Nov 2000 02:57:55 -0800 (PST) Received: (qmail 116 invoked by uid 12); 25 Nov 2000 10:57:55 -0000 Message-ID: <20001125105755.115.qmail@hyperreal.org> From: mike@hyperreal.org Subject: Re: natd basic setup help In-Reply-To: <20001125095108.17976.qmail@hyperreal.org> from "mike@hyperreal.org" at "Nov 25, 2000 01:51:08 am" To: freebsd-questions@freebsd.org Date: Sat, 25 Nov 2000 02:57:55 -0800 (PST) X-Mailer: ELM [version 2.4ME+ PL60 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I wrote: > NAT. I've been RTFM'ing all night and am just not getting it. My ISP has > assigned me a static IP address. I want to use that address for my FreeBSD > machine, and have my 2 other machines masquerading as the same IP. The > configuration is pretty simple: > > [private_box_1]-----. > | > [private_box_2]-----|___[switch]___[DSL_modem]___[ISPs_router] > | > [public_BSD_box]----' > > The switch is unmanaged and the DSL modem is in bridging mode, so it's > essentially just a wire between my network and my ISP's router, which I > use as my gateway (216.241.42.1). No PPP or dynamic IPs are involved. > > I want to give the private boxes IP addresses 10.0.0.*, and have them use > the BSD box as their gateway. The BSD box needs to keep its public IP > address (216.241.42.159). Sounds pretty typical, right? It was pointed out to me shortly after I sent this that with the BSD box not being between the switch and the DSL modem, I can never have a true firewall; the private boxes will never be private. I need to have 2 NICs, one for traffic going between the BSD box and the DSL modem, and the other for traffic between the BSD box and the switch. Fair enough. I'd settle for just getting the masquerading working. The semi-private boxes would only respond to 10.0.0.*-destined traffic, and if I could just get the BSD box to reroute the traffic accordingly, it would at least give them TCP/IP connectivity. But I can see that with my current setup, once the switch found out the semi-private boxes were at those addresses, it would happily pass along any 10.0.0.*-destined traffic to those boxes, even if it were coming from the outside world. Like I trust the H4X0R kiddies I share a subnet with.. yeargh. Anyway I thought I gleaned from somewhere that 2 logical interfaces were necessary for NAT, but that this didn't have to mean 2 physical NICs. Is this wrong? I have nothing against using 2 NICs but my BSD box is on unstable hardware that has been known to invent conflicts when I add any piece of hardware to it. It's a c.1995 dual P133 board from Micron, with the Neptune chipset, and I'm trying to get whatever mileage I can out of it. Maybe it's time to just bite the bullet and use it as the doorstop it was meant to be. Thanks -M. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 3:16: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from area51.v-wave.com (area51.v-wave.com [24.108.173.252]) by hub.freebsd.org (Postfix) with SMTP id 4CC9B37B4CF for ; Sat, 25 Nov 2000 03:16:02 -0800 (PST) Received: (qmail 904 invoked by uid 1001); 25 Nov 2000 11:15:56 -0000 Date: Sat, 25 Nov 2000 04:15:56 -0700 From: Chris Wasser To: freebsd-questions@FreeBSD.ORG Subject: Re: pthreads library -- bug? Message-ID: <20001125041556.A827@skunkworks.area51-arpa.mil> References: <3A1E8EF9.3F0C7582@home.com> <20001124142912.B2959@dan.emsphone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001124142912.B2959@dan.emsphone.com>; from dnelson@emsphone.com on Fri, Nov 24, 2000 at 02:29:12PM -0600 X-Operating-System: FreeBSD 4.2-STABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 24, 2000 at 02:29:12PM -0600, Dan Nelson wrote: > In the last episode (Nov 24), Jim DeLisle said: > > I'm miffed on where the pthreads libraries are on a FreeBSD 4.0 > > install. There seems to be on in the /usr/compat/linux/lib directory, > > but I would have thought to have found a FreeBSD native version in > > /usr/lib. > > /usr/lib/libc_r.* are the pthreads libraries. Add the "-pthread" > option to your gcc compile and link lines to use them. I've actually encountered a rather strange thing with the BSD pthreads, with gethostby*() running inside a thread, it seems that neither SIGQUIT or SIGKILL will terminate the thread until it either times out or finishes [using pthread_kill()]. While I haven't investigated this much further, it seems to go all the way back to 4.1-RELEASE ... Is this a 'feature' or a bug? If the latter, I can submit a PR. Would be interested to hear if anyone else has encountered this, or if it's by design. Here's the method I try to terminate the thread with (basically fall through, until one works): 1) Unlock the quit mutex, send a signal to the thread to wakeup. 2) Try to cancel the thread. 3) Issue the inevitable pthread_kill(). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 3:18:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ds1.express.ru (ds1.express.ru [212.24.32.4]) by hub.freebsd.org (Postfix) with ESMTP id 0857337B479 for ; Sat, 25 Nov 2000 03:18:45 -0800 (PST) Received: from gnu.chat.ru ([212.24.32.10] helo=mail.chat.ru) by ds1.express.ru with esmtp (Exim 3.16 #1) id 13zdLt-0007gQ-00; Sat, 25 Nov 2000 14:18:41 +0300 Received: from p22.gw.lvl.ru ([194.67.189.22] helo=chat.ru) by mail.chat.ru with asmtp (Exim 3.16 #1) id 13zdLs-0000Cf-00; Sat, 25 Nov 2000 14:18:40 +0300 Message-ID: <3A1FA054.CA427648@chat.ru> Date: Sat, 25 Nov 2000 14:19:48 +0300 From: jadream X-Mailer: Mozilla 4.72 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: Drew Derbyshire Cc: freebsd-questions@freebsd.org Subject: Re: max files per process and system? References: <20001121180434.1A4CF8C4A@kendra.ne.mediaone.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Authorized: jadream Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Drew Derbyshire wrote: > What's the max files (TCP connections) one can configure per > (non-root) user and per system? > > I'm not looking for the defaults, I'm looking for the upper limits. > > Does it require a kernel rebuilt? > Yes. That needs kernel recompiled. In reality max socket connections (tcp or unix no matter) per process and per system are usually the same number and depend on maxusers variable in the kernel configuration. Hence you change that value from default 32 to some upper figure being a 2^n value and run consequently: config YOUR_KERNEL_NAME in /sys/i386/conf directory and make depend; make; make install - in appropriate compile directory usually mentioned in configuration utility output. If I'm not wrong approx. meanings are the following: 32 users 40?? sockets 64 users 82?? sockets etc Good luck :0) Alexander Komratov To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 3:48:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 1863437B479 for ; Sat, 25 Nov 2000 03:48:52 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id PAA75568 for ; Sat, 25 Nov 2000 15:16:07 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id eAPBldQ00454 for freebsd-questions@FreeBSD.ORG; Sat, 25 Nov 2000 14:47:39 +0300 Date: Sat, 25 Nov 2000 14:47:39 +0300 From: "Igor' Robul'" To: freebsd-questions@FreeBSD.ORG Subject: Re: Which crypto package works with NIS ? Message-ID: <20001125144739.B353@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <200011241642.eAOGgVo23599@bart.esiee.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <200011241642.eAOGgVo23599@bart.esiee.fr>; from bonnetf@bart.esiee.fr on Fri, Nov 24, 2000 at 05:42:31PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Nov 24, 2000 at 05:42:31PM +0100, Frank Bonnet wrote: > Hi > > I'm wondering which crypto package I would choose > at 4.2-RELEASE in order to have a working NIS > client ? If you have non FreeBSD NIS clients then you need DES -- Igor' Robul', Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 4:29:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from buffnet4.buffnet.net (buffnet4.buffnet.net [205.246.19.13]) by hub.freebsd.org (Postfix) with ESMTP id AD1F737B4C5 for ; Sat, 25 Nov 2000 04:29:17 -0800 (PST) Received: from buffnet11.buffnet.net (buffnet11.buffnet.net [205.246.19.55]) by buffnet4.buffnet.net (8.9.3/8.8.7) with ESMTP id HAA23264; Sat, 25 Nov 2000 07:29:19 -0500 (EST) (envelope-from shovey@buffnet.net) Date: Sat, 25 Nov 2000 07:29:15 -0500 (EST) From: Stephen Hovey To: Rajesh Saxena Cc: freebsd-questions@FreeBSD.ORG Subject: Re: anyone had any luck with Adaptec 2903 SCSI-2 controller In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Adaptec kept upgrading/changing what board was available, much faster than freebsd was keepin up (at least it seemed that way) and so we gave up (I need to be able to replace a card without upgrading my op/sys ever time) and switched to tekrams. We found in the process that the tekrams were faster anyway. On Sat, 25 Nov 2000, Rajesh Saxena wrote: > Hi.. I didn't see this scsi controller listed under the freebsd hardware > compatibility list but I was just curious to know if someone had this > working in 4.2 Stable. Cheers. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 4:38:16 2000 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 212D937B4E5 for ; Sat, 25 Nov 2000 04:38:14 -0800 (PST) Received: from sv.Go2France.com (sv.meiway.com [212.73.210.79]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 4F1946A907 for ; Sat, 25 Nov 2000 13:38:07 +0100 (CET) Message-Id: <5.0.2.1.0.20001125133034.02ae9580@mail.Go2France.com> X-Sender: lconrad%Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Sat, 25 Nov 2000 13:37:04 +0100 To: freebsd-questions@freebsd.org From: Len Conrad Subject: Re: max files per process and system? In-Reply-To: <3A1FA054.CA427648@chat.ru> References: <20001121180434.1A4CF8C4A@kendra.ne.mediaone.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >Drew Derbyshire wrote: > > > What's the max files (TCP connections) one can configure per > > (non-root) user and per system? > > > > I'm not looking for the defaults, I'm looking for the upper limits. > > > > Does it require a kernel rebuilt? > > > >Yes. That needs kernel recompiled. >In reality max socket connections (tcp or unix no matter) per process >and per system are usually the same number and depend on maxusers >variable in the kernel configuration. I was having trouble with FreeBSD 4.1.1 and a postfix gateway/hub complaining with "Fatal: too many files open ..." and the customer didn't want to do a custom kernel because he had not installed kernel sources. By using "sysctl -w" and the default kernel only, were able to increase to kern.maxfiles: 8192 kern.maxfilesperproc: 4096 and we eliminated the postfix complaints. The customer also added 128 megs RAM (378 total) because postfix was sometimes running 200+ SMTP processes and 70+ SMTPD processes. Len To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 5: 3: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from wdc.callgtn.com (wdc.callgtn.com [209.47.57.75]) by hub.freebsd.org (Postfix) with ESMTP id 1C1E537B479 for ; Sat, 25 Nov 2000 05:03:05 -0800 (PST) Date: Sat, 25 Nov 2000 08:02:32 -0500 Message-Id: <200011250802.AA11010594@wdc.callgtn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii From: "Erik Rothwell" Reply-To: X-Sender: To: Subject: VNCServer and Alternatives: Where to go? X-Mailer: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi folks, I'm looking for a decent BSD interpretation of the remote desktop phenominon (a la Microsoft Terminal server, Timbuktu, PCAnywhere, etc.) Currently, I run VNC for remote access to my X desktop: it's incredibly easy to use and simple to install, but, it really does not perform. At least it doesn't for me. I have a Cable-over-IP connection (about 50KB/s upstream 300-400KB/s down).... when comparing VNC (in fullscreen, 1024 x 768 at 8-bit depth) to Microsoft's Terminal Server running the same config, Terminal Server wins hands down. You can barely tell you're using a remote desktop. VNC, on the other hand, is super-chunky and chugs along at a snails pace . . . I'm utterly sure that FreeBSD must be able to hack better graphical remote access services: so, are there any alternatives to VNC? I looked into GraphOn's Bridges "thin client," but not only is it commercial software but the installation program for the RedHat 6.1 version (which I figured would operate under my Linux compatibility package) died out and dumped core. Has anyone else had better experiences with VNC or know of any alternatives? I figured one option would be to somehow setup the PC as an X server, but, that's not really feasible in my situation: the VNC client is about 150k and the Terminal Server client is about that as well . . . I'm sort of looking for something I could server up on the web as Java or take with me on a floppy disk. Thanks, ------- E. L. Rothwell xxxxxxxx xxxxxxxxx xxxxxxxxxxxxx xxxxx xxxxxxxxxxxxx xxxx ------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 5:54:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-1.sjc (mail-1.sjc.telocity.net [216.227.56.41]) by hub.freebsd.org (Postfix) with ESMTP id 69F5737B4CF for ; Sat, 25 Nov 2000 05:54:43 -0800 (PST) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-1.sjc (8.9.3/8.9.3) with SMTP id FAA00933; Sat, 25 Nov 2000 05:53:11 -0800 (PST) From: "Otter" To: , Subject: RE: VNCServer and Alternatives: Where to go? Date: Sat, 25 Nov 2000 08:58:30 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <200011250802.AA11010594@wdc.callgtn.com> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sure! Get an X server for Windows (i.e. Exceed, Reflections, X-Win Pro, etc) and set up your xdm/wdm/kdm for remote authorization. Works like a champ here. Connect via XDMCP. -Otter }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of }Erik Rothwell }Sent: Saturday, November 25, 2000 8:03 AM }To: freebsd-questions@FreeBSD.ORG }Subject: VNCServer and Alternatives: Where to go? } } }Hi folks, } }I'm looking for a decent BSD interpretation of the remote }desktop phenominon (a la Microsoft Terminal server, }Timbuktu, PCAnywhere, etc.) } }Currently, I run VNC for remote access to my X desktop: it's }incredibly easy to use and simple to install, but, it really }does not perform. At least it doesn't for me. } }I have a Cable-over-IP connection (about 50KB/s upstream }300-400KB/s down).... when comparing VNC (in fullscreen, }1024 x 768 at 8-bit depth) to Microsoft's Terminal Server }running the same config, Terminal Server wins hands down. }You can barely tell you're using a remote desktop. VNC, on }the other hand, is super-chunky and chugs along at a snails }pace . . . } }I'm utterly sure that FreeBSD must be able to hack better }graphical remote access services: so, are there any }alternatives to VNC? I looked into GraphOn's Bridges "thin }client," but not only is it commercial software but the }installation program for the RedHat 6.1 version (which I }figured would operate under my Linux compatibility package) }died out and dumped core. } }Has anyone else had better experiences with VNC or know of }any alternatives? } }I figured one option would be to somehow setup the PC as an }X server, but, that's not really feasible in my situation: }the VNC client is about 150k and the Terminal Server client }is about that as well . . . I'm sort of looking for }something I could server up on the web as Java or take with }me on a floppy disk. } }Thanks, } }------- }E. L. Rothwell }xxxxxxxx xxxxxxxxx xxxxxxxxxxxxx }xxxxx xxxxxxxxxxxxx xxxx }------- } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of 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 Nov 25 6:25:55 2000 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 5030337B4CF for ; Sat, 25 Nov 2000 06:25:53 -0800 (PST) Received: from smtp.flashnet.it (ip046.pool-173.cyb.it [195.191.181.47]) by relay.flashnet.it (EMS-RELAY/8.10.0) with SMTP id eAPEPoi24519 for ; Sat, 25 Nov 2000 15:25:50 +0100 Message-Id: <200011251425.eAPEPoi24519@relay.flashnet.it> To: freebsd-questions@freebsd.org X-Mailer: Post Road Mailer for OS/2 (Green Edition Ver 3.0) Date: Sat, 25 Nov 2000 16:25:42 EST From: Andrea Venturoli Reply-To: Andrea Venturoli Subject: ppp filters Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello. I'd like to have ppp work in auto mode; however I'd like to control exactly when it should dial-up or hang, so I put the following in /etc/ppp/ppp.conf: set filter dial 0 permit udp dst eq 8081 set filter alive 0 permit udp dst eq 8081 set filter out 0 deny udp dst eq 8081 set filter out 1 permit 0 0 set timeout 30 set mode auto Then I wrote a small program that sends every 10 seconds an UDP packet to port 8081 to an host outside my network. When I start up this program ppp dials (as I expect), however blocking the packet with the "out" filter prevents it from keeping the connection alive. Is there a way to correct whis? Bye & Thanks av. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 6:26: 2 2000 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 587A137B4D7 for ; Sat, 25 Nov 2000 06:25:53 -0800 (PST) Received: from smtp.flashnet.it (ip046.pool-173.cyb.it [195.191.181.47]) by relay.flashnet.it (EMS-RELAY/8.10.0) with SMTP id eAPEPpi24526 for ; Sat, 25 Nov 2000 15:25:51 +0100 Message-Id: <200011251425.eAPEPpi24526@relay.flashnet.it> To: freebsd-questions@freebsd.org X-Mailer: Post Road Mailer for OS/2 (Green Edition Ver 3.0) Date: Sat, 25 Nov 2000 16:25:43 EST From: Andrea Venturoli Reply-To: Andrea Venturoli Subject: ppp server & windows Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello. I set up a ppp server on a 4.1.1-R system; the modem answers correctly, but when I try connecting from a Windows (both 98 and 2000) machine they can't agree on the connection parameters. I get the following in /var/log/ppp.log: Phase: Using interface: tun1 Phase: deflink: Created in closed state Phase: PPP Started (direct mode). Phase: bundle: Establish Phase: deflink: closed -> opening Phase: deflink: Connected! Phase: deflink: opening -> carrier Phase: deflink: carrier -> lcp Phase: Unknown protocol 0x007d (reserved (Control Escape)) Phase: Unknown protocol 0x7eff (unrecognised protocol) Phase: Unknown protocol 0x007d (reserved (Control Escape)) Phase: Unknown protocol 0x7eff (unrecognised protocol) Phase: Unknown protocol 0x7eff (unrecognised protocol) Phase: Unknown protocol 0x7eff (unrecognised protocol) Phase: Unknown protocol 0x007d (reserved (Control Escape)) Phase: Unknown protocol 0x7eff (unrecognised protocol) Phase: Unknown protocol 0x007d (reserved (Control Escape)) Phase: Unknown protocol 0x7eff (unrecognised protocol) Phase: Unknown protocol 0x2275 (unrecognised protocol) Phase: deflink: Disconnected! Phase: deflink: Connect time: 16 secs: 328 octets in, 543 octets out Phase: deflink: : 12 packets in, 17 packets out Phase: total 54 bytes/sec, peak 97 bytes/sec on Fri Nov 24 20:23:03 2000 Phase: deflink: lcp -> closed Phase: bundle: Dead Phase: PPP Terminated (normal). Any one has any idea on what's going on? I tried searching the Internet for info on how to make a Win machine connect to a UNIX one, but wasn't lucky. If anyone has such a pointer, I'd be glad to know. Bye & Thanks av. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 6:29:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.bna.bellsouth.net (mail2.bna.bellsouth.net [205.152.150.14]) by hub.freebsd.org (Postfix) with ESMTP id 542E637B4CF for ; Sat, 25 Nov 2000 06:29:41 -0800 (PST) Received: from planetwe.com (adsl-63-164-15.bna.bellsouth.net [208.63.164.15]) by mail2.bna.bellsouth.net (3.3.5alt/0.75.2) with ESMTP id JAA10027; Sat, 25 Nov 2000 09:29:28 -0500 (EST) Message-ID: <3A1FCCB6.5030708@planetwe.com> Date: Sat, 25 Nov 2000 08:29:10 -0600 From: Drew Sanford User-Agent: Mozilla/5.0 (X11; U; Linux 2.2.12 i386; en-US; m18) Gecko/20001107 Netscape6/6.0 X-Accept-Language: en MIME-Version: 1.0 To: "Michael J. Ruhl" Cc: freebsd-questions@freebsd.org Subject: Re: netscape hang References: <3A1F264C.7EE54F32@cips.nokia.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG More than likely this would have something to do with the page you are trying to load. Pages with certian types of java on them (Frontpage's hover buttons are famous for this) will lock netscape up every time. Michael J. Ruhl wrote: > Howdy, > > I just cvsup to 4.2-STABLE. Everything was hunky dory until I ran > Netscape. When I run Netscape, it will load my home page, and then > "hang". Looking at top, I see that Netscape is using 99% of the cpu. > > This happened with 4.75 and 4.76. > > Can anybody shed some light on why this might be occuring? > > Thanks! > > Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 7: 1:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from admin.cgocable.net (admin.cgocable.net [24.226.1.21]) by hub.freebsd.org (Postfix) with ESMTP id BB11537B4C5 for ; Sat, 25 Nov 2000 07:01:06 -0800 (PST) Received: from Fuzzy (d141-152-103.home.cgocable.net [24.141.152.103]) by admin.cgocable.net (8.10.0/8.9.3) with SMTP id eAPF2AP21117 for ; Sat, 25 Nov 2000 10:02:10 -0500 (EST) Message-ID: <000d01c05709$de797d80$67988d18@Fuzzy.kico1.on.home.com> From: "Dave Lessard" To: Subject: Dense Newbie Date: Sat, 25 Nov 2000 10:02:24 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000A_01C056C6.CF5150A0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_000A_01C056C6.CF5150A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, My mane is Dave : I have been triing to get an older 486 running under fBSD for a while = now. Due to being on the wave ( Cable TV connection to the internet ), I = am unable to access the FTP sites. Nor am I able to get a CDrom ( SB16 = {CT2740} with a single speed Creative reader {CR-563-B}) recoginized = during a Boot. On this I am attempting to install on 2 HD's a 525 & 406 = Megs. I do know that the NET Card works ( NE200 comp add#0x300 IRQ 10 ), = but have no other machine in my home experimantal network ( Pentium = win'98 and a 486/2 win'95 ) set up to to run as a server. Thus far I = have attempted to try to FTP from the other two machines useing various = freewar ( Getto FTP, War FTP, Imaginary FTP,.... and a few others ) with = know success.... I Started out with downloaded floppies 3.4 release from = your site, and gave up on that due to problems on my end... Broke down = and bought the 4.0 ( march 2000) release, only to find I couldn't get a = CDreader to work ( I was hoping to get a NEC scsi XT-1002 and a NEC 4X = reader working ), so I have swapped every peice of hard ware I can = think of..... My last attempt was a disaster, and I have learned, ( unintentionally, = ) That it is impossible to load 4.0 files with 3.4 boot disks. My = problem is this, Version 3.4 will detect and configure BOTH HD's where = 4.0 seems to recognize only the first ( My case a 525 Meg ). This = creates problems for me attempting to do a DOS install, because I am not = longer able to get DOS6.22 to run on this drive.... and If I do some = swapping to get a 125Mg hd and move the 525 Mg HD into the slave spot, = 4.0 only recognizes the 125, and there is not enough room on that drive = to do anything with ( Yes I did delete the Fat section on the 525 about = 100 times now, during previos attempts of getting fBSD on to it ).=20 The way I see it is this ( And I Hope I Am WRONG ), is that I need to = get a version of 3.4, or keep attempting to get at least the 4.0 /bin = files onto the 525 via a floppy install ( Even the 4.0 book I bought = doesn't recomend that ), the last and most obvious option is out due to = finances, getting an older 1 gig HD ( around here, in Kingston, Ont.... = The older the stuff, the pricier it gets.... The sigle speed CDrom and = sound card costed $50, reason.... { Get this } Supply & Demand ). I am = just not in a position right now to drop a couple of hundered dollars on = a real HD right now ( 30 Gig ), nor have I the time to swap drives = throughout my systems to get the 4.2 Gig free for this BSDbox... my questions are 1) Is there a place in your site that I may download the files I would = need for version 3.4 that I can do under windows, and transfer to = floppies ??? 2) Is there a way to recoup the 525, so that I may partition a 125Meg = slice for dos, and do a DOS install of 4.0 that way ??? 3) Is there something so simple that I missed that could make my life = easier ??? Thank you for your time... Dave ------=_NextPart_000_000A_01C056C6.CF5150A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hello, My mane is Dave :
  I have been triing to get an older 486 = running under=20 fBSD for a while now. Due to being on the wave ( Cable TV connection to = the=20 internet ), I am unable to access the FTP sites. Nor am I able to get a = CDrom (=20 SB16 {CT2740} with a single speed Creative reader {CR-563-B}) = recoginized during=20 a Boot. On this I am attempting to install on 2 HD's a 525 & 406 = Megs. I do=20 know that the NET Card works ( NE200 comp add#0x300 IRQ 10 ), but have = no other=20 machine in my home experimantal network ( Pentium win'98 and a 486/2 = win'95 )=20 set up to to run as a server. Thus far I have attempted to try to FTP = from the=20 other two machines useing various freewar ( Getto FTP, War FTP, = Imaginary=20 FTP,.... and a few others ) with know success.... I Started out with = downloaded=20 floppies 3.4 release from your site, and gave up on that due to problems = on my=20 end... Broke down and bought the 4.0 ( march 2000) release, only to find = I=20 couldn't get a CDreader to work ( I was hoping to get a NEC scsi XT-1002 = and a=20 NEC 4X reader working  ), so I have swapped every peice of hard = ware I can=20 think of.....
 My last attempt was a disaster, and I have = learned, (=20 unintentionally, ) That it is impossible to load 4.0 files with 3.4 boot = disks.=20 My problem is this, Version 3.4 will detect and configure BOTH HD's = where 4.0=20 seems to recognize only the first ( My case a 525 Meg ). This creates = problems=20 for me attempting to do a DOS install, because I am not longer able to = get=20 DOS6.22 to run on this drive.... and If I do some swapping to get a = 125Mg hd and=20 move the 525 Mg HD into the slave spot, 4.0 only recognizes the 125, and = there=20 is not enough room on that drive to do anything with ( Yes I did delete = the Fat=20 section on the 525 about 100 times now, during previos attempts of = getting fBSD=20 on to it ).
  The way I see it is this ( And I Hope I Am = WRONG ), is=20 that I need to get a version of 3.4, or keep attempting to get at least = the=20 4.0 /bin files onto the 525 via a floppy install ( Even the 4.0 = book I=20 bought doesn't recomend that ), the last and most obvious option is out = due to=20 finances, getting an older 1 gig HD ( around here, in Kingston, Ont.... = The=20 older the stuff, the pricier it gets.... The sigle speed CDrom and sound = card=20 costed $50, reason.... { Get this } Supply & Demand ). I am just not = in a=20 position right now to drop a couple of hundered dollars on a real HD = right now (=20 30 Gig ), nor have I the time to swap drives throughout my systems to = get the=20 4.2 Gig free for this BSDbox...
 my questions are
1) Is there a place in your site that I may download = the files=20 I would need for version 3.4 that I can do under windows, and transfer = to=20 floppies ???
2) Is there a way to recoup the 525, so that I may = partition a=20 125Meg slice for dos, and do a DOS install of 4.0 that way = ???
3) Is there something so simple that I missed that = could make=20 my life easier ???
          &nbs= p;          =20 Thank you for your time...
          &nbs= p;            = ;           =20 Dave
------=_NextPart_000_000A_01C056C6.CF5150A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 7: 2:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 821) id C479337B479; Sat, 25 Nov 2000 07:02:10 -0800 (PST) Date: Sat, 25 Nov 2000 07:02:10 -0800 From: "John W. De Boskey" To: Questions List Subject: ipfw fwd vs. natd redirect Message-ID: <20001125070210.A38070@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 X-Loop: FreeBSD.ORG Hi, I'm looking at two variations to foward mail and web services from the firewall to the appropriate server hosts. Using natd and redirect, I have this working. However, I also want to see what the comparable setup using ipfw is. Unfortunately, I am unable to get this working. I have the following rule in place: ${fwcmd} add fwd ${mailip},25 log tcp from any to ${oip} 25 which produces the following log msg: ipfw: 1400 Forward to ${mailip}:25 TCP remothost:1587 firewallip:25 in via fxp0 a split second later, I get: ipfw: 1500 Divert 8668 TCP firewallip:25 remotehost:1587 out via fxp0 Could someone (if anyone) who is using 'ipfw fwd' please send me an example where this is working? Thanks, John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 7:33:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from phoenix.welearn.com.au (phoenix.welearn.com.au [139.130.44.81]) by hub.freebsd.org (Postfix) with ESMTP id 7B8D837B4C5 for ; Sat, 25 Nov 2000 07:33:49 -0800 (PST) Received: (from sue@localhost) by phoenix.welearn.com.au (8.9.3/8.9.3) id CAA28620 for freebsd-questions@freebsd.org; Sun, 26 Nov 2000 02:31:55 +1100 (EST) (envelope-from sue) Date: Sun, 26 Nov 2000 02:31:53 +1100 From: Sue Blake To: freebsd-questions@freebsd.org Subject: unsorting Message-ID: <20001126023150.F377@welearn.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is there some fairly simple way I can put a list of letters or words, or lines of a text file, into a random order? -- Regards, -*Sue*- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 7:59:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 333B337B4CF; Sat, 25 Nov 2000 07:59:27 -0800 (PST) Received: from thelab.hub.org (CDR22-173.accesscable.net [24.138.22.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8ACC56E2ABB; Sat, 25 Nov 2000 07:58:50 -0800 (PST) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.11.1/8.11.1) with ESMTP id eAPFujD15084; Sat, 25 Nov 2000 11:56:55 -0400 (AST) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Sat, 25 Nov 2000 11:56:26 -0400 (AST) From: The Hermit Hacker To: freebsd-questions@freebsd.org Cc: freebsd-chat@freebsd.org Subject: Linux vs FreeBSD ... Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG over there years, there have been 'lists' passed around that attempted to be as unbiased as possible, listing the pros/cons of each ... can someone send me either a recent URL text doc of this sort? Thanks ... Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 8:10:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from thelab.hub.org (CDR22-173.accesscable.net [24.138.22.173]) by hub.freebsd.org (Postfix) with ESMTP id 694AF37B4CF for ; Sat, 25 Nov 2000 08:10:24 -0800 (PST) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.11.1/8.11.1) with ESMTP id eAPGA2i68613 for ; Sat, 25 Nov 2000 12:10:02 -0400 (AST) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Sat, 25 Nov 2000 12:10:02 -0400 (AST) From: The Hermit Hacker To: freebsd-questions@freebsd.org Subject: Self-installing CD ... How To guide somewhere? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Something I can shove into a clients computer and it will auto-install the operating system and any extra packages for them ... ? thanks ... Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 8:10:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.port.ru (mx1.port.ru [194.67.23.32]) by hub.freebsd.org (Postfix) with ESMTP id 8163D37B4CF for ; Sat, 25 Nov 2000 08:10:28 -0800 (PST) Received: from [213.59.120.169] (helo=user60712) by smtp1.port.ru with smtp (Exim 3.14 #62) id 13zhuC-0001iz-00 for questions@freebsd.org; Sat, 25 Nov 2000 19:10:25 +0300 Message-ID: <000e01c05179$b415e3c0$a9783bd5@user60712> From: "Serg" To: Subject: Date: Sat, 18 Nov 2000 19:07:48 +0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000B_01C05192.D749FFC0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_000B_01C05192.D749FFC0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Hello! I have installed FreeBSD 4.0. It's work very perfectly, but I cannot activate accounting limits sections(man login.conf) in = login.conf. I need yours help! Thanks! ------=_NextPart_000_000B_01C05192.D749FFC0 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable
Hello!
I have installed FreeBSD 4.0. = It's work very=20 perfectly, but
I cannot activate accounting = limits=20 sections(man login.conf) in login.conf.
I need yours help!
Thanks!
------=_NextPart_000_000B_01C05192.D749FFC0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 8:14:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 32A2A37B4CF; Sat, 25 Nov 2000 08:14:08 -0800 (PST) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id eAPGE6X28188; Sat, 25 Nov 2000 11:14:06 -0500 (EST) Date: Sat, 25 Nov 2000 11:14:05 -0500 (EST) From: Trevor Johnson To: The Hermit Hacker Cc: freebsd-questions@FreeBSD.ORG, freebsd-chat@FreeBSD.ORG Subject: Re: Linux vs FreeBSD ... In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > over there years, there have been 'lists' passed around that attempted to > be as unbiased as possible, listing the pros/cons of each ... can someone > send me either a recent URL text doc of this sort? There are several at http://www.futuresouth.com/~fullermd/freebsd/bsd/ , some of which may be under three years old. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 8:18: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 2390337B479 for ; Sat, 25 Nov 2000 08:18:03 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAPGHuD25722; Sat, 25 Nov 2000 08:17:56 -0800 (PST) Date: Sat, 25 Nov 2000 08:17:55 -0800 From: Alfred Perlstein To: Serg Cc: questions@FreeBSD.ORG Subject: Re: your mail Message-ID: <20001125081755.L8051@fw.wintelcom.net> References: <000e01c05179$b415e3c0$a9783bd5@user60712> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000e01c05179$b415e3c0$a9783bd5@user60712>; from buryack_s_v@mail.ru on Sat, Nov 18, 2000 at 07:07:48PM +0300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Serg [001125 08:10] wrote: > Hello! > I have installed FreeBSD 4.0. It's work very perfectly, but > I cannot activate accounting limits sections(man login.conf) in login.conf. > I need yours help! > Thanks! What's the exact problem? Can you not edit the file? -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 8:36:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailout02.sul.t-online.com (mailout02.sul.t-online.com [194.25.134.17]) by hub.freebsd.org (Postfix) with ESMTP id 1629B37B4C5 for ; Sat, 25 Nov 2000 08:36:46 -0800 (PST) Received: from fwd07.sul.t-online.com by mailout02.sul.t-online.com with smtp id 13ziJe-00025d-01; Sat, 25 Nov 2000 17:36:42 +0100 Received: from venus.system7.de (320051988339-0001@[62.224.116.151]) by fwd07.sul.t-online.com with esmtp id 13ziJb-0Hb840C; Sat, 25 Nov 2000 17:36:39 +0100 Received: by venus.system7.de (Postfix, from userid 1001) id 39E4A54E5; Sat, 25 Nov 2000 17:36:32 +0100 (CET) Date: Sat, 25 Nov 2000 17:36:32 +0100 From: Sven.Huster@t-online.de (Sven Huster) To: freebsd-questions@freebsd.org Subject: make question Message-ID: <20001125173632.A5220@venus.system7.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Sender: (null).320051988339-0001@t-dialin.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi there, i am search for a general make rule to do the following. i have file like "access-Y-M-D-H.gz" in a dir, where Y=year, M=month ... and want to create a file "access-Y-M-D.gz" out of this files. can this be done by a general rule, so that i can just invoke % make access-Y-M-D.gz thanks sven To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 8:47:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dcacs.ab.az (unknown [195.239.219.30]) by hub.freebsd.org (Postfix) with SMTP id 9946737B479 for ; Sat, 25 Nov 2000 08:47:10 -0800 (PST) Received: (qmail 17342 invoked from network); 25 Nov 2000 16:46:39 -0000 Received: from search.ab.az (HELO pix301) (195.239.219.12) by dcacs.ab.az with SMTP; 25 Nov 2000 16:46:39 -0000 Message-ID: <000a01be35da$1284fa80$0900000a@ab.az> From: "Vugar Imranov" To: Subject: Urgent Date: Sat, 2 Jan 1999 02:57:09 +0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01BE35FB.972377A0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0007_01BE35FB.972377A0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Thanks for attentions. Hi Sorry that i trouble You. There are some problem with instalation of = the souncard device driver. There is no the driver for souncard ADI1881. = How can I get it? May be other soundcard driver which is present in = source (FreeBSD) be compatible with this device? Thank You before. Vugar Imranov ------=_NextPart_000_0007_01BE35FB.972377A0 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable
Thanks for attentions.
 
Hi Sorry that i trouble You. There are = some problem=20 with instalation of the souncard device driver. There is no the driver = for=20 souncard ADI1881. How can I get it? May be other soundcard driver which = is=20 present in source (FreeBSD) be compatible with this device?
 
Thank You before.
 
 Vugar = Imranov
------=_NextPart_000_0007_01BE35FB.972377A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 8:53: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-relay2.nextra.sk (mail-relay2.nextra.sk [195.168.1.106]) by hub.freebsd.org (Postfix) with SMTP id D014937B4C5 for ; Sat, 25 Nov 2000 08:53:00 -0800 (PST) Received: (qmail 22058 invoked from network); 25 Nov 2000 16:52:59 -0000 Received: from unknown (HELO 195.168.78.171) (195.168.78.171) by smtp1.nx.nextra.sk with SMTP; 25 Nov 2000 16:52:59 -0000 Date: Sat, 25 Nov 2000 17:52:58 +0100 From: Tomas TPS Ulej X-Mailer: The Bat! (v1.48 Beta/6) Business Reply-To: Tomas TPS Ulej Organization: NEXTRA X-Priority: 3 (Normal) Message-ID: <1491898880.20001125175258@ncc.nextra.sk> To: questions@freebsd.org Subject: UNSUBSCRIBE - how? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG From: Majordomo@FreeBSD.ORG To: tps@tps.sk Date: Saturday, November 25, 2000, 5:51:07 PM Subject: Majordomo results ===================Original message text=============== -- >>>> unsubscribe * **** unsubscribe: unknown list 'DEAD'. >>>> >>>> -- END OF COMMANDS To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 9:32:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from w2xo.pgh.pa.us (ipl-229-095.npt-sdsl.stargate.net [208.223.229.95]) by hub.freebsd.org (Postfix) with ESMTP id 6B0BC37B479 for ; Sat, 25 Nov 2000 09:32:55 -0800 (PST) Received: from shazam.w2xo.pgh.pa.us (shazam.w2xo.pgh.pa.us [192.168.5.3]) by w2xo.pgh.pa.us (8.9.3/8.9.3) with ESMTP id RAA57050; Sat, 25 Nov 2000 17:32:41 GMT (envelope-from durham@w2xo.pgh.pa.us) Date: Sat, 25 Nov 2000 12:32:45 -0500 (EST) From: Jim Durham To: Duke Normandin <01031149@3web.net> Cc: igorr@crosswinds.net, freebsd-questions@FreeBSD.ORG Subject: Re: 3.3R <--> win95 In-Reply-To: <20001125014006.A460737B4D7@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 24 Nov 2000, Duke Normandin wrote: > On 24 Nov 00 at 10:44, Igor' Robul' wrote: > > > >On Thu, Nov 23, 2000 at 11:42:50PM +0000, Duke Normandin wrote: > >> I want the following: > >> 3.3R win95 ISP > >> > >> I *have* to use win95 to connect to my ISP. Win95 won't route so I'm > >> pooched as far as connecting to my ISP from the FBSD box - I think. > >> > >> So, for the moment, all I want is an ethernet connection between the two > >> boxes. Should I disable tun0 in rc.conf? Can't the "lo0, tun0 and ep0 > >> co-exist? I thought that "routed" was suppose to do just that. What > >Disable tun0. You don't need it. > >Also, make sure you have made correct crossover. > You need to tell us just what you are trying to accomplish and what you have running on the 3.3 system. I'm not clear on what you want to do. Please explain why you "*have*" to use 95 to dial your ISP. This is not usually the case with any ISP I've dealt with. Are you using userland PPP or kernel PPP? Userland PPP uses the tun0 interface to connect to the internal networking in FreeBSD, so you need it. If you are using the kernel PPP, it's ppp0. What does the ep0 interface connect to? Are you running Samba on the 3.3 box? What are you tring to accomplish? Are you just wanting to telnet or ftp into it from the 95 box, or are you wanting to do file sharing with M$ networking? If so, you need Samba to do M$ networking. Yes, you can have both interfaces running at the same time by netmasking them properly. > The crossover custom (professionally) made and pre-tested. So I'm relying > on that. Do I comment out the following in rc.conf to disable tun0:? > > if_config_tun0="" > > and remove tun0 from the following:? > > network_interface="lo0 tun0 ep0" > > Why would I *have* to do that? What if I wanted to use a modem on tun0 > *and* ep0 for my LAN? Should I not be able to use both, with ppp "bound" to > tun0 only, or does ppp drive the packets on ethernet as well? I'm so > confused, I wouldn't know sh*t from Shine-Olla anymore ;,) Thanks... > So, please give us some info! My first take on this is that you have the cart and horse reversed. The usual way to set this up is to use the userland PPP on FreeBSD in the auto-dial mode to set up a PPP to your ISP, then use the ep0 interface to set up a LAN connection to your 95 boxes via their ethernet interface cards. Then you can turn on address translation on the PPP and the 95 box will look like it's directly on the internet. This is a common setup for small businesses with Windows computers and a FreeBSD box serviing as a gateway and auto dialup. -Jim Durham To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 9:59:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f201.law7.hotmail.com [216.33.237.201]) by hub.freebsd.org (Postfix) with ESMTP id 12E0B37B4CF for ; Sat, 25 Nov 2000 09:59:45 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 25 Nov 2000 09:59:44 -0800 Received: from 24.15.178.198 by lw7fd.law7.hotmail.msn.com with HTTP; Sat, 25 Nov 2000 17:59:44 GMT X-Originating-IP: [24.15.178.198] From: "Wayne Leriche" To: questions@freebsd.org Subject: New BSD install won't work Date: Sat, 25 Nov 2000 17:59:44 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 25 Nov 2000 17:59:44.0932 (UTC) FILETIME=[7E291E40:01C05709] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am trying to install Free BSD 4.0 off CDrom from the BSD powerpak, and am getting hung up on install when the "making a new root filesystem on /dev/rad2****" comes up. What is the problem? thanks. Wleriche@hotmail.com System Intel Celeron 333 with 96MBRam 3.2GBHDD _____________________________________________________________________________________ Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 10: 3: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.icehouse.net (mail.icehouse.net [204.203.53.2]) by hub.freebsd.org (Postfix) with ESMTP id CA0C337B4CF for ; Sat, 25 Nov 2000 10:03:01 -0800 (PST) Received: from deimos.walker.dom (ppp-113.icehouse.net [204.203.52.113]) by mail.icehouse.net (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id KAA15751; Sat, 25 Nov 2000 10:02:55 -0800 X-Authentication-Warning: mail.icehouse.net: Host ppp-113.icehouse.net [204.203.52.113] claimed to be deimos.walker.dom Received: from mars.walker.dom (mars.walker.dom. [192.168.0.1]) by deimos.walker.dom (8.11.1/8.11.1) with SMTP id eAPI2Ti10080; Sat, 25 Nov 2000 10:02:54 -0800 (PST) (envelope-from kew@icehouse.net) From: Keith Walker Date: Sat, 25 Nov 2000 10:02:29 -0800 X-Mailer: KMail [version 1.1.99] Content-Type: Multipart/Mixed; boundary="------------Boundary-00=_54ELFUPCC1GU13OVER8J" To: "Walter C. Pelissero" Cc: questions@freebsd.org Subject: Problem with USB printer MIME-Version: 1.0 Message-Id: <00112510022900.06194@mars.walker.dom> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --------------Boundary-00=_54ELFUPCC1GU13OVER8J Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Ok, a while back (couple of days ago) I posted a question about my Epson 900 not working when attached via the USB cable. I found the solution to the problem. Hopefully this will help others with Epson's that don't seem to work via the USB port. The Epson's must have an initialization string sent to them to wake up the beast. This string only needs to be sent once, after plugging the printer in. Turning off the power doesn't seem to matter, just the power cord. Anyhow, sending the init string once per job is sufficient and harms nothing. The string? In hex code it's: 00 00 00 1b 01 40 45 4a 4c 20 31 32 38 34 2e 34 0a 40 45 4a 4c 20 20 20 20 20 0a Attached is a teeny-tiny C program that will output the string for those of you who read C better than hex codes. We have our cousins over in the Linux world to thank for this information. Huzzah for the linuxer's! Huzzah! :-) -- Keith Walker kew@icehouse.net --------------Boundary-00=_54ELFUPCC1GU13OVER8J Content-Type: text/english; name="epswkup.c" Content-Transfer-Encoding: base64 Content-Description: Epson USB Wakeup Program Content-Disposition: attachment; filename="epswkup.c" LyogLSotQy0qLSAqLwoKLyogdGhpcyBpbmNyZWRpYmx5IHNpbXBsZSBwcm9ncmFtIGNvbnRhaW5z IHRoZSBtYWdpYyB3b3JkcwogICB0byBnZXQgYW4gRXBzb24gcHJpbnRlciAobWluZSdzIGEgRXNw b24gOTAwKSB0byBzdGFydAogICB1c2luZyB0aGUgVVNCIHBvcnQuIElmIHlvdSBkb24ndCBzZW5k IHRoaXMgYWZ0ZXIgYQogICBoYXJkLXBvd2VyLWN5Y2xlICh1bnBsdWcgdGhlIHBvd2VyIGNvcmQs IHBsdWcgaXQgYmFjayBpbikKICAgdGhlIHByaW50ZXIgd2lsbCBkdXRpZnVsbHkgaWdub3JlICpl dmVyeXRoaW5nKiB5b3Ugc2VuZAogICB0byBpdC4KCiAgIEkgZG9uJ3QgYWN0dWFsbHkgdXNlIHRo aXMgcHJvZ3JhbTsgSSBtb2RpZnkgdGhlICoudXBwIGZpbGVzCiAgIGluIEdob3N0c2NyaXB0J3Mg dW5pcHJpbnQgZHJpdmVycywgSSBtb2RpZnkgdGhlIGFwc2ZpbHRlcgogICBwcm9ncmFtIHRvIHNl bmQgYSBwcm9sb2d1ZSBhbmQganVzdCBpbiBnZW5lcmFsIGZpeCB0aGluZ3MKICAgdXAgc28gZXZl cnl0aGluZyB0aGF0IHByaW50cyB3aWxsIHNlbmQgdGhpcyBzdHJpbmcuCgogICBJIGhhdmUgdGhp cyBwcm9ncmFtIGhlcmUgdG8gcmVtaW5kIG1lIGhvdyB0byBkbyBpdCwgYW5kCiAgIHdoYXQgdGhl IGNvZGVzIGFyZS4KCiAgIEtlaXRoIFdhbGtlciwgPGtld0BpY2Vob3VzZS5uZXQ+CiAgIExhdGUg Tm92ZW1iZXIgMjAwMAoqLwoKI2luY2x1ZGUgPHN0ZGlvLmg+CgppbnQgbWFpbihpbnQgYXJnYywg Y2hhciAqKmFyZ3YpCnsKICAgIHByaW50ZigiJWMlYyVjXDAzMyVjQEVKTCAxMjg0LjRcbkBFSkwg ICAgIFxuIiwgMCwgMCwgMCwgMSk7Cn0K --------------Boundary-00=_54ELFUPCC1GU13OVER8J-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 10:11:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from merlin.tacni.net (unknown [216.178.136.166]) by hub.freebsd.org (Postfix) with SMTP id 636DB37B4D7 for ; Sat, 25 Nov 2000 10:11:07 -0800 (PST) Received: (qmail 9672 invoked by alias); 25 Nov 2000 18:11:06 -0000 Received: from unknown (HELO prydn.tacni.net) (166.62.92.38) by 216.178.136.168 with SMTP; 25 Nov 2000 18:11:06 -0000 Received: (qmail 75838 invoked by uid 1001); 25 Nov 2000 18:10:51 -0000 Date: Sat, 25 Nov 2000 12:10:51 -0600 From: Erich Zigler To: freebsd-questions@freebsd.org Subject: Windows Compatibility Message-ID: <20001125121051.A75820@superhero.org> Mail-Followup-To: Erich Zigler , 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-Eric-Conspiracy: There is no conspiracy. X-Shane: Hi Shane! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It has been brought to my attention that there is an application that allows you to run Windows apps on Linux called Win4Lin at http://www.netraverse.com/ I was wondering if there are any such projects in existence for FreeBSD. Because that is what I would prefer to use. -- Erich Zigler Who died and made you superuser? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 10:13:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from george.he.net (george.he.net [216.218.157.2]) by hub.freebsd.org (Postfix) with ESMTP id CB82337B479 for ; Sat, 25 Nov 2000 10:13:28 -0800 (PST) Received: from wiliweld.com (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by george.he.net (8.8.6/8.8.2) with ESMTP id KAA06365; Sat, 25 Nov 2000 10:13:21 -0800 Message-ID: <3A2000BE.AB11581F@wiliweld.com> Date: Sat, 25 Nov 2000 10:11:10 -0800 From: Bill Schoolcraft Organization: " UNIX, A Way of Life !!! " X-Mailer: Mozilla 4.7 [en] (X11; I; SunOS 5.8 i86pc) X-Accept-Language: en MIME-Version: 1.0 To: Krzysztof Parzyszek Cc: Tim McMillen , freebsd-questions@FreeBSD.ORG Subject: Re: VMware for FreeBSD ? References: <3A1E015F.5588E6E5@wiliweld.com> <20001124023630.B7169@buchanan-181-249.stures.iastate> <3A1ECB09.FDF4CDB8@wiliweld.com> <20001124155657.A10072@buchanan-181-249.stures.iastate> <3A1F1471.B5A7F7D4@wiliweld.com> <20001124211929.A12645@buchanan-181-249.stures.iastate> <3A1F5CEC.DF2DDD63@wiliweld.com> <20001125012627.A44419@buchanan-181-249.stures.iastate> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Krzysztof Parzyszek wrote: > > Ok, I have figured something out. VMware stores its configuration > files in /etc/vmware/ I was able to force vmware to display this > message by putting a file `not_configured' in that directory. > Removing it brought the usual behavior back (i.e. it was working > again). My next guess would be to look for file `not_configured' > in the vmware config directory and remove it. > > As I said, in my case vmware stores it's config stuff in > /etc/vmware (it is itself a symbolic link). > > $ ls -l /etc/vmware/ > total 1 > -rw-r--r-- 1 root wheel 344 Oct 20 02:52 config > lrwxr-xr-x 1 root wheel 21 Oct 19 12:17 vmware -> /usr/local/etc/vmware > > If you don't have the file `config', here are contents of mine. If you use > it, make sure the directories are valid. > > $ cat /etc/vmware/config > vmware.fullpath = "/usr/local/lib/vmware/bin/vmware" > wizard.fullpath = "/usr/local/lib/vmware/bin/vmware-wizard" > dhcpd.fullpath = "/usr/local/lib/vmware/bin/vmnet-dhcpd" > loop.fullpath = ""/usr/local/lib/vmware/bin/vmware-loop" > libdir = "/usr/local/lib/vmware/lib" > vmnet1.HostOnlyAddress = "192.168.1.1" > vmnet1.HostOnlyNetMask = "255.255.255.0" > > I hope this helps. Yes that did. "NOW", I can open the VMware Workstation but I get two error screens. The second error screen appears after I close the first error screen GUI. Upon running the `vmware` command from a terminal window in both KDE and Gnome the error states: (first error screen) CANNOT OPEN VMWARE WORKSTATION EXECUTABLE FILE. POSSIBLY AN ISTALLATION ERROR. MODULE 10 INITIALZATION SUCCEEDED. (second error screen) CANNOT OPEN /dev/tty0 NO SUCH FILE OR DIRECTORY. VIRTUAL TERMINAL INITIALZATION FAILED. PERHAPS YOUR KERNEL IS NOT CONFIGURED FOR VIRTUAL TERMINAL SUPPORT. The strange thing is that I can see the VMware workstation in the background, the error gui's are on top of the normal VWware workstation. It disappears along with the last error window though. The next command line error occurs when I was trying to run the `vmware-wizard` command from within a terminal window in KDE. (I tried all this is gnome too, same stuff) (begin command) [root@FreeBSD /etc/vmware]--> vmware-wizard Application initialization failed: no display name and no $DISPLAY environment variable. Could you share what your `echo $DISPLAY` says ? The complaint that /dev/tty0 seems to be a Linux related error for as the error states I have no /dev/tty0, nor can I find the file that has that value set. Thanks. -- Bill Schoolcraft PO Box 210076 San Francisco, CA 94121 "UNIX, A Way of Life !!!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 10:28: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2a.ispchannel.com (smtp.ispchannel.com [24.142.63.7]) by hub.freebsd.org (Postfix) with ESMTP id DE41237B4C5 for ; Sat, 25 Nov 2000 10:28:03 -0800 (PST) Received: from ispchannel.com ([206.31.81.146]) by smtp2a.ispchannel.com (InterMail vK.4.02.00.00 201-232-116 license 7d3764cdaca754bf8ae20adf0db2aa60) with ESMTP id <20001125183054.XJBT382.smtp2a@ispchannel.com> for ; Sat, 25 Nov 2000 10:30:54 -0800 Message-ID: <3A2004ED.11B2C42C@ispchannel.com> Date: Sat, 25 Nov 2000 12:29:01 -0600 From: Mark Hummel Organization: Innovative Solutions X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: FSD Subject: Is the Netscape Port Broken? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've tried to install Netscpae and Communicator several times via the ports collection, but to no avail. When I ftp'd the links found in the Makefiles (I've tried more than one version), I noticed they are different. Is it possible the Netscape site webmaster moved them? Anyway, I tried to perform a manual install according to the readme files of the versions I attempted. Using ns-install (the automatic install program that comes with the full download versions) everthing seemed to work as advertised, but when I try to run Netscape, nothing happens. What can I do to solve my challenge? Any suggestions would be greatly appreciated. Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 10:35:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-2.sjc.telocity.net (mail-2.sjc.telocity.net [216.227.56.42]) by hub.freebsd.org (Postfix) with ESMTP id 5A6B837B4D7 for ; Sat, 25 Nov 2000 10:35:47 -0800 (PST) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-2.sjc.telocity.net (8.9.3/8.9.3) with SMTP id KAA26052; Sat, 25 Nov 2000 10:32:12 -0800 (PST) From: "Otter" To: "Ken Bolingbroke" , Subject: RE: DigiBoard support in 4.2-STABLE? Date: Sat, 25 Nov 2000 13:39:48 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG What's the line in your kernel config that you used for 3.5? Maybe it just needs a little tweak to wire down the resources, rather than letting it search for them. Check the man page for dgb, if you haven't already, to make sure you're on the right track. -Otter }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Ken }Bolingbroke }Sent: Friday, November 24, 2000 11:55 PM }To: freebsd-questions@FreeBSD.ORG }Subject: DigiBoard support in 4.2-STABLE? } } } }I have a 16-port DigiBoard that I've been using under }FreeBSD 2.x and 3.x, }most recently 3.5-STABLE. I just upgraded to 4.2-STABLE, and now the }DigiBoard doesn't work. dmesg shows: } } dgb0: PC/Xe 64K } dgb0 at port 0x220-0x223 iomem 0xfc000-0x10bfff on isa0 } dgb0: BIOS download failed } dgb0: driver is using old-style compatability shims } }Any hints on what I need I need to do to get the DigiBoard working? } }Ken } } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of 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 Nov 25 10:59: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-4.sjc.telocity.net (mail-4.sjc.telocity.net [216.227.56.44]) by hub.freebsd.org (Postfix) with ESMTP id 2E2E437B4CF; Sat, 25 Nov 2000 10:58:57 -0800 (PST) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-4.sjc.telocity.net (8.9.3/8.9.3) with SMTP id KAA10672; Sat, 25 Nov 2000 10:54:13 -0800 (PST) From: "Otter" To: "FreeBSD Questions" , Subject: modifying the /etc/rc script Date: Sat, 25 Nov 2000 14:01:33 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Due to some problems with intermittent pccard identification delays, I need to add a pause in the rc script. 5 seconds should be sufficient, just not sure how to add it. I found WHERE, just not WHAT. It needs to go after it calls rc.pccard, and before it runs rc.network. Thanks in advance. -Otter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 11: 6:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-1.sjc (mail-1.sjc.telocity.net [216.227.56.41]) by hub.freebsd.org (Postfix) with ESMTP id 8EEDC37B4CF for ; Sat, 25 Nov 2000 11:06:15 -0800 (PST) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-1.sjc (8.9.3/8.9.3) with SMTP id LAA28896 for ; Sat, 25 Nov 2000 11:04:53 -0800 (PST) From: "Otter" To: "FreeBSD Questions" Subject: saving pcm mixer settings Date: Sat, 25 Nov 2000 14:10:13 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG After getting the sound working on my laptop (using the pcm driver in 4.2-R) most of the settings start with a value of 75. How would I set it up so that I can tweak certain settings to be set at 100 (or other values) after a reboot. This is on a laptop, so the machine will see many reboots. Thanks. -Otter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 11: 8:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from buchanan-181-249.stures.iastate.edu (buchanan-181-249.stures.iastate.edu [129.186.181.249]) by hub.freebsd.org (Postfix) with ESMTP id D6FD637B4C5 for ; Sat, 25 Nov 2000 11:08:33 -0800 (PST) Received: (from kparz@localhost) by buchanan-181-249.stures.iastate.edu (8.11.1/8.11.1) id eAPJBQh37681; Sat, 25 Nov 2000 13:11:26 -0600 (CST) (envelope-from kparz) Date: Sat, 25 Nov 2000 13:11:26 -0600 From: Krzysztof Parzyszek To: Bill Schoolcraft Cc: Tim McMillen , freebsd-questions@FreeBSD.ORG Subject: Re: VMware for FreeBSD ? Message-ID: <20001125131126.A37654@buchanan-181-249.stures.iastate> References: <3A1E015F.5588E6E5@wiliweld.com> <20001124023630.B7169@buchanan-181-249.stures.iastate> <3A1ECB09.FDF4CDB8@wiliweld.com> <20001124155657.A10072@buchanan-181-249.stures.iastate> <3A1F1471.B5A7F7D4@wiliweld.com> <20001124211929.A12645@buchanan-181-249.stures.iastate> <3A1F5CEC.DF2DDD63@wiliweld.com> <20001125012627.A44419@buchanan-181-249.stures.iastate> <3A2000BE.AB11581F@wiliweld.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <3A2000BE.AB11581F@wiliweld.com>; from bill@wiliweld.com on Sat, Nov 25, 2000 at 10:11:10AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Nov 25, 2000 at 10:11:10AM -0800, Bill Schoolcraft wrote: > I don't know what to do about missing tty's. I don't have them either. > > Could you share what your `echo $DISPLAY` says ? It is just set to `:0.0' -- ,oPq J --- Krzysztof Parzyszek 10/15/2000 1:29am --- 7 `8oP' --- Abandon the search for Truth; settle for a good fantasy. --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 11:12:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id C38B537B479 for ; Sat, 25 Nov 2000 11:12:21 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAPJCKY29934; Sat, 25 Nov 2000 11:12:20 -0800 (PST) Date: Sat, 25 Nov 2000 11:12:20 -0800 From: Alfred Perlstein To: Otter Cc: FreeBSD Questions Subject: Re: saving pcm mixer settings Message-ID: <20001125111220.M8051@fw.wintelcom.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 otterr@telocity.com on Sat, Nov 25, 2000 at 02:10:13PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Otter [001125 11:06] wrote: > After getting the sound working on my laptop (using the pcm driver in > 4.2-R) most of the settings start with a value of 75. How would I set > it up so that I can tweak certain settings to be set at 100 (or other > values) after a reboot. This is on a laptop, so the machine will see > many reboots. Thanks. /usr/local/etc/rc.d/mixer.sh ? -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 11:16:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.gelrevision.nl (mail.gelrevision.nl [195.86.58.10]) by hub.freebsd.org (Postfix) with ESMTP id 31D4B37B4CF for ; Sat, 25 Nov 2000 11:16:14 -0800 (PST) Received: from localhost [195.86.231.176] by mail.gelrevision.nl with ESMTP (SMTPD32-6.00) id AF9410110288; Sat, 25 Nov 2000 20:14:28 +0100 Date: Sat, 25 Nov 2000 20:16:08 +0100 (CET) From: Maarten van Schie To: Alfred Perlstein Cc: Otter , FreeBSD Questions Subject: Re: saving pcm mixer settings In-Reply-To: <20001125111220.M8051@fw.wintelcom.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > /usr/local/etc/rc.d/mixer.sh You could put it there. I use a /etc/rc.local, because my /usr lives inside another slice. Maarten. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 11:21:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-4.sjc.telocity.net (mail-4.sjc.telocity.net [216.227.56.44]) by hub.freebsd.org (Postfix) with ESMTP id CA26237B4CF for ; Sat, 25 Nov 2000 11:21:10 -0800 (PST) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-4.sjc.telocity.net (8.9.3/8.9.3) with SMTP id LAA25421; Sat, 25 Nov 2000 11:16:50 -0800 (PST) From: "Otter" To: "Alfred Perlstein" Cc: "FreeBSD Questions" Subject: RE: saving pcm mixer settings Date: Sat, 25 Nov 2000 14:24:11 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <20001125111220.M8051@fw.wintelcom.net> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alfred, I had thought if this, but wasn't there a rewrite some time back that requires all the .sh scripts in the rc.d directory to work with a start/stop command? Or was it just a compatibility issue and not a requirement to use the start/stop flags? -Otter }-----Original Message----- }From: Alfred Perlstein [mailto:bright@wintelcom.net] }Sent: Saturday, November 25, 2000 2:12 PM }To: Otter }Cc: FreeBSD Questions }Subject: Re: saving pcm mixer settings } } }* Otter [001125 11:06] wrote: }> After getting the sound working on my laptop (using the }pcm driver in }> 4.2-R) most of the settings start with a value of 75. How }would I set }> it up so that I can tweak certain settings to be set at }100 (or other }> values) after a reboot. This is on a laptop, so the }machine will see }> many reboots. Thanks. } }/usr/local/etc/rc.d/mixer.sh } }? } }-- }-Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] }"I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 11:22:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from femail4.sdc1.sfba.home.com (femail4.sdc1.sfba.home.com [24.0.95.84]) by hub.freebsd.org (Postfix) with ESMTP id 97F2737B4C5 for ; Sat, 25 Nov 2000 11:22:29 -0800 (PST) Received: from cx443070b ([24.0.36.170]) by femail4.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001125192055.DKKZ17936.femail4.sdc1.sfba.home.com@cx443070b>; Sat, 25 Nov 2000 11:20:55 -0800 Message-ID: <001001c05715$5dc5aea0$aa240018@cx443070b> From: "Jeremiah Gowdy" To: "Erich Zigler" , References: <20001125121051.A75820@superhero.org> Subject: Re: Windows Compatibility Date: Sat, 25 Nov 2000 11:24:43 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > It has been brought to my attention that there is an application that allows > you to run Windows apps on Linux called Win4Lin at http://www.netraverse.com/ > I was wondering if there are any such projects in existence for FreeBSD. > Because that is what I would prefer to use. /usr/ports/emulation/vmware To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 11:24:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id AF0D637B4C5 for ; Sat, 25 Nov 2000 11:24:19 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAPJOD300354; Sat, 25 Nov 2000 11:24:13 -0800 (PST) Date: Sat, 25 Nov 2000 11:24:13 -0800 From: Alfred Perlstein To: Maarten van Schie Cc: Otter , FreeBSD Questions Subject: Re: saving pcm mixer settings Message-ID: <20001125112413.N8051@fw.wintelcom.net> References: <20001125111220.M8051@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from AnEra@dds.nl on Sat, Nov 25, 2000 at 08:16:08PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Maarten van Schie [001125 11:16] wrote: > > /usr/local/etc/rc.d/mixer.sh > > You could put it there. I use a /etc/rc.local, because my /usr lives > inside another slice. by the time /usr/local/etc/rc.d/*.sh runs /usr should be mounted. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 11:24:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id E3ABA37B4C5 for ; Sat, 25 Nov 2000 11:24:56 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAPJOst00371; Sat, 25 Nov 2000 11:24:54 -0800 (PST) Date: Sat, 25 Nov 2000 11:24:54 -0800 From: Alfred Perlstein To: Otter Cc: FreeBSD Questions Subject: Re: saving pcm mixer settings Message-ID: <20001125112454.O8051@fw.wintelcom.net> References: <20001125111220.M8051@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from otterr@telocity.com on Sat, Nov 25, 2000 at 02:24:11PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Otter [001125 11:21] wrote: > Alfred, > I had thought if this, but wasn't there a rewrite some time back that > requires all the .sh scripts in the rc.d directory to work with a > start/stop command? Or was it just a compatibility issue and not a > requirement to use the start/stop flags? For your case it wouldn't matter. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 11:26:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.gelrevision.nl (mail.gelrevision.nl [195.86.58.10]) by hub.freebsd.org (Postfix) with ESMTP id E871937B479 for ; Sat, 25 Nov 2000 11:26:23 -0800 (PST) Received: from localhost [195.86.231.176] by mail.gelrevision.nl with ESMTP (SMTPD32-6.00) id A1F8DC1C009E; Sat, 25 Nov 2000 20:24:40 +0100 Date: Sat, 25 Nov 2000 20:26:20 +0100 (CET) From: Maarten van Schie To: Alfred Perlstein Cc: Otter , FreeBSD Questions Subject: Re: saving pcm mixer settings In-Reply-To: <20001125112413.N8051@fw.wintelcom.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > by the time /usr/local/etc/rc.d/*.sh runs /usr should be mounted. Yes, but in case of some sort of failure it won't. But I want some things to apply in any case. Maarten. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 11:28:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.gelrevision.nl (mail.gelrevision.nl [195.86.58.10]) by hub.freebsd.org (Postfix) with ESMTP id 7029137B4F9 for ; Sat, 25 Nov 2000 11:28:16 -0800 (PST) Received: from localhost [195.86.231.176] by mail.gelrevision.nl with ESMTP (SMTPD32-6.00) id A268E2F700D8; Sat, 25 Nov 2000 20:26:32 +0100 Date: Sat, 25 Nov 2000 20:28:11 +0100 (CET) From: Maarten van Schie To: Alfred Perlstein Cc: Otter , FreeBSD Questions Subject: Re: saving pcm mixer settings In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 25 Nov 2000, Maarten van Schie wrote: > > by the time /usr/local/etc/rc.d/*.sh runs /usr should be mounted. > > Yes, but in case of some sort of failure it won't. But I want some things > to apply in any case. > > Maarten. > > But that doesn't apply to the mixer :] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 11:33: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sabre.velocet.net (sabre.velocet.net [198.96.118.66]) by hub.freebsd.org (Postfix) with ESMTP id 9043937B4C5 for ; Sat, 25 Nov 2000 11:33:03 -0800 (PST) Received: from office.tor.velocet.net (trooper.velocet.net [204.138.45.2]) by sabre.velocet.net (Postfix) with ESMTP id B1736137F3A; Sat, 25 Nov 2000 14:30:37 -0500 (EST) Received: (from dgilbert@localhost) by office.tor.velocet.net (8.9.3/8.9.3) id OAA79404; Sat, 25 Nov 2000 14:33:02 -0500 (EST) (envelope-from dgilbert) From: David Gilbert MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14880.5101.615258.908158@trooper.velocet.net> Date: Sat, 25 Nov 2000 14:33:01 -0500 (EST) To: Cc: Subject: [FBSD-Q] VNCServer and Alternatives: Where to go? In-Reply-To: <200011250802.AA11010594@wdc.callgtn.com> References: <200011250802.AA11010594@wdc.callgtn.com> X-Mailer: VM 6.75 under 20.4 "Emerald" XEmacs Lucid Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>> "Erik" == Erik Rothwell writes: Erik> Hi folks, I'm looking for a decent BSD interpretation of the Erik> remote desktop phenominon (a la Microsoft Terminal server, Erik> Timbuktu, PCAnywhere, etc.) There are currently two things that I use, but keep in mind that I'm Microsoft-free. DXPC (see the port) is the "Differential X Protocol Compressor" ... it runs on both the server and the client to reduce the communication. It does caching and compressing and all kinds of other things to reduce the data flow over the link. It makes X usable over fairly long distance links. DXPC doesn't virtualize the desktop, but it does transmit the X well. I use it over DSL often and used it over ssh on the T1 at BSD-con. DXPC is a single TCP connection as well ... so it's easy to tunnel. I also use xemacs. XEmacs is capable of having multiple X servers open at once and allows you to have your editing/mail/news/kitchensink suite open on multiple desktops. It even allows you to open a running X session in text mode (it's the only application I know that can simultaniously interact with text and graphics on multiple terminals). Dave. -- ============================================================================ |David Gilbert, Velocet Communications. | Two things can only be | |Mail: dgilbert@velocet.net | equal if and only if they | |http://www.velocet.net/~dgilbert | are precisely opposite. | =========================================================GLO================ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 11:35:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from merlin.tacni.net (unknown [216.178.136.166]) by hub.freebsd.org (Postfix) with SMTP id E829837B4C5 for ; Sat, 25 Nov 2000 11:35:20 -0800 (PST) Received: (qmail 14286 invoked by alias); 25 Nov 2000 19:35:18 -0000 Received: from unknown (HELO prydn.tacni.net) (166.62.92.130) by 216.178.136.168 with SMTP; 25 Nov 2000 19:35:18 -0000 Received: (qmail 76256 invoked by uid 1001); 25 Nov 2000 19:35:03 -0000 Date: Sat, 25 Nov 2000 13:35:03 -0600 From: Erich Zigler To: freebsd-questions@FreeBSD.ORG Subject: Re: Windows Compatibility Message-ID: <20001125133503.A76218@superhero.org> Mail-Followup-To: Erich Zigler , freebsd-questions@FreeBSD.ORG References: <20001125121051.A75820@superhero.org> <001001c05715$5dc5aea0$aa240018@cx443070b> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <001001c05715$5dc5aea0$aa240018@cx443070b>; from jgowdy@home.com on Sat, Nov 25, 2000 at 11:24:43AM -0800 X-Eric-Conspiracy: There is no conspiracy. X-Shane: Hi Shane! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Nov 25, 2000 at 11:24:43AM -0800, Jeremiah Gowdy wrote: > > I was wondering if there are any such projects in existence for FreeBSD. > > Because that is what I would prefer to use. > /usr/ports/emulation/vmware Tried, it. Not impressed. Too slow, and took up too may system resources. -- Erich Zigler "He asked if i wanted it tested. I said no, I wanted them to sprinkle pixie dust on it and make it work again." -Randy Bush To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 11:39: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailgw1.netvision.net.il (mailgw1.netvision.net.il [194.90.1.14]) by hub.freebsd.org (Postfix) with ESMTP id 8D60E37B4CF for ; Sat, 25 Nov 2000 11:39:00 -0800 (PST) Received: from user (ras5-p183.tlv.netvision.net.il [62.0.68.183]) by mailgw1.netvision.net.il (8.9.3/8.9.3) with SMTP id VAA08850 for ; Sat, 25 Nov 2000 21:38:56 +0200 (IST) Message-ID: <000801c0564d$f7cf4380$b744003e@user> From: "nahshong" To: Subject: From Ranit Remi Date: Fri, 24 Nov 2000 21:37:20 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C0565E.B98B42C0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C0565E.B98B42C0 Content-Type: text/plain; charset="windows-1255" Content-Transfer-Encoding: quoted-printable Hello, I had submited a free mail through your site in spain: = ranitremi@citymail.com Now I cant understand how should I read my mail via your site. For your answer - i thank Ranit ------=_NextPart_000_0005_01C0565E.B98B42C0 Content-Type: text/html; charset="windows-1255" Content-Transfer-Encoding: quoted-printable
Hello,
I had submited a free mail through your = site in=20 spain: ranitremi@citymail.com<= /DIV>
Now I cant understand how should I read = my mail via=20 your site.
 
For your answer - i thank
Ranit
------=_NextPart_000_0005_01C0565E.B98B42C0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 11:39:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx-out.daemonmail.net (mx-out.daemonmail.net [209.75.5.3]) by hub.freebsd.org (Postfix) with ESMTP id 945EE37B4F9 for ; Sat, 25 Nov 2000 11:39:12 -0800 (PST) Received: from mx0.emailqueue.net (localhost.daemonmail.net [127.0.0.1]) by mx-out.daemonmail.net (8.9.3/8.9.3) with SMTP id LAA21121; Sat, 25 Nov 2000 11:39:01 -0800 (PST) (envelope-from kkonstan@webdaemon.net) Received: from webdaemon.net (webdaemon.net [213.5.85.188]) by mail.webdaemon.net with ESMTP id XU503ZB2 Sat, 25 Nov 2000 11:38:57 -0700 (PST) Message-ID: <3A20154D.692E59B4@webdaemon.net> Date: Sat, 25 Nov 2000 21:38:53 +0200 From: Konstantinos Konstantinidis Reply-To: kkonstan@duth.gr Organization: I've heard of it. X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-RELEASE i386) X-Accept-Language: en, el MIME-Version: 1.0 To: Otter Cc: FreeBSD Questions Subject: Re: modifying the /etc/rc script References: Content-Type: text/plain; charset=iso-8859-7 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Check sleep(1). You could simply insert 'sleep 5' to get the 5 second pause if that's what you really want, but surely there must be a more elegant way. K. Konstantinidis Otter wrote: > > Due to some problems with intermittent pccard identification delays, I > need to add a pause in the rc script. 5 seconds should be sufficient, > just not sure how to add it. I found WHERE, just not WHAT. It needs to > go after it calls rc.pccard, and before it runs rc.network. Thanks in > advance. > -Otter > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-mobile" in the body of 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 Nov 25 12:16:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f131.law7.hotmail.com [216.33.237.131]) by hub.freebsd.org (Postfix) with ESMTP id 7CDB437B479 for ; Sat, 25 Nov 2000 12:16:32 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 25 Nov 2000 12:16:32 -0800 Received: from 24.24.200.246 by lw7fd.law7.hotmail.msn.com with HTTP; Sat, 25 Nov 2000 20:16:32 GMT X-Originating-IP: [24.24.200.246] From: "raf ar" To: questions@FreeBSD.org Subject: which unix to study? Date: Sat, 25 Nov 2000 15:16:32 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 25 Nov 2000 20:16:32.0290 (UTC) FILETIME=[9A209020:01C0571C] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG with the different flavors of unix, i dont know which one to learn, im a telecommunications student at devry and i know sooner or later i will be working on unix systems whether i like it or not, i have been reading the handbook in freebsd.org AND I FIND FREEBSD VERY INTERESTING, NOW MY QUESTION IS, WHAT FLAVOR OF UNIX WOULD YOU RECOMMEND FOR ME TO LEARN, IS FREE BSD THE CHOICE? KINDLY REPLY TO THIS E-MAIL, THNX...THEEO _____________________________________________________________________________________ Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 12:36:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sprig.tougas.net (unknown [216.44.20.42]) by hub.freebsd.org (Postfix) with ESMTP id EFC2237B479 for ; Sat, 25 Nov 2000 12:36:22 -0800 (PST) Received: (from damien@localhost) by sprig.tougas.net (8.11.1/8.11.1) id eAPKdWP01395 for freebsd-questions@freebsd.org; Sat, 25 Nov 2000 15:39:32 -0500 (EST) (envelope-from damien) Date: Sat, 25 Nov 2000 15:39:31 -0500 From: Damien Tougas To: freebsd-questions@freebsd.org Subject: Terminals with an external serial port? Message-ID: <20001125153930.A1385@tougas.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 X-Loop: FreeBSD.ORG Hello, I have a Relisys TR-175 terminal which I have successfully working with FreeBSD. I have noticed that this terminal has an external serial port for adding on additional devices (mouse, printer, etc.). How would I configure FreeBSD to recognize this serial port and use it? I have the manual for the terminal, but it doesn't go into any details on how to set it up, it basically says to consult the documentation for your OS. If anyone could point me in the right direction, that would be much appreciated. Thank You. -- Damien Tougas Systems Administrator Carroll-Net, Inc. http://www.carroll.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 12:46:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost01.reflexnet.net (mailhost01.reflexnet.net [64.6.192.82]) by hub.freebsd.org (Postfix) with ESMTP id A092437B4D7; Sat, 25 Nov 2000 12:46:33 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Sat, 25 Nov 2000 12:45:01 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAPKkVj95454; Sat, 25 Nov 2000 12:46:31 -0800 (PST) (envelope-from cjc) Date: Sat, 25 Nov 2000 12:46:30 -0800 From: "Crist J . Clark" To: Otter Cc: FreeBSD Questions , mobile@FreeBSD.ORG Subject: Re: modifying the /etc/rc script Message-ID: <20001125124630.W12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from otterr@telocity.com on Sat, Nov 25, 2000 at 02:01:33PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Nov 25, 2000 at 02:01:33PM -0500, Otter wrote: > Due to some problems with intermittent pccard identification delays, I > need to add a pause in the rc script. 5 seconds should be sufficient, > just not sure how to add it. I found WHERE, just not WHAT. It needs to > go after it calls rc.pccard, and before it runs rc.network. Thanks in > advance. Personally, I think it would make more sense to put the delay in rc.pccard, --- /etc/rc.pccard Sun Aug 6 22:55:48 2000 +++ rc.pccard Sat Nov 25 12:44:33 2000 @@ -23,5 +23,8 @@ echo -n "Enable PC-card." pccardd ${pccardd_flags} 2>&1 > /var/log/pccardd.debug + + # Pause for PCCard to initialize + sleep 5 ;; esac -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 12:53:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from deliver.hccnet.nl (deliver.hccnet.nl [193.172.127.77]) by hub.freebsd.org (Postfix) with ESMTP id 1E9D137B479 for ; Sat, 25 Nov 2000 12:53:11 -0800 (PST) Received: from parmenides.utp.net by deliver.hccnet.nl via uds132-123.dial.hccnet.nl [193.173.123.132] with ESMTP id VAA07489 (8.8.8/1.13); Sat, 25 Nov 2000 21:53:07 +0100 (MET) Received: from localhost (janko@localhost) by parmenides.utp.net (8.9.3/8.9.3) with ESMTP id VAA00452; Sat, 25 Nov 2000 21:53:03 +0100 (CET) (envelope-from janko@compuserve.com) X-Authentication-Warning: parmenides.utp.net: janko owned process doing -bs Date: Sat, 25 Nov 2000 21:53:02 +0100 (CET) From: Janko van Roosmalen X-Sender: janko@parmenides.utp.net To: Sue Blake Cc: freebsd-questions@FreeBSD.ORG Subject: Re: unsorting In-Reply-To: <20001126023150.F377@welearn.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The "Perl Cookbook" by Christiansen & Torkington has recipes to do that in chapter 2 and 8. ===Janko van Roosmalen - Vught - Netherlands=== On Sun, 26 Nov 2000, Sue Blake wrote: > > Is there some fairly simple way I can put a list of letters or words, > or lines of a text file, into a random order? > > -- > > Regards, > -*Sue*- > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 13:10:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.prod.itd.earthlink.net [207.217.121.50]) by hub.freebsd.org (Postfix) with ESMTP id 2F22937B65E for ; Sat, 25 Nov 2000 13:10:08 -0800 (PST) Received: from 1Cust99.tnt2.krk1.da.uu.net (1Cust99.tnt2.krk1.da.uu.net [63.23.252.99]) by avocet.prod.itd.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id NAA14374 for ; Sat, 25 Nov 2000 13:10:05 -0800 (PST) Date: Sat, 25 Nov 2000 15:10:01 -0600 (CST) From: David Talkington X-Sender: dtalk@sherman.spotnet.org To: questions@FreeBSD.ORG Subject: Re: web hosting with a dynamic IP address question In-Reply-To: <20001125112916.A372@ilex.kicelo.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Neat idea. I seem to recall that there are services that can do this for you, but it'd be more fun to do it yourself! There are lots of interesting approaches. I currently use both rsync and scp (ssh secure copy) to do background uploads, using public-key authentication. I also use this method to distribute things like proxy configuration scripts. It should be pretty simple to perhaps have your web page link to a PHP script that contains the freshly-uploaded IP, but for this to work, you'd need some way to do an automatic upload without a password (and PHP or some other scripting language). Alternatively, I also use a simple shell script to email me the IP addresses of my remote dialup gateway servers (from ip-up, as Mr. Garcia suggests), so if your linking is done from a server that lacks a method for passwordless uploads, you could maybe use email instead, and do this with a Perl script that greps your mailbox for the IP address. Or hey, better yet, use procmail to catch the message and put it someplace convenient, so your script doesn't have to search your whole mailbox. I'd be happy to send you my rsync and ip-up scripts if they'll be of use to you while you tinker. - -d - -- David Talkington Prairienet / Community Networking Initiative 217-244-1962 dtalk@prairienet.org Manuel Enrique Garcia Cuesta wrote: > David, > >=== David Banning escribia >(Sat, Nov 25, 2000 at 12:37:37AM -0500): > >> >> I would like to call into my computer and access it like a web host >> from somewhere else on the web. My thought is that this should be possible >> if my IP address is known. >> >> Since my dynamic IP address changes on every dialup, >> would it not be possible for my FreeBSD machine to, following connection >> do some inquiry into what my IP address is, then have FreeBSD copy the >> IP address to my external WEB site, where I could have a link/script >> that takes the address and guides me into my home server? > > It should be possible, have you cheked /etc/ppp/ppp.linkup >(for userland ppp ) or /etc/ppp/ip-up (for kernel ppp ) ? Or maybe >you are not using ppp ? > > Manuel Garcia > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 Comment: Made with pgp4pine 1.75-6 iQEVAwUBOiAqrb1ZYOtSwT+tAQE64gf9HAXQ7uFN7J4PN1Ja6W3UCEWV7dExl8AH 4h6ME3zMdOYolDDY/6S3/Idhv03Ane0P0ouG3Ch9oYGRGHEexynRhvzN5iohBwHK rnsHm2evYeEwe8hBGMOTs3GaQznpwlbjIGanpjo4o/JcF8kVtEtIRElN4KLHgvCk h1/ADXg68eouaMCdKVS347A7NjSjWj+WcmF9sOhlXILMLcGMiBmVN+mIV2geRTq3 iPPTEMJY5dWpwBgGi+usFib4Pgv49witxNEKrk/tXSa6P68+7p04vCpKcjcBsSm9 qHOJSAtNfT1pQlcT+yx4jS0MAt1LXJ+iBXQztEOug6DleJ5itoeJ9A== =abKx -----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 Nov 25 13:15: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dns1.micahtek.com (unknown [198.160.140.244]) by hub.freebsd.org (Postfix) with ESMTP id 8EABF37B479 for ; Sat, 25 Nov 2000 13:15:05 -0800 (PST) Received: from micahtek.com (IDENT:root@localhost [127.0.0.1]) by dns1.micahtek.com (8.9.3/8.9.3) with ESMTP id PAA12656 for ; Sat, 25 Nov 2000 15:18:16 -0600 Message-ID: <3A20D61F.664DDD97@micahtek.com> Date: Sun, 26 Nov 2000 03:21:36 -0600 From: snerfu X-Mailer: Mozilla 4.72 [en] (X11; U; Linux 2.2.14-5.0 i586) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: booting fbsd with the alpha milo loader? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I was wondering if it is possible to boot fbsd with the alpha milo loader. I have an alpha XL 300 which doesnt seem to support anything but arc firmware with no upgrade. My only chance is to try and get fbsd to run on the milo loader that i used with the arc firmware. if you can find out anything, please let me know...thanks alot. snerfu snerfu@micahtek.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 13:50:34 2000 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 42C4437B479 for ; Sat, 25 Nov 2000 13:50:32 -0800 (PST) Received: from fedde (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.0/8.11.0.Beta3) with ESMTP id eAPLoOJ20616; Sat, 25 Nov 2000 14:50:24 -0700 (MST) Message-Id: <200011252150.eAPLoOJ20616@fedde.littleton.co.us> To: Damien Tougas Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Terminals with an external serial port? In-Reply-To: <20001125153930.A1385@tougas.net> From: Chris Fedde Date: Sat, 25 Nov 2000 14:50:24 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 25 Nov 2000 15:39:31 -0500 Damien Tougas wrote: +------------------ | Hello, | | I have a Relisys TR-175 terminal which I have successfully working with | FreeBSD. I have noticed that this terminal has an external serial port | for adding on additional devices (mouse, printer, etc.). How would I | configure FreeBSD to recognize this serial port and use it? I have the | manual for the terminal, but it doesn't go into any details on how | to set it up, it basically says to consult the documentation for your | OS. | | If anyone could point me in the right direction, that would be much | appreciated. | | Thank You. +------------------ In my experience (with tandem, televidio, and HP terminals) there are escape sequences in the terminal control codes that enable and disable various behaviors on these ports. For example you send a sequence to the terminal that tells it to direct all subsequent data to the aux port till it sees the right sequence. Or you can tell it to mirror every byte to the aux port. Often there is a hot key on the terminal that will cause the display memory to be dumped. Sometimes there is a code that will cause a short on an unused pair of pins to allow it to open a cash drawer. There were also various external input devices available such as light pens, scanners and mice that put data into the input stream. Details of this functionality varied widely between different terminal manufacturers. And often different models from the same vendor differed greatly. Sometimes there were different manuals for each set of these features. So without the complete manual set it is hard to figure out what the terminal is capable of. Good luck chris -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 13:54:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-2.sjc.telocity.net (mail-2.sjc.telocity.net [216.227.56.42]) by hub.freebsd.org (Postfix) with ESMTP id A441B37B4C5 for ; Sat, 25 Nov 2000 13:54:42 -0800 (PST) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-2.sjc.telocity.net (8.9.3/8.9.3) with SMTP id NAA02607; Sat, 25 Nov 2000 13:47:12 -0800 (PST) From: "Otter" To: "raf ar" , Subject: RE: which unix to study? Date: Sat, 25 Nov 2000 16:54:48 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Telecom, huh? I'd suggest you look around at some of the equipment you'll be working with. If you plan to work with Lucent phone systems, I'd recommend getting familiar with Solaris (2.5.1 used currently on several of their systems). -Otter }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of raf ar }Sent: Saturday, November 25, 2000 3:17 PM }To: questions@FreeBSD.ORG }Subject: which unix to study? } } }with the different flavors of unix, i dont know which one to }learn, im a }telecommunications student at devry and i know sooner or }later i will be }working on unix systems whether i like it or not, i have }been reading the }handbook in freebsd.org AND I FIND FREEBSD VERY INTERESTING, }NOW MY QUESTION }IS, WHAT FLAVOR OF UNIX WOULD YOU RECOMMEND FOR ME TO LEARN, }IS FREE BSD THE }CHOICE? KINDLY REPLY TO THIS E-MAIL, THNX...THEEO }_____________________________________________________________ }________________________ }Get more from the Web. FREE MSN Explorer download : }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 Sat Nov 25 14:12:41 2000 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 0662A37B4C5 for ; Sat, 25 Nov 2000 14:12:40 -0800 (PST) Received: from fedde (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.0/8.11.0.Beta3) with ESMTP id eAPMCbJ20716; Sat, 25 Nov 2000 15:12:37 -0700 (MST) Message-Id: <200011252212.eAPMCbJ20716@fedde.littleton.co.us> To: "raf ar" Cc: questions@FreeBSD.ORG Subject: Re: which unix to study? In-Reply-To: From: Chris Fedde Date: Sat, 25 Nov 2000 15:12:37 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 25 Nov 2000 15:16:32 -0500 "raf ar" wrote: +------------------ | with the different flavors of unix, i dont know which one to learn, im a | telecommunications student at devry and i know sooner or later i will be | working on unix systems whether i like it or not, i have been reading the | handbook in freebsd.org AND I FIND FREEBSD VERY INTERESTING, NOW MY | QUESTION IS, WHAT FLAVOR OF UNIX WOULD YOU RECOMMEND FOR ME TO LEARN, | IS FREE BSD THE CHOICE? KINDLY REPLY TO THIS E-MAIL, THNX...THEEO +------------------ There are lots of choices that are good. By and large they are quite similar. But the difference is in the details. Pick one that works on your available hardware. Work with it for a few months, then get something else and make it work. After a while you will be able to answer your question for yourself. chris -- Chris Fedde 303 773 9134 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 14:13:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 21D9737B4C5 for ; Sat, 25 Nov 2000 14:13:53 -0800 (PST) Received: (qmail 78841 invoked by uid 100); 25 Nov 2000 22:13:52 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14880.14752.15791.4032@guru.mired.org> Date: Sat, 25 Nov 2000 16:13:52 -0600 (CST) To: Keith Walker Cc: questions@freebsd.org Subject: Re: Problem with USB printer In-Reply-To: <91518264@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG You should submit this as a PR, which means there's a better chance that the person submitting the PR will see it, and fix the driver. Thanx, types: > - --------------Boundary-00=_54ELFUPCC1GU13OVER8J > Content-Type: text/plain; > charset="iso-8859-1" > Content-Transfer-Encoding: 8bit > > Ok, a while back (couple of days ago) I posted a question about my Epson 900 > not working when attached via the USB cable. > > I found the solution to the problem. Hopefully this will help others with > Epson's that don't seem to work via the USB port. > > The Epson's must have an initialization string sent to them to wake up the > beast. This string only needs to be sent once, after plugging the printer in. > Turning off the power doesn't seem to matter, just the power cord. Anyhow, > sending the init string once per job is sufficient and harms nothing. > > The string? In hex code it's: > > 00 00 00 1b 01 40 45 4a 4c 20 31 32 38 34 2e 34 0a 40 45 4a 4c 20 20 20 20 20 > 0a > > Attached is a teeny-tiny C program that will output the string for those of > you who read C better than hex codes. > > We have our cousins over in the Linux world to thank for this information. > Huzzah for the linuxer's! Huzzah! :-) > > - -- > Keith Walker > kew@icehouse.net > - --------------Boundary-00=_54ELFUPCC1GU13OVER8J > Content-Type: text/english; > name="epswkup.c" > Content-Transfer-Encoding: base64 > Content-Description: Epson USB Wakeup Program > Content-Disposition: attachment; filename="epswkup.c" > > LyogLSotQy0qLSAqLwoKLyogdGhpcyBpbmNyZWRpYmx5IHNpbXBsZSBwcm9ncmFtIGNvbnRhaW5z > IHRoZSBtYWdpYyB3b3JkcwogICB0byBnZXQgYW4gRXBzb24gcHJpbnRlciAobWluZSdzIGEgRXNw > b24gOTAwKSB0byBzdGFydAogICB1c2luZyB0aGUgVVNCIHBvcnQuIElmIHlvdSBkb24ndCBzZW5k > IHRoaXMgYWZ0ZXIgYQogICBoYXJkLXBvd2VyLWN5Y2xlICh1bnBsdWcgdGhlIHBvd2VyIGNvcmQs > IHBsdWcgaXQgYmFjayBpbikKICAgdGhlIHByaW50ZXIgd2lsbCBkdXRpZnVsbHkgaWdub3JlICpl > dmVyeXRoaW5nKiB5b3Ugc2VuZAogICB0byBpdC4KCiAgIEkgZG9uJ3QgYWN0dWFsbHkgdXNlIHRo > aXMgcHJvZ3JhbTsgSSBtb2RpZnkgdGhlICoudXBwIGZpbGVzCiAgIGluIEdob3N0c2NyaXB0J3Mg > dW5pcHJpbnQgZHJpdmVycywgSSBtb2RpZnkgdGhlIGFwc2ZpbHRlcgogICBwcm9ncmFtIHRvIHNl > bmQgYSBwcm9sb2d1ZSBhbmQganVzdCBpbiBnZW5lcmFsIGZpeCB0aGluZ3MKICAgdXAgc28gZXZl > cnl0aGluZyB0aGF0IHByaW50cyB3aWxsIHNlbmQgdGhpcyBzdHJpbmcuCgogICBJIGhhdmUgdGhp > cyBwcm9ncmFtIGhlcmUgdG8gcmVtaW5kIG1lIGhvdyB0byBkbyBpdCwgYW5kCiAgIHdoYXQgdGhl > IGNvZGVzIGFyZS4KCiAgIEtlaXRoIFdhbGtlciwgPGtld0BpY2Vob3VzZS5uZXQ+CiAgIExhdGUg > Tm92ZW1iZXIgMjAwMAoqLwoKI2luY2x1ZGUgPHN0ZGlvLmg+CgppbnQgbWFpbihpbnQgYXJnYywg > Y2hhciAqKmFyZ3YpCnsKICAgIHByaW50ZigiJWMlYyVjXDAzMyVjQEVKTCAxMjg0LjRcbkBFSkwg > ICAgIFxuIiwgMCwgMCwgMCwgMSk7Cn0K > > - --------------Boundary-00=_54ELFUPCC1GU13OVER8J-- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- Mike Meyer http://www.mired.org/home/mwm/ Freelance WWW/Unix/FreeBSD consultant, email for rates. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 14:23:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id E9C2D37B4C5 for ; Sat, 25 Nov 2000 14:23:16 -0800 (PST) Received: (qmail 79067 invoked by uid 100); 25 Nov 2000 22:23:16 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14880.15316.222281.198718@guru.mired.org> Date: Sat, 25 Nov 2000 16:23:16 -0600 (CST) To: donny garcia Cc: questions@freebsd.org Subject: Re: help with liraries... In-Reply-To: <66731514@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG donny garcia types: > hi . im new to freebsd. i used to use linux, but > decided to switch.straight off the bat ive been having > trouble with my libraries.can anyone tell me what > ports this file, libgtk-1.2.so.0, is in and anymore > libraries that i should install to have be running > smooth. For example, i installed gtk and glib to use > with ymessenger.ive done a lot of string searches and > cant seem to really find anything that specifically > helps with libraries. Thanks in advance. d The contents of any given port are in pkg-plist, so running the command "find /usr/ports -name pkg-plist | xargs grep -l libgtk" will list the ports that include the file (mostly, anyway - some ports generate packing lists dynamically). It looks like you want x11-toolkits/gtk12 for that library, but it may be one of the other gtk ports in x11-toolkits. As for "running smooth", that depends on what you want to run. For example, I've got a number of machines that have no use for libgtk. The "ldd" command on a binary will tell you what libraries it is using and, more importantly, what libraries it needs but can't find. You can then use the "find" above to see which port, if any, have that library. If the command that has the problem was installed from ports and doesn't pick up the dependency, then that's a bug in the port and should be reported to the maintainer (listed in the Makefile). If it's not a port, you should check to see if it exists. If it doesn't exist, you should turn make one for it and send-pr it. ; Sat, 25 Nov 2000 14:38:39 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Sat, 25 Nov 2000 14:37:09 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAPMcc196273; Sat, 25 Nov 2000 14:38:38 -0800 (PST) (envelope-from cjc) Date: Sat, 25 Nov 2000 14:38:38 -0800 From: "Crist J . Clark" To: Sue Blake Cc: freebsd-questions@FreeBSD.ORG Subject: Re: unsorting Message-ID: <20001125143838.Z12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: <20001126023150.F377@welearn.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20001126023150.F377@welearn.com.au>; from sue@welearn.com.au on Sun, Nov 26, 2000 at 02:31:53AM +1100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Nov 26, 2000 at 02:31:53AM +1100, Sue Blake wrote: > Is there some fairly simple way I can put a list of letters or words, > or lines of a text file, into a random order? That's called a shuffle, like shuffling a deck of cards. The classic approach is Knuth's algorithm. There's a Perl module to do it if you want to do a quick web search. However, a really quick and ugly approach is to load the list into memory, then just step through it swapping each item with another in a random location. To be a little different, here is an awk(1) script that does it, { line[NR] = $0; } END { for(i=1;i<=NR;i++) { pos = int(rand()*NR); line_hold = line[i]; line[i] = line[pos]; line[pos] = line_hold; } for(i=1;i<=NR;i++) { print line[i]; } } That is not nearly the quickest or most graceful way, but it will work. The incremental improvements to this method are left as an excercise for the reader. ;) -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 14:47:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost01.reflexnet.net (mailhost01.reflexnet.net [64.6.192.82]) by hub.freebsd.org (Postfix) with ESMTP id 5B4ED37B4C5; Sat, 25 Nov 2000 14:47:25 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Sat, 25 Nov 2000 14:45:54 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAPMlOb96341; Sat, 25 Nov 2000 14:47:24 -0800 (PST) (envelope-from cjc) Date: Sat, 25 Nov 2000 14:47:23 -0800 From: "Crist J . Clark" To: "John W. De Boskey" Cc: Questions List Subject: Re: ipfw fwd vs. natd redirect Message-ID: <20001125144723.A12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: <20001125070210.A38070@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20001125070210.A38070@FreeBSD.org>; from jwd@FreeBSD.ORG on Sat, Nov 25, 2000 at 07:02:10AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Nov 25, 2000 at 07:02:10AM -0800, John W. De Boskey wrote: > Hi, > > I'm looking at two variations to foward mail and web > services from the firewall to the appropriate server > hosts. > > Using natd and redirect, I have this working. However, I > also want to see what the comparable setup using ipfw is. > Unfortunately, I am unable to get this working. I have > the following rule in place: > > ${fwcmd} add fwd ${mailip},25 log tcp from any to ${oip} 25 This rule does not make a lot of sense. Including a port number on a fwd to an external machine is meaningless. > which produces the following log msg: > > ipfw: 1400 Forward to ${mailip}:25 TCP remothost:1587 firewallip:25 in via fxp0 Hmmm... It should not be doing this from how I understand fwd, ipfw(8): fwd ipaddr[,port] ... ... If the IP is not a local ad- dress then the port number (if specified) is ignored and the rule only applies to packets leaving the system. > a split second later, I get: > > ipfw: 1500 Divert 8668 TCP firewallip:25 remotehost:1587 out via fxp0 > > > Could someone (if anyone) who is using 'ipfw fwd' please send me > an example where this is working? I don't think you want to be using fwd. Remeber, fwd DOES NOT ALTER THE CONTENTS OF THE PACKET. fwd DOES NOT DO NAT. fwd only changes where the packet is sent to next. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 15: 6:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from alice.twopoint.com (unknown [209.64.88.4]) by hub.freebsd.org (Postfix) with ESMTP id 1748737B479 for ; Sat, 25 Nov 2000 15:06:29 -0800 (PST) Received: from twopoint.com (hamilton@fred.twopoint.com [192.168.1.3]) by alice.twopoint.com (8.8.7/8.8.7) with ESMTP id RAA02116 for ; Sat, 25 Nov 2000 17:06:38 -0600 Message-ID: <3A204676.2CEF5ECC@twopoint.com> Date: Sat, 25 Nov 2000 17:08:38 -0600 From: Hamilton Hoover Organization: Two Point Conversions, INC. X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.16-22 i686) X-Accept-Language: en MIME-Version: 1.0 To: "freebsd-questions@FreeBSD.ORG" Subject: mpd 3.2 connection issues Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, I am trying to use mpd for a vpn connection, it is half working. The remote machine is connecting but the problem I am having is that the remote machine can not ping or browse the local network. It can however resolve names via DNS, ftp and telnet to local hosts on the network. I am very confused at this point. My main objective is to allow remote users to make a pptp connection via M$ vpn on win9x boxes and allow them to browse the network and connect to local machine with PcAnywhere. They also should be able to telnet and ftp, but as that is currently working it doesn't seem to be a problem. The local machine acts as firewall and Nated gateway it is dual homed with two nics. I have ipfw rules to allow the pptp connection and GRE traffic that from my logs seem to work nicely (thanks to jwd for that). The mpd/pptp server is running on the public interface and assigns an ip associated with the internal network (ie; 192.x.x.x). As I am new to mpd I am unsure what logs and config files to show. If anyone willing to help needs more info please tell me what to send. thanks, Hamilton Hoover To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 15:12:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from murphys-outbound.servers.plus.net (unknown [212.159.14.225]) by hub.freebsd.org (Postfix) with SMTP id B157E37B4CF for ; Sat, 25 Nov 2000 15:12:40 -0800 (PST) Received: (qmail 2562 invoked from network); 25 Nov 2000 22:44:23 -0000 Received: from unknown (HELO daemon.lpds.sublink.org) (212.159.49.132) by murphys with SMTP; 25 Nov 2000 22:44:23 -0000 Received: from pelissero.org (hyde.lpds.sublink.org [10.0.0.2]) by daemon.lpds.sublink.org (8.9.3/8.9.3) with ESMTP id WAA23021 for ; Sat, 25 Nov 2000 22:36:08 GMT (envelope-from wcp@pelissero.org) Received: (from wcp@localhost) by pelissero.org (8.9.3/8.9.3) id WAA12598; Sat, 25 Nov 2000 22:42:52 GMT (envelope-from wcp) Message-ID: <14880.16492.311270.383061@hyde.lpds.sublink.org> Date: Sat, 25 Nov 2000 22:42:52 +0000 (GMT) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit From: "Walter C. Pelissero" Reply-To: walter@pelissero.org To: Keith Walker Cc: questions@freebsd.org Subject: Problem with USB printer In-Reply-To: <00112510022900.06194@mars.walker.dom> References: <00112510022900.06194@mars.walker.dom> X-Mailer: VM 6.72 under 21.1 (patch 9) "Canyonlands" XEmacs Lucid X-Attribution: WP Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Keith Walker writes: > Ok, a while back (couple of days ago) I posted a question about my Epson 900 > not working when attached via the USB cable. > > I found the solution to the problem. Hopefully this will help others with > Epson's that don't seem to work via the USB port. > > The Epson's must have an initialization string sent to them to wake up the > beast. This string only needs to be sent once, after plugging the printer in. > Turning off the power doesn't seem to matter, just the power cord. Anyhow, > sending the init string once per job is sufficient and harms nothing. Well done! Ok. I put this line in my rc.local and even my Epson 860 works. printf "000\033\001@EJL 1284.4\n@EJL \n" | tr 0 '\0' > /dev/ulpt0 There is only one problem left: this string is either incomplete or not correct. The proof is that after sending it to the printer the next printout is corrupted. So if you print graphics you get a bounch of random chars because of synch loss, but if you try to print a plain ASCII file you'll miss the first few characters (I experienced something like 50-60). I'm trying to figure out what is missing or what is superfluous in that init string. In the meanwhile I had a look at the Gimp Print driver and I found this procedure: void initialize_print_cmd(void) { bufpos = 0; if (isUSB) { static char hdr[] = "\000\000\000\033\001@EJL 1284.4\n@EJL \n\033@"; memcpy(printer_cmd, hdr, sizeof(hdr) - 1); /* Do NOT include the null! */ bufpos = sizeof(hdr) - 1; } } That looks a little bit different from what you mentioned. I'm going to try this version. Let's see if it changes anything. -- 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 Nov 25 15:37: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ux1.depaul.edu (ux1.depaul.edu [140.192.1.102]) by hub.freebsd.org (Postfix) with ESMTP id 46DF637B479 for ; Sat, 25 Nov 2000 15:37:04 -0800 (PST) Received: from localhost (bwolter@localhost) by ux1.depaul.edu (Pro-8.9.3/8.9.3) with ESMTP id RAA24052; Sat, 25 Nov 2000 17:36:57 -0600 (CST) Date: Sat, 25 Nov 2000 17:36:57 -0600 (CST) From: Brian Wolter X-Sender: bwolter@ux1.depaul.edu To: David Daugherty Cc: questions@FreeBSD.ORG Subject: Re: qmail over sendmail In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG you don't actually need to uninstall sendmail, but just move around some files. in fact, qmail uses some of the sendmail modules. read the accompanying documentation on "REMOVE.sendmail". peace, brian t h e S a d M a c h i n e . o r g On Fri, 24 Nov 2000, David Daugherty wrote: > Do I need to uninstall sendmail before installing qmail on 4.2B? I don't > see sendmail in /var/db/pkg and I've tried 'pkg_delete sendmail.' > > |> /\ \/ @ > davidd@datasphereweb.com > DataSphere - Back end web programming, site security, and networking > > david.daugherty@netmanage.com > Software Engineer > NetManage - The Bridge to E-Business > > http://www.wcug.wwu.edu/~doc > ICQ: 21106703 > > "I like the dreams of the future better than the history of the past" > -Thomas Jefferson > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 15:41:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id D5F3F37B4CF for ; Sat, 25 Nov 2000 15:41:11 -0800 (PST) Received: (qmail 81076 invoked by uid 100); 25 Nov 2000 23:41:10 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14880.19990.870014.192247@guru.mired.org> Date: Sat, 25 Nov 2000 17:41:10 -0600 (CST) To: "Otter" Cc: questions@freebsd.org Subject: RE: saving pcm mixer settings In-Reply-To: <75936594@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Otter types: > Alfred, > I had thought if this, but wasn't there a rewrite some time back that > requires all the .sh scripts in the rc.d directory to work with a > start/stop command? Or was it just a compatibility issue and not a > requirement to use the start/stop flags? It may not be a requirement, but it's not like it's hard. Actually, it gives you a chance to save the mixer settings on the way down as well. Here's what I put in /usr/local/etc/rc.d: #!/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/ Freelance WWW/Unix/FreeBSD consultant, email for rates. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 15:48:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id B1E2137B4CF for ; Sat, 25 Nov 2000 15:48:30 -0800 (PST) Received: (qmail 81266 invoked by uid 100); 25 Nov 2000 23:48:30 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14880.20429.721300.35133@guru.mired.org> Date: Sat, 25 Nov 2000 17:48:29 -0600 (CST) To: questions@freebsd.org Subject: Re: web hosting with a dynamic IP address question X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG David Banning types: > I would like to call into my computer and access it like a web host > from somewhere else on the web. My thought is that this should be possible > if my IP address is known. > > Since my dynamic IP address changes on every dialup, > would it not be possible for my FreeBSD machine to, following connection > do some inquiry into what my IP address is, then have FreeBSD copy the > IP address to my external WEB site, where I could have a link/script > that takes the address and guides me into my home server? Yup, you can do that. If you can put CGI on your external web site, you don't even need to figure out what the IP address is. Use a CGI script (hopefully password protected) that looks like: #!/bin/sh cat >../redirect.html <Redirect

Your machine is over there.

EOF cat < will provide this service for free. You use a script to change their dns in ppp-linkup, and then always refer to your machine with a hostname in one of their domains. ; Sat, 25 Nov 2000 15:56:41 -0800 (PST) Received: from FreeBSD.org (Studded@master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id PAA97300; Sat, 25 Nov 2000 15:56:38 -0800 (PST) (envelope-from DougB@FreeBSD.org) Message-ID: <3A2051B5.B35B23DB@FreeBSD.org> Date: Sat, 25 Nov 2000 15:56:37 -0800 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: raf ar Cc: questions@FreeBSD.org Subject: Re: which unix to study? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG raf ar wrote: > > with the different flavors of unix, i dont know which one to learn, im a > telecommunications student at devry and i know sooner or later i will be > working on unix systems whether i like it or not, i have been reading the > handbook in freebsd.org AND I FIND FREEBSD VERY INTERESTING, NOW MY QUESTION > IS, WHAT FLAVOR OF UNIX WOULD YOU RECOMMEND FOR ME TO LEARN, IS FREE BSD THE > CHOICE? KINDLY REPLY TO THIS E-MAIL, THNX...THEEO If you write to a freebsd list, what do you think we're going to recommend, linux? :) -- So what I want to know is, where does the RED brick road go? 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 Sat Nov 25 16: 3:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web9405.mail.yahoo.com (web9405.mail.yahoo.com [216.136.129.111]) by hub.freebsd.org (Postfix) with SMTP id 3EDB437B685 for ; Sat, 25 Nov 2000 16:03:13 -0800 (PST) Message-ID: <20001126000313.55849.qmail@web9405.mail.yahoo.com> Received: from [192.135.249.34] by web9405.mail.yahoo.com; Sat, 25 Nov 2000 16:03:13 PST Date: Sat, 25 Nov 2000 16:03:13 -0800 (PST) From: Wahyudi Gunawan Subject: Esound daemon - Help To: freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, I am still not able to make my sound working after upgrade it to 4.2-RELEASE. But this time I got an error message when I start my X. This is the message. esd: Esound sound daemon already running or stale UNIX socket /home/wgunawan/.esd/socket This socket already exist indicating esd is already running Exiting... Could somebody help me on how to resolving this issue Thanks in advance -WG ===== ====================== Wahyudi Gunawan wgunawan92@yahoo.com __________________________________________________ Do You Yahoo!? Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.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 Nov 25 16:28:35 2000 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 73E5C37B4CF for ; Sat, 25 Nov 2000 16:28:33 -0800 (PST) Received: from fedde (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.0/8.11.0.Beta3) with ESMTP id eAQ0SVJ21109; Sat, 25 Nov 2000 17:28:31 -0700 (MST) Message-Id: <200011260028.eAQ0SVJ21109@fedde.littleton.co.us> To: Erich Zigler Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Windows Compatibility In-Reply-To: <20001125133503.A76218@superhero.org> From: Chris Fedde Date: Sat, 25 Nov 2000 17:28:31 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 25 Nov 2000 13:35:03 -0600 Erich Zigler wrote: +------------------ | On Sat, Nov 25, 2000 at 11:24:43AM -0800, Jeremiah Gowdy wrote: | | > > I was wondering if there are any such projects in existence for FreeBSD. | > > Because that is what I would prefer to use. | > /usr/ports/emulation/vmware | | Tried, it. Not impressed. Too slow, and took up too may system resources. +------------------ VMWare is about as good as it gets. You can look at the wine stuff but I hear that it is not realy mature yet. Get a second computer and a KVM switch. Run Samba. chris -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 16:30: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.cybersurf.net (smtp1.cybersurf.net [209.197.145.111]) by hub.freebsd.org (Postfix) with ESMTP id A38AF37B4C5 for ; Sat, 25 Nov 2000 16:29:58 -0800 (PST) Received: from [209.197.156.142] ([209.197.156.142]) by smtp1.cybersurf.net (Netscape Messaging Server 4.15) with SMTP id G4LW1T00.14M; Sat, 25 Nov 2000 17:29:53 -0700 From: "Duke Normandin" <01031149@3web.net> To: Jim Durham Date: Sat, 25 Nov 2000 15:47:34 mst7mst MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: 3.3R <--> win95 Reply-To: 01031149@3web.net Cc: questions@freebsd.org X-mailer: Pegasus Mail v3.50 Message-Id: <20001126002958.A38AF37B4C5@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 25 Nov 00 at 12:32, Jim Durham wrote: > >On Fri, 24 Nov 2000, Duke Normandin wrote: > >> On 24 Nov 00 at 10:44, Igor' Robul' wrote: >> > >> >On Thu, Nov 23, 2000 at 11:42:50PM +0000, Duke Normandin wrote: >> >> I want the following: >> >> 3.3R win95 ISP >> >> >> >> I *have* to use win95 to connect to my ISP. Win95 won't route so I'm >> >> pooched as far as connecting to my ISP from the FBSD box - I think. >> >> >> >> So, for the moment, all I want is an ethernet connection between the two >> >> boxes. Should I disable tun0 in rc.conf? Can't the "lo0, tun0 and ep0 >> >> co-exist? I thought that "routed" was suppose to do just that. What >> >Disable tun0. You don't need it. >> >Also, make sure you have made correct crossover. >> > >You need to tell us just what you are trying to accomplish and >what you have running on the 3.3 system. I'm not clear on >what you want to do. > >Please explain why you "*have*" to use 95 to dial your ISP. > This is not usually the case with any ISP I've dealt with. I realize that my scenario is not the *usual* way! However, I use a free ISP that insists in having users run his proprietary win95-only software. His dialer does not even show up in $MS DUN window. So Internet connections have to happen from the win95 side -- as far as I can tell. It would be great if I could run Lynx from the FBSD box and trigger a connection in the win95 box - but I've been told that win95 can't do that ( I believe that the correct terminology is that it cannot "route"). > >Are you using userland PPP or kernel PPP? Userland PPP uses > the tun0 interface to connect to the internal networking in > FreeBSD, so you need it. If you are using the kernel PPP, > it's ppp0. > Up to 6 months ago, I was using a now-defunct ISP to which I could connect from the FBSD box -- and I did so. I had userland ppp installed using tun0. I have a shell script - if_start.tun0 - which has ppp -auto my_isp. All of this worked great for this former ISP. I've renamed the script hoping that it will not interfere with things. >What does the ep0 interface connect to? It connects to my win95 NIC via a x-over cable. As of 11:57:35 PM last night, I am now able to successfully ping from both ends. >Are you running Samba on the 3.3 box? What are you tring > to accomplish? Are you just wanting to telnet or ftp into > it from the 95 box, or are you wanting to do file sharing > with M$ networking? If so, you need Samba to do M$ networking. No Samba at the moment! I'm in the throes of learning hte lay-of-the- networking-land (obviously) so KISS is my guiding principle. All I want is ftp/telnet between the two. Samba is for down the road... > >Yes, you can have both interfaces running at the same time by > netmasking them properly. good....what I needed to know! Like I said above, I can now ping both ways, however, when I first boot the system I still get the message "using interface tun0. Then I do a "ps -ax" and sure enough there's a PID for ppp -auto my_isp even though I have set PPP_enable="NO" and commented out all PPP stuff in /etc/rc.conf. So I do a kill -HUP ppp_pid and I then can ping to my hearts content. So.... I may not have a current use for tun0, but I may down the road. So how do I unlink tun0 from the LAN connection? ifconfig -a shows: ep0: flags=8843 mtu 1500 inet 10.0.0.1 netmask 0xffffff00 broadcast 10.0.0.255 ether 00:60:97:0c:c4:5e tun0: flags=8051 mtu 1500 inet 10.0.0.1 --> 10.0.0.2 netmask 0xffffff00 I can see above that the 2nd line for tun0 is what is causing the problem, but how it got that way I just don't know. I set up the NIC /etc/rc.conf with ifconfig_ep0="inet 10.0.0.1 netmask 255.255.255.0". I don't think that I hosed that line, did I? Other than that I updated /etc/hosts with 10.0.0.1 odie.rockingd.calgary.ab.ca odie 10.0.0.1 odie.rockingd.calgary.ab.ca 10.0.0.2 mandy.rockingd.calgary.ab.ca mandy 10.0.0.2 mandy.rockingd.calgary.ab.ca besides the 127.0.0.1 stuff. resolv.conf still has my previous ISP's nameservers in it -- but that shouldn't affect things - but what do I know! >> The crossover custom (professionally) made and pre-tested. So I'm relying >> on that. Do I comment out the following in rc.conf to disable tun0:? >> >> if_config_tun0="" >> >> and remove tun0 from the following:? >> >> network_interface="lo0 tun0 ep0" >> >> Why would I *have* to do that? What if I wanted to use a modem on tun0 >> *and* ep0 for my LAN? Should I not be able to use both, with ppp "bound" to >> tun0 only, or does ppp drive the packets on ethernet as well? I'm so >> confused, I wouldn't know sh*t from Shine-Olla anymore ;,) Thanks... >> > >So, please give us some info! My first take on this is that >you have the cart and horse reversed. The usual way to set this >up is to use the userland PPP on FreeBSD in the auto-dial mode >to set up a PPP to your ISP, then use the ep0 interface to >set up a LAN connection to your 95 boxes via their ethernet >interface cards. Then you can turn on address translation >on the PPP and the 95 box will look like it's directly on the >internet. This is a common setup for small businesses with >Windows computers and a FreeBSD box serviing as a gateway >and auto dialup. I hear you, but the *usual* isn't my scenario unfortunately. You seem to have this stuff down to a fine science, so any help that you can throw at this newbie would be appreciated more than you know. There's no panic for this stuff -- just home-schooling myself. Just 2 old 486-66 boxes in the basement ;,) >-Jim Durham -duke Calgary,Alberta, Canada To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 16:52:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sloth.wcug.wwu.edu (unknown [140.160.164.200]) by hub.freebsd.org (Postfix) with SMTP id 7137837B4C5 for ; Sat, 25 Nov 2000 16:52:16 -0800 (PST) Received: (qmail 12626 invoked by uid 1074); 26 Nov 2000 00:52:15 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 26 Nov 2000 00:52:15 -0000 Date: Sat, 25 Nov 2000 16:52:15 -0800 (PST) From: David Daugherty To: questions@freebsd.org Subject: email stopped working Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've just installed qmail from the ports on a 4.2-Beta box. Qmail appears to be working fine in that this works: /usr/local/etc [davidd]=> telnet mydomain.com 25 Trying xxx.xxx.xxx.xxx.. Connected to mydomain.com. Escape character is '^]'. 220 truman.mydomain.com ESMTP quit 221 truman.mydomain.com Connection closed by foreign host. /usr/local/etc [davidd]=> telnet mydomain.com 110 Trying xxx.xxx.xxx.xxx... Connected to mydomain.com. Escape character is '^]'. +OK <587.975198938@mydomain.com> quit +OK Connection closed by foreign host. Problem is I'm not getting my email. I've tried sending myself email and it's never being received. Have I blown something up here? Where should I be looking? I have sendmail_enable=NO in rc.conf. David doc-WA_Resident@wcug.wwu.edu doc@wcug.wwu.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 16:57:43 2000 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 84C5E37B479 for ; Sat, 25 Nov 2000 16:57:40 -0800 (PST) Received: from fedde (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.0/8.11.0.Beta3) with ESMTP id eAQ0vaJ21204; Sat, 25 Nov 2000 17:57:36 -0700 (MST) Message-Id: <200011260057.eAQ0vaJ21204@fedde.littleton.co.us> To: 01031149@3web.net Cc: Jim Durham , questions@FreeBSD.ORG Subject: Re: 3.3R <--> win95 In-Reply-To: <20001126002958.A38AF37B4C5@hub.freebsd.org> From: Chris Fedde Date: Sat, 25 Nov 2000 17:57:36 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 25 Nov 2000 15:47:34 mst7mst "Duke Normandin" wrote: +------------------ | I realize that my scenario is not the *usual* way! However, I use a free | ISP that insists in having users run his proprietary win95-only software. | His dialer does not even show up in $MS DUN window. So Internet | connections have to happen from the win95 side -- as far as I can tell. It | would be great if I could run Lynx from the FBSD box and trigger a | connection in the win95 box - but I've been told that win95 can't do that | ( I believe that the correct terminology is that it cannot "route"). +------------------ There is routing software that runs on windows 95. And you are going to need that if you want to forward data through the windows box. But it is pretty unlikely that any routing software will work given that your "ISP insists in having users run his proprietary win95-only software." Most of this stuff depends on things following the normal conventions. If I were you I'd be looking for a different ISP. -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 17:15:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rmx194-mta.mail.com (rmx194-mta.mail.com [165.251.48.41]) by hub.freebsd.org (Postfix) with ESMTP id D0AC537B4C5 for ; Sat, 25 Nov 2000 17:15:25 -0800 (PST) Received: from weba3.iname.net (weba3.iname.net [165.251.4.13]) by rmx194-mta.mail.com (8.9.3/8.9.3) with ESMTP id UAA23812; Sat, 25 Nov 2000 20:15:21 -0500 (EST) From: thursday@altavista.net Received: (from root@localhost) by weba3.iname.net (8.9.1a/8.9.2.Alpha2) id UAA22882; Sat, 25 Nov 2000 20:07:47 -0500 (EST) MIME-Version: 1.0 Message-Id: <0011252007473V.12620@weba3.iname.net> Date: Sat, 25 Nov 2000 20:07:47 -0500 (EST) Content-Type: Text/Plain Content-Transfer-Encoding: 7bit To: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I installed FreeBSD 4.2-RELEASE yesterday on my Pentium-II 266 machine, and I'm having a couple of issues... 1) Twice now, wtmp has become corrupted (ac -p reports root's total login time as -378999.4). last reports a bunch of normal logins except for one or two in the middle happening in December. My question: What is the cause of this? Is there a better way to fix it (or edit wtmp) other than cat > /var/log/wtmp ^d? The machine is connected to a timeserver, and date has never reported anything but the correct date. 2) The machine is going to act as a gateway/router for my internal network. I've compiled a new kernel, setup rc.conf, setup my firewall (I used rc.conf and rc.firewall from the machine that this new machine is replacing (a freebsd 3.4 system), adjusting where necessary for the different ethernet device names), and all mostly works well (My isp's nameservers went down during the middle of this process, making setup & troubleshooting really lots of fun) except: the console & system log frequently report: "Nov 25 13:44:47 saucer natd[147]: failed to write packet back (Permission denied) Nov 25 13:44:53 saucer last message repeated 4 times " My questions are: What's up with this? Is this due to my firewall rules, or something else? I have log no set in /etc/natd.conf, and I'd rather not see this message if it's not affecting performance. I never saw this before on my 3.4 system. If there are some relevant files I can attach to help troubleshooting, please let me know. Thanks for any insight any of you can give me... ---------------------------------------------------------------- Get your free email from AltaVista at http://altavista.iname.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 17:30:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hyperreal.org (taz.hyperreal.org [209.133.83.16]) by hub.freebsd.org (Postfix) with SMTP id 3399137B4C5 for ; Sat, 25 Nov 2000 17:30:52 -0800 (PST) Received: (qmail 3262 invoked by uid 12); 26 Nov 2000 01:30:52 -0000 Message-ID: <20001126013052.3261.qmail@hyperreal.org> From: mike@hyperreal.org Subject: can't chflags/mv current kernel To: freebsd-questions@freebsd.org Date: Sat, 25 Nov 2000 17:30:52 -0800 (PST) X-Mailer: ELM [version 2.4ME+ PL60 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I rolled the dice and it looks like I can use 2 NICs in the old doorstop after all, so I'll still be working on trying to configure NAT. I compiled a new kernel to support the second NIC, and now I'm having a more fundamental problem: I cannot touch the old/current kernel. # make install chflags noschg /kernel chflags: /kernel: Operation not permitted *** Error code 1 (ignored) mv /kernel /kernel.old mv: rename /kernel to /kernel.old: Operation not permitted *** Error code 1 What is this a symptom of? It's not covered in the Handbook and I have never had it happen before. The default kernel was removed just fine. Doesn't matter if I'm in single-user mode or not; the kernel is untouchable. -Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 17:37:24 2000 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 6505637B4C5 for ; Sat, 25 Nov 2000 17:37:21 -0800 (PST) Received: from pop2.pacific.net.sg (pop2.pacific.net.sg [203.120.90.86]) by sunny.pacific.net.sg with ESMTP id eAQ1bGo18561; Sun, 26 Nov 2000 09:37:16 +0800 (SGT) Received: from pacificnet (spoff107.pacific.net.sg [203.120.95.107]) by pop2.pacific.net.sg with SMTP id JAA07163; Sun, 26 Nov 2000 09:37:14 +0800 (SGT) Message-ID: <000a01c05749$71ffea00$6b5f78cb@pacificnet> From: "James Lim" To: , References: <20001126013052.3261.qmail@hyperreal.org> Subject: Re: can't chflags/mv current kernel Date: Sun, 26 Nov 2000 09:37:31 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there, /sbin/sysctl -a | grep kern.securelevel , wat is your output? itmight be likely that ur kern.securelevel is already 1 or 2 which made it impossible for you to chflags your /kernel. you could set ur kern.secureleve to -1 temporarily. sysctl -w kern.securelevel=-1 hope this helps, Regards, James Lim ----- Original Message ----- From: To: Sent: Sunday, November 26, 2000 9:30 AM Subject: can't chflags/mv current kernel > I rolled the dice and it looks like I can use 2 NICs in the old doorstop > after all, so I'll still be working on trying to configure NAT. > > I compiled a new kernel to support the second NIC, and now I'm having a > more fundamental problem: I cannot touch the old/current kernel. > > # make install > chflags noschg /kernel > chflags: /kernel: Operation not permitted > *** Error code 1 (ignored) > mv /kernel /kernel.old > mv: rename /kernel to /kernel.old: Operation not permitted > *** Error code 1 > > What is this a symptom of? > > It's not covered in the Handbook and I have never had it happen before. > The default kernel was removed just fine. Doesn't matter if I'm in > single-user mode or not; the kernel is untouchable. > > -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 Sat Nov 25 17:40: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 2E60837B4C5 for ; Sat, 25 Nov 2000 17:40:07 -0800 (PST) Received: by static.unixfreak.org (Postfix, from userid 1000) id 5D6461F30; Sat, 25 Nov 2000 17:40:06 -0800 (PST) Subject: Re: can't chflags/mv current kernel In-Reply-To: <20001126013052.3261.qmail@hyperreal.org> "from mike@hyperreal.org at Nov 25, 2000 05:30:52 pm" To: mike@hyperreal.org Date: Sat, 25 Nov 2000 17:40:06 -0800 (PST) Cc: freebsd-questions@freebsd.org From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001126014006.5D6461F30@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > # make install > chflags noschg /kernel > chflags: /kernel: Operation not permitted > *** Error code 1 (ignored) > mv /kernel /kernel.old > mv: rename /kernel to /kernel.old: Operation not permitted > *** Error code 1 > > What is this a symptom of? securelevel >= 1. See init(8) for details. > > It's not covered in the Handbook and I have never had it happen before. > The default kernel was removed just fine. Doesn't matter if I'm in > single-user mode or not; the kernel is untouchable. How did you get to single user mode? Did you get there by booting the kernel with the -s flag, or by using shutdown? In case of the former, it should work. In case of the latter, you should try the former. For the sake of the archives, setting kern_securelevel to -1 in /etc/rc.conf should also work if you can't get to single user mode (no console access). Just remember to change it back when you're done. Hope this helps -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. If only God would give me some clear sign! Like making a large deposit in my name at a Swiss bank. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 17:47:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from resnetnt.resnet.uconn.edu (resnet.resnet.uconn.edu [137.99.156.20]) by hub.freebsd.org (Postfix) with ESMTP id E62E837B4C5 for ; Sat, 25 Nov 2000 17:47:44 -0800 (PST) Received: by resnetnt.resnet.uconn.edu with Internet Mail Service (5.5.2650.21) id ; Sat, 25 Nov 2000 20:45:26 -0500 Message-ID: <9F36E367710D474E9806AA393FE737FB019ED5@resnetnt.resnet.uconn.edu> From: Peter Lai To: 'Brian Wolter ' , 'David Daugherty ' Cc: "'questions@FreeBSD.ORG '" Subject: RE: qmail over sendmail Date: Sat, 25 Nov 2000 20:45:25 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG there *is* a qmail howto out there... it tells you how to get rid of sendmail and replace it with qmail. The agent that delivers the mail from the MTA to your inbox (e.g. /var/$USER/) still needs to be run (e.g. /usr/libexec/mail.local) -----Original Message----- From: Brian Wolter To: David Daugherty Cc: questions@FreeBSD.ORG Sent: 11/25/2000 6:36 PM Subject: Re: qmail over sendmail you don't actually need to uninstall sendmail, but just move around some files. in fact, qmail uses some of the sendmail modules. read the accompanying documentation on "REMOVE.sendmail". peace, brian t h e S a d M a c h i n e . o r g On Fri, 24 Nov 2000, David Daugherty wrote: > Do I need to uninstall sendmail before installing qmail on 4.2B? I don't > see sendmail in /var/db/pkg and I've tried 'pkg_delete sendmail.' > > |> /\ \/ @ > davidd@datasphereweb.com > DataSphere - Back end web programming, site security, and networking > > david.daugherty@netmanage.com > Software Engineer > NetManage - The Bridge to E-Business > > http://www.wcug.wwu.edu/~doc > ICQ: 21106703 > > "I like the dreams of the future better than the history of the past" > -Thomas Jefferson > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 17:48:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost01.reflexnet.net (mailhost01.reflexnet.net [64.6.192.82]) by hub.freebsd.org (Postfix) with ESMTP id 3F30F37B4C5 for ; Sat, 25 Nov 2000 17:48:44 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Sat, 25 Nov 2000 17:47:12 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAQ1meU97367; Sat, 25 Nov 2000 17:48:40 -0800 (PST) (envelope-from cjc) Date: Sat, 25 Nov 2000 17:48:40 -0800 From: "Crist J . Clark" To: mike@hyperreal.org Cc: freebsd-questions@FreeBSD.ORG Subject: Re: natd basic setup help Message-ID: <20001125174840.B12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: <20001125095108.17976.qmail@hyperreal.org> <20001125105755.115.qmail@hyperreal.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20001125105755.115.qmail@hyperreal.org>; from mike@hyperreal.org on Sat, Nov 25, 2000 at 02:57:55AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Nov 25, 2000 at 02:57:55AM -0800, mike@hyperreal.org wrote: > I wrote: > > NAT. I've been RTFM'ing all night and am just not getting it. My ISP has > > assigned me a static IP address. I want to use that address for my FreeBSD > > machine, and have my 2 other machines masquerading as the same IP. The > > configuration is pretty simple: > > > > [private_box_1]-----. > > | > > [private_box_2]-----|___[switch]___[DSL_modem]___[ISPs_router] > > | > > [public_BSD_box]----' > > > > The switch is unmanaged and the DSL modem is in bridging mode, so it's > > essentially just a wire between my network and my ISP's router, which I > > use as my gateway (216.241.42.1). No PPP or dynamic IPs are involved. > > > > I want to give the private boxes IP addresses 10.0.0.*, and have them use > > the BSD box as their gateway. The BSD box needs to keep its public IP > > address (216.241.42.159). Sounds pretty typical, right? > > It was pointed out to me shortly after I sent this that with the BSD box > not being between the switch and the DSL modem, I can never have a true > firewall; the private boxes will never be private. I need to have 2 NICs, > one for traffic going between the BSD box and the DSL modem, and the other > for traffic between the BSD box and the switch. > > Fair enough. I'd settle for just getting the masquerading working. > The semi-private boxes would only respond to 10.0.0.*-destined traffic, > and if I could just get the BSD box to reroute the traffic accordingly, it > would at least give them TCP/IP connectivity. > > But I can see that with my current setup, once the switch found out the > semi-private boxes were at those addresses, it would happily pass along > any 10.0.0.*-destined traffic to those boxes, even if it were coming from > the outside world. Like I trust the H4X0R kiddies I share a subnet with.. > yeargh. > > Anyway I thought I gleaned from somewhere that 2 logical interfaces were > necessary for NAT, but that this didn't have to mean 2 physical NICs. Is > this wrong? natd(8) was not designed to work with one physical interface. It may work, but if it doesn't you're kind of on your own. You might say it is not a supported configuration. The essence of the problem is that one typically has a divert(4) rule like, divert natd ip from any to any via if0 Where 'if0' would be the external interface. When a packet comes in to (or goes out of) your internal net, it goes through natd(8) once when it comes in (goes out) the external interface, and does NOT go through natd(8) when going out (coming in) the internal interface. However, if your internal and external interfaces are the same physical interface, then packets always go through natd(8) _twice,_ and this can mess things up. > I have nothing against using 2 NICs but my BSD box is on unstable hardware > that has been known to invent conflicts when I add any piece of hardware > to it. It's a c.1995 dual P133 board from Micron, with the Neptune > chipset, and I'm trying to get whatever mileage I can out of it. Maybe > it's time to just bite the bullet and use it as the doorstop it was meant > to be. You can buy 10BaseT ISA NICs for $10. Might as well give it a shot. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 17:54:33 2000 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 B6F4837B479 for ; Sat, 25 Nov 2000 17:54:29 -0800 (PST) Received: from pop2.pacific.net.sg (pop2.pacific.net.sg [203.120.90.86]) by sunny.pacific.net.sg with ESMTP id eAQ1sOo20363; Sun, 26 Nov 2000 09:54:24 +0800 (SGT) Received: from pacificnet (spoff107.pacific.net.sg [203.120.95.107]) by pop2.pacific.net.sg with SMTP id JAA17427; Sun, 26 Nov 2000 09:54:22 +0800 (SGT) Message-ID: <001a01c0574b$d6b195a0$6b5f78cb@pacificnet> From: "James Lim" To: "Peter Lai" , "'Brian Wolter '" , "'David Daugherty '" Cc: References: <9F36E367710D474E9806AA393FE737FB019ED5@resnetnt.resnet.uconn.edu> Subject: Re: qmail over sendmail Date: Sun, 26 Nov 2000 09:54:38 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there. http://www.freebsddiary.org/qmail.html Hope this helps, Regards, James Lim ----- Original Message ----- From: "Peter Lai" To: "'Brian Wolter '" ; "'David Daugherty '" Cc: Sent: Sunday, November 26, 2000 9:45 AM Subject: RE: qmail over sendmail > there *is* a qmail howto out there... it tells you how to get rid of > sendmail and replace it with qmail. > > The agent that delivers the mail from the MTA to your inbox (e.g. > /var/$USER/) still needs to be run (e.g. /usr/libexec/mail.local) > > -----Original Message----- > From: Brian Wolter > To: David Daugherty > Cc: questions@FreeBSD.ORG > Sent: 11/25/2000 6:36 PM > Subject: Re: qmail over sendmail > > you don't actually need to uninstall sendmail, but just move around some > files. in fact, qmail uses some of the sendmail modules. read the > accompanying documentation on "REMOVE.sendmail". > > peace, > brian > > > t h e S a d M a c h i n e . o r g > > On Fri, 24 Nov 2000, David Daugherty wrote: > > > Do I need to uninstall sendmail before installing qmail on 4.2B? I > don't > > see sendmail in /var/db/pkg and I've tried 'pkg_delete sendmail.' > > > > |> /\ \/ @ > > davidd@datasphereweb.com > > DataSphere - Back end web programming, site security, and networking > > > > david.daugherty@netmanage.com > > Software Engineer > > NetManage - The Bridge to E-Business > > > > http://www.wcug.wwu.edu/~doc > > ICQ: 21106703 > > > > "I like the dreams of the future better than the history of the past" > > -Thomas Jefferson > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 17:56:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost01.reflexnet.net (mailhost01.reflexnet.net [64.6.192.82]) by hub.freebsd.org (Postfix) with ESMTP id 29B0937B4CF for ; Sat, 25 Nov 2000 17:56:20 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Sat, 25 Nov 2000 17:54:40 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAQ1u6e97437; Sat, 25 Nov 2000 17:56:06 -0800 (PST) (envelope-from cjc) Date: Sat, 25 Nov 2000 17:56:06 -0800 From: "Crist J . Clark" To: thursday@altavista.net Cc: freebsd-questions@FreeBSD.ORG Subject: Re: your mail Message-ID: <20001125175606.C12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: <0011252007473V.12620@weba3.iname.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <0011252007473V.12620@weba3.iname.net>; from thursday@altavista.net on Sat, Nov 25, 2000 at 08:07:47PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [Please wrap your lines at about 70 columns or so for those of us with RFC compliant MUAs. All of your paragraphs are on one line.] On Sat, Nov 25, 2000 at 08:07:47PM -0500, thursday@altavista.net wrote: > Hi, > > I installed FreeBSD 4.2-RELEASE yesterday on my Pentium-II 266 machine, and I'm having a couple of issues... > > 1) Twice now, wtmp has become corrupted (ac -p reports root's total login time as -378999.4). last reports a bunch of normal logins except for one or two in the middle happening in December. > > My question: What is the cause of this? Is there a better way to fix it (or edit wtmp) other than cat > /var/log/wtmp ^d? The machine is connected to a timeserver, and date has never reported anything but the correct date. Hmmm... You installed yesterday, but had logons in December? Oh, farther down you mention that this is an upgrade from 3.x. The format of wtmp is not compatible between 3.x and 4.x. The format was changed to accomodate >8 character usernames. Unless you want to go back and recover the old data for some reason, # cp /dev/null /var/log/wtmp Is the fix. > 2) The machine is going to act as a gateway/router for my internal network. I've compiled a new kernel, setup rc.conf, setup my firewall (I used rc.conf and rc.firewall from the machine that this new machine is replacing (a freebsd 3.4 system), adjusting where necessary for the different ethernet device names), and all mostly works well (My isp's nameservers went down during the middle of this process, making setup & troubleshooting really lots of fun) except: the console & system log frequently report: > > "Nov 25 13:44:47 saucer natd[147]: failed to write packet back (Permission denied) > > Nov 25 13:44:53 saucer last message repeated 4 times " > > My questions are: What's up with this? Is this due to my firewall rules, or something else? I have log no set in /etc/natd.conf, and I'd rather not see this message if it's not affecting performance. I never saw this before on my 3.4 system. This is due to a packet that was processed by natd(8) being dropped later in the firewall rules. > If there are some relevant files I can attach to help troubleshooting, please let me know. For the 'failed to write packet back' problem, a copy of both rc.firewall and output of 'ipfw show' are good if you still need help with those. -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 17:58:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hyperreal.org (taz.hyperreal.org [209.133.83.16]) by hub.freebsd.org (Postfix) with SMTP id 76E2137B4C5 for ; Sat, 25 Nov 2000 17:58:43 -0800 (PST) Received: (qmail 9154 invoked by uid 12); 26 Nov 2000 01:58:43 -0000 Message-ID: <20001126015843.9153.qmail@hyperreal.org> From: mike@hyperreal.org Subject: Re: can't chflags/mv current kernel In-Reply-To: <20001126014006.5D6461F30@static.unixfreak.org> from Dima Dorfman at "Nov 25, 2000 05:40:06 pm" To: dima@unixfreak.org Date: Sat, 25 Nov 2000 17:58:43 -0800 (PST) Cc: freebsd-questions@freebsd.org X-Mailer: ELM [version 2.4ME+ PL60 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dima Dorfman wrote: > securelevel >= 1. See init(8) for details. Ah, ok, thanks. This definitely should go in the handbook. But, following the advice of James Lim, # sysctl -w kern.securelevel=-1 kern.securelevel: 2 sysctl: kern.securelevel: Operation not permitted Seems like changing it after the boot is not an option. > How did you get to single user mode? Did you get there by booting the > kernel with the -s flag, or by using shutdown? In case of the former, > it should work. In case of the latter, you should try the former. The latter. Trying the former, I get a different failure: # sysctl -w kern.securelevel=-1 kern.securelevel: -1 -> -1 # make install chflags noschg /kernel chflags: /kernel: Read-only file system *** Error code 1 (ignored) mv /kernel /kernel.old mv: rename /kernel to /kernel.old: Read-only file system *** Error code 1 > For the sake of the archives, setting kern_securelevel to -1 in > /etc/rc.conf should also work if you can't get to single user mode (no > console access). Just remember to change it back when you're done. OK, I rebooted normally, edited rc.conf, rebooted again (shutdown -r now), and the 'make install' proceeded without error. Edited rc.conf again, rebooted, and all is well. Thank you for the prompt advice! -M. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 18: 2:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from grumpy.dyndns.org (cm-24-246-28-166.toney.mediacom.ispchannel.com [24.246.28.166]) by hub.freebsd.org (Postfix) with ESMTP id 8115837B479 for ; Sat, 25 Nov 2000 18:02:03 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by grumpy.dyndns.org (8.11.1/8.11.1) with ESMTP id eAQ21aS48941; Sat, 25 Nov 2000 20:01:38 -0600 (CST) (envelope-from dkelly@grumpy.dyndns.org) Message-Id: <200011260201.eAQ21aS48941@grumpy.dyndns.org> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: "raf ar" Cc: questions@FreeBSD.ORG From: David Kelly Subject: Re: which unix to study? In-reply-to: Message from "raf ar" of "Sat, 25 Nov 2000 15:16:32 EST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 25 Nov 2000 20:01:36 -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "raf ar" writes: > with the different flavors of unix, i dont know which one to learn, im a > telecommunications student at devry and i know sooner or later i will be > working on unix systems whether i like it or not, i have been reading the > handbook in freebsd.org AND I FIND FREEBSD VERY INTERESTING, NOW MY QUESTION > IS, WHAT FLAVOR OF UNIX WOULD YOU RECOMMEND FOR ME TO LEARN, IS FREE BSD THE > CHOICE? KINDLY REPLY TO THIS E-MAIL, THNX...THEEO I don't understand your question. You say you find FreeBSD very intersting. Apparently you have time to study. So what's the question? You need to be told to study something you find interesting? Rather than be difficult I'll read between the lines and answer something I think you are asking but don't know it yet. A smart-mouth once said, "Don't believe everything you read." A wise sage twisted that into something more as "Don't read everything you believe." If you find FreeBSD interesting then don't worry about what the telecummunications industry is using. If you know another advanced OS when something else is before you, then you'll have a leg up on the other students. Become fluent in both systems and when something appears impossible in one but trivial in the other then you'll know it can be done and have a good idea how to get there from here. -- 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 Sat Nov 25 18: 3:47 2000 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 075D137B4CF for ; Sat, 25 Nov 2000 18:03:43 -0800 (PST) Received: from pop2.pacific.net.sg (pop2.pacific.net.sg [203.120.90.86]) by seed.pacific.net.sg with ESMTP id eAQ23cJ13936; Sun, 26 Nov 2000 10:03:38 +0800 (SGT) Received: from pacificnet (spoff107.pacific.net.sg [203.120.95.107]) by pop2.pacific.net.sg with SMTP id KAA23386; Sun, 26 Nov 2000 10:03:37 +0800 (SGT) Message-ID: <002401c0574d$21be6cc0$6b5f78cb@pacificnet> From: "James Lim" To: , Cc: References: <20001126015843.9153.qmail@hyperreal.org> Subject: Re: can't chflags/mv current kernel Date: Sun, 26 Nov 2000 10:03:54 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there, Sorry dude, i have fergotten to advice u to edit rc.conf =/ apologies Regards, James Lim ----- Original Message ----- From: To: Cc: Sent: Sunday, November 26, 2000 9:58 AM Subject: Re: can't chflags/mv current kernel > Dima Dorfman wrote: > > securelevel >= 1. See init(8) for details. > > Ah, ok, thanks. > This definitely should go in the handbook. > But, following the advice of James Lim, > > # sysctl -w kern.securelevel=-1 > kern.securelevel: 2 > sysctl: kern.securelevel: Operation not permitted > > Seems like changing it after the boot is not an option. > > > How did you get to single user mode? Did you get there by booting the > > kernel with the -s flag, or by using shutdown? In case of the former, > > it should work. In case of the latter, you should try the former. > > The latter. Trying the former, I get a different failure: > > # sysctl -w kern.securelevel=-1 > kern.securelevel: -1 -> -1 > # make install > chflags noschg /kernel > chflags: /kernel: Read-only file system > *** Error code 1 (ignored) > mv /kernel /kernel.old > mv: rename /kernel to /kernel.old: Read-only file system > *** Error code 1 > > > For the sake of the archives, setting kern_securelevel to -1 in > > /etc/rc.conf should also work if you can't get to single user mode (no > > console access). Just remember to change it back when you're done. > > OK, I rebooted normally, edited rc.conf, rebooted again (shutdown -r now), > and the 'make install' proceeded without error. Edited rc.conf again, > rebooted, and all is well. Thank you for the prompt advice! > > -M. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 18: 9:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.rdc2.bc.home.com (mail1.rdc2.bc.home.com [24.2.10.84]) by hub.freebsd.org (Postfix) with ESMTP id 3E25B37B479 for ; Sat, 25 Nov 2000 18:09:46 -0800 (PST) Received: from godlike ([24.69.237.141]) by mail1.rdc2.bc.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001126020945.GCFQ1559.mail1.rdc2.bc.home.com@godlike> for ; Sat, 25 Nov 2000 18:09:45 -0800 Message-ID: <000e01c05817$3543c5e0$8ded4518@kldt1.bc.wave.home.com> From: "Mike Batchelor" To: Subject: Linux Quake 3 in.. FreeBSD? Date: Sun, 26 Nov 2000 18:10:26 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000B_01C057D4.26FEF420" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_000B_01C057D4.26FEF420 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hey all, I was wondering if it is possible to play Quake 3 in FreeBSD, using = Linux emulation. I remember my brother telling me Linux uses SVGALIB = for graphics in linux, but I could not `locate` it.. I have = 4.1.1-RELEASE. Thanks you guys ------=_NextPart_000_000B_01C057D4.26FEF420 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hey all,
 
I was wondering if it is possible to = play Quake 3=20 in FreeBSD, using Linux emulation.  I remember my brother telling = me Linux=20 uses SVGALIB for graphics in linux, but I could not  `locate` it.. = I have=20 4.1.1-RELEASE.  Thanks you guys
------=_NextPart_000_000B_01C057D4.26FEF420-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 18:22:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ux1.depaul.edu (ux1.depaul.edu [140.192.1.102]) by hub.freebsd.org (Postfix) with ESMTP id 3574337B479 for ; Sat, 25 Nov 2000 18:22:51 -0800 (PST) Received: from localhost (bwolter@localhost) by ux1.depaul.edu (Pro-8.9.3/8.9.3) with ESMTP id UAA10608; Sat, 25 Nov 2000 20:22:48 -0600 (CST) Date: Sat, 25 Nov 2000 20:22:48 -0600 (CST) From: Brian Wolter X-Sender: bwolter@ux1.depaul.edu To: David Daugherty Cc: questions@FreeBSD.ORG Subject: Re: email stopped working In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG did you make sure to add your domain to the rcpthosts list? in the directory /var/qmail/control? peace, brian t h e S a d M a c h i n e . o r g On Sat, 25 Nov 2000, David Daugherty wrote: > I've just installed qmail from the ports on a 4.2-Beta box. Qmail appears > to be working fine in that this works: > /usr/local/etc [davidd]=> telnet mydomain.com 25 > Trying xxx.xxx.xxx.xxx.. > Connected to mydomain.com. > Escape character is '^]'. > 220 truman.mydomain.com ESMTP > quit > 221 truman.mydomain.com > Connection closed by foreign host. > > /usr/local/etc [davidd]=> telnet mydomain.com 110 > Trying xxx.xxx.xxx.xxx... > Connected to mydomain.com. > Escape character is '^]'. > +OK <587.975198938@mydomain.com> > quit > +OK > Connection closed by foreign host. > > Problem is I'm not getting my email. I've tried sending myself email and > it's never being received. Have I blown something up here? Where should I > be looking? > > I have sendmail_enable=NO in rc.conf. > > David > doc-WA_Resident@wcug.wwu.edu > doc@wcug.wwu.edu > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 18:26:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sloth.wcug.wwu.edu (sloth.wcug.wwu.edu [140.160.164.200]) by hub.freebsd.org (Postfix) with SMTP id BA70437B4CF for ; Sat, 25 Nov 2000 18:26:26 -0800 (PST) Received: (qmail 17019 invoked by uid 1074); 26 Nov 2000 02:26:26 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 26 Nov 2000 02:26:26 -0000 Date: Sat, 25 Nov 2000 18:26:26 -0800 (PST) From: David Daugherty To: questions@freebsd.org Subject: Re: email stopped working In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG If anyone has responded to this can they please resend? I forgot to delete the .forward from this account :( Thanks in advance. David doc-WA_Resident@wcug.wwu.edu doc@wcug.wwu.edu On Sat, 25 Nov 2000, David Daugherty wrote: > I've just installed qmail from the ports on a 4.2-Beta box. Qmail appears > to be working fine in that this works: > /usr/local/etc [davidd]=> telnet mydomain.com 25 > Trying xxx.xxx.xxx.xxx.. > Connected to mydomain.com. > Escape character is '^]'. > 220 truman.mydomain.com ESMTP > quit > 221 truman.mydomain.com > Connection closed by foreign host. > > /usr/local/etc [davidd]=> telnet mydomain.com 110 > Trying xxx.xxx.xxx.xxx... > Connected to mydomain.com. > Escape character is '^]'. > +OK <587.975198938@mydomain.com> > quit > +OK > Connection closed by foreign host. > > Problem is I'm not getting my email. I've tried sending myself email and > it's never being received. Have I blown something up here? Where should I > be looking? > > I have sendmail_enable=NO in rc.conf. > > David > doc-WA_Resident@wcug.wwu.edu > doc@wcug.wwu.edu > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 18:28:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from murphys-outbound.servers.plus.net (unknown [212.159.14.225]) by hub.freebsd.org (Postfix) with SMTP id 9EB0E37B4C5 for ; Sat, 25 Nov 2000 18:28:22 -0800 (PST) Received: (qmail 14275 invoked from network); 26 Nov 2000 02:14:57 -0000 Received: from unknown (HELO daemon.lpds.sublink.org) (212.159.43.232) by murphys with SMTP; 26 Nov 2000 02:14:57 -0000 Received: from pelissero.org (hyde.lpds.sublink.org [10.0.0.2]) by daemon.lpds.sublink.org (8.9.3/8.9.3) with ESMTP id AAA24975; Sun, 26 Nov 2000 00:28:32 GMT (envelope-from wcp@pelissero.org) Received: (from wcp@localhost) by pelissero.org (8.9.3/8.9.3) id AAA13026; Sun, 26 Nov 2000 00:35:16 GMT (envelope-from wcp) From: "Walter C. Pelissero" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14880.23235.378207.248501@hyde.lpds.sublink.org> Date: Sun, 26 Nov 2000 00:35:15 +0000 (GMT) To: Keith Walker Cc: questions@freebsd.org Subject: Problem with USB printer In-Reply-To: <00112510022900.06194@mars.walker.dom> References: <00112510022900.06194@mars.walker.dom> X-Mailer: VM 6.72 under 21.1 (patch 9) "Canyonlands" XEmacs Lucid Reply-To: walter@pelissero.org X-Attribution: WP Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I investigated a little bit further the problem of the missing characters at the beginning of the first printed page and it seems it's solved adding 64 nulls (or whatever) at the end of the initialization string. That is: printf "000\033\001@EJL 1284.4\n@EJL \n0000000000000000000000000000000000000000000000000000000000000000" | tr 0 '\0' > /dev/ulpt0 But the problem shows up again at the next page. This printing ASCII files. Printing graphic stuff the problem doesn't show up. Another weird thing is that if I append a formfeed at the end of the ASCII file, the file doesn't get printed at all! On the other hand if I wait a while the file gets printed and then, at that point, I can send a formfeed that makes the printer spit out the sheet of paper. I can think of three cases: - the printer wasn't meant to be used for ASCII printouts because the firmware is buggy and works only with the provided drivers for Windoze and Mac (that is only graphics!) - the printer in USB mode needs a bidirectional protocol we don't support (the formfeed thing might be the symptom) - the forementioned init string is good to initialize the printer for graphic purposes but not for plain ASCII printing (?!) At the moment to avoid endless problems I'm using the printer only for graphics, converting even ASCII files if necesserary (apsfilter). -- 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 Nov 25 19: 3:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from linux.thesadmachine.org (dsl254-008-078-sea1.dsl-isp.net [216.254.8.78]) by hub.freebsd.org (Postfix) with SMTP id C790C37B479 for ; Sat, 25 Nov 2000 19:03:14 -0800 (PST) Received: (qmail 529 invoked by uid 1001); 26 Nov 2000 03:13:13 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 26 Nov 2000 03:13:13 -0000 Date: Sat, 25 Nov 2000 21:13:13 -0600 (CST) From: brian william wolter To: Subject: floppy drive In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG can anyone point me towards some documentation regarding adding a floppy drive under FreeBSD 4.1? i don't have much experience working with hardware, etc. any help would be appriciated. thanks. peace, brian t h e S a d M a c h i n e . o r g To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 19:17:12 2000 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 8DEBF37B4CF for ; Sat, 25 Nov 2000 19:17:10 -0800 (PST) Received: (from dan@localhost) by dan.emsphone.com (8.11.1/8.11.1) id eAQ3GpH23317; Sat, 25 Nov 2000 21:16:51 -0600 (CST) (envelope-from dan) Date: Sat, 25 Nov 2000 21:16:51 -0600 From: Dan Nelson To: cjclark@alum.mit.edu Cc: Sue Blake , freebsd-questions@FreeBSD.ORG Subject: Re: unsorting Message-ID: <20001125211651.B6923@dan.emsphone.com> References: <20001126023150.F377@welearn.com.au> <20001125143838.Z12190@149.211.6.64.reflexcom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.11i In-Reply-To: <20001125143838.Z12190@149.211.6.64.reflexcom.com>; from "Crist J . Clark" on Sat Nov 25 14:38:38 GMT 2000 X-OS: FreeBSD 5.0-CURRENT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In the last episode (Nov 25), Crist J . Clark said: > On Sun, Nov 26, 2000 at 02:31:53AM +1100, Sue Blake wrote: > > Is there some fairly simple way I can put a list of letters or > > words, or lines of a text file, into a random order? > > However, a really quick and ugly approach is to load the list into > memory, then just step through it swapping each item with another in > a random location. To be a little different, here is an awk(1) script > that does it, And just to be a bit more different, here's a shell script that will randomize the contents of the filename passed on the commandline: #! /bin/sh jot -r $(wc -l < $1) 1 1000000 | paste - $1 | sort -n | cut -f2- -- Dan Nelson dnelson@emsphone.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 19:20:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sr14.nsw-remote.bigpond.net.au (sr14.nsw-remote.bigpond.net.au [24.192.3.29]) by hub.freebsd.org (Postfix) with ESMTP id A83A737B479 for ; Sat, 25 Nov 2000 19:20:21 -0800 (PST) Received: from freebsd.freebsd.org (CPE-203-45-68-28.nsw.bigpond.net.au [203.45.68.28]) by sr14.nsw-remote.bigpond.net.au (Pro-8.9.3/8.9.3) with SMTP id OAA14798; Sun, 26 Nov 2000 14:19:39 +1100 (EDT) From: Danny To: , "Thomas Beauchamp" , Subject: Re: Message Board package Date: Mon, 27 Nov 2000 01:18:21 +1100 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain References: <000001c05685$e2d93a20$0101a8c0@james> MIME-Version: 1.0 Message-Id: <00112701195700.00365@freebsd.freebsd.org> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG There are many messageboard cgi's around on the internet written in perl, c or even php3 which is free Plus many other third party software such as Allaire Forums written in cfml where you have to pay Checkout maybe www.freecode.com On Sat, 25 Nov 2000, Thomas Beauchamp wrote: > Hi! > > I am looking for a message board GNU licensed package. > Should be able to register users, post messages, track answers and threads. > > Pointers please! > > Thomas Beauchamp > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 19:24:51 2000 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 819CF37B4D7 for ; Sat, 25 Nov 2000 19:24:42 -0800 (PST) Received: from pop2.pacific.net.sg (pop2.pacific.net.sg [203.120.90.86]) by seed.pacific.net.sg with ESMTP id eAQ3ObJ04438; Sun, 26 Nov 2000 11:24:37 +0800 (SGT) Received: from pacificnet (spoff107.pacific.net.sg [203.120.95.107]) by pop2.pacific.net.sg with SMTP id LAA22433; Sun, 26 Nov 2000 11:24:37 +0800 (SGT) Message-ID: <007801c05758$72383a40$6b5f78cb@pacificnet> From: "James Lim" To: "Justin Booth" Cc: References: <001201c054d2$ec442c50$3300000a@win4nrm9uru4gn> <00a001c054f9$5806bb80$8c5f78cb@computer1> <002c01c05758$892b9fd0$3300000a@win4nrm9uru4gn> Subject: Re: system monitoring? Date: Sun, 26 Nov 2000 11:24:53 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0075_01C0579B.7FEF23E0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0075_01C0579B.7FEF23E0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi justin:) =20 Seems like you have alot of possibilities here .=20 Could u bring out just one first and announce to the mailing list so we = could help u? Thanks Regards, James Lim ----- Original Message -----=20 From: Justin Booth=20 To: James Lim=20 Sent: Sunday, November 26, 2000 11:25 AM Subject: Re: system monitoring? James Lim,=20 The problem is that I need to be able to determine where problems = are comming from. I would like to know how much memory the kernel is = useing up. I know quite abit about unix, just not that much about = free-bsd specifically. I have over 85 FreeBSD machines, and I would like = to be able to start pinpointing problem area's. Mostly just odd = problems, like tar only useing 1% of the processor, but the computer = near locks up, and the HD interupts called are about 145-300 from the = vmstat that i'm reading. Could that just be the scsi-bus maxing out or = is that possibly the kernel not processing it fast enough? -Justin Booth. ----- Original Message -----=20 From: James Lim=20 To: Justin Booth ; freebsd-questions@FreeBSD.ORG=20 Sent: Wednesday, November 22, 2000 7:59 PM Subject: Re: system monitoring? Hi there, You need to tell us to what problems you have. :) Regards, James Lim ----- Original Message -----=20 From: Justin Booth=20 To: freebsd-questions@FreeBSD.ORG=20 Sent: Thursday, November 23, 2000 6:24 AM Subject: system monitoring? Hello,=20 How can I tell what is wrong with a system? I've managed to = weezle around and figure things here and there, about MaxUsers, FLDSIZ, = MAXFLDSIZ. but is there a definitive way to tell what is wrong with a = system?=20 -Justin Booth ------=_NextPart_000_0075_01C0579B.7FEF23E0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi justin:)
        =
       =20         Seems like you have alot of = possibilities=20 here .
Could u bring out just one first and = announce to=20 the mailing list so we could help u? Thanks
 
Regards,
James Lim
 
----- Original Message -----
From:=20 Justin = Booth=20
Sent: Sunday, November 26, 2000 = 11:25=20 AM
Subject: Re: system = monitoring?

James Lim,
    The problem is = that I need to=20 be able to determine where problems are comming from. I would like to = know how=20 much memory the kernel is useing up. I know quite abit about unix, = just not=20 that much about free-bsd specifically. I have over 85 FreeBSD = machines, and I=20 would like to be able to start pinpointing problem area's. Mostly just = odd=20 problems, like tar only useing 1% of the processor, but the computer = near=20 locks up, and the HD interupts called are about 145-300 from the = vmstat that=20 i'm reading. Could that just be the scsi-bus maxing out or is that = possibly=20 the kernel not processing it fast enough?
 
    -Justin = Booth.
----- Original Message -----
From:=20 James Lim
To: Justin Booth ; freebsd-questions@FreeBSD.O= RG=20
Sent: Wednesday, November 22, = 2000 7:59=20 PM
Subject: Re: system = monitoring?

Hi there,
 
          &nbs= p;=20 You need to tell us to what problems you have. :)
 
Regards,
James Lim
 
----- Original Message ----- =
From:=20 Justin=20 Booth
To: freebsd-questions@FreeBSD.O= RG=20
Sent: Thursday, November = 23, 2000=20 6:24 AM
Subject: system = monitoring?

Hello,
    How can I tell = what is=20 wrong with a system?  I've managed to weezle around and = figure things=20 here and there, about MaxUsers, FLDSIZ, MAXFLDSIZ. but is there a=20 definitive way to tell what is wrong with a system?
 
    -Justin = Booth
 
 
------=_NextPart_000_0075_01C0579B.7FEF23E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 19:25:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mattcave.net (unknown [216.0.204.206]) by hub.freebsd.org (Postfix) with ESMTP id 510E837B4CF for ; Sat, 25 Nov 2000 19:25:12 -0800 (PST) Received: from corellia [64.183.24.77] by mail.mattcave.net (SMTPD32-6.04) id A6119EC0009E; Sat, 25 Nov 2000 21:40:01 -0600 Message-ID: <001501c05758$4eea7260$3200a8c0@mattcave.net> From: To: Subject: The real Unix problem Date: Sat, 25 Nov 2000 21:23:54 -0600 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0012_01C05726.03A829A0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0012_01C05726.03A829A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable The biggest problem with fucking unix and fucking unix cloned turds is = there is no god damn help file that makes any sense. It will tell you = what you need and how to do and then at the end you will have to send = off for a fucking acme esp fuck your mind kit and hope you can figure = out what the gay ass unix admin meant. How about some fucking help for = more than than version it might work for. You want to beat Microsoft??? = You never will, because unix guys are stupid faggots that think everyone = should already know what they have stuck up there ass. Fuck Unix, Unix = sucks. Someone told me to use RedHat. It was the easiest. I went to = RedHat and they told me everything I already knew. Here's something I = don't know. How do you get a fucking program to load at startup on = freebsd? Where on your fucking website do you have that. I want to set = up a Unix POP3 server. The instructions tell me how to compile. Then = they tell me to move the fucking file to a directory in my path. I can = do that. Now what, the fucking end. They say I'm done. I can't get any = mail. They don't tell me how to configure it. They fucking make me = wonder what the fuck they have up there ass to make me psychic. How = about putting that on your website.=20 The only thing I've found on your website is how great freebsd is and = you can do it but it depends on your version. I know my version... how = do I fucking do it? Be sure and forward this to all you freebsd experts out there. ------=_NextPart_000_0012_01C05726.03A829A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
The biggest problem with fucking unix = and fucking=20 unix cloned turds is there is no god damn help file that makes any = sense. It=20 will tell you what you need and how to do and then at the end you will = have to=20 send off for a fucking acme esp fuck your mind kit and hope you can = figure out=20 what the gay ass unix admin meant. How about some fucking help for more = than=20 than version it might work for. You want to beat Microsoft??? You never = will,=20 because unix guys are stupid faggots that think everyone should already = know=20 what they have stuck up there ass. Fuck Unix, Unix sucks. Someone told = me to use=20 RedHat. It was the easiest. I went to RedHat and they told me everything = I=20 already knew. Here's something I don't know. How do you get a fucking = program to=20 load at startup on freebsd? Where on your fucking website do you have = that. I=20 want to set up a Unix POP3 server. The instructions tell me how to = compile. Then=20 they tell me to move the fucking file to a directory in my path. I can = do that.=20 Now what, the fucking end. They say I'm done. I can't get any mail. They = don't=20 tell me how to configure it. They fucking make me wonder what the fuck = they have=20 up there ass to make me psychic. How about putting that on your=20 website. 
 
The only thing I've found on your = website is how=20 great freebsd is and you can do it but it depends on your version. I = know my=20 version... how do I fucking do it?
 
 
 
 
Be sure and forward this to all you = freebsd experts=20 out there.
------=_NextPart_000_0012_01C05726.03A829A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 19:28:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id 12AED37B479 for ; Sat, 25 Nov 2000 19:28:30 -0800 (PST) Received: by heorot.1nova.com (Postfix, from userid 1000) id 4CA7218A0; Fri, 24 Nov 2000 19:51:57 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 39A24189F; Fri, 24 Nov 2000 19:51:57 +0000 (GMT) Date: Fri, 24 Nov 2000 19:51:57 +0000 (GMT) From: Rick Hamell To: mattman@mattcave.net Cc: freebsd-questions@FreeBSD.ORG Subject: Re: The real Unix problem In-Reply-To: <001501c05758$4eea7260$3200a8c0@mattcave.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Check out my links below for some good help sites. Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***FreeBSD - The Power to Serve! http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 19:28:59 2000 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 AAF8437B4CF for ; Sat, 25 Nov 2000 19:28:50 -0800 (PST) Received: from pop2.pacific.net.sg (pop2.pacific.net.sg [203.120.90.86]) by sunny.pacific.net.sg with ESMTP id eAQ3Sno05990 for ; Sun, 26 Nov 2000 11:28:49 +0800 (SGT) Received: from pacificnet (spoff107.pacific.net.sg [203.120.95.107]) by pop2.pacific.net.sg with SMTP id LAA25978 for ; Sun, 26 Nov 2000 11:28:48 +0800 (SGT) Message-ID: <008601c05759$07922ce0$6b5f78cb@pacificnet> From: "James Lim" To: References: <001501c05758$4eea7260$3200a8c0@mattcave.net> Subject: Re: The real Unix problem Date: Sun, 26 Nov 2000 11:29:05 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0083_01C0579C.1550B7A0" 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 X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0083_01C0579C.1550B7A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi all, "Warning to all, DO NOT START TO FEED THE TROLLS, THE = BREEDING SEASON IS HERE." Regards, James Lim ----- Original Message -----=20 From: mattman@mattcave.net=20 To: freebsd-questions@FreeBSD.ORG=20 Sent: Sunday, November 26, 2000 11:23 AM Subject: The real Unix problem The biggest problem with fucking unix and fucking unix cloned turds is = there is no god damn help file that makes any sense. It will tell you = what you need and how to do and then at the end you will have to send = off for a fucking acme esp fuck your mind kit and hope you can figure = out what the gay ass unix admin meant. How about some fucking help for = more than than version it might work for. You want to beat Microsoft??? = You never will, because unix guys are stupid faggots that think everyone = should already know what they have stuck up there ass. Fuck Unix, Unix = sucks. Someone told me to use RedHat. It was the easiest. I went to = RedHat and they told me everything I already knew. Here's something I = don't know. How do you get a fucking program to load at startup on = freebsd? Where on your fucking website do you have that. I want to set = up a Unix POP3 server. The instructions tell me how to compile. Then = they tell me to move the fucking file to a directory in my path. I can = do that. Now what, the fucking end. They say I'm done. I can't get any = mail. They don't tell me how to configure it. They fucking make me = wonder what the fuck they have up there ass to make me psychic. How = about putting that on your website.=20 The only thing I've found on your website is how great freebsd is and = you can do it but it depends on your version. I know my version... how = do I fucking do it? Be sure and forward this to all you freebsd experts out there. ------=_NextPart_000_0083_01C0579C.1550B7A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi all,
 
          &nbs= p;=20 "Warning to all, DO NOT START TO FEED THE TROLLS, THE BREEDING SEASON IS = HERE."
 
Regards,
James Lim
 
 
 
----- Original Message -----
From:=20 mattman@mattcave.net
To: freebsd-questions@FreeBSD.O= RG=20
Sent: Sunday, November 26, 2000 = 11:23=20 AM
Subject: The real Unix = problem

The biggest problem with fucking unix = and fucking=20 unix cloned turds is there is no god damn help file that makes any = sense. It=20 will tell you what you need and how to do and then at the end you will = have to=20 send off for a fucking acme esp fuck your mind kit and hope you can = figure out=20 what the gay ass unix admin meant. How about some fucking help for = more than=20 than version it might work for. You want to beat Microsoft??? You = never will,=20 because unix guys are stupid faggots that think everyone should = already know=20 what they have stuck up there ass. Fuck Unix, Unix sucks. Someone told = me to=20 use RedHat. It was the easiest. I went to RedHat and they told me = everything I=20 already knew. Here's something I don't know. How do you get a fucking = program=20 to load at startup on freebsd? Where on your fucking website do you = have that.=20 I want to set up a Unix POP3 server. The instructions tell me how to = compile.=20 Then they tell me to move the fucking file to a directory in my path. = I can do=20 that. Now what, the fucking end. They say I'm done. I can't get any = mail. They=20 don't tell me how to configure it. They fucking make me wonder what = the fuck=20 they have up there ass to make me psychic. How about putting that on = your=20 website. 
 
The only thing I've found on your = website is how=20 great freebsd is and you can do it but it depends on your version. I = know my=20 version... how do I fucking do it?
 
 
 
 
Be sure and forward this to all you = freebsd=20 experts out there.
------=_NextPart_000_0083_01C0579C.1550B7A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 19:45:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id CDAFC37B479 for ; Sat, 25 Nov 2000 19:45:12 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eAQ3jAN12011; Sat, 25 Nov 2000 19:45:10 -0800 (PST) Date: Sat, 25 Nov 2000 19:45:10 -0800 From: Alfred Perlstein To: mattman@mattcave.net Cc: freebsd-questions@FreeBSD.ORG Subject: Re: The real Unix problem Message-ID: <20001125194509.R8051@fw.wintelcom.net> References: <001501c05758$4eea7260$3200a8c0@mattcave.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <001501c05758$4eea7260$3200a8c0@mattcave.net>; from mattman@mattcave.net on Sat, Nov 25, 2000 at 09:23:54PM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * mattman@mattcave.net [001125 19:25] wrote: > The biggest problem with fucking unix and fucking unix cloned turds [snip] Did you eat paint chips when you were a child? I'm sorry if basic computer literacy is beyond your grasp, to cope I would suggest staying away from computers in general, the world would be much better off. best of luck, -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 19:56:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www3.pacific-pages.com (www3.pacific-pages.com [192.41.48.219]) by hub.freebsd.org (Postfix) with ESMTP id 0352C37B4C5 for ; Sat, 25 Nov 2000 19:56:09 -0800 (PST) Received: from d.tracker ([207.245.46.246]) by www3.pacific-pages.com (8.8.5) id UAA29275; Sat, 25 Nov 2000 20:55:26 -0700 (MST) Received: (from david@localhost) by d.tracker (8.9.3/8.9.3) id WAA00622; Sat, 25 Nov 2000 22:54:27 -0500 (EST) (envelope-from david) Date: Sat, 25 Nov 2000 22:40:59 -0500 From: David Banning To: tim hobbs Cc: questions@freebsd.org Subject: Re: web hosting with a dynamic IP address question Message-ID: <20001125224059.A607@www3.pacific-pages.com> Reply-To: David Banning References: <20001125175435.16932.qmail@web5305.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Mutt/1.2.5i In-Reply-To: <20001125175435.16932.qmail@web5305.mail.yahoo.com>; from uniquely_tim@yahoo.com on Sat, Nov 25, 2000 at 09:54:35AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks for your response -=20 Before I do all that - is it possible to find out what my running IP address currently is, and access my computer by typing http://123.456.7.8/myfiles.html or some such thing in my browser? On Sat, Nov 25, 2000 at 09:54:35AM -0800, tim hobbs wrote: > Hi David, >=20 >=20 > > I would like to call into my computer and access it > > like a web host > > from somewhere else on the web. My thought is that > > this should be possible > > if my IP address is known. =20 >=20 > This is how I am doing it, if this helps: >=20 > 1. I have an account with http://www.namesecure.com > where I registered my "www.mydomain.com". The > registrar offers a "redirection service" that allows > me to point "www.mydomain.com" to a specific IP > address or domain.=20 >=20 > 2. I went to http://www.justlinux.com and setup a > dynamic IP account as "mydomain.penguinpowered.com". I > tried some others like dyndns.org but they all let me > down is some way. JustLinux just works. >=20 > 3. I went back to the registrar and setup > "www.mydomain.com" to point to > "mydomain.penguinpowered.com". >=20 > 4. I got the IP update script from justlinux.com > called "jlclient-2.0" and installed it. Running it as > "jlclient -c " gives it the password and user id for > the justlinux account.=20 >=20 > 5. I added a script to my startup scripts that calls > "jlclient -u" to update the IP after the ppp has > dialed in . The ppp is enabled by the usual entries in > /etc/rc.conf=18. >=20 > I'm running on DSL and it's pretty fast to negotiate > the PPPoE connection. The speed of connection could be > a factor in a startup script so you may need to > investigate the best mode to use for the PPP. I am > using the "background" mode. >=20 > Hope this helps, >=20 > Tim Hobbs >=20 >=20 > __________________________________________________ > Do You Yahoo!? > Yahoo! Shopping - Thousands of Stores. Millions of Products. > http://shopping.yahoo.com/ >=20 --=20 Unquestionably, there is progress. The average American now pays out twice as much in taxes as he formerly got in wages. -- H. L. Mencken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 20: 8:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from w2xo.pgh.pa.us (ipl-229-095.npt-sdsl.stargate.net [208.223.229.95]) by hub.freebsd.org (Postfix) with ESMTP id 3F11A37B479 for ; Sat, 25 Nov 2000 20:08:54 -0800 (PST) Received: from w2xo.pgh.pa.us (shazam.w2xo.pgh.pa.us [192.168.5.3]) by w2xo.pgh.pa.us (8.9.3/8.9.3) with ESMTP id EAA58722; Sun, 26 Nov 2000 04:08:50 GMT (envelope-from durham@w2xo.pgh.pa.us) Message-ID: <3A208CD4.8ACB0D27@w2xo.pgh.pa.us> Date: Sat, 25 Nov 2000 23:08:52 -0500 From: Jim Durham Organization: Dis- X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: 01031149@3web.net Cc: questions@freebsd.org Subject: Re: 3.3R <--> win95 References: <200011260053.eAQ0rNV29737@sludge.pgh.pa.us> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Duke Normandin wrote: (snip) > I realize that my scenario is not the *usual* way! However, I use a free > ISP that insists in having users run his proprietary win95-only software. > His dialer does not even show up in $MS DUN window. So Internet > connections have to happen from the win95 side -- as far as I can tell. It > would be great if I could run Lynx from the FBSD box and trigger a > connection in the win95 box - but I've been told that win95 can't do that > ( I believe that the correct terminology is that it cannot "route"). > Well, that's a bummer... but OK, I understand... > > >What does the ep0 interface connect to? > > It connects to my win95 NIC via a x-over cable. As of 11:57:35 PM last > night, I am now able to successfully ping from both ends. That is a good sign... Now I'm getting the picture. I thought you were doing "lap link". > > ep0: flags=8843 mtu 1500 > inet 10.0.0.1 netmask 0xffffff00 broadcast 10.0.0.255 > ether 00:60:97:0c:c4:5e > tun0: flags=8051 mtu 1500 > inet 10.0.0.1 --> 10.0.0.2 netmask 0xffffff00 > So, does "ps ax" shows an instance of PPP running that is being started by some means that you don't know, if I get the picture? Did you look for a script in /usr/local/etc/rc.d ? . Any script in there is run at boot time. The 10.0.0.1 / 10.0.0.2 address pair are probably being assigned in /etc/ppp/ppp.conf. It just sounds like something is starting up ppp. If you don't have it started in /etc/rc.conf, then it's gotta be in /usr/local/etc/rc.d. The only other possibility I can think of is that someone modified /etc/defaults/rc.conf so that it enables it by default. You might look at that file. > I can see above that the 2nd line for tun0 is what is causing the problem, > but how it got that way I just don't know. I set up the NIC /etc/rc.conf > with ifconfig_ep0="inet 10.0.0.1 netmask 255.255.255.0". I don't think > that I hosed that line, did I? Other than that I updated /etc/hosts with > > have this stuff down to a fine science, so any help that you can throw at > this newbie would be appreciated more than you know. There's no panic for > this stuff -- just home-schooling myself. Just 2 old 486-66 boxes in the > basement ;,) > I have one of those myself.. 8-) . I don't know if it would help you, but there is some sort of gatewaying available in Win98. One of my clients that I built a server for used it to connect his office computers to the internet. He must not have been all that thrilled with it, because he bought a server from me, but I guess it worked. Maybe it would somehow work with the stuff your ISP has you running. -Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 20:33:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sloth.wcug.wwu.edu (sloth.wcug.wwu.edu [140.160.164.200]) by hub.freebsd.org (Postfix) with SMTP id 78E3437B4CF for ; Sat, 25 Nov 2000 20:33:42 -0800 (PST) Received: (qmail 21747 invoked by uid 1074); 26 Nov 2000 04:33:41 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 26 Nov 2000 04:33:41 -0000 Date: Sat, 25 Nov 2000 20:33:41 -0800 (PST) From: David Daugherty To: questions@freebsd.org Subject: HELP sendmail/qmail is totally hosed Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've read all of the docs in /var/qmail/doc. I can 'telnet localhost' to both port 25 and 110 without any problems. I'm just not getting any email. I've sent test emails also and I'm not getting them. What have I screwed up? David doc-WA_Resident@wcug.wwu.edu doc@wcug.wwu.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 20:41: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from linux.thesadmachine.org (dsl254-008-078-sea1.dsl-isp.net [216.254.8.78]) by hub.freebsd.org (Postfix) with SMTP id 64C5F37B4CF for ; Sat, 25 Nov 2000 20:40:59 -0800 (PST) Received: (qmail 36328 invoked by uid 1001); 26 Nov 2000 04:50:55 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 26 Nov 2000 04:50:55 -0000 Date: Sat, 25 Nov 2000 22:50:55 -0600 (CST) From: brian william wolter To: David Daugherty Cc: Subject: Re: HELP sendmail/qmail is totally hosed In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG you'll have to be a little more spacific... what are the error messages you get when sending test emails? peace, brian t h e S a d M a c h i n e . o r g On Sat, 25 Nov 2000, David Daugherty wrote: > I've read all of the docs in /var/qmail/doc. I can 'telnet localhost' to > both port 25 and 110 without any problems. I'm just not getting any > email. I've sent test emails also and I'm not getting them. > > What have I screwed up? > > David > doc-WA_Resident@wcug.wwu.edu > doc@wcug.wwu.edu > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 20:48:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sloth.wcug.wwu.edu (sloth.wcug.wwu.edu [140.160.164.200]) by hub.freebsd.org (Postfix) with SMTP id 9A43937B4CF for ; Sat, 25 Nov 2000 20:48:55 -0800 (PST) Received: (qmail 23699 invoked by uid 1074); 26 Nov 2000 04:48:54 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 26 Nov 2000 04:48:54 -0000 Date: Sat, 25 Nov 2000 20:48:54 -0800 (PST) From: David Daugherty To: brian william wolter Cc: questions@freebsd.org Subject: Re: HELP sendmail/qmail is totally hosed In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yes, I'm getting emails. I can see them in /var/qmail/queue/local. What am I missing in order to get them to the proper users though? David doc-WA_Resident@wcug.wwu.edu doc@wcug.wwu.edu On Sat, 25 Nov 2000, brian william wolter wrote: > you'll have to be a little more spacific... what are the error messages > you get when sending test emails? > > > peace, > brian > > > t h e S a d M a c h i n e . o r g > > On Sat, 25 Nov 2000, David Daugherty wrote: > > > I've read all of the docs in /var/qmail/doc. I can 'telnet localhost' to > > both port 25 and 110 without any problems. I'm just not getting any > > email. I've sent test emails also and I'm not getting them. > > > > What have I screwed up? > > > > David > > doc-WA_Resident@wcug.wwu.edu > > doc@wcug.wwu.edu > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 20:49: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from yoda.dccnet.com (mail.deltacable.com [207.230.239.70]) by hub.freebsd.org (Postfix) with ESMTP id CA84E37B4D7 for ; Sat, 25 Nov 2000 20:48:56 -0800 (PST) Received: from dccnet.com (unverified [209.5.158.158]) by yoda.dccnet.com (Rockliffe SMTPRA 3.4.6) with ESMTP id for ; Sat, 25 Nov 2000 20:48:56 -0800 Message-ID: <3A20966F.41C33559@dccnet.com> Date: Sat, 25 Nov 2000 20:49:51 -0800 From: "Kevin G. Eliuk" X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: Other's experiences with TV-Out and XF86 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I know that this is more of an X question but I hope that someone may be able to help shed some preliminary information on this for me. The video hardware in question is an ASUS V6600 GeForce 256 Deluxe. I am searching for the logistics of using this for strictly a TV-Out service for a looping memoboard application, and is the XFree86 support currently going to do it for me. I have searched a number of lists and this specific topic is not discussed very much. TIA -- Regards, )))))) )))))) )))))) Kevin G. Eliuk )) )) )) )) )) )) http://www.FreeBSD.org )) "Change your operating system, )) )) )) )) )) and You can change your World." )))))) )))))) )))))) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 20:49:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id 6613A37B4CF for ; Sat, 25 Nov 2000 20:49:51 -0800 (PST) Received: by heorot.1nova.com (Postfix, from userid 1000) id 0C3EE18A0; Fri, 24 Nov 2000 21:13:24 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 03786189F; Fri, 24 Nov 2000 21:13:23 +0000 (GMT) Date: Fri, 24 Nov 2000 21:13:23 +0000 (GMT) From: Rick Hamell To: Jim Durham Cc: 01031149@3web.net, questions@freebsd.org Subject: Re: 3.3R <--> win95 In-Reply-To: <3A208CD4.8ACB0D27@w2xo.pgh.pa.us> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > I realize that my scenario is not the *usual* way! However, I use a free > > ISP that insists in having users run his proprietary win95-only software. > > His dialer does not even show up in $MS DUN window. So Internet > > connections have to happen from the win95 side -- as far as I can tell. It > > would be great if I could run Lynx from the FBSD box and trigger a > > connection in the win95 box - but I've been told that win95 can't do that > > ( I believe that the correct terminology is that it cannot "route"). > > > Well, that's a bummer... but OK, I understand... There is some third party software that loads on to Win95 that does this. Unluckily I do not remeber any names, though Mercury 32 comes to mind, I remeber it being a bit flakey though. Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***FreeBSD - The Power to Serve! http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 21: 4:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from linux.thesadmachine.org (dsl254-008-078-sea1.dsl-isp.net [216.254.8.78]) by hub.freebsd.org (Postfix) with SMTP id B6EA737B479 for ; Sat, 25 Nov 2000 21:04:36 -0800 (PST) Received: (qmail 36394 invoked by uid 1001); 26 Nov 2000 05:14:34 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 26 Nov 2000 05:14:34 -0000 Date: Sat, 25 Nov 2000 23:14:34 -0600 (CST) From: brian william wolter To: David Daugherty Cc: Subject: Re: HELP sendmail/qmail is totally hosed In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG did you copy the file /var/qmail/boot/home to /var/qmail/rc? (this will route mail to a file called Mailbox in each users home directory) peace, brian t h e S a d M a c h i n e . o r g On Sat, 25 Nov 2000, David Daugherty wrote: > Yes, I'm getting emails. I can see them in /var/qmail/queue/local. What am > I missing in order to get them to the proper users though? > > David > doc-WA_Resident@wcug.wwu.edu > doc@wcug.wwu.edu > > On Sat, 25 Nov 2000, brian william wolter wrote: > > > you'll have to be a little more spacific... what are the error messages > > you get when sending test emails? > > > > > > peace, > > brian > > > > > > t h e S a d M a c h i n e . o r g > > > > On Sat, 25 Nov 2000, David Daugherty wrote: > > > > > I've read all of the docs in /var/qmail/doc. I can 'telnet localhost' to > > > both port 25 and 110 without any problems. I'm just not getting any > > > email. I've sent test emails also and I'm not getting them. > > > > > > What have I screwed up? > > > > > > David > > > doc-WA_Resident@wcug.wwu.edu > > > doc@wcug.wwu.edu > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 21:17:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sloth.wcug.wwu.edu (sloth.wcug.wwu.edu [140.160.164.200]) by hub.freebsd.org (Postfix) with SMTP id 01F7437B4C5 for ; Sat, 25 Nov 2000 21:17:45 -0800 (PST) Received: (qmail 16976 invoked by uid 1074); 26 Nov 2000 05:17:44 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 26 Nov 2000 05:17:44 -0000 Date: Sat, 25 Nov 2000 21:17:44 -0800 (PST) From: David Daugherty To: brian william wolter Cc: questions@freebsd.org Subject: Re: HELP sendmail/qmail is totally hosed In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yup /usr/local/etc/rc.d [davidd]=> ls -al qmai* lrwxr-xr-x 1 root wheel 13 Nov 25 14:54 qmail.sh@ -> /var/qmail/rc ===[root] /usr/home/davidd # cat /var/qmail/boot/home #!/bin/sh # Using splogger to send the log through syslog. # Using qmail-local to deliver messages to ~/Mailbox by default. exec env - PATH="/var/qmail/bin:$PATH" \ qmail-start ./Mailbox splogger qmail& is there some error log for qmail anywhere? I don't see anything in /var/log David doc-WA_Resident@wcug.wwu.edu doc@wcug.wwu.edu On Sat, 25 Nov 2000, brian william wolter wrote: > did you copy the file /var/qmail/boot/home to /var/qmail/rc? > (this will route mail to a file called Mailbox in each users home > directory) > > peace, > brian > > > t h e S a d M a c h i n e . o r g > > On Sat, 25 Nov 2000, David Daugherty wrote: > > > Yes, I'm getting emails. I can see them in /var/qmail/queue/local. What am > > I missing in order to get them to the proper users though? > > > > David > > doc-WA_Resident@wcug.wwu.edu > > doc@wcug.wwu.edu > > > > On Sat, 25 Nov 2000, brian william wolter wrote: > > > > > you'll have to be a little more spacific... what are the error messages > > > you get when sending test emails? > > > > > > > > > peace, > > > brian > > > > > > > > > t h e S a d M a c h i n e . o r g > > > > > > On Sat, 25 Nov 2000, David Daugherty wrote: > > > > > > > I've read all of the docs in /var/qmail/doc. I can 'telnet localhost' to > > > > both port 25 and 110 without any problems. I'm just not getting any > > > > email. I've sent test emails also and I'm not getting them. > > > > > > > > What have I screwed up? > > > > > > > > David > > > > doc-WA_Resident@wcug.wwu.edu > > > > doc@wcug.wwu.edu > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 21:21:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.icehouse.net (mail.icehouse.net [204.203.53.2]) by hub.freebsd.org (Postfix) with ESMTP id 1C3BF37B479 for ; Sat, 25 Nov 2000 21:21:35 -0800 (PST) Received: from deimos.walker.dom (ppp-379.icehouse.net [204.203.54.149]) by mail.icehouse.net (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id VAA07807; Sat, 25 Nov 2000 21:21:32 -0800 X-Authentication-Warning: mail.icehouse.net: Host ppp-379.icehouse.net [204.203.54.149] claimed to be deimos.walker.dom Received: from mars.walker.dom (mars.walker.dom. [192.168.0.1]) by deimos.walker.dom (8.11.1/8.11.1) with SMTP id eAQ5LTi10908; Sat, 25 Nov 2000 21:21:30 -0800 (PST) (envelope-from kew@icehouse.net) From: Keith Walker Date: Sat, 25 Nov 2000 21:21:29 -0800 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="us-ascii" To: walter@pelissero.org References: <00112510022900.06194@mars.walker.dom> <14880.23235.378207.248501@hyde.lpds.sublink.org> In-Reply-To: <14880.23235.378207.248501@hyde.lpds.sublink.org> Subject: Re: Problem with USB printer Cc: questions@freebsd.org MIME-Version: 1.0 Message-Id: <00112521212902.07073@mars.walker.dom> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Saturday 25 November 2000 4:35, you wrote: > I investigated a little bit further the problem of the missing... > > At the moment to avoid endless problems I'm using the printer only for > graphics, converting even ASCII files if necesserary (apsfilter). I'm not getting the character dropping on ascii files. I can do something like "ls -l > /dev/ulpt0" and it works fine, although that's after I've sent the init string way before this particular print job (BTW, I do have to hit FF to move that sheet out, though). Difference between your 860 and my 900, maybe? -- Keith Walker kew@icehouse.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 21:23:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pro.fais.net (unknown [208.249.141.254]) by hub.freebsd.org (Postfix) with ESMTP id AB7AA37B4CF for ; Sat, 25 Nov 2000 21:23:25 -0800 (PST) Received: from drnet.fais.net (root@drnet.fais.net [208.249.141.31]) by pro.fais.net (8.9.3/8.9.3/Debian/GNU) with ESMTP id AAA30402; Sun, 26 Nov 2000 00:09:55 -0600 Received: from wks01 (wks01.drnet.fais.net [10.64.80.10]) by drnet.fais.net (8.11.0/8.11.0) with SMTP id eAPNJL726153; Sat, 25 Nov 2000 23:19:23 GMT (envelope-from jwpauler@jwpages.com) Message-ID: <001101c05768$415cf400$0a50400a@drnet.fais.net> From: "Justin W. Pauler" To: "David Daugherty" , References: Subject: Re: email stopped working Date: Sat, 25 Nov 2000 23:18:00 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG try this just for kicks. it will help you to see what is actually going on behind the scenes: mail -v - jwp Justin W. Pauler (drnet) E-Mail: jwpauler@jwpages.com ICQ: 95989631 IRC: Undernet IRC Network ----- Original Message ----- From: "David Daugherty" To: Sent: Saturday, November 25, 2000 8:26 PM Subject: Re: email stopped working > If anyone has responded to this can they please resend? I forgot to delete > the .forward from this account :( > > Thanks in advance. > > David > doc-WA_Resident@wcug.wwu.edu > doc@wcug.wwu.edu > > On Sat, 25 Nov 2000, David Daugherty wrote: > > > I've just installed qmail from the ports on a 4.2-Beta box. Qmail appears > > to be working fine in that this works: > > /usr/local/etc [davidd]=> telnet mydomain.com 25 > > Trying xxx.xxx.xxx.xxx.. > > Connected to mydomain.com. > > Escape character is '^]'. > > 220 truman.mydomain.com ESMTP > > quit > > 221 truman.mydomain.com > > Connection closed by foreign host. > > > > /usr/local/etc [davidd]=> telnet mydomain.com 110 > > Trying xxx.xxx.xxx.xxx... > > Connected to mydomain.com. > > Escape character is '^]'. > > +OK <587.975198938@mydomain.com> > > quit > > +OK > > Connection closed by foreign host. > > > > Problem is I'm not getting my email. I've tried sending myself email and > > it's never being received. Have I blown something up here? Where should I > > be looking? > > > > I have sendmail_enable=NO in rc.conf. > > > > David > > doc-WA_Resident@wcug.wwu.edu > > doc@wcug.wwu.edu > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 21:29:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sloth.wcug.wwu.edu (sloth.wcug.wwu.edu [140.160.164.200]) by hub.freebsd.org (Postfix) with SMTP id 11F7F37B479 for ; Sat, 25 Nov 2000 21:29:16 -0800 (PST) Received: (qmail 18843 invoked by uid 1074); 26 Nov 2000 05:29:10 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 26 Nov 2000 05:29:10 -0000 Date: Sat, 25 Nov 2000 21:29:10 -0800 (PST) From: David Daugherty To: "Justin W. Pauler" Cc: questions@FreeBSD.ORG Subject: Re: email stopped working In-Reply-To: <001101c05768$415cf400$0a50400a@drnet.fais.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Looks like it is still trying to use sendmail: /usr/local/etc/rc.d [davidd]=> mail -v davidd Subject: test blah blah blah EOT /usr/sbin/sendmail: No such file or directory my /etc/mail/mailer.conf has: sendmail /var/qmail/bin/sendmail send-mail /var/qmail/bin/sendmail mailq /var/qmail/bin/qmail-qread newaliases /var/qmail/bin/newaliases Anywhere else this needs to be changed? David doc-WA_Resident@wcug.wwu.edu doc@wcug.wwu.edu On Sat, 25 Nov 2000, Justin W. Pauler wrote: > try this just for kicks. it will help you to see what is actually going on > behind the scenes: > > mail -v > > - jwp > > Justin W. Pauler (drnet) > E-Mail: jwpauler@jwpages.com > ICQ: 95989631 > IRC: Undernet IRC Network > > ----- Original Message ----- > From: "David Daugherty" > To: > Sent: Saturday, November 25, 2000 8:26 PM > Subject: Re: email stopped working > > > > If anyone has responded to this can they please resend? I forgot to delete > > the .forward from this account :( > > > > Thanks in advance. > > > > David > > doc-WA_Resident@wcug.wwu.edu > > doc@wcug.wwu.edu > > > > On Sat, 25 Nov 2000, David Daugherty wrote: > > > > > I've just installed qmail from the ports on a 4.2-Beta box. Qmail > appears > > > to be working fine in that this works: > > > /usr/local/etc [davidd]=> telnet mydomain.com 25 > > > Trying xxx.xxx.xxx.xxx.. > > > Connected to mydomain.com. > > > Escape character is '^]'. > > > 220 truman.mydomain.com ESMTP > > > quit > > > 221 truman.mydomain.com > > > Connection closed by foreign host. > > > > > > /usr/local/etc [davidd]=> telnet mydomain.com 110 > > > Trying xxx.xxx.xxx.xxx... > > > Connected to mydomain.com. > > > Escape character is '^]'. > > > +OK <587.975198938@mydomain.com> > > > quit > > > +OK > > > Connection closed by foreign host. > > > > > > Problem is I'm not getting my email. I've tried sending myself email and > > > it's never being received. Have I blown something up here? Where should > I > > > be looking? > > > > > > I have sendmail_enable=NO in rc.conf. > > > > > > David > > > doc-WA_Resident@wcug.wwu.edu > > > doc@wcug.wwu.edu > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 21:30:54 2000 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 6C18A37B4D7 for ; Sat, 25 Nov 2000 21:30:49 -0800 (PST) Received: from fedde (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.0/8.11.0.Beta3) with ESMTP id eAQ5UgJ26204; Sat, 25 Nov 2000 22:30:43 -0700 (MST) Message-Id: <200011260530.eAQ5UgJ26204@fedde.littleton.co.us> To: "James Lim" Cc: "Justin Booth" , freebsd-questions@FreeBSD.ORG Subject: Gentle request... FIX YOUR MUA! From: Chris Fedde Date: Sat, 25 Nov 2000 22:30:42 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG So many of you are using some piece of crud that puts headers like these into your mail: X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 There are so many problems with this that I don't even want to begin to get into it. If you must use this user hostile sub-standard piece of interface candy, please, please, please, configure it to send simple text when what you mean to send is simple text. thank you -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 21:33:35 2000 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 41EB837B4C5 for ; Sat, 25 Nov 2000 21:33:29 -0800 (PST) Received: from pop2.pacific.net.sg (pop2.pacific.net.sg [203.120.90.86]) by seed.pacific.net.sg with ESMTP id eAQ5XSJ01568; Sun, 26 Nov 2000 13:33:28 +0800 (SGT) Received: from gchang (spoff250.pacific.net.sg [203.120.94.250]) by pop2.pacific.net.sg with SMTP id NAA05297; Sun, 26 Nov 2000 13:33:27 +0800 (SGT) Message-ID: <001101c0576a$167218e0$fa5e78cb@gchang> From: "James Lim" To: "Chris Fedde" Cc: "Justin Booth" , References: <200011260530.eAQ5UgJ26204@fedde.littleton.co.us> Subject: Re: Gentle request... FIX YOUR MUA! Date: Sun, 26 Nov 2000 13:31:11 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have no choice as most of the time i am in the office and it is using AS USUAL windows 95 Regards, James Lim ----- Original Message ----- From: "Chris Fedde" To: "James Lim" Cc: "Justin Booth" ; Sent: Sunday, November 26, 2000 1:30 PM Subject: Gentle request... FIX YOUR MUA! > So many of you are using some piece of crud that puts headers like these into > your mail: > > X-MSMail-Priority: Normal > X-Mailer: Microsoft Outlook Express 5.50.4133.2400 > X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 > > There are so many problems with this that I don't even want > to begin to get into it. If you must use this user hostile > sub-standard piece of interface candy, please, please, please, > configure it to send simple text when what you mean to send is > simple text. > > thank you > > -- > Chris Fedde > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 21:36: 7 2000 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 199AA37B479 for ; Sat, 25 Nov 2000 21:36:04 -0800 (PST) Received: from rac3.wam.umd.edu (IDENT:root@rac3.wam.umd.edu [128.8.10.143]) by po4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id AAA07073; Sun, 26 Nov 2000 00:34:41 -0500 (EST) Received: from rac3.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac3.wam.umd.edu (8.9.3/8.9.3) with SMTP id AAA12546; Sun, 26 Nov 2000 00:34:41 -0500 (EST) Received: from localhost (culverk@localhost) by rac3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id AAA12542; Sun, 26 Nov 2000 00:34:41 -0500 (EST) X-Authentication-Warning: rac3.wam.umd.edu: culverk owned process doing -bs Date: Sun, 26 Nov 2000 00:34:41 -0500 (EST) From: Kenneth Wayne Culver To: mattman@mattcave.net Cc: freebsd-questions@FreeBSD.ORG Subject: Re: The real Unix problem In-Reply-To: <001501c05758$4eea7260$3200a8c0@mattcave.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Well, maybe if you'd get a f***ing clue and actually search the mailing lists (on the webpage) and look at the handbook (again on the webpage) you could figure it out. This isn't point 'n click winblows for idiots, this is FreeBSD; you actually have to LEARN something to use it. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park.=09 | http://www.wam.umd.edu/~culverk/| =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D On Sat, 25 Nov 2000 mattman@mattcave.net wrote: > The biggest problem with fucking unix and fucking unix cloned turds is th= ere is no god damn help file that makes any sense. It will tell you what yo= u need and how to do and then at the end you will have to send off for a fu= cking acme esp fuck your mind kit and hope you can figure out what the gay = ass unix admin meant. How about some fucking help for more than than versio= n it might work for. You want to beat Microsoft??? You never will, because = unix guys are stupid faggots that think everyone should already know what t= hey have stuck up there ass. Fuck Unix, Unix sucks. Someone told me to use = RedHat. It was the easiest. I went to RedHat and they told me everything I = already knew. Here's something I don't know. How do you get a fucking progr= am to load at startup on freebsd? Where on your fucking website do you have= that. I want to set up a Unix POP3 server. The instructions tell me how to= compile. Then they tell me to move the fucking file to a directory in my p= ath. I can do that. Now what, the fucking end. They say I'm done. I can't g= et any mail. They don't tell me how to configure it. They fucking make me w= onder what the fuck they have up there ass to make me psychic. How about pu= tting that on your website.=20 >=20 > The only thing I've found on your website is how great freebsd is and you= can do it but it depends on your version. I know my version... how do I fu= cking do it? >=20 >=20 >=20 >=20 > Be sure and forward this to all you freebsd experts out there. >=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 21:45:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from linux.thesadmachine.org (dsl254-008-078-sea1.dsl-isp.net [216.254.8.78]) by hub.freebsd.org (Postfix) with SMTP id 1B18B37B479 for ; Sat, 25 Nov 2000 21:45:49 -0800 (PST) Received: (qmail 456 invoked by uid 1001); 26 Nov 2000 05:55:43 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 26 Nov 2000 05:55:43 -0000 Date: Sat, 25 Nov 2000 23:55:43 -0600 (CST) From: brian william wolter To: David Daugherty Cc: Subject: Re: HELP sendmail/qmail is totally hosed In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG /var/log/maillog should record qmail's activity. peace, brian t h e S a d M a c h i n e . o r g On Sat, 25 Nov 2000, David Daugherty wrote: > Yup > > /usr/local/etc/rc.d [davidd]=> ls -al qmai* > lrwxr-xr-x 1 root wheel 13 Nov 25 14:54 qmail.sh@ -> /var/qmail/rc > > ===[root] /usr/home/davidd # cat /var/qmail/boot/home > #!/bin/sh > > # Using splogger to send the log through syslog. > # Using qmail-local to deliver messages to ~/Mailbox by default. > > exec env - PATH="/var/qmail/bin:$PATH" \ > qmail-start ./Mailbox splogger qmail& > > is there some error log for qmail anywhere? I don't see anything in > /var/log > > David > doc-WA_Resident@wcug.wwu.edu > doc@wcug.wwu.edu > > On Sat, 25 Nov 2000, brian william wolter wrote: > > > did you copy the file /var/qmail/boot/home to /var/qmail/rc? > > (this will route mail to a file called Mailbox in each users home > > directory) > > > > peace, > > brian > > > > > > t h e S a d M a c h i n e . o r g > > > > On Sat, 25 Nov 2000, David Daugherty wrote: > > > > > Yes, I'm getting emails. I can see them in /var/qmail/queue/local. What am > > > I missing in order to get them to the proper users though? > > > > > > David > > > doc-WA_Resident@wcug.wwu.edu > > > doc@wcug.wwu.edu > > > > > > On Sat, 25 Nov 2000, brian william wolter wrote: > > > > > > > you'll have to be a little more spacific... what are the error messages > > > > you get when sending test emails? > > > > > > > > > > > > peace, > > > > brian > > > > > > > > > > > > t h e S a d M a c h i n e . o r g > > > > > > > > On Sat, 25 Nov 2000, David Daugherty wrote: > > > > > > > > > I've read all of the docs in /var/qmail/doc. I can 'telnet localhost' to > > > > > both port 25 and 110 without any problems. I'm just not getting any > > > > > email. I've sent test emails also and I'm not getting them. > > > > > > > > > > What have I screwed up? > > > > > > > > > > David > > > > > doc-WA_Resident@wcug.wwu.edu > > > > > doc@wcug.wwu.edu > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 21:50:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sm4.texas.rr.com (unknown [24.93.35.211]) by hub.freebsd.org (Postfix) with ESMTP id 2EF5E37B4CF for ; Sat, 25 Nov 2000 21:50:45 -0800 (PST) Received: from satx.rr.com (cs160145-193.satx.rr.com [24.160.145.193]) by sm4.texas.rr.com (8.10.1/8.10.1) with ESMTP id eAQ5odQ10614 for ; Sat, 25 Nov 2000 23:50:39 -0600 Message-ID: <3A20A493.C71BAAF4@satx.rr.com> Date: Sat, 25 Nov 2000 23:50:11 -0600 From: Jason X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: ssh / linux and of course.. vi.. Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG when i ssh to our linux machines at work and try editing/viewing something in vi, it all goes to shit. (everything is on 1 line) i know this is not an ssh problem, but something i need to do with my term i persume. any help would be mucho appreciated. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 21:54:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f313.law7.hotmail.com [216.33.236.191]) by hub.freebsd.org (Postfix) with ESMTP id CE1ED37B4CF for ; Sat, 25 Nov 2000 21:54:33 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 25 Nov 2000 21:54:33 -0800 Received: from 142.104.156.37 by lw7fd.law7.hotmail.msn.com with HTTP; Sun, 26 Nov 2000 05:54:33 GMT X-Originating-IP: [142.104.156.37] From: "Jeff Smith" To: questions@freebsd.org Subject: PLZ help Date: Sat, 25 Nov 2000 21:54:33 -0800 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 26 Nov 2000 05:54:33.0698 (UTC) FILETIME=[59DB7420:01C0576D] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have two questions for u. First of all i am running freeBSD 4.1.1 my question is this. In my computer room i have the following setup 2 (ip:10.1.1.2 / W---H--G (ip:10.1.1.1 & external ip) \ 1 (ip: 10.1.1.3) -=rj45 wire W=wall jack H=hub G=Gateway(computer running freeBSD 4.1.1 1=home pc running both rh7 and win98 2=home pc running win98 the i have access to an oc3 line via the university and with that a static ip address. I have setup the gateway to act as a gateway for computers 1 and 2 using two ethernet cards, ip filtering and the firewall. My question is how could i set it up so that computers 1 and 2 could have an ftp site accessible from the outside world. The only way now would be to login to the gateway computer and then use that to get access to the internal network. I have heard that you can set it up so that computers 1 and 2 have a certain port associated with them and that would be how you would route the request??...i am not really sure if that is worded right. Anyway please help me if i have made my problem clear enough and if not please ask me what is not clear. Thanks alot for your time _____________________________________________________________________________________ Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 22: 0:43 2000 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 24C0137B4CF for ; Sat, 25 Nov 2000 22:00:40 -0800 (PST) Received: from pop2.pacific.net.sg (pop2.pacific.net.sg [203.120.90.86]) by sunny.pacific.net.sg with ESMTP id eAQ60do05655; Sun, 26 Nov 2000 14:00:39 +0800 (SGT) Received: from gchang (spoff250.pacific.net.sg [203.120.94.250]) by pop2.pacific.net.sg with SMTP id OAA27826; Sun, 26 Nov 2000 14:00:38 +0800 (SGT) Message-ID: <003001c0576d$e2ab41e0$fa5e78cb@gchang> From: "James Lim" To: "Jeff Smith" , References: Subject: Re: PLZ help Date: Sun, 26 Nov 2000 13:58:22 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I tried using datapipe from /usr/ports/net but haven't got any outcome yet. anyone has a better idea? Thanks! Regards, James Lim ----- Original Message ----- From: "Jeff Smith" To: Sent: Sunday, November 26, 2000 1:54 PM Subject: PLZ help > I have two questions for u. First of all i am running freeBSD 4.1.1 > my question is this. In my computer room i have the following setup > > 2 (ip:10.1.1.2 > / > W---H--G (ip:10.1.1.1 & external ip) > \ > 1 (ip: 10.1.1.3) > -=rj45 wire > W=wall jack > H=hub > G=Gateway(computer running freeBSD 4.1.1 > 1=home pc running both rh7 and win98 > 2=home pc running win98 > > the i have access to an oc3 line via the university and with that a static > ip address. I have setup the gateway to act as a gateway for computers 1 > and 2 using two ethernet cards, ip filtering and the firewall. My question > is how could i set it up so that computers 1 and 2 could have an ftp site > accessible from the outside world. The only way now would be to login to > the gateway computer and then use that to get access to the internal > network. I have heard that you can set it up so that computers 1 and 2 have > a certain port associated with them and that would be how you would route > the request??...i am not really sure if that is worded right. Anyway please > help me if i have made my problem clear enough and if not please ask me what > is not clear. > > > Thanks alot for your time > ____________________________________________________________________________ _________ > Get more from the Web. FREE MSN Explorer download : 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 Sat Nov 25 22: 1: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sloth.wcug.wwu.edu (sloth.wcug.wwu.edu [140.160.164.200]) by hub.freebsd.org (Postfix) with SMTP id 57B1337B4D7 for ; Sat, 25 Nov 2000 22:00:57 -0800 (PST) Received: (qmail 6779 invoked by uid 1074); 26 Nov 2000 06:00:56 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 26 Nov 2000 06:00:56 -0000 Date: Sat, 25 Nov 2000 22:00:56 -0800 (PST) From: David Daugherty To: brian william wolter Cc: questions@freebsd.org Subject: Re: HELP sendmail/qmail is totally hosed In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ok, that's a start. From today alone this maillog is 475K! ===[root] /var/qmail # tail /var/log/maillog Nov 25 21:55:33 datasphereweb qmail: 975218133.486254 delivery 306: deferral: Temporary_error_on_maildir_delivery._(#4.3.0)/ Nov 25 21:55:33 datasphereweb qmail: 975218133.486996 status: local 0/10 remote 0/20 Nov 25 21:56:04 datasphereweb qmail: 975218164.496530 starting delivery 307: msg 6209 to local davidd@datasphereweb.com Nov 25 21:56:04 datasphereweb qmail: 975218164.498398 status: local 1/10 remote 0/20 Nov 25 21:56:08 datasphereweb qmail: 975218168.527996 delivery 307: deferral: Temporary_error_on_maildir_delivery._(#4.3.0)/ Nov 25 21:56:08 datasphereweb qmail: 975218168.528784 status: local 0/10 remote 0/20 Nov 25 21:56:22 datasphereweb qmail: 975218182.537469 starting delivery 308: msg 6222 to local davidd@datasphereweb.com Nov 25 21:56:22 datasphereweb qmail: 975218182.539306 status: local 1/10 remote 0/20 Nov 25 21:56:26 datasphereweb qmail: 975218186.569080 delivery 308: deferral: Temporary_error_on_maildir_delivery._(#4.3.0)/ Nov 25 21:56:26 datasphereweb qmail: 975218186.569871 status: local 0/10 remote 0/20 Does Maildir under davidd need any kind of special permissions? Right now it is 700. David doc-WA_Resident@wcug.wwu.edu doc@wcug.wwu.edu On Sat, 25 Nov 2000, brian william wolter wrote: > /var/log/maillog should record qmail's activity. > > > peace, > brian > > > t h e S a d M a c h i n e . o r g > > On Sat, 25 Nov 2000, David Daugherty wrote: > > > Yup > > > > /usr/local/etc/rc.d [davidd]=> ls -al qmai* > > lrwxr-xr-x 1 root wheel 13 Nov 25 14:54 qmail.sh@ -> /var/qmail/rc > > > > ===[root] /usr/home/davidd # cat /var/qmail/boot/home > > #!/bin/sh > > > > # Using splogger to send the log through syslog. > > # Using qmail-local to deliver messages to ~/Mailbox by default. > > > > exec env - PATH="/var/qmail/bin:$PATH" \ > > qmail-start ./Mailbox splogger qmail& > > > > is there some error log for qmail anywhere? I don't see anything in > > /var/log > > > > David > > doc-WA_Resident@wcug.wwu.edu > > doc@wcug.wwu.edu > > > > On Sat, 25 Nov 2000, brian william wolter wrote: > > > > > did you copy the file /var/qmail/boot/home to /var/qmail/rc? > > > (this will route mail to a file called Mailbox in each users home > > > directory) > > > > > > peace, > > > brian > > > > > > > > > t h e S a d M a c h i n e . o r g > > > > > > On Sat, 25 Nov 2000, David Daugherty wrote: > > > > > > > Yes, I'm getting emails. I can see them in /var/qmail/queue/local. What am > > > > I missing in order to get them to the proper users though? > > > > > > > > David > > > > doc-WA_Resident@wcug.wwu.edu > > > > doc@wcug.wwu.edu > > > > > > > > On Sat, 25 Nov 2000, brian william wolter wrote: > > > > > > > > > you'll have to be a little more spacific... what are the error messages > > > > > you get when sending test emails? > > > > > > > > > > > > > > > peace, > > > > > brian > > > > > > > > > > > > > > > t h e S a d M a c h i n e . o r g > > > > > > > > > > On Sat, 25 Nov 2000, David Daugherty wrote: > > > > > > > > > > > I've read all of the docs in /var/qmail/doc. I can 'telnet localhost' to > > > > > > both port 25 and 110 without any problems. I'm just not getting any > > > > > > email. I've sent test emails also and I'm not getting them. > > > > > > > > > > > > What have I screwed up? > > > > > > > > > > > > David > > > > > > doc-WA_Resident@wcug.wwu.edu > > > > > > doc@wcug.wwu.edu > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 22: 5:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from baddog.yi.org (unknown [24.216.177.184]) by hub.freebsd.org (Postfix) with ESMTP id B4C7F37B4CF for ; Sat, 25 Nov 2000 22:05:16 -0800 (PST) Received: from localhost.necro.edu (localhost.necro.edu [127.0.0.1]) by baddog.yi.org (Postfix) with ESMTP id 452C61DF3 for ; Sun, 26 Nov 2000 01:04:30 -0500 (EST) Date: Sun, 26 Nov 2000 01:04:30 EST From: mike johnson To: questions@freebsd.org Subject: no buffer space? Reply-To: ahze@slaughter.necro.edu X-Mailer: Spruce 0.6.5 for X11 w/smtpio 0.7.9 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Message-Id: <20001126060430.452C61DF3@baddog.yi.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG why do i have no buffer space? su-2.04# nmap localhost Starting nmap V. 2.53 by fyodor@insecure.org ( www.insecure.org/nmap/ ) Socket troubles in pos_scan 11234 : No buffer space available To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 22: 6:52 2000 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 CD5A737B479 for ; Sat, 25 Nov 2000 22:06:49 -0800 (PST) Received: from pop2.pacific.net.sg (pop2.pacific.net.sg [203.120.90.86]) by sunny.pacific.net.sg with ESMTP id eAQ66mo06640; Sun, 26 Nov 2000 14:06:48 +0800 (SGT) Received: from gchang (spoff250.pacific.net.sg [203.120.94.250]) by pop2.pacific.net.sg with SMTP id OAA03014; Sun, 26 Nov 2000 14:06:47 +0800 (SGT) Message-ID: <003c01c0576e$be823fc0$fa5e78cb@gchang> From: "James Lim" To: , References: <20001126060430.452C61DF3@baddog.yi.org> Subject: Re: no buffer space? Date: Sun, 26 Nov 2000 14:04:31 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there, What are your output for netstat -m ? Regards, James Lim ----- Original Message ----- From: "mike johnson" To: Sent: Sunday, November 26, 2000 2:04 PM Subject: no buffer space? > > why do i have no buffer space? > > > su-2.04# nmap localhost > > Starting nmap V. 2.53 by fyodor@insecure.org ( www.insecure.org/nmap/ ) > Socket troubles in pos_scan 11234 : No buffer space available > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 22: 7: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from freeze.org (www.bellnetworks.net [208.177.187.234]) by hub.freebsd.org (Postfix) with ESMTP id 398AA37B479 for ; Sat, 25 Nov 2000 22:06:56 -0800 (PST) Received: (from jim@localhost) by freeze.org (8.9.3/8.9.3) id BAA27761; Sun, 26 Nov 2000 01:06:52 -0500 (EST) (envelope-from jim) X-Authentication-Warning: www.bellnetworks.net: Processed from queue /var/spool/alt_queue X-Authentication-Warning: www.bellnetworks.net: Processed by jim with -C /web/siteinfo/freeze/mail/sendmail.cf Date: Sun, 26 Nov 2000 01:06:51 -0500 (EST) From: Jim Freeze X-Sender: jim@www.bellnetworks.net To: questions@freebsd.org Subject: Need help with natd and connecting Windows to LAN Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am running FBSD3.4R as a gateway/router with a Win98 box connected on a local LAN. The gateway machine can see the internet and the Win98 box, but the Win98 box cannot ping the gateway nor see beyond it. Below is some specific setup info: The Kernel file contains: # Added by JDF options IPFIREWALL #firewall options IPFIREWALL_VERBOSE #log dropped packets options "IPFIREWALL_VERBOSE_LIMIT=100" #limit verbosity #options IPFILTER_LOG # turn on logging options IPDIVERT #divert ip's options "ICMP_BANDLIM" The network layout: ISP(dns1=24.5.116.15,dns2=24.5.116.17) | | cable-modem | | (DHCP) (eeyore1) router/gateway 192.168.1.1 (eeyore) | X (cross-over cable) | 192.168.1.2 Win98Box jfreeze@eeyore1 ('tty') ~ 16 -> cat /etc/hosts 127.0.0.1 localhost localhost.home.com 24.9.218.175 eeyore1 CI590846-B lxintn1.ky.home.com 24.5.116.15 dns1 24.5.116.17 dns2 192.168.1.1 eeyore 192.168.1.2 rabbit (looks the same on windows) root@eeyore1 ('tty') ~ 5 -> sh /etc/rc.firewall Flushed all rules. 00000 divert 8668 ip from any to any via vx0 00100 allow ip from any to any via lo0 00200 deny ip from any to 127.0.0.0/8 65000 allow ip from any to any (temporarily turned off) root@eeyore1 ('tty') ~ 15 -> netstat -r Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default 24.9.218.1 UGSc 12 0 vx0 24.9.218/24 link#1 UC 0 0 vx0 24.9.218.1 0:50:f:0:3c:70 UHLW 13 0 vx0 791 localhost localhost UH 0 8 lo0 192.168.1 link#2 UC 0 0 al0 rabbit 0:a0:cc:78:23:95 UHLW 0 9 al0 586 root@eeyore1 ('tty') ~ 16 -> cat /etc/resolv.conf search lxintn1.ky.home.com nameserver 24.5.116.17 nameserver 24.5.116.15 root@eeyore1 ('tty') ~ 17 -> ifconfig -a vx0: flags=8843 mtu 1500 inet 24.9.218.175 netmask 0xffffff00 broadcast 24.9.218.255 ether 00:60:97:4f:aa:a0 al0: flags=8843 mtu 1500 inet 192.168.1.1 netmask 0xffffff00 broadcast 192.168.1.255 ether ff:ff:ff:ff:ff:ff media: autoselect (100baseTX ) supported media: autoselect 100baseTX 100baseTX 100baseTX 10baseT/UTP 10baseT/UTP 10baseT/UTP lp0: flags=8810 mtu 1500 tun0: flags=8010 mtu 1500 sl0: flags=c010 mtu 552 ppp0: flags=8010 mtu 1500 lo0: flags=8049 mtu 16384 inet 127.0.0.1 netmask 0xff000000 root@eeyore1 ('tty') ~ 18 -> cat /etc/rc.conf # This file now contains just the overrides from /etc/defaults/rc.conf # please make all changes to this file. # -- sysinstall generated deltas -- # ifconfig_ppp0="inet netmask 255.255.255.0" network_interfaces="lo0 vx0 al0" ifconfig_lo0="inet 127.0.0.1" ifconfig_vx0="inet netmask 255.255.255.0" ifconfig_al0="inet 192.168.1.1 netmask 255.255.255.0" ifconfig_vx0="DHCP" gateway_enable="YES" hostname="eeyore1" firewall_enable="YES" # Set YES to enable firewall functionality #firewall_type="client" # Firewall type (see /etc/rc.firewall) #firewall_type="simple" # Firewall type (see /etc/rc.firewall) firewall_type="open" # Firewall type (see /etc/rc.firewall) firewall_quiet="NO" # Set to YES to supress rule display natd_enable="YES" # Enable natd (if firewall_enable == YES) natd_interface="vx0" # Public interface or IPaddress to use natd_flags="-f /etc/natd.conf" # Additional flags for natd The Win98 Network settings are: TCP/IP -> NETGEAR FA311 FastEthernet PCI Adapter - Properties - IP:192.168.1.2 - Subnet: 255.255.255.0 - WINS: disabled - Gateway: 192.168.1.1 - DNS: - Host: rabbit - Domain: (I don't know what to put here. I have tried leaving it blank and 192.168.1.1) - DNS: 24.5.116.15 - DNS: 24.5.116.17 - Binding: Microsoft Family Logon (I unchecked Client for Microsoft Networks) ------Testing the network ------- From FreeBSD all seems to work. jfreeze@eeyore1 ('tty') ~ 12 -> ping localhost PING localhost (127.0.0.1): 56 data bytes 64 bytes from 127.0.0.1: icmp_seq=0 ttl=255 time=1.008 ms jfreeze@eeyore1 ('tty') ~ 13 -> ping eeyore1 PING eeyore1 (24.9.218.175): 56 data bytes 64 bytes from 24.9.218.175: icmp_seq=0 ttl=255 time=0.106 ms jfreeze@eeyore1 ('tty') ~ 14 -> ping eeyore PING eeyore (192.168.1.1): 56 data bytes 64 bytes from 192.168.1.1: icmp_seq=0 ttl=255 time=0.098 ms jfreeze@eeyore1 ('tty') ~ 15 -> ping rabbit PING rabbit (192.168.1.2): 56 data bytes 64 bytes from 192.168.1.2: icmp_seq=0 ttl=128 time=0.252 ms jfreeze@eeyore1 ('tty') ~ 17 -> ps waux | grep natd root 173 0.0 0.2 432 96 ?? Ss 10:44PM 0:00.23 /sbin/natd -f /etc/natd.conf -n vx0 jfreeze@eeyore1 ('tty') ~ 19 -> cat /etc/natd.conf interface vx0 use_sockets yes same_ports yes dynamic yes --------From Win98-------- ping localhost works (127.0.0.1) ping rabbit works (192.168.1.2) ping eeyore (192.168.1.1) - gives Request timed out. Can someone tell me what I am doing wrong here? Thanks! =========================== Jim Freeze jim@freeze.org =========================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 22:11:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from baddog.yi.org (unknown [24.216.177.184]) by hub.freebsd.org (Postfix) with ESMTP id 5901437B4C5 for ; Sat, 25 Nov 2000 22:11:39 -0800 (PST) Received: from localhost.necro.edu (localhost.necro.edu [127.0.0.1]) by baddog.yi.org (Postfix) with ESMTP id E04261DF3; Sun, 26 Nov 2000 01:10:58 -0500 (EST) Date: Sun, 26 Nov 2000 01:10:58 EST From: mike johnson To: "James Lim" , , Subject: Re: no buffer space? Reply-To: ahze@slaughter.necro.edu X-Mailer: Spruce 0.6.5 for X11 w/smtpio 0.7.9 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Message-Id: <20001126061058.E04261DF3@baddog.yi.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG su-2.04# netstat -m 999/1088/4096 mbufs in use (current/peak/max): 995 mbufs allocated to data 4 mbufs allocated to packet headers 154/230/1024 mbuf clusters in use (current/peak/max) 732 Kbytes allocated to network (23% of mb_map in use) 0 requests for memory denied 0 requests for memory delayed 0 calls to protocol drain routines also im wondering , does this have anything to do with options ICMP_BANDLIM #Rate limit bad replies in the kernel?? On Sun, 26 Nov 2000, James Lim wrote: > Date: Sun, 26 Nov 2000 14:04:31 +0800 > To: , > From: "James Lim" > Subject: Re: no buffer space? > > Hi there, > > What are your output for netstat -m ? > > Regards, > James Lim > > ----- Original Message ----- > From: "mike johnson" > To: > Sent: Sunday, November 26, 2000 2:04 PM > Subject: no buffer space? > > > > > > why do i have no buffer space? > > > > > > su-2.04# nmap localhost > > > > Starting nmap V. 2.53 by fyodor@insecure.org ( www.insecure.org/nmap/ ) > > Socket troubles in pos_scan 11234 : No buffer space available > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 22:14:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id D2C2037B479 for ; Sat, 25 Nov 2000 22:14:09 -0800 (PST) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id WAA12395; Sat, 25 Nov 2000 22:13:47 -0800 Message-ID: <3A20AA1B.85437137@urx.com> Date: Sat, 25 Nov 2000 22:13:47 -0800 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: James Lim Cc: Chris Fedde , Justin Booth , freebsd-questions@FreeBSD.ORG Subject: Re: Gentle request... FIX YOUR MUA! References: <200011260530.eAQ5UgJ26204@fedde.littleton.co.us> <001101c0576a$167218e0$fa5e78cb@gchang> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG James Lim wrote: > > I have no choice as most of the time i am in the office and it is using AS > USUAL windows 95 You may not have a choice on your mailer but you do have a choice on the format you use. This is one of the few lists that I subscribe to that doesn't check for html and reject the any email using it. You really cut the numer of pieces of email containing hidden Viral Basic Applications. The other lists also reject attachments, which would really be a problem around here with patches and such. Kent > > Regards, > James Lim > > ----- Original Message ----- > From: "Chris Fedde" > To: "James Lim" > Cc: "Justin Booth" ; > Sent: Sunday, November 26, 2000 1:30 PM > Subject: Gentle request... FIX YOUR MUA! > > > So many of you are using some piece of crud that puts headers like these > into > > your mail: > > > > X-MSMail-Priority: Normal > > X-Mailer: Microsoft Outlook Express 5.50.4133.2400 > > X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 > > > > There are so many problems with this that I don't even want > > to begin to get into it. If you must use this user hostile > > sub-standard piece of interface candy, please, please, please, > > configure it to send simple text when what you mean to send is > > simple text. > > > > thank you > > > > -- > > Chris Fedde > > > > 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 Nov 25 22:15:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bruiser.netorbit.com (unknown [209.15.87.170]) by hub.freebsd.org (Postfix) with ESMTP id 1F5B137B479 for ; Sat, 25 Nov 2000 22:15:45 -0800 (PST) Received: from bruiser (unknown [192.168.70.51]) by bruiser.netorbit.com (Postfix) with SMTP id 98E869882; Sun, 26 Nov 2000 00:15:43 -0600 (CST) From: "R.Munden" To: Cc: Subject: RE: The real Unix problem Date: Sun, 26 Nov 2000 00:09:41 -0600 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Don't worry about it; call me I'll only charge you 250 f**king dollars per hour to f**king fix it "... one of the main causes of the fall of the Roman Empire was that, lacking zero, they had no way to indicate successful termination of their C programs." > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Kenneth Wayne > Culver > Sent: Saturday, November 25, 2000 11:35 PM > To: mattman@mattcave.net > Cc: freebsd-questions@FreeBSD.ORG > Subject: Re: The real Unix problem > > > Well, maybe if you'd get a f***ing clue and actually search the > mailing lists (on the webpage) and look at the handbook (again on the > webpage) you could figure it out. This isn't point 'n click winblows for > idiots, this is FreeBSD; you actually have to LEARN something to use it. > > > ================================================================= > | Kenneth Culver | FreeBSD: The best NT upgrade | > | Unix Systems Administrator | ICQ #: 24767726 | > | and student at The | AIM: muythaibxr | > | The University of Maryland, | Website: (Under Construction) | > | College Park. | http://www.wam.umd.edu/~culverk/| > ================================================================= > > On Sat, 25 Nov 2000 mattman@mattcave.net wrote: > > > The biggest problem with fucking unix and fucking unix cloned > turds is there is no god damn help file that makes any sense. It > will tell you what you need and how to do and then at the end you > will have to send off for a fucking acme esp fuck your mind kit > and hope you can figure out what the gay ass unix admin meant. > How about some fucking help for more than than version it might > work for. You want to beat Microsoft??? You never will, because > unix guys are stupid faggots that think everyone should already > know what they have stuck up there ass. Fuck Unix, Unix sucks. > Someone told me to use RedHat. It was the easiest. I went to > RedHat and they told me everything I already knew. Here's > something I don't know. How do you get a fucking program to load > at startup on freebsd? Where on your fucking website do you have > that. I want to set up a Unix POP3 server. The instructions tell > me how to compile. Then they tell me to move the fucking file to > a directory in my path. I can do that. Now what, the fucking end. > They say I'm done. I can't get any mail. They don't tell me how > to configure it. They fucking make me wonder what the fuck they > have up there ass to make me psychic. How about putting that on > your website. > > > > The only thing I've found on your website is how great freebsd > is and you can do it but it depends on your version. I know my > version... how do I fucking do it? > > > > > > > > > > Be sure and forward this to all you freebsd experts out there. > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 22:17:12 2000 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 33F7837B4CF for ; Sat, 25 Nov 2000 22:17:08 -0800 (PST) Received: from pop2.pacific.net.sg (pop2.pacific.net.sg [203.120.90.86]) by seed.pacific.net.sg with ESMTP id eAQ6H6J11812; Sun, 26 Nov 2000 14:17:06 +0800 (SGT) Received: from gchang (spoff250.pacific.net.sg [203.120.94.250]) by pop2.pacific.net.sg with SMTP id OAA11238; Sun, 26 Nov 2000 14:17:05 +0800 (SGT) Message-ID: <005201c05770$2f12f8a0$fa5e78cb@gchang> From: "James Lim" To: Cc: "Chris Fedde" , "Justin Booth" , References: <200011260530.eAQ5UgJ26204@fedde.littleton.co.us> <001101c0576a$167218e0$fa5e78cb@gchang> <3A20AA1B.85437137@urx.com> Subject: Re: Gentle request... FIX YOUR MUA! Date: Sun, 26 Nov 2000 14:14:49 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there, I will make the changes, for such minor issue i am not able to keep track on a daily basis as a few of my coleagues share the same terminal as I am. I will change it to plain text Regards, James Lim ----- Original Message ----- From: "Kent Stewart" To: "James Lim" Cc: "Chris Fedde" ; "Justin Booth" ; Sent: Sunday, November 26, 2000 2:13 PM Subject: Re: Gentle request... FIX YOUR MUA! > > > James Lim wrote: > > > > I have no choice as most of the time i am in the office and it is using AS > > USUAL windows 95 > > You may not have a choice on your mailer but you do have a choice on > the format you use. This is one of the few lists that I subscribe to > that doesn't check for html and reject the any email using it. You > really cut the numer of pieces of email containing hidden Viral Basic > Applications. The other lists also reject attachments, which would > really be a problem around here with patches and such. > > Kent > > > > > Regards, > > James Lim > > > > ----- Original Message ----- > > From: "Chris Fedde" > > To: "James Lim" > > Cc: "Justin Booth" ; > > Sent: Sunday, November 26, 2000 1:30 PM > > Subject: Gentle request... FIX YOUR MUA! > > > > > So many of you are using some piece of crud that puts headers like these > > into > > > your mail: > > > > > > X-MSMail-Priority: Normal > > > X-Mailer: Microsoft Outlook Express 5.50.4133.2400 > > > X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 > > > > > > There are so many problems with this that I don't even want > > > to begin to get into it. If you must use this user hostile > > > sub-standard piece of interface candy, please, please, please, > > > configure it to send simple text when what you mean to send is > > > simple text. > > > > > > thank you > > > > > > -- > > > Chris Fedde > > > > > > > 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 Nov 25 22:17:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 18DDF37B4C5; Sat, 25 Nov 2000 22:17:40 -0800 (PST) Received: from [212.238.77.116] (helo=buffy.raggedclown) by post.mail.nl.demon.net with smtp (Exim 3.14 #4) id 13zv86-000Dll-00; Sun, 26 Nov 2000 06:17:38 +0000 Received: (from cliff@localhost) by buffy.raggedclown (8.10.2/8.10.2) id eAQ6HUA02907; Sun, 26 Nov 2000 07:17:30 +0100 Date: Sun, 26 Nov 2000 07:17:30 +0100 From: Cliff Sarginson To: Doug Barton Cc: raf ar , questions@freebsd.org Subject: Re: which unix to study? Message-ID: <20001126071730.B2395@buffy.local> References: <3A2051B5.B35B23DB@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A2051B5.B35B23DB@FreeBSD.org>; from DougB@freebsd.org on Sat, Nov 25, 2000 at 03:56:37PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Nov 25, 2000 at 03:56:37PM -0800, Doug Barton wrote: > raf ar wrote: > > > > with the different flavors of unix, i dont know which one to learn, im a > > telecommunications student at devry and i know sooner or later i will be > > working on unix systems whether i like it or not, i have been reading the > > handbook in freebsd.org AND I FIND FREEBSD VERY INTERESTING, NOW MY QUESTION > > IS, WHAT FLAVOR OF UNIX WOULD YOU RECOMMEND FOR ME TO LEARN, IS FREE BSD THE > > CHOICE? KINDLY REPLY TO THIS E-MAIL, THNX...THEEO > > If you write to a freebsd list, what do you think we're going to > recommend, linux? :) > Give the guy a break ! He is asking for information not smart-ass remarks. Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 22:27:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id C248137B4C5 for ; Sat, 25 Nov 2000 22:27:39 -0800 (PST) Received: (qmail 90420 invoked by uid 100); 26 Nov 2000 06:27:39 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14880.44378.523999.25331@guru.mired.org> Date: Sun, 26 Nov 2000 00:27:38 -0600 (CST) To: questions@freebsd.org Subject: FreeBSD daemon as an icon? X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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 X-Loop: FreeBSD.ORG Anyone out there got a FreeBSD daemon image suitable for use as an icon (i.e. - 16x16)? Thanx, ; Sat, 25 Nov 2000 22:57:49 -0800 (PST) Received: from satx.rr.com (cs160145-193.satx.rr.com [24.160.145.193]) by newsf2.texas.rr.com (8.10.1/8.10.1) with ESMTP id eAQ6vjG18296; Sun, 26 Nov 2000 00:57:45 -0600 (CST) Message-ID: <3A20B44D.EA19E692@satx.rr.com> Date: Sun, 26 Nov 2000 00:57:17 -0600 From: Jason X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Mike Batchelor Cc: questions@FreeBSD.ORG Subject: Re: Linux Quake 3 in.. FreeBSD? References: <000e01c05817$3543c5e0$8ded4518@kldt1.bc.wave.home.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mike Batchelor wrote: > Hey all, I was wondering if it is possible to play Quake 3 in FreeBSD, > using Linux emulation. I remember my brother telling me Linux uses > SVGALIB for graphics in linux, but I could not `locate` it.. I have > 4.1.1-RELEASE. Thanks you guys http://www.cybernet.com/~mtaylor/q3ahowto.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 23: 4:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from newsf2.texas.rr.com (newsf2.texas.rr.com [24.28.95.154]) by hub.freebsd.org (Postfix) with ESMTP id 1FFC437B4C5 for ; Sat, 25 Nov 2000 23:04:39 -0800 (PST) Received: from satx.rr.com (cs160145-193.satx.rr.com [24.160.145.193]) by newsf2.texas.rr.com (8.10.1/8.10.1) with ESMTP id eAQ74JG20715; Sun, 26 Nov 2000 01:04:21 -0600 (CST) Message-ID: <3A20B5D7.7FC3EC9A@satx.rr.com> Date: Sun, 26 Nov 2000 01:03:51 -0600 From: Jason X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: "R.Munden" Cc: mattman@mattcave.net, freebsd-questions@FreeBSD.ORG Subject: Re: The real Unix problem References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I wonder what the fuck his fucking problem is.. > > > > -----Original Message----- > > From: owner-freebsd-questions@FreeBSD.ORG > > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Kenneth Wayne > > Culver > > Sent: Saturday, November 25, 2000 11:35 PM > > To: mattman@mattcave.net > > Cc: freebsd-questions@FreeBSD.ORG > > Subject: Re: The real Unix problem > > > > > > Well, maybe if you'd get a f***ing clue and actually search the > > mailing lists (on the webpage) and look at the handbook (again on the > > webpage) you could figure it out. This isn't point 'n click winblows for > > idiots, this is FreeBSD; you actually have to LEARN something to use it. > > > > > > ================================================================= > > | Kenneth Culver | FreeBSD: The best NT upgrade | > > | Unix Systems Administrator | ICQ #: 24767726 | > > | and student at The | AIM: muythaibxr | > > | The University of Maryland, | Website: (Under Construction) | > > | College Park. | http://www.wam.umd.edu/~culverk/| > > ================================================================= > > > > On Sat, 25 Nov 2000 mattman@mattcave.net wrote: > > > > > The biggest problem with fucking unix and fucking unix cloned > > turds is there is no god damn help file that makes any sense. It > > will tell you what you need and how to do and then at the end you > > will have to send off for a fucking acme esp fuck your mind kit > > and hope you can figure out what the gay ass unix admin meant. > > How about some fucking help for more than than version it might > > work for. You want to beat Microsoft??? You never will, because > > unix guys are stupid faggots that think everyone should already > > know what they have stuck up there ass. Fuck Unix, Unix sucks. > > Someone told me to use RedHat. It was the easiest. I went to > > RedHat and they told me everything I already knew. Here's > > something I don't know. How do you get a fucking program to load > > at startup on freebsd? Where on your fucking website do you have > > that. I want to set up a Unix POP3 server. The instructions tell > > me how to compile. Then they tell me to move the fucking file to > > a directory in my path. I can do that. Now what, the fucking end. > > They say I'm done. I can't get any mail. They don't tell me how > > to configure it. They fucking make me wonder what the fuck they > > have up there ass to make me psychic. How about putting that on > > your website. > > > > > > The only thing I've found on your website is how great freebsd > > is and you can do it but it depends on your version. I know my > > version... how do I fucking do it? > > > > > > > > > > > > > > > Be sure and forward this to all you freebsd experts out there. > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 23:10:39 2000 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 D031837B4CF for ; Sat, 25 Nov 2000 23:10:36 -0800 (PST) Received: from fedde (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.0/8.11.0.Beta3) with ESMTP id eAQ79DJ26842; Sun, 26 Nov 2000 00:09:14 -0700 (MST) Message-Id: <200011260709.eAQ79DJ26842@fedde.littleton.co.us> To: "James Lim" Cc: kstewart@urx.com, "Justin Booth" , freebsd-questions@FreeBSD.ORG Subject: Re: Gentle request... FIX YOUR MUA! In-Reply-To: <005201c05770$2f12f8a0$fa5e78cb@gchang> From: Chris Fedde Date: Sun, 26 Nov 2000 00:09:13 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 26 Nov 2000 14:14:49 +0800 "James Lim" wrote: +------------------ | I will make the changes, for such minor issue i am not able to | keep track on a daily basis as a few of my coleagues share the same terminal | as I am. +------------------ It may seem that this is a minor issue. But let me assure you that it is not. It is these casual, seemingly innocent enhancements that cause useful standards to become irrelevant. Eventually the usage becomes so reshaped that the standard is irrelevant and the proprietary implementation replaces it. Each time this succeeds it makes freeware and opensource less relevant, +------------------ | I will change it to plain text +------------------ Thanks. I'll be surprised if anyone who uses the PC ever notices the change. BTW you may want to edit some of your quoted text too. -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 23:21: 9 2000 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 29A1637B4C5 for ; Sat, 25 Nov 2000 23:21:07 -0800 (PST) Received: from fedde (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.0/8.11.0.Beta3) with ESMTP id eAQ7L4J27403; Sun, 26 Nov 2000 00:21:04 -0700 (MST) Message-Id: <200011260721.eAQ7L4J27403@fedde.littleton.co.us> To: Mike Meyer Cc: questions@FreeBSD.ORG Subject: Re: FreeBSD daemon as an icon? In-Reply-To: <14880.44378.523999.25331@guru.mired.org> From: Chris Fedde Date: Sun, 26 Nov 2000 00:21:04 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 26 Nov 2000 00:27:38 -0600 (CST) Mike Meyer wrote: +------------------ | Anyone out there got a FreeBSD daemon image suitable for use as an | icon (i.e. - 16x16)? | | Thanx, | ; Sat, 25 Nov 2000 23:22:24 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Sat, 25 Nov 2000 23:20:53 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAQ7MMT49141; Sat, 25 Nov 2000 23:22:22 -0800 (PST) (envelope-from cjc) Date: Sat, 25 Nov 2000 23:22:17 -0800 From: "Crist J . Clark" To: Jeff Smith Cc: questions@FreeBSD.ORG Subject: Re: PLZ help Message-ID: <20001125232217.D12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from jeffsey@hotmail.com on Sat, Nov 25, 2000 at 09:54:33PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Nov 25, 2000 at 09:54:33PM -0800, Jeff Smith wrote: > I have two questions for u. First of all i am running freeBSD 4.1.1 > my question is this. In my computer room i have the following setup > > 2 (ip:10.1.1.2 > / > W---H--G (ip:10.1.1.1 & external ip) > \ > 1 (ip: 10.1.1.3) > -=rj45 wire > W=wall jack > H=hub > G=Gateway(computer running freeBSD 4.1.1 > 1=home pc running both rh7 and win98 > 2=home pc running win98 > > the i have access to an oc3 line via the university and with that a static > ip address. I have setup the gateway to act as a gateway for computers 1 > and 2 using two ethernet cards, ip filtering and the firewall. My question > is how could i set it up so that computers 1 and 2 could have an ftp site > accessible from the outside world. The only way now would be to login to > the gateway computer and then use that to get access to the internal > network. I have heard that you can set it up so that computers 1 and 2 have > a certain port associated with them and that would be how you would route > the request??...i am not really sure if that is worded right. Anyway please > help me if i have made my problem clear enough and if not please ask me what > is not clear. Are you already doing NAT for this setup? Have a look at the 'redirect_address' and 'redirect_port' options in natd(8). -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 23:25:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gw.carpoolbc.com (cr45465-a.abtsfd1.bc.wave.home.com [24.113.176.126]) by hub.freebsd.org (Postfix) with ESMTP id 4577337B4CF for ; Sat, 25 Nov 2000 23:25:52 -0800 (PST) Received: from localhost (roop@localhost) by gw.carpoolbc.com (8.11.1/8.9.3) with ESMTP id eAQ7QI308543; Sat, 25 Nov 2000 23:26:18 -0800 (PST) (envelope-from roop@gw.carpoolbc.com) Date: Sat, 25 Nov 2000 23:26:17 -0800 (PST) From: Roop Nanuwa To: mike@hyperreal.org Cc: freebsd-questions@FreeBSD.ORG Subject: Re: can't chflags/mv current kernel In-Reply-To: <20001126013052.3261.qmail@hyperreal.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Are you sure you're logged in (or su'd) as root? RSN On Sat, 25 Nov 2000 mike@hyperreal.org wrote: > I rolled the dice and it looks like I can use 2 NICs in the old doorstop > after all, so I'll still be working on trying to configure NAT. > > I compiled a new kernel to support the second NIC, and now I'm having a > more fundamental problem: I cannot touch the old/current kernel. > > # make install > chflags noschg /kernel > chflags: /kernel: Operation not permitted > *** Error code 1 (ignored) > mv /kernel /kernel.old > mv: rename /kernel to /kernel.old: Operation not permitted > *** Error code 1 > > What is this a symptom of? > > It's not covered in the Handbook and I have never had it happen before. > The default kernel was removed just fine. Doesn't matter if I'm in > single-user mode or not; the kernel is untouchable. > > -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 Sat Nov 25 23:27:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 737DA37B4C5 for ; Sat, 25 Nov 2000 23:27:39 -0800 (PST) Received: from [212.238.77.116] (helo=buffy.raggedclown) by post.mail.nl.demon.net with smtp (Exim 3.14 #4) id 13zwDq-000EJD-00 for questions@freebsd.org; Sun, 26 Nov 2000 07:27:38 +0000 Received: from localhost (localhost [[UNIX: localhost]]) by buffy.raggedclown (8.10.2/8.10.2) id eAQ7QkZ03345 for questions@freebsd.org; Sun, 26 Nov 2000 08:26:46 +0100 From: Cliff Sarginson Date: Sun, 26 Nov 2000 08:26:45 +0100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: questions@freebsd.org Subject: FreeBSD Version Question MIME-Version: 1.0 Message-Id: <00112608264500.03110@buffy> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I am shortly going to set up a p120 with 64MB memory to act as an internet gateway/firewall and mail server for a very small network in a non-hostile environment.. :) I have not used FreeBSD before (but have many years UNIX/Linux experience), but I want to give it a shot. I have a copy of FreeBSD 4.0. Is there any compelling reason why I should not use that, or would you recommend updating to 4.2 ? Thanks Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 23:29:53 2000 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 7CB9F37B479 for ; Sat, 25 Nov 2000 23:29:51 -0800 (PST) Received: from sv.Go2France.com (sv.meiway.com [212.73.210.79]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 528A46A901 for ; Sun, 26 Nov 2000 08:29:50 +0100 (CET) Message-Id: <5.0.2.1.0.20001126081859.02d1a830@mail.Go2France.com> X-Sender: lconrad%Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Sun, 26 Nov 2000 08:29:40 +0100 To: freebsd-questions@freebsd.org From: Len Conrad Subject: Re: Message Board package In-Reply-To: <00112701195700.00365@freebsd.freebsd.org> References: <000001c05685$e2d93a20$0101a8c0@james> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >There are many messageboard cgi's around on the internet written in perl, c or >even php3 which is free > >Plus many other third party software such as Allaire Forums written in cfml >where you have to pay Allaire has put forums into opensource and it is being actively developed: www.ForumSpot.org, but I haven't seen anyboy explain how to get ColdFusion running on FreeBSD. Len http://BIND8NT.MEIway.com : ISC BIND 8.2.2 p5 & 8.2.3 T6B for NT4 & W2K http://IMGate.MEIway.com : Build free, hi-perf, anti-spam mail gateways To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 23:32:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from monk.via.net (monk.via.net [209.81.2.10]) by hub.freebsd.org (Postfix) with ESMTP id 5A07337B479 for ; Sat, 25 Nov 2000 23:32:16 -0800 (PST) Received: (from joe@localhost) by monk.via.net (8.11.0/8.11.0) id eAQ7XH135321 for questions@freebsd.org; Sat, 25 Nov 2000 23:33:17 -0800 (PST) (envelope-from joe) From: Joe McGuckin Message-Id: <200011260733.eAQ7XH135321@monk.via.net> Date: Sat, 25 Nov 2000 23:33:17 -0800 (PST) To: questions@freebsd.org Subject: XDM & FreeBSD ? X-Mailer: Ishmail 1.3.1-970608-bsdi MIME-Version: 1.0 Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is there a document (advice is welcome also) that explains how to get XDM working with FreeBSD? A sample config would be greatly appreciated. Thanks! Joe -- Joe McGuckin ViaNet Communications 994 San Antonio Road Palo Alto, CA 94303 Phone: 650-969-2203 Cell: 650-207-0372 Fax: 650-969-2124 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 23:35:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from baddog.yi.org (24-216-177-184.hsacorp.net [24.216.177.184]) by hub.freebsd.org (Postfix) with ESMTP id 158CC37B4CF for ; Sat, 25 Nov 2000 23:35:11 -0800 (PST) Received: from localhost.necro.edu (localhost.necro.edu [127.0.0.1]) by baddog.yi.org (Postfix) with ESMTP id 24D8B1DF3; Sun, 26 Nov 2000 02:35:32 -0500 (EST) Date: Sun, 26 Nov 2000 02:35:32 EST From: mike johnson To: Cliff Sarginson , questions@FreeBSD.ORG Subject: Re: FreeBSD Version Question Reply-To: ahze@slaughter.necro.edu X-Mailer: Spruce 0.6.5 for X11 w/smtpio 0.7.9 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Message-Id: <20001126073532.24D8B1DF3@baddog.yi.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Read the release notes , if you see nothing you need in 4.2 that is in 4.0 , then you wont have to upgrade. releasenotes are in http://www.freebsd.org/releases/ On Sun, 26 Nov 2000, Cliff Sarginson wrote: > Date: Sun, 26 Nov 2000 08:26:45 +0100 > To: questions@FreeBSD.ORG > From: Cliff Sarginson > Subject: FreeBSD Version Question > > Hello, > I am shortly going to set up a p120 with 64MB memory to act > as an internet gateway/firewall and mail server for a very > small network in a non-hostile environment.. :) > I have not used FreeBSD before (but have many years UNIX/Linux > experience), but I want to give it a shot. > I have a copy of FreeBSD 4.0. Is there any compelling reason > why I should not use that, or would you recommend updating to 4.2 ? > > Thanks > Cliff > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of 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 Nov 25 23:42:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www3.pacific-pages.com (www3.pacific-pages.com [192.41.48.219]) by hub.freebsd.org (Postfix) with ESMTP id 7FB9037B4CF for ; Sat, 25 Nov 2000 23:42:18 -0800 (PST) Received: from d.tracker ([216.191.60.209]) by www3.pacific-pages.com (8.8.5) id AAA25407; Sun, 26 Nov 2000 00:41:54 -0700 (MST) Received: (from david@localhost) by d.tracker (8.9.3/8.9.3) id AAA01563 for questions@freebsd.org; Sun, 26 Nov 2000 00:13:36 -0500 (EST) (envelope-from david) Date: Sun, 26 Nov 2000 00:12:16 -0500 From: David Banning To: questions@freebsd.org Subject: finding my IP address Message-ID: <20001126001216.A1466@www3.pacific-pages.com> Reply-To: David Banning 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 X-Loop: FreeBSD.ORG I am trying to find out my Dynamic IP address that has been issued to me by my ISP - I think I found it like so; $ ppp Working in interactive mode Using interface: tun0 ppp ON d> dial isp ppp ON d> Ppp ON d> PPp ON d> PPP ON d> PPP ON d> show iface tun0 (idx 12) has 1 address: 216.191.61.60/32 -> 192.168.70.6 PPP ON d> Then when I entered http://216.191.61.60/myfiles.html I got the html I wanted. Is there a command from the shell I can type to get it without going into ppp first?; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 23:49:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost01.reflexnet.net (mailhost01.reflexnet.net [64.6.192.82]) by hub.freebsd.org (Postfix) with ESMTP id 5F7DB37B4CF for ; Sat, 25 Nov 2000 23:49:54 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Sat, 25 Nov 2000 23:48:18 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAQ7nl051657; Sat, 25 Nov 2000 23:49:47 -0800 (PST) (envelope-from cjc) Date: Sat, 25 Nov 2000 23:49:47 -0800 From: "Crist J . Clark" To: David Banning Cc: questions@FreeBSD.ORG Subject: Re: finding my IP address Message-ID: <20001125234947.E12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: <20001126001216.A1466@www3.pacific-pages.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20001126001216.A1466@www3.pacific-pages.com>; from david@www3.pacific-pages.com on Sun, Nov 26, 2000 at 12:12:16AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Nov 26, 2000 at 12:12:16AM -0500, David Banning wrote: > I am trying to find out my Dynamic IP address that has been issued > to me by my ISP - I think I found it like so; > > $ ppp > Working in interactive mode > Using interface: tun0 > ppp ON d> dial isp > ppp ON d> > Ppp ON d> > PPp ON d> > PPP ON d> > PPP ON d> show iface > tun0 (idx 12) has 1 address: > 216.191.61.60/32 -> 192.168.70.6 > PPP ON d> > > Then when I entered http://216.191.61.60/myfiles.html > > I got the html I wanted. > Is there a command from the shell I can type to get it without > going into ppp first?; $ ifconfig tun0 -- Crist J. Clark cjclark@alum.mit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 23:55:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 67D8D37B479 for ; Sat, 25 Nov 2000 23:55:18 -0800 (PST) Received: (qmail 93424 invoked by uid 100); 26 Nov 2000 07:55:17 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14880.49637.368847.512361@guru.mired.org> Date: Sun, 26 Nov 2000 01:55:17 -0600 (CST) To: Chris Fedde Cc: questions@FreeBSD.ORG Subject: Re: FreeBSD daemon as an icon? In-Reply-To: <200011260721.eAQ7L4J27403@fedde.littleton.co.us> References: <14880.44378.523999.25331@guru.mired.org> <200011260721.eAQ7L4J27403@fedde.littleton.co.us> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" 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\ X-Message: You should get a better mailer. Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Chris Fedde types: > On Sun, 26 Nov 2000 00:27:38 -0600 (CST) Mike Meyer wrote: > | Anyone out there got a FreeBSD daemon image suitable for use as an > | icon (i.e. - 16x16)? > | > | Thanx, > | There is a small image if chuck in the fbsd-icons port. It's not quite small enough (25x28). I've actually got an icon; now the problem is turning it into a .ico file on FreeBSD. There don't seem to be any tools for that. Thanx, ; Sat, 25 Nov 2000 23:58:08 -0800 (PST) Received: from dccnet.com (unverified [209.5.158.158]) by yoda.dccnet.com (Rockliffe SMTPRA 3.4.6) with ESMTP id ; Sat, 25 Nov 2000 23:58:03 -0800 Message-ID: <3A20C2C7.EF3E323F@dccnet.com> Date: Sat, 25 Nov 2000 23:59:03 -0800 From: "Kevin G. Eliuk" X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: David Banning Cc: questions@freebsd.org Subject: Re: finding my IP address References: <20001126001216.A1466@www3.pacific-pages.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David Banning wrote: > > I am trying to find out my Dynamic IP address that has been issued > to me by my ISP - I think I found it like so; > > $ ppp > Working in interactive mode > Using interface: tun0 > ppp ON d> dial isp > ppp ON d> > Ppp ON d> > PPp ON d> > PPP ON d> > PPP ON d> show iface > tun0 (idx 12) has 1 address: > 216.191.61.60/32 -> 192.168.70.6 > PPP ON d> > > Then when I entered http://216.191.61.60/myfiles.html > > I got the html I wanted. > Is there a command from the shell I can type to get it without > going into ppp first?; Look at ifconfig(1). It will allow you to display all current ip configurations. i.e.) #ifconfig -a dc0: flags=8843 mtu 1500 inet 192.168.192.2 netmask 0xffffff00 broadcast 192.168.192.255 -- Regards, )))))) )))))) )))))) Kevin G. Eliuk )) )) )) )) )) )) http://www.FreeBSD.org )) "Change your operating system, )) )) )) )) )) and You can change your World." )))))) )))))) )))))) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Nov 25 23:58:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost01.reflexnet.net (mailhost01.reflexnet.net [64.6.192.82]) by hub.freebsd.org (Postfix) with ESMTP id 27F8237B4CF for ; Sat, 25 Nov 2000 23:58:32 -0800 (PST) Received: from 149.211.6.64.reflexcom.com ([64.6.211.149]) by mailhost01.reflexnet.net with Microsoft SMTPSVC(5.5.1877.197.19); Sat, 25 Nov 2000 23:56:54 -0800 Received: (from cjc@localhost) by 149.211.6.64.reflexcom.com (8.11.0/8.11.0) id eAQ7wNf56913; Sat, 25 Nov 2000 23:58:23 -0800 (PST) (envelope-from cjc) Date: Sat, 25 Nov 2000 23:58:23 -0800 From: "Crist J . Clark" To: Jim Freeze Cc: questions@FreeBSD.ORG Subject: Re: Need help with natd and connecting Windows to LAN Message-ID: <20001125235823.F12190@149.211.6.64.reflexcom.com> Reply-To: cjclark@alum.mit.edu References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from jim@freeze.org on Sun, Nov 26, 2000 at 01:06:51AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Nov 26, 2000 at 01:06:51AM -0500, Jim Freeze wrote: > I am running FBSD3.4R as a gateway/router with a Win98 box connected on > a local LAN. The gateway machine can see the internet and the Win98 box, > but the Win98 box cannot ping the gateway nor see beyond it. [snip] The configs look OK. But... > root@eeyore1 ('tty') ~ 17 -> ifconfig -a > vx0: flags=8843 mtu 1500 > inet 24.9.218.175 netmask 0xffffff00 broadcast 24.9.218.255 > ether 00:60:97:4f:aa:a0 > al0: flags=8843 mtu 1500 > inet 192.168.1.1 netmask 0xffffff00 broadcast 192.168.1.255 > ether ff:ff:ff:ff:ff:ff ^^^^^^^^^^^^^^^^^ This does not look at all right. > media: autoselect (100baseTX ) > supported media: autoselect 100baseTX 100baseTX > 100baseTX 10baseT/UTP 10baseT/UTP 10baseT/UTP > > lp0: flags=8810 mtu 1500 > tun0: flags=8010 mtu 1500 > sl0: flags=c010 mtu 552 > ppp0: flags=8010 mtu 1500 > lo0: flags=8049 mtu 16384 > inet 127.0.0.1 netmask 0xff000000 If you do a 'tcpdump -eni al0' while you try both the ping from the gateway to the Win98 box and the other way, what do you see? -- 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