[Vserver] util-vserver docs

2005-05-27 Thread Roderick A. Anderson
I ( think ) I went all over the site and wiki but never seemed to come 
across the documentation for util-vserver package.

I could swear I found some last time I looked at it but no luck this time.  
Do I have to download and install it?


TIA,
Rod
-- 
Open Source Software - You usually get more than you pay for...
 Build A Brighter Lamp :: Linux Apache {middleware} PostgreSQL

___
Vserver mailing list
Vserver@list.linux-vserver.org
http://list.linux-vserver.org/mailman/listinfo/vserver


Re: [Vserver] util-vserver docs

2005-05-27 Thread Herbert Poetzl
On Sat, May 28, 2005 at 02:33:32AM +0200, Christian Heim wrote:
 On Saturday 28 May 2005 02:23, Roderick A. Anderson ( RA )wrote:
 I ( think ) I went all over the site and wiki but never seemed to come
 across the documentation for util-vserver package.
 
 I could swear I found some last time I looked at it but no luck this time.
 Do I have to download and install it?

there are also two big links on the main page:

#  [The Great Flower Page] (1.9.x configuration)
#  alpha util-vserver

http://linux-vserver.org/alpha+util-vserver

 Well the documentation (aka flower page) is here:
 http://www.nongnu.org/util-vserver/doc/conf/configuration.html
 
 -- 
 There's no future in time travel.
 ___
 Vserver mailing list
 Vserver@list.linux-vserver.org
 http://list.linux-vserver.org/mailman/listinfo/vserver
___
Vserver mailing list
Vserver@list.linux-vserver.org
http://list.linux-vserver.org/mailman/listinfo/vserver


Re: [Vserver] util-vserver docs

2004-06-17 Thread Matthias Wieser
Am Wednesday 16 June 2004 23:18 schrieb Bernhard Duebi:
 Hi,
 I can't find the docs for util-vserver. Any help ?

 The host system is a SuSE 9.1 Professional.
 I installed kernel-2.6.6-vs1.9.1
 I installed util-vserver-0.29.214
 I tried vserver server build, but did not understand how to configre
 the build option. So I installed vserver with a script from the linux
 magazin.
 I tried vserver server start in legacy mode and in native mode, but no
 luck.
Hi!

