Re: [9fans] Newbie question

2009-04-21 Thread Eoghan Sherry
2009/4/21 philo...@juno.com : > Could someone be kind enough to remind me how I gain access > to protected folders such as /lib and /bin You want to add yourself to the group sys on the file server (fossil). The wiki explains how with links to relevant man pages: http://www.plan9.bell-labs.com/wik

Re: [9fans] keyboard events in sam

2009-12-07 Thread Eoghan Sherry
The keyboard is handled in src/cmd/devdraw which could be considered the plan9port equivalent of the Plan 9 kernel (at least the keyboard, mouse, and graphics part). The X11 version of devdraw maps the X notion of a keyboard to the Plan 9 one in __xtoplan9kbd (src/cmd/devdraw/x11-itrans.c). In par

Re: [9fans] acme(4) and addr=dot

2010-03-06 Thread Eoghan Sherry
> % {echo 'addr=dot'; 9p read acme/70/addr >[1=2]} | 9p write acme/70/ctl > 0 0 % > > No help. Am I doing something wrong? Addr is reset to 0,0 once opened. So, you need to perform these operations in order: open addr; write ctl; then read addr. There's a nice way to do this i

Re: [9fans] bitsy anyone?

2008-10-21 Thread Eoghan Sherry
> However, I had some problems when uploading the paqdisk > on the iPaq when the image file is larger than 4 MB. The image > seems to be corrupted during the upload on the iPaq and Plan 9 > crash during boot. This problem does not appear with a smaller paqdisk. I don't have a Plan 9 system or a bi

Re: [9fans] bitsy anyone?

2008-10-21 Thread Eoghan Sherry
2008/10/21 Benjamin Huntsman <[EMAIL PROTECTED]>: >>"add ramdisk0x020 0x080", > > I believe the command in question is: > partition define ramdisk 0x20 0x60 0 > > I had changed it to 0x80 too, but still got the kernel panic... > I'll take a look in paq.c and see if I can fix

Re: [9fans] p9p installation err: conflicting types

2010-07-11 Thread Eoghan Sherry
On 11 July 2010 11:50, Bjartur Thorlacius wrote: > tar.c:426: error: conflicting types for 'strnlen' > /usr/include/string.h:404: error: previous declaration of 'strnlen' was here This was fixed some time ago: http://code.swtch.com/plan9port/diff/src/cmd/tar.c?diff2=3bc490577d95&diff1=adde59fe69b

Re: [9fans] pow10.c missing from plan9port [was: p9pow10?]

2010-07-22 Thread Eoghan Sherry
On 22 July 2010 03:28, EBo wrote: > Maybe Russ can add it to plan9port ;-) Check out codereview(1) and hg(1). You'll need a tree from the Mercurial repository at http://code.swtch.com/plan9port. Eoghan