supervision - discussion about system services, daemon supervision, init, runlevel management, and tools such as s6 and runit
 help / color / mirror / Atom feed
* Running UML Instances with runit
@ 2004-03-02 13:14 Lukas Beeler
  2004-03-02 16:35 ` Clemens Fischer
  0 siblings, 1 reply; 10+ messages in thread
From: Lukas Beeler @ 2004-03-02 13:14 UTC (permalink / raw)


I've wrote a little document about running UML Instances using
runit.

Location:

http://projectdream.org/publications/suug/uml-setup.html

Since a year or so, i have been maintaining my runfiles in
cvs/svn repositories, maybe someone can use them:

Location:

https://svn.projectdream.org/cgi-bin/viewcvs.cgi/service/

Thanks in advance for any feedback ;)

-- 
Today is the first day of the rest of our lives.
http://www.suug.ch


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

* Re: Running UML Instances with runit
  2004-03-02 13:14 Running UML Instances with runit Lukas Beeler
@ 2004-03-02 16:35 ` Clemens Fischer
  2004-03-02 17:25   ` Lukas Beeler
  0 siblings, 1 reply; 10+ messages in thread
From: Clemens Fischer @ 2004-03-02 16:35 UTC (permalink / raw)


* Lukas Beeler:

> I've wrote a little document about running UML Instances using
> runit.

i always forget what UML means.  UserModeLinux.  hmm.  what exactly
is it good for?  can i run just any "disro" with it?

> http://projectdream.org/publications/suug/uml-setup.html

  HOSTNAME=`pwd | rev| cut -d/ -f1 | rev`

that one made me laugh.  beats me, i think this is funny!  :)

  clemens


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

* Re: Running UML Instances with runit
  2004-03-02 16:35 ` Clemens Fischer
@ 2004-03-02 17:25   ` Lukas Beeler
  2004-03-02 18:08     ` Payal Rathod
  0 siblings, 1 reply; 10+ messages in thread
From: Lukas Beeler @ 2004-03-02 17:25 UTC (permalink / raw)


* Clemens Fischer <ino-qc@spotteswoode.de.eu.org>:
> > I've wrote a little document about running UML Instances using
> > runit.
> i always forget what UML means.  UserModeLinux.  hmm.  what exactly
> is it good for?  can i run just any "disro" with it?

You can run Linux inside Linux. Server virtualization. Reasons
could be security, or sharing one machine with other people (for
example, in a housing center).

> > http://projectdream.org/publications/suug/uml-setup.html
>   HOSTNAME=`pwd | rev| cut -d/ -f1 | rev`
> that one made me laugh.  beats me, i think this is funny!  :)

Iam sure that there are better methods ;)

-- 
Today is the first day of the rest of our lives.
http://www.suug.ch


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

* Re: Running UML Instances with runit
  2004-03-02 17:25   ` Lukas Beeler
@ 2004-03-02 18:08     ` Payal Rathod
  2004-03-02 18:10       ` Charlie Brady
  0 siblings, 1 reply; 10+ messages in thread
From: Payal Rathod @ 2004-03-02 18:08 UTC (permalink / raw)


On Tue, Mar 02, 2004 at 06:25:15PM +0100, Lukas Beeler wrote:
> > > http://projectdream.org/publications/suug/uml-setup.html
> >   HOSTNAME=`pwd | rev| cut -d/ -f1 | rev`
> > that one made me laugh.  beats me, i think this is funny!  :)
> 
> Iam sure that there are better methods ;)

How about basename `pwd`

:)
-Payal


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

* Re: Running UML Instances with runit
  2004-03-02 18:08     ` Payal Rathod
@ 2004-03-02 18:10       ` Charlie Brady
  2004-03-02 18:12         ` Lukas Beeler
  0 siblings, 1 reply; 10+ messages in thread
From: Charlie Brady @ 2004-03-02 18:10 UTC (permalink / raw)



On Tue, 2 Mar 2004, Payal Rathod wrote:

> On Tue, Mar 02, 2004 at 06:25:15PM +0100, Lukas Beeler wrote:
> > > > http://projectdream.org/publications/suug/uml-setup.html
> > >   HOSTNAME=`pwd | rev| cut -d/ -f1 | rev`
> > > that one made me laugh.  beats me, i think this is funny!  :)
> > 
> > Iam sure that there are better methods ;)
> 
> How about basename `pwd`

Or:

basename $(pwd)

