<?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>Adrian doing the blog</title>
	<atom:link href="http://lisas.de/~adrian/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://lisas.de/~adrian</link>
	<description>(For external use only)</description>
	<lastBuildDate>Mon, 19 Jul 2010 19:00:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A New Order</title>
		<link>http://lisas.de/~adrian/?p=722</link>
		<comments>http://lisas.de/~adrian/?p=722#comments</comments>
		<pubDate>Mon, 19 Jul 2010 09:09:25 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[adrian]]></category>
		<category><![CDATA[ext3]]></category>
		<category><![CDATA[fedora]]></category>

		<guid isPermaLink="false">http://lisas.de/~adrian/?p=722</guid>
		<description><![CDATA[A few weeks ago I upgraded the hard disk in my notebook from 160GB to 250GB. I copied the whole hard disk using dd from the old drive to the new drive. I still had to change the partition layout to use the new space. So I downloaded the gparted live CD, booted it and [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I upgraded the hard disk in my notebook from 160GB to 250GB. I copied the whole hard disk using <em>dd</em> from the old drive to the new drive. I still had to change the partition layout to use the new space. So I downloaded the <em>gparted</em> live CD, booted it and discovered that I was not able to move an extended partition using <em>gparted</em>. I have the following partitions:</p>
<pre>/dev/sda1          7  HPFS/NTFS
/dev/sda2          7  HPFS/NTFS
/dev/sda3   *     83  Linux
/dev/sda4          5  Extended
/dev/sda5         83  Linux</pre>
<p>My plan was to increase the Windows partitions as well as the Linux partitions. To increase the size of <tt>/dev/sda2</tt> I had to move<tt> /dev/sda3</tt> and <tt>/dev/sda4</tt>. I was not able, however, using <em>gparted</em>, to move <tt>/dev/sda4</tt>. So I decided that I had to make a backup of <tt>/dev/sda5</tt>, then delete it (and <tt>/dev/sda4</tt>), move <tt>/dev/sda3</tt> and increase the size of <tt>/dev/sda2</tt>.</p>
<p>Therefore I booted a Fedora installation DVD in the rescue mode and made a backup of <tt>/dev/sda5</tt>:</p>
<pre>dd if=/dev/sda5 bs=65536 | ssh adrian@backup-server "dd of=sda5.img bs=65536"</pre>
<p>Then I booted the <em>gparted</em> live CD and deleted <tt>/dev/sda5</tt> and <tt>/dev/sda4</tt>, moved <tt>/dev/sda3</tt> and increased the size of <tt>/dev/sda2</tt>. After that I created a new extended partition (<tt>/dev/sda4</tt>) and created <tt>/dev/sda5</tt> using the remaining space. After gparted finished I booted the Fedora installation DVD again in the rescue mode and restored the backup:</p>
<pre>ssh adrian@backup-server "dd if=sda5.img bs=65536" | dd of=/dev/sda5 bs=65536</pre>
<p>At the end of the operation I booted my system and was happy that it still worked. Now I still had to resize the encrypted partition. This was pretty easy:</p>
<pre>cryptsetup resize luks-&lt;uuid&gt;
pvresize /dev/mapper/luks-&lt;uuid&gt;</pre>
<p>Before doing the <em>lvresize</em> I checked the available extends with <em>vgdisplay</em> and used that number in the following <em>lvresize</em> command:</p>
<pre>lvresize -l +16449 /dev/mapper/vg_dcbz-lv_root
resize2fs /dev/mapper/vg_dcbz-lv_root</pre>
<p>And that was already it. It took some time (maybe 4 hours), but everything finished without any problems. To make sure everything finished without any problems I forced a <em>fsck</em> (<tt>touch /forcefsck; reboot</tt>).</p>
<p>Before:</p>
<pre>Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/vg_dcbz-lv_root
                       74G   69G  1.4G  99% /</pre>
<p>After:</p>
<pre>Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/vg_dcbz-lv_root
                      137G   69G   62G  53% /</pre>
]]></content:encoded>
			<wfw:commentRss>http://lisas.de/~adrian/?feed=rss2&amp;p=722</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Archaeology</title>
		<link>http://lisas.de/~adrian/?p=717</link>
		<comments>http://lisas.de/~adrian/?p=717#comments</comments>
		<pubDate>Sun, 11 Jul 2010 10:54:12 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[adrian]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[lilo]]></category>

		<guid isPermaLink="false">http://lisas.de/~adrian/?p=717</guid>
		<description><![CDATA[If I remember it correctly my server at home (file-server, print-server, router, &#8230;) has been installed a long time ago using Red Hat Linux 8.0. Since the initial installation I have done live upgrades using rpm, apt-get or yum to its current version (Fedora 11). Now I just started doing a live upgrade using yum [...]]]></description>
			<content:encoded><![CDATA[<p>If I remember it correctly my server at home (file-server, print-server, router, &#8230;) has been installed a long time ago using Red Hat Linux 8.0. Since the initial installation I have done live upgrades using <em>rpm</em>, <em>apt-get</em> or <em>yum</em> to its current version (Fedora 11). Now I just started doing a live upgrade using <em>yum </em>to Fedora 13 and I got an interesting dependency problem:</p>
<pre>--&gt; Finished Dependency Resolution
lilo-21.4.4-26.i386 from installed has depsolving problems
 --&gt; Missing Dependency: mkinitrd &gt;= 3.4.7 is needed by package lilo-21.4.4-26.i386 (installed)</pre>
<p>It seems I still have an unused version of <em>lilo</em> installed on my system and now that <em>mkinitrd</em> has been replaced <em>yum</em> starts complaining. The <em>lilo</em> package is from 2004 and has also been installed in 2004 (according to the <em>RPM</em> database). It is the oldest package on my system but now it has to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://lisas.de/~adrian/?feed=rss2&amp;p=717</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cluster Installation Finished</title>
		<link>http://lisas.de/~adrian/?p=707</link>
		<comments>http://lisas.de/~adrian/?p=707#comments</comments>
		<pubDate>Fri, 02 Apr 2010 08:57:25 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[grid]]></category>
		<category><![CDATA[cluster]]></category>
		<category><![CDATA[lustre]]></category>
		<category><![CDATA[nodes]]></category>

		<guid isPermaLink="false">http://lisas.de/~adrian/?p=707</guid>
		<description><![CDATA[The hardware of our cluster is finally installed and ready. All 180 compute nodes (almost) are ready, Infiniband is working and the lustre is mounted.
First Infiniband benchmarks gave us results of about 23 GBit/s which is the expected bandwidth with our QDR network.
As a mirror admin I am bit frustrated that i cannot use the [...]]]></description>
			<content:encoded><![CDATA[<p>The hardware of <a href="http://lisas.de/~adrian/?p=676">our cluster</a> is finally installed and ready. All 180 compute nodes (almost) are ready, Infiniband is working and the <a href="http://www.lustre.org/">lustre</a> is mounted.</p>
<p>First Infiniband benchmarks gave us results of about 23 GBit/s which is the expected bandwidth with our QDR network.</p>
<p>As a mirror admin I am bit frustrated that i cannot use the big filesystem which is mounted on every compute node for my mirror server:</p>
<pre>172.31.100.222@o2ib,172.30.100.222@tcp:172.31.100.221@o2ib,172.30.100.221@tcp:/lprod
                       29T  819M   28T   1% /lustre/ws1</pre>
<p>Now I still need to install the frontend servers. One is used for the users to log in and submit jobs and the other will contain the grid software as this cluster wil be part of the <a href="http://www.bw-grid.de/">bwGRiD</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lisas.de/~adrian/?feed=rss2&amp;p=707</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>28th Open Grid Forum</title>
		<link>http://lisas.de/~adrian/?p=705</link>
		<comments>http://lisas.de/~adrian/?p=705#comments</comments>
		<pubDate>Sun, 14 Mar 2010 18:29:18 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[adrian]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[ogf28]]></category>

		<guid isPermaLink="false">http://lisas.de/~adrian/?p=705</guid>
		<description><![CDATA[Starting tomorrow (2010-03-15), I will be at the 28th Open Grid Forum (OGF28) in Munich for four days.
]]></description>
			<content:encoded><![CDATA[<p>Starting tomorrow (2010-03-15), I will be at the<a href="http://www.ogf.org/OGF28/"> 28th Open Grid Forum (OGF28)</a> in Munich for four days.</p>
]]></content:encoded>
			<wfw:commentRss>http://lisas.de/~adrian/?feed=rss2&amp;p=705</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>80 Nodes Up And Running</title>
		<link>http://lisas.de/~adrian/?p=703</link>
		<comments>http://lisas.de/~adrian/?p=703#comments</comments>
		<pubDate>Tue, 23 Feb 2010 13:14:18 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[grid]]></category>
		<category><![CDATA[cluster]]></category>
		<category><![CDATA[nodes]]></category>

		<guid isPermaLink="false">http://lisas.de/~adrian/?p=703</guid>
		<description><![CDATA[80 compute nodes from our cluster are up and running. We are now waiting for more switches and the filesystem servers to finally get the complete cluster (with all compute nodes) operational. To get the remaining nodes operational all I have to do is to add their MAC address to a file and with the [...]]]></description>
			<content:encoded><![CDATA[<p>80 compute nodes from <a href="http://lisas.de/~adrian/?p=676">our cluster</a> are up and running. We are now waiting for more switches and the filesystem servers to finally get the complete cluster (with all compute nodes) operational. To get the remaining nodes operational all I have to do is to add their MAC address to a file and with the magic of some scripts everything else is configured automatically. Unfortunately it all depends on the missing ethernet switches which should arrive any day now.</p>
]]></content:encoded>
			<wfw:commentRss>http://lisas.de/~adrian/?feed=rss2&amp;p=703</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RAID 1 Shrinking</title>
		<link>http://lisas.de/~adrian/?p=689</link>
		<comments>http://lisas.de/~adrian/?p=689#comments</comments>
		<pubDate>Thu, 11 Feb 2010 16:29:02 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[adrian]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[ext3]]></category>
		<category><![CDATA[mdadm]]></category>

		<guid isPermaLink="false">http://lisas.de/~adrian/?p=689</guid>
		<description><![CDATA[I was not happy with the partitioning of one of the cluster infrastructure servers. It had a software RAID for /boot, one for swap and the rest was a big software RAID for /. I should have used LVM for / for easy resizing, but I forgot and so I had to do it the [...]]]></description>
			<content:encoded><![CDATA[<p>I was not happy with the partitioning of one of the cluster infrastructure servers. It had a software RAID for <tt>/boot</tt>, one for <em>swap</em> and the rest was a big software RAID for <tt>/</tt>. I should have used <em>LVM</em> for <tt>/</tt> for easy resizing, but I forgot and so I had to do it the hard way. I wanted to resize <tt>/dev/md2</tt> which was used for <tt>/</tt> and then use <em>LVM</em> for the rest.</p>
<p>First I had to resize the filesystem. Online shrinking is not supported for <tt>resize2fs</tt> (at least I was not able to do it) and so I had to boot the CentOS 5.4 rescue system.</p>
<p>After dropping to the shell of the rescue system (without mounting the filesystems) I copied a <tt>mdadm.conf</tt> from a similar system to <tt>/etc</tt> so that I would be able to start the RAIDs:</p>
<ul>
<li><tt>mdadm -A /dev/md0</tt></li>
<li><tt>mdadm -A /dev/md1</tt></li>
<li><tt>mdadm -A /dev/md2</tt></li>
</ul>
<p>Only starting <tt>/dev/md2</tt> would have be enough, but I wanted to make sure that everything is working as it is supposed to. Then, before running <tt>resize2fs</tt>, I had to do a filesystem check:</p>
<ul>
<li><tt>e2fsck -f /dev/md2 -C 0</tt></li>
</ul>
<p>Next step was to actually shrink the filesystem and make it smaller than the desired final size:</p>
<ul>
<li><tt>resize2fs /dev/md2 30G</tt></li>
</ul>
<p>Then I shrunk the RAID to about 40GB:</p>
<ul>
<li><tt>mdadm  --grow /dev/md2 -z 40000000</tt></li>
</ul>
<p>and after that I had to resize the filesystem again to use the 40GB:</p>
<ul>
<li><tt>resize2fs /dev/md2</tt></li>
</ul>
<p>At this point I mounted the filesystem to see if it actually worked and it looked good (and smaller). Now came the hard part; to use the remaining space I had to re-partition the disk. I started <em>fdisk</em> and deleted the corresponding partitions and created at the same start point smaller partitions (42GB). This was the part were I was really worried about losing all my data which was fortunately backed up (of course). After I created the smaller partitions I tried to start <tt>/dev/md2</tt> and it failed, saying that it could not find any RAID partitions.<br />
I then tried to create the RAID again, hoping all data would be still available. I first created the RAID with only one device:</p>
<ul>
<li><tt>mdadm --create /dev/md2 -n 2  -l 1 /dev/sdb3 missing</tt></li>
</ul>
<p>This seemed to work and after mounting the new RAID I saw that all my files were still there. So the next step was to add the second device to the RAID with:</p>
<ul>
<li><tt>mdadm --manage -a /dev/md2 /dev/sda3</tt></li>
</ul>
<p>At this point the RAID started to re-sync and 20 minutes later I was able to grow the RAID to the new partition size:</p>
<ul>
<li><tt>mdadm  --grow /dev/md2 -z max</tt></li>
</ul>
<p>Again I had to wait and before doing the final filesystem resize another filesystem check was necessary:</p>
<ul>
<li><tt>e2fsck -f /dev/md2 -C 0</tt></li>
<li><tt>resize2fs /dev/md2</tt></li>
</ul>
<p>And after <em>only</em> two hours I finally had what I wanted. I rebooted the system and it came up with the smaller <tt>/</tt> partition. I used the remaining space to create a new RAID (<tt>/dev/md3</tt>) which will probably be used with <em>LVM</em> if I ever need more space on this server in the future.</p>
<p>Without having a backup I would have not done all the steps because I was not always sure it would actually work.</p>
]]></content:encoded>
			<wfw:commentRss>http://lisas.de/~adrian/?feed=rss2&amp;p=689</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just Like Three Weeks Ago</title>
		<link>http://lisas.de/~adrian/?p=681</link>
		<comments>http://lisas.de/~adrian/?p=681#comments</comments>
		<pubDate>Sun, 07 Feb 2010 16:08:22 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[Snowboarding]]></category>
		<category><![CDATA[adrian]]></category>
		<category><![CDATA[lech/zürs]]></category>

		<guid isPermaLink="false">http://lisas.de/~adrian/?p=681</guid>
		<description><![CDATA[Yesterday (2010-02-06) Benjamin and myself were again in Lech/Zürs snowboarding; just like three weeks ago. Last time (2010-01-17) Pattrick and Torsten were also able to join. This time it was only Benjamin and me.
The weather was similar to our last visit. Mostly cloudy with a few peeks of sunshine. This time, however, we had lots [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday (2010-02-06) <a href="http://un.codiert.org/">Benjamin</a> and myself were again in <a href="http://www.lech-zuers.at/">Lech/Zürs</a> snowboarding; just like <a href="http://www.bloth.net/serendipity/index.php?/archives/416-Ausflug-ins-Weisse-...-schon-wieder!.html">three weeks ago</a>. Last time (2010-01-17) Pattrick and <a href="http://www.bloth.net/serendipity/">Torsten</a> were also able to join. This time it was only Benjamin and me.</p>
<p>The weather was similar to our last visit. Mostly cloudy with a few peeks of sunshine. This time, however, we had lots of new deep powder and it was freeriding time. Extremely exhausting but great fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://lisas.de/~adrian/?feed=rss2&amp;p=681</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cluster Installation: First Nodes Up</title>
		<link>http://lisas.de/~adrian/?p=676</link>
		<comments>http://lisas.de/~adrian/?p=676#comments</comments>
		<pubDate>Tue, 12 Jan 2010 22:38:56 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[grid]]></category>
		<category><![CDATA[cluster]]></category>
		<category><![CDATA[hlrs]]></category>
		<category><![CDATA[nodes]]></category>

		<guid isPermaLink="false">http://lisas.de/~adrian/?p=676</guid>
		<description><![CDATA[Since Monday I am at the High Performance Computing Center Stuttgart (HLRS) and I have started the initial installation of our cluster.The people from the HLRS have offered to support us with the initial installation, which we gladly accepted because they know how to do clusters.
On Monday I installed the three infrastructure servers which are [...]]]></description>
			<content:encoded><![CDATA[<p>Since Monday I am at the High Performance Computing Center Stuttgart (<a href="http://www.hlrs.de/">HLRS</a>) and I have started the initial installation of our <a href="http://lisas.de/~adrian/?p=629">cluster</a>.The people from the HLRS have offered to support us with the initial installation, which we gladly accepted because they know how to do clusters.</p>
<p>On Monday I installed the three infrastructure servers which are used to control the 180 nodes of the cluster. The cluster is running <a href="https://www.scientificlinux.org/">Scientific Linux</a> and my first task was to get it on those three infrastructure servers.</p>
<p>Those servers have two 500GB disks and they were supposed to be running as software RAID. After the seventh failed attempt to configure the partitions as RAID1 with the Scientific Linux installer we used a Debian install DVD to partition the disks and after the successful configuration of the partitions as RAID1 we installed Scientific Linux on all three systems. Not knowing how to use anaconda to configure a RAID1 (like we wanted to) was a bit embarrassing, but with all the Fedora and CentOS installation I have done I have never configured a software RAID1 from the installer; either the system had only one disk, a hardware RAID controller or I configured the RAID manually after the installation. But at the end of the day all three system were installed and configured for their tasks.</p>
<p>Today (Tuesday) we used the installation to boot the first two nodes of the cluster. All the nodes are running disk-less and are booting over TFTP/NFS from a single read-only image.</p>
]]></content:encoded>
			<wfw:commentRss>http://lisas.de/~adrian/?feed=rss2&amp;p=676</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update To Fedora 12</title>
		<link>http://lisas.de/~adrian/?p=671</link>
		<comments>http://lisas.de/~adrian/?p=671#comments</comments>
		<pubDate>Mon, 11 Jan 2010 21:03:36 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[mirror server]]></category>

		<guid isPermaLink="false">http://lisas.de/~adrian/?p=671</guid>
		<description><![CDATA[Last week I have finally updated our mirror server to Fedora 12. It was still running Fedora 10 which has reached its end of life. The server was running Fedora 10 for a long time and it was always running with a CentOS kernel. The Fedora kernels were, at the beginning, not stable enough (crashing [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I have finally updated our <a href="http://ftp-stud.hs-esslingen.de/info/">mirror server</a> to Fedora 12. It was still running Fedora 10 which has reached its end of life. The server was running Fedora 10 for a long time and it was always running with a CentOS kernel. The Fedora kernels were, at the beginning, not stable enough (crashing after three or four days) so that I quickly switched to a CentOS kernel. I know that I should have reported bugs, but in the case of the mirror server I am more concerned to keep it up and running than getting debug data from it. It also not easy for me to get physically to the machine so that I had a lot of <em>good</em> excuses to switch to a CentOS kernel.</p>
<p>Now the system is running using the Fedora 12 kernel and after a week it is still up without any problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://lisas.de/~adrian/?feed=rss2&amp;p=671</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating My RPM Fusion Builder</title>
		<link>http://lisas.de/~adrian/?p=655</link>
		<comments>http://lisas.de/~adrian/?p=655#comments</comments>
		<pubDate>Fri, 08 Jan 2010 12:01:49 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[adrian]]></category>
		<category><![CDATA[mirror server]]></category>
		<category><![CDATA[rpmfusion]]></category>

		<guid isPermaLink="false">http://lisas.de/~adrian/?p=655</guid>
		<description><![CDATA[I am running one of the RPM Fusion builders in a VM using CentOS and after I saw that the newly created VMs on my notebook are using virtio for network and disk access I thought that I will try this also for my builder VM. It was pretty easy and straight forward.
First I had [...]]]></description>
			<content:encoded><![CDATA[<p>I am running one of the RPM Fusion builders in a VM using CentOS and after I saw that the newly created VMs on my notebook are using <em>virtio</em> for network and disk access I thought that I will try this also for my builder VM. It was pretty easy and straight forward.</p>
<p>First I had to update from CentOS 5.2 to CentOS 5.4 so that the <em>virtio</em> drivers are available. After that I was just following <a href="http://wiki.libvirt.org/page/Virtio">http://wiki.libvirt.org/page/Virtio</a>.</p>
<p>For the network:</p>
<ul>
<li>shut down the VM</li>
<li>edit the XML and add <tt>&lt;model type='virtio'/&gt;</tt> to the network section</li>
<li>start the VM</li>
<li>done</li>
</ul>
<p>For the disk:</p>
<ul>
<li>create a new ramdisk with the <em>virtio</em> drivers: <tt>mkinitrd --with virtio_pci --with virtio_blk -f /boot/initrd-$(uname -r).img $(uname -r)</tt></li>
<li>or <tt>dracut -f --add-drivers "virtio_pci virtio_blk"  /boot/initrd-$(uname -r).img $(uname -r)</tt> for Fedora 12</li>
<li>change <tt>/boot/grub/device.map</tt> from &#8220;<tt>(hd0) /dev/hda</tt>&#8221; to &#8220;<tt>(hd0) /dev/vda</tt>&#8220;</li>
<li>using LVM requires no changes to the <tt>root=</tt> parameter in <tt>/etc/grub.conf</tt></li>
<li>shut down the VM</li>
<li>edit the XML changing <tt>&lt;target dev='hda' bus='ide'/&gt;</tt> to <tt>&lt;target dev='vda' bus='virtio'/&gt;</tt></li>
<li>start the VM</li>
<li>done</li>
</ul>
<p>During the boot of the VM I can now see that it is loading the <em>virtio</em> disk drivers and detecting <em>vda1</em> and <em>vda2</em>. Using <em>lspci</em> and <em>lsmod</em> I can also verify that the new <em>virtio</em> devices are available and also used. The VM seems to be faster but I have not actually benchmarked it.</p>
]]></content:encoded>
			<wfw:commentRss>http://lisas.de/~adrian/?feed=rss2&amp;p=655</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
