proccnt

2000-09-12 Thread Eric Brueggmann


Hi..


I don't know if this was caused by cvsupin' (4.1-STABLE ~10am
CST  9/12/00) but I keep getting this in my log files:  

Sep 12 20:45:18 dsl-64-193-123-121 /kernel: negative proccnt for uid = 0
Sep 12 20:45:23 dsl-64-193-123-121 /kernel: negative proccnt for uid = 0

Any one know what it is?  Did I just mess something up in /proc ?


Thanks,
Eric B.




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: sendmail and relaying...

2000-09-12 Thread fbsd stable

--- Gary Kline <[EMAIL PROTECTED]> wrote:
> On Tue, Sep 12, 2000 at 06:09:00PM -0400, Will
> Mitayai Keeso Rowe wrote:
> > 
> > A few suggestions if you haven't checked them
> already...
> > 
> > If you're now running sendmail 8.11, you need to
> rename sendmail.cw to
> > /etc/mail/local-host-names? Check that you did and
> that all domains you want
> > to accept mail for are in there.
> > 
> > What are you using in /etc/mail/access? Use the
> RELAY rather than OK (that
> > got me the first time).
> > 
> > You might want to read.. 
> /usr/src/contrib/sendmail/cf/README and
> > /etc/mail/README for more info on the SPAM stuff.
> > 
> > Regards,
> > Mit
> > 
> > 
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED]]On Behalf
> Of Gary Kline
> > Sent: Tuesday, September 12, 2000 2:30 PM
> > To: [EMAIL PROTECTED]; FreeBSD Mailing
> List
> > Subject: sendmail and relaying...
> > 
> 
> 
>   I was just beginning to wade thru the cf/README--at
> David
>   Wolfskill's suggestion--when Erin Fortinberry
> suggested that I
>   check his sendmail config files.  I was using RELAY
> in my
>   /etc/mail/access files and I had created the
> local-host-names
>   file with my main and networked names.  But looking
> at Erin's
>   files really shed the light.
> 
>   In my case--everyone else's mileage will vary--I
> needed 
>   /etc/mail/relay-domains, and in that file I needed
> the IP
>   of tao.[tera|cray].com.  With this (plus a kill
> -HUP), mail
>   to [EMAIL PROTECTED] works again.  
> 
>   I've tested it from logins at toxic.magnesium.net
> and 
>   muuz.deadbbs.com, so assume it will work from any
> valid site.
> 
>   I'll say it again: the great thing about
> open-source is that
>   people help one another.  With that, thanks to
> everybody!
> 
>   gary
> 

the issue on relaying on sendmail is quite old...and
is not OS specific.. see:
http://www.sendmail.org/faq/section3.html#3.27


fbsd stable tracker

__
Do You Yahoo!?
Yahoo! Mail - Free email you can access from anywhere!
http://mail.yahoo.com/


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: SMTP AUTH enabling (solved)

2000-09-12 Thread Gregory Neil Shapiro

svysh> Successfully tested procedure (with tiny modifications of your
svysh> original idea) which teaches buildworld in FreeBSD-stable
svysh> how to produce sendmail with SMTP AUTH enabled is specified below.

svysh> 2) patch file /usr/src/usr.sbin/sendmail/Makefile in such a way,
svysh> that line
svysh> LDADD= -lutil -lwrap
svysh> turns into line
svysh> LDADD+= -lutil -lwrap

Thanks for the information.  I've committed the change to -CURRENT.  If no
complaints come in over the next couple of days, I'll do the same in
-STABLE.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



ipfw changes in latest stable

2000-09-12 Thread Edward Wolpert

-BEGIN PGP SIGNED MESSAGE-

Folks-

  Over the weekend, I updated to the latest 4.1-stable from an update
about a few weeks ago. I've got the simple firewall setup (basically,
the client mode in the rc.firewall file) on my box.  However, I can't
do a fetch (via 'make install') on items in the ports directory anymore.
I can't ftp anymore. When I try, I can contact the site, but when I
try to download files, it doesn't work.  When I open up the tcp ports
via ipfw, it then lets me. Any recent changes to ipfw lately that could
explain this? (It used to work)  Thanks.

   
Virtually, | Open/Web Systems Architect
Edward Wolpert <[EMAIL PROTECTED]> | 
 http://www.methodsystems.com  | 4eb8  4e75
___/ 

-BEGIN PGP SIGNATURE-
Version: 2.6.2

iQB1AwUBOb7+zq2tQW/xJRRFAQG8RQMAjhali1oqCDzvBXxV8wvO95vyMOb8hv+3
Tb3tjllH+dESRSdxHlcnBLgZ3pRGlIRnTWKDDChPy/eUbbByjGJ30NHrjSoVohlZ
U8+xrW0a/Hr6DcT/HKcxabNQi6vHeA45
=+cC3
-END PGP SIGNATURE-


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: SMTP AUTH enabling (solved)

2000-09-12 Thread Sergei Vyshenski

Gregory.

Successfully tested procedure (with tiny modifications of your
original idea) which teaches buildworld in FreeBSD-stable
how to produce sendmail with SMTP AUTH enabled is specified below.

Sergei

