Ronald G. Minnich | 1 Aug 2005 03:29

Re: logging in...


On Sun, 31 Jul 2005, John Floren wrote:

> Okay, I found some stuff that needed to be done.  I had to run wrkey and
> keyfs for some reason, and the to enable the users I wanted to log in
> as.  It works now; thanks. Learning slowly,

you might want to document your steps for others ... this stuff is always 
very confusing.

thanks

ron

YAMANASHI Takeshi | 1 Aug 2005 14:30
Picon

Re: run and mount

> > There is multihost decryptor for xor algoritm...
> > http://rs-rlab.narod.ru/files/slave.c
> > http://rs-rlab.narod.ru/files/master.c
 :
> Someone else (for example YAMANASHI) have some other solutions.

As you mentioned me...  I have a tirivial system which
accomplishes a SETI like computing frame work at:
	http://www.tip9ug.jp/who/nashi/9grid/taskbag.tgz

You write a program which reads data from fd 0 and writes
the result to fd 1 and prepare a set of input to feed to
the program, then you can distribute the program and data
using taskbag and hope 9fans' volunteers to crunch numbers
for your set of task.

As a matter of fact, I'm going to ask 9fans to volunteer
cpu seconds to compute 25 queen problem using this. :)
--

-- 

Sergey Reva | 1 Aug 2005 15:51
Picon

Re: run and mount

Hello fans

Mirror of my public plan 9 files available at tip9ug.jp:
http://www.tip9ug.jp/who/rlab/files/slave.c
http://www.tip9ug.jp/who/rlab/files/master.c

http://www.tip9ug.jp/who/rlab/files/*
drawterm.zip - drawterm with Unicode for Windows
cap.c - screen capture
devi2c.c - nvram emulation with 24cXXX
life.c - "Life" for Plan 9
ln.c (line numerator)

> http://www.tip9ug.jp/who/nashi/9grid/taskbag.tgz
> taskfs
Thanks Kenji and Yamanashi, i'll now check this

Sergey
--

-- 
http://rs-rlab.narod.ru                            mailto:rs_rlab <at> mail.ru

Sergey Reva | 1 Aug 2005 18:51
Picon

Re: run and mount

Hello Fans

Solution is there
http://www.tip9ug.jp/who/rlab/files/mtest.c

Sergey
--

-- 
http://rs-rlab.narod.ru                            mailto:rs_rlab <at> mail.ru

Eric Van Hensbergen | 1 Aug 2005 21:16
Picon
Gravatar

Next Town Hall Meeting

My attempts at trying to encourage a far-east hosted town hall meeting
seem to have stalled.  As such, I'll put forth a date/time for the
next IRC meeting:

Wednesday, August 15th at 20:00 GMT/UTC.

Details and agenda items available on the wiki.  Same rules of
engagement as last time.

       -eric

Ronald G. Minnich | 2 Aug 2005 16:07

Re: run and mount


On Tue, 2 Aug 2005 arisawa <at> ar.aichi-u.ac.jp wrote:

> Thanks ron, but where is xcpu ?

working on it ... although it may be in sources, not sure. I'll try to 
find out. Vic Zandy wrote it, I am changing it a bit.

ron

Ezequiel Reyes | 2 Aug 2005 16:30
Picon

Re: problems with video card

Hi, I downloaded the plan9vesa imagen and tried it, the error message is:

aux/vga: vgactlw: < type mach64xx: bad VGA control message "type mach64xx"

when botting from the CD with monitor: xga

then it falls back to text prompt. Any ideas?

----- Original Message ----- 
From: "Federico Benavento" <benavento <at> gmail.com>
To: "Fans of the OS Plan 9 from Bell Labs" <9fans <at> cse.psu.edu>
Sent: Thursday, July 28, 2005 1:33 PM
Subject: Re: [9fans] problems with video card

> configure somewhere to make it work at least in 800x600x8 ?
there is an iso image with  generic vesa driver in:
http://9grid.de/plan9/plan9vesa.iso.bz2

this should work.
--

-- 
Federico G. Benavento

Russ Cox | 2 Aug 2005 16:34
Picon

Re: problems with video card

set monitor to vesa.

On 8/2/05, Ezequiel Reyes <ezequiel.reyes <at> newhotel.co.cu> wrote:
> Hi, I downloaded the plan9vesa imagen and tried it, the error message is:
> 
> aux/vga: vgactlw: < type mach64xx: bad VGA control message "type mach64xx"
> 
> when botting from the CD with monitor: xga
> 
> then it falls back to text prompt. Any ideas?
> 
> 
> 
> ----- Original Message -----
> From: "Federico Benavento" <benavento <at> gmail.com>
> To: "Fans of the OS Plan 9 from Bell Labs" <9fans <at> cse.psu.edu>
> Sent: Thursday, July 28, 2005 1:33 PM
> Subject: Re: [9fans] problems with video card
> 
> 
> > configure somewhere to make it work at least in 800x600x8 ?
> there is an iso image with  generic vesa driver in:
> http://9grid.de/plan9/plan9vesa.iso.bz2
> 
> this should work.
> --
> Federico G. Benavento
> 
> 
>
(Continue reading)

Ronald G. Minnich | 3 Aug 2005 00:42

debugging p9p threads question


I'm hacking on sshnet and have truncated it and ported it to linux, but it 
is not quite baked. One odd thing I've seen: I've truncated the last bit 
of it to this:

void
threadmain(int argc, char **argv)
{
        char *user, *service;
/*
        fmtinstall('B', mpfmt);
        fmtinstall('H', encodefmt);
*/
        service = nil;
        user = nil;
        ARGBEGIN{
        case 'B':       /* undocumented, debugging */
                doabort = 1;
                break;
        case 'D':       /* undocumented, debugging */
                debuglevel = strtol(EARGF(usage()), nil, 0);
                break;
        case '9':       /* undocumented, debugging */
                chatty9p++;
                break;
        case 's':
                service = EARGF(usage());
                break;
        default:
                usage();
(Continue reading)

Russ Cox | 3 Aug 2005 00:48
Picon

Re: debugging p9p threads question

Print statements.

Your call to threadexitsall(0) at the end of
threadmain is wrong.  It should be threadexits().
Threadexitsall makes all the procs exit, which
is not what you want.  Calling threadexits will
cause the threadmain thread to exit, and since
that is the only thread in the main proc, the 
main proc will exit, leaving the rest in the background.

Russ


Gmane