ath0: failed to allocate descriptors: 12

2005-03-17 Thread B
Hey, i just burned 5.3 and put it on my old p2 laptop. When i put in my linksys 
a+g card the first time it normally says no driver attached. But if i do 
ifconfig ath0 then reinsert it i get the following:

Ath0: Atheros 5212 mem 0x8800-0x8800 irq 9 at device 0.0 on cardbus1

ath0: mac 5.6 phy 4.1 5ghz radio 3.6
ath0: failed to allocate descriptors: 12
device_attach: ath0 attach returned 12
cbb1: CardBus card activation failed

if theres anything else i should post just let me know. Oh and pccardc dumpcis 
says 0 slots found, if that helps. thanks again
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ath0: failed to allocate descriptors: 12

2005-03-17 Thread Sam Leffler
B wrote:
Hey, i just burned 5.3 and put it on my old p2 laptop. When i put in my linksys 
a+g card the first time it normally says no driver attached. But if i do 
ifconfig ath0 then reinsert it i get the following:
Ath0: Atheros 5212 mem 0x8800-0x8800 irq 9 at device 0.0 on cardbus1
ath0: mac 5.6 phy 4.1 5ghz radio 3.6
ath0: failed to allocate descriptors: 12
device_attach: ath0 attach returned 12
cbb1: CardBus card activation failed
Memmory is too fragmented to allocate the descriptors in one chunk.  I 
changed this logic in current to allocate separate blocks for the 
tx+rx+beacon descriptors; I'll look at backporting that (though it's too 
risky to get into 5.4).

Sam
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: RELENG_5 and FAST_IPSEC limits

2005-03-17 Thread Sam Leffler
Hajimu UMEMOTO wrote:
Hi,

On Wed, 16 Mar 2005 10:17:14 -0800
Sam Leffler [EMAIL PROTECTED] said:

sam Note the change lacks any locking so if your SA db is changing there's a 
sam good chance you'll blow up.

Ah, yes.  I forgot the fact that FAST_IPSEC is mpsafe.
How about this?  This is againt sys/netipsec/key.c with my previous
patch applied.
...patch removed...
Possibly; I can't tell from the patch if locks are held across calls 
they should not be. I also worry about the effect of holding the various 
 locks for an extended period of time (will it impact packet processing?)

Note that switching to a sysctl would also eliminate a problem in the 
PF_KEY socket code where the raw_cb list is walked w/o holding 
rawcb_mtx.  Roselyn Lee at Vernier Networks hit this but we didn't apply 
a change she had (yet) because there appeared to be issues with LOR's 
between the raw cb and SA db locks.  In general the PF_KEY code is 
desparately in need of a rewrite--if for nothing else but to isolate the 
ABI dependence between PF_KEY and the IPsec code.  Been on my TODO list 
for several years now.

Are you suggesting KAME code can/will change to eliminate the use of 
PF_KEY sockets to query the SA db state?

Sam
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: kern/78664: truss does not work on 5-STABLE(5.4-PRERELEASE)

2005-03-17 Thread Dan Nelson
HASHI Hiroaki wrote:
 truss command does not work with below message.

 truss: PIOCBIS: Inappropriate ioctl for device

I've narrowed it down to something committed between 02-24 and 02-27,
but can't continue the binary search until tonight.  It would be really
nice if this was fixed before 5.4 gets released :)

-- 
Dan Nelson
[EMAIL PROTECTED]
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Apache Signal 11 (5.3-RELEASE-p3/4)

2005-03-17 Thread Kyle Mott
I've already sent this question to freebsd-questions; forgive me if this 
is the wrong list.

This just very recently started to happen (and I haven't upgraded Apache 
as of late either, or any other software for that matter). I keep 
getting this in my kernel.log on 2 different hosts:
Mar 17 09:34:16 logsrv pid 38069 (httpd), uid 0: exited on signal 11 
(core dumped)
Mar 17 00:34:25 g1bs0n kernel: pid 9419 (httpd), uid 0: exited on signal 
11 (core dumped)

