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
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
> % {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
> 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
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
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
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