binary update problem with portupgrade

2005-03-15 Thread Matej Ornest
Hi, I'm trying to upgrade my FreeBSD-5.3-Release installation to the latest version with portupgrade, but I don't want to compile all those megamonsters like KDE, so I'd like to use packages for upgrade. But portupgrade cannot find appropriate packages for upgrade. It looks for them on

Re: binary update problem with portupgrade

2005-03-15 Thread Michael Nottebrock
On Monday, 14. March 2005 11:27, Matej Ornest wrote: Hi, I'm trying to upgrade my FreeBSD-5.3-Release installation to the latest version with portupgrade, but I don't want to compile all those megamonsters like KDE, so I'd like to use packages for upgrade. But portupgrade cannot find

Re: binary update problem with portupgrade

2005-03-15 Thread Michael Nottebrock
On Tuesday, 15. March 2005 10:28, Michael Nottebrock wrote: Run portupgrade like this: env PACKAGESITE=ftp://ftp.mirror.freebsd.org/pub/FreeBSD/ports/i386/packages- 5-stable/Latest portupgrade -Pa ^ / - don't forget the trailing slash like I did And replace

RE: Panic with amr and 5.4-PRERELEASE

2005-03-15 Thread Constant, Benjamin
Fyi, The tool is working fine but doesn't show up rebuild state (just removed a drive and card bios is showing up rebuild on hotspare). I think it's coming from the driver as it doesn't say that logical device is in rebuild state. [EMAIL PROTECTED]:~: dmesg | grep amrd0 amrd0: LSILogic MegaRAID

FreeBSD 5.3 STABLE + PHP5-ext (Apache2 not listening)

2005-03-15 Thread STAMPA 2
Hi. After done all process of cvsup stable-supfile (adding ports-all tag=.) my next step was install PHP5+APACHE2+UnixODBC(MySQL support). in this ocasion i used ../php5-extension then... [X] APACHE2 - use apache2 insted of 1.3 ... and the configurations after all was: I add to rc.conf:

Re: FreeBSD 5.3 STABLE + PHP5-ext (Apache2 not listening)

2005-03-15 Thread Martin Chikilian
Hi. First of all, you should check proper php/apache manuals and installation instructions. Next, check apache's error logs. They will tell you what's wrong at apache startup. I hope this serves to you. When you finish doing these stuff, post the error to the list so we can help you. Regards,

Abort Trap for cron-jobs in 5.3

2005-03-15 Thread Niklas Saers
Hi all, I've got four servers that all have the same problem: when jobs get started from Cron, they die after some time with an Abort trap. Jobs that are dying are: /usr/libexec/atrun /var/log/cron 21 /usr/bin/nice -10 /usr/local/bin/zsh /root/bin/sendBarkMail.sh /dev/null 21 I also get this

Re: Gmake won't make without itself

2005-03-15 Thread Scot Hetzel
On Mon, 14 Mar 2005 07:04:55 -0500, Doug Lee [EMAIL PROTECTED] wrote: Not sure this is the best place for this, but I think it's the best among the lists I'm on... The best place would have been on the freebsd-ports mailing list. I just tried, with a fresh ports tree, to build gmake after

Re: Flash player sound solution

2005-03-15 Thread Andre Albsmeier
On Sun, 13-Mar-2005 at 17:12:43 -0500, Scott Robbins wrote: On Sun, Mar 13, 2005 at 06:50:01PM +, Chris Hodgins wrote: Scott Robbins wrote: There are a few pages out there that will crash FreeBSD native firefox with linuxpluginwrapper, at least. The problem doesn't occur in

Re: Flash player sound solution

2005-03-15 Thread Scott Robbins
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, Mar 15, 2005 at 03:15:15PM +0100, Andre Albsmeier wrote: On Sun, 13-Mar-2005 at 17:12:43 -0500, Scott Robbins wrote: On Sun, Mar 13, 2005 at 06:50:01PM +, Chris Hodgins wrote: Scott Robbins wrote: There are a few pages out

Slow Tomcat startup...

2005-03-15 Thread Jiri Novak
Hello list... I'm having troubles with FreeBSD 5.3-RELEASE-p5 on amd64, with Apache2 and Tomcat 5.0.30 (jdk1.5.0) installed. The problem I'm experiencing is very strange - Tomcat startup times are very very long, about 3-4 minutes, with three virtual hosts. Each virtual host does stall on

Re: Abort Trap for cron-jobs in 5.3

2005-03-15 Thread Niklas Saers
Note to self: ask the question. ;-) What I'm wondering about is: what could be causing the Abort Trap's? World and kernel are a recent RELENG_5_3 compiled like described in src/UPDATING. Cheers Nik On Tue, 15 Mar 2005, Niklas Saers wrote: Hi all, I've got four servers that all have

Re: Abort Trap for cron-jobs in 5.3