Both hosts are running 'apache+mod_ssl-1.3.33+2.8.22' plus 
'php4-4.3.10', and a bunch of php modules that I don't want to list. i 
was able to get Apache running on g1bs0n by not starting ssl; however, 
Apache won't start on logsrv at all.

Looking up man signal, SIGSEGV (11) is a segmentation violation. What 
can cause this on 2 different machines that haven't been updated in a 
while? I'm currently running a ports-cvsup, to verify that 
apache+mod_ssl either does or does not need to be updated.


-Kyle Mott
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache Signal 11 (5.3-RELEASE-p3/4)

2005-03-17 Thread Michael C. Shultz
On Thursday 17 March 2005 10:28 am, Kyle Mott wrote:
 I've already sent this question to freebsd-questions; forgive me if
 this is the wrong list.

 This just very recently started to happen (and I haven't upgraded
 Apache as of late either, or any other software for that matter). I
 keep getting this in my kernel.log on 2 different hosts:
 Mar 17 09:34:16 logsrv pid 38069 (httpd), uid 0: exited on signal 11
 (core dumped)
 Mar 17 00:34:25 g1bs0n kernel: pid 9419 (httpd), uid 0: exited on
 signal 11 (core dumped)

 Both hosts are running 'apache+mod_ssl-1.3.33+2.8.22' plus
 'php4-4.3.10', and a bunch of php modules that I don't want to list.
 i was able to get Apache running on g1bs0n by not starting ssl;
 however, Apache won't start on logsrv at all.

 Looking up man signal, SIGSEGV (11) is a segmentation violation. What
 can cause this on 2 different machines that haven't been updated in a
 while? I'm currently running a ports-cvsup, to verify that
 apache+mod_ssl either does or does not need to be updated.



 -Kyle Mott

Just a suggestion

Build Apache with debug support, do a back trace on the .core file with
GDB.  That will let you narrow down the problem a bit. Then notify the 
ports maintainer.

-Mike

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Strange lockups - 5.4 PRERELEASE / BackupPC/ Samba3

2005-03-17 Thread John Pettitt

My home server has been freezing at 1AM every night for the last three
days - this tracks with the upgrade from 5.3 to 5.4 PRE - The only cron
job running at that time is BackupPC which uses samba3 (smbclient)  to
backup windows systems.

Does anybody know of anything in samba3 or perl 5.8 (BackupPC is a set
of perl scripts) that might be causing a lockup.  I've got nothing
unusual in syslog.

Right now I'm rebuilding perl and samba under 5.4 in case there is some
weird library thing between the 5.3 and 5.4 that is causing this - we'll
see tonight if it works.



___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache Signal 11 (5.3-RELEASE-p3/4)

