From owner-freebsd-virtualization@FreeBSD.ORG Tue Dec 9 16:06:19 2008 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78918106564A for ; Tue, 9 Dec 2008 16:06:19 +0000 (UTC) (envelope-from zec@icir.org) Received: from labs4.cc.fer.hr (labs4.cc.fer.hr [161.53.72.24]) by mx1.freebsd.org (Postfix) with ESMTP id DC5F18FC1D for ; Tue, 9 Dec 2008 16:06:18 +0000 (UTC) (envelope-from zec@icir.org) Received: from sluga.fer.hr (sluga.cc.fer.hr [161.53.72.14]) by labs4.cc.fer.hr (8.14.2/8.14.2) with ESMTP id mB9Fjga2000077 for ; Tue, 9 Dec 2008 16:45:44 +0100 (CET) Received: from [192.168.200.110] ([161.53.19.79]) by sluga.fer.hr with Microsoft SMTPSVC(6.0.3790.3959); Tue, 9 Dec 2008 16:45:09 +0100 From: Marko Zec To: freebsd-virtualization@freebsd.org Date: Tue, 9 Dec 2008 16:44:53 +0100 User-Agent: KMail/1.9.7 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200812091644.53757.zec@icir.org> X-OriginalArrivalTime: 09 Dec 2008 15:45:09.0847 (UTC) FILETIME=[1DDAEE70:01C95A15] X-Scanned-By: MIMEDefang 2.64 on 161.53.72.24 Cc: Subject: Re: Howto setup virtualisation X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Dec 2008 16:06:19 -0000 On Tuesday 09 December 2008 14:47:00 michael d=FCrr wrote: > Hallo list, > > I recently discovered the IMUNES toolkit and found me more than > fascinated by its functionallity. > > Now I'd love to deploy the most recent version of vimage. I already > came accross Marko's website (http://imunes.tel.fer.hr/virtnet/). As > I don't want to use the VMware images, but install everything native, > I set up a FreeBSD 7.0 system and tried to compile against the > provided snapshots. > > As you can imagine, my build failed :-( . Although I'm not that > familiar with FreeBSD, I tried hard to compile the snapshots (as well > as the provided patch) against different tags... Without success. > > My question: > > Can you tell me a release/tag which I can download from the src tree > which comliles and for which I can use the GUI tools? Or is there any > other simple solution to get all this running? Hi, builing and running http://imunes.net/virtnet/vimage_7-20081015.tgz on a 7.0-RELEASE or 7.1-PRERELEASE should be pretty straightforward:=20 just unpack the vimage_7 src tree; cd src/sys/i386/conf; config VIMAGE;=20 cd ../compile/VIMAGE; make depend; make; make install and you're done. You'll also need to compile the vimage(8) utility -> cd=20 src/usr.sbin/vimage; make; make install -> done. You'll most probably=20 want to upgrade your userland from 7.0-RELEASE to RELENG_7 or=20 RELENG_7_1 in order for the utilities like sockstat and netstat to work=20 properly - the simpler alternative would be doing the installation from=20 a recent 7.x snapshot ISO... =46or the GUI, the latest version can be fetched from anoncvs: cvs -d :pserver:anonymous@cvs.imunes.net:/usr/local/src/cvsroot co=20 imunes cd imunes; ./install.sh -> done Note that you need to have tk-8.4 installed for the GUI to work, and=20 most probably you'll want quagga and or xorp as well (from ports). Good luck, Marko