Re: Capturing Parallel Port Data

2006-12-15 Thread Daniel O'Connor
owever we already make PCBs and write microcontroller code at work.. Actually maybe something like this would do what you want http://www.bb-elec.com/product.asp?SKU=232SPS2 I think then you could just plug it into the FreeBSD box and log the stuff coming from the serial port. -- Daniel O&#x

Re: LDAP integration

2007-01-09 Thread Daniel O'Connor
. I use OpenLDAP with smbldap-tools to do shared auth between FreeBSD and Windows. I was going to write up a nice tute about it but it got eaten when my laptop HD crashed and I haven't had the enthusiasm to redo it :( It wasn't *too* hard but not exactly trivial either :) -- Daniel O&

Re: "Streaming" data from kernel to userland

2007-01-18 Thread Daniel O'Connor
inking of this is sockets, so is there a sockets-like > interface which could be used to transfer large amounts of constantly > generated data from kernel to a userland application? Any advice on its > usage and/or examples? What's wrong with read()? -- Daniel O'Connor software and n

Re: "Streaming" data from kernel to userland

2007-01-19 Thread Daniel O'Connor
On Friday 19 January 2007 19:25, Ivan Voras wrote: > Daniel O'Connor wrote: > > On Friday 19 January 2007 08:52, Ivan Voras wrote: > >> mind while thinking of this is sockets, so is there a sockets-like > >> interface which could be used to transfer large amounts o

RE: How to make a PCI network device loadable module?

2001-01-18 Thread Daniel O'Connor
KLD.. I maintain a simple character device which didn't need anything special, but network devices may be different. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to ch

Re: gdb and debugging Linux binaries

2001-02-23 Thread Daniel O'Connor
> > > > So what is the correct procedure for debugging Linux binaries? > > Have you tried the Linux gdb? He said he did. The problem is the binary is in linux format but the coredump is in FreeBSD format.. You can still attach to processes etc though I think. --- Daniel O

Re: gdb and debugging Linux binaries

2001-02-24 Thread Daniel O'Connor
he program running. The program has its > own signal handlers and I cannot stop it before it crashes Ahh.. Recompile it? Or is it binary only? --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that ther

Re: Porting NVidia linux kernel modules to FreeBSD

2001-03-11 Thread Daniel O'Connor
spects). DRI would be nice, but nVidia don't agree so the Linux foo would be next best. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andr

Re: Porting NVidia linux kernel modules to FreeBSD

2001-03-11 Thread Daniel O'Connor
uot; on 4.0.2, > > No. What 3d acceleration can you do with X4 WRT OpenGL? I wasn't aware you could do any. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to ch

Re: Porting NVidia linux kernel modules to FreeBSD

2001-03-11 Thread Daniel O'Connor
ree-4's 'nv' > driver? I mean, will 336/utah be better?? No, nvidia's binary driver would be (a lot) faster. The Utah-GLX one doesn't direct render which slows it down a lot. (All the GL commands go through the X pipe) --- Daniel O'Connor software and netwo

Re: Porting NVidia linux kernel modules to FreeBSD

2001-03-11 Thread Daniel O'Connor
esa.so, etc are included in XFree 4.0.2 core > distribution. So how come that lots of applications still have Mesa-3.2 > in their dependencies? No idea :) --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about

Re: httpfs

2001-03-17 Thread Daniel O'Connor
dup2'd stdout and stderr of the executed > program to the child fd, and the parent could read its output, yet > not write to its stdin. pipe's are bidirectional in FreeBSD.. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "T

RE: Easy way to compute memory stats? (procfs?)

2001-03-19 Thread Daniel O'Connor
gt; exist, what are the easiest calls to use to get at them so I could > write some programs that would output this info. -sc I think you can get some of these from sysctl.. Unfortunatly I don't know the MIB's to use :) Try browsing sysctl -a You could also try calling vmstat, and

RE: any decently supported scanner around ?

2001-03-19 Thread Daniel O'Connor
nd line tool :) I have a HP ScanJet 5400C which works pretty well. Admittedly SANE is pretty big, but I don't think it is intolerably slow.. Network scanning is pretty sexy IMHO :) --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The ni

Re: SCSI-over-* hacks

2001-03-21 Thread Daniel O'Connor
ible through pass*, and thus be supported by any scanning software > that can use a SCSI scanner. If scanners supported SCSI they'd be umass devices, generally they're not, you attach uscanner to them and then feed them to SANE. --- Daniel O'Connor software and net

RE: Need advice (server continue dies)