1) install cyrus-sasl port

2) patch file /usr/src/usr.sbin/sendmail/Makefile in such a way,
   that line
LDADD= -lutil -lwrap
   turns into line
LDADD+= -lutil -lwrap

3) augment /etc/make.conf with:
# Make MD5 version of libskey
.if ${.CURDIR} == "/usr/src/usr.sbin/sendmail"
CFLAGS+=-DSASL -I/usr/local/include/sasl -L/usr/local/lib
LDADD+=-lsasl
.endif


At 21:30 11.09.00 -0700, you wrote:
>svysh> Is it possible to link sasl support into sendmail during buildworld
>svysh> on FreeBSD-4.1-STABLE with CYRUS-SASL port installed in advance?
>
>svysh> site.config.m4 approach seems not applicable here?
>
>You could do something like this (untested, unsupported) in /etc/make.conf:
>
># Make MD5 version of libskey
>.if ${.CURDIR} == "/usr/src/usr.sbin/sendmail"
>CFLAGS+=-DSASL -I/usr/local/include/sasl
>LDADD+=-lsasl
>.endif



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: PCCARD and suspend problem

2000-09-12 Thread Warner Losh

In message <[EMAIL PROTECTED]> "Vladimir B. Grebenschikov" 
writes:
: Device ttyd2: name slot allocation failed (Errno=17)
: Device ttyid2: name slot allocation failed (Errno=17)
: Device ttyld2: name slot allocation failed (Errno=17)
: Device cuaa2: name slot allocation failed (Errno=17)
: Device cuaia2: name slot allocation failed (Errno=17)
: Device cuala2: name slot allocation failed (Errno=17)

Looks like sio and bpf doesn't detach properly.  Errno 17 is EEXIST.
A quick peek at the code shows that no destruction of devices in the
sio_pccard_detach.  Hmmm, you'd think that I would have known better,
or that phk would have noticed on his laptop :-)

Warner


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: pcm strange-ness...

2000-09-12 Thread Pat Wendorf

Same Here, ESS 1878.  I don't get any interrupted sound (which I used to
get quite often) but it is a very strange error message.

- Pat

Edward Wolpert wrote:
> 
> -BEGIN PGP SIGNED MESSAGE-
> 
> Folks-
> 
>   I updated my system recently to 4-stable, and now I get the following
> every once and a while when using my soundcard...
> 
> Sep 11 09:30:28 osti /kernel: pcm0: hwptr went backwards 55216 -> 44036
> Sep 11 09:32:43 osti /kernel: pcm0: hwptr went backwards 10412 -> 63748
> Sep 11 09:36:20 osti /kernel: pcm0: hwptr went backwards 15464 -> 12732
> Sep 11 09:44:19 osti /kernel: pcm0: hwptr went backwards 56628 -> 55624
> Sep 11 09:46:34 osti /kernel: pcm0: hwptr went backwards 11104 -> 1464
> 
>   Any ideas?
> 
> 
> Virtually, | Open/Web Systems Architect
> Edward Wolpert <[EMAIL PROTECTED]> |
>  http://www.methodsystems.com  | 4eb8  4e75
> ___/
> 
> -BEGIN PGP SIGNATURE-
> Version: 2.6.2
> 
> iQB1AwUBOb42XK2tQW/xJRRFAQGfugL/eJusyJcNnn75DyDkAxyxGs+4bGPHVEDY
> eASm/I2Nsz3NUBtidg30tMtpgi10Z/oH3OUZhawcyZmNOhQHquQ/e6/BjhUd/2g5
> jNxaMvxlpZs9gO4E1d+5FlC9wAe2xzMn
> =TVCY
> -END PGP SIGNATURE-
> 
> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-stable" in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: someone MFC something to -stable recently that would explain ...

2000-09-12 Thread Paul Saab

Rebuild genassym

paul