--
Charlie



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

* Re: Running UML Instances with runit
  2004-03-02 18:10       ` Charlie Brady
@ 2004-03-02 18:12         ` Lukas Beeler
  2004-03-02 18:16           ` Charlie Brady
                             ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Lukas Beeler @ 2004-03-02 18:12 UTC (permalink / raw)


* Charlie Brady <charlieb-supervision@e-smith.com>:
> > How about basename `pwd`

Argh. I knew i missed something.

> basename $(pwd)

Thats a bashism, IIRC.

-- 
Today is the first day of the rest of our lives.
http://www.suug.ch


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

* Re: Running UML Instances with runit
  2004-03-02 18:12         ` Lukas Beeler
@ 2004-03-02 18:16           ` Charlie Brady
  2004-03-02 18:17           ` Nicolas George
  2004-03-08  4:44           ` David Phillips
  2 siblings, 0 replies; 10+ messages in thread
From: Charlie Brady @ 2004-03-02 18:16 UTC (permalink / raw)
  Cc: supervision


On Tue, 2 Mar 2004, Lukas Beeler wrote:

> * Charlie Brady <charlieb-supervision@e-smith.com>:
> > > How about basename `pwd`

That wasn't me.

> > basename $(pwd)
> 
> Thats a bashism, IIRC.

I was under the impression that it's POSIX. Goggle supports that belief, 
e.g.:

http://rhols66.adsl.netsonic.fi/era/unix/award-example-backticks.html

--
Charlie



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

* Re: Running UML Instances with runit
  2004-03-02 18:12         ` Lukas Beeler
  2004-03-02 18:16           ` Charlie Brady
@ 2004-03-02 18:17           ` Nicolas George
  2004-03-02 18:19             ` Lukas Beeler
  2004-03-08  4:44           ` David Phillips
  2 siblings, 1 reply; 10+ messages in thread
From: Nicolas George @ 2004-03-02 18:17 UTC (permalink / raw)


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

Le tridi 13 ventôse, an CCXII, Lukas Beeler a écrit :
>> basename $(pwd)
> Thats a bashism, IIRC.

That is in the Single Unix Specification, version 2 and 3. But some
self-pretending Unix shells, like Solaris /bin/sh do not understand.

[-- Attachment #2: Type: application/pgp-signature, Size: 185 bytes --]

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

* Re: Running UML Instances with runit
  2004-03-02 18:17           ` Nicolas George
@ 2004-03-02 18:19             ` Lukas Beeler
  0 siblings, 0 replies; 10+ messages in thread
From: Lukas Beeler @ 2004-03-02 18:19 UTC (permalink / raw)


* Nicolas George <nicolas.george@ens.fr>:
> Le tridi 13 ventôse, an CCXII, Lukas Beeler a écrit :
> >> basename $(pwd)
> > Thats a bashism, IIRC.
> That is in the Single Unix Specification, version 2 and 3. But some
> self-pretending Unix shells, like Solaris /bin/sh do not understand.

That explains why i tought that it is a bashism.

I stand corrected.

-- 
Today is the first day of the rest of our lives.
http://www.suug.ch


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

* Re: Running UML Instances with runit
  2004-03-02 18:12         ` Lukas Beeler
  2004-03-02 18:16           ` Charlie Brady
  2004-03-02 18:17           ` Nicolas George
@ 2004-03-08  4:44           ` David Phillips
  2 siblings, 0 replies; 10+ messages in thread
From: David Phillips @ 2004-03-08  4:44 UTC (permalink / raw)


Lukas Beeler writes:
>> basename $(pwd)
>
> Thats a bashism, IIRC.

It is POSIX:

http://www.opengroup.org/onlinepubs/007904975/utilities/xcu_chap02.html#tag_02_06_03

-- 
David Phillips <david@acz.org>
http://david.acz.org/



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

end of thread, other threads:[~2004-03-08  4:44 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-03-02 13:14 Running UML Instances with runit Lukas Beeler
2004-03-02 16:35 ` Clemens Fischer
2004-03-02 17:25   ` Lukas Beeler
2004-03-02 18:08     ` Payal Rathod
2004-03-02 18:10       ` Charlie Brady
2004-03-02 18:12         ` Lukas Beeler
2004-03-02 18:16           ` Charlie Brady
2004-03-02 18:17           ` Nicolas George
2004-03-02 18:19             ` Lukas Beeler
2004-03-08  4:44           ` David Phillips

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).