Re: Changes in Jails from FreeBSD 6 to FreeBSD 9 -- particularly, networking and routing

2012-04-15 Thread Chad Leigh Shire.Net LLC

On Apr 13, 2012, at 4:58 PM, Mark Felder wrote:

 On Fri, 13 Apr 2012 15:53:49 -0500, Chad Leigh Shire.Net LLC c...@shire.net 
 wrote:
 
 No NAT needed since they share the network stack under Jails v1 they share 
 the routing tables.  It works.  Try it.
 
 You're clearly exploiting a bug in FreeBSD 6's jails.

It was a documented behavior when I first started using jails ca. 2004 in 
FreeBSD 5.  Which is why I did it that way.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Changes in Jails from FreeBSD 6 to FreeBSD 9 -- particularly, networking and routing

2012-04-13 Thread Chad Leigh Shire.Net LLC
Hi All

OK, so I have a server that has been running FreeBSD 6.1 and a bunch of jails, 
providing a few limited services.  I am migrating these from real hardware and 
FreeBSD 6.1 with jail running, to a Xen based VPS running FreeBSD 9.0-R with a 
kernel rebuild from a GENERIC kernel to GENERIC plus the Xen pci device.  There 
is one network device on the new server and it shares all addresses and the 
default route goes out it.

Because jails in FBSD 6 shared a network stack, I could have a public network 
x.x.x.0/24 and public address on the host machine, and a default route in that 
network as well, and use a 192.168.1.0/24 address aliased on the same network 
interface as the IP for my jail.  When doing that, from inside the jail, I 
could still reach the internet since it shared the route with the underlying  
machine.


That seems to have changed on FBSD 9.  Now, if I add in the 192.168.1.0/24 
address and run a jail on it, with the host machine in a public 
network/address/route as described above, from inside the jail I CANNOT reach 
the internet (it is not a resolver issue as services going to numeric addresses 
also fail).   However, the jail with the private 192.168.1.0/24 address CAN 
reach the host machines services even if it cannot get out onto the internet.  
And the HOST machine can access services on the jail running on the private IP 
address.

(The purpose of the jail is to provide services to other jails and hosts on the 
same public network [all VPS on the same public vlan] and NOT to provide 
services to the internet.  Things like local ldap or a local dns etc.  But the 
private jail still needs to reach the internet for things like name servers it 
needs to access that are outside of the public network the host lives in.  So I 
don't care if the internet itself can reach the private jail, just the local 
jails and hosts it co-exists with.   The answer shouldn't be natd etc (was not 
needed in 6.0 and I am not sharing one public address with a range of private 
jails behind it).



If I launch the jail with an address from the same public range as the host, it 
works fine.  The jail can access the internet fine and vice versa.  The host 
can access the jail services as well.

If I launch the jail with a private address, the jail cannot reach the 
internet.  It can reach the host in the public network, but not other machines 
in the same public network (ie, the other VPS I have running which are all in 
the same public network).

If I launch the jail with both a private address and a public address, it can 
reach the internet and other VPS on the same public network.  I may have to end 
up doing that and just not having any services run on the public IP but I'd 
rather avoid using up an address like that.

What changes happened in the jails between FBSD 6 and FBSD 9 that would give 
the symptoms I have been experiencing?

Thanks
Chad

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Changes in Jails from FreeBSD 6 to FreeBSD 9 -- particularly, networking and routing

2012-04-13 Thread Mark Felder

Do I understand this right?


Working in FreeBSD 6.x:

interface em0: 1.2.3.4/24  -- public IP, host only
   192.168.1.1/24  -- private IP, host only
   192.168.1.2/24  -- Jail #1
   192.168.1.3/24  -- Jail #2


With this configuration you had no problems accessing the internet from  
the jails.


Is this correct? This seems bizarre; this should only be possible if  
you're doing NAT somewhere in there and that is not possible with Jails v1  
(which share a network stack) and is only possible in Jails v2 (vnet).

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Changes in Jails from FreeBSD 6 to FreeBSD 9 -- particularly, networking and routing

2012-04-13 Thread Chad Leigh Shire.Net LLC

On Apr 13, 2012, at 1:50 PM, Mark Felder wrote:

 Do I understand this right?
 
 
 Working in FreeBSD 6.x:
 
 interface em0: 1.2.3.4/24  -- public IP, host only
   192.168.1.1/24  -- private IP, host only
   192.168.1.2/24  -- Jail #1
   192.168.1.3/24  -- Jail #2
 
 
 With this configuration you had no problems accessing the internet from the 
 jails.

correct.

(not that it did not matter I don't think is the private IP, host only exists 
and ALL IP exist on the host in addition to whatever Jail they are assigned to)

 
 Is this correct? This seems bizarre; this should only be possible if you're 
 doing NAT somewhere in there and that is not possible with Jails v1 (which 
 share a network stack) and is only possible in Jails v2 (vnet).


No NAT needed since they share the network stack under Jails v1 they share the 
routing tables.  It works.  Try it.

The question is, is it possible to do something similar with FreeBSD 9 jails 
(v2 I guess) without the overhead of running NAT?   The jail with the private 
IP *can* access the HOST's public services but not anyone else's

Chad

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Changes in Jails from FreeBSD 6 to FreeBSD 9 -- particularly, networking and routing

2012-04-13 Thread Mark Felder
On Fri, 13 Apr 2012 15:53:49 -0500, Chad Leigh Shire.Net LLC  
c...@shire.net wrote:


No NAT needed since they share the network stack under Jails v1 they  
share the routing tables.  It works.  Try it.


You're clearly exploiting a bug in FreeBSD 6's jails. It must get confused  
and send your public IP on those packets. I have no idea how it processes  
the return traffic successfully, but that's a neat trick!. There is no  
possible way for this to work without NAT or whatever bug this is. If a  
Jail has a 192.168 IP all packets would leave with a source of 192.168.  
When Google or whoever on the internet gets your packets it would see  
192.168 and probably drop it because that's not a publicly routable  
network.


Without NAT it's impossible for any device anywhere on the planet to  
access the internet with an RFC 1918 IP address.


I urge you to share your experience on the freebsd-jail@ mailing list.  
Those guys might be able to lend some further insight. I bet the change  
came with the update to jails that allows multiple IPs.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Freebsd 6 and nfsstats counters

2011-11-10 Thread krad
Hi,

I have a bunch of old freebsd servers I want to collect nfs stats from. The
problem is a lots of the counters have wrapped around. On other Freebsd 7+
machines I take care of this be a weekly cron of  nfsstat -c -z. The z
option isnt available in freebsd 6, and I cant see a direct sysctl OID i
can reset. Has anyone encountered this issue in the past and found a fix.
I'd rather avoid having to alter the scripts to cater for negative numbers.

k
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: freebsd-update on FreeBSD 6.x

2009-04-23 Thread Andy Smith

Quoting Manolis Kiagias son...@otenet.gr:



A quick visit to http://update.freebsd.org does not show this directory
- although this maybe intentional. I suggest you try the server change
and if you connect but still fail to get the key, then go on and hack
the script. I don't have a 6.1 machine around, but freebsd-update is
just a sh script and you should be able to find what's going on.  There
is nothing hardcoded in it, at least in the version distributed with
7.x. In fact I would try running the 7.x version on this system.



Hi Manolis,

  thanks for the reply! I have simply copied over the freebsd-update  
script from a 7.0 machine and it seems to work fine just as on the 7.0  
machine. I have run a fetch without making any changes to the conf  
file, I haven't applied the updates as yet as its a production server  
and I'll need to schedule down time and work out a fall back plan if  
anything goes bad when doing an install.

Thanks again!

Andy.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


freebsd-update on FreeBSD 6.x

2009-04-22 Thread Andy Smith

Hi,

  when running freebsd-update fetch on FreeBSD 6.x I get the error:

Fetching public key...
fetch: http://update.freebsd.org/i386/6.1/pub.key: No address record
Error fetching updates


I've previously had a search around and compared the config file with  
that present by default on FreeBSD 7.x (which works without any  
hacking etc) but I never did work out what is wrong or what should be  
in a good config file. For one thing the directory its looking in for  
the pub.key seems to be hardcoded as /i386/6.1/ or at least that  
path is not present in my conf file, perhaps its possible to add an  
additional line to the conf file to modify this... Can anyone point me  
in the right direction?


thanks in advance, Andy.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: freebsd-update on FreeBSD 6.x

2009-04-22 Thread Manolis Kiagias
Andy Smith wrote:
 Hi,

   when running freebsd-update fetch on FreeBSD 6.x I get the error:

 Fetching public key...
 fetch: http://update.freebsd.org/i386/6.1/pub.key: No address record
 Error fetching updates


I've seen the No address record in the past in few of my machines. 
The update.freebsd.org address is a pool of addresses actually and AFAIR
there were some problems with  DNS for some people.  I don't recall the
exact cause, but you will get over it by specifying a specific server in
freebsd-update.conf, like update1.freebsd.org

This may not be your only problem though.

 I've previously had a search around and compared the config file with
 that present by default on FreeBSD 7.x (which works without any
 hacking etc) but I never did work out what is wrong or what should be
 in a good config file. For one thing the directory its looking in for
 the pub.key seems to be hardcoded as /i386/6.1/ or at least that
 path is not present in my conf file, perhaps its possible to add an
 additional line to the conf file to modify this... Can anyone point me
 in the right direction?

A quick visit to http://update.freebsd.org does not show this directory
- although this maybe intentional. I suggest you try the server change
and if you connect but still fail to get the key, then go on and hack
the script. I don't have a 6.1 machine around, but freebsd-update is
just a sh script and you should be able to find what's going on.  There
is nothing hardcoded in it, at least in the version distributed with
7.x. In fact I would try running the 7.x version on this system.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: freebsd-update on FreeBSD 6.x

2009-04-22 Thread Herbert J. Skuhra
On Wed, Apr 22, 2009 at 10:55:55AM +0100, Andy Smith wrote:
 Hi,
 
when running freebsd-update fetch on FreeBSD 6.x I get the error:
 
 Fetching public key...
 fetch: http://update.freebsd.org/i386/6.1/pub.key: No address record
 Error fetching updates

So, you are running FreeBSD 6.1.

 I've previously had a search around and compared the config file with  
 that present by default on FreeBSD 7.x (which works without any  
 hacking etc) but I never did work out what is wrong or what should be  
 in a good config file. For one thing the directory its looking in for  
 the pub.key seems to be hardcoded as /i386/6.1/ or at least that  
 path is not present in my conf file, perhaps its possible to add an  
 additional line to the conf file to modify this... Can anyone point me  
 in the right direction?

http://lists.freebsd.org/pipermail/freebsd-security/2008-April/004699.html

RELENG_6_1/RELENG_6_2 is EOL since May 31, 2008 (announced in May 2006!). 
You should have upgraded your system (to RELENG_6_3) before this date!

- Herbert

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


RE: freebsd-update on FreeBSD 6.x

2009-04-22 Thread Marc Coyles
 I don't have a 6.1 machine around, but freebsd-update
 is just a sh script and you should be able to find what's going on.
 There is nothing hardcoded in it, at least in the version distributed
 with 7.x. In fact I would try running the 7.x version on this system.

I'd definitely be inclined to ensure you're using the more uptodate
Version of freebsd-update...

As I write this, 'upgrade' support does not yet exist in the version
of FreeBSD Update in the FreeBSD base system, so the next step is to
download the script. If you are running FreeBSD 7.0-RC1 or 
FreeBSD 6.3-RC1 or later, you should already have this new 
version of FreeBSD Update installed, so you can skip this step.

http://www.daemonology.net/blog/2007-11-11-freebsd-major-version-upgrade
.html

Added note: Instructions at above URL worked perfectly for 6.2  7.0,
and
Instructions at URL below worked perfectly for 7.0  7.1

http://www.daemonology.net/blog/2007-11-10-freebsd-minor-version-upgrade
.html

L8rs!
Marci



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


tar fails on FreeBSD 7 and passes on FreeBSD 6 for the same input

2009-01-20 Thread chandra reddy
Hi,

I am getting the following error when i run tar on a directory.

[chan...@home]$ tar  zcf config-xsl.tar  config-xsl/9.6

tar: Cannot open directory
config-xsl/9.6/configuration/protocols/mpls/label-switched-path/oam/bfd-liveness-detection/detection-time:
No such file or directory
tar: Cannot open directory
config-xsl/9.6/configuration/protocols/mpls/label-switched-path/oam/bfd-liveness-detection/failure-action:
No such file or directory
[chan...@home]$ ldd  tar
tar:
libc.so.6 = /usr/local/lib/compat/libc.so.6 (0x28097000)
chan...@home]$ uname -a
FreeBSD chandra 7.1-RC1 FreeBSD 7.1-RC1 #0: Sun Dec  7 05:57:33 UTC 2008
r...@logan.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  i386
I have debugged libc and found that  system call fstafs is failing and
returning -1.

Can any one help me what is the real problem here and how to fix it?



Thanks
Chandra_

-- 
debugging a buggy debugger with a cross buggy debugger leads to a  buggy
life 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: tar fails on FreeBSD 7 and passes on FreeBSD 6 for the same input

2009-01-20 Thread chandra reddy
 Hi Doug,

I have checked the files permission. It is fine. It passes on FreeBSD6 but
fails on FreeBSD 7. It passes on a local file system but fails on NFS file
system.

Thanks
-Chandra



On Tue, Jan 20, 2009 at 2:02 PM, Doug Hardie bc...@lafn.org wrote:


 On Jan 19, 2009, at 23:54, chandra reddy wrote:

 Hi,

 I am getting the following error when i run tar on a directory.

 [chan...@home]$ tar  zcf config-xsl.tar  config-xsl/9.6

 tar: Cannot open directory

 config-xsl/9.6/configuration/protocols/mpls/label-switched-path/oam/bfd-liveness-detection/detection-time:
 No such file or directory
 tar: Cannot open directory

 config-xsl/9.6/configuration/protocols/mpls/label-switched-path/oam/bfd-liveness-detection/failure-action:
 No such file or directory
 [chan...@home]$ ldd  tar
 tar:
   libc.so.6 = /usr/local/lib/compat/libc.so.6 (0x28097000)
 chan...@home]$ uname -a
 FreeBSD chandra 7.1-RC1 FreeBSD 7.1-RC1 #0: Sun Dec  7 05:57:33 UTC 2008
 r...@logan.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  i386
 I have debugged libc and found that  system call fstafs is failing and
 returning -1.

 Can any one help me what is the real problem here and how to fix it?


 Check and be sure that those directories have r and x for the user running
 tar.  It looks like a permission problem.




-- 
debugging a buggy debugger with a cross buggy debugger leads to a  buggy
life 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: tar fails on FreeBSD 7 and passes on FreeBSD 6 for the same input

2009-01-20 Thread David Wolfskill
On Tue, Jan 20, 2009 at 01:24:41PM +0530, chandra reddy wrote:
 Hi,
 
 I am getting the following error when i run tar on a directory.
 
 [chan...@home]$ tar  zcf config-xsl.tar  config-xsl/9.6
 
 tar: Cannot open directory
 config-xsl/9.6/configuration/protocols/mpls/label-switched-path/oam/bfd-liveness-detection/detection-time:
 No such file or directory
 tar: Cannot open directory
 ...
 FreeBSD chandra 7.1-RC1 FreeBSD 7.1-RC1 #0: Sun Dec  7 05:57:33 UTC 2008
 r...@logan.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  i386
 I have debugged libc and found that  system call fstafs is failing and
 returning -1.

I believe you will find that the system call is fstatfs.
 
 Can any one help me what is the real problem here and how to fix it?

A subsequent message of your verified that the hierarchy being read was
on an NFS-mounted file system.  Perchance, was that NFS mount managwed
by amd(8)?

If so, while I do not have a fix for you, I am relieved to see someone
else finally report these symptoms.  Please see
http://docs.FreeBSD.org/cgi/mid.cgi?20081203001538.GC96383 for an
archived copy of my initial message in a thread reporting this.

There is additional detail (including kernel trace information 
how-to-repeat instructions) in subsequent messages in the thread.  Also
mentioned is a circumvention -- basically, crippling amd(8) so it no
longer attempts to unmount() a file system.