2005-03-15 Thread Dan Nelson
In the last episode (Mar 15), Niklas Saers said: On Tue, 15 Mar 2005, Niklas Saers wrote: I've got four servers that all have the same problem: when jobs get started from Cron, they die after some time with an Abort trap. Jobs that are dying are: /usr/libexec/atrun /var/log/cron 21

Re: CPUTYPE=pentium-m

2005-03-15 Thread Bartosz Fabianowski
Can you try with just -mno-sse2? I'd like to litter the compile command line as little as possible. I just tried. -mno-sse2 indeed is all that's required to make the kernel work. The same flag also makes the loader run again: --- /usr/src/sys/boot/i386/loader/Makefile.old Tue Mar 15 18:03:13

RELENG_5 and FAST_IPSEC limits

2005-03-15 Thread Mike Tancsa
Hi, We are running into a case where there are too many SAs, and doing a setkey -D would fail with a recv: Resource temporarily unavailable after displaying most of the associations. Is there a way to get around this, or is there a hard limit ? # setkey -D | grep ^172 | wc 186 372

Panic on shutdown in kern/turnstile.c:243 - propagate_priority

2005-03-15 Thread Lolownia
A Panic happend to me on shutdown. It seem's to be a `this shouldn't happen' scenario in subr_turnstile.c:propagate_priority(...) : /* * If we aren't blocked on a lock, we should be. */ KASSERT(TD_ON_LOCK(td), ( /*We weren't ;(*/ process

Re: CPUTYPE=pentium-m

2005-03-15 Thread Bartosz Fabianowski
That last patch was reversed. Sorry: --- /usr/src/sys/boot/i386/loader/Makefile.old Tue Mar 15 18:03:13 2005 +++ /usr/src/sys/boot/i386/loader/Makefile Fri Feb 27 15:10:09 2004 @@ -40,7 +40,7 @@ CLEANFILES=vers.c loader loader.bin loader.help -CFLAGS+= -Wall +CFLAGS+= -Wall

Re: Panic on shutdown in kern/turnstile.c:243 - propagate_priority

2005-03-15 Thread Kris Kennaway
On Tue, Mar 15, 2005 at 06:00:47PM +0100, Lolownia wrote: A Panic happend to me on shutdown. It seem's to be a `this shouldn't happen' scenario in subr_turnstile.c:propagate_priority(...) : AFAIK, this is usually a secondary panic and the real panic occurred in some other thread. If you

Re: Slow Tomcat startup...

2005-03-15 Thread Anthony Ginepro
Le Mardi 15 mars 2005 15:35 +0100, Jiri Novak a crit : Hello list... I'm having troubles with FreeBSD 5.3-RELEASE-p5 on amd64, with Apache2 and Tomcat 5.0.30 (jdk1.5.0) installed. The problem I'm experiencing is very strange - Tomcat startup times are very very long, about 3-4 minutes,

Re: Slow Tomcat startup...

2005-03-15 Thread Peter Jeremy
On Tue, 2005-Mar-15 15:35:03 +0100, Jiri Novak wrote: I'm having troubles with FreeBSD 5.3-RELEASE-p5 on amd64, with Apache2 and Tomcat 5.0.30 (jdk1.5.0) installed. The problem I'm experiencing is very strange - Tomcat startup times are very very long, about 3-4 minutes, with three virtual

Re: CPUTYPE=pentium-m

2005-03-15 Thread Jon Noack
David O'Brien wrote: On Sat, Mar 12, 2005 at 10:48:52PM +0100, Bartosz Fabianowski wrote: Are you saying, all we need to do is commit this diff to make everyone's environment happy? Obviously, I can't speak for everyone. For me, your patch fixes the kernel. Can you try with just -mno-sse2? I'd

Re: CPUTYPE=pentium-m

2005-03-15 Thread Jon Noack
David O'Brien wrote: On Sat, Mar 12, 2005 at 10:48:52PM +0100, Bartosz Fabianowski wrote: Are you saying, all we need to do is commit this diff to make everyone's environment happy? Obviously, I can't speak for everyone. For me, your patch fixes the kernel. Can you try with just -mno-sse2? I'd

Re: Can't kldload pf

2005-03-15 Thread Andy Firman
On Tue, Mar 15, 2005 at 10:54:44AM +1030, Daniel O'Connor wrote: On Tue, 15 Mar 2005 07:46, Andy Firman wrote: H...interesting!!Would this for for /usr/src/sys/modules/ipfilter ? I am having this problem: http://www.freebsd.org/cgi/query-pr.cgi?pr=70401 Yes, that module

Re: CPUTYPE=pentium-m

2005-03-15 Thread David O'Brien
On Tue, Mar 15, 2005 at 01:12:57PM -0600, Jon Noack wrote: David O'Brien wrote: On Sat, Mar 12, 2005 at 10:48:52PM +0100, Bartosz Fabianowski wrote: Are you saying, all we need to do is commit this diff to make everyone's environment happy? Obviously, I can't speak for everyone. For me,

Re: CPUTYPE=pentium-m

2005-03-15 Thread David O'Brien
On Tue, Mar 15, 2005 at 01:41:55PM -0600, Jon Noack wrote: David O'Brien wrote: On Sat, Mar 12, 2005 at 10:48:52PM +0100, Bartosz Fabianowski wrote: Are you saying, all we need to do is commit this diff to make everyone's environment happy? Can you try with just -mno-sse2? I'd like to

Re: ACPI errors on boot

2005-03-15 Thread Dan Ponte
On Mon, Mar 14, 2005 at 10:00:49PM -0800, Doug White [EMAIL PROTECTED] was witnessed plotting the following conspiracy: On Sat, 12 Mar 2005, Dan Ponte wrote: I've been seeing lots of ACPI errors in my dmesg lately. They haven't really affected functionality (yet!), but I'd like to see them

Re: RELENG_5 and FAST_IPSEC limits

2005-03-15 Thread Sam Leffler
Mike Tancsa wrote: Hi, We are running into a case where there are too many SAs, and doing a setkey -D would fail with a recv: Resource temporarily unavailable after displaying most of the associations. Is there a way to get around this, or is there a hard limit ? # setkey -D | grep ^172 | wc

Re: CPUTYPE=pentium-m

2005-03-15 Thread Jon Noack
David O'Brien wrote: On Tue, Mar 15, 2005 at 01:41:55PM -0600, Jon Noack wrote: David O'Brien wrote: On Sat, Mar 12, 2005 at 10:48:52PM +0100, Bartosz Fabianowski wrote: Are you saying, all we need to do is commit this diff to make everyone's environment happy? Can you try with just -mno-sse2?

Re: RELENG_5 and FAST_IPSEC limits

2005-03-15 Thread Mike Tancsa
At 04:23 PM 15/03/2005, Sam Leffler wrote: Mike Tancsa wrote: Hi, We are running into a case where there are too many SAs, and doing a setkey -D would fail with a recv: Resource temporarily unavailable after displaying most of the associations. Is there a way to get around this, or is there a

Re: Diagnostic tools for external hard drives?

2005-03-15 Thread Torfinn Ingolfsen
On Mon, 14 Mar 2005 13:28:43 +1030 Daniel O'Connor [EMAIL PROTECTED] wrote: Have you tried smartmontools? No, good idea. I should have thought of that... It probably won't work (most enclosures don't appear to implement the necessary brains to translate the SMART commands) but you could be

Re: Diagnostic tools for external hard drives?

2005-03-15 Thread Torfinn Ingolfsen
On Mon, 14 Mar 2005 22:03:37 -0800 (PST) Doug White [EMAIL PROTECTED] wrote: Firewire enclosures typically just have an ATA-FW bridge, so you may get better diagnostics and accessibility if you take the disk out of the FW box and plug it into an ATA channel. I know, but Maxtor support have

Re: ACPI errors on boot

2005-03-15 Thread Michael L. Squires
On Sat, 12 Mar 2005, Dan Ponte wrote: Hi all. I've been seeing lots of ACPI errors in my dmesg lately. They haven't FreeBSD 5.3-STABLE #3: Wed Jan 12 16:34:03 EST 2005 There were some changes to ACPI at about that time which caused motherboards with buggy BIOSes to have problems. These were

Re: CPUTYPE=pentium-m

2005-03-15 Thread Jon Noack
Jon Noack wrote: David O'Brien wrote: On Tue, Mar 15, 2005 at 01:41:55PM -0600, Jon Noack wrote: David O'Brien wrote: On Sat, Mar 12, 2005 at 10:48:52PM +0100, Bartosz Fabianowski wrote: Are you saying, all we need to do is commit this diff to make everyone's environment happy? Can you try with

Re: Diagnostic tools for external hard drives?

2005-03-15 Thread Daniel O'Connor
On Wed, 16 Mar 2005 09:14, Torfinn Ingolfsen wrote: It probably won't work (most enclosures don't appear to implement the necessary brains to translate the SMART commands) but you could be lucky :) No, it didn't work. Here is some output, the drive is connected via firewire: Yeah I get

Re: Panic with amr and 5.4-PRERELEASE

2005-03-15 Thread Pierre DAVID
On Tue, Mar 15, 2005 at 11:12:49AM +0100, Constant, Benjamin wrote: Fyi, The tool is working fine but doesn't show up rebuild state (just removed a drive and card bios is showing up rebuild on hotspare). I think it's coming from the driver as it doesn't say that logical device is in

3Com OfficeConnect Wireless 108Mbps 11g XJACK PC Card

2005-03-15 Thread Nicolás de Bari Embriz García Rojas
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