<?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>Cristian Bradiceanu &#187; Virtualization</title>
	<atom:link href="http://blog.bradiceanu.net/category/virtualization/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bradiceanu.net</link>
	<description>just another blog</description>
	<lastBuildDate>Tue, 08 Jun 2010 18:36:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing Fedora 12 PV domU guest on xVM dom0 OpenSolaris</title>
		<link>http://blog.bradiceanu.net/2009/11/20/fedora-12-on-opensolaris/</link>
		<comments>http://blog.bradiceanu.net/2009/11/20/fedora-12-on-opensolaris/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 21:48:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://blog.bradiceanu.net/?p=173</guid>
		<description><![CDATA[Create a 10 GB ZVOL for storage:
pfexec zfs create -V 10g rpool/f12d0
Install Fedora 12 domU:
pfexec virt-install -n f12 -r 512 --vcpus=4 -f /dev/zvol/dsk/rpool/f12d0 -b e1000g0 --os-type=linux -p --nographics --os-variant=fedora11 -l http://fedora-12-mirror/fedora/linux/releases/12/Fedora/i386/os/
-n f12 &#8211; domU&#8217;s name
-r 512 &#8211; allocate 512 MB memory
&#8211;vcpus=4 &#8211; number of virtual CPUs allocated (make sure this number is lower or equal [...]]]></description>
			<content:encoded><![CDATA[<p>Create a 10 GB <a href="http://docs.sun.com/app/docs/doc/817-2271/gaypf?l=en&#038;a=view" target="_new">ZVOL</a> for storage:<br />
<code>pfexec zfs create -V 10g rpool/f12d0</code></p>
<p>Install <a href="http://fedoraproject.org/" target="_new">Fedora</a> 12 domU:<br />
<code>pfexec virt-install -n f12 -r 512 --vcpus=4 -f /dev/zvol/dsk/rpool/f12d0 -b e1000g0 --os-type=linux -p --nographics --os-variant=fedora11 -l http://fedora-12-mirror/fedora/linux/releases/12/Fedora/i386/os/</code></p>
<p>-n f12 &#8211; domU&#8217;s name<br />
-r 512 &#8211; allocate 512 MB memory<br />
&#8211;vcpus=4 &#8211; number of virtual CPUs allocated (make sure this number is lower or equal to the number of CPUs available)<br />
-f /dev/zvol/dsk/rpool/f12d0 &#8211; ZVOL block device<br />
-b e1000g0 &#8211; bridged networking to e1000g0 interface<br />
-p &#8211; paravirtualized guest<br />
&#8211;os-variant=fedora11 &#8211; &#8220;hack&#8221; until fedora12 OS-Variant will be integrated into xVM<br />
-l http://fedora-12-mirror/fedora/linux/releases/12/Fedora/i386/os/ &#8211; replace fedora-12-mirror with a near <a href="http://mirrors.fedoraproject.org/publiclist/Fedora/12/" target="_new">Fedora 12 mirror</a>, replace i386 with x86_64 for 64-bit domU</p>
<p>After you bring up the network, do a VNC installation.<br />
Until xVM supports ext4 boot, make sure to create an ext3 /boot partition (or just a big ext3 / filesystem)</p>
<p>After installation, start the domU:<br />
<code>pfexec xm start -c f12</code><br />
You will be presented the pygrub menu, just press Enter to boot.</p>
<p>Log into the domU and change the default <code>timeout=0</code> to a different value (e.g. 5 seconds) in <code>/boot/grub/grub.conf</code>. Now you can use <code>virsh start / shutdown</code> commands.</p>
<p>To auto-start the guest on host boot:<br />
<code>virsh autostart f12</code></p>
<p>Tested on <a href="http://www.opensolaris.org/" target="_new">OpenSolaris</a> 2010.02 preview <a href="http://pkg.opensolaris.org/dev/" target="_new">snv_127</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bradiceanu.net/2009/11/20/fedora-12-on-opensolaris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenSolaris 2009.06 to OpenSolaris preview 2010.02 (build 124)</title>
		<link>http://blog.bradiceanu.net/2009/10/07/opensolaris-2009-06-to-opensolaris-preview-2010-02-build-124/</link>
		<comments>http://blog.bradiceanu.net/2009/10/07/opensolaris-2009-06-to-opensolaris-preview-2010-02-build-124/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 22:04:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Solaris]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://blog.bradiceanu.net/?p=144</guid>
		<description><![CDATA[Create a new Boot Environment:
pfexec beadm create devel
Mount the new Boot Environment:
pfexec mkdir /mnt/devel
pfexec beadm mount devel /mnt/devel

Use the dev publisher:
pfexec pkg -R /mnt/devel set-publisher -O http://pkg.opensolaris.org/dev opensolaris.org
Update to the latest bits:
pfexec pkg -R /mnt/devel image-update -v
If everything went fine (after you read the Release Notes), activate the new BE:
pfexec beadm activate devel
Reboot:
pfexec shutdown -y [...]]]></description>
			<content:encoded><![CDATA[<p>Create a new Boot Environment:<br />
<code>pfexec beadm create devel</code></p>
<p>Mount the new Boot Environment:<br />
<code>pfexec mkdir /mnt/devel<br />
pfexec beadm mount devel /mnt/devel<br />
</code></p>
<p>Use the dev publisher:<br />
<code>pfexec pkg -R /mnt/devel set-publisher -O http://pkg.opensolaris.org/dev opensolaris.org</code></p>
<p>Update to the latest bits:<br />
<code>pfexec pkg -R /mnt/devel image-update -v</code></p>
<p>If everything went fine (after you read the Release Notes), activate the new BE:<br />
<code>pfexec beadm activate devel</code></p>
<p>Reboot:<br />
<code>pfexec shutdown -y -g1 -i6</code></p>
<p>Did this remotely. After reboot, system was up and running, including all xVM domU autostarted.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bradiceanu.net/2009/10/07/opensolaris-2009-06-to-opensolaris-preview-2010-02-build-124/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>$20 Xen VPS Gandi vs. Linode vs. Slicehost</title>
		<link>http://blog.bradiceanu.net/2009/09/17/20-xen-vps-gandi-vs-linode-vs-slicehost/</link>
		<comments>http://blog.bradiceanu.net/2009/09/17/20-xen-vps-gandi-vs-linode-vs-slicehost/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 15:45:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://blog.bradiceanu.net/?p=89</guid>
		<description><![CDATA[


Gandi
Linode
Slicehost


Plan
1 Share
Linode 360
256 slice


Price
14.35 EUR(~20 USD)
19.95 USD
20 USD


RAM
256MB
360MB
256MB


Storage
8GB(3 OS + 5 Data)
16GB
10GB


Bandwidth
5 Mbit
200GB
100GB


My VPS Location
Paris, FranceEurope
Dallas, TXUSA
St. Louis, MIUSA


My VPS CPU
Quad-Core AMD Opteron(tm) Processor 8346 HE
Intel(R) Xeon(R) CPU L5420 @ 2.50GHz
Dual Core AMD Opteron(tm) Processor 270


My VPS vCPUs
1
4
4


My VPS OS
CentOS 5.3
CentOS 5.3
CentOS 5.3


My VPS Buffered disk reads
10.48 MB/sec
73.77 MB/sec
60.86 MB/sec


My VPS OGR-NG Benchmark
23,608,069 nodes/sec
40,910,174 nodes/sec
17,593,557 [...]]]></description>
			<content:encoded><![CDATA[<table width="100%" border="1">
<tr>
<th width="25%"></th>
<th width="25%"><a href="http://www.gandi.net/" target=_new>Gandi</a></th>
<th width="25%"><a href="http://www.linode.com/" target=_new>Linode</a></th>
<th width="25%"><a href="http://www.slicehost.com/" target=_new>Slicehost</a></th>
</tr>
<tr>
<td><strong>Plan</strong></td>
<td>1 Share</td>
<td>Linode 360</td>
<td>256 slice</td>
</tr>
<tr>
<td><strong>Price</strong></td>
<td>14.35 EUR<br />(~20 USD)</td>
<td>19.95 USD</td>
<td>20 USD</td>
</tr>
<tr>
<td><strong>RAM</strong></td>
<td>256MB</td>
<td>360MB</td>
<td>256MB</td>
</tr>
<tr>
<td><strong>Storage</strong></td>
<td>8GB<br />(3 OS + 5 Data)</td>
<td>16GB</td>
<td>10GB</td>
</tr>
<tr>
<td><strong>Bandwidth</strong></td>
<td>5 Mbit</td>
<td>200GB</td>
<td>100GB</td>
</tr>
<tr>
<td><strong>My VPS Location</strong></td>
<td>Paris, France<br />Europe</td>
<td>Dallas, TX<br />USA</td>
<td>St. Louis, MI<br />USA</td>
</tr>
<tr>
<td><strong>My VPS CPU</strong></td>
<td>Quad-Core AMD Opteron(tm) Processor 8346 HE</td>
<td>Intel(R) Xeon(R) CPU L5420 @ 2.50GHz</td>
<td>Dual Core AMD Opteron(tm) Processor 270</td>
</tr>
<tr>
<td><strong>My VPS vCPUs</strong></td>
<td>1</td>
<td>4</td>
<td>4</td>
</tr>
<tr>
<td><strong>My VPS OS</strong></td>
<td>CentOS 5.3</td>
<td>CentOS 5.3</td>
<td>CentOS 5.3</td>
</tr>
<tr>
<td><strong>My VPS Buffered disk reads</strong></td>
<td>10.48 MB/sec</td>
<td>73.77 MB/sec</td>
<td>60.86 MB/sec</td>
</tr>
<tr>
<td><strong>My VPS OGR-NG Benchmark</strong></td>
<td>23,608,069 nodes/sec</td>
<td>40,910,174 nodes/sec</td>
<td>17,593,557 nodes/sec</td>
</tr>
<tr>
<td><strong>My VPS RC5-72 Benchmark</strong></td>
<td>7,703,097 keys/sec</td>
<td>9,297,850 keys/sec</td>
<td>8,585,510 keys/sec</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://blog.bradiceanu.net/2009/09/17/20-xen-vps-gandi-vs-linode-vs-slicehost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
