Re: [9fans] Random SATA errors with SMP on a dual core machine.

2009-06-02 Thread erik quanstrom
sorry to hear things aren't working. > % 9fs sources > % cd /n/sources/contrib/quanstro/root/sys/src/9/pc > % cp sdata.c sdiahci.c ahci.h /sys/src/9/pc > % cd ../port > % cp devsd.c sd.h sdloop.c /sys/src/9/port > % cd ../../libfis > % mkdir /sys/src/libfis > % cp fis.h mkfile /sys/src/libfis > %

Re: [9fans] Configuring NFS

2009-06-02 Thread J.R. Mauro
On Tue, Jun 2, 2009 at 2:34 PM, John Floren wrote: > On Tue, Jun 2, 2009 at 11:19 AM, Roman V. Shaposhnik wrote: >> On Tue, 2009-06-02 at 11:03 -0700, John Floren wrote: >>> On Tue, Jun 2, 2009 at 10:35 AM, Roman V. Shaposhnik wrote: >>> > On Tue, 2009-06-02 at 10:30 -0700, John Floren wrote: >>

Re: [9fans] Configuring NFS

2009-06-02 Thread Anthony Sorace
for the "from anywhere" part, just use .+ as the host regexp. the "anyone" part also doesn't really apply: the files don't affect who can connect or read things, just what the mapping is done as (iirc, world readable is still world readable). if you just want to not bother with the passwd and group

Re: [9fans] Configuring NFS

2009-06-02 Thread John Floren
On Tue, Jun 2, 2009 at 4:41 PM, Anthony Sorace wrote: > map between the numeric IDs reported by nfs and strings plan9 uses for uids. > > What if I want to just allow anyone to mount the share, from anywhere? John -- "I've tried programming Ruby on Rails, following TechCrunch in my RSS reader, a

Re: [9fans] Configuring NFS

2009-06-02 Thread Anthony Sorace
map between the numeric IDs reported by nfs and strings plan9 uses for uids.

Re: [9fans] Configuring NFS

2009-06-02 Thread John Floren
On Tue, Jun 2, 2009 at 4:22 PM, Anthony Sorace wrote: > "none" does not (normally) give you read-only access; if something is > world-writable, none will be able to write it. but getting read-only > is pretty easy; see exportfs(4) and the files which use it in > /rc/bin/service. from emory, i'd sa

Re: [9fans] Configuring NFS

2009-06-02 Thread Anthony Sorace
"none" does not (normally) give you read-only access; if something is world-writable, none will be able to write it. but getting read-only is pretty easy; see exportfs(4) and the files which use it in /rc/bin/service. from emory, i'd say "exec /bin/exportfs -Rr /lib/music" would do what you want.

Re: [9fans] Random SATA errors with SMP on a dual core machine.

2009-06-02 Thread Steve Simon
Oh yes, I would suggest you use the contrib package to install Eriks sd driver, if you haven't played with it you should just need: 9fs sources /n/sources/contrib/fgb/root/rc/bin/contrib/install fgb/contrib contrib/list -v quanstro/sd contrib/install quanstro/sd contrib/install quanstro/fis you w

[9fans] Random SATA errors with SMP on a dual core machine.

2009-06-02 Thread Dan Cross
Has anyone else seen this? I am experiencing random SATA errors when I turn on SMP on a dual core machine. After a several-year hiatus, I just got some new hardware to build a plan 9 network at home. My file server is a 1U rackmount machine with the following hardware: 1. SuperMicro PDSML-LN2+

Re: [9fans] Configuring NFS

2009-06-02 Thread John Floren
On Tue, Jun 2, 2009 at 11:49 AM, Eric Van Hensbergen wrote: > On Tue, Jun 2, 2009 at 1:34 PM, John Floren wrote: >> >> I'd like to use the 9p mounting available in Linux, but it doesn't >> seem to work in this case. >> I try "mount -t 9p glenda /mnt" (glenda is my cpu/file server) and get: >> moun

Re: [9fans] Configuring NFS

2009-06-02 Thread Eric Van Hensbergen
On Tue, Jun 2, 2009 at 1:34 PM, John Floren wrote: > > I'd like to use the 9p mounting available in Linux, but it doesn't > seem to work in this case. > I try "mount -t 9p glenda /mnt" (glenda is my cpu/file server) and get: > mount: wrong fs type, bad option, bad superblock on glenda, >       miss

Re: [9fans] Configuring NFS

2009-06-02 Thread John Floren
On Tue, Jun 2, 2009 at 11:19 AM, Roman V. Shaposhnik wrote: > On Tue, 2009-06-02 at 11:03 -0700, John Floren wrote: >> On Tue, Jun 2, 2009 at 10:35 AM, Roman V. Shaposhnik wrote: >> > On Tue, 2009-06-02 at 10:30 -0700, John Floren wrote: >> >> Has anyone here successfully set up nfsserver to shar

Re: [9fans] Configuring NFS

2009-06-02 Thread Roman V. Shaposhnik
On Tue, 2009-06-02 at 11:03 -0700, John Floren wrote: > On Tue, Jun 2, 2009 at 10:35 AM, Roman V. Shaposhnik wrote: > > On Tue, 2009-06-02 at 10:30 -0700, John Floren wrote: > >> Has anyone here successfully set up nfsserver to share Plan 9 files > >> with Unix machines? The examples given in the

Re: [9fans] Configuring NFS

2009-06-02 Thread Steve Simon
> I'm looking into NFS because it seems that it has about the lowest > barrier to entry of all the possible file-sharing methods. Any other > suggestions would be appreciated. I use aquarela to serve cifs to windows boxen but NFS seems preferable given your clients are Linux. -Steve

Re: [9fans] Configuring NFS

