<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>kevin&#039;s blog &#187; Virtualisierung</title>
	<atom:link href="http://blog.kevin-k.com/category/virtualisierung/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.kevin-k.com</link>
	<description>just another blog from just another blogger.</description>
	<lastBuildDate>Mon, 19 Jul 2010 18:03:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Installation von VMware Tools auf Debian Lenny</title>
		<link>http://blog.kevin-k.com/2009-08-22/installation-von-vmware-tools-auf-debian-lenny.html</link>
		<comments>http://blog.kevin-k.com/2009-08-22/installation-von-vmware-tools-auf-debian-lenny.html#comments</comments>
		<pubDate>Sat, 22 Aug 2009 13:42:42 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Virtualisierung]]></category>

		<guid isPermaLink="false">http://blog.kevin-k.com/?p=719</guid>
		<description><![CDATA[apt-get install build-essential psmisc gcc-4.1 linux-headers-$(uname -r) tar xfzv VMwareTools-7.8.4-126130.tar.gz ./vmware-tools-distrib/vmware-install.pl CC=/usr/bin/gcc-4.1 /usr/bin/vmware-config-tools.pl gcc-4.1 ist notwendig, wenn der Kernel (z.b. aus den Repositories) mit einer anderen GCC Version kompiliert wurde, als auf dem System vorhanden: Your kernel was built with &#8220;gcc&#8221; version &#8220;4.1.3&#8243;, while you are trying to use &#8220;/usr/bin/gcc&#8221; version &#8220;4.3.2&#8243;. This configuration is [...]]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">apt-get install build-essential psmisc gcc-4.1 linux-headers-$(uname -r)
tar xfzv VMwareTools-7.8.4-126130.tar.gz
./vmware-tools-distrib/vmware-install.pl
CC=/usr/bin/gcc-4.1 /usr/bin/vmware-config-tools.pl</pre></div></div>

<p>gcc-4.1 ist notwendig, wenn der Kernel (z.b. aus den Repositories) mit einer anderen GCC Version kompiliert wurde, als auf dem System vorhanden:</p>
<blockquote><p>
Your kernel was built with &#8220;gcc&#8221; version &#8220;4.1.3&#8243;, while you are trying to use<br />
&#8220;/usr/bin/gcc&#8221; version &#8220;4.3.2&#8243;. This configuration is not recommended and<br />
VMware Tools may crash if you&#8217;ll continue. Please try to use exactly same<br />
compiler as one used for building your kernel. Do you want to go with compiler<br />
&#8220;/usr/bin/gcc&#8221; version &#8220;4.3.2&#8243; anyway?
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.kevin-k.com/2009-08-22/installation-von-vmware-tools-auf-debian-lenny.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debian Lenny auf Hosteurope VPS installieren</title>
		<link>http://blog.kevin-k.com/2009-04-08/debian-lenny-auf-hosteurope-vps-installieren.html</link>
		<comments>http://blog.kevin-k.com/2009-04-08/debian-lenny-auf-hosteurope-vps-installieren.html#comments</comments>
		<pubDate>Wed, 08 Apr 2009 11:09:59 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Virtualisierung]]></category>

		<guid isPermaLink="false">http://blog.kevin-k.com/?p=559</guid>
		<description><![CDATA[Mit dem folgenden Howto zeige ich euch, wie man auf einem Hosteurope VPS (Virtual Private Server), der unter der Virtualisierungssoftware Parallels läuft, ein aktuelles Debian Lenny installiert. Leider ist nur Debian 4.0 als neustes Debian-Image verfügbar, daher installieren wir Lenny mittels debootstrap über den Recovery-Modus. Installation Als aller erstes Installieren wir debootstrap unter dem bereits [...]]]></description>
			<content:encoded><![CDATA[<p>Mit dem folgenden Howto zeige ich euch, wie man auf einem Hosteurope VPS (Virtual Private Server), der unter der Virtualisierungssoftware Parallels läuft, ein aktuelles Debian Lenny installiert. Leider ist nur Debian 4.0 als neustes Debian-Image verfügbar, daher installieren wir Lenny mittels debootstrap über den Recovery-Modus.</p>
<h2>Installation</h2>
<p>Als aller erstes Installieren wir debootstrap unter dem bereits laufendem Etch-System:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">apt-get update
apt-get install debootstrap</pre></div></div>

<p>Wir werden das neue Lenny-System in einem Unterordner innerhalb des alten Systems installieren.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">mkdir /.new</pre></div></div>

<p>Das neue Lenny-System wird nun mittels debootstrap in den Ordner <em>/.new</em> installiert:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">debootstrap --arch i386 lenny /.new http://ftp.de.debian.org/debian/</pre></div></div>

<h2>Konfiguration</h2>
<p>Wir kopieren wir ein paar notwendige Konfigurationsdateien aus dem laufenden System in das neue:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">cp /etc/fstab /.new/etc
cp /etc/network/interfaces* /.new/etc/network
cp /etc/hosts /.new/etc
cp /etc/hostname /.new/etc</pre></div></div>

<p>Nun starten wir im Rescue-Modus, wo wir den Inhalt des alten Systems in /repair finden.<br />
<em>/.new</em> ist also nun in <em>/repair/.new</em>.</p>
<p>Wir löschen als aller erstes das alte System:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">// entfernt alle ordner außer &quot;.new&quot; von /repair
rm -rv /repair/*</pre></div></div>

<p>Danach verschieben wir das neue System von <em>/repair/.new</em> nach <em>/repair</em>:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">mv /repair/.new/* /repair
rm -r /repair/.new</pre></div></div>

<p>Damit apt/dpkg (rm) korrekt für die SSH-Installation funktioniert, müßen wir noch das proc- und devpts-Dateisystem in das neue System mounten:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">mount -t proc proc /repair/proc
mount -t devpts none /repair/dev/pts</pre></div></div>

<p>chroot in das neue Lenny-System&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">LANG=C chroot /repair /bin/bash</pre></div></div>

<p>&#8230; und SSH installieren:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">apt-get update
apt-get install ssh</pre></div></div>

<p>Passwort setzen nicht vergessen:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">passwd</pre></div></div>

<p>&#8230; und wieder raus aus dem chroot:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">exit</pre></div></div>

<p>Das wars!<br />
Nun in das <em>Virtuozzo PowerPanel</em> rein, den Repair-Modus beenden und danach sollte das neue Lenny-System erreichbar sein.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kevin-k.com/2009-04-08/debian-lenny-auf-hosteurope-vps-installieren.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Xen: vif could not be connected. Backend device not found.</title>
		<link>http://blog.kevin-k.com/2008-10-23/xen-vif-could-not-be-connected-backend-device-not-found.html</link>
		<comments>http://blog.kevin-k.com/2008-10-23/xen-vif-could-not-be-connected-backend-device-not-found.html#comments</comments>
		<pubDate>Thu, 23 Oct 2008 19:32:08 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Virtualisierung]]></category>

		<guid isPermaLink="false">http://blog.kevin-k.com/?p=207</guid>
		<description><![CDATA[Sollte folgende Fehlermeldung beim Versuch eine domU zu starten auftreten, sicherstellen ob brctl installiert ist und gegebenenfalls nach installieren! Device 0 (vif) could not be connected. Backend device not found. Falls brctl fehlt: apt-get install bridge-utils]]></description>
			<content:encoded><![CDATA[<p>Sollte folgende Fehlermeldung beim Versuch eine domU zu starten auftreten, sicherstellen ob brctl installiert ist und gegebenenfalls nach installieren!</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">Device 0 (vif) could not be connected. Backend device not found.</pre></div></div>

<p>Falls brctl fehlt:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">apt-get install bridge-utils</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.kevin-k.com/2008-10-23/xen-vif-could-not-be-connected-backend-device-not-found.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xen erkennt Ram nicht vollständig</title>
		<link>http://blog.kevin-k.com/2008-10-23/xen-erkennt-ram-nicht-vollstandig.html</link>
		<comments>http://blog.kevin-k.com/2008-10-23/xen-erkennt-ram-nicht-vollstandig.html#comments</comments>
		<pubDate>Thu, 23 Oct 2008 18:36:28 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Virtualisierung]]></category>

		<guid isPermaLink="false">http://blog.kevin-k.com/?p=203</guid>
		<description><![CDATA[Auf meiner neuen Hetzner DS5000 Kiste wird bei meinem 2.6.18-6-xen-686 Kernel-Image (aus den Debian Repositorys) die 4GB Ram nicht vollständig erkannt. Abhilfe schafft ein modifizierter Grub.]]></description>
			<content:encoded><![CDATA[<p>Auf meiner neuen Hetzner DS5000 Kiste wird bei meinem 2.6.18-6-xen-686 Kernel-Image (aus den Debian Repositorys) die 4GB Ram nicht vollständig erkannt.</p>
<p>Abhilfe schafft ein <a href="http://www.howtoforge.de/howto/wie-du-deinen-xen-pae-kernel-mit-mehr-als-4gb-ram-arbeiten-lassen-kannst-debian-etch-mit-grub/">modifizierter Grub</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kevin-k.com/2008-10-23/xen-erkennt-ram-nicht-vollstandig.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
