Re: trunk + loadbalance

2007-07-21 Thread Jamex Reynolds
What hashed protocol means exactly?, how can i test the loadbalance of trunk? From Wikipedia: A hash function [1] is a reproducible method of turning some kind of data into a (relatively) small number that may serve as a digital fingerprint of the data. So the packets get their fingerprint

dd if=/dev/audio of=/tmp/raw reads 0 bytes using azalia on 4.1-Release

2007-07-20 Thread Jamex Reynolds
record.encoding=slinear_le record.gain=0 record.balance=32 record.port=0x0 record.avail_ports=0x0 record.seek=0 record.samples=0 record.eof=0 record.pause=0 record.error=0 record.waiting=0 record.open=0 record.active=0 record.buffer_size=65536 record.errors=0 jamex:45$ dd if=/dev/sound of=/tmp/raw ^C0

plan 9 from user space compiling issue

2006-05-07 Thread jamex
Has anyone been able to compile plan 9 from user space or as it is also called plan9port? Running ./INSTALL as root fails as follows on 3.9-Release-i386. $ su Password: # cd /usr/local/plan9 # ./INSTALL * Resetting /usr/local/plan9/config * Building everything (be patient)... cd

Connecting to Airport Extreme Basestation with ural

2006-05-07 Thread jamex
know that WEP sucks but I don't want to leave a computer on 247 to encrypt the traffic on my home wireless network from passerbys. Cheers, Jamex

Re: Connecting to Airport Extreme Basestation with ural

2006-05-07 Thread jamex
Hi, here is my broken WEP hostname.ural0 file: media DS11 mode 11b nwkey testpassword9 inet 10.0.1.5 255.255.255.0 10.0.1.255 my working hostname.ural0 file is : $ cat /etc/hostname.ural0 media DS11 mode 11b inet 10.0.1.5 255.255.255.0 10.0.1.255 i've tried with Hex keys as well and no dice.

OT: X.org bug ( can someone enlighten me ? )

2006-05-03 Thread jamex
Hi, I don't understand this piece of code: if (getuid() == 0 || geteuid() != 0) Why check if the geteuid() != 0 if we are only wanting to root to run the block inside the if statement? My reasoning is that if geteuid != 0 then the statement evaluates to true and the code block gets run just