<?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>Linux Neophyte &#187; Debian Volatile</title>
	<atom:link href="http://linuxneophyte.com/tag/debian-volatile/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxneophyte.com</link>
	<description>Trials of a Linux Newb.</description>
	<lastBuildDate>Mon, 20 Oct 2008 12:42:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Migration Project: Part II &#8211; Building the Physical Host</title>
		<link>http://linuxneophyte.com/migration-project-part-ii-building-the-physical-host/</link>
		<comments>http://linuxneophyte.com/migration-project-part-ii-building-the-physical-host/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 19:25:33 +0000</pubDate>
		<dc:creator>M@</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Apt]]></category>
		<category><![CDATA[ClamAV]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Debian Volatile]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Migration Project]]></category>
		<category><![CDATA[Samba]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Vnstat]]></category>

		<guid isPermaLink="false">http://linuxneophyte.com/migration-project-part-ii-building-the-physical-host/</guid>
		<description><![CDATA[Before getting into the virtual machines, I should probably address the physical machine that&#8217;s going to run them.  For hardware info, check out this page under the heading Nix/Cerberus.  I&#8217;m going to be installing Debian Etch (stable) as the OS, and I&#8217;ll be doing it in the most minimal way.  Read on&#8230;
During [...]]]></description>
			<content:encoded><![CDATA[<p>Before getting into the virtual machines, I should probably address the physical machine that&#8217;s going to run them.  For hardware info, check out <a href="http://linuxneophyte.com/migration-project-part-i-hardware-physical-and-virtual/" target="_blank">this page</a> under the heading <strong>Nix/Cerberus</strong>.  I&#8217;m going to be installing <a href="http://www.us.debian.org/" target="_blank">Debian</a> Etch (stable) as the OS, and I&#8217;ll be doing it in the most minimal way.  Read on&#8230;</p>
<p>During the installation of Debian, you&#8217;re asked several questions, for the most part you need to answer them for yourself.  The important question, the one that gets you a basic install, is package selection.  By default the installer wants to include &#8220;Desktop Environment&#8221; and &#8220;Standard System&#8221;, I chose to omit both.  This leaves you with just enough to get the machine running (which IMO is a very good thing).</p>
<p>After the installer does all it needs to do, it&#8217;ll reboot the machine and leave you at the login prompt.  If you&#8217;ve never sat in front of a GUI-less  machine, then you&#8217;re in for a treat.  Unplug your mouse, chuck it in the bin and get used to virtual terminals, screen sessions and tired fingers <img src='http://linuxneophyte.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>First things first, I need to get this machine going and I don&#8217;t have enough software to do all I need.  I log in as <em>root</em> and make a few changes.</p>
<p>Remove the Debian CDROM as a source from <code>/etc/apt/sources.list</code> and Add <code>contrib</code> and <code>non-free</code> to the same file; it should look like:<code><br />
</code></p>
<blockquote><p><code> deb http://ftp.us.debian.org/debian/ etch main contrib non-free</code><br />
<code> deb-src http://ftp.us.debian.org/debian/ etch main contrib non-free</code><br />
<code> deb http://security.debian.org/ etch/updates main contrib non-free</code><br />
<code> deb-src http://security.debian.org/ etch/updates main contrib non-free</code><br />
<code></code></p></blockquote>
<p><code> </code>Then update the Apt cache (<code>apt-get update</code>) and install my applications&#8230;</p>
<blockquote><p><code>apt-get install ssh vim build-essential linux-headers-2.6-686 bzip2 p7zip-full less lsof lshw psmisc w3m lynx nload telnet host dnsutils ntp ftp lftp vnstat file screen unrar cksfv rsync hellanzb samba smbfs wakeonlan </code><code>postfix mailx</code></p></blockquote>
<ul>
<li><em>Some of the applications (samba and postfix for example) will require that you provide some setup information.  You&#8217;ll want to configure them for yourself.</em></li>
<li><em>I actually installed hellanzb from Debian testing as it&#8217;s a more current version of the app.  </em></li>
<li><em>If you don&#8217;t know what these packages are, you can do an <code>apt-cache show &lt;package name&gt;</code> on Debian or Ubuntu.</em></li>
</ul>
<p>This machine is not only going to host some virtual machines, but it&#8217;s going to act as a samba server, a shell server and the machine I use for various Usenet tasks and some other goodies.  Given that, and the fact that I like to know what&#8217;s going on, I&#8217;ll be keeping an eye on my bandwidth usage.  To do that, I&#8217;ll be using <code>vnstat</code>.  Since it&#8217;s installed already, I need to create a database for my Ethernet adapter.</p>
<p><code>vnstat -u -i eth0<br />
</code></p>
<p>After that and some time, I can issue the <code>vnstat [-&lt;flag&gt;]<flag></flag></code> command to get some really handy network traffic statistics.</p>
<p>Because there are so many ways to configure a shell server and a samba server, I&#8217;m not going to get into the editing of the conf files.   Basically, authentication with the shell server will be done via public/private keys only and I&#8217;ll be running it on an alternate port.  Samba will be configured as a stand alone server and I will be required to enter a valid user/pass to view the shares.</p>
<p>Once all of those applications are installed and configured, one needs only to download the latest version of VMware Server and install that.   I responded with all of the default answers while installing VMWare and was up and running in almost no time.</p>
<p>After a few other tweaks, preventing users from entering <code>/root</code> and other user&#8217;s homes, adjusting umask for my account and installing ClamAV from the <a href="http://www.debian.org/volatile/" target="_blank">Debian Volatile repos</a> (to scan samba shares), I&#8217;m up and running.</p>
<p>There you have it, the quick setup for the physical server that&#8217;s taking over @ the flat.  Next I&#8217;ll start working up the VMs.</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxneophyte.com/migration-project-part-ii-building-the-physical-host/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Migration Project: Part I &#8211; Hardware (physical and virtual)</title>
		<link>http://linuxneophyte.com/migration-project-part-i-hardware-physical-and-virtual/</link>
		<comments>http://linuxneophyte.com/migration-project-part-i-hardware-physical-and-virtual/#comments</comments>
		<pubDate>Sun, 23 Sep 2007 11:43:06 +0000</pubDate>
		<dc:creator>M@</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Apt]]></category>
		<category><![CDATA[ClamAV]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Debian Volatile]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Migration Project]]></category>
		<category><![CDATA[Samba]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Vnstat]]></category>

		<guid isPermaLink="false">http://linuxneophyte.com/migration-project-part-i-hardware-physical-and-virtual/</guid>
		<description><![CDATA[Last time I wrote, I gave the overview of a project I&#8217;ve begun at the house.  Here&#8217;s the hardware I&#8217;m working with and the roles the machines will be performing (or not, as the case may be).
These first 2 guys are the older noisy machines that I need to replace.  They have loud [...]]]></description>
			<content:encoded><![CDATA[<p>Last time I wrote, I gave the <a href="http://linuxneophyte.com/migration-project/">overview</a> of a project I&#8217;ve begun at the house.  Here&#8217;s the hardware I&#8217;m working with and the roles the machines will be performing (or not, as the case may be).</p>
<p>These first 2 guys are the older noisy machines that I need to replace.  They have loud fans and louder hard disks.  I don&#8217;t notice the noise so much since I moved them to the basement, but I *know* they&#8217;re down there making noise&#8230;</p>
<p><strong>Voldemort:</strong></p>
<p>A Pentium III (Coppermine) 1GHz running on a SuperMicro P3TSSA motherboard.  This baby is maxed out with 512MB PC133 SDRAM.   This was a great machine 7+ years ago.  I had a lot of fun on it.  I built it to learn/play with Windows 2000, it had a whopping 256MB of RAM back then and was moderate to high tech when I built it.  This isn&#8217;t the original mobo, it had an Intel branded board that went kaput some time after I installed XP on it.  I&#8217;ve loved this machine for MANY years and while it won&#8217;t be running 24/7 anymore, it&#8217;ll still be there for me to play with.  It&#8217;s currently running Debian 4.0 and hasn&#8217;t had a real role other than for testing for a while.  Most recently, it&#8217;s been host to a VM or two that I&#8217;ve been playing with.</p>
<p><strong>  Albus:</strong></p>
<p>A Pentium III (Coppermine) 1GHz running on a Dell GX150 motherboard.  This one is maxed with 512 MB as well and used to be my work desktop many years ago.  We were able to pick up our machines before they were refreshed for a modest price so I opted to.  I don&#8217;t have any really fond memories with this machine.  It&#8217;s always been on and I&#8217;ve never once had a problem with it.  Not a bad little box.  Currently it&#8217;s running Debian 4.0 (<a href="http://linuxneophyte.com/upgrading-sarge-to-etch/" target="_blank">upgraded from Debian 3.1</a>) and its primary role is a backup server (I&#8217;m using an offsite backup server after this whole project is complete) and shell server.  it&#8217;s the single door into my home network.</p>
<p>This next machine is the physical box replacing both Albus and Voldemort.</p>
<p><strong>Nix/Cerberus:</strong></p>
<p><strong>Credit:</strong> Cerberus was given his name by none other than <em>Sarah Conti</em>.  Rock on with your mythology Miss Conti!</p>
<p>A Pentium 4, 3.00GHz (Hyperthreading) running on an Intel D945GTP motherboard.  It&#8217;s currently rocking 2GB of DDR2/667MHz memory.  This is a great machine for running a standard desktop.  I built it in March 2006 to be my Ubuntu desktop, and I&#8217;ve never had a problem with it.  Currently it&#8217;s name is <strong>Nix</strong> but will soon become <strong>Cerberus</strong>.  It will be running Debian 4.0, VMware server and will be providing shell access (replacing albus) and will act as a Samba server for my music and whatever else I need to share.</p>
<p>&#8230;and without further delay, the virtual machines!</p>
<p><strong>Ka:</strong></p>
<p>Ka is a Debian 4.0 Virtual Machine.  His role is to be an always on machine for my wiki, email, IRC &amp; IM clients.  He&#8217;s already alive and well and I&#8217;ve moved those services over to him.  For the moment he&#8217;s hosted on Voldemort and will be moved to Cerberus once he lives.</p>
<p><strong>Peeves:</strong></p>
<p>Peeves is Windows Server 2003 Enterprise.  Yep, I need to be able to virtualize Windows because I have a few apps that I need/want to have on at all times.  This includes my FTP server, Handy Address Book server and WhereIsIt which is a cataloging program that just rocks.  I decided to go with Windows 2k3 because I had a license for it and didn&#8217;t have one for another copy of XP.  It&#8217;s currently being hosted by Darktower (you&#8217;ll meet him below)</p>
<p>Finally, the desktop machine/VM to get me through this whole mess.</p>
<p><strong>Nix2/Darktower:</strong></p>
<p>Nix2 is just an Ubuntu VM so that I can continue to use my Linux apps while converting Nix to Cerberus.  Nix2 will be hosted on Darktower.  This is a physical machine similar in make-up to Nix (only diff is that it&#8217;s a full ATX board, not a Micro and it&#8217;s in a taller case).  Darktower runs XP at the moment but will eventually be a dual boot with Ubuntu and XP or Vista.  I plan on keeping all data off of this machine, it will be nothing but a client as all of my data will be accessible via the servers.  It&#8217;s final name will remain Darktower.  Once I&#8217;ve got my data off of Nix2 and onto the new Darktower, Nix2 will get the boot and all will be good in the world.</p>
<p>So to summarize, both Albus and Voldemort die (seems fitting), Cerberus, Ka and Peeves rule the roost and Darktower just hangs out getting poked and prodded when needed.  Since I won&#8217;t need it to be on at all times anymore (for IRC and what not) it&#8217;ll be spending the majority of it&#8217;s time in sleep mode.It&#8217;ll be nice to eliminate the 2 older machines and keep a third sleeping most of the time.  That will leave only 2 always on machines in the house, that&#8217;s Cerberus and HTPC (which is a Windows machine running some home theater software).</p>
<p>Once complete, I&#8217;ll not only have infrastructure that&#8217;s really easy to backup/re-create but I&#8217;ll have stopped wasting so much energy.</p>
<p>Next, I&#8217;ll start going over what&#8217;s involved in setting up the VMs, things from Debian installation options to installed applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxneophyte.com/migration-project-part-i-hardware-physical-and-virtual/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