2009-06-02 Thread John Floren
On Tue, Jun 2, 2009 at 10:35 AM, Roman V. Shaposhnik wrote: > On Tue, 2009-06-02 at 10:30 -0700, John Floren wrote: >> Has anyone here successfully set up nfsserver to share Plan 9 files >> with Unix machines? The examples given in the man pages are rather... >> opaque. All I want to do is share o

Re: [9fans] Configuring NFS

2009-06-02 Thread Roman V. Shaposhnik
On Tue, 2009-06-02 at 10:30 -0700, John Floren wrote: > Has anyone here successfully set up nfsserver to share Plan 9 files > with Unix machines? The examples given in the man pages are rather... > opaque. All I want to do is share one directory tree (/lib/music, in > particular) with a number of i

[9fans] Configuring NFS

2009-06-02 Thread John Floren
Has anyone here successfully set up nfsserver to share Plan 9 files with Unix machines? The examples given in the man pages are rather... opaque. All I want to do is share one directory tree (/lib/music, in particular) with a number of independent Linux laptops and workstations. I'm looking into N

Re: [9fans] eqn and unicode

2009-06-02 Thread erik quanstrom
> erik, > > You're reply and some reflection convinced me that my first > approach is just wrong. I don't understand the next-to-last > paragraph though. I tried creating gktbl and making the change > you suggest to text.c, and it seems to work. Why does > isalpharune() need changing? in trans(),

Re: [9fans] eqn and unicode

2009-06-02 Thread Gregory Pavelcak
erik, You're reply and some reflection convinced me that my first approach is just wrong. I don't understand the next-to-last paragraph though. I tried creating gktbl and making the change you suggest to text.c, and it seems to work. Why does isalpharune() need changing? Greg > i'm pretty sure

Re: [9fans] Interview about Plan 9

2009-06-02 Thread rommanio-p9
Em-m... it is outside my competence. It is editor-in-chief's competence. Magazine don't permits publication in other sources about two mounths after publication and save non-exclusive rights about one year after publication. Sorry. We can translate :) 2009/6/2 rommanio-p9 mailto:rommanio...

Re: [9fans] Radeon driver

2009-06-02 Thread erik quanstrom
On Mon Jun 1 21:20:38 EDT 2009, m...@acm.jhu.edu wrote: > As I understand, the sb600 series has the RS480 IGP, which is a > stripped-down r300 (missing some TnL h/w, vertex shaders). The 2D > parts of the Linux radeonfb look pretty similar between the r300 and > the rs480, so I'd go with yes. > >

Re: [9fans] Interview about Plan 9

2009-06-02 Thread Sergey Zhilkin
We can translate :) 2009/6/2 rommanio-p9 > Thank all for support! :))) > > I'm very happy and I'm tried to say the date of publishing my article :) > > But it will be on Russian therefore some of people here cannot read it :( > > > -- > Sincerely yours, >Roman Jaryzhenko. > > > -- С н

Re: [9fans] Interview about Plan 9

2009-06-02 Thread rommanio-p9
Thank all for support! :))) I'm very happy and I'm tried to say the date of publishing my article :) But it will be on Russian therefore some of people here cannot read it :( -- Sincerely yours, Roman Jaryzhenko.

Re: [9fans] eqn and unicode

2009-06-02 Thread erik quanstrom
> Hmm. I submitted a patch so that fonts would apply to resword > rather than making it so that they don't apply to greek letters, > and I'm not even sure I did that right. > > diff -c /sys/src/cmd/eqn/text.c /usr/gp/sys/src/cmd/eqn/text.c > /sys/src/cmd/eqn/text.c:83,89 - /usr/gp/sys/src/cmd/eqn/

Re: [9fans] eqn and unicode

2009-06-02 Thread Gregory Pavelcak
> On Thu May 28 19:07:48 EDT 2009, r...@swtch.com wrote: >> On Thu, May 28, 2009 at 4:08 AM, Gregory Pavelcak >> wrote: >> > If you write the eqn-word for a greek letter, "GAMMA" for >> > example; eqn passes the unicode character (the output of >> > Alt-*G) to troff. If, on the other hand, you typ

Re: [9fans] Interview about Plan 9

2009-06-02 Thread Charles Forsyth
> it might have been ... shunted into my spam box because of the character set > choice. and that's indeed where i found it, so i've also got the questions now.

Re: [9fans] Interview about Plan 9

2009-06-02 Thread Sergey Zhilkin
Ha Ha !!! Exclusive materials :) This thread is full of exclusive ! :) simply read Eris's posts :) there are full of optimism !!! :) (Joke !!!) What kind of materials you need ? (You may write me directly in native Russian) May be russian speaking community will help ? 2009/6/2 rommanio-p9 > >

Re: [9fans] Interview about Plan 9

2009-06-02 Thread Charles Forsyth
my home and work mailboxes were overrun by spam, until quite recently, thousands of messages, so it might either have been overlooked or shunted into my spam box because of the character set choice. anyway, try again, just for fun at charles.fors...@gmail.com

Re: [9fans] state of the mirrors

2009-06-02 Thread gdiaz
hello I think most of users can wait a day or two to get whatever changes they need from sources, anyway we have a sources mirror in www.9grid.es (see services page for details), try it, and let me know any problems you might have. we update it daily, but manually, so don't expect a "real time"

Re: [9fans] state of the mirrors

2009-06-02 Thread sqweek
2009/6/2 Anant Narayanan : > On Mon, Jun 1, 2009 at 2:14 AM, Jano wrote: >> mirrors. I have tried kix.in, which i know ised to be more stable than >> bell-labs, but my attempts to mount it via 9p have all failed. Also, > > % 9fs kix.in /n/sources > seems to work fine for me. Are you getting a time