System-wide totals via sysctl (struct vmtotal)

2002-12-08 Thread Hiten Pandya
Hello Gang! Currently, people, the vm.vmmeter sysctl is bogus and misleading. It refers to struct vmtotal, which gives us the system wide totals, and does not relate/refer to struct vmmeter in _any_ way. It is silently skipped by sysctl -a listing, because there is no handler for it: #

CVS_LOCAL_BRANCH_NUM?

2002-12-08 Thread Lamont Granquist
I've been struggling all weekend to setup a local CVS repo mirror, and I guess I've done that successfully, but I can't figure out what is going on with CVS_LOCAL_BRANCH_NUM. My understanding is that if I set it to a large number 63000 that it should tag branches that I make with values roughly

help compiling propolice gcc

2002-12-08 Thread Lamont Granquist
I'm trying to follow these instructions to build 4.7 with the propolice modifications to the gcc compiler: http://www.trl.ibm.com/projects/security/ssp/buildfreebsd.html I'm starting with an absolutely fresh cvs checkout and i've nuked my /usr/obj tree. What I'm getting is in this step: cd

Re: help compiling propolice gcc

2002-12-08 Thread Kris Kennaway
On Sun, Dec 08, 2002 at 05:22:24PM -0800, Lamont Granquist wrote: And if I try to go into /usr/src/gnu/usr.bin/cc/cc_int and do a make I get only this: Warning: Object directory not changed from original /usr/src/gnu/usr.bin/cc/cc_int This indicates you probably have stale cruft in your

Re: help compiling propolice gcc

2002-12-08 Thread Lamont Granquist
On Sun, 8 Dec 2002, Kris Kennaway wrote: On Sun, Dec 08, 2002 at 05:22:24PM -0800, Lamont Granquist wrote: And if I try to go into /usr/src/gnu/usr.bin/cc/cc_int and do a make I get only this: Warning: Object directory not changed from original /usr/src/gnu/usr.bin/cc/cc_int This

Re: help compiling propolice gcc

2002-12-08 Thread Lamont Granquist
On Sun, 8 Dec 2002, Garance A Drosihn wrote: If you're going to jump into the middle of /usr/src to make something, then you should probably do: cd /usr/src/gnu/usr.bin/cc make obj make depend ...etc Thanks, that seems to have worked. I couldn't get libc to compile

tail -f file on webpage

2002-12-08 Thread nbari
Hi all How can i make a tail -f file and show the results in a web page with out having to reload the page every N seconds i am using PHP in a script like: ?php $error_log = '/var/log/apache/log'; passthru (tail -f $error_log); ? but i have to relaod the page to view new results. any ideas ?

Spoofing Another Host Packet From User Land

2002-12-08 Thread soheil soheil
Dear All I want to know if i can use SOCK_RAW to create and send another Host ( with another IP) Packet from my box. Sayin' in another way , i want to know if the kernel fill the ip:ip_src field of the packet throw out by SOCK_RAW ? if i can not do this by raw socket how can i do that ? THANX

Re: tail -f file on webpage

2002-12-08 Thread David Syphers
On Sunday 08 December 2002 10:55 pm, [EMAIL PROTECTED] wrote: Hi all How can i make a tail -f file and show the results in a web page with out having to reload the page every N seconds i am using PHP in a script like: ?php $error_log = '/var/log/apache/log'; passthru (tail -f

Re: tail -f file on webpage

2002-12-08 Thread Dan Nelson
In the last episode (Dec 08), [EMAIL PROTECTED] said: Hi all How can i make a tail -f file and show the results in a web page with out having to reload the page every N seconds i am using PHP in a script like: ?php $error_log = '/var/log/apache/log'; passthru (tail -f $error_log); ?