The Hermit Hacker ([EMAIL PROTECTED]) wrote:
> 
> I've tried to remove locore.s, no difference.  I've tried building
> GENERIC, just in case I erroneously removed something while building my
> custom kernel, same error ...
> 
> I'm going from a fresh install of 4.1-RELEASE -> 4.1-STABLE, or, at least,
> trying to ... and I'm building the kernel as 'make buildkernel' ...
> 
> 
> cc -c -x assembler-with-cpp -DLOCORE -O -Wall -Wredundant-decls -Wnested-externs 
>-Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual  
>-fformat-extensions -ansi  -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/../include 
> -D_KERNEL -include opt_global.h -elf  -mpreferred-stack-boundary=2 
>/usr/src/sys/i386/i386/locore.s
> /tmp/ccg38208.s: Assembler messages:
> /tmp/ccg38208.s:1743: Error: .space specifies non-absolute value
> /tmp/ccg38208.s:2454: Error: undefined symbol L0^A in operation setting PTmap
> /tmp/ccg38208.s:2454: Error: undefined symbol PDRSHIFT in operation setting PTmap
> /tmp/ccg38208.s:1711: Error: undefined symbol L0^A in operation
> /tmp/ccg38208.s:1711: Error: undefined symbol PAGE_SIZE in operation
> /tmp/ccg38208.s:1712: Error: undefined symbol L0^A in operation
> /tmp/ccg38208.s:1712: Error: undefined symbol PDESIZE in operation
> /tmp/ccg38208.s:2454: Error: undefined symbol L0^A in operation setting APTmap
> /tmp/ccg38208.s:2454: Error: undefined symbol PDRSHIFT in operation setting APTmap
> /tmp/ccg38208.s:1720: Error: undefined symbol L0^A in operation
> /tmp/ccg38208.s:1720: Error: undefined symbol PAGE_SIZE in operation
> /tmp/ccg38208.s:1721: Error: undefined symbol L0^A in operation
> /tmp/ccg38208.s:1721: Error: undefined symbol PDESIZE in operation
> /tmp/ccg38208.s:1927: Error: undefined symbol UPAGES in operation
> /tmp/ccg38208.s:1927: Error: undefined symbol PAGE_SIZE in operation
> /tmp/ccg38208.s:2315: Error: undefined symbol BI_ESYMTAB in operation
> /tmp/ccg38208.s:2320: Error: undefined symbol BI_SYMTAB in operation
> /tmp/ccg38208.s:2321: Error: undefined symbol BI_ESYMTAB in operation
> /tmp/ccg38208.s:2325: Error: undefined symbol BI_KERNEND in operation
> 
> 
> Marc G. Fournier   ICQ#7615664   IRC Nick: Scrappy
> Systems Administrator @ hub.org 
> primary: [EMAIL PROTECTED]   secondary: scrappy@{freebsd|postgresql}.org 
> 
> 
> 
> 
> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-current" in the body of the message

-- 
Paul Saab
Technical Yahoo
[EMAIL PROTECTED] - [EMAIL PROTECTED] - [EMAIL PROTECTED]
Do You .. uhh .. Yahoo!?


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Anyone having dial-up problem with sendmail 8.11.0 ? (FIXED)

2000-09-12 Thread Peter Radcliffe

Gerhard Sittig <[EMAIL PROTECTED]> probably said:
> > 127.0.0.1 localhost greatoak.home
> > I had
> > 127.0.0.1 localhost myname.my.domain
> > not exactly this but this is the idea.
> 
> It's generally considered a Bad Idea(TM) anyway to have any other
> name assigned to 127.x.x.x but localhost.  Just don't do so and
> assign a "real" address to your NIF and name your machine
> appropriately.  Even if you don't get official IPs from ARIN and
> friends, RFC1918 has plenty of them for your toying ...

That isn't entirely true.

As long as the first entry on the line is "localhost", everything will
still work as expected.

On any mobile machine I have that may or may not have real (or RFC
private) addresses to use at any given time I put an entry for the
name of the machine on the localhost line so it can resolve it's own
name when not connected. I also dislike fully qualified node names, so
just use the short form.

On a laptop that may connect to someone's internal RFC private network
and use DHCP you can't rely on any address space being legitimate for
a "private" interface or name on a mobile machine.

P.

-- 
pir  [EMAIL PROTECTED][EMAIL PROTECTED]



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



someone MFC something to -stable recently that would explain ...

2000-09-12 Thread The Hermit Hacker


I've tried to remove locore.s, no difference.  I've tried building
GENERIC, just in case I erroneously removed something while building my
custom kernel, same error ...

I'm going from a fresh install of 4.1-RELEASE -> 4.1-STABLE, or, at least,
trying to ... and I'm building the kernel as 'make buildkernel' ...


cc -c -x assembler-with-cpp -DLOCORE -O -Wall -Wredundant-decls -Wnested-externs 
-Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual  
-fformat-extensions -ansi  -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/../include  
-D_KERNEL -include opt_global.h -elf  -mpreferred-stack-boundary=2 
/usr/src/sys/i386/i386/locore.s
/tmp/ccg38208.s: Assembler messages:
/tmp/ccg38208.s:1743: Error: .space specifies non-absolute value
/tmp/ccg38208.s:2454: Error: undefined symbol L0^A in operation setting PTmap
/tmp/ccg38208.s:2454: Error: undefined symbol PDRSHIFT in operation setting PTmap
/tmp/ccg38208.s:1711: Error: undefined symbol L0^A in operation
/tmp/ccg38208.s:1711: Error: undefined symbol PAGE_SIZE in operation
/tmp/ccg38208.s:1712: Error: undefined symbol L0^A in operation
/tmp/ccg38208.s:1712: Error: undefined symbol PDESIZE in operation
/tmp/ccg38208.s:2454: Error: undefined symbol L0^A in operation setting APTmap
/tmp/ccg38208.s:2454: Error: undefined symbol PDRSHIFT in operation setting APTmap
/tmp/ccg38208.s:1720: Error: undefined symbol L0^A in operation
/tmp/ccg38208.s:1720: Error: undefined symbol PAGE_SIZE in operation
/tmp/ccg38208.s:1721: Error: undefined symbol L0^A in operation
/tmp/ccg38208.s:1721: Error: undefined symbol PDESIZE in operation
/tmp/ccg38208.s:1927: Error: undefined symbol UPAGES in operation
/tmp/ccg38208.s:1927: Error: undefined symbol PAGE_SIZE in operation
/tmp/ccg38208.s:2315: Error: undefined symbol BI_ESYMTAB in operation
/tmp/ccg38208.s:2320: Error: undefined symbol BI_SYMTAB in operation
/tmp/ccg38208.s:2321: Error: undefined symbol BI_ESYMTAB in operation
/tmp/ccg38208.s:2325: Error: undefined symbol BI_KERNEND in operation


