9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] replica/pull -s / -v /dist/replica/network and rc error
@ 2007-05-08  8:56 prem
  2007-05-08 14:07 ` Federico G. Benavento
  0 siblings, 1 reply; 6+ messages in thread
From: prem @ 2007-05-08  8:56 UTC (permalink / raw)
  To: 9fans

Hi,
I did a pull on friday.

today i rebooted and i get this error

init: Starting /bin/rc
rc: null list in concatination
init: rc exit status: rc 23: error

init: startin /bin/rc

.. Does anyone know whats going on.
I tried deleting my /rc/bin/termrc and pulling it and plan9.bell-
labs.com connection refused.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [9fans] replica/pull -s / -v /dist/replica/network and rc error
  2007-05-08  8:56 [9fans] replica/pull -s / -v /dist/replica/network and rc error prem
@ 2007-05-08 14:07 ` Federico G. Benavento
  2007-05-08 20:28   ` Martin Neubauer
  0 siblings, 1 reply; 6+ messages in thread
From: Federico G. Benavento @ 2007-05-08 14:07 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 318 bytes --]

diskparts (which is run by termrc) needs that /dev/sysname to
be set and because it isn't you get that error.
add "sys=yourmachine ether=yournickmacaddr" to your /lib/ndb/local
to find out yourmacaddr cat /net/ether0/addr.


Federico G. Benavento

---
/bin/fortune:
Keep flammables away from space heaters.

[-- Attachment #2: Type: message/rfc822, Size: 3187 bytes --]

From: prem <prem.mallappa@gmail.com>
To: 9fans@cse.psu.edu
Subject: [9fans] replica/pull -s / -v /dist/replica/network and rc error
Date: Tue, 8 May 2007 08:56:43 GMT
Message-ID: <1178522215.140211.181690@e51g2000hsg.googlegroups.com>

Hi,
I did a pull on friday.

today i rebooted and i get this error

init: Starting /bin/rc
rc: null list in concatination
init: rc exit status: rc 23: error

init: startin /bin/rc

.. Does anyone know whats going on.
I tried deleting my /rc/bin/termrc and pulling it and plan9.bell-
labs.com connection refused.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [9fans] replica/pull -s / -v /dist/replica/network and rc error
  2007-05-08 14:07 ` Federico G. Benavento
@ 2007-05-08 20:28   ` Martin Neubauer
  2007-05-08 20:44     ` Federico Benavento
  0 siblings, 1 reply; 6+ messages in thread
From: Martin Neubauer @ 2007-05-08 20:28 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

* Federico G. Benavento (benavento@gmail.com) wrote:
> diskparts (which is run by termrc) needs that /dev/sysname to
> be set and because it isn't you get that error.

I don't think that is quite correct. The error is indeed caused by an empty
sysname, but happens in termrc after diskparts is run. It probably bails at
the line

if(test -e /cfg/$sysname/termrc)


> add "sys=yourmachine ether=yournickmacaddr" to your /lib/ndb/local
> to find out yourmacaddr cat /net/ether0/addr.
> 
> 
> Federico G. Benavento


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [9fans] replica/pull -s / -v /dist/replica/network and rc error
  2007-05-08 20:28   ` Martin Neubauer
@ 2007-05-08 20:44     ` Federico Benavento
  2007-05-08 21:14       ` Martin Neubauer
  0 siblings, 1 reply; 6+ messages in thread
From: Federico Benavento @ 2007-05-08 20:44 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

exactly, because diskparts does
sysname='{cat /dev/sysname}

On 5/8/07, Martin Neubauer <m.ne@gmx.net> wrote:
> * Federico G. Benavento (benavento@gmail.com) wrote:
> > diskparts (which is run by termrc) needs that /dev/sysname to
> > be set and because it isn't you get that error.
>
> I don't think that is quite correct. The error is indeed caused by an empty
> sysname, but happens in termrc after diskparts is run. It probably bails at
> the line
>
> if(test -e /cfg/$sysname/termrc)
>
>
> > add "sys=yourmachine ether=yournickmacaddr" to your /lib/ndb/local
> > to find out yourmacaddr cat /net/ether0/addr.
> >
> >
> > Federico G. Benavento
>


-- 
Federico G. Benavento


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [9fans] replica/pull -s / -v /dist/replica/network and rc error
  2007-05-08 20:44     ` Federico Benavento
@ 2007-05-08 21:14       ` Martin Neubauer
  2007-05-09  4:33         ` Federico Benavento
  0 siblings, 1 reply; 6+ messages in thread
From: Martin Neubauer @ 2007-05-08 21:14 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

* Federico Benavento (benavento@gmail.com) wrote:
> exactly, because diskparts does
> sysname='{cat /dev/sysname}

I see. I didn't think about this, as that line happens to be in termrc, too.
(And before subsequent uses of sysname.) But after all the error is
independent of diskparts. But you're right, I should check my facts
sometimes.

	Martin



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [9fans] replica/pull -s / -v /dist/replica/network and rc error
  2007-05-08 21:14       ` Martin Neubauer
@ 2007-05-09  4:33         ` Federico Benavento
  0 siblings, 0 replies; 6+ messages in thread
From: Federico Benavento @ 2007-05-09  4:33 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

nah, don't worry, I was lucky this time : )

On 5/8/07, Martin Neubauer <m.ne@gmx.net> wrote:
> * Federico Benavento (benavento@gmail.com) wrote:
> > exactly, because diskparts does
> > sysname='{cat /dev/sysname}
>
> I see. I didn't think about this, as that line happens to be in termrc, too.
> (And before subsequent uses of sysname.) But after all the error is
> independent of diskparts. But you're right, I should check my facts
> sometimes.
>
>         Martin
>
>


-- 
Federico G. Benavento


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-05-09  4:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-05-08  8:56 [9fans] replica/pull -s / -v /dist/replica/network and rc error prem
2007-05-08 14:07 ` Federico G. Benavento
2007-05-08 20:28   ` Martin Neubauer
2007-05-08 20:44     ` Federico Benavento
2007-05-08 21:14       ` Martin Neubauer
2007-05-09  4:33         ` Federico Benavento

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).