Re: [9fans] USB keyboard/mouse

2008-06-17 Thread lejatorn
Hello, That thread may be related to an issue similar to yours: http://groups.google.fr/group/comp.os.plan9/browse_frm/thread/29db526113595aef Cheers, Mathieu. On Mon, Jun 16, 2008 at 11:49:29PM +0200, Rodolfo kix Garci­a wrote: Hi, I am trying to use a Logitech USB Keyboard+Mouse in Plan

Re: [9fans] I/O load crashes Qemu

2008-06-17 Thread matt
I am going to defend QEMU I've run a Plan 9 auth/cpu server on there for 8 months or so with no problems beyond those of my own construction. I am emulating x86-32 on a pre-VT Opteron AMD-64 (though I only found out about the difference *after* I bought it) and have kqemu.ko loaded, I run

Re: [9fans] USB keyboard/mouse

2008-06-17 Thread Rodolfo kix García
Hello, That thread may be related to an issue similar to yours: http://groups.google.fr/group/comp.os.plan9/browse_frm/thread/29db526113595aef Cheers, Mathieu. That mail was in my mailbox ... sorry. Yesterday I looked for the problem and I didn't find the solution. Thanks. -- Rodolfo

Re: [9fans] Problem caused by recent change to diskparts

2008-06-17 Thread erik quanstrom
for(disk in /dev/sd[0-9A-Zabd-z]*) { if(test -f $disk/data test -f $disk/ctl) disk/fdisk -p $disk/data $disk/ctl [2]/dev/null if(test -f $disk/plan9) parts=($disk/plan9*) if not parts=($disk/data) for(part in $parts)

[9fans] imap4d funny

2008-06-17 Thread erik quanstrom
perhaps i'm missing something, but i don't understand why imap4d sets its site the way it does. the relevant code is so (edited for brevity): servername = csquery(sys, sysname(), dom); t = getenv(site); if(t == nil) site = servername; else{

Re: [9fans] imap4d funny

2008-06-17 Thread Russ Cox
thus if site=coraid.com and servername gets set to rb2.coraid.com, then site will be coraid.com.coraid.com. If you want to change the local mail domain, you have to use the option -d me.coraid.com The man page clearly says that if that's not specified, then it uses $site with the

Re: [9fans] imap4d funny

2008-06-17 Thread erik quanstrom
The man page clearly says that if that's not specified, then it uses $site with the domain from the server name. So you're expected to use site=glenda and then it turns that into glenda.coraid.com. I'm not claiming it's fantastic--I'd get rid of $site entirely--but it is working