Marc G. Fournier   ICQ#7615664   IRC Nick: Scrappy
Systems Administrator @ hub.org 
primary: [EMAIL PROTECTED]   secondary: scrappy@{freebsd|postgresql}.org 




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: Anyone having dial-up problem with sendmail 8.11.0 ? (FIXED)

2000-09-12 Thread Gerhard Sittig

On Tue, Sep 12, 2000 at 16:19 +0200, Philippe CASIDY wrote:
> 
> I am proud to say that I solved my problem. But not proud at
> all of the solution.
> 
> During the merge performed by mergemaster it replaces (well, I
> told him to) the entries for the localhost.
> Instead of
> 127.0.0.1 localhost greatoak.home
> I had
> 127.0.0.1 localhost myname.my.domain
> not exactly this but this is the idea.

It's generally considered a Bad Idea(TM) anyway to have any other
name assigned to 127.x.x.x but localhost.  Just don't do so and
assign a "real" address to your NIF and name your machine
appropriately.  Even if you don't get official IPs from ARIN and
friends, RFC1918 has plenty of them for your toying ...


virtually yours   82D1 9B9C 01DC 4FB4 D7B4  61BE 3F49 4F77 72DE DA76
Gerhard Sittig   true | mail -s "get gpg key" [EMAIL PROTECTED]
-- 
 If you don't understand or are scared by any of the above
 ask your parents or an adult to help you.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: Sudden name resolution problems? 4.0-R (sorry its not stable..)

2000-09-12 Thread David Raistrick

On Wed, 13 Sep 2000 [EMAIL PROTECTED] wrote:

> 
>   What is in /etc/host.conf?

Nothing that changed, at least.  I have looked at it, and compared it with
other still functioning systems:

damoe:/usr/ports%> more /etc/host.conf 
# $FreeBSD: src/etc/host.conf,v 1.6 1999/08/27 23:23:41 peter Exp $
# First try the /etc/hosts file
hosts
# Now try the nameserver next.
bind
# If you have YP/NIS configured, uncomment the next line
# nis


Stock stock stock.

thanks...david

--
David Raistrick Digital Wireless Communications
[EMAIL PROTECTED]





To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: Sudden name resolution problems? 4.0-R (sorry its not stable..)

2000-09-12 Thread Mark . Andrews


What is in /etc/host.conf?

Mark
> 
> Sending this to stable, because you folks are used to dealing with wierd
> problems like this...twice to -questions got no replies.
> 
> Any ideasthanks
> 
> --
> Ok, yesterday things got wierd.
> 
> My workstation at work is running 4.0-R, and I recently changed the IP
> address.  I kept the old IP bound as well, for a few weeks, just in
> case.
> 
> Well, yesterday i removed the old address from the NIC, and things
> broke.  At least, that is when i noticed them breaking.  fetchmail stopped
> retrieving my mail.
> 
> The error that fetchmail gives is:  
> fetchmail: reading message 1 of 321 (2776 octets)
> fetchmail: SMTP connect to localhost failed
> fetchmail: POP3> QUIT
> fetchmail: POP3< Ken,
> fetchmail: SMTP transaction error while fetching from xxx.xxx.xxx.xxx
> 
> Ok, wierd sez I.
> 
> think that is wierd?
> 
> damoe:/home/keen%> telnet damoe.wireless-isp.net
> damoe.wireless-isp.net: No address associated with hostname
> damoe:/home/keen%> ssh damoe.wireless-isp.net
> Host key not found from the list of known hosts.
> Are you sure you want to continue connecting (yes/no)? ^C
> Received signal 2.
> damoe:/home/keen%> nslookup damoe.wireless-isp.net
> Server:  dns1.wireless-isp.net
> Address:  208.61.227.10
> 
> Name:damoe.wireless-isp.net
> Address:  208.61.227.212
> 
> damoe:/home/keen%>
> 
> 
> 
> Telnet doesnt want to resolve names! I've tried all of the nameservers i
> have handy, including the one running on the workstation...nada.
> 
> I cant seem to find a way to get telnet to give me anything more verbose
> for the error, though.  I find nothing of it in the logs, either.
> 
> Suggestions??
> 
> Fyi, I did try adding the old IP back to the NIC, same thing.  Even
> swapped everything back to the old ip scheme...nada.
> 
> 
> What am i missing?  I've changed IP addresses on many FreeBSD boxen since
> 3.0-R...(what can I say, I was a bsd/os guy before that..;) with never a
> problem..at least not such as this.
> 
> Thanks for your help..
> 
> ...david
> 
> 
> --
> David Raistrick   Digital Wireless Communications
> [EMAIL PROTECTED]
> 
> 
> 
> 
> 
> 
> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-stable" in the body of the message
--
Mark Andrews, Nominum Inc.
1 Seymour St., Dundas Valley, NSW 2117, Australia
PHONE: +61 2 9871 4742 INTERNET: [EMAIL PROTECTED]


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: Java v1.3 JDK/JRE for FreeBSD v4.x