I worked with the following and had much success:
vserver NAME build --help (you don't trust me and want to read the options)
vserver NAME build -m debootstrap --interface eth0:IPADDRESS/NETMASK 
--hostname NAME -- -d sid

The netmask should be a simple number 8 = 255.0.0.0 16 = 255.255.0.0
You will get a debian host with this example. Before starting it, I would do 
the following:
chroot /vservers/NAME
update-rc.d -f klogd remove
update-rc.d -f klogd pcmcia
echo deb http://ftp.debian.org/debian unstable main  /etc/apt/sources.list
apt-get update
apt-get install ssh
passwd #set rootpassword
exit
on your host server, you have to limit ssh to its actual ip
EDITOR /etc/ssh/sshd_config:
ListenAddress PublicIP
This option needs to be writen for every ip it should listen on. 
0.0.0.0 = nono! vserver does not get a port to run properly
Important: /etc/init.d/ssh restart

Almost done?
Yes: no public IP - you should run iptables with the following option:
iptables -t nat -A POSTROUTING --src VSERVERIP -j SNAT --to PUBLICIP

You can start the vserver!!!
vserver NAME start

Need help to find a package within debian:
apt-cache search NAME

I hope it helps, it is the best I can come up with

Ciao, Matthias
___
Vserver mailing list
[EMAIL PROTECTED]
http://list.linux-vserver.org/mailman/listinfo/vserver


Re: [Vserver] util-vserver docs

2004-06-17 Thread Bernhard Duebi
On Thu, 2004-06-17 at 10:45, Matthias Wieser wrote:
 Am Wednesday 16 June 2004 23:18 schrieb Bernhard Duebi:
  Hi,
  I can't find the docs for util-vserver. Any help ?
 
  The host system is a SuSE 9.1 Professional.
  I installed kernel-2.6.6-vs1.9.1
  I installed util-vserver-0.29.214
  I tried vserver server build, but did not understand how to configre
  the build option. So I installed vserver with a script from the linux
  magazin.
  I tried vserver server start in legacy mode and in native mode, but no
  luck.
 Hi!
 
 I worked with the following and had much success:
 vserver NAME build --help (you don't trust me and want to read the options)
 vserver NAME build -m debootstrap --interface eth0:IPADDRESS/NETMASK 
 --hostname NAME -- -d sid
Hi,

today I did
vserver vs01 build -m debootstrap ...
vserver vs01 start
vserver vs01 enter
and it worked.
But the point is, I want a SuSE based vserver. Unfortunately
util-vserver doesn't know about SuSE. I'm sure I can make it work if I
knew how util-vserver works. But by now I have no idea what it takes to
make a vserver work.

Sincerely
Bernhard


___
Vserver mailing list
[EMAIL PROTECTED]
http://list.linux-vserver.org/mailman/listinfo/vserver


Re: [Vserver] util-vserver docs

2004-06-17 Thread Gregory (Grisha) Trubetskoy

I actually think that in the ideal world the building of the vserver
should be outside the scope of the vserver project anyway, and should be
something that the people in charge of distributions should be providing.

My $0.02

Grisha


On Thu, 17 Jun 2004, Bernhard Duebi wrote:

 On Thu, 2004-06-17 at 10:45, Matthias Wieser wrote:
  Am Wednesday 16 June 2004 23:18 schrieb Bernhard Duebi:
   Hi,
   I can't find the docs for util-vserver. Any help ?
  
   The host system is a SuSE 9.1 Professional.
   I installed kernel-2.6.6-vs1.9.1
   I installed util-vserver-0.29.214
   I tried vserver server build, but did not understand how to configre
   the build option. So I installed vserver with a script from the linux
   magazin.
   I tried vserver server start in legacy mode and in native mode, but no
   luck.
  Hi!
 
  I worked with the following and had much success:
  vserver NAME build --help (you don't trust me and want to read the options)
  vserver NAME build -m debootstrap --interface eth0:IPADDRESS/NETMASK
  --hostname NAME -- -d sid
 Hi,

 today I did
 vserver vs01 build -m debootstrap ...
 vserver vs01 start
 vserver vs01 enter
 and it worked.
 But the point is, I want a SuSE based vserver. Unfortunately
 util-vserver doesn't know about SuSE. I'm sure I can make it work if I
 knew how util-vserver works. But by now I have no idea what it takes to
 make a vserver work.

 Sincerely
 Bernhard


 ___
 Vserver mailing list
 [EMAIL PROTECTED]
 http://list.linux-vserver.org/mailman/listinfo/vserver


--
The secret of success is sincerity. Once you can fake that, you've got it made.
___
Vserver mailing list
[EMAIL PROTECTED]
http://list.linux-vserver.org/mailman/listinfo/vserver


[Vserver] util-vserver docs

2004-06-16 Thread Bernhard Duebi
Hi,

I can't find the docs for util-vserver. Any help ?

The host system is a SuSE 9.1 Professional.
I installed kernel-2.6.6-vs1.9.1
I installed util-vserver-0.29.214
I tried vserver server build, but did not understand how to configre
the build option. So I installed vserver with a script from the linux
magazin.
I tried vserver server start in legacy mode and in native mode, but no
luck.

I looked for some docs on the util-vserver homepage and in the tar ball,
but the few info I found wasn't really helpful for me. As I'm lazy I'm
looking for a HOWTO setup vserver with SuSE 9.1.

Sincerely
Bernhard


___
Vserver mailing list
[EMAIL PROTECTED]
http://list.linux-vserver.org/mailman/listinfo/vserver