<?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>Make Tech Easier &#187; update manager</title>
	<atom:link href="http://maketecheasier.com/tag/update-manager/feed" rel="self" type="application/rss+xml" />
	<link>http://maketecheasier.com</link>
	<description>Uncomplicating the complicated, making life easier</description>
	<lastBuildDate>Fri, 20 Nov 2009 13:39:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Remove The Annoying Update manager Pop-up in Ubuntu Jaunty</title>
		<link>http://maketecheasier.com/remove-the-annoying-update-manager-pop-up-in-ubuntu-jaunty/2009/06/18</link>
		<comments>http://maketecheasier.com/remove-the-annoying-update-manager-pop-up-in-ubuntu-jaunty/2009/06/18#comments</comments>
		<pubDate>Thu, 18 Jun 2009 12:33:59 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[jaunty jackalope]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[update manager]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=5381</guid>
		<description><![CDATA[For those who are using Ubuntu Jaunty, you will notice that there is a change in the way the system notifies you to upgrade software. In the past, an icon will appear on the system tray whenever there is new update available. In Ubuntu Jaunty, instead of showing the icon, the update manager will now [...]<p><strong><a href="http://maketecheasier.com/remove-the-annoying-update-manager-pop-up-in-ubuntu-jaunty/2009/06/18">How to Remove The Annoying Update manager Pop-up in Ubuntu Jaunty</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>



Related posts:<ol><li><a href='http://maketecheasier.com/whats-new-in-ubuntu-904-jaunty-jackalope/2009/04/20' rel='bookmark' title='Permanent Link: What&#8217;s New In Ubuntu 9.04 Jaunty Jackalope'>What&#8217;s New In Ubuntu 9.04 Jaunty Jackalope</a></li><li><a href='http://maketecheasier.com/restore-ctrl-alt-backspace-in-ubuntu-jaunty/2009/05/17' rel='bookmark' title='Permanent Link: How to Restore Ctrl + Alt + BackSpace In Ubuntu Jaunty'>How to Restore Ctrl + Alt + BackSpace In Ubuntu Jaunty</a></li><li><a href='http://maketecheasier.com/fancy-a-slick-screensaver-as-your-wallpaper/2007/12/31' rel='bookmark' title='Permanent Link: Fancy A Slick Screensaver As Your Wallpaper?'>Fancy A Slick Screensaver As Your Wallpaper?</a></li><li><a href='http://maketecheasier.com/turn-your-ubuntu-hardy-to-mac-osx-leopard/2008/07/23' rel='bookmark' title='Permanent Link: Turn Your Ubuntu Hardy to Mac OSX Leopard'>Turn Your Ubuntu Hardy to Mac OSX Leopard</a></li><li><a href='http://maketecheasier.com/how-to-upgrade-from-ext3-to-ext4-without-formatting-the-hard-disk/2009/04/21' rel='bookmark' title='Permanent Link: How To Upgrade From Ext3 To Ext4 Without Formatting The Hard Disk'>How To Upgrade From Ext3 To Ext4 Without Formatting The Hard Disk</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-5386" title="update-manager" src="http://images.maketecheasier.com/2009/06/update-manager.jpg" alt="update-manager" width="300" height="145" />For those who are using Ubuntu Jaunty, you will notice that there is a change in the way the system notifies you to upgrade software. In the past, an icon will appear on the system tray whenever there is new update available. In Ubuntu Jaunty, instead of showing the icon, the update manager will now pop up the window as and when it detects new update. While this is a good way to grab the user attention and get them to upgrade to the latest software version promptly, it can be pretty annoying for many, especially when you are in the midst of your work. To make it worst, if you close it without updating, it will keep on popping up in regular interval until you have upgraded your system.</p>
<p>Luckily, you can turn off this pop up feature easily and switch back to the old icon-appear-at-system-tray mode.</p>
<p>Open up a terminal, type</p>
<p class="codeblock">gconf-editor</p>
<p>This will load up the gconf editor window</p>
<p>Navigate to <em>Apps-&gt;Update Notifier</em>. On the right, unchecked the <em>auto_launch</em> box. Close the window.</p>
<p><img class="alignnone size-full wp-image-5383" title="gconf-autolaunch" src="http://images.maketecheasier.com/2009/06/gconf-autolaunch.jpg" alt="gconf-autolaunch" width="577" height="366" /></p>
<p>That&#8217;s it.</p>
<p>To recover the auto launch pop up function, simply repeat the above step, but place a check in the auto_launch box.</p>
<h3>Alternative method (via the terminal)</h3>
<p>If you are just plain lazy, here&#8217;s a much easier step.</p>
<p>In your terminal, type the following command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gconftool <span style="color: #660033;">-s</span> <span style="color: #660033;">--type</span> bool <span style="color: #000000; font-weight: bold;">/</span>apps<span style="color: #000000; font-weight: bold;">/</span>update-notifier<span style="color: #000000; font-weight: bold;">/</span>auto_launch <span style="color: #c20cb9; font-weight: bold;">false</span></pre></div></div>

<p>To recover:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gconftool <span style="color: #660033;">-s</span> <span style="color: #660033;">--type</span> bool <span style="color: #000000; font-weight: bold;">/</span>apps<span style="color: #000000; font-weight: bold;">/</span>update-notifier<span style="color: #000000; font-weight: bold;">/</span>auto_launch <span style="color: #c20cb9; font-weight: bold;">true</span></pre></div></div>

<p><p><script type="text/javascript"><!--
google_ad_client = "pub-8765285789552883";
/* MTE body ad300x250, created 5/17/09 */
google_ad_slot = "3980792036";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p></p>
<p><strong><a href="http://maketecheasier.com/remove-the-annoying-update-manager-pop-up-in-ubuntu-jaunty/2009/06/18">How to Remove The Annoying Update manager Pop-up in Ubuntu Jaunty</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>


<p>Related posts:<ol><li><a href='http://maketecheasier.com/whats-new-in-ubuntu-904-jaunty-jackalope/2009/04/20' rel='bookmark' title='Permanent Link: What&#8217;s New In Ubuntu 9.04 Jaunty Jackalope'>What&#8217;s New In Ubuntu 9.04 Jaunty Jackalope</a></li><li><a href='http://maketecheasier.com/restore-ctrl-alt-backspace-in-ubuntu-jaunty/2009/05/17' rel='bookmark' title='Permanent Link: How to Restore Ctrl + Alt + BackSpace In Ubuntu Jaunty'>How to Restore Ctrl + Alt + BackSpace In Ubuntu Jaunty</a></li><li><a href='http://maketecheasier.com/fancy-a-slick-screensaver-as-your-wallpaper/2007/12/31' rel='bookmark' title='Permanent Link: Fancy A Slick Screensaver As Your Wallpaper?'>Fancy A Slick Screensaver As Your Wallpaper?</a></li><li><a href='http://maketecheasier.com/turn-your-ubuntu-hardy-to-mac-osx-leopard/2008/07/23' rel='bookmark' title='Permanent Link: Turn Your Ubuntu Hardy to Mac OSX Leopard'>Turn Your Ubuntu Hardy to Mac OSX Leopard</a></li><li><a href='http://maketecheasier.com/how-to-upgrade-from-ext3-to-ext4-without-formatting-the-hard-disk/2009/04/21' rel='bookmark' title='Permanent Link: How To Upgrade From Ext3 To Ext4 Without Formatting The Hard Disk'>How To Upgrade From Ext3 To Ext4 Without Formatting The Hard Disk</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/remove-the-annoying-update-manager-pop-up-in-ubuntu-jaunty/2009/06/18/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>