2000-09-12 Thread Nate Williams

> In dealing with the Netscape issue, I was reminded of the latest Java
> implementation on v1.3 of the JDK/JRE. Has there been effort to
> add Java JDK/JRE v1.3 to -current or possible -STABLE?!?

Because Java is not open-source, it will never become a default part of
the FreeBSD OS.

An external port of JDK1.2.2 is in the works, to be followed by a JDK1.3
release.  Followups to freebsd-java.




Nate


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Sudden name resolution problems? 4.0-R (sorry its not stable..)

2000-09-12 Thread David Raistrick


Sending this to stable, because you folks are used to dealing with wierd
problems like this...twice to -questions got no replies.

Any ideasthanks

--
Ok, yesterday things got wierd.

My workstation at work is running 4.0-R, and I recently changed the IP
address.  I kept the old IP bound as well, for a few weeks, just in
case.

Well, yesterday i removed the old address from the NIC, and things
broke.  At least, that is when i noticed them breaking.  fetchmail stopped
retrieving my mail.

The error that fetchmail gives is:  
fetchmail: reading message 1 of 321 (2776 octets)
fetchmail: SMTP connect to localhost failed
fetchmail: POP3> QUIT
fetchmail: POP3< Ken,
fetchmail: SMTP transaction error while fetching from xxx.xxx.xxx.xxx

Ok, wierd sez I.

think that is wierd?

damoe:/home/keen%> telnet damoe.wireless-isp.net
damoe.wireless-isp.net: No address associated with hostname
damoe:/home/keen%> ssh damoe.wireless-isp.net
Host key not found from the list of known hosts.
Are you sure you want to continue connecting (yes/no)? ^C
Received signal 2.
damoe:/home/keen%> nslookup damoe.wireless-isp.net
Server:  dns1.wireless-isp.net
Address:  208.61.227.10

Name:damoe.wireless-isp.net
Address:  208.61.227.212

damoe:/home/keen%>



Telnet doesnt want to resolve names! I've tried all of the nameservers i
have handy, including the one running on the workstation...nada.

I cant seem to find a way to get telnet to give me anything more verbose
for the error, though.  I find nothing of it in the logs, either.

Suggestions??

Fyi, I did try adding the old IP back to the NIC, same thing.  Even
swapped everything back to the old ip scheme...nada.


What am i missing?  I've changed IP addresses on many FreeBSD boxen since
3.0-R...(what can I say, I was a bsd/os guy before that..;) with never a
problem..at least not such as this.

Thanks for your help..

...david


--
David Raistrick Digital Wireless Communications
[EMAIL PROTECTED]






To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: remote 3.5 -> 4.1-STABLE source upgrade (updated)

2000-09-12 Thread Damien Tougas

On Mon, Sep 11, 2000 at 05:21:37PM +0700, Max Khon wrote:
>2) make buildkernel KERNEL=GENERIC && make installkernel KERNEL=GENERIC

Just curious, what is the purpose of doing this step before doing the
installworld? Is this done do make sure that the the kernel works ok
before installing the rest of the OS? Secondly, why would I want to
build the GENERIC kernel instead of my custom kernel?

Thanks,

-- 
Damien Tougas
Systems Administrator
Carroll-Net, Inc.
http://www.carroll.com


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: SMTP AUTH

2000-09-12 Thread Sergei Vyshenski

Sure I have cyrus-sasl and all related ports installed.
Moreover, universal kit of Sendmail 8.11 (not the one included with FreeBSD)
compiles, installs and runs ok with SMTP AUTH.
Just wanted to be consistent and tried to use Sendmail kit shipped with the
basic system.

At 08:13 12.09.00 -0500, you wrote:
>uOn Tue, 12 Sep 2000, Sergei Vyshenski wrote:
>
> > Oops! Even with suggested changes to make.conf and Makefile,
> > Buildworld fails with: /usr/obj/usr/src/i386/usr/libexec/elf/ld: cannot
> > find -lsasl
> > Any ideas?
>
>Uhm, do you have cyrus-sasl installed?  You need cyrus-sasl to build
>sendmail with SMTP AUTH.  Its in the ports, under security.
>
> -Ryan T. Dean



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: Anyone having dial-up problem with sendmail 8.11.0 ?

2000-09-12 Thread Damien Tougas

Phil,

I am having the exact same problem as you. I have not had the time to
look into it yet, but if/when I figure it out, I will let you know.
If you make any headway before I do, please let me know what you come
up with.

-- 
Damien Tougas
Systems Administrator
Carroll-Net, Inc.
http://www.carroll.com