2001-03-27 Thread Daniel O'Connor
. It does seem odd given the machien doesn't look _too_ busy. What sort of processes are you running on it? Web server, ftp server, etc? Can you run top or ps and find out what particular processes are running at the time it crashes? --- Daniel O'Connor software and network e

Re: wd & ata

2001-03-29 Thread Daniel O'Connor
ching and tagged queuing (see LINT) too. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to [EMAIL PROT

RE: Writing to a file in the kernel

2001-03-30 Thread Daniel O'Connor
Thanks in advance! You could just use printf and the messages will appear in the console.. You can also add a debugging ioctl to your device, or a sysctl to change the debug level mid stream. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au

Re: Writing to a file in the kernel

2001-03-30 Thread Daniel O'Connor
On 30-Mar-01 Gurpratap Virdi wrote: > The problem is that printf's scroll off the screen. How can I write to a > file? If you are running syslog it will write kernel messages wherever you tell it.. ie... kern.* /var/log/mykernelmessages.txt --- Daniel O'Con

RE: How do I create .ko files

2001-04-02 Thread Daniel O'Connor
efile for examples --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubs

Re: your mail

2001-04-06 Thread Daniel O'Connor
veryone else does... The loader can read quite a number of file systems, and since it only needs read-only support adding others is trivial (so I am told :) The loader can load the kernel and modules off any filesystem it understands. --- Daniel O'Connor software and network engine

Re: your mail

2001-04-06 Thread Daniel O'Connor
On 06-Apr-2001 Rasputin wrote: > * Daniel O'Connor <[EMAIL PROTECTED]> [010406 10:08]: > > > > On 06-Apr-2001 Rasputin wrote: > > The loader can load the kernel and modules off any filesystem it understands. >^^ >

RE: Mkisofs and ISO images that boot

2001-05-14 Thread Daniel O'Connor
mkisofs: Error - boot image >'FirstCD/boot/cdboot' is not the an allowable size. You need a boot floppy image (1.44 or 2.88 meg) and you feed that to mkisofs. make release creates one of these I don't think make buildworld does. --- Daniel O'Connor software and network engin

Re: A hack to rebuild port KLDs during kernel builds

2004-11-29 Thread Daniel O'Connor
upgrade of the port which isn't necessarily a good thing (eg I can't use the latest nvidia port because the 6113 driver blows up on my laptop). -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards

Re: A hack to rebuild port KLDs during kernel builds

2004-11-29 Thread Daniel O'Connor
6113 driver blows up on my laptop). -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC

Re: A hack to rebuild port KLDs during kernel builds

2004-11-29 Thread Daniel O'Connor
On Tue, 30 Nov 2004 15:58, M. Warner Losh wrote: > In message: <[EMAIL PROTECTED]> > > "Daniel O'Connor" <[EMAIL PROTECTED]> writes: > : On Tue, 30 Nov 2004 14:35, M. Warner Losh wrote: > : > Can't you just add modules override with abs

Re: USB OHCI problems...

2004-11-30 Thread Daniel O'Connor
re you testing it? Last time I tried my USB audio device I got pretty reliable panics trying to get KDE to use it :( -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose f

Re: finding and mounting a fat partition

2004-12-07 Thread Daniel O'Connor
the device is called. What is the device that you installed on? ad0? -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Finger

Re: 5.3 Release and Realtek

2004-12-19 Thread Daniel O'Connor
:) [inchoate 10:30] ~ >ll /boot/kernel/snd*.ko | wc -l 25 Have you rebuilt your kernel? It may be that it failed part way through so you didn't get the sound driver modules built or installed. -- Daniel O'Connor software and network engineer for Genesis Software - http://www

Re: 5.3 Release and Realtek

2004-12-19 Thread Daniel O'Connor
automgically. No, the modules are built regardless of the kernel options you use. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanen

Re: Mac UFS partition unreadable

2004-12-20 Thread Daniel O'Connor
d as FAT32). You can use newfs_msdos to format a FAT32 partition in FreeBSD. It will work up to ~200Gb, and then FreeBSD won't mount it unless you have a special option in your kernel.. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au &

Re: Unable to get APM working -- help!

2004-12-25 Thread Daniel O'Connor
ke to enable it! ACPI will allow you to do this plus a lot more. If you want to do things based on power related state changes (eg lid close, power button press, AC unplugged etc..) you can use devd which can respond to ACPI events. -- Daniel O'Connor software and network engineer for Gene

Re: Unable to get APM working -- help!

