<?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>Craig Mayhew's Blog &#187; nm-applet</title>
	<atom:link href="http://www.craigmayhew.com/blog/tag/nm-applet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.craigmayhew.com/blog</link>
	<description></description>
	<lastBuildDate>Sun, 29 Jan 2012 21:51:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ubuntu 9.04 &#8220;Wired Network &#8211; device not managed&#8221;</title>
		<link>http://www.craigmayhew.com/blog/2009/06/ubuntu-904-wired-network-device-not-managed/</link>
		<comments>http://www.craigmayhew.com/blog/2009/06/ubuntu-904-wired-network-device-not-managed/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 17:51:20 +0000</pubDate>
		<dc:creator>Craig Mayhew</dc:creator>
				<category><![CDATA[Guides/Fixes]]></category>
		<category><![CDATA[Linux/Ubuntu]]></category>
		<category><![CDATA[nm-applet]]></category>
		<category><![CDATA[Ubuntu 9.04]]></category>

		<guid isPermaLink="false">http://www.craigmayhew.com/blog/?p=114</guid>
		<description><![CDATA[After upgrading to Ubuntu 9.04 I&#8217;ve found the network manager GUI to be far superior to the previous version I was using in Ubuntu 8.04 LTS. Unfortunately when I was using Ubuntu 8.04 I made some custom alterations to my network setup in the &#8220;/etc/network/interfaces&#8221; file. The Network Manager in 9.04 wasn&#8217;t keen on this [...]]]></description>
			<content:encoded><![CDATA[<p>After upgrading to Ubuntu 9.04 I&#8217;ve found the network manager GUI to be far superior to the previous version I was using in Ubuntu 8.04 LTS. Unfortunately when I was using Ubuntu 8.04 I made some custom alterations to my network setup in the &#8220;/etc/network/interfaces&#8221; file. The Network Manager in 9.04 wasn&#8217;t keen on this and so refused to manage it, instead it displayed the message &#8220;Wired Network &#8211; device not managed&#8221;.</p>
<p>As a work around I commented out all of my changes by placing a # at the beginning of each line in my interfaces file:</p>
<p>Open the interfaces file in an editor:</p>
<pre style="border: 1px solid #FFFFFF; padding: 5px; overflow:auto;">
sudo vim /etc/network/interfaces
</pre>
<p>This is an example of how my file looked before I modified it. Yours will be different:</p>
<pre style="border: 1px solid #FFFFFF; padding: 5px; overflow:auto;">
auto lo
iface lo inet loopback
iface eth2 inet static
address 192.168.0.44
netmask 255.255.255.0
gateway 192.168.0.1
auto eth2
</pre>
<p>And here&#8217;s the same file again, but I&#8217;ve added #&#8217;s at the beginning of each line so that they are ignored:</p>
<pre style="border: 1px solid #FFFFFF; padding: 5px; overflow:auto;">
#auto lo
#iface lo inet loopback
#iface eth2 inet static
#address 192.168.0.44
#netmask 255.255.255.0
#gateway 192.168.0.1
#auto eth2
</pre>
<p>In order for the changes to take effect, we need to restart the network manager and the applet by running each of these in the command line:</p>
<pre style="border: 1px solid #FFFFFF; padding: 5px; overflow:auto;">
sudo /etc/init.d/networking restart
</pre>
<p>And now restart the network manager applet:</p>
<pre style="border: 1px solid #FFFFFF; padding: 5px; overflow:auto;">
pkill nm-applet
nm-applet
</pre>
<p>You should now be able to manage the network connection from within the network manager applet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigmayhew.com/blog/2009/06/ubuntu-904-wired-network-device-not-managed/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
	</channel>
</rss>

