<?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>Tequila Fish &#187; inspiron</title>
	<atom:link href="http://www.tequilafish.com/tag/inspiron/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tequilafish.com</link>
	<description>Ran-dumb ramblings of me...</description>
	<lastBuildDate>Thu, 26 Jan 2012 23:30:47 +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>Installing Ubuntu Server on a Dell Inspiron 530</title>
		<link>http://www.tequilafish.com/2007/08/02/installing-ubuntu-server-on-a-dell-inspiron-530/</link>
		<comments>http://www.tequilafish.com/2007/08/02/installing-ubuntu-server-on-a-dell-inspiron-530/#comments</comments>
		<pubDate>Thu, 02 Aug 2007 21:53:03 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[530]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[inspiron]]></category>

		<guid isPermaLink="false">http://www.tequilafish.com/2007/08/02/installing-ubuntu-server-on-a-dell-inspiron-530/</guid>
		<description><![CDATA[I recently purchased a cheapie Dell Inspiron 530 to use as a new local devbox with the intent of installing Fedora 7 on it (the machine came with Ubuntu Desktop pre-installed). Foolish me, I just assumed that if Ubuntu was compatible with the hardware, then Fedora surely would be as well. WRONG. Fedora was unable [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.tequilafish.com%2F2007%2F08%2F02%2Finstalling-ubuntu-server-on-a-dell-inspiron-530%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.tequilafish.com%2F2007%2F08%2F02%2Finstalling-ubuntu-server-on-a-dell-inspiron-530%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I recently purchased a cheapie Dell Inspiron 530 to use as a new local devbox with the intent of installing Fedora 7 on it (the machine came with Ubuntu Desktop pre-installed).  Foolish me, I just assumed that if Ubuntu was compatible with the hardware, then Fedora surely would be as well.  WRONG.  Fedora was unable to detect/install both the SATA controller and the integrated ethernet port.  After a few hours trying to get Fedora to install, I decided to give up and give <a href="http://www.ubuntu.com/products/WhatIsUbuntu/serveredition">Ubuntu Server</a> a try.  Of course it wasn't easy, so here are some of my notes in getting Ubuntu Server installed onto the Dell Inspiron 530.</p>
<p>I wanted to keep it simple so I just installed all of the defaults presented by the installer, including the LAMP package.  Everything installed fine, however, the Integrated Network card was not detected/installed, so here's how to get it up and running by compiling and installing the driver.</p>
<ol>
<li>First we need to install some prerequisites that are required in order to compile the driver.  Make sure your Ubuntu Server CD is in the CD drive and run the following:<br />
<code>sudo apt-get install linux-headers-2.6.20-15-server<br />
sudo apt-get install gcc</code>
        </li>
<li>Download the ethernet driver from <a href="http://downloadcenter.intel.com/File_Filter.aspx?FileName=e1000-">Intel</a>.  The one I used is <strong><tt>e1000-7.6.5.tar.gz</tt></strong>.  If you can't find it at Intel, just Google the filename and I'm sure you'll be able to find it somewhere.</li>
<li>Burn the driver to a CD, mount it on your Ubuntu machine, and copy it to a local dir:<br />
<code>sudo mkdir /mnt/cdrom<br />
sudo mount /dev/cdrom /mnt/cdrom<br />
sudo cp /mnt/cdrom/e1000-7.6.5.tar.gz /usr/src</code></li>
<li>Compile and install the driver:<br />
<code>cd /usr/src<br />
tar xfvz e1000-7.6.5.tar.gz<br />
cd e1000-7.6.5/src<br />
sudo make install<br />
sudo modprobe e1000</code></li>
<li>Now configure your network card:<br />
<strong><tt>sudo vim /etc/network/interfaces</tt></strong> and your file should look like this (substitute your IP of choice):<br />
<code># This file describes the network interfaces available on your system<br />
# and how to activate them. For more information, see interfaces(5).<br />
&nbsp;<br />
# The loopback network interface<br />
auto lo<br />
iface lo inet loopback<br />
&nbsp;<br />
# This is a list of hotpluggable network interfaces.<br />
# They will be activated automatically by the hotplug subsystem.<br />
mapping hotplug<br />
        script grep<br />
        map eth0<br />
&nbsp;<br />
# The primary network interface<br />
auto eth0<br />
iface eth0 inet static<br />
        address 192.168.1.66<br />
        netmask 255.255.255.0<br />
        network 192.168.1.0<br />
        broadcast 192.168.1.255<br />
        gateway 192.168.1.1</code></li>
<li>Setup your DNS servers:<br />
<strong><tt>sudo vim /etc/resolv.conf</tt></strong> and it should look like this (I am using <a href="http://www.opendns.org/">OpenDNS</a> here but you can substitute your own):<br />
<code>nameserver 208.67.222.222<br />
nameserver 208.67.220.220</code></li>
<li>Restart the network:<br />
<code>sudo /etc/init.d/networking restart</code></li>
<li>Upgrade your system for good measure:<br />
<code>sudo apt-get upgrade</code></li>
</ol>
<p>That should be enough to get your Ubuntu Server up and running on the Dell Inspiron 530 with full network connectivity.  Once you're up and running, here are some other tweaks I did, although some of these may be personal preference.</p>
<ol>
<li>I don't like Ubuntu's sudo setup (I prefer log in in as root when needed).  Out of the box the root account is disabled and your default account is given admin rights to run commands via sudo.  To get around this, simply reset root's password:<br />
<code>sudo passwd root</code><br />
Now you will be able to <strong><tt>su -</tt></strong> and log in as root directly.
</li>
<li>Install SSH<br />
<code>sudo apt-get install ssh</code></li>
<li>Disable root login to SSH:<br />
<strong><tt>sudo vim /etc/ssh/sshd_config</tt></strong> and set the following:<br />
<code>PermitRootLogin no</code></li>
<li>Change the MySQL root password:<br />
<code>mysqladmin -u root password "newpassword"</code></li>
<li>Enable Apache's mod_rewrite:<br />
<code>sudo a2enmod rewrite<br />
sudo /etc/init.d/apache2 force-reload</code></li>
<li>Install some other useful goodies:<br />
<code>sudo apt-get install vim<br />
sudo apt-get install php5-mcrypt<br />
sudo apt-get install php5-curl<br />
sudo apt-get install php5-gd<br />
sudo apt-get install php-pear<br />
sudo pear upgrade-all<br />
sudo pear install mdb2<br />
sudo pear install pear/MDB2#mysqli</code>
</li>
</ol>
<p>----------------<br />
Now playing: <a href="http://www.foxytunes.com/artist/apparat/track/steinholz+(monolake+remix)">Apparat - Steinholz (Monolake Remix)</a><br />
via <a href="http://www.foxytunes.com/signatunes/">FoxyTunes</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tequilafish.com/2007/08/02/installing-ubuntu-server-on-a-dell-inspiron-530/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