2004-12-25 Thread Daniel O'Connor
>> was > >> changing my CPU from 600 to 1600 ghz according to the load, but when I > >> disabled APM and enabled ACPI this ceases to work and the CPU will > >> always > >> run at 1600ghz. Also, acpiconf -i0 says device not configured.. > > > >

Re: Unable to get APM working -- help!

2004-12-25 Thread Daniel O'Connor
ACPI turned on.. weird. Any chance there is a new BIOS available for that system? > Did you have to do anything in special to make -i 0 work? (it says device > not configured to me.. perhaps I missed something) No.. If I try and look at a non existent battery slot it says 'dev

Re: Unable to get APM working -- help!

2004-12-26 Thread Daniel O'Connor
entries, ie acpi_cmbat0: on acpi0 acpi_cmbat1: on acpi0 which I think is pretty fundamental to being able to read battery status ;) -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so m

Re: Unable to get APM working -- help! [no acpi_cmbat entries]

2004-12-26 Thread Daniel O'Connor
the same exact problem under Linux. He had /proc/acpi > > but no /proc/acpi/battery. > > > > I know battery status can be seen, as the laptop shipped with win XP > > home, which I promptly got rid of, but I installed a game there to see > > how many FPS I'd g

Re: Benchmark: NetBSD 2.0 beats FreeBSD 5.3

2005-01-07 Thread Daniel O'Connor
t; I guess that this might worth investigating: > > http://people.freebsd.org/~das/pbench/pbench.html It's nice to see constructive info amidst the flamage :) -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing

Re: network trunkin

2005-01-09 Thread Daniel O'Connor
with VLANs. Not sure about otherwise. I though there was a netgraph channel bonding node, but I can't remember it's name :( -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so

Re: Picture CDs ?

2005-01-11 Thread Daniel O'Connor
raphics/xpcd port which claims to be able to read PhotoCD's.. I've never used it though. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from."

Re: Module getting loaded although init fuction returns error

2005-01-13 Thread Daniel O'Connor
t of loaded > modules. > > Can anybody pls explain me this? What does dmesg say after you loaded it? > Is it a problem with my module? Probably. Do you have any source code that we can look at? -- Daniel O'Connor software and network engineer for Genesis Software - http://

Re: clock time in milliseconds into a c program

2005-01-19 Thread Daniel O'Connor
gettimeofday(&now, NULL); timespecsub(&now, &then); printf("function took %ld milliseconds to run\n", now.tv_sec * 1000 + now.tv_usec / 1000); -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing

Re: VMCORE NOT FOUND

2005-02-12 Thread Daniel O'Connor
g appears in it after the kernel panic except the minfree file > and the kernel.debug in my home directory? Is there enough space in /var? Does the kernel actually write the crashdump when it panics? What does savecore print during startup after the crash? -- Daniel O'Connor software and

Re: Senao Wireless Hidden SSID

2005-02-14 Thread Daniel O'Connor
On Tue, 15 Feb 2005 12:02, Daniel Dias Gonçalves wrote: > I setup a FreeBSD 5.3 with Senao SL-2511CD Plus ext2 802.11b in mode > HOSTAP. > Using scaning software, i view the name of the SSID. It´s possible to > hidden SSID ? does ifconfig xyz0 hidessid work? -- Daniel O'Co

Re: mapping small parts of a pci card to conserve KVA

2005-02-15 Thread Daniel O'Connor
useful for a lot of > things, but none exists today. As soon as bus_activate_resource is > called, it gets mapped. You could do something like puc does and attach a child driver to part of it right? (Stab in dark :) -- Daniel O'Connor software and network engineer for Genesis Software

Re: SSL connections not working.

2005-02-19 Thread Daniel O'Connor
I tried reinstalling sendmail, reinstalling > sasl, and creating new certificates, and nothing changes the behavior. > I can connect (locally) with openssl's s_client and get what appears > to be a normal and correct sendmail dialog. Can you tcpdump and see what happens? Can you connect wit

Re: Signalling a process from a INTR_FAST handler

2005-02-19 Thread Daniel O'Connor
ink you are, and I think the only way to do it is to schedule another kernel [heavy] thread to do the wakeup. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose fr

Re: gcc question

2005-02-23 Thread Daniel O'Connor
27;ll want to be careful about the fact that the Atmel has 2 separate address spaces (if it's an AVR anyway) which can cause problems because you have to read from the right one. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nic

Re: gcc question

2005-02-24 Thread Daniel O'Connor
on an AVR? -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8

Re: Driver Update Disk discussion

2005-02-24 Thread Daniel O'Connor
stall into /boot/modules (I patch so they don't) as it is a really good way to shoot yourself in the foot during an upgrade :( -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are s

Re: Driver Update Disk discussion

2005-02-24 Thread Daniel O'Connor
so they don't) as it is a really good way to > : shoot yourself in the foot during an upgrade :( > > Usually this is only a problem when tracking or jumping to current, > but I understand... Yeah usually, but I have had it happen in -stable too (very rare). Even so it can be a pre

Re: poll or select for ppi?

2005-03-14 Thread Daniel O'Connor
es. ie you're stuck with polling :( -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596

Re: Freebsd 5.0 NICs issue

2005-03-17 Thread Daniel O'Connor
o you want to do this? If you want an alias you only need 1 NIC and you do.. ifconfig em0 inet 205.229.165.4 netmask 255.255.255.0 ifconfig em0 alias inet 205.229.165.8 netmask 255.255.255.255 What is the second NIC going to be used for? -- Daniel O'Connor software and network engineer f

Re: Freebsd 5.0 NICs issue

2005-03-18 Thread Daniel O'Connor
s. Errm.. Why do they need to be on the same subnet? Are they connected to the same ethernet segment? Are you trying to do bridging? ie more details please :) -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standa

Re: Ziatech 5503 watchdog driver

2005-03-18 Thread Daniel O'Connor
you only need the stuff from "child = .." to "bus_set_resource.."). -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andre

Re: Ziatech 5503 watchdog driver

2005-03-19 Thread Daniel O'Connor
are quite a number of examples in the tree. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 434

Re: NIC detected, but won't DHCP or configure

2005-03-22 Thread Daniel O'Connor
On Tue, 22 Mar 2005 17:30, Andrew Robinson wrote: > thanks for the suggestion! I tried that and it didn't seem to change > anything: the relevant output of pciconf -lv is still Try if_rl.ko/rl0 -- Daniel O'Connor software and network engineer for Genesis Software - http://www.g

Re: Interrupt Service Routines

2005-03-29 Thread Daniel O'Connor
On Tue, 29 Mar 2005 19:48, Ashwin Chandra wrote: > Do you guys know of any example code of ISR's in the kernel? Most of the drivers in the kernel? Look for intr in /usr/src/sys/dev/*/*.c eg line 1507 of /usr/src/sys/dev/fxp/if_fxp.c -- Daniel O'Connor software and network

Re: which Wifi cards can be used for a WAP?

2005-04-02 Thread Daniel O'Connor
it was fairly easy to modify the card to have an external connector. (YMMV, fire/smoke warning etc) -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from."

Re: Using kld functions in other kld's?

2005-04-06 Thread Daniel O'Connor
y more?) so you can only access the public interfaces. See EXPORT_SYMS in /usr/src/sys/conf/kmod.mk -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." --

