What changed with the resolver such that it won't use /etc/hosts anymore?

2002-03-19 Thread David O'Brien
All of my boxes that are on a private network can longer resolve their IP address to a name. In the past this /etc/nsswitch.conf would have the resolver first look in /etc/hosts which would resolve the IP address to a name. $ cat /etc/nsswitch.conf hosts: files dns So what broke

Re: NetBSD-style rc.d Project -- What I have so far...

2002-03-01 Thread Andrea Campi
the majority of the code base will probably be 'identical', but there will be differences in things like, boot order, requirements, etc. What we should probably do is, have mostly identical infrastructure; after that, if the scripts differ mostly in requirements, boot orders etc

Re: NetBSD-style rc.d Project -- What I have so far...

2002-02-28 Thread Mike Makonnen
-is # The -s switch is important add rc_ng=YES to your /etc/rc.conf I know everyone has their own idea for what the system should look like, but I hope the work done already will help lighten the load. If you choose not to base the final system on this I would still be willing to contribute to whatever

Re: NetBSD-style rc.d Project -- What I have so far...

2002-02-28 Thread Terry Lambert
$FOOARGS /var/run/foo.pid ... Don't worry about this; it's a future thing, if ever, I think. I just wanted to throw it out there as a possible approach to solving the problem. I know everyone has their own idea for what the system should look like, but I hope the work done already will help

Re: NetBSD-style rc.d Project -- What I have so far...

2002-02-28 Thread David O'Brien
gratuitously different things are in them. Typically for no good reason. As a first pass, what should be worked toward is to add conditionals, etc. so that it becomes obvious where it would be benefital to change or abstract things. - Converging startup scripts before the rest of the system is converted

Re: NetBSD-style rc.d Project -- What I have so far...

2002-02-28 Thread Mike Makonnen
FOOARGS=-t -U # Normalize difference between BSD's # # This is the NetBSD version # SYSCTL_W=sysctl -w FOOARGS-u I understand what you're saying, but my problem is with the larger issue of making the startup

Re: NetBSD-style rc.d Project -- What I have so far...

2002-02-28 Thread Mike Makonnen
it's better to make the rest of the OS more compatible, but I can understand your point. What bothered me about it initially is that it seemed you wanted 100% compatibility and _all_ of it directed at making our startup process conform to NetBSD's. The reason I eschewed making the scripts NetBSD

Problem with buildworld: what is major really supposed to be?

2002-02-23 Thread David Wolfskill
Trying to make buildworld for today's -CURRENT, I get: stage 4: building libraries -- ... === doc cc -fpic -DPIC -O -pipe -DLIBC_SCCS -I/usr/src/lib/libkvm -c /usr/src/lib/libkvm/kvm_file.c -o kvm_file.So In file included from

Re: Problem with buildworld: what is major really supposed to be?

2002-02-23 Thread Poul-Henning Kamp
Yeah, I'm chasing that one right now. I'm not yet quite sure which commit has broken this, nor what the right fix is... Poul-Henning In message [EMAIL PROTECTED], David Wolfskill w rites: Trying to make buildworld for today's -CURRENT, I get: stage 4: building libraries

Re: Problem with buildworld: what is major really supposed to be?

2002-02-23 Thread Poul-Henning Kamp
Ok, found it: This is the culprit: http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/sys/file.h.diff?r1=1.39r2=1.40 In message [EMAIL PROTECTED], Poul-Henning Kamp writes: Yeah, I'm chasing that one right now. I'm not yet quite sure which commit has broken this, nor what the right fix

what is PSEUDOFS?

