Re: which ports tag should i follow?

2008-04-02 Thread CY Teng
Hi, because i just begin to learning this os, i chose stable and later will switch to current after know it well. i dont use this for product machine, just learning, so didnt chose release. thanks tengcy 2008/4/1, Jerry McAllister [EMAIL PROTECTED]: On Tue, Apr 01, 2008 at 12:26:24PM +0800, CY

RE: FreeBSD Traffic Shaping

2008-04-02 Thread freebsd
I gave port 80 as an example but I need this configuration for limiting other services as well. If you have a 100mbps connection and only one client, you want him to only use 50kbps, not the full pipe. If you have 200 clients, they still get 50kbps each. Is this feature that I need so

HP 6720s automatic shutdown on low battery

2008-04-02 Thread Ivailo Bonev
I have a new HP 6720s laptop. When discharge battery, FreeBSD don't shutdown automatically on low battery. How can set that? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe,

RE: FreeBSD Traffic Shaping

2008-04-02 Thread freebsd
Hmm, I've tried ipfw pipe 2 config mask all bw 100Kbit/s ipfw add 10 pipe 2 tcp from localip to any 80 it appears to be working but I don't have enough connections on right now to find out if it really gives 100kbit/sec to each or if it shares the bw will come back with an update :) I

RE: FreeBSD Traffic Shaping

2008-04-02 Thread Wojciech Puchar
The vast majority of people out there have asymmetrical bandwidth limiting needs - that is, they have a pipe to the Internet and have a lot more data coming from the Internet to them, than data going from them to the Internet. Their desire is to somehow make it so that certain kinds of incoming

RE: FreeBSD Traffic Shaping

2008-04-02 Thread Ted Mittelstaedt
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Tuesday, April 01, 2008 11:27 PM To: freebsd-questions@freebsd.org Subject: RE: FreeBSD Traffic Shaping I gave port 80 as an example but I need this configuration for

Kind Regards

2008-04-02 Thread john kihahu
Hi to all of you! Sometime last year, I request for the latest installation CDs of freebsd. So many members offered to mail them that i could not accept all. I take this opportunity to thank you for the support you gave. I was hoping to initiate a program where I would be able to donate computers

mail question

2008-04-02 Thread GhoSt^ faCe
Hello, how can we have a pop mail with domain FreeBSD.org ? cheers ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: FreeBSD Traffic Shaping

2008-04-02 Thread Andrew Pantyukhin
On Wed, Apr 02, 2008 at 12:55:58AM -0800, Ted Mittelstaedt wrote: It is that it's impossible to limit INCOMING bandwidth from the Internet. The fact is you can limit incoming TCP with little to no packet loss and almost any other traffic stream (including P2P) with 1-10% loss. In short, the

Re: FreeBSD Traffic Shaping

2008-04-02 Thread Wojciech Puchar
loss and almost any other traffic stream (including P2P) with 1-10% loss. In short, the bandwidth limiting code really has little practical value when implemented in FreeBSD that is why few do it. :) i do on my 300 users network. works VERY well. i use queues to equally divide available

using FreeBSD with serial port console

2008-04-02 Thread Wojciech Puchar
is it tested? how to set it up (with 38400 8N1 console)? i am out of PCI slots, lots of free PCI express slots, but it makes no sense to buy PCIe graphics card (no cheap ones, all ultra-hyper-3D-powereaters) to connect old 14 monitor used rarely with text-mode only. so i would like to

Re: FreeBSD Traffic Shaping

2008-04-02 Thread Mel
On Wednesday 02 April 2008 10:55:58 Ted Mittelstaedt wrote: The vast majority of people out there have asymmetrical bandwidth limiting needs - that is, they have a pipe to the Internet and have a lot more data coming from the Internet to them, than data going from them to the Internet. Their

Re: using FreeBSD with serial port console

2008-04-02 Thread Vince Hoffman
Wojciech Puchar wrote: is it tested? how to set it up (with 38400 8N1 console)? i am out of PCI slots, lots of free PCI express slots, but it makes no sense to buy PCIe graphics card (no cheap ones, all ultra-hyper-3D-powereaters) to connect old 14 monitor used rarely with text-mode only.

Re: FreeBSD Traffic Shaping

2008-04-02 Thread Mel
On Wednesday 02 April 2008 09:27:21 [EMAIL PROTECTED] wrote: I gave port 80 as an example but I need this configuration for limiting other services as well. If you have a 100mbps connection and only one client, you want him to only use 50kbps, not the full pipe. If you have 200 clients, they

Re: HP 6720s automatic shutdown on low battery