Re: My experience with cpufreq in -STABLE

2005-04-06 Thread Daniel O'Connor
s. One thing that does worry me about having a userland daemon control the speed is that if it drops down to a really low speed after some idle time it could take a very long time to get some CPU time. Not sure if it's a real problem yet though. -- Daniel O'Connor software and netwo

Re: My experience with cpufreq in -STABLE

2005-04-07 Thread Daniel O'Connor
On Thu, 7 Apr 2005 22:33, Bruno Ducrot wrote: > On Thu, Apr 07, 2005 at 10:49:25AM +0930, Daniel O'Connor wrote: > > The algorithm used by the acpi_ppc module semed quite good to me when I > > used it (before the frequency stuff was committed). > > http://www.spa.is.u

Re: make for bootable ISOs

2005-04-10 Thread Daniel O'Connor
ulation for booting.. make release builds an install CD and a live file system disk. I made a page with some tips on make release for 4.x if you're interested.. http://www.gsoft.com.au/~doconnor/FreeBSD-release-2.html -- Daniel O'Connor software and network engineer for Genesis Software - h

Re: MDELAY()

2005-04-15 Thread Daniel O'Connor
On Fri, 15 Apr 2005 21:46, Dipjyoti Saikia wrote: > DELAY() in FreeBSD uses a busy loop . I am looking for something like > sleep_on_timeout() call in Linux . (dont' want to waste the CPU cycles > by DELAY'ing) tsleep/msleep/timeout are probably what you want. -- Daniel O&

Re: MDELAY()

2005-04-15 Thread Daniel O'Connor
ing to the top of the makefile similar to the one for spl? -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B76

