make installworld

2000-11-22 Thread Jamie Heckford
Hi, Encountered the following while running make installworld: Installing /usr/libdata/perl/5.00503/mach/auto/POSIX/setgid.al Installing /usr/libdata/perl/5.00503/mach/auto/POSIX/setuid.al Usage: copy(FROM, TO [, BUFFERSIZE]) at

PAM and passwords (Re: Hmm..passwords.)

2000-11-22 Thread Kris Kennaway
On Tue, Nov 21, 2000 at 03:31:12PM -0800, David O'Brien wrote: When Kris and I discussed this functionality (before Brian went and did it); we talked about much higher granularity than Brian implemented: MD5 everywhere DES everywhere MD5 locally / DES yp Convert to MD5 Convert to DES

KGI port

2000-11-22 Thread Nicolas Souchu
Hi hackers, Hope you've ever heard about KGI... the kernel side of the GGI project. It consists mostly in a basic framework for accessing graphic hardware from userland and is designed to support efficiently the GGI upper library. More info is avalable at http://kgi.sourceforge.net I'm willing

BSD's random.c dicey on the Alpha

2000-11-22 Thread Sheldon Hearn
Hi folks, Anyone want to have a look at this? It's from the GNU awk maintainer. Ciao, Sheldon. --- Forwarded Message From: Aharon Robbins [EMAIL PROTECTED] Date: Wed, 22 Nov 2000 11:59:10 +0200 Message-ID: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: BSD random for Alpha? Cc: [EMAIL

Re: fclose vs ferror (from libc/getcap)

2000-11-22 Thread Robert Nordier
Garance A Drosihn wrote: The point about (void)fclose(pfp); if (ferror(pfp)) { ...do stuff... } is that it's a silly thing to do deliberately, but if I was porting some hairy old C code I'd tend to expect it to work. C is not a language in which you

Re: fclose vs ferror (from libc/getcap)

2000-11-22 Thread Robert Nordier
Daniel C. Sobral wrote: Garance A Drosihn wrote: Undefined behavior means anything goes. On a standard, it means the behaviour is implementation-defined (which may be undefined or not). While not disagreeing with what I think Daniel means: at least in the C Standard itself, "undefined

Re: SMBus

2000-11-22 Thread Nicolas Souchu
On Tue, Nov 21, 2000 at 08:05:42PM -0200, Felipe Gustavo de Almeida wrote: thanks for your 'support' ! Nicolas Souchu writes: On Mon, Nov 20, 2000 at 08:38:53PM -0200, Felipe Gustavo de Almeida wrote: Nicolas Souchu writes: On Sat, Nov 18, 2000 at 02:31:48PM -0200, Felipe Gustavo

Re: KGI port

2000-11-22 Thread Pedro F Giffuni
Good ! I recall the kernel related parts can be licensed under a plain (new) BSD license. I don't understand our fb enough but if you know your way through kld's and newbus, the result will be really neat. Pedro. On Wed, 22 Nov 2000, Nicolas Souchu wrote: Hi hackers, Hope you've

Fwd: Re: still in the woods (tuning for postfix hub)

2000-11-22 Thread Len Conrad
Sorry, Hackers, but I got no response from the -questions list for 2 days. Somebody here must know who is Mr. Hub Admin, no? tia, Len == Can somebody tell me who admins FreeBSD/postifx mail hubs? I need some help opening up FreeBSD for

Re: fclose vs ferror (from libc/getcap)

2000-11-22 Thread Matt Dillon
When you look at the fclose()/ferror() problem you have to look at it in its historical context. Historically some versions of UNIX had very odd semantics. For example, many programmers depended on free()'d data being left intact at least until the next free(). It was even

Re: find, -delete, and relative paths

2000-11-22 Thread Brian Reichert
On Tue, Nov 21, 2000 at 12:08:56PM +1030, Daniel O'Connor wrote: On 20-Nov-00 Brian Reichert wrote: I didn't find anything after an admittedly quick look intp PRs and the mail list archives: Under FreeBSD 3.4-RELEASE, we are running a simple log file scrubber: 15 3 * * *

Re: fclose vs ferror (from libc/getcap)

2000-11-22 Thread Garance A Drosihn
At 2:25 PM +0200 11/22/00, Robert Nordier wrote: Daniel C. Sobral wrote: Garance A Drosihn wrote: In the section I quoted from unix spec, "stream" refers to the variable passed to fclose (though that isn't obvious, because I didn't copy the formatting). ferror certainly does access

Re: find, -delete, and relative paths

2000-11-22 Thread Aleksandr A.Babaylov
Cyrille Lefevre writes: "Daniel O'Connor" [EMAIL PROTECTED] writes: On 20-Nov-00 Brian Reichert wrote: I didn't find anything after an admittedly quick look intp PRs and the mail list archives: Under FreeBSD 3.4-RELEASE, we are running a simple log file scrubber: 15

Re: fclose vs ferror (from libc/getcap)

2000-11-22 Thread Garance A Drosihn
At 9:36 AM -0800 11/22/00, Matt Dillon wrote: [...] When you fclose() something or otherwise terminate a structure, it's gone. Anything else is illegal. *internally* our libc assumes that ferror() is legal after an fclose() because, well, it's true... but only for internal

HDD crashes, S.M.A.R.T and relocation tables.