2001-12-06 Thread Hiten Pandya
hi all... i would like to know if possible what is PSEUDOFS... cause i forgot to update my kernel configuration file, regarding the message in the UPDATING section... i know what DEVFS is... after the lecture at the BSDCon 2001 Europe by phk = thanks... regards... Hiten Pandya [EMAIL

Re: what is PSEUDOFS?

2001-12-06 Thread Sheldon Hearn
On Thu, 06 Dec 2001 03:09:59 PST, Hiten Pandya wrote: i would like to know if possible what is PSEUDOFS... cause i forgot to update my kernel configuration file, regarding the message in the UPDATING section... man pseudofs Ciao, Sheldon. To Unsubscribe: send mail to [EMAIL PROTECTED

Re: what is PSEUDOFS?

2001-12-06 Thread Maxim Sobolev
Hiten Pandya wrote: hi all... i would like to know if possible what is PSEUDOFS... cause i forgot to update my kernel configuration file, regarding the message in the UPDATING section... i know what DEVFS is... after the lecture at the BSDCon 2001 Europe by phk As far as I know

Re: what is PSEUDOFS?

2001-12-06 Thread Dag-Erling Smorgrav
Hiten Pandya [EMAIL PROTECTED] writes: i know what DEVFS is... after the lecture at the BSDCon 2001 Europe by phk Well, the author of pseudofs was there too, and did mention it in his lightning talk right before Jordan's MacOS X presentation. You could have asked him there :) DES -- Dag

What happened to current.freebsd.org again?

2001-11-30 Thread Georg-W. Koltermann
Hello, since some time again I can't get to ftp://current.freebsd.org to download current snapshots and packages. Is the machine broken again? -- Regards, Georg. To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-current in the body of the message

Re: What happened to current.freebsd.org again?

2001-11-30 Thread Anders Andersson
On Fri, Nov 30, 2001 at 06:01:08PM +0100, Georg-W. Koltermann wrote: Hello, since some time again I can't get to ftp://current.freebsd.org to download current snapshots and packages. Is the machine broken again? In the meantime you could use ftp://snapshots.jp.freebsd.org/ -- Anders

What is highest connection rate?

2001-08-31 Thread Terry Lambert
What is the highest rate of connections per second people out there have achieved with a FreeBSD machine? Ideally, this would be a server that just accepts and closes connections, using something like a zero byte WebBench client. Thanks, -- Terry To Unsubscribe: send mail to [EMAIL PROTECTED

huh? in Selrecord(): what is this for?

2001-07-20 Thread Julian Elischer
void selrecord(selector, sip) struct proc *selector; struct selinfo *sip; { struct proc *p; pid_t mypid; mypid = selector-p_pid; if (sip-si_pid == mypid) return; if (sip-si_pid (p = pfind(sip-si_pid))) { Why do we look up

Re: huh? in Selrecord(): what is this for?

2001-07-20 Thread Julian Elischer
Never mind.. I'm an ijut... Julian Elischer wrote: void selrecord(selector, sip) struct proc *selector; struct selinfo *sip; { struct proc *p; pid_t mypid; mypid = selector-p_pid; if (sip-si_pid == mypid) return;

RE: huh? in Selrecord(): what is this for?

2001-07-20 Thread John Baldwin
On 20-Jul-01 Julian Elischer wrote: void selrecord(selector, sip) struct proc *selector; struct selinfo *sip; { struct proc *p; pid_t mypid; mypid = selector-p_pid; if (sip-si_pid == mypid) return; if

Re: ipfilter+ipv6 - what am I missing?

2001-07-06 Thread Niels Chr. Bank-Pedersen
On Sun, Jul 01, 2001 at 09:33:27PM +0200, Gerhard Sittig wrote: On Sun, Jul 01, 2001 at 10:54 -0700, matt wrote: I don't think ipf is complete in its ipv6 support yet.You can use ipfw instead. Ipf has been supporting IPv6 for quite some time. It's just that one has to enable this

ipfilter+ipv6 - what am I missing?

2001-07-01 Thread Niels Chr. Bank-Pedersen
) bm# ipfstat -6 IPv6 packets: in 0 out 0 Even with the above ruleset installed, ipfilter doesn't block any traffic at all, and counters for ipv6 packets remains at zero while successfully running various ipv6 sessions through the firewall, so what am I missing here? Feel free

Re: ipfilter+ipv6 - what am I missing?

2001-07-01 Thread matt
- From: Niels Chr. Bank-Pedersen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, July 01, 2001 5:21 AM Subject: ipfilter+ipv6 - what am I missing? Hi, On yesterdays -current I'm having some problems making ipfilter DTRT with ipv6 packets: bm# ipfstat -6io block out quick on xl0 from

Re: ipfilter+ipv6 - what am I missing?

2001-07-01 Thread Gerhard Sittig
On Sun, Jul 01, 2001 at 10:54 -0700, matt wrote: I don't think ipf is complete in its ipv6 support yet.You can use ipfw instead. Ipf has been supporting IPv6 for quite some time. It's just that one has to enable this support in the Makefile. $ grep INET6 contrib/ipfilter/Makefile

What ??

2001-02-23 Thread Manfred Antar
Dmesg: ---=== Happy Birthday Peter!!! ===--- :) Happy Birthday Manfred == || [EMAIL PROTECTED] || || Ph. (415) 681-6235 || == To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe

Re: What goes at the boot prompt

2001-02-20 Thread Edwin Culp
I have a kernel that hangs at boot, so when I try to boot kernel.old, I have a problem. At the Default: F1 prompt, I give it an F1 and then the space key give me FreeBSD/i386 BOOT Default: 0:wd(o,a)/boot/loader boot: _ What do I put at the boot prompt. I think the changes

Re: What goes at the boot prompt

2001-02-20 Thread Daniel C. Sobral
Edwin Culp wrote: I have a kernel that hangs at boot, so when I try to boot kernel.old, I have a problem. At the Default: F1 prompt, I give it an F1 and then the space key give me FreeBSD/i386 BOOT Default: 0:wd(o,a)/boot/loader boot: _ What do I put at the boot prompt. I

Re: What goes at the boot prompt

2001-02-20 Thread Kris Kennaway
On Tue, Feb 20, 2001 at 04:14:02PM -0800, Edwin Culp wrote: I still don't get it. Should you really be running -current? This kind of support question isn't appropriate for this list, IMO. Kris PGP signature

What happens when pressing a key to reboot

2000-10-02 Thread Karl M. Joch
creen gets immediatly black and the system hangs forever. i would like to compare the cvsupdates since mid of august, but i have no real idea where to start. is there any docu to read about the source, giving a newbee a start? or any hint what happens when pressing the key? would really like to f

Re: FIFOs select: what about our implementation?

2000-09-06 Thread Bruce Evans
On Wed, 6 Sep 2000, Andrey A. Chernov wrote: Please consider that we talk not about reads but about select. 'Select' is used to indicate that data is available while 'read' used to read it, they No, select on a read descriptor returns successfully when the descriptor is "ready" to read,

FIFOs select: what about our implementation?

2000-09-05 Thread Andrey A. Chernov
errno == 0. I attach the test for it below. The question is: what about our fifo select (actually poll) implementation? Is it really broken, or is it a feature? What standards says? If this is a feature, at least errno must be fixed. - #include

Re: FIFOs select: what about our implementation?

2000-09-05 Thread Peter van Dijk
On Tue, Sep 05, 2000 at 07:50:56PM +0400, Andrey A. Chernov wrote: Consider this comment comes from screen(1): /* * Define this if your system exits select() immediatly if a pipe is * opened read-only and no writer has opened it. */ #define BROKEN_PIPE 1 We have broken(?) pipe,

Re: FIFOs select: what about our implementation?

2000-09-05 Thread Andrey A. Chernov
On Tue, Sep 05, 2000 at 07:24:58PM +0200, Peter van Dijk wrote: select return code -1 with wrong errno == 0. Sorry, I was wrong about errno, it returns that descriptor is ready for read while there is nothing to read. I surely do think this behaviour is broken.

Re: FIFOs select: what about our implementation?

2000-09-05 Thread Andrey A. Chernov
On Wed, Sep 06, 2000 at 07:35:50AM +1100, Bruce Evans wrote: This behaviour is sort of intentional. Reads on a named pipe with no writers are specified by POSIX.1 to return immediately. 4.4BSD does extra work to break this in some cases. select() on a read descriptor open on such a pipe

Re: FIFOs select: what about our implementation?

2000-09-05 Thread Peter van Dijk
On Wed, Sep 06, 2000 at 12:44:33AM +0400, Andrey A. Chernov wrote: [snip] Please consider that we talk not about reads but about select. 'Select' is used to indicate that data is available while 'read' used to read it, they are two different things and behaviour of one thing not related to

Re: Even with version 1.54 of mfs_vnops.c and a freshly built worldand booted kernel (with ``options MFS''),I am still seeing these. What could I be missing?

2000-07-26 Thread George W. Dinolt
Mahtew Jacob wrote: Hmm. They went away for me- I thought, but no, you're right. They're still there. This is what I actually use to get rid of them: Index: mfs_vnops.c === RCS file: /home/ncvs/src/sys/ufs/mfs/mfs_vnops.c,v

Even with version 1.54 of mfs_vnops.c and a freshly built world andbooted kernel (with ``options MFS''), I am still seeing these. What could I bemissing?

2000-07-25 Thread George W. Dinolt
of mfs_vnops.c and a freshly built world and booted kernel (with ``options MFS''), I am still seeing these. What could I be missing? Thanks, -- Jos Backus [EMAIL PROTECTED] WebTV Networks, Inc., Mountain View, CA I can confirm that on my system with world built from sources cvsuped on Sunday

what turns on YP in getpwent()

2000-06-30 Thread George Michaelson
At line 67 in getpwent.c under libc/gen there is a block of code which is #ifdef YP. I know its a dumb question but what turns this #ifdef on? I ask, because I truss'd my login process after enabling yp via ypinit and while I can ypcat my maps, I can't see login do diddly squat into them under

Re: what turns on YP in getpwent()

2000-06-30 Thread George Michaelson
To answer my own question: src/lib/libc/Makefile.inc has .if !defined(NO_YP_LIBC) CFLAGS+= -DYP .include "${.CURDIR}/../libc/yp/Makefile.inc" .endif a find down the src tree does not reveal this being defined. I'm going to have to look elsewhere for

Re: what turns on YP in getpwent()

2000-06-30 Thread George Michaelson
RTFM. you cannot use +:* as the NIS catchall in FreeBSD. Its documented. (sigh) sorry. -George To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: What happens with SECURELVL? (init complains)

2000-06-07 Thread Robert Watson
At bde's request, I moved kern.suser_permitted to kern_prot.c and accidentally also trimmed kern.securelevel. I just committed it back into kern_mib.c. Please let me know if there are further problems. That said, I'm a little puzzled as to where securelevel is being defined -- a bunch of

Re: What happens with SECURELVL? (init complains)

2000-06-07 Thread Robert Watson
On Wed, 7 Jun 2000, Robert Watson wrote: That said, I'm a little puzzled as to where securelevel is being defined -- a bunch of stuff depends on the variable and yet my test build succeeded without it in there. And you go that far also -- far enough to boot rather than have the linking

What happens with SECURELVL? (init complains)

2000-06-06 Thread Andrey A. Chernov
Now init always complains: init: cannot get kernel security level: No such file or directory It is because KERN_SECURELVL define still present in /sys/sysctl.h but gone from kern_mib.c Moreover, even define is gone from kern_mib.c, sysctl_kern_securelvl() function is still there! Please clean

What Matt is doing now Opportunities with Backplane

2000-05-03 Thread Matthew Dillon
for a good web page designer -- taking one look at what used to be my personal home page ( www.backplane.com ) should make that fairly obvious :-). This is a formal, professional employment opportunity -- a true 'silicon valley' startup (except not based in silicon valley

What is the status of the mmap support in the pcm driver?

2000-03-30 Thread Maxim Sobolev
Hi, Does anybody can clarify what is current status of the mmap support in the pcm driver? I'm trying to get sound in the quakeforge working, but only managed to get famous "dsp_mmap." message in kernel logs instead of sound :(. -Maxim To Unsubscribe: send mail to [EMAIL

Re: What is the status of the mmap support in the pcm driver?

2000-03-30 Thread Luigi Rizzo
[Charset koi8-r unsupported, filtering to ASCII...] Hi, Does anybody can clarify what is current status of the mmap support in the pcm driver? I'm trying to get sound in the quakeforge working, but only managed to get famous "dsp_mmap." message in kernel logs instea

Re: user-ppp, logging what triggered call

2000-02-07 Thread Maxim Sobolev
Leif Neland wrote: Can user-ppp do that? Looking through the manpage, it can't, but... "set log +tcp/ip" and then grep logs for string containing "DIAL". -Maxim To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

user-ppp, logging what triggered call

2000-02-06 Thread Leif Neland
Can user-ppp do that? Looking through the manpage, it can't, but... Leif To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: Here's what I'm using

2000-01-22 Thread Tim Vanderhoek
On Fri, Jan 21, 2000 at 11:56:38PM -0700, Warner Losh wrote: arbitrary and works for me. I'm sure this could be improved, especially to make the order random. It really isn't too hard... I wouldn't be surprised if this crosses another solution in email. :) #! /bin/sh if [ -z "$1" ];

Re: Here's what I'm using

2000-01-22 Thread Tim Vanderhoek
On Sat, Jan 22, 2000 at 11:05:18AM -0500, Tim Vanderhoek wrote: On Fri, Jan 21, 2000 at 11:56:38PM -0700, Warner Losh wrote: arbitrary and works for me. I'm sure this could be improved, especially to make the order random. It really isn't too hard... I wouldn't be surprised if this

Here's what I'm using

2000-01-21 Thread Warner Losh
OK. I said I'd clean this up and send this out. Well, I didn't get as much ceanup done as I'd have liked. The order of hosts is arbitrary and works for me. I'm sure this could be improved, especially to make the order random. Warner #!/bin/sh if [ -z "$1" ]; then hosts=" \

Re: What happened to netstat?

1999-12-13 Thread Yoshinobu Inoue
On Sun, Dec 12, 1999 at 10:37:01AM -0500, Donald J . Maddox wrote: After rebuilding World and kernel last night, I find that the behavior of 'netstat -a' has changed... Only UNIX domain sockets are shown in the Errr... may I complain ? I got the same problem :( current last night.

What happened to netstat?

1999-12-12 Thread Donald J . Maddox
After rebuilding World and kernel last night, I find that the behavior of 'netstat -a' has changed... Only UNIX domain sockets are shown in the output, no inet stuff at all, e.g.: # netstat -a Active UNIX domain sockets Address Type Recv-Q Send-QInode Conn Refs Nextref Addr

Re: What happened to netstat?

1999-12-12 Thread Clive Lin
On Sun, Dec 12, 1999 at 10:37:01AM -0500, Donald J . Maddox wrote: After rebuilding World and kernel last night, I find that the behavior of 'netstat -a' has changed... Only UNIX domain sockets are shown in the Errr... may I complain ? I got the same problem :( current last night. -- CirX

Re: What is MTRR all about???

1999-06-07 Thread bush doctor
Quoting Daniel J. O'Connor (dar...@dons.net.au): On 05-Jun-99 bush doctor wrote: No man page yet. No horrors tho'. Man pages and info files are great, but there's nothing like reading through the sources ... #;^) Well given that the source contains help information its not a bad

Re: What is MTRR all about???

1999-06-05 Thread bush doctor
Quoting Daniel J. O'Connor (dar...@dons.net.au): On 04-Jun-99 bush doctor wrote: Pentium Pro MTRR support enabled, default memory type is uncacheable What is MTRR? Using the web based cross referencing

Re: What is MTRR all about???

1999-06-05 Thread Daniel J. O'Connor
On 05-Jun-99 bush doctor wrote: No man page yet. No horrors tho'. Man pages and info files are great, but there's nothing like reading through the sources ... #;^) Well given that the source contains help information its not a bad problem.. I think the author is a tad busy at the moment :)

What is MTRR all about???

1999-06-04 Thread bush doctor
After reading /sys/boot/README, I decided to sync up my -current boxes. I began playing around with loader, kld's and the splash screens. Now I have a few queries ... #;^)

RE: What is MTRR all about???

1999-06-04 Thread Daniel J. O'Connor
On 04-Jun-99 bush doctor wrote: Pentium Pro MTRR support enabled, default memory type is uncacheable What is MTRR? Using the web based cross referencing tool I came up with MTRR's are a way to tell

Finding out what function an interrupt is tied to..

1999-06-02 Thread Stephen Hocking-Senior Programmer PGS Tensor Perth
I'm having some problems since when the newbus code went in, in that my sound card doesn't seem to be interrupting anymore (PAS16, Voxware drivers). So what I'd like to do is look at the kernel and see if an interrupt actually has a function associated with it, and if it's being masked out. Any

Re: Finding out what function an interrupt is tied to..

1999-06-02 Thread Doug Rabson
On Wed, 2 Jun 1999, Stephen Hocking-Senior Programmer PGS Tensor Perth wrote: I'm having some problems since when the newbus code went in, in that my sound card doesn't seem to be interrupting anymore (PAS16, Voxware drivers). So what I'd like to do is look at the kernel and see

Re: error message, what does this mean?

1999-05-28 Thread Bruce Evans
May 27 23:39:23 p100 /kernel: vnode_pager: *** WARNING *** stale FS getpages May 27 23:39:23 p100 /kernel: No strategy for buffer at 0xc13637e0 May 27 23:39:23 p100 /kernel: : 0xc35ffd80: type VREG, usecount 4, writecount 0, refcount 0, flags (VOBJBUF) May 27 23:39:23 p100 /kernel: tag

Re: error message, what does this mean?

1999-05-28 Thread Wilko Bulte
As Bruce Evans wrote ... May 27 23:39:23 p100 /kernel: vnode_pager: *** WARNING *** stale FS getpages May 27 23:39:23 p100 /kernel: No strategy for buffer at 0xc13637e0 May 27 23:39:23 p100 /kernel: : 0xc35ffd80: type VREG, usecount 4, writecount 0, refcount 0, flags (VOBJBUF) May 27

Re: error message, what does this mean?

1999-05-28 Thread Wilko Bulte
- :|/|/ / / /( (_) Bulte WWW : http://www.tcja.nl http://www.freebsd.org It seems to me that a cp command like is probably trying to cp -R /mnt to /mnt ... /* will include /mnt, right? I'm not sure what would be causing the errors, though, unless the cp is recursing

error message, what does this mean?

1999-05-27 Thread Wilko Bulte
Hi My P100 testbox running a fairly recent current just said: May 27 23:39:23 p100 /kernel: vnode_pager: *** WARNING *** stale FS getpages May 27 23:39:23 p100 /kernel: No strategy for buffer at 0xc13637e0 May 27 23:39:23 p100 /kernel: : 0xc35ffd80: type VREG, usecount 4, writecount 0,

Re: error message, what does this mean?

1999-05-27 Thread Matthew Dillon
://www.tcja.nl http://www.freebsd.org It seems to me that a cp command like is probably trying to cp -R /mnt to /mnt ... /* will include /mnt, right? I'm not sure what would be causing the errors, though, unless the cp is recursing endlessly due to the cp of /mnt on top of /mnt

Re: have live system with NFS client cache problems what do i do?

1999-04-13 Thread Maxim Sobolev
? Alfred Perlstein wrote: On Mon, 12 Apr 1999, Maxim Sobolev wrote: Alfred Perlstein wrote: Hey, i was just doing a kernel compile over NFS and i have a weird situtation.? After compiling everything the linker barfs on linking. gensetdefs: cd9660_bmap.o: not an ELF file

Re: have live system with NFS client cache problems what do i do?

1999-04-12 Thread Maxim Sobolev
Hey I have pretty the same problems on my 4.0 cvsup'ed and builded few days ago! As NFS server I have 3.1-stable box. Sincerely, Maxim Sobolev Alfred Perlstein wrote: Hey, i was just doing a kernel compile over NFS and i have a weird situtation. After compiling everything the linker barfs

Re: have live system with NFS client cache problems what do i do?

1999-04-12 Thread Alfred Perlstein
On Mon, 12 Apr 1999, Maxim Sobolev wrote: Alfred Perlstein wrote: Hey, i was just doing a kernel compile over NFS and i have a weird situtation. After compiling everything the linker barfs on linking. gensetdefs: cd9660_bmap.o: not an ELF file for about 12 files... the compile

have live system with NFS client cache problems what do i do?

1999-04-11 Thread Alfred Perlstein
Hey, i was just doing a kernel compile over NFS and i have a weird situtation. After compiling everything the linker barfs on linking. gensetdefs: cd9660_bmap.o: not an ELF file for about 12 files... the compile is being done on a laptop that has my desktop's src dir NFS mounted. the card in

Re: have live system with NFS client cache problems what do i do?

1999-04-11 Thread Matthew Dillon
:Hey, i was just doing a kernel compile over NFS and i have a weird :situtation. After compiling everything the linker barfs on linking. : :gensetdefs: cd9660_bmap.o: not an ELF file What exact release of the kernel is running on the client and on the server? What is being NFS

Re: have live system with NFS client cache problems what do i do?

1999-04-11 Thread Alfred Perlstein
On Sun, 11 Apr 1999, Matthew Dillon wrote: :Hey, i was just doing a kernel compile over NFS and i have a weird :situtation. After compiling everything the linker barfs on linking. : :gensetdefs: cd9660_bmap.o: not an ELF file What exact release of the kernel is running on the client

Re: have live system with NFS client cache problems what do i do?

1999-04-11 Thread Matthew Dillon
:-current as of tuesday night. although the laptop is now moved :to -current as of today. : :i have 192.168.1.44:/usr/src on /usr/src : :this is only building the kernel in /usr/src/sys/compile/laptop : :server: :FreeBSD myname.my.domain 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Fri Apr 9 11:34:01 PDT

Re: have live system with NFS client cache problems what do i do?

1999-04-11 Thread Alfred Perlstein
On Sun, 11 Apr 1999, Matthew Dillon wrote: :-current as of tuesday night. although the laptop is now moved :to -current as of today. : :i have 192.168.1.44:/usr/src on /usr/src : :this is only building the kernel in /usr/src/sys/compile/laptop : :server: :FreeBSD myname.my.domain

Re: have live system with NFS client cache problems what do i do?

1999-04-11 Thread Matthew Dillon
:/usr/obj isn't mounted, i'm just compiling a kernel. : :no i have no msdos mounted filesystems, i do however have an :unmounted win98 partition and a cdrom with joliet extentions mounted :however the cdrom only contains mp3s. : :After doing more data manipulation (copying files around to flush

Re: have live system with NFS client cache problems what do i do?

1999-04-11 Thread Brian Feldman
On Sun, 11 Apr 1999, Matthew Dillon wrote: :-current as of tuesday night. although the laptop is now moved :to -current as of today. : :i have 192.168.1.44:/usr/src on /usr/src : :this is only building the kernel in /usr/src/sys/compile/laptop : :server: :FreeBSD myname.my.domain

Re: have live system with NFS client cache problems what do i do?

1999-04-11 Thread Brian Feldman
On Sun, 11 Apr 1999, Matthew Dillon wrote: :/usr/obj isn't mounted, i'm just compiling a kernel. : :no i have no msdos mounted filesystems, i do however have an :unmounted win98 partition and a cdrom with joliet extentions mounted :however the cdrom only contains mp3s. : :After doing more

Re: have live system with NFS client cache problems what do i do?

1999-04-11 Thread Matthew Dillon
: corruption is occuring on the client. But if the make procedure is not : accessing (much of) the client's hard drive, where on the client could : the corruption be coming from? : :This has nothing to do with DOS. In case you didn't get my other hint: :{/home/green}$ dd if=/dev/zero

Re: have live system with NFS client cache problems what do i do?

1999-04-11 Thread Stephen McKay
On Sunday, 11th April 1999, Alfred Perlstein wrote: On Sun, 11 Apr 1999, Matthew Dillon wrote: doing a 'file cd9660_bmap.o' on laptop (NFS client) gives me a cd9660_bmap.o: MS Windows COFF Unknown CPU An MS Windows binary? Do you have any msdos mounts on the client or server?

Re: have live system with NFS client cache problems what do i do?

1999-04-11 Thread Stephen McKay
On Sunday, 11th April 1999, Brian Feldman wrote: This has nothing to do with DOS. In case you didn't get my other hint: {/home/green}$ dd if=/dev/zero count=1 2/dev/null | file - standard input: MS Windows COFF Unknown CPU Don't ya just hate it when your mail is slow! Sigh...

Re: have live system with NFS client cache problems what do i do?

1999-04-11 Thread Brian Feldman
On Mon, 12 Apr 1999, Stephen McKay wrote: On Sunday, 11th April 1999, Brian Feldman wrote: This has nothing to do with DOS. In case you didn't get my other hint: {/home/green}$ dd if=/dev/zero count=1 2/dev/null | file - standard input: MS Windows COFF Unknown CPU Don't ya

Re: EGCS breaks what(1)

1999-04-06 Thread Bruce Evans
Alternately, we could jimmy around with the current hack, and prefix it with 4 NULs, and see what happened. Sorry, I haven't tested this idea, as I've not yet made the EGCS jump. egcs aligns long (= about 28 bytes) strings to 32-byte boundaries. This adds up to 27 NULs to sccsid[] depending

Re: EGCS breaks what(1)

1999-04-06 Thread John R. LoVerso
'what' is broken. C does not impose any sort of address ordering restriction on globals or autos that are declared next to each other. Right, except that 'what' isn't broken. It is vers.c (and conf/newvers.sh) that is broken, believing that the two variables will be allocating

Re: EGCS breaks what(1)

1999-04-06 Thread David O'Brien
The real question is whether the extreme alignment and padding used by EGCS can be turned off, especially for 486s. Considering it... probably based on -m486. -- -- David(obr...@nuxi.com -or- obr...@freebsd.org) To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe

Re: EGCS breaks what(1)

1999-04-06 Thread eagle
On Tue, 6 Apr 1999, Bruce Evans wrote: Alternately, we could jimmy around with the current hack, and prefix it with 4 NULs, and see what happened. Sorry, I haven't tested this idea, as I've not yet made the EGCS jump. egcs aligns long (= about 28 bytes) strings to 32-byte boundaries

Re: EGCS breaks what(1)

1999-04-06 Thread Joel Ray Holveck
'what' is broken. C does not impose any sort of address ordering restriction on globals or autos that are declared next to each other. Right, except that 'what' isn't broken. It is vers.c (and conf/newvers.sh) that is broken, believing that the two variables will be allocating in contiguous

EGCS breaks what(1)

1999-04-05 Thread Brian Feldman
Okay, let me be a little clearer ;) What(1) on the kernel no longer works because previously, the char sccs[] = { '@', '(', '#', ')' }; char version[] = blahhhfoo; Was contiguous. However, nowadays, nice EGCS pads 4 bytes (WHY?!?!) between those. So it appears @(#)\0\0\0\0FreeBSD

Re: EGCS breaks what(1)

1999-04-05 Thread Matthew Dillon
: Okay, let me be a little clearer ;) What(1) on the kernel no longer works :because previously, the :char sccs[] = { '@', '(', '#', ')' }; :char version[] = blahhhfoo; :Was contiguous. However, nowadays, nice EGCS pads 4 bytes (WHY?!?!) between :those. So it appears @(#)\0\0\0\0FreeBSD

Re: EGCS breaks what(1)

1999-04-05 Thread Stephen McKay
On Monday, 5th April 1999, Matthew Dillon wrote: :char sccs[] = { '@', '(', '#', ')' }; :char version[] = blahhhfoo; :Was contiguous. 'what' is broken. C does not impose any sort of address ordering restriction on globals or autos that are declared next to each other. Well, it's

Re Post!: What to make of the script /usr/src/tools/LibraryReport/LibraryReport.tcl?

1999-03-28 Thread Michael E. Mercer
Hello again, Posted this a few days ago...no response... so I am trying again. Later Michael Michael E. Mercer wrote: Hello, Sorry for posting to two lists...not sure where this should go. I saw an email where someone mentioned this script... how do I make out what this script

What to make of the script /usr/src/tools/LibraryReport/LibraryReport.tcl?

1999-03-26 Thread Michael E. Mercer
Hello, Sorry for posting to two lists...not sure where this should go. I saw an email where someone mentioned this script... how do I make out what this script is telling me and even though this script says a library is stale, does this mean I can remove it??? Also I read someones post about

anyone knows what does it mean

1999-03-02 Thread Chan Yiu Wah
Hello, I recently compile the egcs-1.1.1 and the system report to me that the ahc0:A:0 refuses tagged commands performance non-tagged I/O. The transfer speed drop from 20.00M/s to 3.3 M/s. Is there anyone have the same problem ? Cheers Clarence === Part of the dmesg === da0 at ahc0

What it means when running soffice 5.01

1999-02-27 Thread Chan Yiu Wah
Hello, Is there anyone knows what it means when running the soffice 5.01 . The message keeps growing as I using the soffice. Is it harmful the system? cheers Clarence = fbsd-elf# ./soffice Feb 27 22:51:03 fbsd-elf last message repeated 238 times Feb 27 22:52:12 fbsd-elf /kernel

Re: What it means when running soffice 5.01

1999-02-27 Thread Doug Rabson
On Sat, 27 Feb 1999, Chan Yiu Wah wrote: Hello, Is there anyone knows what it means when running the soffice 5.01 . The message keeps growing as I using the soffice. Is it harmful the system? You need to add these lines to your kernel config file: options P1003_1B options

Re: What it means when running soffice 5.01

1999-02-27 Thread Ollivier Robert
According to Chan Yiu Wah: Is there anyone knows what it means when running the soffice 5.01 . The message keeps growing as I using the soffice. Is it harmful the system? It is explained on htt://lt.tar.com/. You need the following lines in your kernel config file

What about inclusion of NTFS RO driver into current

1999-01-26 Thread Ustimenko Semen
Hello! Possibly we can include it also in RELENG_2_2? Bye. To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: What about inclusion of NTFS RO driver into current

1999-01-26 Thread Thomas Seidmann
Hi, I've modified the NTFS driver in following ways: 1. Transformed into a KLD 2. Fixed a bug in the driver for NTFS volumes with clusters above 1K My plan is to put it on my WWW page today. The modified version works for both 4.0-CURRENT and RELENG_3 as of today. Currently I'm working on

Re: What about inclusion of NTFS RO driver into current

1999-01-26 Thread Ustimenko Semen
Sorry, for self follow up, I haven't explain thougth clean enought. I've spoken of almost ready NTFS driver, that is reported to work for near 4-5 people. It was for stable and current (don't know how to call them now) with little difference. Thank you To Unsubscribe: send mail to

<    1   2   3   4   5   6