Re: region code in cdrecord

2005-04-23 Thread Daniel O'Connor
code is part of the VOB/IFO files that contain the DVD, not as a part of the ISO metadata. You will need another tool to change region, I know DVD Decrypter [http://www.dvddecrypter.com/] does it for Win32. Maybe transcode? -- Daniel O'Connor software and network engineer for Genesis So

Re: region code in cdrecord

2005-04-24 Thread Daniel O'Connor
honest in taking whatever steps you need to play a > piece of legitimately purchased media. Maybe so, but you can still get sued for it :( -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there ar

Re: region code in cdrecord

2005-04-24 Thread Daniel O'Connor
ion of major brands like Sony (probably because they sell DVDs as well as players). So, to repeat.. It ISN'T cdrecord you want to screw around with, it's the actual ISO! OK? -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au

Re: region code in cdrecord

2005-04-26 Thread Daniel O'Connor
On Wed, 27 Apr 2005 09:02, Chuck Robey wrote: > and growisofs instead. The both have large man pages, but nothing in > them regarding the setting of region codes. Not at all suprising given that the ISO metdata (ie what mkisofs makes) doesn't contain the region information..

Re: open("/dev/cuaaX") is slow

2005-04-29 Thread Daniel O'Connor
y? Can I get rid of it? man comcontrol Try trimming the dtrwait value back and see how it goes. (Although I'm not sure why you want to open/close a serial port so frequently) -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice

Re: open("/dev/cuaaX") is slow

2005-04-29 Thread Daniel O'Connor
e if it would make much/any difference. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E5

Re: mergemaster improvement (auto-update for not modified files)

2005-05-06 Thread Daniel O'Connor
e only down side is that it's UI is totally unlike mergemaster so it can be a bit strange to get used to. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose fro

Re: mergemaster improvement (auto-update for not modified files)

2005-05-06 Thread Daniel O'Connor
hecksums database can be even committed into > CVS and will not bloat it. Ideally, this way of updating should be > available even for those users who have no access to internet > (distribution recieved on CDROM, etc.) 264k is a pretty large file to commit to the repo.. -- Daniel O&

Re: mergemaster improvement (auto-update for not modified files)

2005-05-06 Thread Daniel O'Connor
> Yes, I know. And don't sure that it is some need to commit this file. > Anyway, this file is less that INDEX, and unlike INDEX, will not > rapidly changed. Checksum database will grow slowly. The INDEX file isn't in CVS anymore.. It probably won't grow very f

Re: files refused to delete

2005-05-09 Thread Daniel O'Connor
On Tue, 10 May 2005 02:00, Maslan wrote: > here is the output of fsck : > > ** /dev/ad0s3a (NO WRITE) If it's mounted read/write you will get inconsistent result on an fsck. Try doing it in single user mode. -- Daniel O'Connor software and network engineer for Gene

Re: mergemaster improvement (auto-update for not modified files)

2005-05-13 Thread Daniel O'Connor
erly-smart, you could even try automagically merging local changes ;) etcmerge can already do this :) -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from."

Re: mergemaster improvement (auto-update for not modified files)

2005-05-13 Thread Daniel O'Connor
x27;t walk you through resolving conflicts. Still, it is very powerful and in general you don't have to resolve any conflicts so total amount of work required is small. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thin

pam_ssh problems

2005-05-18 Thread Daniel O'Connor
think I'll work on a patch. Basically this is a heads up for anyone else that uses pam_ssh to be a bit careful :) -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choos

Re: pam_ssh problems

2005-05-18 Thread Daniel O'Connor
On Wed, 18 May 2005 22:28, Daniel O'Connor wrote: > I think I'll work on a patch. > > Basically this is a heads up for anyone else that uses pam_ssh to be > a bit careful :) See bin/81231 for a patch. -- Daniel O'Connor software and network engineer

Re: ffsrecov still broken port?

2005-05-29 Thread Daniel O'Connor
mount it read only and then copy the essential data off it.. How badly damaged is it? -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tan

Re: ffsrecov still broken port?

2005-05-29 Thread Daniel O'Connor
ump. You can't specify /dev/md0s2a or whatever to fsck/mount? -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprin

Re: squid and freebsd configuration

2005-06-02 Thread Daniel O'Connor
Have you tried downloading from the FreeBSD box using, say fetch? -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerpri

Re: squid and freebsd configuration

2005-06-03 Thread Daniel O'Connor
too slow? How are you testing it? Is it slow to transfer bulk data, or to do individual connections? Is your DNS set up properly? Can squid reverse lookup the names of the IPs that are connecting to it? -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gso

