<?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>osscc &#187; Diskless Gaming Server</title>
	<atom:link href="http://www.osscc.org/category/documentation/diskless-technology/diskless-gaming-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.osscc.org</link>
	<description>free open source software for cyber cafe</description>
	<lastBuildDate>Wed, 03 Aug 2011 18:06:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Clonezilla HOWTO: Quick and Dirty Setup</title>
		<link>http://www.osscc.org/2010/01/clonezilla-howto-quick-and-dirty-setup/</link>
		<comments>http://www.osscc.org/2010/01/clonezilla-howto-quick-and-dirty-setup/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 22:07:00 +0000</pubDate>
		<dc:creator>osscc</dc:creator>
				<category><![CDATA[Cyber Cafe]]></category>
		<category><![CDATA[Diskless Gaming Client]]></category>
		<category><![CDATA[Diskless Gaming Server]]></category>
		<category><![CDATA[Diskless Technology]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[DRBL]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Recovery System]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.osscc.org/2010/01/clonezilla-howto-quick-and-dirty-setup/</guid>
		<description><![CDATA[Although I am quite familiar with DRBL, since I was running an experiment about Linux Diskess Gaming Server and Client last year at local exhibition (you can read about it here : Diskless Linux Gaming Client ), but this tutorial down here is quite easy and simple to follow it. So enjoy your reading]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.osscc.org/wp-content/uploads/2010/01/400px-DRBL_33.png"><img class="alignleft size-medium wp-image-177" title="400px-DRBL_33" src="http://www.osscc.org/wp-content/uploads/2010/01/400px-DRBL_33-300x224.png" alt="" width="300" height="224" /></a>Although I am quite familiar with DRBL, since I was running an experiment about Linux Diskess Gaming Server and Client last year at local exhibition (you can read about it here : <a href="http://www.osscc.org/2009/12/diskless-linux-gaming-terminal-using-drbl/">Diskless Linux Gaming Client</a> ), but this tutorial down here is quite easy and simple to follow it. So enjoy your reading.</p>
<p>If you have any question, do not hasitate to post it on our comment form.</p>
<hr />Since I wrote the post ‘<a href="http://lightcubesolutions.com/blog/?p=6">Clonezilla</a>‘ in January, our blog has been getting a lot of hits, apparently from people looking for advice on how to set up Clonezilla. This is understandable, since DRBL (of which Clonezilla is just a piece) is a complex piece of work, with loads of possibilities. So I decided to write up a small HOWTO, a quick and dirty method of getting Clonezilla up and running.</p>
<p>Before I go on, a bit of a disclaimer: Following the instructions below may not provide you with results that fit your particular needs. If you have specific and detailed requirements, see the <a href="http://drbl.sourceforge.net/">DRBL documentation</a>. If you would like to hire LightCube Solutions to provide assistance in setting up a Clonezilla solution for your organization, send an email to <a href="mailto:info@lightcubesolutions.com">info@lightcubesolutions.com</a>.</p>
<h2>The Steps</h2>
<h4>1. Install Linux</h4>
<p>You’ll need a Linux machine to run your Clonezilla services. These instructions were successfully tested on Ubuntu 9.04 and 9.10 and Debian 5. DRBL will also run on Fedora.</p>
<h4>2. Install DRBL</h4>
<p>First off, open up a Terminal. In Ubuntu and Debian, this is located in ‘Applications -&gt; Accessories -&gt; Terminal’. If you have sudo configured, you can change to super-user access by typing:<span style="font-family: monospace; line-height: 18px; font-size: 12px; white-space: pre;"> </span></p>
<blockquote>
<pre><code><strong>sudo -i</strong></code></pre>
</blockquote>
<p>Otherwise, use the root password with the following:</p>
<blockquote>
<pre><code><strong>su -</strong></code></pre>
</blockquote>
<p>Next, add DRBL’s GPG key to your system:</p>
<blockquote>
<pre><code><strong>wget http://drbl.sourceforge.net/GPG-KEY-DRBL </strong></code></pre>
<pre><code><strong>apt-key add GPG-KEY-DRBL</strong></code></pre>
</blockquote>
<p>Update your apt configuration so that you can install software from the DRBL guys:</p>
<blockquote>
<pre><code><strong>cp /etc/apt/sources.list{,.bak}echo "deb http://drbl.sourceforge.net/drbl-core drbl stable" \  &gt;&gt; /etc/apt/sources.list</strong></code></pre>
</blockquote>
<p>Finally, install DRBL:</p>
<blockquote>
<pre><code><strong>apt-get update </strong></code></pre>
<pre><code><strong>apt-get install drbl</strong></code></pre>
</blockquote>
<h4>3. Configure a Network Alias</h4>
<p>DRBL requires that you have two network interfaces. We can get around this by adding a virtual interface:</p>
<blockquote>
<pre><code><strong>cat &gt;&gt; /etc/network/interfaces &lt;&lt; "EOF"auto eth0:1iface eth0:1 inet static   address 192.168.222.1   netmask 255.255.255.0EOFifup eth0:1</strong></code></pre>
</blockquote>
<p>To verify that you have set up the alias properly, type:</p>
<blockquote>
<pre><code><strong>ip addr show eth0 | grep eth0:1</strong></code></pre>
</blockquote>
<p>You should see something like this:</p>
<blockquote><p><code class="stdout"><strong>inet 192.168.222.1/24 brd 192.168.222.255 scope global eth0:1</strong></code></p></blockquote>
<h4>4. Configure Your New DRBL Server</h4>
<p>Run the following two interactive commands (note that this will require an internet connection and may take some time):</p>
<blockquote>
<pre><code><strong>/opt/drbl/sbin/drblsrv -i/opt/drbl/sbin/drblpush -i</strong></code></pre>
</blockquote>
<p>Congratulations! That’s it, you have a DRBL/Clonezilla server ready to create and deploy custom images. All you need to do to start cloning is run:</p>
<blockquote>
<pre><code><strong>/opt/drbl/sbin/dcs</strong></code></pre>
</blockquote>
<p>Then, boot up your client machines using PXE. See, that wasn’t too painful…</p>
<hr />Source : <a href="http://www.lightcubesolutions.com/blog/?p=33">http://www.lightcubesolutions.com/blog/?p=33</a></p>
<p><map name='google_ad_map_170_3db9945d9ae1c815'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/170?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_170_3db9945d9ae1c815' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=170&amp;url= http%3A%2F%2Fwww.osscc.org%2F2010%2F01%2Fclonezilla-howto-quick-and-dirty-setup%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.osscc.org/2010/01/clonezilla-howto-quick-and-dirty-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

