<?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>www.cardus.com &#187; Linux</title>
	<atom:link href="http://www.cardus.com/category/tech/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cardus.com</link>
	<description>Sean Cardus&#039;s Website</description>
	<lastBuildDate>Mon, 19 Jul 2010 10:11:32 +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>Backing up Windows Server 2008 &amp; Exchange Server 2007 With Bacula</title>
		<link>http://www.cardus.com/2009/01/13/backing-up-windows-server-2008-exchange-server-2007-with-bacula</link>
		<comments>http://www.cardus.com/2009/01/13/backing-up-windows-server-2008-exchange-server-2007-with-bacula#comments</comments>
		<pubDate>Tue, 13 Jan 2009 13:52:19 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Bacula]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.cardus.com/2009/01/13/backing-up-windows-server-2008-exchange-server-2007-with-bacula</guid>
		<description><![CDATA[Over the past couple of days I’ve been battling away trying to get the Win32 Bacula agent to back up my Windows Server 2008 System State&#160; and Exchange Server 2007 Information Store Databases. Bacula currently doesn’t support VSS backups of a 64-Bit version of Windows Server 2008, so there’s a number of hoops you have [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past couple of days I’ve been battling away trying to get the Win32 Bacula agent to back up my Windows Server 2008 System State&#160; and Exchange Server 2007 Information Store Databases.</p>
<p>Bacula currently doesn’t support VSS backups of a 64-Bit version of Windows Server 2008, so there’s a number of hoops you have to jump through to get even a semi-reliable System State &amp; Exchange backup.&#160; For an Exchange backup we use the NTBACKUP binaries from Windows Server 2003 64-bit and for the System State we use the Windows Server 2008 wbadmin tools.</p>
<p>For both jobs we’ll use a couple of “Client Run Before Job” commands to trigger client-side scripts to run the client-side backup jobs…</p>
<p> <span id="more-167"></span>
<p align="center"><strong>WARNING: This method works for me, but please test and then test some more before relying on any backups made like this!</strong></p>
<h2>Exchange Backups</h2>
<p>First of all, grab the ntbackup.exe, ntmsapi.dll and vssapi.dll binaries from a Windows 2003 64-bit server – They should be located in C:\Windows\System32 by default.&#160; Place the binaries in their own directory.&#160; eg: C:\Program Files\NTBackup </p>
<p>Next, create a folder to store the scripts &amp; Exchange database backup files.&#160; eg: C:\Backup </p>
<p>Run NTBackup, cancel the wizard, click the “Backup” tab, browse the tree and tick “Microsoft Information Store” under your Exchange Server:    <br /><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="ntbackuptree" border="0" alt="ntbackuptree" src="http://www.cardus.com/wp-content/uploads/2009/01/ntbackuptree.jpg" width="240" height="91" /> </p>
<p>Click “Job” then “Save Selections”, save the file as “C:\Backup\Exchange Backup.bks” then exit NTBackup.</p>
<p>Create a text file in C:\Backup named “BackupExchange.cmd” with the following contents (watch for line-wrapping, the following should be all on one line): </p>
<blockquote><p>start /W &quot;&quot; &quot;c:\Program Files\ntbackup\ntbackup.exe&quot; backup &quot;@c:\backup\Exchange Backup.bks&quot; /N &quot;Exchange Backup&quot; /F &quot;c:\backup\Exchange Backup.bkf&quot; /FU /L:f /M normal</p>
</blockquote>
<p>This script will run a full Exchange Information Store backup on-demand and store it in C:\Backup\Exchange Backup.bkf, overwriting this files previous contents.</p>
<p>Next, we’ll edit our existing Bacula client config to skip the C:\Backup folder for standard backups and create a a new job to trigger the above script and backup the C:\Backup folder:</p>
<blockquote><p>Client {      <br />&#160; Name = exchange-fd       <br />&#160; Address = exchange.server.address.here       <br />&#160; FDPort = 9102       <br />&#160; Catalog = MyCatalog       <br />&#160; Password = &quot;my_bacula_fd_password&quot;       <br />&#160; File Retention = 30 days       <br />&#160; Job Retention = 6 months       <br />&#160; AutoPrune = yes       <br />&#160; Maximum Concurrent Jobs = 1       <br />}</p>
<p>Job {      <br />&#160; Name = &quot;Exchange&quot;       <br />&#160; JobDefs = &quot;DefaultJob&quot;       <br />&#160; Schedule = &quot;MondayFull&quot;       <br />&#160; Client = exchange-fd       <br />&#160; FileSet = &quot;Exchange FileSet&quot;       <br />&#160; Write Bootstrap = &quot;/var/lib/bacula/exchange.bsr&quot;       <br />} </p>
<p>Job {      <br />&#160; Name = &quot;Exchange DB&quot;       <br />&#160; JobDefs = &quot;DefaultJob&quot;       <br />&#160; Schedule = &quot;MondayFull&quot;       <br />&#160; Client = exchange-fd       <br />&#160; FileSet = &quot;Exchange DB&quot;       <br />&#160; Write Bootstrap = &quot;/var/lib/bacula/exchangedb.bsr&quot;       <br />&#160; Level = Full       <br />&#160; Client Run Before Job = &quot;C:/Backup/BackupExchange.cmd&quot;       <br />}</p>
<p>FileSet {      <br />&#160; Name = &quot;Exchange FileSet&quot; </p>
<p>&#160; Include {      <br />&#160;&#160;&#160; Options {       <br />&#160;&#160;&#160;&#160;&#160; signature = MD5       <br />&#160;&#160;&#160;&#160;&#160; compression = GZIP       <br />&#160;&#160;&#160; }       <br />&#160;&#160;&#160; File = &quot;C:/&quot;       <br />&#160; } </p>
<p>&#160; Exclude {      <br />&#160;&#160;&#160; File = &quot;C:/pagefile.sys&quot;       <br />&#160;&#160;&#160; File = &quot;C:/Backup&quot;       <br />&#160; }       <br />}</p>
<p>FileSet {      <br />&#160; Name = &quot;Exchange DB&quot; </p>
<p>&#160; Include {      <br />&#160;&#160;&#160; Options {       <br />&#160;&#160;&#160;&#160;&#160; signature = MD5       <br />&#160;&#160;&#160;&#160;&#160; compression = GZIP       <br />&#160;&#160;&#160; }       <br />&#160;&#160;&#160; File = C:/Backup       <br />&#160; }       <br />}</p>
</blockquote>
<p>Once we’ve done this, we can reload the bacula config and we’ll be good to go!</p>
<h2></h2>
<h2>System State Backups</h2>
<p>System state backups are a bit trickier – Because we’re running the 32-bit Bacula-fd binary, we’re inside the 32-bit WOW compatibility environment.&#160; Inside this environment, C:\Windows\System32 is remapped to C:\Windows\SysWOW64 which contains 32-bit binaries.&#160; However, the backup tool we require (wbadmin) is 64-bit only and is not available to us due to this re-mapping. Attempts to copy the wbadmin.exe binary to another location proved unsuccessful with other strange error messages.</p>
<p>However, the following method/kludge <strong>does</strong> work:</p>
<p>Copy the 64-bit C:\Windows\System32\cmd.exe to C:\Backup</p>
<p>Create a text file in C:\Backup named “BackupSystemState.cmd” with the following contents (watch for line-wrapping, the following should be on 2 lines, each starting with “start /W”): </p>
<blockquote><p>start /W &quot;&quot; c:\backup\cmd.exe /C start /W &quot;&quot; c:\windows\system32\wbadmin delete systemstatebackup -backupTarget:d: -keepVersions:0 -quiet      <br />start /W &quot;&quot; c:\backup\cmd.exe /C start /W &quot;&quot; c:\windows\system32\wbadmin start systemstatebackup -backupTarget:d: –quiet</p>
</blockquote>
<p>This script works by first of all launching the 64-bit command-prompt, then in turn launching the wbadmin backup process.&#160; The 2 commands being run here first of all delete any existing System State backups from D:, then starts a new System State backup with D: as the target volume.</p>
<p>Next, we’ll edit our Bacula client config again, adding the following new FileSet and Job:</p>
<blockquote><p>Job {      <br />&#160; Name = &quot;Exchange SS&quot;       <br />&#160; JobDefs = &quot;DefaultJob&quot;       <br />&#160; Schedule = &quot;MondayFull&quot;       <br />&#160; Client = exchange-fd       <br />&#160; FileSet = &quot;Exchange SS&quot;       <br />&#160; Write Bootstrap = &quot;/var/lib/bacula/exchangess.bsr&quot;       <br />&#160; Level = Full       <br />&#160; Client Run Before Job = &quot;C:/Backup/BackupSystemState.cmd&quot;       <br />}</p>
<p>FileSet {      <br />&#160; Name = &quot;Exchange SS&quot; </p>
<p>&#160; Include {      <br />&#160;&#160;&#160; Options {       <br />&#160;&#160;&#160;&#160;&#160; signature = MD5       <br />&#160;&#160;&#160;&#160;&#160; compression = GZIP       <br />&#160;&#160;&#160; }       <br />&#160;&#160;&#160; File = D:/       <br />&#160;&#160;&#160; File = C:/Windows/Logs/WindowsServerBackup/       <br />&#160; }       <br />}</p>
</blockquote>
<p>After reloading the Bacula config, you should be all set!</p>
<p>Drop me a line if you have any comments/suggestions.</p>



Share:


	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.cardus.com%2F2009%2F01%2F13%2Fbacking-up-windows-server-2008-exchange-server-2007-with-bacula&amp;title=Backing%20up%20Windows%20Server%202008%20%26amp%3B%20Exchange%20Server%202007%20With%20Bacula&amp;annotation=Over%20the%20past%20couple%20of%20days%20I%E2%80%99ve%20been%20battling%20away%20trying%20to%20get%20the%20Win32%20Bacula%20agent%20to%20back%20up%20my%20Windows%20Server%202008%20System%20State%26%23160%3B%20and%20Exchange%20Server%202007%20Information%20Store%20Databases.%20%20Bacula%20currently%20doesn%E2%80%99t%20support%20VSS%20backups%20of%20" title="Google Bookmarks"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.cardus.com%2F2009%2F01%2F13%2Fbacking-up-windows-server-2008-exchange-server-2007-with-bacula&amp;t=Backing%20up%20Windows%20Server%202008%20%26amp%3B%20Exchange%20Server%202007%20With%20Bacula" title="Facebook"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.cardus.com%2F2009%2F01%2F13%2Fbacking-up-windows-server-2008-exchange-server-2007-with-bacula&amp;title=Backing%20up%20Windows%20Server%202008%20%26amp%3B%20Exchange%20Server%202007%20With%20Bacula" title="Live"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.cardus.com%2F2009%2F01%2F13%2Fbacking-up-windows-server-2008-exchange-server-2007-with-bacula&amp;title=Backing%20up%20Windows%20Server%202008%20%26amp%3B%20Exchange%20Server%202007%20With%20Bacula&amp;bodytext=Over%20the%20past%20couple%20of%20days%20I%E2%80%99ve%20been%20battling%20away%20trying%20to%20get%20the%20Win32%20Bacula%20agent%20to%20back%20up%20my%20Windows%20Server%202008%20System%20State%26%23160%3B%20and%20Exchange%20Server%202007%20Information%20Store%20Databases.%20%20Bacula%20currently%20doesn%E2%80%99t%20support%20VSS%20backups%20of%20" title="Digg"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.cardus.com%2F2009%2F01%2F13%2Fbacking-up-windows-server-2008-exchange-server-2007-with-bacula&amp;title=Backing%20up%20Windows%20Server%202008%20%26amp%3B%20Exchange%20Server%202007%20With%20Bacula&amp;notes=Over%20the%20past%20couple%20of%20days%20I%E2%80%99ve%20been%20battling%20away%20trying%20to%20get%20the%20Win32%20Bacula%20agent%20to%20back%20up%20my%20Windows%20Server%202008%20System%20State%26%23160%3B%20and%20Exchange%20Server%202007%20Information%20Store%20Databases.%20%20Bacula%20currently%20doesn%E2%80%99t%20support%20VSS%20backups%20of%20" title="del.icio.us"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.cardus.com%2F2009%2F01%2F13%2Fbacking-up-windows-server-2008-exchange-server-2007-with-bacula" title="Technorati"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.cardus.com%2F2009%2F01%2F13%2Fbacking-up-windows-server-2008-exchange-server-2007-with-bacula&amp;title=Backing%20up%20Windows%20Server%202008%20%26amp%3B%20Exchange%20Server%202007%20With%20Bacula" title="StumbleUpon"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Backing%20up%20Windows%20Server%202008%20%26amp%3B%20Exchange%20Server%202007%20With%20Bacula%20-%20http%3A%2F%2Fwww.cardus.com%2F2009%2F01%2F13%2Fbacking-up-windows-server-2008-exchange-server-2007-with-bacula" title="Twitter"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.cardus.com/2009/01/13/backing-up-windows-server-2008-exchange-server-2007-with-bacula/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Booting a Centos Xen Dom0 under VMWare</title>
		<link>http://www.cardus.com/2007/01/30/booting-a-centos-xen-dom0-under-vmware</link>
		<comments>http://www.cardus.com/2007/01/30/booting-a-centos-xen-dom0-under-vmware#comments</comments>
		<pubDate>Tue, 30 Jan 2007 11:02:10 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.cardus.com/2007/01/30/booting-a-centos-xen-dom0-under-vmware/</guid>
		<description><![CDATA[Just a few quick notes on how I gotÂ a CentOS v4.4 Xen dom0 to boot inside a VMWare Server VM&#8230; yum install bridge-utils SDL rpm -ivh xen-3.0.4.1-1.i386.rpm kernel-xen-2.6.16.33-3.0.4.1.i386.rpm vi /etc/yum.conf Add: exclude=xen xen-kernel xen-devel kernel mv /lib/tls /lib/tls.disabled mkinitrd -f -v --preload=scsi_mod --preload=sd_mod --preload=mptbase --preload=mptscsih --preload=mptfc --preload=mptspi /boot/initrd-2.6.16.33-xen_3.0.4.1.img 2.6.16.33-xen_3.0.4.1 vi /boot/grub/grub.conf Add: Â  title Xen [...]]]></description>
			<content:encoded><![CDATA[<p>Just a few quick notes on how I gotÂ a CentOS v4.4 Xen dom0 to boot inside a VMWare Server VM&#8230;</p>
<blockquote><p><code>yum install bridge-utils SDL</code><br />
<br />
<code>rpm -ivh xen-3.0.4.1-1.i386.rpm kernel-xen-2.6.16.33-3.0.4.1.i386.rpm</code><br />
<br />
<code>vi /etc/yum.conf<br />
Add:<br />
exclude=xen xen-kernel xen-devel kernel</code><br />
<br />
<code>mv /lib/tls /lib/tls.disabled</code><br />
<br />
<code>mkinitrd -f -v --preload=scsi_mod --preload=sd_mod --preload=mptbase --preload=mptscsih --preload=mptfc --preload=mptspi /boot/initrd-2.6.16.33-xen_3.0.4.1.img 2.6.16.33-xen_3.0.4.1</code><br />
<br />
<code>vi /boot/grub/grub.conf<br />
Add:<br />
Â  title Xen v3.0<br />
Â  root (hd0,0)<br />
Â  kernel /xen-3.0.gz noreboot dom0_mem=128000<br />
Â  module /vmlinuz-2.6-xen root=/dev/VolGroup00/root<br />
Â  module /initrd-2.6-xen.img</code></p></blockquote>
<p>
Reboot!</p>



Share:


	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.cardus.com%2F2007%2F01%2F30%2Fbooting-a-centos-xen-dom0-under-vmware&amp;title=Booting%20a%20Centos%20Xen%20Dom0%20under%20VMWare&amp;annotation=Just%20a%20few%20quick%20notes%20on%20how%20I%20got%C3%82%C2%A0a%20CentOS%20v4.4%20Xen%20dom0%20to%20boot%20inside%20a%20VMWare%20Server%20VM...%0D%0Ayum%20install%20bridge-utils%20SDL%0D%0A%0D%0Arpm%20-ivh%20xen-3.0.4.1-1.i386.rpm%20kernel-xen-2.6.16.33-3.0.4.1.i386.rpm%0D%0A%0D%0Avi%20%2Fetc%2Fyum.conf%0D%0AAdd%3A%0D%0Aexclude%3Dxen%20xen-kerne" title="Google Bookmarks"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.cardus.com%2F2007%2F01%2F30%2Fbooting-a-centos-xen-dom0-under-vmware&amp;t=Booting%20a%20Centos%20Xen%20Dom0%20under%20VMWare" title="Facebook"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.cardus.com%2F2007%2F01%2F30%2Fbooting-a-centos-xen-dom0-under-vmware&amp;title=Booting%20a%20Centos%20Xen%20Dom0%20under%20VMWare" title="Live"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.cardus.com%2F2007%2F01%2F30%2Fbooting-a-centos-xen-dom0-under-vmware&amp;title=Booting%20a%20Centos%20Xen%20Dom0%20under%20VMWare&amp;bodytext=Just%20a%20few%20quick%20notes%20on%20how%20I%20got%C3%82%C2%A0a%20CentOS%20v4.4%20Xen%20dom0%20to%20boot%20inside%20a%20VMWare%20Server%20VM...%0D%0Ayum%20install%20bridge-utils%20SDL%0D%0A%0D%0Arpm%20-ivh%20xen-3.0.4.1-1.i386.rpm%20kernel-xen-2.6.16.33-3.0.4.1.i386.rpm%0D%0A%0D%0Avi%20%2Fetc%2Fyum.conf%0D%0AAdd%3A%0D%0Aexclude%3Dxen%20xen-kerne" title="Digg"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.cardus.com%2F2007%2F01%2F30%2Fbooting-a-centos-xen-dom0-under-vmware&amp;title=Booting%20a%20Centos%20Xen%20Dom0%20under%20VMWare&amp;notes=Just%20a%20few%20quick%20notes%20on%20how%20I%20got%C3%82%C2%A0a%20CentOS%20v4.4%20Xen%20dom0%20to%20boot%20inside%20a%20VMWare%20Server%20VM...%0D%0Ayum%20install%20bridge-utils%20SDL%0D%0A%0D%0Arpm%20-ivh%20xen-3.0.4.1-1.i386.rpm%20kernel-xen-2.6.16.33-3.0.4.1.i386.rpm%0D%0A%0D%0Avi%20%2Fetc%2Fyum.conf%0D%0AAdd%3A%0D%0Aexclude%3Dxen%20xen-kerne" title="del.icio.us"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.cardus.com%2F2007%2F01%2F30%2Fbooting-a-centos-xen-dom0-under-vmware" title="Technorati"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.cardus.com%2F2007%2F01%2F30%2Fbooting-a-centos-xen-dom0-under-vmware&amp;title=Booting%20a%20Centos%20Xen%20Dom0%20under%20VMWare" title="StumbleUpon"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Booting%20a%20Centos%20Xen%20Dom0%20under%20VMWare%20-%20http%3A%2F%2Fwww.cardus.com%2F2007%2F01%2F30%2Fbooting-a-centos-xen-dom0-under-vmware" title="Twitter"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.cardus.com/2007/01/30/booting-a-centos-xen-dom0-under-vmware/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A few interesting links&#8230;.</title>
		<link>http://www.cardus.com/2005/01/25/a-few-interesting-links</link>
		<comments>http://www.cardus.com/2005/01/25/a-few-interesting-links#comments</comments>
		<pubDate>Tue, 25 Jan 2005 12:23:09 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Nine Inch Nails]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.cardus.com/wordpress/2005/01/25/a-few-interesting-links/</guid>
		<description><![CDATA[Here&#8217;s a couple of interesting links I found today&#8230; Simple HA/HP clustering Using Only DNS Google Video Search Plus Trent Reznor has finally announced in the nin.com Q/A section when the next Nine Inch Nails album is going to be released! Share:]]></description>
			<content:encoded><![CDATA[<div>Here&#8217;s a couple of interesting links I found today&#8230;</p>
<ul>
<li><a href="http://www.holviala.com/%7Ekimmy/hacks/dnscluster/">Simple HA/HP clustering Using Only DNS</a></li>
<li><a href="http://video.google.com/">Google Video Search</a></li>
</ul>
<p>Plus Trent Reznor has <a href="http://www.nin.com/access/index.html">finally announced</a> in the nin.com Q/A section when the next <a href="http://www.nin.com/">Nine Inch Nails</a> album is going to be released!</div>



Share:


	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.cardus.com%2F2005%2F01%2F25%2Fa-few-interesting-links&amp;title=A%20few%20interesting%20links....&amp;annotation=Here%27s%20a%20couple%20of%20interesting%20links%20I%20found%20today...%0D%0A%0D%0A%09Simple%20HA%2FHP%20clustering%20Using%20Only%20DNS%0D%0A%09Google%20Video%20Search%0D%0A%0D%0APlus%20Trent%20Reznor%20has%20finally%20announced%20in%20the%20nin.com%20Q%2FA%20section%20when%20the%20next%20Nine%20Inch%20Nails%20album%20is%20going%20to%20be%20released%21" title="Google Bookmarks"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.cardus.com%2F2005%2F01%2F25%2Fa-few-interesting-links&amp;t=A%20few%20interesting%20links...." title="Facebook"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.cardus.com%2F2005%2F01%2F25%2Fa-few-interesting-links&amp;title=A%20few%20interesting%20links...." title="Live"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.cardus.com%2F2005%2F01%2F25%2Fa-few-interesting-links&amp;title=A%20few%20interesting%20links....&amp;bodytext=Here%27s%20a%20couple%20of%20interesting%20links%20I%20found%20today...%0D%0A%0D%0A%09Simple%20HA%2FHP%20clustering%20Using%20Only%20DNS%0D%0A%09Google%20Video%20Search%0D%0A%0D%0APlus%20Trent%20Reznor%20has%20finally%20announced%20in%20the%20nin.com%20Q%2FA%20section%20when%20the%20next%20Nine%20Inch%20Nails%20album%20is%20going%20to%20be%20released%21" title="Digg"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.cardus.com%2F2005%2F01%2F25%2Fa-few-interesting-links&amp;title=A%20few%20interesting%20links....&amp;notes=Here%27s%20a%20couple%20of%20interesting%20links%20I%20found%20today...%0D%0A%0D%0A%09Simple%20HA%2FHP%20clustering%20Using%20Only%20DNS%0D%0A%09Google%20Video%20Search%0D%0A%0D%0APlus%20Trent%20Reznor%20has%20finally%20announced%20in%20the%20nin.com%20Q%2FA%20section%20when%20the%20next%20Nine%20Inch%20Nails%20album%20is%20going%20to%20be%20released%21" title="del.icio.us"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.cardus.com%2F2005%2F01%2F25%2Fa-few-interesting-links" title="Technorati"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.cardus.com%2F2005%2F01%2F25%2Fa-few-interesting-links&amp;title=A%20few%20interesting%20links...." title="StumbleUpon"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=A%20few%20interesting%20links....%20-%20http%3A%2F%2Fwww.cardus.com%2F2005%2F01%2F25%2Fa-few-interesting-links" title="Twitter"><img src="http://www.cardus.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.cardus.com/2005/01/25/a-few-interesting-links/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