On Tue, Sep 12, 2000 at 10:18:40AM +0200, Philippe CASIDY wrote:
>Hi!
>
>Yesterday, I have updated the world. So now I have sendmail 8.11.0
>installed.
>
>I updated my mc file to add the option 'nospecial' to nouucp and made
>the aliases modifications.
>
>The problem is that every time I invoke sendmail (even mailq, or sending
>local mail) it tries to connect to the Internet. Too bad because I have
>a dial up connection.
>That smells a DNS problem but previous version used to work as expected.
>
>I will try to dig up this problem but if someone has already encountered
>it and solved it, i will be pleased to take the answer :)
>
>Thanks
>
>Phil.
>
>
>
>
>To Unsubscribe: send mail to [EMAIL PROTECTED]
>with "unsubscribe freebsd-stable" in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: SMTP AUTH

2000-09-12 Thread Ryan T. Dean

uOn Tue, 12 Sep 2000, Sergei Vyshenski wrote:

> Oops! Even with suggested changes to make.conf and Makefile,
> Buildworld fails with: /usr/obj/usr/src/i386/usr/libexec/elf/ld: cannot 
> find -lsasl
> Any ideas?

Uhm, do you have cyrus-sasl installed?  You need cyrus-sasl to build
sendmail with SMTP AUTH.  Its in the ports, under security.

-Ryan T. Dean



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: SMTP AUTH

2000-09-12 Thread Sergei Vyshenski

Oops! Even with suggested changes to make.conf and Makefile,
Buildworld fails with: /usr/obj/usr/src/i386/usr/libexec/elf/ld: cannot 
find -lsasl
Any ideas?

more details here:

cc -O -pipe -DSASL -I/usr/local/include/sasl 
-I/usr/src/usr.sbin/sendmail/../../contrib/sendmail/src
-I/usr/src/usr.sbin/sendmail/../../contrib/sendmail/include -DNEWDB -DNIS 
-DNETINET6
-DTCPWRAPPERS -DMAP_REGEX   -I/usr/obj/usr/src/i386/usr/include
-o sendmail alias.o arpadate.o bf_torek.o clock.o collect.o conf.o 
control.o convtime.o
daemon.o deliver.o domain.o envelope.o err.o headers.o macro.o main.o map.o 
mci.o milter.o
mime.o parseaddr.o queue.o readcf.o recipient.o savemail.o sfsasl.o 
shmticklib.o srvrsmtp.o
stab.o stats.o sysexits.o timers.o trace.o udb.o usersmtp.o util.o 
version.o  -lsasl -lutil -lwrap 
/usr/obj/usr/src/usr.sbin/sendmail/../../lib/libsmutil/libsmutil.a
/usr/obj/usr/src/i386/usr/libexec/elf/ld: cannot find -lsasl
*** Error code 1

*
Gregory,
You idea works ok only provided the following change is made to
/usr/src/usr.sbin/sendmail/Makefile:

LDADD+= -lutil -lwrap

instead of

LDADD= -lutil -lwrap

Could you please commit this change to stable?
Sergei

At 21:30 11.09.00 -0700, you wrote:
>svysh> Is it possible to link sasl support into sendmail during buildworld
>svysh> on FreeBSD-4.1-STABLE with CYRUS-SASL port installed in advance?
>
>svysh> site.config.m4 approach seems not applicable here?
>
>You could do something like this (untested, unsupported) in /etc/make.conf:
>
># Make MD5 version of libskey
>.if ${.CURDIR} == "/usr/src/usr.sbin/sendmail"
>CFLAGS+=-DSASL -I/usr/local/include/sasl
>LDADD+=-lsasl
>.endif



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



stabe & mysql322-server/ports/databases

2000-09-12 Thread Martin McFlySr

Hello [EMAIL PROTECTED],

anybody - try cvsup system, make world; make kernel; reload;
and "make" mysql322-server from ports/databases/ ?

when   mysql322-server   "make",  it  configuring  with  "Configuring  MIT
Pthreads"...

in "make install" proceess we have a


Making install in share
for lang in czech danish dutch english estonia french german greek hungarian ita
lian japanese korean norwegian norwegian-ny polish portuguese russian slovak spa
nish swedish;  do  /bin/sh ../../mkinstalldirs /usr/local/share/mysql/$lang;  ..
wheel -m 444 ./$lang/errmsg.sys  /usr/local/share/mysql/$lang/errmsg.sys;  inst
all -c -o root -g wheel -m 444 ./$lang/errmsg.txt  /usr/local/share/mysql/$lang/
errmsg.txt;  done
Segmentation fault - core dumped
*** Error code 139
Stop.
*** Error code 1
Stop.
*** Error code 1
Stop.
*** Error code 1
Stop.
*** Error code 1
Stop.
*** Error code 1
Stop.
*** Error code 1
Stop.

and all binaries in /extras/ after run goto core...

gdb on /extras/replace:

(gdb) ba
#0  0x80582e8 in __error ()
#1  0x280c39b0 in _thread_fd_table_init () from /usr/lib/libc_r.so.4
#2  0x280c2d9e in _thread_init () from /usr/lib/libc_r.so.4
#3  0x280f1671 in _thread_init_invoker::_thread_init_invoker ()
   from /usr/lib/libc_r.so.4
#4  0x280f1698 in global constructors keyed to
_thread_init_invoker::_thread_init_invoker () from /usr/lib/libc_r.so.4
#5  0x2808ad58 in _init () from /usr/lib/libc_r.so.4
#6  0x280880c5 in _init () from /usr/lib/libc_r.so.4
#7  0x2805f51e in _rtld () from /usr/libexec/ld-elf.so.1