2000-11-22 Thread Lev Serebryakov
Hello, All! How are you? Now here is no `bad144' utility. Everybody say ``modern HDDs could do hardware remaps of bad blocks, and if here is visible bad blocks, it means HDD will die soon, so buy new HDD ASAP and throw bad one away''. Ok. I agree with it. IDE HDDs are cheap now, and

Re: HDD crashes, S.M.A.R.T and relocation tables.

2000-11-22 Thread Soren Schmidt
It seems Lev Serebryakov wrote: I see god solution: monitor HDD health by downloading relocation table and S.M.A.R.T. information from it daily (in cron job). When script detect, that relocation table is near to be full or here is 1000 new relocations in one day, it sends mail to

Re: BSD's random.c dicey on the Alpha

2000-11-22 Thread Kris Kennaway
On Wed, Nov 22, 2000 at 03:18:27PM +0200, Sheldon Hearn wrote: Hi folks, Anyone want to have a look at this? It's from the GNU awk maintainer. Without knowing which random.c it was, it's hard to judge :-) Also not knowing what the intended use is, it's hard to recommend something. Kris

porting a Linux app

2000-11-22 Thread Andrew Otwell
Please respond to me directly (and the mailing list if you so choose) I am attempting to port an application from Linux to FreeBSD (source code). I have been told that I need to compile the source against a different set of /include and /lib files. When compiled against the system libs it

Re: porting a Linux app

2000-11-22 Thread Daniel C. Sobral
Andrew Otwell wrote: gcc -static -I /pathto/new/include -L /pathto/new/lib sourcefile.c -nostdlib -nostdinc -- Daniel C. Sobral(8-DCS) [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] "All right, Lieutenant, let's see what you do know. Whatever it is,

Re: RFC: /dev/console - /var/log/messages idea/patch

2000-11-22 Thread Mikko Tyolajarvi
In local.freebsd-current you write: On Wed, 22 Nov 2000 22:22:39 +0100, Poul-Henning Kamp [EMAIL PROTECTED] said: Another particular thing I remember was that some syslog-challenged daemons whine on /dev/console long after /etc/rc has finished. They can try, but by the time they do the

Re: Fwd: Re: still in the woods (tuning for postfix hub)

2000-11-22 Thread Arjan de Vet
In article [EMAIL PROTECTED] you write: Somebody here must know who is Mr. Hub Admin, no? [EMAIL PROTECTED] I guess? Can somebody tell me who admins FreeBSD/postifx mail hubs? I need some help opening up FreeBSD for postfix and 200K msgs/day. Below is an old posting of Peter Wemm to the

Shell script

2000-11-22 Thread petro
I have such script. # more trafdump #!/bin/sh - # trafdumpCopyright (c)1993 CAD lab # # dump all records to /var/tmp/trafd.$iface # # usage: trafdump interfaces... # PATH=/usr/local/bin WHERE_PID=/var/run/trafd.ed0 LOG_FILE=/var/log/traffic.log if [ $# = 0 ]; then

Re: Shell script

2000-11-22 Thread void
On Thu, Nov 23, 2000 at 02:30:54AM +0200, petro wrote: I have such script. PATH=/usr/local/bin [...] if [ $# = 0 ]; then [...] if [ -f $PID_FILE ]; then [...] if [ $? = 0 ]; then [...] echo error: $PID_FILE not found | tee -a $LOG_FILE I

Re: Shell script

2000-11-22 Thread Tony Fleisher
Your PATH variable (line 8) needs to include /bin, where both tee and [ are located. Tony. On Thu, 23 Nov 2000, petro wrote: I have such script. # more trafdump #!/bin/sh - # trafdumpCopyright (c)1993 CAD lab # # dump all records to /var/tmp/trafd.$iface # #

2 pci , 1 isa, same type NIC makes freebsd seems to be confused

2000-11-22 Thread Thomas Wahyudi
I have FreeBSd 4.1 with 2 PCI NIC and 1 ISA NIC all of them detected as ed0, ed1. ed2 at kernel, I put ISA NIC as ed0. the problem is: the box seems not stable, almost every 2 hours i must restart the box, when i try to remove all the nic and put back only one, the box going smooth. Any

Re: RFC: /dev/console - /var/log/messages idea/patch

2000-11-22 Thread Garrett Wollman
On Wed, 22 Nov 2000 15:20:13 -0800 (PST), Mikko Tyolajarvi [EMAIL PROTECTED] said: Do you mean something like this? Yes, exactly like that! -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same [EMAIL PROTECTED] | O Siem / The fires of freedom

Re: 2 pci , 1 isa, same type NIC makes freebsd seems to be confused

2000-11-22 Thread Motomichi Matsuzaki
At Thu, 23 Nov 2000 09:57:44 +0700, Thomas Wahyudi [EMAIL PROTECTED] wrote: I have FreeBSd 4.1 with 2 PCI NIC and 1 ISA NIC all of them detected as ed0, ed1. ed2 at kernel, I put ISA NIC as ed0. Currently, many of NIC drivers can not handle this situation. Many drivers shoud be used on

Accept credit cards on-line THE EASY WAY!

2000-11-22 Thread turehu
No set up fees No monthly interest No minimum transaction fees The only charge is a small percentage of the cost of the transaction. You can not lose money! You only pay fees if you sell your product. Get in the act and launch your online bussiness which will work for you 24hrs a day, seven days