However, I was unable to re-create the symptoms at home -- only at work.
A colleague at work was able to re-create the symptoms, and was
intending to experiment a bit more, but he's been busy with other things
recently.

Please contact me (off-list, if you prefer), and we can discuss
additional details.

Peace,
david
-- 
David H. Wolfskill  da...@catwhisker.org
Depriving a girl or boy of an opportunity for education is evil.

See http://www.catwhisker.org/~david/publickey.gpg for my public key.


pgpRgd7rWpQt3.pgp
Description: PGP signature


RAID5 on FreeBSD 6 or 7

2008-12-01 Thread Peter B

Is it vinum or gvinum (geom8) that is the utility to create a RAID5 volume..?
Things like that gvinum lacks the 'stop' command etc.. makes me think
that it's not production ready or that the source code has not matured enough.

   /P

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


Re: RAID5 on FreeBSD 6 or 7

2008-12-01 Thread Nejc Skoberne
Hey Peter,

 Is it vinum or gvinum (geom8) that is the utility to create a RAID5 volume..?
 Things like that gvinum lacks the 'stop' command etc.. makes me think
 that it's not production ready or that the source code has not matured enough.

actually gvinum is production-ready, it only doesn't implement all the features 
of
vinum. I've been using since 2006 and it works, but it is slow. I just played
with it this weekend again, you can check
http://nejc.skoberne.net/2008/11/gmirror-and-gvinum-on-the-same-drives/.

However, as I said, gvinum is slow. I also run graid5 and some say it is pretty
stable. I've been running it for a year on a non-production server and it works
for me, but haven't seen it in action, when a drive fails or something. It is
fast, though. See it's page on Wikipedia for more info. I'd use it more if it
was part of official FreeBSD release, but for now it is only available as a
patch (AFAIK).

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


Re: RAID5 on FreeBSD 6 or 7

2008-12-01 Thread Wojciech Puchar

However, as I said, gvinum is slow. I also run graid5 and some say it is pretty


same for me. it works and works fast.

but still - small writes WILL be slow as it's RAID5
because of this i don't have much uses for it, as in most cases today
drive's capacities are much larger than amount of data that has to be 
protected.


so i use gmirror most often


stable. I've been running it for a year on a non-production server and it works
for me, but haven't seen it in action, when a drive fails or something. It is


simply disconnect one drive to test.


fast, though. See it's page on Wikipedia for more info. I'd use it more if it
was part of official FreeBSD release, but for now it is only available as a
patch (AFAIK).


which is strange. someone don't like RAID5 to be included in system?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: RAID5 on FreeBSD 6 or 7

2008-12-01 Thread Ivan Voras
Wojciech Puchar wrote:

 fast, though. See it's page on Wikipedia for more info. I'd use it
 more if it
 was part of official FreeBSD release, but for now it is only available
 as a
 patch (AFAIK).
 
 which is strange. someone don't like RAID5 to be included in system?

I'd like to see graid5 in the base system but I'm also one of those who
sort-of held it back from being imported, at least by inaction. The
reasons are:

a) Last time there was discussion about including it (it's available
somewhere in the freebsd-geom list archives) an issue was raised about
its over-aggressive use of caching that is turned *on* by default. IIRC
it's also likely that the design of the current code doesn't allow
turning it off. I suppose this is what makes it fast but the concerns
for data stability / corruption are real and not imaginary.
b) It was developed by a non-developer. This in itself says nothing
about the quality or the lack of quality of the code and is technically
irrelevant but there are couple of organizational issues:
1) it needs someone to look after it when it's imported
2) it needs to conform to the style and code layout rules of the project

I can't find the patch right now so I can't say for sure what is its
state now. I believe that if issues a) and b.2) are solved there would
be no problems or objections in importing it.

(It could be said that ZFS makes it obsolete, but it's not so -
lightweight RAID and file systems will always have their use).



signature.asc
Description: OpenPGP digital signature


Re: IPv6 jails for FreeBSD (6.* preferably)

2008-06-13 Thread Wojciech Puchar

attached working patch against this:

FreeBSD wojtek.tensor.gdynia.pl 7.0-STABLE FreeBSD 7.0-STABLE #0: Tue Jun 
10 10:49:47 CEST 2008 
[EMAIL PROTECTED]:/usr2/src/sys/i386/compile/p234  i386



(cvsup'em 2 weeks ago, should work for present date)

jailpatch.gz
Description: Binary data
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: IPv6 jails for FreeBSD (6.* preferably)

2008-06-12 Thread Steve Bertrand

Daniel Gerzo wrote:

Tuesday, June 3, 2008, 8:27:56 PM, you wrote:


does patch exist for it?


http://sources.zabbadoz.net/freebsd/jail.html


Trying to apply the aforementioned patches, I ran into this during 
buildkernel. I'll remove src, re csup and rebuild and try again. If 
there is a more appropriate list for this, please let me know...


build# uname -a
FreeBSD build.ibctech.ca 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Fri Feb 29 
11:53:16 EST 2008 root@:/usr/obj/usr/src/sys/GENERIC  i386



/usr/src/sys/kern/kern_jail.c: In function 'jail':
/usr/src/sys/kern/kern_jail.c:174: error: 'ip4' undeclared (first use in 
this function)
/usr/src/sys/kern/kern_jail.c:174: error: (Each undeclared identifier is 
reported only once

/usr/src/sys/kern/kern_jail.c:174: error: for each function it appears in.)
/usr/src/sys/kern/kern_jail.c:179: error: 'ip6' undeclared (first use in 
this function)

cc1: warnings being treated as errors
/usr/src/sys/kern/kern_jail.c:227: warning: label 'e_free_ip' defined 
but not used

*** Error code 1

Stop in /usr/obj/usr/src/sys/GENERIC.
*** Error code 1

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


Re: IPv6 jails for FreeBSD (6.* preferably)

2008-06-10 Thread Wojciech Puchar

exist in FreeBSD 6.*, everything else patched

we will see after compiling.


Did it work? Did it work? Did it work?

(Or is the absence of a giant WOOOHOOO! the indicator that it didn't
work at all?)


unfortunately not with 6.*, i was unable to complete patching by hand.

but it works in 7.*
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: IPv6 jails for FreeBSD (6.* preferably)

2008-06-10 Thread Steve Bertrand

Wojciech Puchar wrote:

exist in FreeBSD 6.*, everything else patched

we will see after compiling.


Did it work? Did it work? Did it work?

(Or is the absence of a giant WOOOHOOO! the indicator that it didn't
work at all?)


unfortunately not with 6.*, i was unable to complete patching by hand.

but it works in 7.*


WOH!!!

;)

(running off to try it) This is a HUGE step in aiding with 
implementing/debugging software that needs to be patched for IPv6 
conformance (for me anyway).


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


Re: IPv6 jails for FreeBSD (6.* preferably)

2008-06-09 Thread Edwin Groothuis
 well it applied almost clean to FreeBSD 6.3!
 
 almost means i have to skip 2 patches to sctp_* files, as sctp doesn't
 exist in FreeBSD 6.*, everything else patched
  
 we will see after compiling.

Did it work? Did it work? Did it work?

(Or is the absence of a giant WOOOHOOO! the indicator that it didn't
work at all?)

Edwin

-- 
Edwin Groothuis  |Personal website: http://www.mavetju.org
[EMAIL PROTECTED]|  Weblog: http://www.mavetju.org/weblog/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: IPv6 jails for FreeBSD (6.* preferably)

2008-06-04 Thread Wojciech Puchar

well it applied almost clean to FreeBSD 6.3!

almost means i have to skip 2 patches to sctp_* files, as sctp doesn't 
exist in FreeBSD 6.*, everything else patched


we will see after compiling.


On Tue, 3 Jun 2008, Daniel Gerzo wrote:


Hello Wojciech,

Tuesday, June 3, 2008, 8:27:56 PM, you wrote:


does patch exist for it?


http://sources.zabbadoz.net/freebsd/jail.html

--
Best regards,
Danielmailto:[EMAIL PROTECTED]



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


IPv6 jails for FreeBSD (6.* preferably)

2008-06-03 Thread Wojciech Puchar

does patch exist for it?

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


Re: IPv6 jails for FreeBSD (6.* preferably)

2008-06-03 Thread Daniel Gerzo
Hello Wojciech,

Tuesday, June 3, 2008, 8:27:56 PM, you wrote:

 does patch exist for it?

http://sources.zabbadoz.net/freebsd/jail.html

-- 
Best regards,
 Danielmailto:[EMAIL PROTECTED]

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


ZendDebugger.so for FreeBSD 6.x/7.x amd64?

2008-03-06 Thread Olivier Mueller
Hello,

Is there anyone around using the current ZendDebbuger (part of the Zend
Plattform) under Freebsd/amd64?Zend support doesn't seem to be able
to help at the moment...  

I tried the linux version in linux compatibility mode, but it didn't
worked yet.

Thanks  regards,
Olivier

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


Re: ionCube PHP Encoder / Loader on FreeBSD 6 / 7

2008-02-22 Thread Doug Poland

patrick wrote:

On Thu, Feb 21, 2008 at 8:57 AM, Doug Poland [EMAIL PROTECTED] wrote:

Hello,

 I'm having problems getting ionCube's PHP loader working on either
 6.3-RELEASE or 7.0-RC2 (both i386).  I've followed the install
 instructions, edited php.ini, installed compat5x and compat6x libraries,
 but just cannot get the loader to work.  Both boxes are running PHP 5.2.5.

 Have googled and read the ioncube forums.  I must be missing something
 obvious.

 Thanks in advance...


 Hi Doug,

 You may get more help if you provide some more details like log
 messages or specifics about what is not working.

 Patrick

Hi Patrick,

Thank you for the response.  My error was in the details, as you 
suggested.  I was using this statement for the loader:


zend_extension_ts = 
/usr/local/www/OllaCart/includes/ioncube/ioncube_loader_fre_5.2_ts.so


On my boxes, PHP was built without thread support, so I should have said 
this:


zend_extension = 
/usr/local/www/OllaCart/includes/ioncube/ioncube_loader_fre_5.2.so


Note the (_ts).  Now everything is working great.  Attention to detail...

--
Regards,
Doug

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


ionCube PHP Encoder / Loader on FreeBSD 6 / 7

2008-02-21 Thread Doug Poland

Hello,

I'm having problems getting ionCube's PHP loader working on either 
6.3-RELEASE or 7.0-RC2 (both i386).  I've followed the install 
instructions, edited php.ini, installed compat5x and compat6x libraries, 
but just cannot get the loader to work.  Both boxes are running PHP 5.2.5.


Have googled and read the ioncube forums.  I must be missing something 
obvious.


Thanks in advance...

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


Re: ionCube PHP Encoder / Loader on FreeBSD 6 / 7

2008-02-21 Thread patrick
Hi Doug,

You may get more help if you provide some more details like log
messages or specifics about what is not working.

Patrick


On Thu, Feb 21, 2008 at 8:57 AM, Doug Poland [EMAIL PROTECTED] wrote:
 Hello,

  I'm having problems getting ionCube's PHP loader working on either
  6.3-RELEASE or 7.0-RC2 (both i386).  I've followed the install
  instructions, edited php.ini, installed compat5x and compat6x libraries,
  but just cannot get the loader to work.  Both boxes are running PHP 5.2.5.

  Have googled and read the ioncube forums.  I must be missing something
  obvious.

  Thanks in advance...

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

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


mbuf allocation on FreeBSD 6.x

2007-11-21 Thread Jay Aikat

Hi,
	I recall being able to set kern.ipc.nmbufs in the older versions of FreeBSD. 
How do we set the same in 6.x - it does not seem to exist.  Or maybe there is a 
different way to manage mbufs?

Thanks,
--Jay.

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


Re: mbuf allocation on FreeBSD 6.x

2007-11-21 Thread Dan Nelson
In the last episode (Nov 21), Jay Aikat said:
   I recall being able to set kern.ipc.nmbufs in the older
 versions of FreeBSD. How do we set the same in 6.x - it does not seem
 to exist.  Or maybe there is a different way to manage mbufs?

According to the mbuf manpage, as of FreeBSD 5.3 mbufs are just regular
kernel-malloced memory and have no hard limit apart from available
memory.

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


mbuf allocation on FreeBSD 6.x

2007-11-20 Thread Jay Aikat

Hi,
	I recall being able to set kern.ipc.nmbclusters and nmbufs in the old versions. 
 How do we set the same in 6.x - it does not seem to exist.  Or maybe there is 
a different way to manage mbufs?  Thanks,

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


Re: BTX Halted error on FreeBSD 6 VMware Server

2007-10-03 Thread Norberto Meijome
On Tue, 2 Oct 2007 14:31:09 -0700
Rogelio Bastardo [EMAIL PROTECTED] wrote:

 I'm trying to install the latest FreeBSD boot cd on a VMware Server
 (running on CentOS).

works fine here (i have several FBSD 6 VMs under VMWare Server 1.0x under 
Centos 4.4 and Centos 5) can you please be more specific, what is the exact 
version + date of the latest FreeBSD boot cd you are using? 

B

_
{Beto|Norberto|Numard} Meijome

You shouldn't verb words.

I speak for myself, not my employer. Contents may be hot. Slippery when wet. 
Reading disclaimers makes you go blind. Writing them is worse. You have been 
Warned.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


BTX Halted error on FreeBSD 6 VMware Server

2007-10-02 Thread Rogelio Bastardo
I'm trying to install the latest FreeBSD boot cd on a VMware Server
(running on CentOS).