but...  i'm  have  a  in  one cvsup (full source); make world; make kernel;
reload...

#grep SYSV mykernel:
options SYSVSHM
options SYSVMSG
options SYSVSEM


#ldconfig -elf -r | grep libc_r
14:-lc_r.3 => /usr/lib/libc_r.so.3
44:-lc_r.4 => /usr/lib/libc_r.so.4

#make NATIVE_THREADS=yes configure
...
Configuring MIT Pthreads
...

#add "CONFIGURE_ARGS+=   --with-mit-threads=no" to Makefile
#make NATIVE_THREADS=yes configure
...
Configuring MIT Pthreads
...

what must i do for "make" mysql with libc_r ?

thank you,

-- 
Tuesday, September 12, 2000,
15:42

Best regards from future,
Martin McFlySr, HillDale.




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: Netscape/Linux on FreeBSD an other horrors ...

2000-09-12 Thread Thomas David Rivers

Just F.Y.I.

 I have found that the same Netscape binary running on FreeBSD 4.1
 is much more reliable than that binary running on FreeBSD 3.x.

 I attribute this to the change in how FPU exceptions are handled.
 That is, Netscape is probably getting floating pt. underflows/overflows
 which it does not handle.  In FreeBSD 3.x, this dumped core,
 in 4.1 it is ignored.  

 This may "improve" FreeBSD's reliability.

 [Of course, it raises a question regarding 2.x compatibility;
 shouldn't a 2.x binary continue to dump core on FPU exceptions,
 even on a later system?]

- Dave Rivers -