Re: squid and freebsd configuration

2005-06-03 Thread Daniel O'Connor
> to this configuration ? I think you should not touch your firewall configuration until you fix the rest of your network problems first. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are

Re: prioritizing small ip packets?

2005-06-13 Thread Daniel O'Connor
using PPPoE and setting it up for multi-link over one link. The packets get fragmented into smaller pieces and the fragments of smaller packets get higher priorities. Not sure how much over head it cost, but ISTR it wasn't too bad. -- Daniel O'Connor software and network engineer for Ge

Re: Accessing filesystem from a KLD

2005-06-25 Thread Daniel O'Connor
ings like building the firmware image into the kernel for cases where you are NFS mounting your disks (for example). -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose

Re: linking libjava.so RPATH problem

2005-07-05 Thread Daniel O'Connor
the JVM libraries. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC

Re: Odd ataraid situation

2005-07-11 Thread Daniel O'Connor
haven't been able to do this :( I wish it were possible, but it doesn't not appear to be. Stupidly (at least with my RAID card) you can make a stripe array with 1 disk, but not a mirror with 1.. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.

Re: Remove Heimdal Kerberos from my FreeBSD

2005-07-17 Thread Daniel O'Connor
nd on Kerberos and if you use the above option they will be built without Kerb support. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Ta

Re: Remove Heimdal Kerberos from my FreeBSD

2005-07-17 Thread Daniel O'Connor
it. I think making the Heimdal Kerberos part of the base > FreeBSD OS is bad idea, but linking base software (like telnet, ssh), which > is part of the base FreeBSD OS, against it, is very very bad idea. Well you're entitled to your opinion but you might like to back it up with reasons

Re: Remove Heimdal Kerberos from my FreeBSD

2005-07-18 Thread Daniel O'Connor
actual penalty for linking to Kerberos? It is easy to not use Kerberos if you don't want to, but it's a major pain in the ass to recompile ssh/telnet/etc when you do. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice

Re: Remove Heimdal Kerberos from my FreeBSD

2005-07-18 Thread Daniel O'Connor
itable in an unused configuration recently? I don't believe so). Personally I'd be more worried about the PAM code. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to c

Re: perl

2005-08-03 Thread Daniel O'Connor
"; > $name = > I would like to get the input like this: This is a Perl question, not a FreeBSD one.. You might want to look up stty and -echo.. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about stan

Re: IBM Active Protection System Approach

2005-08-23 Thread Daniel O'Connor
G == park laptop heads" :) -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC2

Re: IBM Active Protection System Approach

2005-08-23 Thread Daniel O'Connor
in first year and that was a long time ago :) -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0

Re: JFS2 on freebsd

2005-09-09 Thread Daniel O'Connor
nough and you are prepared to maintain it, it will almost certainly be committed. FreeBSD works from the ground up, not the other way around. If you want it, write it :) PS I am not a core member :) -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsof

Re: ELF binary type "0" not known.

2005-09-16 Thread Daniel O'Connor
D Handbook. Or.. cd /usr/ports/www/linux-mozilla make install :) (or firefox, or..) -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GP

Re: ELF binary type "0" not known.

2005-09-16 Thread Daniel O'Connor
un, wouldn't the error message mention ELF binary type 3, not 0? > > So I went ahead and included all the steps, just to cover all bases :) I'd be *very* suprised.. I expect he just downloaded an RPM from somewhere.. -- Daniel O'Connor software and network engineer for Genesis S

Re: ELF binary type "0" not known.

2005-09-16 Thread Daniel O'Connor
nux.ko > $ /usr/compat/linux/bin/ls /bin > basename chgrp cpecho fgrep ls mvrm setserial stty > true bash chmod date egrep grep mkdir nice rmdir sh > sync uname bash2 chown ddfalse ln mknod pwd rpmsleep > touch

Re: ELF binary type "0" not known.

2005-09-16 Thread Daniel O'Connor
as having linprocfs loaded :) > What I find weird is the fact that as soon as linux.ko is loaded, > the kernel "learns" to treat type 0 binaries as type 3; but this is > probably because Daniel Eischen has at some earlier time set > the kern.fallback_elf_brand sysctl to 3. Yes that i

Re: KINDLY HELP : error while kldloading a pci,character driver

2005-09-20 Thread Daniel O'Connor
_VERSION, in your cdevsw. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F C

<    1   2   3   4   5   6   >