Re: MIB support for network devices in FreeBSD?

2002-06-09 Thread Andre Oppermann
Terry Lambert wrote: Andy Sparrow wrote: But these stats don't seem to be collected for at least some network card drivers, presumably because those drivers aren't collecting those stats, e.g. they don't #include net/if_mib.h, and thus don't allocate a mib structure or increment any

Re: MIB support for network devices in FreeBSD?

2002-06-09 Thread Terry Lambert
Andre Oppermann wrote: Benchmark the driver. If it's fast, it doesn't collect the statistics. Come on, this is bullshit. whatever++ hardly makes any difference. There are other places where way more cycles are wasted for less. You removed my 8-) by truncating my statement, and

regular file size stored in dump header?

2002-06-09 Thread Mark Hannon
Hi, I am trying to add some flags to restore which would print the filesizes of the files included on the tape. This is pretty easy for directory entries (an entry exists in inotab) but I can't see any easy way for regular files. Do I have to count the blocks? Any other way? Rgds/mark To

AWARD NOTIFICATION; FINAL NOTICE

2002-06-09 Thread DIRECTOR PROMOTIONS WERKEN BIJ DE LOTTO
WERKEN BIJ DE LOTTO, 41132, NL-1007 DB AMSTERDAM, THE NETHERLANDS. FROM: THE DESK OF THE DIRECTOR PROMOTIONS, INTERNATIONAL PROMOTIONS/PRIZE AWARD DEPARTMENT, REF: WBL/67-AO91657984 ATTENTION: AWARD NOTIFICATION;

Re: a hopefully simple question

2002-06-09 Thread Andrew
On Sat, 8 Jun 2002, tyler spivey wrote: would someone please write a simple program to do something like: beep 200 300 which would make a 200 hz tone for 300 ms? Try ftp://ftp.ugh.net.au/pub/unix/beep/beep-1.0.tar.gz or at least tell me where to look for the information i need?

Re: Automounting samba shares / pam_mount

2002-06-09 Thread Lukas Ertl
On Sat, 8 Jun 2002, I wrote: I'm currently trying to find out how to automount homedirs via samba when users log in (via ssh, ftp, telnet,...), and I've found pam_mount, a PAM module which seems to do the trick under Linux. I've also found that this module was rejected as a port about one

Re: a hopefully simple question

2002-06-09 Thread Muhammad Faisal Rauf Danka
Use following programs speaker spkrtest see their man pages for more info. Regards, - Muhammad Faisal Rauf Danka Chief Technology Officer Gem Internet Services (Pvt) Ltd. web: www.gem.net.pk Vice President Pakistan Computer Emergency Responce Team (PakCERT) web: www.pakcert.org Chief

0xdeadxxxx ?

2002-06-09 Thread Arun Sharma
I just got a kernel mode page fault. I'd like to find out more about fault virtual address = 0xdeadc162 It looks like the address is meant to signal a particular class of error. Which one ? -Arun Background fsck: Fatal trap 12: page fault while in kernel mode cpuid = 0; lapic.id

Re: 0xdeadxxxx ?

2002-06-09 Thread Matthew Dillon
For debugging purposes kernel memory which has been freed is filled with the pattern 0xdeadc0de (hex). So if you get a VM fault on something similar then something in the system has tried to reference a structure that is sitting in memory which has been freed. A no-no to be

signals and applications

2002-06-09 Thread tyler spivey
ok - I hope I can get an answer: how come (under linux) i can use my favourite web browser and hit ^c (interrupt) and it will interrupt any network application, but under FreeBSD there are some operations that can't be interupted and just wait there? To Unsubscribe: send mail to [EMAIL

Re: signals and applications

2002-06-09 Thread Alfred Perlstein
* tyler spivey [EMAIL PROTECTED] [020609 17:44] wrote: ok - I hope I can get an answer: how come (under linux) i can use my favourite web browser and hit ^c (interrupt) and it will interrupt any network application, but under FreeBSD there are some operations that can't be interupted and

Re: signals and applications

2002-06-09 Thread Kip Macy
I've seen instances of this with ping, I just assumed it was an artifact of signal delivery only occurring after returning from blocking operations. -Kip On Sun, 9 Jun 2002, Alfred Perlstein wrote: * tyler spivey [EMAIL PROTECTED] [020609 17:44] wrote: ok -

Questions about kernel/userspace backwards compatibilty between minor revisions

2002-06-09 Thread Matthew Emmerton
I' m working on getting OpenAFS working 100% on FreeBSD, and while reviewing the first set of my patches with the OpenAFS maintainer, some questions about kernel/userspace backwards compatibility came about. More specifically, OpenAFS was first ported on FreeBSD 4.2, and as a result, all config

natd trans proxy

2002-06-09 Thread Alexey Privalov
hi all. i`m running two natd`s on rl3 (external) and rl0 (internal). the first natd is running on 8668 (standart) port and is diverting private ip to ip on interface and have following configuration: interface rl3 unregistered_only yes use_sockets yes

Kernel hacking questions

2002-06-09 Thread Arun Sharma
1. Can I use a SMP kernel and bring it up with just one CPU on a two CPU machine ? 2. How do I trace back funcname+offset to a particular line of C code ? I tried objdump -d and gcc -S, but it's not easy to read. I thought there was a way to get gcc to interleave the C code and the

Re: 0xdeadxxxx ?

2002-06-09 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Arun Sharma writes: I just got a kernel mode page fault. I'd like to find out more about fault virtual address = 0xdeadc162 0xdeadcode is used to fill freed memory. It looks like the address is meant to signal a particular class of error. Which one ?

Re: Questions about kernel/userspace backwards compatibilty between minor revisions

2002-06-09 Thread Alfred Perlstein
* Matthew Emmerton [EMAIL PROTECTED] [020609 19:21] wrote: I' m working on getting OpenAFS working 100% on FreeBSD, and while reviewing the first set of my patches with the OpenAFS maintainer, some questions about kernel/userspace backwards compatibility came about. More specifically,