When I boot (whether it's option 1 or 2), I always get the same BTX
Halted error.

Is there something I need to disable before I can get VMware to play
nicely with FreeBSD?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD 6 and 'mailman' Issues

2007-08-10 Thread Tim Daneliuk

I've installed mailman from both the current ports and packages
and noted a common problem.

It seems that after a clean install, sometime later, permissions are
getting changed on its directory tree.  In going through the
various /etc/periodic entries, I don't see where this is getting done.
There is some very brief discussion of this in the mailman docs,
but I'm still slightly confused.  So..., I guess the question is,
how to do I install mailman such that check_perms does not grumble about
things like this:

directory permissions must be 02775: 
/usr/local/mailman/archives/private/testing.mbox

directory permissions must be 02775: /usr/local/mailman/archives/private/testing
directory permissions must be 02775: 
/usr/local/mailman/archives/private/testing/2007-August

directory permissions must be 02775: /usr/local/mailman/lists/testing
Problems found: 4
Re-run as mailman (or root) with -f flag to fix

Do I need to install mailman with some special flag set or is there
a way to keep whatever is doing this from clobbering the permissions?

FWIW, I am running sendmail with MailScanner/clamav/spamassassin.
There are thus three running instances:

root 1066  0.0  0.1  4492  2588  ??  Ss   11:00PM   0:10.65 sendmail: 
accepting connections (sendmail)
root 1073  0.0  0.1  3640  2232  ??  Is   11:00PM   0:00.03 sendmail: Queue 
[EMAIL PROTECTED]:15:00 for /var/spool/mqueue (sendmail)
smmsp1081  0.0  0.1  3508  2112  ??  Is   11:00PM   0:00.03 sendmail: Queue 
[EMAIL PROTECTED]:15:00 for /var/spool/clientmqueue (sendmail)




TIA,
--

Tim Daneliuk [EMAIL PROTECTED]
PGP Key: http://www.tundraware.com/PGP/

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


Re: TMPFS, is it available on FreeBSD 6 or 7?

2007-08-01 Thread Christopher Hilton

Sten Daniel Soersdal wrote:

Is TMPFS available on FreeBSD 6 or 7?
Or do i have to settle for mfs?

[venting frustration]
The reason i ask is i need something very flexible when it comes to 
memory usage as a poor-mans shared-memory feature for a closed source 
data conversion app, used only occasionally but with *alot* of data 
passing through. By alot i mean it took our quad core xeon 3 ghz with 4 
gbyte memory and 4 SAS drives in 1+0 RAID, about a day and a half to 
process (on disk).
Simple tests (by others) using netbsd on a single cpu 3 ghz and tmpfs, 
it took roughly 70 minutes. Most of which was spent loading and 
unloading the data over the network.
I'd really like that memory back after use for other things as this 
server is also serving databases with files etc.





I love FreeBSD enough to have run my personal webserver on 
FreeBSD-Sparc64 but I don't understand here. If NetBSD does the work in 
70 minutes why not do it on NetBSD?


-- Chris


--
  __o  All I was doing was trying to get home from work.
_`\,_   -Rosa Parks
___(*)/_(*)___
Christopher Sean Hiltonchris | at | vindaloo.com
pgp key: D0957A2D/f5 30 0a e1 55 76 9b 1f 47 0b 07 e9 75 0e 14
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


TMPFS, is it available on FreeBSD 6 or 7?

2007-07-31 Thread Sten Daniel Soersdal

Is TMPFS available on FreeBSD 6 or 7?
Or do i have to settle for mfs?

[venting frustration]
The reason i ask is i need something very flexible when it comes to 
memory usage as a poor-mans shared-memory feature for a closed source 
data conversion app, used only occasionally but with *alot* of data 
passing through. By alot i mean it took our quad core xeon 3 ghz with 4 
gbyte memory and 4 SAS drives in 1+0 RAID, about a day and a half to 
process (on disk).
Simple tests (by others) using netbsd on a single cpu 3 ghz and tmpfs, 
it took roughly 70 minutes. Most of which was spent loading and 
unloading the data over the network.
I'd really like that memory back after use for other things as this 
server is also serving databases with files etc.


(PS. If anyone knows of some place in the world it is legally 
permissible to shoot a programmer for incompetence/excessive-tmp-usage, 
then please let me know, that's where are going on company vacation)

[/venting]

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


Re: TMPFS, is it available on FreeBSD 6 or 7?

2007-07-31 Thread Craig Boston
On Tue, Jul 31, 2007 at 02:42:04PM -0400, Sten Daniel Soersdal wrote:
 Is TMPFS available on FreeBSD 6 or 7?
 Or do i have to settle for mfs?

tmpfs is not available in 6, however it has recently been added to
-current (7) and will be part of the 7.0 release.  If you desperately
need it now, you'll have to partake of the adventure that is running
-current.  If you can wait a while, I'd recommend waiting for the
release, especially if this is a production server.

mfs sounds like it would definitely not work very well for your use
case.  Have you tried playing with filesystem options such as mounting a
disk-based /tmp async (with softupdates DISABLED) to see if it helps
any?  Won't be as fast as tmpfs, but with some tuning you might be able
to get it to acceptable levels in the interim.

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


New (blade) server - stick with FreeBSD 6.x or wait for FreeBSD 7?

2007-06-04 Thread Ewald Jenisch
Hi,

I'm about to set up a new server that should run basically
network-monitoring (MRTG, Cacti etc.). Hardware will be HP C-class
blade based on AMD Opterons.

Should I stick with FreeBS 6.x or wait for FreeBSD 7 (see
http://www.freebsd.org/releng/index.html - June 2007 Start FreeBSD
7.0 Release Process).

The question basically is: Will FreeBSD7 be current or stable?

Thanks much in advance for any hint,
-ewald


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


Re: New (blade) server - stick with FreeBSD 6.x or wait for FreeBSD 7?

2007-06-04 Thread Kris Kennaway
On Mon, Jun 04, 2007 at 09:46:00AM +0200, Ewald Jenisch wrote:
 Hi,
 
 I'm about to set up a new server that should run basically
 network-monitoring (MRTG, Cacti etc.). Hardware will be HP C-class
 blade based on AMD Opterons.
 
 Should I stick with FreeBS 6.x or wait for FreeBSD 7 (see
 http://www.freebsd.org/releng/index.html - June 2007 Start FreeBSD
 7.0 Release Process).

Note start.  The release is still many months away, so presumably
you do not wish to wait until then to install your server :) You
should definitely keep an eye on it though, there is a lot of good
stuff coming up in 7.0.

 The question basically is: Will FreeBSD7 be current or stable?

It will be the start of a new stable branch.

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


Re: New (blade) server - stick with FreeBSD 6.x or wait for FreeBSD 7?

2007-06-04 Thread Abdullah Ibn Hamad Al-Marri

On 6/4/07, Ewald Jenisch [EMAIL PROTECTED] wrote:

Hi,

I'm about to set up a new server that should run basically
network-monitoring (MRTG, Cacti etc.). Hardware will be HP C-class
blade based on AMD Opterons.

Should I stick with FreeBS 6.x or wait for FreeBSD 7 (see
http://www.freebsd.org/releng/index.html - June 2007 Start FreeBSD
7.0 Release Process).

The question basically is: Will FreeBSD7 be current or stable?

Thanks much in advance for any hint,
-ewald




Currently there are some bugs in the tcp, my server always crash with
a kernel msg

tcp syncache_expand: segment failed syncookie authentication, segment
rejected (probably spoofed)

So wait till they fix this serious bug, other than that it runs faster
than RELENG_6 with ULE 2.0, and libthr.


--
Regards,

-Abdullah Ibn Hamad Al-Marri
Arab Portal
http://www.WeArab.Net/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: New (blade) server - stick with FreeBSD 6.x or wait for FreeBSD 7?

2007-06-04 Thread Per olof Ljungmark

Kris Kennaway wrote:

On Mon, Jun 04, 2007 at 09:46:00AM +0200, Ewald Jenisch wrote:

Hi,

I'm about to set up a new server that should run basically
network-monitoring (MRTG, Cacti etc.). Hardware will be HP C-class
blade based on AMD Opterons.

Should I stick with FreeBS 6.x or wait for FreeBSD 7 (see
http://www.freebsd.org/releng/index.html - June 2007 Start FreeBSD
7.0 Release Process).


Note start.  The release is still many months away, so presumably
you do not wish to wait until then to install your server :) You
should definitely keep an eye on it though, there is a lot of good
stuff coming up in 7.0.


The question basically is: Will FreeBSD7 be current or stable?


We are running several non-critical (including this T42 laptop) and one 
critical (SMTP) machine with -CURRENT and so far it's been a matter of 
getting the source from a good moment in time, mostly the snapshots. So 
far very few problems. You need a testbed to try stuff out on though.


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


Re: New (blade) server - stick with FreeBSD 6.x or wait for FreeBSD 7?

2007-06-04 Thread Kris Kennaway
On Mon, Jun 04, 2007 at 12:10:53PM +0300, Abdullah Ibn Hamad Al-Marri wrote:
 On 6/4/07, Ewald Jenisch [EMAIL PROTECTED] wrote:
 Hi,
 
 I'm about to set up a new server that should run basically
 network-monitoring (MRTG, Cacti etc.). Hardware will be HP C-class
 blade based on AMD Opterons.
 
 Should I stick with FreeBS 6.x or wait for FreeBSD 7 (see
 http://www.freebsd.org/releng/index.html - June 2007 Start FreeBSD
 7.0 Release Process).
 
 The question basically is: Will FreeBSD7 be current or stable?
 
 Thanks much in advance for any hint,
 -ewald
 
 
 
 Currently there are some bugs in the tcp, my server always crash with
 a kernel msg
 
 tcp syncache_expand: segment failed syncookie authentication, segment
 rejected (probably spoofed)

Uh, that's not a crash, it's a warning message that does not
interrupt kernel operation.

 So wait till they fix this serious bug, other than that it runs faster
 than RELENG_6 with ULE 2.0, and libthr.

libthr is available in 6.x too, of course.

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


Re: New (blade) server - stick with FreeBSD 6.x or wait for FreeBSD 7?

2007-06-04 Thread John Nielsen
On Monday 04 June 2007 05:30:37 am Per olof Ljungmark wrote:
 Kris Kennaway wrote:
  On Mon, Jun 04, 2007 at 09:46:00AM +0200, Ewald Jenisch wrote:
  Hi,
 
  I'm about to set up a new server that should run basically
  network-monitoring (MRTG, Cacti etc.). Hardware will be HP C-class
  blade based on AMD Opterons.
 
  Should I stick with FreeBS 6.x or wait for FreeBSD 7 (see
  http://www.freebsd.org/releng/index.html - June 2007 Start FreeBSD
  7.0 Release Process).
 
  Note start.  The release is still many months away, so presumably
  you do not wish to wait until then to install your server :) You
  should definitely keep an eye on it though, there is a lot of good
  stuff coming up in 7.0.
 
  The question basically is: Will FreeBSD7 be current or stable?

 We are running several non-critical (including this T42 laptop) and one
 critical (SMTP) machine with -CURRENT and so far it's been a matter of
 getting the source from a good moment in time, mostly the snapshots. So
 far very few problems. You need a testbed to try stuff out on though.

Note that the bge adapters in the HP c-class blades require SerDes support, 
which IIRC was not present in 6.2-RELEASE but has (hopefully? maybe?) been 
MFC'ed since then.

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


Re: Did I take the wrong bus with FreeBSD 6 to VMware?

2007-03-15 Thread Robert Eckardt
On Wed, 14 Mar 2007 21:17:21 -0800, Ted Mittelstaedt wrote
 Robert,
 
   You have device driver conflicts with the hardware.  Most likely 
 it is the ata driver and the rocket raid card.  The rocket raids are 
 nice cards but I have had them blow up too.  In my case I simply 
 moved the rocket raid card to a different system where it was rock 
 solid, and put in a promise card that was blowing up in yet a third 
 system.  I have a whole collection of hardware to play with. 
  Unfortunately that is what happens when you work with operating 
 systems that wern't preloaded on the hardware you bought.

Ted,

I would like to do so, but the RAID-controller is on the motherboard.
(That was the main reason for choosing this mobo, since everything I
need (and obviously something more) is already on-board.) All I could 
do was do disable SATA is in BIOS.
Is there a way to control the ressources to avoid the conflict?

Robert

 
 Ted
 
 - Original Message - 
 From: Robert Eckardt [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, March 14, 2007 3:27 PM
 Subject: Did I take the wrong bus with FreeBSD 6 to VMware?
 
  Hi,
 
  for some time I'm trying to get FreeBSD 6 running on my server
  as a host for VMware and several other functions.
 
  I'm using a 1.7GHz Pentium M 735 on an AOpen i855GMEm-LFS mobo
  w/ USB, VGA, 2xGbit/s, 2xPATA channels etc. on board.
  I used to run FBSD-5.2.1 with vmware3 on an Epox mobo w/ a 2GHz
  Celeron without problems.
  After changing HW (mobo, CPU, HDD) and OS (FBSD6.0) I found the
  system to freeze upon accessing an USB device when vmware was
  running.
  So my first investigations led to its driver, but in some cases
  heavy disk I/O was sufficient to cause a freeze.
 
  Since the situation got worse with FreeBSD 6.2 I started to work
  on it more systematically and found the following (actually I was
  on the verge to switch to Linux CentOS 4.4 or OpenSUSE 10.2 with
  VMware Server running nicely, but the HD and network performance
  were disappointing):
 
  1)**ACPI off, Assign USB IRQ disabled in BIOS, vmware3 started:
  vmware3 runs fine, but no USB devices.
 
  2)**ACPI off, Assign USB IRQ enabled in BIOS, vmware3 started:
  system freezes with network connections breaking, endless
  messages
  ad2: WARNING: - SETFEATURES SET TRANSFER MODE taskqueue timeout -
 completing
  request directly
  ad2: WARNING: - SETFEATURES SET TRANSFER MODE taskqueue timeout -
 completing
  request directly
  ad2: WARNING: - SETFEATURES ENABLE RCACHE taskqueue timeout - completing
  request directly
  ad2: WARNING: - SETFEATURES ENABLE WCACHE taskqueue timeout - completing
  request directly
  ad2: WARNING: - SET_MULTI taskq.
  ad2: FAILURE [or TIMEOUT] - WRITE:DMA timed out [or retrying] LBA=
  g_vs_done():ad2s1e[WRITE(offset=, length=)]error = 5
  typing reboot will finally reboot the system after several hours,
  nothing in the logs though.
 
  3)**ACPI off, Assign USB IRQ enabled in BIOS, additional PCI-VGA
  card installed, using either PCI-VGA *or* on-board VGA, vmware3
  started:
  vmware3 runs fine, also when accessing the USB device.
 
  4)**ACPI on, Assign USB IRQ enabled in BIOS, additional PCI-VGA card
  installed, using on-board VGA, vmware3 started:
  system freezes with messages above.
 
  So, what's the relation between the scenarios?
  Where can I tweak the system to get it stable?
 
  Since I spend already several man-days on getting VMware running
  on my machine, I would like to help further debugging by making
  additional tests, but I don't know where to start.
 
  I can live without ACPI (for the time being) -- the old system
  consumes 125W while the Pentium M machine stays at 42W with ACPI
  taking about another 8W in idle-state.
  For me it seems essential why enabling/disabling USB in the BIOS
  or adding an additional PCI-VGA card stabilizes the system and
  why the unstable system behaves the same way like with enabling
  ACPI.
 
  I put some boot_verbose-logs on http://www.robert-eckardt.de/ghost/
 
  Regards,
  Robert
 
  --
  Dr. Robert Eckardt---[EMAIL PROTECTED]
 
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]


--
Dr. Robert Eckardt---[EMAIL PROTECTED]

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


Did I take the wrong bus with FreeBSD 6 to VMware?

2007-03-14 Thread Robert Eckardt
Hi,

for some time I'm trying to get FreeBSD 6 running on my server 
as a host for VMware and several other functions.

I'm using a 1.7GHz Pentium M 735 on an AOpen i855GMEm-LFS mobo 
w/ USB, VGA, 2xGbit/s, 2xPATA channels etc. on board.
I used to run FBSD-5.2.1 with vmware3 on an Epox mobo w/ a 2GHz 
Celeron without problems.
After changing HW (mobo, CPU, HDD) and OS (FBSD6.0) I found the 
system to freeze upon accessing an USB device when vmware was 
running. 
So my first investigations led to its driver, but in some cases 
heavy disk I/O was sufficient to cause a freeze.

Since the situation got worse with FreeBSD 6.2 I started to work 
on it more systematically and found the following (actually I was 
on the verge to switch to Linux CentOS 4.4 or OpenSUSE 10.2 with 
VMware Server running nicely, but the HD and network performance 
were disappointing):

1)**ACPI off, Assign USB IRQ disabled in BIOS, vmware3 started:
vmware3 runs fine, but no USB devices.

2)**ACPI off, Assign USB IRQ enabled in BIOS, vmware3 started:
system freezes with network connections breaking, endless 
messages
ad2: WARNING: - SETFEATURES SET TRANSFER MODE taskqueue timeout - completing
request directly
ad2: WARNING: - SETFEATURES SET TRANSFER MODE taskqueue timeout - completing
request directly
ad2: WARNING: - SETFEATURES ENABLE RCACHE taskqueue timeout - completing
request directly
ad2: WARNING: - SETFEATURES ENABLE WCACHE taskqueue timeout - completing
request directly
ad2: WARNING: - SET_MULTI taskq.
ad2: FAILURE [or TIMEOUT] - WRITE:DMA timed out [or retrying] LBA=
g_vs_done():ad2s1e[WRITE(offset=, length=)]error = 5
typing reboot will finally reboot the system after several hours,
nothing in the logs though.

3)**ACPI off, Assign USB IRQ enabled in BIOS, additional PCI-VGA 
card installed, using either PCI-VGA *or* on-board VGA, vmware3 
started:
vmware3 runs fine, also when accessing the USB device.

4)**ACPI on, Assign USB IRQ enabled in BIOS, additional PCI-VGA card 
installed, using on-board VGA, vmware3 started:
system freezes with messages above.

So, what's the relation between the scenarios?
Where can I tweak the system to get it stable?

Since I spend already several man-days on getting VMware running 
on my machine, I would like to help further debugging by making 
additional tests, but I don't know where to start.

I can live without ACPI (for the time being) -- the old system 
consumes 125W while the Pentium M machine stays at 42W with ACPI 
taking about another 8W in idle-state.
For me it seems essential why enabling/disabling USB in the BIOS 
or adding an additional PCI-VGA card stabilizes the system and 
why the unstable system behaves the same way like with enabling 
ACPI.

I put some boot_verbose-logs on http://www.robert-eckardt.de/ghost/

Regards,
Robert

--
Dr. Robert Eckardt---[EMAIL PROTECTED]

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


Re: Did I take the wrong bus with FreeBSD 6 to VMware?

2007-03-14 Thread Ted Mittelstaedt
Robert,

  You have device driver conflicts with the hardware.  Most likely it is
the ata driver and the rocket raid card.  The rocket raids are nice cards
but
I have had them blow up too.  In my case I simply moved the rocket raid card
to a different system where it was rock solid, and put in a promise card
that
was blowing up in yet a third system.  I have a whole collection of hardware
to play with.  Unfortunately that is what happens when you work with
operating systems that wern't preloaded on the hardware you bought.

Ted

- Original Message - 
From: Robert Eckardt [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, March 14, 2007 3:27 PM
Subject: Did I take the wrong bus with FreeBSD 6 to VMware?


 Hi,

 for some time I'm trying to get FreeBSD 6 running on my server
 as a host for VMware and several other functions.

 I'm using a 1.7GHz Pentium M 735 on an AOpen i855GMEm-LFS mobo
 w/ USB, VGA, 2xGbit/s, 2xPATA channels etc. on board.
 I used to run FBSD-5.2.1 with vmware3 on an Epox mobo w/ a 2GHz
 Celeron without problems.
 After changing HW (mobo, CPU, HDD) and OS (FBSD6.0) I found the
 system to freeze upon accessing an USB device when vmware was
 running.
 So my first investigations led to its driver, but in some cases
 heavy disk I/O was sufficient to cause a freeze.

 Since the situation got worse with FreeBSD 6.2 I started to work
 on it more systematically and found the following (actually I was
 on the verge to switch to Linux CentOS 4.4 or OpenSUSE 10.2 with
 VMware Server running nicely, but the HD and network performance
 were disappointing):

 1)**ACPI off, Assign USB IRQ disabled in BIOS, vmware3 started:
 vmware3 runs fine, but no USB devices.

 2)**ACPI off, Assign USB IRQ enabled in BIOS, vmware3 started:
 system freezes with network connections breaking, endless
 messages
 ad2: WARNING: - SETFEATURES SET TRANSFER MODE taskqueue timeout -
completing
 request directly
 ad2: WARNING: - SETFEATURES SET TRANSFER MODE taskqueue timeout -
completing
 request directly
 ad2: WARNING: - SETFEATURES ENABLE RCACHE taskqueue timeout - completing
 request directly
 ad2: WARNING: - SETFEATURES ENABLE WCACHE taskqueue timeout - completing
 request directly
 ad2: WARNING: - SET_MULTI taskq.
 ad2: FAILURE [or TIMEOUT] - WRITE:DMA timed out [or retrying] LBA=
 g_vs_done():ad2s1e[WRITE(offset=, length=)]error = 5
 typing reboot will finally reboot the system after several hours,
 nothing in the logs though.

 3)**ACPI off, Assign USB IRQ enabled in BIOS, additional PCI-VGA
 card installed, using either PCI-VGA *or* on-board VGA, vmware3
 started:
 vmware3 runs fine, also when accessing the USB device.

 4)**ACPI on, Assign USB IRQ enabled in BIOS, additional PCI-VGA card
 installed, using on-board VGA, vmware3 started:
 system freezes with messages above.

 So, what's the relation between the scenarios?
 Where can I tweak the system to get it stable?

 Since I spend already several man-days on getting VMware running
 on my machine, I would like to help further debugging by making
 additional tests, but I don't know where to start.

 I can live without ACPI (for the time being) -- the old system
 consumes 125W while the Pentium M machine stays at 42W with ACPI
 taking about another 8W in idle-state.
 For me it seems essential why enabling/disabling USB in the BIOS
 or adding an additional PCI-VGA card stabilizes the system and
 why the unstable system behaves the same way like with enabling
 ACPI.

 I put some boot_verbose-logs on http://www.robert-eckardt.de/ghost/

 Regards,
 Robert

 --
 Dr. Robert Eckardt---[EMAIL PROTECTED]

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


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


Problem accentued and special character freeBSD 6

2007-02-26 Thread Jean Chiappini

Hello,

I have a problem with the accentued and special characters. When I set the
variable environnement with fr_FR.IOS8859-1 or fr_CH.ISO8859-1 or If I set
these charsets in the /etc/cshrc.login. The normal character work great,
but when I try to use an accentued character in my terminal or in my mysql
DB, by example 'é', the character 'a' appear in the place of all accentued
characters... I use the swiss french accentued keyboard in my rc.conf. I
don't need these characters in console, but I need it in my MySQL. I have
also tried to set latin1 and utf-8 charset in my.cnf, but the problem is
the same.

Could someone help me with this strange problem pleae ?

Regards

Jean

--

*Jean Chiappini *
network services

*virtua SA*  interactive communication agency
En Clamogne 27
CH -1170 Aubonne
T. +41 21 821 15 20
F. +41 21 821 15 21

*www.virtua.ch*  | from internet to business® |
*·*
*·*

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


nforce 4 sata and freebsd 6

2007-02-15 Thread Chris

I noticed one of my servers works much better in freebsd 5 noticeably
it is faster and more stable.

I then found this post.

http://lists.freebsd.org/pipermail/freebsd-current/2005-May/050529.html

and

http://www.freebsd.org/cgi/query-pr.cgi?pr=75540

So in freebsd 5.x there was limited nforce 4 support for pata devices
and a patch made to support sata devices, so I checked the same file
on freebsd 6.2 and there is no reference to ATA_NFORCE4 at all in the
file, checked 5.4 and sure enough its there.

So my question is why did ata-chipset.c in 2004 have some support for
nforce4 and a patch in current which I think was 6.x at the time have
support for sata and now nforce4 is completely wiped in 6.x?

Was it not stable and scrapped for timescale to release or some other
reason? nforce4 is a fairly popular chipset.

My 150 sata hd is running in some sort of compatibility mode now as a
result of the lack of a driver.

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


Anyone running FreeBSD 6.x on HP DL320 G5?

2007-02-08 Thread William

Hello,

If anyone is running FreeBSD 6.x on a HP DL320 G5, can they please hit
me off-list with their stories?

Kind Regards,

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


Re: Anyone running FreeBSD 6.x on HP DL320 G5?

2007-02-08 Thread David Robillard

If anyone is running FreeBSD 6.x on a HP DL320 G5 ?


The following URL contains good information on running FreeBSD on
Compaq/HP systems.

http://people.freebsd.org/~jcagle/

HTH,

David
--
David Robillard
UNIX systems administrator  Oracle DBA
CISSP, RHCE  Sun Certified Security Administrator
Montreal: +1 514 966 0122
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Anyone running FreeBSD 6.x on HP DL320 G5?

2007-02-08 Thread Ted Mittelstaedt
We are running a pretty busy mail hub on a DL320 G4 without trouble.

Ted

- Original Message - 
From: William [EMAIL PROTECTED]
To: freebsd-questions@freebsd.org
Sent: Thursday, February 08, 2007 4:58 AM
Subject: Anyone running FreeBSD 6.x on HP DL320 G5?


 Hello,

 If anyone is running FreeBSD 6.x on a HP DL320 G5, can they please hit
 me off-list with their stories?

 Kind Regards,

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


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


Bandwidth Throttling under FreeBSD 6.x ...

2006-12-01 Thread Marc G. Fournier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Finding alot of ancient stuff on Google, but they all seem to revolve around 
ipfw, which I believe isn't so heavily recommended anymore?

Can someone point me to a doc that talks about bandwidth throttling using, I'm 
guessing, pf, is the current?  Under FreeBSD 6.x?

Basically, what I want to do is leave everything open, but throttle one 
specific IP ...

Thanks ...

- 
Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (FreeBSD)

iD8DBQFFcHRG4QvfyHIvDvMRAhJmAKDG+mHuGaXPMSdSUs0+njT9PTKEPwCeLX25
ecqHmb6ct6uPTNfORYoD6zg=
=e9hH
-END PGP SIGNATURE-

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


RE: Bandwidth Throttling under FreeBSD 6.x ...

2006-12-01 Thread Michael K. Smith - Adhost
Hello Mark:

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Marc G.
Fournier
Sent: Friday, December 01, 2006 10:28 AM
To: freebsd-questions@freebsd.org
Subject: Bandwidth Throttling under FreeBSD 6.x ...

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Finding alot of ancient stuff on Google, but they all seem to revolve
around 
ipfw, which I believe isn't so heavily recommended anymore?

Can someone point me to a doc that talks about bandwidth throttling
using, I'm 
guessing, pf, is the current?  Under FreeBSD 6.x?

Basically, what I want to do is leave everything open, but throttle one 
specific IP ...

Thanks ...

- 
Marc G. Fournier   Hub.Org Networking Services
(http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN .
[EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
-BEGIN PGP SIGNATURE-


I think this is what you're looking for.  Specifically, using ALTQ in
conjunction with PF.

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/firewalls-pf.h
tml

Regards,

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


FreeBSD-6, kldload: No such file...

2006-11-12 Thread Armin Arh
Hi,

since upgrading to FreeBSD-6 i can't load modules by just typing the name.

## uname -a
FreeBSD lance.net.schlund.de 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #8: Sun Nov 
12 21:59:06 CET 2006 [EMAIL PROTECTED]:/usr/src/sys/i386/compile/LANCE  i386

## kldload linux
kldload: can't load linux: No such file or directory
## kldload linux.ko
kldload: can't load linux.ko: No such file or directory
## kldload /boot/kernel/linux.ko 
## kldstat
Id Refs AddressSize Name
 16 0xc040 77132c   kernel
 31 0xc4193000 1b000kqemu.ko
 41 0xc3db7000 16000linux.ko

did i miss some config?

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


Re: FreeBSD-6, kldload: No such file...

2006-11-12 Thread [EMAIL PROTECTED]

On 11/12/06, Armin Arh [EMAIL PROTECTED] wrote:

Hi,

since upgrading to FreeBSD-6 i can't load modules by just typing the name.



You do not say from what to 6.x.


## kldload linux
kldload: can't load linux: No such file or directory
## kldload linux.ko
kldload: can't load linux.ko: No such file or directory
## kldload /boot/kernel/linux.ko
## kldstat
Id Refs AddressSize Name
 16 0xc040 77132c   kernel
 31 0xc4193000 1b000kqemu.ko
 41 0xc3db7000 16000linux.ko

did i miss some config?


kldconfig(8)
man 8 kldconfig

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


Re: FreeBSD-6, kldload: No such file...

2006-11-12 Thread [EMAIL PROTECTED]

On 11/12/06, Armin Arh [EMAIL PROTECTED] wrote:

On Sun, 12 Nov 2006 21:38:35 -0600 [EMAIL PROTECTED] [EMAIL PROTECTED] 
wrote:
 You do not say from what to 6.x.

It was 5.4

 kldconfig(8)
 man 8 kldconfig

got it now,

thx.

Armin


The 5.4 -- 6.x has probably left you with some old libs hanging
around as well, hence your additional problem in the other thread
with opera segfaulting.  Try rereading the end of the /usr/src/UPDATING
file and following that, especially the delete-old-libs bit.

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


Re: Freebsd 6-Stable lockups

2006-11-06 Thread Kris Kennaway
On Wed, Nov 01, 2006 at 10:02:14PM -, chris scott wrote:
 well theseare the only additional lines ive added to my kernel
 I pretty sure i added crypto support after the problems started
 i have  disabled geli support for encrytped swap partitions as i thought 
 that may bethe cause

 #options WITNESS
 #options WITNESS_SKIPSPIN
 
#options DEBUG_LOCKS
 #options DEBUG_VFS_LOCKS
 #options DDB
 #options WITNESS_KDB
 #options KDB

You're clearly aware of these debugging options (also you want options
INVARIANTS and INVARIANT_SUPPORT), so why not use them?  When the
system hangs, follow the directions in the kernel debugging chapter of
the developers handbook.

Kris


pgpkMMwIfB0zg.pgp
Description: PGP signature


Problem with ICH4 fxp driver and FreeBSD 6

2006-11-03 Thread Stefan Kohl
Hi all,

I am encountering a strange problem compiling a kernel for a MS-6557 mainboard 
(a Hermes 845GV) with Intel845GV Chipset.
Everything is OK with the GENERIC 6.0 Kernel; but as soon as I install a self 
compiled kernel (6.0 or 6.1), I get fxp driver timeouts.

On loading the if_fxp.ko module (+miibus.ko) the driver is recognised and the 
interface is configured correctly, but as soon as network traffic is generated, 
I get the fxp driver timeout message (and hence bo network connectivity ;-( No 
other error messages apear and every other bit of hardware seems to be 
recognised and ok.
I suspect resource problems (like IRQ), but I am vague about PCI and IRQ 
settings. I have tried a kernel with all unneccessary hardware deactivated 
(usb, firewire) but to no avail.

Can anyone give me some hints, about how to get about?
I am glad to give detailed information about kernel and system configuration.

Thanks in advance, Stefan
_
Der WEB.DE SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
http://smartsurfer.web.de/?mc=100071distributionid=0066

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

Freebsd 6-Stable lockups

2006-11-01 Thread chris scott
Hi all,

I have a kind of anoying problem at the moment. A system I run keeps radomly 
freezing/locking up. This can be anywhere from 2 hours to a week after the last 
reboot/lockup. The only fix its to power cycleit. It isnt kernel panicing, it 
just locks. Even accessing  via serial doent work. I have  changed all the 
hardware so the issue is unlikely to be there. The load on the box isnt all 
that high and the memory usage looks fine (all rrded). The box is running quite 
a lot of services (apache, mysql,exim. spamassasing, clamav, courier, openvpn, 
zebra). Usually all these services, apart from openvpn and zebra,  run in a 
jail. I dont think this is an issue as the machine still freezes if i run them 
non jailed. Deactivating all these services apart from openvpn and zebra 
(needed for monitoring), seems to fix the problem from what I can see so im 
fairly sure the problem lies in these somewhere. However can anoyone suggest I 
way i can easily pinpoint the problem other that stepping though each app, as 
this would take an age to perform and be very tedious.

The system has been  rebuilt from src (make world) several times, and I have 
dont a portupgrade  -a. All the local installations were  done from ports.

I have tried running a debug kernel, but it didnt seem to yeild much useful 
info.

Im running 6-stable( last build 4 days ago )
its an SMP kernel on 1 gig intels
with 1.2gig ram
2 x 80 gig ide hd














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


Re: Freebsd 6-Stable lockups

2006-11-01 Thread Paul Beckers

Hi Chris,

I've noticed the same on three of my FreeBSD 6 systems, until now I  
haven't found any clue on this. FreeBSD 5 stable was no problem,  
FreeBSD 6 is quite a mess with no trace at all on what might have  
caused the machine to freeze. I agree with you that it could very  
well be a user application problem because my kernel config is quite  
trivial, my updating routines (cvsup and portupgrade) are trivial and  
actually the whole configuration of my box isn't exciting. I've  
opened a thread at bsdforums.org and posted an email on this mailing  
list as well.

http://www.freebsdforums.com/forums/showthread.php?t=38765.
http://lists.freebsd.org/pipermail/freebsd-stable/2006-October/ 
030225.html
Perhaps, comparing both configurations could identify the bad  
application.


Kind Regards,
Paul M.C. Beckers

On Nov 1, 2006, at 6:09 PM, chris scott wrote:


Hi all,

I have a kind of anoying problem at the moment. A system I run  
keeps radomly freezing/locking up. This can be anywhere from 2  
hours to a week after the last reboot/lockup. The only fix its to  
power cycleit. It isnt kernel panicing, it just locks. Even  
accessing  via serial doent work. I have  changed all the hardware  
so the issue is unlikely to be there. The load on the box isnt all  
that high and the memory usage looks fine (all rrded). The box is  
running quite a lot of services (apache, mysql,exim. spamassasing,  
clamav, courier, openvpn, zebra). Usually all these services, apart  
from openvpn and zebra,  run in a jail. I dont think this is an  
issue as the machine still freezes if i run them non jailed.  
Deactivating all these services apart from openvpn and zebra  
(needed for monitoring), seems to fix the problem from what I can  
see so im fairly sure the problem lies in these somewhere. However  
can anoyone suggest I way i can easily pinpoint the problem other  
that stepping though each app, as this would take an age to perform  
and be very tedious.


The system has been  rebuilt from src (make world) several times,  
and I have dont a portupgrade  -a. All the local installations  
were  done from ports.


I have tried running a debug kernel, but it didnt seem to yeild  
much useful info.


Im running 6-stable( last build 4 days ago )
its an SMP kernel on 1 gig intels
with 1.2gig ram
2 x 80 gig ide hd














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


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


Re: Freebsd 6-Stable lockups

2006-11-01 Thread chris scott

well theseare the only additional lines ive added to my kernel
I pretty sure i added crypto support after the problems started
i have  disabled geli support for encrytped swap partitions as i thought 
that may bethe cause


# To make an SMP kernel, the next line is needed
options SMP # Symmetric MultiProcessor Kernel



options ALTQ
options ALTQ_CBQ# Class Bases Queueing
options ALTQ_RED# Random Early Detection
options ALTQ_RIO# RED In/Out
options ALTQ_HFSC   # Hierarchical Packet Scheduler
options ALTQ_CDNR   # Traffic conditioner
options ALTQ_PRIQ   # Priority Queueing
options ALTQ_NOPCC  # Required for SMP build


# TCP_DROP_SYNFIN adds support for ignoring TCP packets with SYN+FIN. This
options TCP_DROP_SYNFIN #drop TCP packets with SYN+FIN

#options   VESA
#options SC_PIXEL_MODE
maxusers0

#optionsNO_LKM
options CONSPEED=115200

device crypto
options GEOM_ELI
#options WITNESS
#options WITNESS_SKIPSPIN

   #options DEBUG_LOCKS
#options DEBUG_VFS_LOCKS
#options DDB
#options WITNESS_KDB
#options KDB


- Original Message - 
From: Paul Beckers [EMAIL PROTECTED]

To: chris scott [EMAIL PROTECTED]
Cc: freebsd-questions@freebsd.org
Sent: Wednesday, November 01, 2006 6:21 PM
Subject: Re: Freebsd 6-Stable lockups



Hi Chris,

I've noticed the same on three of my FreeBSD 6 systems, until now I  
haven't found any clue on this. FreeBSD 5 stable was no problem,  
FreeBSD 6 is quite a mess with no trace at all on what might have  
caused the machine to freeze. I agree with you that it could very  
well be a user application problem because my kernel config is quite  
trivial, my updating routines (cvsup and portupgrade) are trivial and  
actually the whole configuration of my box isn't exciting. I've  
opened a thread at bsdforums.org and posted an email on this mailing  
list as well.

http://www.freebsdforums.com/forums/showthread.php?t=38765.
http://lists.freebsd.org/pipermail/freebsd-stable/2006-October/ 
030225.html
Perhaps, comparing both configurations could identify the bad  
application.


Kind Regards,
Paul M.C. Beckers

On Nov 1, 2006, at 6:09 PM, chris scott wrote:


Hi all,

I have a kind of anoying problem at the moment. A system I run  
keeps radomly freezing/locking up. This can be anywhere from 2  
hours to a week after the last reboot/lockup. The only fix its to  
power cycleit. It isnt kernel panicing, it just locks. Even  
accessing  via serial doent work. I have  changed all the hardware  
so the issue is unlikely to be there. The load on the box isnt all  
that high and the memory usage looks fine (all rrded). The box is  
running quite a lot of services (apache, mysql,exim. spamassasing,  
clamav, courier, openvpn, zebra). Usually all these services, apart  
from openvpn and zebra,  run in a jail. I dont think this is an  
issue as the machine still freezes if i run them non jailed.  
Deactivating all these services apart from openvpn and zebra  
(needed for monitoring), seems to fix the problem from what I can  
see so im fairly sure the problem lies in these somewhere. However  
can anoyone suggest I way i can easily pinpoint the problem other  
that stepping though each app, as this would take an age to perform  
and be very tedious.


The system has been  rebuilt from src (make world) several times,  
and I have dont a portupgrade  -a. All the local installations  
were  done from ports.


I have tried running a debug kernel, but it didnt seem to yeild  
much useful info.


Im running 6-stable( last build 4 days ago )
its an SMP kernel on 1 gig intels
with 1.2gig ram
2 x 80 gig ide hd














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




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


Re: Freebsd 6-Stable lockups

2006-11-01 Thread chris scott
thecommentsabout old hardware are interesting as all my kit is at least 4 
years old. Its a bit hit and miss though
I have3 systems on 6-stable, only one has the problem. These are the basic 
specs of the systems.


system 1 - one that freezes
this is the current hardware
x2 intel 550 p3
intel  440GX chipset
2 x 512meg ECC pc133 ram, 1 x 128 meg ECC ram
fxp and xl0

old hardware that also freezes was
x2 p3 1 ghz
severworks chipset(asus CUSL2-LS)
2 x 512meg ECC
fxp and xl0


system 2
AMD athlon tbird 700
amd 750 irongate
256 meg  ddr
ep and xl


system 3
2x450 intel p3 slot cpu
intel 440bx
1x 512, 1 x 128
xl, dc, and sis

all machines are using pata drives

looking at the specs, bith the flakey boxes are runniung ecc ram
is anyone having these issues who isnt running ecc ram?

- Original Message - 
From: Paul Beckers [EMAIL PROTECTED]

To: chris scott [EMAIL PROTECTED]
Cc: freebsd-questions@freebsd.org
Sent: Wednesday, November 01, 2006 6:21 PM
Subject: Re: Freebsd 6-Stable lockups



Hi Chris,

I've noticed the same on three of my FreeBSD 6 systems, until now I 
haven't found any clue on this. FreeBSD 5 stable was no problem,  FreeBSD 
6 is quite a mess with no trace at all on what might have  caused the 
machine to freeze. I agree with you that it could very  well be a user 
application problem because my kernel config is quite  trivial, my 
updating routines (cvsup and portupgrade) are trivial and  actually the 
whole configuration of my box isn't exciting. I've  opened a thread at 
bsdforums.org and posted an email on this mailing  list as well.

http://www.freebsdforums.com/forums/showthread.php?t=38765.
http://lists.freebsd.org/pipermail/freebsd-stable/2006-October/ 
030225.html
Perhaps, comparing both configurations could identify the bad 
application.


Kind Regards,
Paul M.C. Beckers

On Nov 1, 2006, at 6:09 PM, chris scott wrote:


Hi all,

I have a kind of anoying problem at the moment. A system I run  keeps 
radomly freezing/locking up. This can be anywhere from 2  hours to a week 
after the last reboot/lockup. The only fix its to  power cycleit. It isnt 
kernel panicing, it just locks. Even  accessing  via serial doent work. I 
have  changed all the hardware  so the issue is unlikely to be there. The 
load on the box isnt all  that high and the memory usage looks fine (all 
rrded). The box is  running quite a lot of services (apache, mysql,exim. 
spamassasing,  clamav, courier, openvpn, zebra). Usually all these 
services, apart  from openvpn and zebra,  run in a jail. I dont think 
this is an  issue as the machine still freezes if i run them non jailed. 
Deactivating all these services apart from openvpn and zebra  (needed for 
monitoring), seems to fix the problem from what I can  see so im fairly 
sure the problem lies in these somewhere. However  can anoyone suggest I 
way i can easily pinpoint the problem other  that stepping though each 
app, as this would take an age to perform  and be very tedious.


The system has been  rebuilt from src (make world) several times,  and I 
have dont a portupgrade  -a. All the local installations  were  done from 
ports.


I have tried running a debug kernel, but it didnt seem to yeild  much 
useful info.


Im running 6-stable( last build 4 days ago )
its an SMP kernel on 1 gig intels
with 1.2gig ram
2 x 80 gig ide hd














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





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


Re: FreeBSD 6.x and disklabel

2006-10-31 Thread Eric Schuele

On 10/30/06 12:05, Reuben A. Popp wrote:

Good morning everyone,

Recently, we've been looking at purchasing a SAN here and I came across this 
site while doing some research.  Seeing as how we just met with reps from 
Apple to discuss their offerings, I thought that the article was well worth 
reading ;)


http://www.mostlygeek.com/node/39

Anyway,  I realize that the article deals with the 5.x branch, so it may not 
be 100% exact when it comes to our implementation (6.x).  The article makes 
note that as of 5.x, there were many parts that were still 32 bit, which in 
turn affected the maximum filesystem size (~2TB).




If you haven't already gotten an answer

The following may help:
  http://www.freebsd.org/projects/bigdisk/index.html

Not that we would need a filesystem larger than that, but does anyone know if 
this is still an issue, or was it changed in 6.x, or if there are plans to 
rework it in -CURRENT?


TIA :)
Reuben A. Popp




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


FreeBSD 6.x on HP c-Class Blade?

2006-10-30 Thread Ewald Jenisch
Hi,

Has anybody out there got experience in running FreeBSD 6.x on a HP
c-Class Blade-system? (see
http://h18004.www1.hp.com/products/blades/components/c-class-components.html)

Any special drivers needed for LAN, SAN etc. - or does FreeBSD work
right out of the box on this hardware?

Thanks much in advance for any clue,
-ewald


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


FreeBSD 6.x and disklabel

2006-10-30 Thread Reuben A. Popp
Good morning everyone,

Recently, we've been looking at purchasing a SAN here and I came across this 
site while doing some research.  Seeing as how we just met with reps from 
Apple to discuss their offerings, I thought that the article was well worth 
reading ;)

http://www.mostlygeek.com/node/39

Anyway,  I realize that the article deals with the 5.x branch, so it may not 
be 100% exact when it comes to our implementation (6.x).  The article makes 
note that as of 5.x, there were many parts that were still 32 bit, which in 
turn affected the maximum filesystem size (~2TB).

Not that we would need a filesystem larger than that, but does anyone know if 
this is still an issue, or was it changed in 6.x, or if there are plans to 
rework it in -CURRENT?

TIA :)
Reuben A. Popp

-- 
Reuben A. Popp

Interim Systems Administrator
Information Technology Department
East Central College
1+ 636 583-5195 ext 2480
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD 6 freeze

2006-10-30 Thread Paul Beckers

Hi,

I've recently tried to install FreeBSD 6.1 with a custom kernel that
comprises support for PF and ALTQ, but is basicly a copy of the GENERIC
kernel shipped with the install CD. I also ran CVSup to get the newest
release of the source that stated after compilation that it would like to be
called 6.2 prerelease. After heading to user applications like apache,
mysql, isc-dhcpd, samba and postfix, I noticed when I came back my
screensaver had stalled and the pc wouldn't respond to any inputs anymore.
It was a complete lockup and before this install with FreeBSD 4 and FreeBSD
5 I never had this problem on this box.

In the mean while I've tried my install with two other boxes and both of
them ended up having the same failure. I've posted a thread on bsdforums
regarding this matter with my kernel config and some of my logfiles
attached, to be found here:
http://www.freebsdforums.com/forums/showthread.php?t=38765.

As I haven't got any clue on where and what to look for, it would be
helpfull to get suggestions on how to troubleshoot this issue.

Kind regards,
P.M.C. Beckers
Netherlands
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 6 freeze

2006-10-30 Thread Frank Shute
On Mon, Oct 30, 2006 at 10:26:47PM +0100, Paul Beckers wrote:

 Hi,
 
 I've recently tried to install FreeBSD 6.1 with a custom kernel that
 comprises support for PF and ALTQ, but is basicly a copy of the GENERIC
 kernel shipped with the install CD. I also ran CVSup to get the newest
 release of the source that stated after compilation that it would like to be
 called 6.2 prerelease. After heading to user applications like apache,
 mysql, isc-dhcpd, samba and postfix, I noticed when I came back my
 screensaver had stalled and the pc wouldn't respond to any inputs anymore.
 It was a complete lockup and before this install with FreeBSD 4 and FreeBSD
 5 I never had this problem on this box.
 
 In the mean while I've tried my install with two other boxes and both of
 them ended up having the same failure. I've posted a thread on bsdforums
 regarding this matter with my kernel config and some of my logfiles
 attached, to be found here:
 http://www.freebsdforums.com/forums/showthread.php?t=38765.
 
 As I haven't got any clue on where and what to look for, it would be
 helpfull to get suggestions on how to troubleshoot this issue.
 

Hi Paul,

I'm not a kernel hacker or anything like it but some of the guys on
freebsd-stable might be able to help you with your problem. Hence,
I've cc'd this reply to there.

It's probably a more appropriate forum than questions for your
problem. Or rather one where you more likely to get an answer.

You're running stable if it says 6.2 prerelease.

-- 

 Frank 


echo f r a n k @ e s p e r a n c e - l i n u x . c o . u k | sed 's/ //g'

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


RE: Recommended remote management card for FreeBSD 6.X?

2006-09-10 Thread Philippe Lang
[EMAIL PROTECTED] wrote:
 Philippe Lang skrev:
 Hi,
 
 What remote management card (like Drac, for example) would
 you recommend for a FreeBSD 6.X Server?
 
 I guess you'll get as many replies as there are vendors here,
 but my 2 cents worth of advice is to go with the HP iLO /
 iLO2  - they work like a charm!

Hi,

I had a look at the iLO2 card, but tell me if I'm wrong: this hardware is 
specific to HP Proliant Servers, right?

---
Philippe Lang
Attik System



smime.p7s
Description: S/MIME cryptographic signature


Recommended remote management card for FreeBSD 6.X?

2006-09-06 Thread Philippe Lang
Hi,

What remote management card (like Drac, for example) would you recommend for a 
FreeBSD 6.X Server?

--
Philippe Lang, Ing. Dipl. EPFL
Attik System
rte de la Fonderie 2
1700 Fribourg
Switzerland
http://www.attiksystem.ch

Tel:  +41 (26) 422 13 75
Fax:  +41 (26) 422 13 76  


smime.p7s
Description: S/MIME cryptographic signature


Re: Recommended remote management card for FreeBSD 6.X?

2006-09-06 Thread Nicklas B. Westerlund

Philippe Lang skrev:

Hi,

What remote management card (like Drac, for example) would you recommend for a 
FreeBSD 6.X Server?


I guess you'll get as many replies as there are vendors here, but my 2 
cents worth of advice is to go with the HP iLO / iLO2  - they work like 
a charm!


Nick.

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


FreeBSD 6-STABLE as guest in VMWare Player on Winxp host

2006-08-28 Thread Niek Bouman
I'm running FreeBSD 6-STABLE as guest in the free VMWare Player on a 
WinXP host.

How can I switch between virtual terminals? Ctrl-Alt-F[n] doesn't work...

By the way, is this the right mailing list to place this question?


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


Re: FreeBSD 6-STABLE as guest in VMWare Player on Winxp host

2006-08-28 Thread Bill Moran
In response to Niek Bouman [EMAIL PROTECTED]:

 I'm running FreeBSD 6-STABLE as guest in the free VMWare Player on a 
 WinXP host.
 How can I switch between virtual terminals? Ctrl-Alt-F[n] doesn't work...
 
 By the way, is this the right mailing list to place this question?

This is more of a VMWare question than a FreeBSD question.

But I suspect you'll have to reconfigure VMWare not to intercept CTRL+ALT.
I seem to remember a configuration option for this somewhere.

-- 
Bill Moran
Collaborative Fusion Inc.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 6-STABLE as guest in VMWare Player on Winxp host

2006-08-28 Thread Micah

Niek Bouman wrote:
I'm running FreeBSD 6-STABLE as guest in the free VMWare Player on a 
WinXP host.

How can I switch between virtual terminals? Ctrl-Alt-F[n] doesn't work...

By the way, is this the right mailing list to place this question?


Thank you,
Niek Bouman


As long as you're not in an X11 session, plain old Alt+Fn works to 
switch terminals. If you are in X11, I think there's a way to change the 
key combination to something else. Check with Google.


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


RE: FreeBSD 6-STABLE as guest in VMWare Player on Winxp host

2006-08-28 Thread Bouman, N.J. \(Niek, Student EE,EL\)
 I'm running FreeBSD 6-STABLE as guest in the free VMWare Player on a 
 WinXP host.
 How can I switch between virtual terminals? Ctrl-Alt-F[n] doesn't work...
 
 By the way, is this the right mailing list to place this question?

I have found it somewhere with google.
One has to press Ctrl-Alt-Space and subsequently (while still holding Ctrl and 
Alt) the desired F-key.

Thanks for the reactions,
Niek

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


Re: FreeBSD 6.X and postfix/postmap - corrupt maps

2006-08-16 Thread Alex Zbyslaw

Darek M wrote:

I am unable to use the 'postmap' program under 6.0- or 6.1-RELEASE.  
Instead of building a valid hash map, it puts in various data from 
what appears to be my /etc/master.passwd file, complete with crypted 
password.  I believe that this is some type of a library issue.


I'm doing this with postfix-2.3.2 downloaded right off the website, 
but the same happened with earlier releases, as well as an install 
from the ports.


As an example, I use the file 'transport' which contains
# cat /etc/postfix/transport
*   smtp:[192.168.0.1]:25

The syntax is correct as I use it on 5.4 and 5.5 boxes (I've had to 
downgrade to that to be able to use postfix).


# uname -a
FreeBSD some.host.name 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Fri Jul 14 
13:43:37 EDT 2006 darek@:/usr/src/sys/i386/compile/SOME_KERNEL  i386


# /usr/sbin/postmap transport

On a system where postmap works fine, this is what I get:

# strings /etc/postfix/transport
* smtp:[192.168.22.29]:25

Please scroll down to APPENDIX_1 to see the 'strings' output on a 6.1 
box.  I tried this on 6.0 and 6.1 installed on a number of different 
machines, all with the same result, so I don't think that this is a 
memory or hardware issue.  I also tried this on 6.x, 4.10, 4.11, 5.4 
and 5.5 on the same system, and only the 6.x installs failed in this way.


Also, scroll down to APPENDIX_2 for an strace of the postmap 
execution.  You will note that the open, read, and write calls often 
have weird info in them (I believe the filename part), with parts of 
strings, and random characters, like 'open(ÿ'



I got a couple USB-only Dell towers for my SMTP boxes, and FreeBSD 
below 6 doesn't recognize the keyboard during install.  So I'm forced 
to use 6.x with these.  Unless someone knows how to use a USB keyboard 
in 5.5 installs...


I have no 6.X boxes so can't help directly, though I find it hard to 
believe that postfix+6.X fails for everyone so strongly suspect 
something local to the way you have installed, though have no clue what.


Some help debugging, though: you sent the output of strace on 6.1 with 
the wacky file opens.  Try the same strace on 5.X and then diff the two 
to see what ought to have been happening - that may give some clue as to 
what is actually going wrong.


As for USB keyboards + 5.5 - on 5.4 there was an install boot option 
boot with USB keyboard or somesuch.  Don't know if that's still there 
with 5.5, but it sounds like you have a 5.4 CD so you could try that.  
The problem *may* be that 5.X doesn't support your USB chipset, of 
course - no idea how likely that is.  Also search the BIOS for any USB 
related options and try fiddling with them!  You don't mention the model 
of Dell, but you could try a google for the model + freebsd.


Searching the mailing list archives (or just plain google) for USB 
keyboard should turn up some stuff as well - possibly far too much!


Final thought - what about postfix-21?  Does it do everything you need?  
Does it have the same problem?


hth,

--Alex



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


FreeBSD 6.X and postfix/postmap - corrupt maps

2006-08-15 Thread Darek M

Hi there,

I am unable to use the 'postmap' program under 6.0- or 6.1-RELEASE.  
Instead of building a valid hash map, it puts in various data from what 
appears to be my /etc/master.passwd file, complete with crypted 
password.  I believe that this is some type of a library issue.


I'm doing this with postfix-2.3.2 downloaded right off the website, but 
the same happened with earlier releases, as well as an install from the 
ports.


As an example, I use the file 'transport' which contains
# cat /etc/postfix/transport
*   smtp:[192.168.0.1]:25

The syntax is correct as I use it on 5.4 and 5.5 boxes (I've had to 
downgrade to that to be able to use postfix).


# uname -a
FreeBSD some.host.name 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Fri Jul 14 
13:43:37 EDT 2006 darek@:/usr/src/sys/i386/compile/SOME_KERNEL  i386


# /usr/sbin/postmap transport

On a system where postmap works fine, this is what I get:

# strings /etc/postfix/transport
* smtp:[192.168.22.29]:25

Please scroll down to APPENDIX_1 to see the 'strings' output on a 6.1 
box.  I tried this on 6.0 and 6.1 installed on a number of different 
machines, all with the same result, so I don't think that this is a 
memory or hardware issue.  I also tried this on 6.x, 4.10, 4.11, 5.4 and 
5.5 on the same system, and only the 6.x installs failed in this way.


Also, scroll down to APPENDIX_2 for an strace of the postmap execution.  
You will note that the open, read, and write calls often have weird info 
in them (I believe the filename part), with parts of strings, and random 
characters, like 'open(ÿ'



I got a couple USB-only Dell towers for my SMTP boxes, and FreeBSD below 
6 doesn't recognize the keyboard during install.  So I'm forced to use 
6.x with these.  Unless someone knows how to use a USB keyboard in 5.5 
installs...


Thanks.


APPENDIX_1
# strings transport.db
darek
*my encrypted password*
User 
/home/darek
/usr/local/bin/bash
darek
*my encrypted password*
User 
/home/darek
/usr/local/bin/bash
1darekdarek
*my encrypted password*
User 
/home/darek
/usr/local/bin/bash
darek
*my encrypted password*
User 
/home/darek
/usr/local/bin/bash
AdarekGdnscache
User 
/home/Gdnscache
/sbin/noshell
Gdnscache
User 
/home/Gdnscache
/sbin/noshell
nobody
Unprivileged user
/nonexistent
/usr/sbin/nologin
nobody
Unprivileged user
/nonexistent
/usr/sbin/nologin
Post Office Owner
/nonexistent
/usr/sbin/nologin
1poppop
Post Office Owner
/nonexistent
/usr/sbin/nologin
Apopbind
Bind Sandbox
/usr/sbin/nologin
bind
Bind Sandbox
/usr/sbin/nologin
bind
Bind Sandbox
/usr/sbin/nologin
5bind
Bind Sandbox
/usr/sbin/nologin
kmem
KMem Sandbox
/usr/sbin/nologin
kmem
KMem Sandbox
/usr/sbin/nologin
Tty Sandbox
/usr/sbin/nologin
Tty Sandbox
/usr/sbsmtp:[192.168.0.1]:25


APPENDIX_2
# mount -t procfs proc /proc
# /usr/local/bin/strace /usr/sbin/postmap transport
execve(0xbfbfe720, [0xbfbfec10], [/* 0 vars */]) = 0
mmap(0, 3608, PROT_READ|PROT_WRITE, MAP_ANON, -1, 0) = 0x28082000
munmap(0x28082000, 3608)= 0
__sysctl([...], 0x2807e998, 0xbfbfe9c4, NULL, 0) = 0
mmap(0, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0) = 
0x28082000

issetugid(0)= 0
open(/etc/libmap.conf, O_RDONLY)  = -1 ENOENT (No such file or 
directory)

open(/var/run/ld-elf.so.hints, O_RDONLY) = 3
read(3, DUMP_REL_PRE\0LD_DUMP_REL_POST\0__..., 128) = 128
lseek(3, 128, SEEK_SET) = 128
read(3, /lib:/usr/lib:/usr/lib/compat:/u..., 60) = 60
close(3)= 0
access(/lib/libpcre.so.0, F_OK)   = -1 ENOENT (No such file or 
directory)
access(/usr/lib/libpcre.so.0, F_OK)   = -1 ENOENT (No such file or 
directory)
access(/usr/lib/compat/libpcre.so.0, F_OK) = -1 ENOENT (No such file 
or directory)
access(/usr/X11R6/lib/libpcre.so.0, F_OK) = -1 ENOENT (No such file or 
directory)

access(/usr/local/lib/libpcre.so.0, F_OK) = 0
open(/usr/local/lib/libpcre.so.0, O_RDONLY) = 3
fstat(3, {st_mode=0, st_size=0, ...})   = 0
read(3, \177ELF\1\1\1\t\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\234\23..., 
4096) = 4096
mmap(0, 94208, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_NOCORE, 3, 0) = 
0x2808a000

mprotect(0x28099000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x28099000, 4096, PROT_READ|PROT_EXEC) = 0
mmap(0x2809a000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 
0x1) = 0x2809a000

close(3)= 0
access(/lib/libc.so.6, F_OK)  = 0
open(/lib/libc.so.6, O_RDONLY)= 3
fstat(3, {st_mode=0, st_size=0, ...})   = 0
read(3, \177ELF\1\1\1\t\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P\331\1..., 
4096) = 4096
mmap(0, 884736, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_NOCORE, 3, 0) = 
0x280a1000

mprotect(0x2816, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2816, 4096, PROT_READ|PROT_EXEC) = 0
mmap(0x28161000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 
0xc) = 0x28161000
mmap(0x28166000, 77824, PROT_READ|PROT_WRITE, 

Re: FreeBSD 6 Hard Lock no logs

2006-07-27 Thread Lowell Gilbert
Don't top-post, please.

Rob Connon (Info) [EMAIL PROTECTED] writes:

 The system completly locks up, attached keyboard is useless.. and as
 mentioned no errors.. the only pattern is tuesday/wednesday it
 freezes.. other days of the week it's fine under heavy load..
 buildworlds are not a problem..

So you tried a debugging kernel and couldn't break to the debugger?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 6 Hard Lock no logs

2006-07-27 Thread Rob Connon (Info)

Lowell Gilbert wrote:


Don't top-post, please.


 

LOL sorry, it came from my cell phone, i updated to 6.1 - Release, 
hopefully i'll have better luck, i'll keep you posted.


smime.p7s
Description: S/MIME Cryptographic Signature


Re: FreeBSD 6 Hard Lock no logs

2006-07-26 Thread Lowell Gilbert
Rob Connon (Info) [EMAIL PROTECTED] writes:

 Hi,

 I have a web/mail server thats running the lastest version of FreeBSD
 6.0-RELEASE-p9 #4. In the last month or so it's started hard locking..
 when the machine locks up i can still ping it and get connects from
 telneting to 80,22,etc sometimes i get a banner and sometimes i
 dont.. but there are
 no errors on the console or in the logs.

 The odd thing is the locking seems to happen within a certain time
 window (mon,tues) and never end of the week or weekend.. i suspected
 it could have been
 a bad cron job but nothing falls into that time frame.

 As a test i've been rebooting the server everynight to see if that
 would help the machine get past the begining of the week with out a
 hang and again this morning
 even though i rebooted last night at 10pm hung around 9:47am.

 The machine is a Dell PowerEdge 2550, I've had dell come and replace
 the MB and have ran all their diagnostics aswell with no errors
 reported..
 I've been reading alot about APIC and ACPI and people having similar
 issues but nothing that fits the bill... below is the dmesg and output
 of vmstat -i.. another odd thing is the rate for the CPU timer is
 extremely high compared to other machines with similar hardware or
 faster hardware.

 Any help on where to look next would be awesome.

Try a debugging kernel and see if you can break to the debugger after
the freeze.  If so, youcan look at task states.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 6 Hard Lock no logs

2006-07-26 Thread Rob Connon (Info)

HI,

The system completly locks up, attached keyboard is useless.. and as 
mentioned no errors.. the only pattern is tuesday/wednesday it freezes.. 
other days of the week it's fine under heavy load..

buildworlds are not a problem..

Rob.

Lowell Gilbert wrote:


Rob Connon (Info) [EMAIL PROTECTED] writes:

 


Hi,

I have a web/mail server thats running the lastest version of FreeBSD
6.0-RELEASE-p9 #4. In the last month or so it's started hard locking..
when the machine locks up i can still ping it and get connects from
telneting to 80,22,etc sometimes i get a banner and sometimes i
dont.. but there are
no errors on the console or in the logs.

The odd thing is the locking seems to happen within a certain time
window (mon,tues) and never end of the week or weekend.. i suspected
it could have been
a bad cron job but nothing falls into that time frame.

As a test i've been rebooting the server everynight to see if that
would help the machine get past the begining of the week with out a
hang and again this morning
even though i rebooted last night at 10pm hung around 9:47am.

The machine is a Dell PowerEdge 2550, I've had dell come and replace
the MB and have ran all their diagnostics aswell with no errors
reported..
I've been reading alot about APIC and ACPI and people having similar
issues but nothing that fits the bill... below is the dmesg and output
of vmstat -i.. another odd thing is the rate for the CPU timer is
extremely high compared to other machines with similar hardware or
faster hardware.

Any help on where to look next would be awesome.
   



Try a debugging kernel and see if you can break to the debugger after
the freeze.  If so, youcan look at task states.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
 





smime.p7s
Description: S/MIME Cryptographic Signature


FreeBSD 6 Hard Lock no logs

2006-07-25 Thread Rob Connon (Info)

Hi,

I have a web/mail server thats running the lastest version of FreeBSD 
6.0-RELEASE-p9 #4. In the last month or so it's started hard locking..
when the machine locks up i can still ping it and get connects from 
telneting to 80,22,etc sometimes i get a banner and sometimes i dont.. 
but there are

no errors on the console or in the logs.

The odd thing is the locking seems to happen within a certain time 
window (mon,tues) and never end of the week or weekend.. i suspected it 
could have been

a bad cron job but nothing falls into that time frame.

As a test i've been rebooting the server everynight to see if that would 
help the machine get past the begining of the week with out a hang and 
again this morning

even though i rebooted last night at 10pm hung around 9:47am.

The machine is a Dell PowerEdge 2550, I've had dell come and replace the 
MB and have ran all their diagnostics aswell with no errors reported..
I've been reading alot about APIC and ACPI and people having similar 
issues but nothing that fits the bill... below is the dmesg and output 
of vmstat -i.. another odd thing is the rate for the CPU timer is 
extremely high compared to other machines with similar hardware or 
faster hardware.


Any help on where to look next would be awesome.

interrupt  total   rate
irq1: atkbd0 107  0
irq6: fdc010  0
irq13: npx01  0
irq14: ata0   74  0
irq16: fxp027110 12
irq20: amr0   105950 48
cpu0: timer  4385477   1999
cpu1: timer  4369967   1992
Total696   4053


Copyright (c) 1992-2005 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 6.0-RELEASE-p9 #4: Thu Jun 22 14:54:15 PDT 2006
   [EMAIL PROTECTED]:/usr/src/sys/i386/compile/SMP
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: Intel(R) Pentium(R) III CPU family  1266MHz (1258.22-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  = 1073676288 (1023 MB)
avail memory = 1041612800 (993 MB)
ACPI APIC Table: DELL   PE2550  
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
cpu0 (BSP): APIC ID:  1
cpu1 (AP): APIC ID:  0
ioapic0: Changing APIC ID to 2
ioapic1: Changing APIC ID to 3
MADT: Forcing active-low polarity and level trigger for SCI
ioapic0 Version 1.1 irqs 0-15 on motherboard
ioapic1 Version 1.1 irqs 16-31 on motherboard
npx0: [FAST]
npx0: math processor on motherboard
npx0: INT 16 interface
acpi0: DELL PE2550 on motherboard
acpi0: Power Button (fixed)
pci_link0: ACPI PCI Link LNK0 irq 5 on acpi0
pci_link1: ACPI PCI Link LNK1 irq 10 on acpi0
pci_link2: ACPI PCI Link LNK2 on acpi0
pci_link3: ACPI PCI Link LNK3 on acpi0
pci_link4: ACPI PCI Link LNK4 irq 5 on acpi0
pci_link5: ACPI PCI Link LNK5 irq 10 on acpi0
pci_link6: ACPI PCI Link LNK6 on acpi0
pci_link7: ACPI PCI Link LNK7 on acpi0
pci_link8: ACPI PCI Link LNK8 on acpi0
pci_link9: ACPI PCI Link LNK9 on acpi0
pci_link10: ACPI PCI Link LNKA on acpi0
pci_link11: ACPI PCI Link LNKB on acpi0
pci_link12: ACPI PCI Link LNKC on acpi0
pci_link13: ACPI PCI Link LNKD on acpi0
pci_link14: ACPI PCI Link LNKE on acpi0
pci_link15: ACPI PCI Link LNKF irq 10 on acpi0
pci_link16: ACPI PCI Link LUSB irq 11 on acpi0
Timecounter ACPI-safe frequency 3579545 Hz quality 1000
acpi_timer0: 32-bit timer at 3.579545MHz port 0x808-0x80b on acpi0
cpu0: ACPI CPU on acpi0
cpu1: ACPI CPU on acpi0
pcib0: ACPI Host-PCI bridge on acpi0
pci0: ACPI PCI bus on pcib0
pcib1: PCI-PCI bridge at device 2.0 on pci0
pci1: PCI bus on pcib1
pcib2: PCI-PCI bridge at device 0.0 on pci1
pci2: PCI bus on pcib2
amr0: LSILogic MegaRAID 1.51 mem 0xf000-0xf7ff irq 20 at 
device 0.0 on pci2

amr0: LSILogic PERC 3/DC Firmware 197O, BIOS 3.35, 128MB RAM
pci1: mass storage, SCSI at device 1.0 (no driver attached)
pci0: display, VGA at device 14.0 (no driver attached)
isab0: PCI-ISA bridge port 0x8a0-0x8af at device 15.0 on pci0
isa0: ISA bus on isab0
atapci0: ServerWorks ROSB4 UDMA33 controller port 
0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x8b0-0x8bf at device 15.1 on pci0

ata0: ATA channel 0 on atapci0
ata1: ATA channel 1 on atapci0
ohci0: OHCI (generic) USB controller mem 0xfe40-0xfe400fff irq 11 
at device 15.2 on pci0

ohci0: [GIANT-LOCKED]
usb0: OHCI version 1.0, legacy support
usb0: OHCI (generic) USB controller on ohci0
usb0: USB revision 1.0
uhub0: (0x1166) OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
pcib3: ACPI Host-PCI bridge on acpi0
pci3: ACPI PCI bus on pcib3
bge0: Broadcom BCM5700 Gigabit Ethernet, ASIC rev. 

Re: FreeBSD 6 Hard Lock no logs

2006-07-25 Thread Derek Ragona
First look for the obvious problems like low disk or swap space.  If these 
are OK, you might need to run a script that logs various things and sift 
through it.  I would suggest writing a shell script that sleeps for say 30 
to 60 seconds, then opens a log file and does

ps -ax
and some other echo to give separation and see what is running, then closes 
the file and sleeps again.


Obviously you will only be interested in the last couple of entries in this 
file.


-Derek

At 01:19 PM 7/25/2006, Rob Connon (Info) wrote:

Hi,

I have a web/mail server thats running the lastest version of FreeBSD 
6.0-RELEASE-p9 #4. In the last month or so it's started hard locking..
when the machine locks up i can still ping it and get connects from 
telneting to 80,22,etc sometimes i get a banner and sometimes i dont.. but 
there are

no errors on the console or in the logs.

The odd thing is the locking seems to happen within a certain time window 
(mon,tues) and never end of the week or weekend.. i suspected it could 
have been

a bad cron job but nothing falls into that time frame.

As a test i've been rebooting the server everynight to see if that would 
help the machine get past the begining of the week with out a hang and 
again this morning

even though i rebooted last night at 10pm hung around 9:47am.

The machine is a Dell PowerEdge 2550, I've had dell come and replace the 
MB and have ran all their diagnostics aswell with no errors reported..
I've been reading alot about APIC and ACPI and people having similar 
issues but nothing that fits the bill... below is the dmesg and output of 
vmstat -i.. another odd thing is the rate for the CPU timer is extremely 
high compared to other machines with similar hardware or faster hardware.


Any help on where to look next would be awesome.

interrupt  total   rate
irq1: atkbd0 107  0
irq6: fdc010  0
irq13: npx01  0
irq14: ata0   74  0
irq16: fxp027110 12
irq20: amr0   105950 48
cpu0: timer  4385477   1999
cpu1: timer  4369967   1992
Total696   4053


Copyright (c) 1992-2005 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 6.0-RELEASE-p9 #4: Thu Jun 22 14:54:15 PDT 2006
   [EMAIL PROTECTED]:/usr/src/sys/i386/compile/SMP
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: Intel(R) Pentium(R) III CPU family  1266MHz (1258.22-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  = 1073676288 (1023 MB)
avail memory = 1041612800 (993 MB)
ACPI APIC Table: DELL   PE2550  
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
cpu0 (BSP): APIC ID:  1
cpu1 (AP): APIC ID:  0
ioapic0: Changing APIC ID to 2
ioapic1: Changing APIC ID to 3
MADT: Forcing active-low polarity and level trigger for SCI
ioapic0 Version 1.1 irqs 0-15 on motherboard
ioapic1 Version 1.1 irqs 16-31 on motherboard
npx0: [FAST]
npx0: math processor on motherboard
npx0: INT 16 interface
acpi0: DELL PE2550 on motherboard
acpi0: Power Button (fixed)
pci_link0: ACPI PCI Link LNK0 irq 5 on acpi0
pci_link1: ACPI PCI Link LNK1 irq 10 on acpi0
pci_link2: ACPI PCI Link LNK2 on acpi0
pci_link3: ACPI PCI Link LNK3 on acpi0
pci_link4: ACPI PCI Link LNK4 irq 5 on acpi0
pci_link5: ACPI PCI Link LNK5 irq 10 on acpi0
pci_link6: ACPI PCI Link LNK6 on acpi0
pci_link7: ACPI PCI Link LNK7 on acpi0
pci_link8: ACPI PCI Link LNK8 on acpi0
pci_link9: ACPI PCI Link LNK9 on acpi0
pci_link10: ACPI PCI Link LNKA on acpi0
pci_link11: ACPI PCI Link LNKB on acpi0
pci_link12: ACPI PCI Link LNKC on acpi0
pci_link13: ACPI PCI Link LNKD on acpi0
pci_link14: ACPI PCI Link LNKE on acpi0
pci_link15: ACPI PCI Link LNKF irq 10 on acpi0
pci_link16: ACPI PCI Link LUSB irq 11 on acpi0
Timecounter ACPI-safe frequency 3579545 Hz quality 1000
acpi_timer0: 32-bit timer at 3.579545MHz port 0x808-0x80b on acpi0
cpu0: ACPI CPU on acpi0
cpu1: ACPI CPU on acpi0
pcib0: ACPI Host-PCI bridge on acpi0
pci0: ACPI PCI bus on pcib0
pcib1: PCI-PCI bridge at device 2.0 on pci0
pci1: PCI bus on pcib1
pcib2: PCI-PCI bridge at device 0.0 on pci1
pci2: PCI bus on pcib2
amr0: LSILogic MegaRAID 1.51 mem 0xf000-0xf7ff irq 20 at device 
0.0 on pci2

amr0: LSILogic PERC 3/DC Firmware 197O, BIOS 3.35, 128MB RAM
pci1: mass storage, SCSI at device 1.0 (no driver attached)
pci0: display, VGA at device 14.0 (no driver attached)
isab0: PCI-ISA bridge port 0x8a0-0x8af at device 15.0 on pci0
isa0: ISA bus on isab0
atapci0: ServerWorks ROSB4 UDMA33 controller port 
0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x8b0-0x8bf at 

FreeBSD 6: open(/dev/lpt0, O_WRONLY) hangup fixed

2006-07-20 Thread george+freebsd
I've solved my /dev/lpt0 problem.  Here is what happened:

1. I observed that the problem is also happening on FreeBSD 6.0.
2. It isn't happening on 5.3.
3. I sprinkled some printf's into lptopen in sys/dev/ppbus/lpt.c.
4. I compiled a new kernel, stripping a whole bunch of stuff out
   of the generic kernel.  The problem went away.
5. I went back to the original lpt.c.  Still working.
6. I compiled another kernel, adding device plip back in.  The
   problem came back.

So the problem, whatever it is, seems to involve an interaction
between printing and plip.  Since I have printing working again,
debugging the problem is no longer a high priority for me.  But
if anyone has some suggestions for debugging, I would be happy to
try them this weekend.

Am I the only dinosaur still using a parallel port printer?  It
seems incredible to me that no one else using 6.0/6.1 could have
encountered this problem.  Even though I have fixed the problem,
it should probably be debugged properly, unless there's sentiment
for removing device plip from the generic kernel.
-- George Mitchell

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


FreeBSD 6 Jails - REJ apache processes? [was: Apache 2 in 6.0 jails: Connection refused: connect to listener on 0.0.0.0:80]

2006-07-18 Thread Philippe Lang
Hi,

Sorry to insist, really, but this bug is really annoying: today, two more 
apache servers have frozen while being scanner by a crawler:

[Sat Jul 15 14:25:40 2006] [error] [client 66.147.238.238] File does not exist: 
/home/abc.ch/www/data/blogs
[Sat Jul 15 14:25:40 2006] [error] [client 66.147.238.238] File does not exist: 
/home/abc.ch/www/data/blog
[Sat Jul 15 14:25:41 2006] [error] [client 66.147.238.238] File does not exist: 
/home/abc.ch/www/data/blogtest
[Sat Jul 15 14:25:41 2006] [error] [client 66.147.238.238] File does not exist: 
/home/abc.ch/www/data/b2
[Sat Jul 15 14:25:42 2006] [warn] (61)Connection refused: connect to listener 
on 0.0.0.0:80
[Sat Jul 15 14:25:43 2006] [warn] (61)Connection refused: connect to listener 
on 0.0.0.0:80
[Sat Jul 15 14:25:44 2006] [warn] (61)Connection refused: connect to listener 
on 0.0.0.0:80
[Sat Jul 15 14:25:45 2006] [warn] (61)Connection refused: connect to listener 
on 0.0.0.0:80


I'm trying to figure out what happens: here is a ps before restarting apache:


j25# ps -afxu
USERPID %CPU %MEM   VSZ   RSS  TT  STAT STARTED  TIME COMMAND
root   2133  0.0  0.0  1292   760  ??  IsJ  26Mar06   0:17.05 /usr/sbin/syslogd 
-ss
root   2198  0.0  0.0  3352  1932  ??  IsJ  26Mar06   0:00.46 /usr/sbin/sshd
root   2203  0.0  0.1  3396  2288  ??  SsJ  26Mar06   2:59.26 sendmail: 
accepting connections (sendmail)
smmsp  2207  0.0  0.1  3296  2100  ??  IsJ  26Mar06   0:03.80 sendmail: Queue 
[EMAIL PROTECTED]:30:00 for /var/spool/clientmqueue (sendmail)
root   2213  0.0  0.0  1312   864  ??  IsJ  26Mar06   0:22.97 /usr/sbin/cron -s
root   2241  0.0  0.3 23208 12368  ??  IsJ  11Jul06   0:21.29 
/usr/local/sbin/httpd -DNOHTTPACCEPT
root   2261  0.0  0.0  1384   952  ??  IsJ  26Mar06   0:01.57 /usr/sbin/inetd 
-wW -a 83.222.129.25
root  41279  0.0  0.1  6096  3160  ??  IsJ   5:41PM   0:00.04 sshd: plang 
[priv] (sshd)
plang 41281  0.0  0.1  6092  3156  ??  SJ5:41PM   0:00.02 sshd: [EMAIL 
PROTECTED] (sshd)
www   80889  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]
www   80891  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]
www   80892  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]
www   80893  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]
www   80894  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]
www   80897  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]
www   80903  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]
www   80909  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]
www   80910  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]
www   80911  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]
www   80917  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]
www   80924  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]
www   80928  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]
www   80936  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]
www   80937  0.0  0.0 0 0  ??  REJ  Sat02PM   0:00.01 [httpd]


What are all these processes with the REJ state?

After an apache restart, here is a ps again:


j25# ps -afxu
USERPID %CPU %MEM   VSZ   RSS  TT  STAT STARTED  TIME COMMAND
root   2133  0.0  0.0  1292   760  ??  IsJ  26Mar06   0:17.06 /usr/sbin/syslogd 
-ss
root   2198  0.0  0.0  3352  1932  ??  IsJ  26Mar06   0:00.46 /usr/sbin/sshd
root   2203  0.0  0.1  3396  2288  ??  SsJ  26Mar06   2:59.27 sendmail: 
accepting connections (sendmail)
smmsp  2207  0.0  0.1  3296  2100  ??  IsJ  26Mar06   0:03.80 sendmail: Queue 
[EMAIL PROTECTED]:30:00 for /var/spool/clientmqueue (sendmail)
root   2213  0.0  0.0  1312   864  ??  IsJ  26Mar06   0:22.97 /usr/sbin/cron -s
root   2261  0.0  0.0  1384   952  ??  IsJ  26Mar06   0:01.57 /usr/sbin/inetd 
-wW -a 83.222.129.25
root  41279  0.0  0.1  6096  3160  ??  IsJ   5:41PM   0:00.04 sshd: plang 
[priv] (sshd)
plang 41281  0.0  0.1  6092  3156  ??  SJ5:41PM   0:00.39 sshd: [EMAIL 
PROTECTED] (sshd)
root  41657  0.0  0.3 22496 11680  ??  SsJ   5:47PM   0:00.20 
/usr/local/sbin/httpd -DNOHTTPACCEPT
www   41658  0.0  0.3 22572 11756  ??  IJ5:47PM   0:00.01 
/usr/local/sbin/httpd -DNOHTTPACCEPT
www   41659  0.0  0.3 22564 11752  ??  IJ5:47PM   0:00.01 
/usr/local/sbin/httpd -DNOHTTPACCEPT
www   41660  0.0  0.3 22524 11696  ??  IJ5:47PM   0:00.00 
/usr/local/sbin/httpd -DNOHTTPACCEPT
www   41661  0.0  0.3 22524 11696  ??  IJ5:47PM   0:00.00 
/usr/local/sbin/httpd -DNOHTTPACCEPT
www   41662  0.0  0.3 22524 11696  ??  IJ5:47PM   0:00.00 
/usr/local/sbin/httpd -DNOHTTPACCEPT
www   41663  0.0  0.3 22524 11716  ??  IJ5:47PM   0:00.00 
/usr/local/sbin/httpd -DNOHTTPACCEPT
www   41664  0.0  0.3 22524 11716  ??  IJ5:48PM   0:00.00 
/usr/local/sbin/httpd -DNOHTTPACCEPT
www   41665  0.0  0.3 22524 11716  ??  IJ5:48PM   0:00.00 
/usr/local/sbin/httpd -DNOHTTPACCEPT


REJ has become IJ now, and the server works again.


I did the same for sockstat and netstat -a, each 

Re: FreeBSD 6 Jails - REJ apache processes? [was: Apache 2 in 6.0 jails: Connection refused: connect to listener on 0.0.0.0:80]

2006-07-18 Thread Anish Mistry
On Tuesday 18 July 2006 12:19, Philippe Lang wrote:
 Hi,

 Sorry to insist, really, but this bug is really annoying: today,
 two more apache servers have frozen while being scanner by a
 crawler:

 [Sat Jul 15 14:25:40 2006] [error] [client 66.147.238.238] File
 does not exist: /home/abc.ch/www/data/blogs [Sat Jul 15 14:25:40
 2006] [error] [client 66.147.238.238] File does not exist:
 /home/abc.ch/www/data/blog [Sat Jul 15 14:25:41 2006] [error]
 [client 66.147.238.238] File does not exist:
 /home/abc.ch/www/data/blogtest [Sat Jul 15 14:25:41 2006] [error]
 [client 66.147.238.238] File does not exist:
 /home/abc.ch/www/data/b2 [Sat Jul 15 14:25:42 2006] [warn]
 (61)Connection refused: connect to listener on 0.0.0.0:80 [Sat Jul
 15 14:25:43 2006] [warn] (61)Connection refused: connect to
 listener on 0.0.0.0:80 [Sat Jul 15 14:25:44 2006] [warn]
 (61)Connection refused: connect to listener on 0.0.0.0:80 [Sat Jul
 15 14:25:45 2006] [warn] (61)Connection refused: connect to
 listener on 0.0.0.0:80
In the apache config specifying the jail IP in the Listen directive 
fixes it for me.
Listen 192.168.1.101:80

-- 
Anish Mistry
[EMAIL PROTECTED]
AM Productions http://am-productions.biz/


pgpYGio7bdtOY.pgp
Description: PGP signature


Re: SSH tunneling to FreeBSD 6.x using entunnel ...

2006-06-23 Thread Marc G. Fournier


This worked perfectly, thank you ...


On Thu, 22 Jun 2006, Lowell Gilbert wrote:


Marc G. Fournier [EMAIL PROTECTED] writes:


I have a client that has been using entunnel for the longest time to
do an SSH tunnel into their vServer ... we've recently begun upgrading
to FreeBSD 6.x, and entunnel is no longer working (upgraded from
FreeBSD 4.x) ...

Apparenty, bitvise.com's tunnelier has the same problem ...

The way the client describes how entunnel used to work for them:

entunnel was great - i never had to think about it. it just worked,
all the time, automatically - came up at startup as a service and just
sat in the system tray.

Without having to downgrade their OpenSSH to the same version as was
on FreeBSD 4.x (bad option!), is there something that I can look at on
the FreeBSD 6.x OpenSSH to fix the problem?  Maybe some backwards
compatibility mode?


I don't know those particular Windows clients, but maybe they want
your sshd_config to enable PasswordAuthentication?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]




Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


SSH tunneling to FreeBSD 6.x using entunnel ...

2006-06-22 Thread Marc G. Fournier


I have a client that has been using entunnel for the longest time to do an 
SSH tunnel into their vServer ... we've recently begun upgrading to 
FreeBSD 6.x, and entunnel is no longer working (upgraded from FreeBSD 4.x) 
...


Apparenty, bitvise.com's tunnelier has the same problem ...

The way the client describes how entunnel used to work for them:

entunnel was great - i never had to think about it. it just worked, all 
the time, automatically - came up at startup as a service and just sat in 
the system tray.


Without having to downgrade their OpenSSH to the same version as was on 
FreeBSD 4.x (bad option!), is there something that I can look at on the 
FreeBSD 6.x OpenSSH to fix the problem?  Maybe some backwards 
compatibility mode?


Thanks ...


Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SSH tunneling to FreeBSD 6.x using entunnel ...

2006-06-22 Thread Lowell Gilbert
Marc G. Fournier [EMAIL PROTECTED] writes:

 I have a client that has been using entunnel for the longest time to
 do an SSH tunnel into their vServer ... we've recently begun upgrading
 to FreeBSD 6.x, and entunnel is no longer working (upgraded from
 FreeBSD 4.x) ...

 Apparenty, bitvise.com's tunnelier has the same problem ...

 The way the client describes how entunnel used to work for them:

 entunnel was great - i never had to think about it. it just worked,
 all the time, automatically - came up at startup as a service and just
 sat in the system tray.

 Without having to downgrade their OpenSSH to the same version as was
 on FreeBSD 4.x (bad option!), is there something that I can look at on
 the FreeBSD 6.x OpenSSH to fix the problem?  Maybe some backwards
 compatibility mode?

I don't know those particular Windows clients, but maybe they want
your sshd_config to enable PasswordAuthentication?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Compatible bottom end ibm servers with freebsd 6

2006-06-19 Thread Gary

Hello all,

We have a client who is looking to buy a bottom end ibm server. Can anyone
verify if they have freebsd 6 running on any of the following or similar?
I'm guessing the issues would be with things like SERIAL ATA - INTEGRATED,
RAID 0  1 ONBOARD type controllers and the like if any.

Any success with xSeries x100, x206m, x226, x306M?

If someone gives me a green light for these or any other similar ibms, that
would be great.

Many thanks

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


Re: storcon for FreeBSD 6.x ... ?

2006-06-16 Thread Oleg Sharoiko
On Mon, 2006-06-12 at 02:10 -0300, Marc G. Fournier wrote:

 Does anyone know if there is one somewhere for FreeBSD 6.x?  Intel's site 
 only has a 4.1 version that I can find ...
 
 If not, what is the best method of connecting to and looking at an IIR 
 controller with FreeBSD 6.x?

Archive available from inetl.com contains packages for both 4.x and 5.x.
It's possible that storcon will work with corresponding COMPAT_XX
options in kernel and misc/compatXX packages. At least you will be
surely able to start storcon. I have SRCU32 controller in 6.x but that's
AMD64 machine and storcon reports that it can not find controller. I'm
not sure if this is due to version or architecture change. I'll probably
try to contact intel regarding this case...

-- 
Oleg Sharoiko.
Software and Network Engineer
Computer Center of Rostov State University.

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


storcon for FreeBSD 6.x ... ?

2006-06-11 Thread Marc G. Fournier


Does anyone know if there is one somewhere for FreeBSD 6.x?  Intel's site 
only has a 4.1 version that I can find ...


If not, what is the best method of connecting to and looking at an IIR 
controller with FreeBSD 6.x?


Thx ...


Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: A really really weird problem with FreeBSD 6..

2006-05-21 Thread Hugo Silva

Hugo Silva wrote:

jekillen wrote:


On May 19, 2006, at 10:00 AM, Hugo Silva wrote:


Hi list,

I've been using FreeBSD on the desktop for several years now without 
any major problems. However, as of lately, I've been running into a 
very annoying problem. I'll try to explain:


I play some OpenGL games on FreeBSD and have always played them 
without trouble. However, now I can't play my game of election 
(Wolfenstein: Enemy Territory) for more than 20 or 30 minutes. The 
same thing is happening over and over (and this is the weird part):


The game will stop responding to most keys, and the ones that do 
respond, output rubbish characters. The mouse dies. I can 
CTRL-ALT-F1, login, and kill the game - the keyboard works on the 
console!


Then I get back to KDE (CTRL-ALT-F2). The keyboard is useless at 
this point, as typing something will result in something else. The 
mouse moves, but I can't maximise windows (seems to ignore double 
click) and stuff. CTRL-ALT-BACKSPACE and logging in again solves the 
problem.


Now, the only thing that I've changed in the last month was a new 
piece of hardware - a Logitech G5 mouse (connected via USB). After 
giving it some thought,  this problem started a few days after I 
purchased the mouse. I can't see how this could be related to what 
is happening with me, but it's the only thing I remind changing.


I was running 6.0-RELEASE-p5, and have upgraded to 6.1-RELEASE and 
xorg-6.9.0, kde-3.5.1, in the hopes that it would probably fix this. 
Unfortunately, the situation remains.


Has anyone experienced a similar problem at all ? I didn't even try 
google as I have no idea of what I'm after..


Sounds like some kind of buffer overrun problem, some memory 
allocation problem in the driver(?)

JK


I thought about something like this too, but what I can't explain is 
why it only started happening when I got the new mouse (and most 
likely after the usb0: host controller process error error, altough 
I can't say for sure - and if this was the cause, howcome it persists 
across reboots? I never got the error anymore (ok.. maybe 1 time).).


There isn't a special driver for this mouse, and the previous one was 
also detected as ums0 (a Logitech MX 700). I am 100% sure that I 
didn't touch any configuration at all, anywhere, when this started to 
happen.


Thoughts, ideas, maybe someone who's been through the same, altough I 
find it highly unlikely ?









Some random info:
nvidia0: GeForce 7800 GT port 0xe800-0xe87f mem 
0xcf00-0xcfff,0xd000-0xdfff,0xce00-0xceff 
irq 16 at device 0.0 on pci4


ums0: Logitech USB Gaming Mouse, rev 2.00/46.00, addr 2, iclass 3/1
uhid0: Logitech USB Gaming Mouse, rev 2.00/46.00, addr 2, iclass 3/1

-- I cannot remember exactly if this problem only occured after this:
usb0: host controller process error
(happened a few weeks ago for the first time)
^^ My mouse died during a gaming session, and after some 
investigation, I found that error message. Restarting the computer 
was the only way I found to get USB support functional again. I'm 
not sure, but it could have started happening ONLY after I 
experienced this error for the first time.





That's all, I guess. Let me know if you have some clues..
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]






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

Hi list,

I've conducted a few more tests today, and this problem is also 
happening to me on other OpenGL games. I've only managed to cause the 
issue described above while playing 3D games (altough it's probably 
because I move the mouse a lot while gaming).


I've ruled out any bug in Enemy Territory causing this (a new server 
patch was issued some weeks ago), as I've successfully encountered the 
problem on other games too.


Altough I can't say for sure yet, this doesn't *seem* to happen if I 
lower my mouse DPI to 800 (I use 2000). Since the keyboard starts 
outputting rubbish (probably a overflow somewhere, as someone 
suggested), coupled with the fact that this doesn't seem to happen @ 800 
DPIs, it probably points to a problem on the usb mouse driver, while 
handling a large amount of data ?


My next test is running the game off an xterm (without KDE loaded), to 
rule out any possible interference. More news soon..

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


A really really weird problem with FreeBSD 6..

2006-05-19 Thread Hugo Silva

Hi list,

I've been using FreeBSD on the desktop for several years now without any 
major problems. However, as of lately, I've been running into a very 
annoying problem. I'll try to explain:


I play some OpenGL games on FreeBSD and have always played them without 
trouble. However, now I can't play my game of election (Wolfenstein: 
Enemy Territory) for more than 20 or 30 minutes. The same thing is 
happening over and over (and this is the weird part):


The game will stop responding to most keys, and the ones that do 
respond, output rubbish characters. The mouse dies. I can CTRL-ALT-F1, 
login, and kill the game - the keyboard works on the console!


Then I get back to KDE (CTRL-ALT-F2). The keyboard is useless at this 
point, as typing something will result in something else. The mouse 
moves, but I can't maximise windows (seems to ignore double click) and 
stuff. CTRL-ALT-BACKSPACE and logging in again solves the problem.


Now, the only thing that I've changed in the last month was a new piece 
of hardware - a Logitech G5 mouse (connected via USB). After giving it 
some thought,  this problem started a few days after I purchased the 
mouse. I can't see how this could be related to what is happening with 
me, but it's the only thing I remind changing.


I was running 6.0-RELEASE-p5, and have upgraded to 6.1-RELEASE and 
xorg-6.9.0, kde-3.5.1, in the hopes that it would probably fix this. 
Unfortunately, the situation remains.


Has anyone experienced a similar problem at all ? I didn't even try 
google as I have no idea of what I'm after..





Some random info:
nvidia0: GeForce 7800 GT port 0xe800-0xe87f mem 
0xcf00-0xcfff,0xd000-0xdfff,0xce00-0xceff irq 16 
at device 0.0 on pci4


ums0: Logitech USB Gaming Mouse, rev 2.00/46.00, addr 2, iclass 3/1
uhid0: Logitech USB Gaming Mouse, rev 2.00/46.00, addr 2, iclass 3/1

-- I cannot remember exactly if this problem only occured after this:
usb0: host controller process error
(happened a few weeks ago for the first time)
^^ My mouse died during a gaming session, and after some investigation, 
I found that error message. Restarting the computer was the only way I 
found to get USB support functional again. I'm not sure, but it could 
have started happening ONLY after I experienced this error for the first 
time.





That's all, I guess. Let me know if you have some clues..
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: A really really weird problem with FreeBSD 6..

2006-05-19 Thread Hugo Silva

jekillen wrote:


On May 19, 2006, at 10:00 AM, Hugo Silva wrote:


Hi list,

I've been using FreeBSD on the desktop for several years now without 
any major problems. However, as of lately, I've been running into a 
very annoying problem. I'll try to explain:


I play some OpenGL games on FreeBSD and have always played them 
without trouble. However, now I can't play my game of election 
(Wolfenstein: Enemy Territory) for more than 20 or 30 minutes. The 
same thing is happening over and over (and this is the weird part):


The game will stop responding to most keys, and the ones that do 
respond, output rubbish characters. The mouse dies. I can 
CTRL-ALT-F1, login, and kill the game - the keyboard works on the 
console!


Then I get back to KDE (CTRL-ALT-F2). The keyboard is useless at this 
point, as typing something will result in something else. The mouse 
moves, but I can't maximise windows (seems to ignore double click) 
and stuff. CTRL-ALT-BACKSPACE and logging in again solves the problem.


Now, the only thing that I've changed in the last month was a new 
piece of hardware - a Logitech G5 mouse (connected via USB). After 
giving it some thought,  this problem started a few days after I 
purchased the mouse. I can't see how this could be related to what is 
happening with me, but it's the only thing I remind changing.


I was running 6.0-RELEASE-p5, and have upgraded to 6.1-RELEASE and 
xorg-6.9.0, kde-3.5.1, in the hopes that it would probably fix this. 
Unfortunately, the situation remains.


Has anyone experienced a similar problem at all ? I didn't even try 
google as I have no idea of what I'm after..


Sounds like some kind of buffer overrun problem, some memory 
allocation problem in the driver(?)

JK


I thought about something like this too, but what I can't explain is why 
it only started happening when I got the new mouse (and most likely 
after the usb0: host controller process error error, altough I can't 
say for sure - and if this was the cause, howcome it persists across 
reboots? I never got the error anymore (ok.. maybe 1 time).).


There isn't a special driver for this mouse, and the previous one was 
also detected as ums0 (a Logitech MX 700). I am 100% sure that I didn't 
touch any configuration at all, anywhere, when this started to happen.


Thoughts, ideas, maybe someone who's been through the same, altough I 
find it highly unlikely ?









Some random info:
nvidia0: GeForce 7800 GT port 0xe800-0xe87f mem 
0xcf00-0xcfff,0xd000-0xdfff,0xce00-0xceff irq 
16 at device 0.0 on pci4


ums0: Logitech USB Gaming Mouse, rev 2.00/46.00, addr 2, iclass 3/1
uhid0: Logitech USB Gaming Mouse, rev 2.00/46.00, addr 2, iclass 3/1

-- I cannot remember exactly if this problem only occured after this:
usb0: host controller process error
(happened a few weeks ago for the first time)
^^ My mouse died during a gaming session, and after some 
investigation, I found that error message. Restarting the computer 
was the only way I found to get USB support functional again. I'm not 
sure, but it could have started happening ONLY after I experienced 
this error for the first time.





That's all, I guess. Let me know if you have some clues..
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]






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


FreeBSD 6.x problems with IDE drives

2006-05-13 Thread Javier Henderson
Greetings,

I've a motherboard and disk drive that have been running on older
versions of FreeBSD for quite a while, reliably. Recently, I moved to
FreeBSD 6.0-RELEASE (and lately to 6.1-RELEASE, but it didn't help),
and the system periodically shows:

 ad4: FAILURE - device detached

This is likely to happen under heavy I/O load (the machine serves a
few dozen virtual websites, averaging 15 Mb/s sustained).

Then the machine will eventually reboot.

The motherboard is an MSI with an AMD 1.3 GHz CPU and 1.25GB of RAM,
it has two IDE controllers, a VIA 8235, and a Promise (I can't access
the machine right now to get the exact model number). The problem
happens the same with either controller. I tried both UDMA100 and PIO4
modes, no difference.

SMART reports a healthy drive, and as mentioned before, it didn't have
problems with older versions of FreeBSD (5.4-RELEASE to be precise)
and under similarly heavy load.

The IDE cable was replaced, just in case, but again, no difference.

Any ideas?

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


Mysql FreeBSD 6.x

2006-05-11 Thread Mohamad Babaei

Hi,
Has anyone installed Mysql 4.x or 5.x on FreeBSD 6.x in a production
environment?
Is the problem with FreeBSD threading is still exist?
(in Freebsd 4.x i used Linux threads in production and it works fine.)

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


Re: Mysql FreeBSD 6.x

2006-05-11 Thread Riemer Palstra
On Thu, May 11, 2006 at 12:23:25PM +0430, Mohamad Babaei wrote:
 Has anyone installed Mysql 4.x or 5.x on FreeBSD 6.x in a production
 environment?

Quite a few I think.

 Is the problem with FreeBSD threading is still exist?

See these Wiki pages: http://wikitest.freebsd.org/moin.cgi/MySQL

Switching to libthr has given quite excellent performance on FreeBSD 6.0
with MySQL 5.0.x for me...

-- 
Riemer PalstraAmsterdam, The Netherlands
[EMAIL PROTECTED]http://www.palstra.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mysql FreeBSD 6.x

2006-05-11 Thread Pietro Cerutti

On 5/11/06, Riemer Palstra [EMAIL PROTECTED] wrote:

On Thu, May 11, 2006 at 12:23:25PM +0430, Mohamad Babaei wrote:
 Has anyone installed Mysql 4.x or 5.x on FreeBSD 6.x in a production
 environment?

Quite a few I think.

 Is the problem with FreeBSD threading is still exist?

See these Wiki pages: http://wikitest.freebsd.org/moin.cgi/MySQL

Switching to libthr has given quite excellent performance on FreeBSD 6.0
with MySQL 5.0.x for me...


How does one do that? I read the wiki page but didn't find any info
about how to apply the switch libpthread - libthr..

Thanx



--
Riemer PalstraAmsterdam, The Netherlands
[EMAIL PROTECTED]   http://www.palstra.com/



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


  1   2   3   >