--
[EMAIL PROTECTED] Work: (919) 676-0847
Get your mainframe (370) `C' compiler at http://www.dignus.com


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: SMTP AUTH

2000-09-12 Thread Sergei Vyshenski

Gregory,
You idea works ok only provided the following change is made to
/usr/src/usr.sbin/sendmail/Makefile:

LDADD+= -lutil -lwrap

instead of

LDADD= -lutil -lwrap

Could you please commit this change to stable?
Sergei

At 21:30 11.09.00 -0700, you wrote:
>svysh> Is it possible to link sasl support into sendmail during buildworld
>svysh> on FreeBSD-4.1-STABLE with CYRUS-SASL port installed in advance?
>
>svysh> site.config.m4 approach seems not applicable here?
>
>You could do something like this (untested, unsupported) in /etc/make.conf:
>
># Make MD5 version of libskey
>.if ${.CURDIR} == "/usr/src/usr.sbin/sendmail"
>CFLAGS+=-DSASL -I/usr/local/include/sasl
>LDADD+=-lsasl
>.endif



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



/stand/sysinstall can't find 3ware RAID drivers in 4.1-stable

2000-09-12 Thread Steven Jurczyk

Hi
I try to install 4.1-2911-STABLE snapshot on machine with have 3ware RAID
controller and /stand/sysinstall can't find raid unit detected by kernel
(messages above).

twe0: <3ware Storage Controller> port 0xefa0-0xefaf irq 11 at device 14.0 on
pci0
twed0: <3ware RAID unit> on twe0
twed0: 58643MB (120101152 sectors)
Creating DISK twed0

No disks found!  Please verify that your disk controller is being
properly probed at boot time.  See the Hardware Guide on the
Documentation menu for clues on diagnosing this type of problem.

pozdrawiam
Stefan Jurczyk

HomeNet - http://home.pl - [EMAIL PROTECTED] - 0801 32




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Anyone having dial-up problem with sendmail 8.11.0 ?

2000-09-12 Thread Philippe CASIDY

Hi!

Yesterday, I have updated the world. So now I have sendmail 8.11.0
installed.

I updated my mc file to add the option 'nospecial' to nouucp and made
the aliases modifications.

The problem is that every time I invoke sendmail (even mailq, or sending
local mail) it tries to connect to the Internet. Too bad because I have
a dial up connection.
That smells a DNS problem but previous version used to work as expected.

I will try to dig up this problem but if someone has already encountered
it and solved it, i will be pleased to take the answer :)

Thanks

Phil.




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: 4.1-STABLE fails to 'buildkernel'?

2000-09-12 Thread Kent Stewart



Mike Nowlin wrote:
> 
> > > What SUCKS is when you manage to get through a make-world without an
> > > error, but the running system is broken. /That/ is something to whine
> > > about. (And you just want to slug that first one that says, "Just use
> > > the backups you made before the make-world." I do backup first, but
> > > restoring is still a non-trivial pain in the *ss. And if you didn't
> > > backup, especially a production system, you asked for it, bub.)
> >
> > This is all part of the reason why I do a buildworld,
> > build[install]kernel, and finally do my installworld. When something
> > like this happens, my kernel.old and my user land are still in sync.
> >
> 
> I kept my mouth shut at the time, since I knew it would be fixed in a
> couple of days and the machine I was upgrading wasn't anything really
> important, but the problem a couple weeks ago where telnetting into a
> system or starting X on it caused it to blow up didn't exactly strike me
> as "stable".  kernel.old didn't work since the userland had changed enough
> to make ps, top, etc. to stop working -- un-cvsup it and rebuild...
> 
> This problem shows up more often when you update sources weekly or
> so.  Daily doesn't seem to be a big problem - kernel.old is usually
> good; going from 4.0-RELEASE to 4.1-STABLE can cause headaches.

I have 3 machines that are running builds within 2 or 3 weeks of each
other. The two that can go down are built much more often. When
everything works and there are changes I want, I cvsup and build my
server. The other two can be down for a short while but the server
isn't upgraded unless the other two are working. Things change and so
it can't be too far behind. I will upgrade one of them if it appears
something is broken. I haven't done it right now because I have some
seti wu's that are getting too old.

> 
> Just goes to show you that completely trusting
> [build|install][world|kernel] and friends isn't completely
> goof-proof.  Creating a program that compiles flawlessly but still doesn't
> work doesn't require much cranial activity.

That is very true but you don't get hit by errors like that as
frequent as you are by builds that won't finish. The changes are
supposed to be tested before they are MFC'ed to stable from current.
The telnet/ping problem existed in current and those changes probably
shouldn't have been MFC'ed until they were fixed. With the common
breakage, if you haven't installed anything, you haven't damaged
anything and can wait for the "Maytag repairmen" to fix things :). 

Kent

> 
> (BTW: Thanks, guys, for fixing that problem!  Got my shiny new Toshiba
> 4360ZDVD laptop running -STABLE now - X, sound, pcmcia,
> everything!  Although the S3 Savage-IX patch for XFree-3.3.6 has some
> problems (with work-arounds), it's kicking along nicely!)
> 
> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
> 
> Understated/funny man-page sentence of the current time period:
> 
> >From route(4) on FreeBSD-3.4, DESCRIPTION section:
> "FreeBSD provides some packet routing facilities."
> ...duh...
> 
> Mike Nowlin, N8NVW [EMAIL PROTECTED] http://www.viewsnet.com

-- 
Kent Stewart
Richland, WA

mailto:[EMAIL PROTECTED]
http://kstewart.urx.com/kstewart/index.html
FreeBSD News http://daily.daemonnews.org/


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: remote 3.5 -> 4.1-STABLE source upgrade (updated)

2000-09-12 Thread Dan Larsson

On Mon, 11 Sep 2000, Chad R. Larson wrote:

| As I recall, Dan Larsson wrote:
| > 
| > I am about to upgrade a 3.5-STABLE machine to 4.1-STABLE...
| 
| Why?
| 
| Not being a wise-ass (and not saying I can't be), but what features
| in 4.1 not in 3.5 are driving your decision?

It's a bsd box running as router, I would like to prepare it for IPv6
when it becomes available. Besides IPv6, it's the only box running
3.? at that location.

I have done 3.? to 4.?-S the shutdown-to-single-usermode way
successfully on an other machines so I know it works that way. 
The one in question isn't at arms lenght so to speak, so a remote
upgrade would be the most preferred solution.

|   -crl

Regards
+--
Dan Larsson  | Tel:   +46 8 550 120 21
Tyfon Svenska AB | Fax:   +46 8 550 120 02
GPG and PGP keys | finger [EMAIL PROTECTED]




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message



Re: 4.1-STABLE fails to 'buildkernel'?

2000-09-12 Thread Mike Nowlin


> > What SUCKS is when you manage to get through a make-world without an
> > error, but the running system is broken. /That/ is something to whine
> > about. (And you just want to slug that first one that says, "Just use
> > the backups you made before the make-world." I do backup first, but
> > restoring is still a non-trivial pain in the *ss. And if you didn't
> > backup, especially a production system, you asked for it, bub.)
> 
> This is all part of the reason why I do a buildworld,
> build[install]kernel, and finally do my installworld. When something
> like this happens, my kernel.old and my user land are still in sync.
> 

I kept my mouth shut at the time, since I knew it would be fixed in a
couple of days and the machine I was upgrading wasn't anything really
important, but the problem a couple weeks ago where telnetting into a
system or starting X on it caused it to blow up didn't exactly strike me
as "stable".  kernel.old didn't work since the userland had changed enough
to make ps, top, etc. to stop working -- un-cvsup it and rebuild...

This problem shows up more often when you update sources weekly or
so.  Daily doesn't seem to be a big problem - kernel.old is usually
good; going from 4.0-RELEASE to 4.1-STABLE can cause headaches.

Just goes to show you that completely trusting
[build|install][world|kernel] and friends isn't completely
goof-proof.  Creating a program that compiles flawlessly but still doesn't
work doesn't require much cranial activity.

(BTW: Thanks, guys, for fixing that problem!  Got my shiny new Toshiba
4360ZDVD laptop running -STABLE now - X, sound, pcmcia,
everything!  Although the S3 Savage-IX patch for XFree-3.3.6 has some
problems (with work-arounds), it's kicking along nicely!)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Understated/funny man-page sentence of the current time period:

>From route(4) on FreeBSD-3.4, DESCRIPTION section:
"FreeBSD provides some packet routing facilities."
...duh...

Mike Nowlin, N8NVW [EMAIL PROTECTED] http://www.viewsnet.com




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message