2008-04-02 Thread Michael Neumann
Ivailo Bonev wrote: I have a new HP 6720s laptop. When discharge battery, FreeBSD don't shutdown automatically on low battery. How can set that? I've an 6710b and experienced similar shutdowns :) Try this: /etc/rc.conf: devd_enable=YES /etc/devd.conf: notify 10 { match system

Re: HP 6720s automatic shutdown on low battery

2008-04-02 Thread Ivailo Bonev
- Original Message - From: Michael Neumann [EMAIL PROTECTED] Newsgroups: gmane.os.freebsd.questions To: Ivailo Bonev [EMAIL PROTECTED] Cc: freebsd-questions@freebsd.org Sent: Wednesday, April 02, 2008 2:25 PM Subject: Re: HP 6720s automatic shutdown on low battery Ivailo Bonev

Re: HP 6720s automatic shutdown on low battery

2008-04-02 Thread Michael Neumann
Ivailo Bonev wrote: - Original Message - From: Michael Neumann [EMAIL PROTECTED] Newsgroups: gmane.os.freebsd.questions To: Ivailo Bonev [EMAIL PROTECTED] Cc: freebsd-questions@freebsd.org Sent: Wednesday, April 02, 2008 2:25 PM Subject: Re: HP 6720s automatic shutdown on low battery

Re: FreeBSD Traffic Shaping

2008-04-02 Thread freebsd
I think you guys went a bit on a tangent here. What I am trying to do is limit the outbound bandwidth of my services and this should be perfectly possible as I control the output. Also, the reason for this need is that some services use burst-bandwidth and I have many peaks and lows

RE: FreeBSD Traffic Shaping

2008-04-02 Thread freebsd
I can now confirm that these two commands do exactly what I mentioned originally. All outbound connections towards any host port 80 will have a maximum bandwidth of 100Kbit/s individually ( output ) ipfw pipe 2 config mask all bw 100Kbit/s ipfw add 10 pipe 2 tcp from localip to any 80

Re: FreeBSD Traffic Shaping

2008-04-02 Thread Mel
On Wednesday 02 April 2008 14:21:38 [EMAIL PROTECTED] wrote: Also, the reason for this need is that some services use burst-bandwidth and I have many peaks and lows throughout the day. This means that my carrier who bills me by the 95th percentile is having a field day. He bills by the

Re: FreeBSD Traffic Shaping

2008-04-02 Thread freebsd
As far as I know, every carrier bills by 95th percentile. This particular server is colocated and the bandwidth average is 2.35mbps while the 95th is 3.7mbps. I don't want my clients to have to compete for bandwidth - if 1000 users share a 3mbps fixed pipe, they will each get 3k/sec -.

Re: kldload: unexpected relocation type 10

2008-04-02 Thread Lowell Gilbert
Mr Y [EMAIL PROTECTED] writes: I really don't know how to get rid of this message.. I get millions of these during kldload of a driver: kldload: unexpected relocation type 10 can't see anything wrong with my Makefile, like the google threads say, so PLEASE HELP. The kernel module was

Re: Which one should I use diablo-jdk1.5.0 or jdk-1.6

2008-04-02 Thread Lowell Gilbert
Kemian Dang [EMAIL PROTECTED] writes: I am not sure which version of jdk should I use, do they have the same functionality? I know jdk-1.6 is compiled by diablo-jdk and has no run dependency on diablo, but if diablo is the same as the original sun jdk, why should there be another one, or to

Re: pkgdb -F question

2008-04-02 Thread Lowell Gilbert
Eduardo Cerejo [EMAIL PROTECTED] writes: --- Checking the package registry database Cyclic dependencies: gnome-desktop-2.22.0 - nautilus-2.22.1 - eel-2.22.1 - py25-gnome-2.22.0 - tracker-0.6.2_2 - (gnome-desktop-2.22.0) Unlink which dependency? (? to help): Can someone help me with this,

FreeBSD takes over Linux at kernel.org

2008-04-02 Thread sergio lenzi
Hello all, can someone please confirm if this is true http://lkml.org/lkml/2008/3/31/367 Thanks ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL

Re: FreeBSD takes over Linux at kernel.org

2008-04-02 Thread Outback Dingo
Id vote Aprils Fools On Wed, Apr 2, 2008 at 8:56 PM, sergio lenzi [EMAIL PROTECTED] wrote: Hello all, can someone please confirm if this is true http://lkml.org/lkml/2008/3/31/367 Thanks ___ freebsd-questions@freebsd.org mailing list

Re: FreeBSD takes over Linux at kernel.org

2008-04-02 Thread Wojciech Puchar
the famous linux performance wasn't enough? for me it wasn't many years ago. On Wed, 2 Apr 2008, sergio lenzi wrote: Hello all, can someone please confirm if this is true http://lkml.org/lkml/2008/3/31/367 Thanks ___

packet filter does not keep state

2008-04-02 Thread Erik Norgaard
Hi, I have a problem connecting from one local subnet to another crossing an FBSD box with pf. Should be trivial, I have the following ruleset: snip # Local services accessible from wlan block in log on $wlan_if inet from $wlan_net to local_net pass in log quick on $wlan_if inet proto tcp

Re: FreeBSD takes over Linux at kernel.org

2008-04-02 Thread Wojciech Puchar
posted 31.03 On Wed, 2 Apr 2008, Outback Dingo wrote: Id vote Aprils Fools On Wed, Apr 2, 2008 at 8:56 PM, sergio lenzi [EMAIL PROTECTED] wrote: Hello all, can someone please confirm if this is true http://lkml.org/lkml/2008/3/31/367 Thanks

Re: FreeBSD takes over Linux at kernel.org

2008-04-02 Thread Fernando Apesteguía
On 4/2/08, Outback Dingo [EMAIL PROTECTED] wrote: Id vote Aprils Fools Yeah. Check netcraft.com On Wed, Apr 2, 2008 at 8:56 PM, sergio lenzi [EMAIL PROTECTED] wrote: Hello all, can someone please confirm if this is true http://lkml.org/lkml/2008/3/31/367 Thanks

Re: FreeBSD takes over Linux at kernel.org

2008-04-02 Thread Andreas Rudisch
On Wed, 2 Apr 2008 16:15:09 +0200 (CEST) Wojciech Puchar [EMAIL PROTECTED] wrote: posted 31.03 http://lkml.org/lkml/2008/3/31/367 But written on 1.4. Andreas -- GnuPG key : 0x2A573565|http://www.gnupg.org/howtos/de/ Fingerprint: 925D 2089 0BF9 8DE5 9166 33BB F0FD CD37 2A57 3565

Re: FreeBSD takes over Linux at kernel.org

2008-04-02 Thread Wojciech Puchar
anyway - these benchmarks are synthetic and not much useful. unix is made to run many different things concurently, not same thing doing same things in parallel. ___ freebsd-questions@freebsd.org mailing list

Re: mail question

2008-04-02 Thread Giorgos Keramidas
On Wed, 2 Apr 2008 10:27:07 +0100, adminakos at gmail.com wrote: Hello, how can we have a pop mail with domain FreeBSD.org ? Yes, of course. All it takes is to show some committment to the cause, by consistently helping in one of the following areas: * Improving FreeBSD, by fixing existing

Re: kldload: unexpected relocation type 10

2008-04-02 Thread Mr Y
I really don't know how to get rid of this message.. I get millions of these during kldload of a driver: kldload: unexpected relocation type 10 can't see anything wrong with my Makefile, like the google threads say, so PLEASE HELP. The kernel module was built along with the

Re: FreeBSD takes over Linux at kernel.org

2008-04-02 Thread RW
On Wed, 2 Apr 2008 16:15:09 +0200 (CEST) Wojciech Puchar [EMAIL PROTECTED] wrote: posted 31.03 It's still dated April 1st - and it's obviously not true. ___ freebsd-questions@freebsd.org mailing list

Re: some pam problem?

2008-04-02 Thread Chuck Robey
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dan Nelson wrote: In the last episode (Apr 01), Chuck Robey said: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I can't figure out what this message below means to me: Mar 31 17:12:02 april sshd[26150]: in openpam_dispatch(): pam_nologin.so: no

Re: Wake-on-LAN and the em driver (freebsd 7.x)

2008-04-02 Thread Chuck Robey
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ted Mittelstaedt wrote: -Original Message- From: Jerry McAllister [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2008 2:46 PM To: Ted Mittelstaedt Cc: Walker; Kent Hauser; freebsd-questions@freebsd.org Subject: Re: Wake-on-LAN and

Re: packet filter does not keep state

2008-04-02 Thread Josh Paetzel
On Wednesday 02 April 2008 09:03:06 am Erik Norgaard wrote: Hi, I have a problem connecting from one local subnet to another crossing an FBSD box with pf. Should be trivial, I have the following ruleset: snip # Local services accessible from wlan block in log on $wlan_if inet from

quandry with evolution and the default browswer

2008-04-02 Thread Gary Kline
There are parts of Gnome that I prefer over KDE and vice versa, and usually the apps live happily, KMail defaults to the KDE browser; which I prefer for various reasons. But I like evolution better than kmail; the gotcha is that when I use evo, and

Re: [6.3] How are those daemons started?

2008-04-02 Thread RW
On Mon, 31 Mar 2008 23:00:39 +0200 Mel [EMAIL PROTECTED] wrote: On Monday 31 March 2008 22:27:55 Gilles wrote: On Mon, 31 Mar 2008 15:06:20 -0500, Erik Osterholm [EMAIL PROTECTED] wrote: Also note /etc/defaults/rc.conf which is /why/ these services are on by default. Entries in

Re: FreeBSD Traffic Shaping

2008-04-02 Thread Giorgos Keramidas
On Wed, 2 Apr 2008 11:30:44 +0200 (CEST), Wojciech Puchar [EMAIL PROTECTED] wrote: The vast majority of people out there have asymmetrical bandwidth limiting needs - that is, they have a pipe to the Internet and have a lot more data coming from the Internet to them, than data going from them

need confirmation of documentation problem for times(3)

2008-04-02 Thread Viktor Štujber
I have been forwarded to this list from a docs bugreport * http://www.freebsd.org/cgi/query-pr.cgi?pr=122359 and I am looking for confirmation of this issue. Transscript: The freebsd manpages for 'clock_t times(struct tms *tp)' say the following: The times() function returns the value of time

FreeBSD 7-RELEASE + CUPS + gutenprint + Epson Stylus CX8400

2008-04-02 Thread Steven Friedrich
I can't get this printer to work at all. I've been to cups.org, avasys.jp, and http://www.linux-foundation.org/en/OpenPrinting to no avail. I already had cups installed and working under FreeBSD from a LONG time ago. I used to use it with an HP DeskJet 560C. Later, I bought a Brother

Re: which ports tag should i follow?

2008-04-02 Thread RW
On Wed, 2 Apr 2008 15:16:06 +0800 CY Teng [EMAIL PROTECTED] wrote: Hi, because i just begin to learning this os, i chose stable and later will switch to current after know it well. In FreeBSD, stable means a development branch with stable binary interfaces, you should probably be using

Re: VMWare Tools for FreeBSD

2008-04-02 Thread Shawn Barnhart
David Robillard wrote: Basically the only reason I have for using VM Tools is for the ability of Vmotion and such with our ESX Server farm. It's really the only benefit that the VM tools will give me on FreeBSD as all my virtual machines which are running FreeBSD are servers and don't use any

[7.0] Python hangs when importing pygtk

2008-04-02 Thread Taavi Repän
I have problem with python, which hangs when importing gtk (or test.autotest, then test.test_capi hangs): import pygtk import gtk Pressing ^T gives: load: 0.00 cmd: python 69670 [ucond] 0.06u 0.01s 0% 8568k (gdb) bt #0 0x281c532b in _umtx_op () from /lib/libc.so.7 #1 0x2817cb18 in

+ PARTNER WANTED +

2008-04-02 Thread JAMES BARBONE
Please indicate your fee (US$) or the source for a DVD of a cloned FreeBSD 6.2 - OS that has been tweaked to operate flawlessly with the Axigen Mail Server - Office Edition. Can configure local IP address ? http://www.axigen.com/mail-server/free.php James Barbone + Wilmington Delaware + USA

RE: FreeBSD Traffic Shaping

2008-04-02 Thread Ted Mittelstaedt
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Wednesday, April 02, 2008 4:22 AM To: freebsd-questions@freebsd.org Subject: Re: FreeBSD Traffic Shaping I think you guys went a bit on a tangent here. What I am trying to

RE: FreeBSD Traffic Shaping

2008-04-02 Thread Ted Mittelstaedt
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Wednesday, April 02, 2008 4:38 AM To: freebsd-questions@freebsd.org Subject: RE: FreeBSD Traffic Shaping I can now confirm that these two commands do exactly what I

RE: FreeBSD Traffic Shaping

2008-04-02 Thread Ted Mittelstaedt
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Wednesday, April 02, 2008 4:51 AM To: freebsd-questions@freebsd.org Subject: Re: FreeBSD Traffic Shaping As far as I know, every carrier bills by 95th percentile. You

RE: FreeBSD Traffic Shaping

2008-04-02 Thread Ted Mittelstaedt
-Original Message- From: Giorgos Keramidas [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2008 9:45 AM To: Wojciech Puchar Cc: Ted Mittelstaedt; [EMAIL PROTECTED]; freebsd-questions@freebsd.org Subject: Re: FreeBSD Traffic Shaping On Wed, 2 Apr 2008 11:30:44 +0200

Webalizer compiles and installs fine in 6.1, goes splat in 6.2.

2008-04-02 Thread Lou Katz
In /usr/ports/webalizer (6.2) # make === Vulnerability check disabled, database not found === Extracting for webalizer-2.1.10_13 = MD5 Checksum OK for webalizer-2.01-10-src.tar.bz2. = SHA256 Checksum OK for webalizer-2.01-10-src.tar.bz2. === Patching for webalizer-2.1.10_13 === Applying extra

Re: Which one should I use diablo-jdk1.5.0 or jdk-1.6

2008-04-02 Thread Kemian Dang
I want to write Java program, so I want to find which one should I use, to avoid situation that my code can not be compiled and run on another machine. Best wishes, Kemian On 02/04/2008, Lowell Gilbert [EMAIL PROTECTED] wrote: Kemian Dang [EMAIL PROTECTED] writes: I am not sure which

Come join me on Nissan GTR blog...

2008-04-02 Thread P Alb
Come join me on Nissan GTR blog. Click here to join: http://nissangtrblog.ning.com/?xgi=bJgxBbK Thanks, P Alb ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to

View the Email Logs

2008-04-02 Thread Ruel Luchavez
Hello.. I have here an existing email server running in FreeBSD, how could I view the logs of email yestrday? what would be the command? and usually where is directory for the email log? ..im new in freebsd.. Your help is geatly needed..thanks ___

Error fatal_tls

2008-04-02 Thread Ruel Luchavez
Hi, can anyone help me whats the meaning of this error? I always have this every minute mail pop: fatal_error: tls_start_servertls() failed How to get rid of this error? PLEase Thanks in advanced ___ freebsd-questions@freebsd.org mailing list

portmaster question

2008-04-02 Thread Terry Sposato
Hi, I recently did a binary upgrade from 6.2-RELEASE to 6.3-RELEASE and everything went smoothly. For good measure I decided to do an upgrade of all of my installed ports with the following command: sudo portmaster -Rfda It quit out when failing to build the ImageMagick port which is fine,

Re: portmaster question

2008-04-02 Thread Eric
Terry Sposato wrote: Hi, I recently did a binary upgrade from 6.2-RELEASE to 6.3-RELEASE and everything went smoothly. For good measure I decided to do an upgrade of all of my installed ports with the following command: sudo portmaster -Rfda It quit out when failing to build the

Re: View the Email Logs

2008-04-02 Thread Paul Schmehl
--On April 3, 2008 10:30:01 AM +0800 Ruel Luchavez [EMAIL PROTECTED] wrote: Hello.. I have here an existing email server running in FreeBSD, how could I view the logs of email yestrday? what would be the command? and usually where is directory for the email log? ..im new in freebsd.. Your

Re: View the Email Logs

2008-04-02 Thread Eric
Paul Schmehl wrote: --On April 3, 2008 10:30:01 AM +0800 Ruel Luchavez [EMAIL PROTECTED] wrote: Hello.. I have here an existing email server running in FreeBSD, how could I view the logs of email yestrday? what would be the command? and usually where is directory for the email log? ..im new

Re: FreeBSD Traffic Shaping

2008-04-02 Thread Norberto Meijome
On Wed, 2 Apr 2008 14:43:20 +0200 Mel [EMAIL PROTECTED] wrote: I think you'll find that bursts are best counteracted like this: http://www.probsd.net/pf/index.php/Hednod%27s_HFSC_explained#Tips.2FIdeas Mel, can you please confirm this link / FQDN ? no NS defined for the domain... TIA, B

Re: Installing plone3 port on freebsd 6.1

2008-04-02 Thread Terry Sposato
Jeff Lasslett wrote: Thanks Terry, That was too easy. :-) On Thu, 2008-04-03 at 14:48 +1100, Terry Sposato wrote: Jeff, In my experience the easiest way to get up-to-date ports tree is to use portsnap. The below command will get you up-to-date right away. sudo portsnap fetch extract The

Re: FreeBSD Traffic Shaping

2008-04-02 Thread Terry Sposato
Norberto Meijome wrote: On Wed, 2 Apr 2008 14:43:20 +0200 Mel [EMAIL PROTECTED] wrote: I think you'll find that bursts are best counteracted like this: http://www.probsd.net/pf/index.php/Hednod%27s_HFSC_explained#Tips.2FIdeas Mel, can you please confirm this link / FQDN ? no NS defined for

more than 2gb of memory

2008-04-02 Thread Victor M. Blood
Hi, All. How to allow ussage more than 2gb of memory on freebsd per process? -- With all regards, Victor M. Blood. mailto: [EMAIL PROTECTED] FTN: 2:5024/[EMAIL PROTECTED], ICQ#3567656 ___ freebsd-questions@freebsd.org mailing list