<?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>PHP Architect blog &#187; eth0</title>
	<atom:link href="http://www.php-architect.com/blog/tag/eth0/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.php-architect.com/blog</link>
	<description>me, myself, and my code</description>
	<lastBuildDate>Wed, 14 Sep 2011 12:50:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Ubuntu 8.10 Intrepid &#8211; Fix Static IP &amp; Network Manager Problem</title>
		<link>http://www.php-architect.com/blog/2008/11/04/ubuntu-810-interpid-fix-static-ip-network-manager-problem/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ubuntu-810-interpid-fix-static-ip-network-manager-problem</link>
		<comments>http://www.php-architect.com/blog/2008/11/04/ubuntu-810-interpid-fix-static-ip-network-manager-problem/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 19:18:41 +0000</pubDate>
		<dc:creator>aibrahim</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[eth0]]></category>
		<category><![CDATA[interfaces]]></category>
		<category><![CDATA[interpid]]></category>
		<category><![CDATA[network manager]]></category>
		<category><![CDATA[networkmanager]]></category>
		<category><![CDATA[ubuntu 8.10]]></category>
		<guid isPermaLink="false">http://www.php-architect.com/blog/?p=121</guid>
		<description><![CDATA[<a href="http://www.php-architect.com/blog/2008/11/04/ubuntu-810-interpid-fix-static-ip-network-manager-problem/" title="Ubuntu 8.10 Intrepid - Fix Static IP &amp; Network Manager Problem"></a>Hey all, today i have installed the new release of Ubuntu, 8.10 Intrepid but i had a problem setting my IP to a static one, when i do this through the network manager, and when i edited the network files &#8230;<p class="read-more"><a href="http://www.php-architect.com/blog/2008/11/04/ubuntu-810-interpid-fix-static-ip-network-manager-problem/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://www.php-architect.com/blog/2008/11/04/ubuntu-810-interpid-fix-static-ip-network-manager-problem/" title="Ubuntu 8.10 Intrepid - Fix Static IP &amp; Network Manager Problem"></a><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.php-architect.com/blog/2008/11/04/ubuntu-810-interpid-fix-static-ip-network-manager-problem/&amp;layout=standard&amp;show_faces=1&amp;width=450&amp;action=like&amp;colorscheme=light&amp;font=" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:25px"></iframe><p>Hey all,</p>
<p>today i have installed the new release of Ubuntu, 8.10 Intrepid</p>
<p>but i had a problem setting my IP to a static one, when i do this through the network manager, and when i edited the network files manually nothing worked, so here is the steps i followed to solve the problem :</p>
<p>first i removed the network manager</p>
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> update-rc.d <span style="color: #660033;">-f</span> NetworkManager remove</pre></div></div>
<p>then i added my network configuration by editing the file /etc/network/interfaces</p>
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> gedit <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>network<span style="color: #000000; font-weight: bold;">/</span>interfaces</pre></div></div>
<p>so it looks like</p>
<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.xxx
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.xxx</pre></div></div>
<p>then i edited the file /etc/resolv.conf to add my DNS</p>
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">nano</span> <span style="color: #660033;">-w</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>resolv.conf</pre></div></div>
<p>to look like</p>
<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;"># Generated by NetworkManager
nameserver 192.168.1.xxx</pre></div></div>
<p>then i restart the networking by :</p>
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>networking restart</pre></div></div>
<p>if u still have problems, i suggest you restart the machine and check, the above steps is how i got my network up .</p>
<p>enjoy the new Ubuntu <img src='http://www.php-architect.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.php-architect.com/blog/2008/11/04/ubuntu-810-interpid-fix-static-ip-network-manager-problem/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