2005-03-17 Thread Kyle Mott
I took your advice and rebuilt apache with debugging symbols, and came 
up with this (following http://httpd.apache.org/dev/debugging.html):
[EMAIL PROTECTED]:/usr/ports/www/apache13-modssl# gdb httpd
(gdb) b ap_process_request
Breakpoint 1 at 0x8064944: file http_request.c, line 1311.
(gdb) run -X -d /usr/local
Starting program: /usr/local/sbin/httpd -X -d /usr/local
[Thu Mar 17 12:02:38 2005] [warn] NameVirtualHost *:443 has no VirtualHosts
gdb in realloc(): error: junk pointer, too high to make sense
Abort (core dumped)

If I run 'gdb httpd httpd.core' and then run 'where', I get the 
following (though I have no idea if it is relavant). Sorry for the long 
paste:
[EMAIL PROTECTED]:/usr/ports/www/apache13-modssl# gdb httpd httpd.core
warning: exec file is newer than core file.
Core was generated by `httpd'.
Program terminated with signal 11, Segmentation fault.
Reading symbols from /lib/libcrypt.so.2...done.
Loaded symbols for /lib/libcrypt.so.2
Reading symbols from /usr/local/lib/libmm.so.13...done.
Loaded symbols for /usr/local/lib/libmm.so.13
Reading symbols from /lib/libc.so.5...done.
Loaded symbols for /lib/libc.so.5
Reading symbols from /usr/local/libexec/apache/mod_mmap_static.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_mmap_static.so
Reading symbols from /usr/local/libexec/apache/mod_vhost_alias.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_vhost_alias.so
Reading symbols from /usr/local/libexec/apache/mod_env.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_env.so
Reading symbols from /usr/local/libexec/apache/mod_define.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_define.so
Reading symbols from /usr/local/libexec/apache/mod_log_config.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_log_config.so
Reading symbols from /usr/local/libexec/apache/mod_mime_magic.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_mime_magic.so
Reading symbols from /usr/local/libexec/apache/mod_mime.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_mime.so
Reading symbols from /usr/local/libexec/apache/mod_negotiation.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_negotiation.so
Reading symbols from /usr/local/libexec/apache/mod_status.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_status.so
Reading symbols from /usr/local/libexec/apache/mod_info.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_info.so
Reading symbols from /usr/local/libexec/apache/mod_include.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_include.so
Reading symbols from /usr/local/libexec/apache/mod_autoindex.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_autoindex.so
Reading symbols from /usr/local/libexec/apache/mod_dir.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_dir.so
Reading symbols from /usr/local/libexec/apache/mod_cgi.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_cgi.so
Reading symbols from /usr/local/libexec/apache/mod_asis.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_asis.so
Reading symbols from /usr/local/libexec/apache/mod_imap.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_imap.so
Reading symbols from /usr/local/libexec/apache/mod_actions.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_actions.so
Reading symbols from /usr/local/libexec/apache/mod_speling.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_speling.so
Reading symbols from /usr/local/libexec/apache/mod_userdir.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_userdir.so
Reading symbols from /usr/local/libexec/apache/mod_alias.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_alias.so
Reading symbols from /usr/local/libexec/apache/mod_rewrite.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_rewrite.so
Reading symbols from /usr/local/libexec/apache/mod_access.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_access.so
Reading symbols from /usr/local/libexec/apache/mod_auth.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_auth.so
Reading symbols from /usr/local/libexec/apache/mod_auth_anon.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_auth_anon.so
Reading symbols from /usr/local/libexec/apache/mod_auth_db.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_auth_db.so
Reading symbols from /usr/local/libexec/apache/mod_digest.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_digest.so
Reading symbols from /usr/local/libexec/apache/libproxy.so...done.
Loaded symbols for /usr/local/libexec/apache/libproxy.so
Reading symbols from /usr/local/libexec/apache/mod_cern_meta.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_cern_meta.so
Reading symbols from /usr/local/libexec/apache/mod_expires.so...done.
Loaded symbols for /usr/local/libexec/apache/mod_expires.so
Reading symbols from /usr/local/libexec/apache/mod_headers.so...done.
Loaded symbols for 

Re: NDIS problems in 5.4-PREREALEASE

2005-03-17 Thread Linus Nordberg
Nicolás de Bari Embriz García Rojas [EMAIL PROTECTED] wrote
Wed, 16 Mar 2005 13:47:49 -0600:

|  Hi all, I was using  NDIS for a (ath0) wifi 3Com OfficeConnect
|  Wireless 108Mbps 11g XJACK PC Card under 5.3-stable I upgraded my src
|  and hove now 5.4-PRERELEASE but now the card is not working well, when
|  I ping to my gateway I get very high response times and I start to
|  loose conection. the card acts like if there where a very poor signal,
|  any idea of what could it be wrong?

I see similar behaviour using a D-Link AirPlus DWL-520+ PCI.  It broke
completely after the changes to dev/if_ndis and compat/ndis that was
done about two weeks ago.

The patches around the 7:th of March (dev/if_ndis/if_ndis.c:1.83,
compat/ndis/kern_ndis.c:1.70, compat/ndis/subr_ntoskrnl.c:1.57) made
it start limping a bit, seemingly retrieving packets (as far as I can
determine) but having trouble sending any larger packets.  Sorry for
being vague here, I haven't been able to track it down better than
that.

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


ULE scheduler freezes kernel

2005-03-17 Thread Rene Ladan
Hi,

I was trying the ULE scheduler again on my single i686 5.4PRE laptop,
but it causes the kernel to freeze after some time (=30 minutes): the
kernel does not even respond to opening/closing the lid when booting
verbose (normally it displays acpi_lid0: Lid {opened|closed}).
Having some disk activity (e.g. portupgrade) seems to catalyze this
behaviour.  Only a full power reset gets the laptop running again.  I do
not have this problem with the 4BSD scheduler.

Sources are from March 16, 23:10 UTC.

Full details are available using anonymous ftp at
ftp://82.168.140.74/pub/ {conf|log}

Regards,
Rene
-- 
It won't fit on the line.
-- me, 2001


pgp1e980OYJvb.pgp
Description: PGP signature


negative fsck reclaims

2005-03-17 Thread Rene Ladan
Hi,

could there be a signedness error in fsck or the file system code in
5.4PRE (March 15) ?  I got these interesting messages
(wrapped/shortened) in my /var/log/messages upon a fsck after an unclean
unmount:

Mar 15 17:45:57 kernel: Mounting root from ufs:/dev/ad0s1a
Mar 15 17:45:57 kernel: WARNING: / was not properly dismounted
Mar 15 17:45:57 kernel: WARNING: /tmp was not properly dismounted
Mar 15 17:45:57 kernel: WARNING: /usr was not properly dismounted
Mar 15 17:45:57 kernel: WARNING: /var was not properly dismounted
Mar 15 17:47:27 fsck: /dev/ad0s1e:
Reclaimed: 0 directories, 0 files, 1 fragments
Mar 15 17:47:27 fsck: /dev/ad0s1e:
115 files, 331 used, 126507 free (67 frags, 15805 blocks, 0.1% fragmentation)
Mar 15 17:56:58 fsck: /dev/ad0s1f:
INCORRECT BLOCK COUNT I=2967655 (6976 should be 6176) (CORRECTED)
Mar 15 17:56:58 fsck: /dev/ad0s1f:
Reclaimed: 0 directories, -14 files, -279 fragments
Mar 15 17:56:58 fsck: /dev/ad0s1f:
545357 files, 6998024 used, 10981025 free (48521 frags, 1366563 blocks, 0.3% 
fragmentation)
Mar 15 17:57:39 fsck: /dev/ad0s1d:
Reclaimed: -2 directories, -39 files, -314 fragments
Mar 15 17:57:39 fsck: /dev/ad0s1d:
6297 files, 166320 used, 340481 free (2105 frags, 42297 blocks, 0.4% 
fragmentation)

This negative numbers also sometimes show up at shutdown after clean unmount
of the file systems.

Regards,
Rene
-- 
It won't fit on the line.
-- me, 2001


pgpMIey0vbsUt.pgp
Description: PGP signature


Re: 5.3 Buildworld Problems on AMD

2005-03-17 Thread Tom
I have an update - 
I just tried to build from source from the CD and the FTP site, no dice...
I've tried cvsup'ing to 5.4-PRE and that doesn't build either.

Anyone? I didn't see anything in the archives, and some googling
doesn't show anything either.
Is 5.3-4 broken for AMD?
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: 5.3 Buildworld Problems on AMD

2005-03-17 Thread Brooks Davis
On Thu, Mar 17, 2005 at 02:05:23PM -0800, Tom wrote:
 I have an update - 
 I just tried to build from source from the CD and the FTP site, no dice...
 I've tried cvsup'ing to 5.4-PRE and that doesn't build either.
 
 Anyone? I didn't see anything in the archives, and some googling
 doesn't show anything either.
 
 Is 5.3-4 broken for AMD?

No.  It's possible you've hit a transient failure, but in general, it's
working fine for me.  What sort of errors are you getting?

-- Brooks

-- 
Any statement of the form X is the one, true Y is FALSE.
PGP fingerprint 655D 519C 26A7 82E7 2529  9BF0 5D8E 8BE9 F238 1AD4


pgphK8RcmExyd.pgp
Description: PGP signature


periodic scripts for checking gmirror status?

2005-03-17 Thread George Hartzell

I'd like to set up a periodic-style script to check the status of my
gmirror RAID.

Before I reinvent the wheel, anyone have one that they'd care t
share?

I'm running Stable, FreeBSD 5.3-STABLE #10: Sun Feb  6 17:25:02 PST 2005

Thanks,

g.

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


xffm - xfsamba4 broken in 5-stable?

2005-03-17 Thread Torfinn Ingolfsen
Hi,

Are there any known problems with xfsamba4 (part of xffm, which is part
of the xfce desktop) in FreeBSD 5-stable?

The problem is that I can start xffm (or xfsamba4) and try to access the
SMB Network. xffm says Lloading...,  the status window shows 
XFSAMBA nmblookup -M -- - and then nothing happens. If I run the
same nmblookup command from the same shell (and the same user) it
completes immediately.

It works on 4-stable, with xfce 4.0.6:
[EMAIL PROTECTED] uname -a
FreeBSD kg-htpc.kg4.no 4.9-STABLE FreeBSD 4.9-STABLE #4: Sat Apr  3
16:54:21 CEST 2004 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/HERMES 
i386

[EMAIL PROTECTED] pv | grep xfce4-fm
xfce4-fm-4.0.6_1=  up-to-date with port


I have tried this on two machines with 5-stable, one is from November
[EMAIL PROTECTED] uname -a
FreeBSD kg-work.kg4.no 5.3-STABLE FreeBSD 5.3-STABLE #1: Sun Nov 14
20:19:11 CET 2004 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/SS51G 
i386

and the other from February:
[EMAIL PROTECTED] uname -a
FreeBSD kg-jobbpc3.kg4.no 5.3-STABLE FreeBSD 5.3-STABLE #1: Sat Feb  5
20:36:25 CET 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/T41 
i386

xfce is version 4.2.0:
xfce4-fm-4.2.0  =  up-to-date with port
xfce4-fm-4.2.0_1=  up-to-date with port

I have read through /usr/ports/UPDATING but coldn't find any hints
there, I have searched Google, and I have checked xffm on Freshports.
Nowhere have I found a hint that will help me fix this.

Any hints appreciated.
-- 
Regards,
Torfinn Ingolfsen,
Norway

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


recent RELENG_5 error

2005-03-17 Thread Bashar
i've cvsup'ed a box today and while 'make buildworld' i got this error msg:
/usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/basic_string.tcc: 
In constructor `std::basic_string_CharT, _Traits, 
_Alloc::basic_string(const std::basic_string_CharT, _Traits, _Alloc, 
typename _Alloc::size_type, typename _Alloc::size_type) [with _CharT = 
wchar_t, _Traits = std::char_traitswchar_t, _Alloc = 
std::allocatorwchar_t]':
/usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/basic_string.tcc:200:   
instantiated from `std::basic_string_CharT, _Traits, 
_Alloc::basic_string(const std::basic_string_CharT, _Traits, _Alloc, 
typename _Alloc::size_type, typename _Alloc::size_type) [with _CharT = 
wchar_t, _Traits = std::char_traitswchar_t, _Alloc = 
std::allocatorwchar_t]'
/usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/src/string-inst.cc:49:   
instantiated from here
/usr/src/gnu/lib/libstdc++/../../../contrib/libstdc++/include/bits/basic_string.tcc:200: 
internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See URL:http://gcc.gnu.org/bugs.html for instructions.
*** Error code 1

Stop in /usr/src/gnu/lib/libstdc++.
*** Error code 1
is brand new box has 5.3-RELEASE installed:
FreeBSD ... 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Fri Nov  5 
04:19:18 UTC 2004 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: recent RELENG_5 error

2005-03-17 Thread Bjrn Knig
Tell the kind of your machine and the content of your make.conf, i.e. 
CFLAGS if there are any and so on.

Regards Björn
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: recent RELENG_5 error

2005-03-17 Thread Bashar
Bjrn Knig wrote:
Tell the kind of your machine and the content of your make.conf, i.e. 
CFLAGS if there are any and so on.

Regards Bjrn
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]

FreeBSD 5.3-RELEASE #0: Fri Nov  5 04:19:18 UTC 2004
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: Intel(R) Celeron(TM) CPU1300MHz (1302.96-MHz 
686-class CPU)
 Origin = GenuineIntel  Id = 0x6b1  Stepping = 1
 
Features=0x383fbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE
real memory  = 1071579136 (1021 MB)
avail memory = 1039069184 (990 MB)

cat /etc/make.conf
# -- use.perl generated deltas -- #
# Created: Wed Feb 16 02:54:09 2005
# Setting to use base perl from ports:
PERL_VER=5.8.5
PERL_VERSION=5.8.5
PERL_ARCH=mach
NOPERL=yo
NO_PERL=yo
NO_PERL_WRAPPER=yo
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


need ISO-image for a new machine install

2005-03-17 Thread Mikhail Teterin
Hello!

Is there a place, from where I can download a reasonably fresh 5.4-PRERELEASE 
install (or mini-install) .iso image for amd64?

Thanks!

-mi
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


PPP routing failure

2005-03-17 Thread Peter C. Lai
Hi everyone -
I'm experiencing some funky routing failures when I dialup netscape internet
via user-level PPP:
I can negotiate IPCP fine; get a point-to-point link via tun0:
myaddr: 172.143.224.146; hisaddr: 63.152.0.70
When the default route is setup to 63.152.0.70, all of my packets are
blackholed after the first router hop. I am not using NAT.
The PPP link works perfectly fine in windows dialup networking. So I dunno 
what is wrong. When I look at the routing table in windows, it seems backwards:

DESTNM  GW  IF
default 0   myaddr  ppp
hisaddr 0x  myaddr  ppp
localhost   0xff00  localhost   localhost
myaddr  0x  localhost   localhost
myaddr.255.255* 0x  myaddr  ppp
multicast   multicast   myaddr  ppp

*this is the first 2 dotted quads of myaddr appended with 255.255

If I try to manually set these routes in 5.3-R, I still can't get out :(
Setting ADD DEFAULT MYADDR doesn't work, because ppp will still think MYADDR
is 0.0.0.0. Either I need sleep or something is funky here...

-- 
Peter C. Lai
University of Connecticut
Dept. of Molecular and Cell Biology
Yale University School of Medicine
SenseLab | Research Assistant
http://cowbert.2y.net/

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: need ISO-image for a new machine install

2005-03-17 Thread Scott Long
Mikhail Teterin wrote:
Hello!
Is there a place, from where I can download a reasonably fresh 5.4-PRERELEASE 
install (or mini-install) .iso image for amd64?

Thanks!
	-mi
The 5.4-PRE/BETA snapshots aren't ready yet, but I just released a
6-CURRENT snapshot this morning.  See my email on [EMAIL PROTECTED]
Scott
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: need ISO-image for a new machine install

2005-03-17 Thread Mikhail Teterin
 Mikhail Teterin wrote:
  Hello!
 
  Is there a place, from where I can download a reasonably fresh
  5.4-PRERELEASE install (or mini-install) .iso image for amd64?
 
  Thanks!

 The 5.4-PRE/BETA snapshots aren't ready yet, but I just released a
 6-CURRENT snapshot this morning.  See my email on [EMAIL PROTECTED]

Nyah, thanks. I intend to stick to 5.x for the time being :-) It is going to 
be my main system and I thought, I'll test the install procedure.

-mi
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: need ISO-image for a new machine install

2005-03-17 Thread Emanuel Strobl
Am Freitag, 18. März 2005 02:13 schrieb Mikhail Teterin:
 Hello!

 Is there a place, from where I can download a reasonably fresh
 5.4-PRERELEASE install (or mini-install) .iso image for amd64?

 Thanks!

Unfortunately I can't offer you a special one (usually I have several arch 
optimized -STABLE isos but since it's release time I skiped them) but this 
should be fine: 
http://snapshots.se.freebsd.org/i386/ISO-IMAGES/5.4-PRERELEASE-20050317-SESNAP.iso

Unfortunately there is no mini-inst anymore since install and fixit CD is 
combined now. You have to download the whole 780MB.

-Harry


   -mi
 ___
 freebsd-stable@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-stable
 To unsubscribe, send any mail to [EMAIL PROTECTED]


pgp9sBlHfhGB8.pgp
Description: PGP signature


Re: need ISO-image for a new machine install

2005-03-17 Thread Emanuel Strobl
Am Freitag, 18. März 2005 04:18 schrieb Emanuel Strobl:
 Am Freitag, 18. März 2005 02:13 schrieb Mikhail Teterin:
  Hello!
 
  Is there a place, from where I can download a reasonably fresh
  5.4-PRERELEASE install (or mini-install) .iso image for amd64?
 
  Thanks!

 Unfortunately I can't offer you a special one (usually I have several arch
 optimized -STABLE isos but since it's release time I skiped them) but this
 should be fine:
 http://snapshots.se.freebsd.org/i386/ISO-IMAGES/5.4-PRERELEASE-20050317-SES
NAP.iso

Sorry for the noise, haven't noticed the amd64 :(

-Harry


 Unfortunately there is no mini-inst anymore since install and fixit CD is
 combined now. You have to download the whole 780MB.

 -Harry

  -mi
  ___
  freebsd-stable@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-stable
  To unsubscribe, send any mail to [EMAIL PROTECTED]


pgpHqUFAVpwde.pgp
Description: PGP signature


Re: need ISO-image for a new machine install

2005-03-17 Thread Sven Willenberger


On Thu, 2005-03-17 at 20:13 -0500, Mikhail Teterin wrote:
 Hello!
 
 Is there a place, from where I can download a reasonably fresh 5.4-PRERELEASE 
 install (or mini-install) .iso image for amd64?
 
 Thanks!
 
   -mi
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-amd64
 To unsubscribe, send any mail to [EMAIL PROTECTED]

I saw a post here a little while ago that pointed to :
ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/Feb_2005/5.3-STABLE-SNAP001-amd64-miniinst.iso
 
I used this on a dual opteron system with 8GB of RAM with no problem
(i.e. the 4G RAM issue was resolved on this snapshot). Upgrading to 5.4
PRE is straightforward from there.

Sven


___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: 5.3 Buildworld Problems on AMD

2005-03-17 Thread Ade Lovett
Tom wrote:
 I have an update - I just tried to build from source from the CD and the
 FTP site, no dice...
 I've tried cvsup'ing to 5.4-PRE and that doesn't build either.
 
 Anyone? I didn't see anything in the archives, and some googling
 doesn't show anything either.
 
 Is 5.3-4 broken for AMD?

Nope.  RELENG_5 from around 1800 PST today (3/17) built just fine, and
is currently being hammered pretty hard doing some tinderbox builds of
GNOME 2.10 against the newly imported XOrg 6.8.2 on a couple of boxes here.

What specific errors are you seeing?  Without those, along with the
contents of /etc/make.conf, it's going to be essentially impossible for
anyone to give any further suggestions.

-aDe

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]