<?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>Ubuntu Sharing &#187; Security</title>
	<atom:link href="http://ubuntuguide.net/category/security/feed" rel="self" type="application/rss+xml" />
	<link>http://ubuntuguide.net</link>
	<description>Ubuntu Tips &#124; Ubuntu Howtos &#124; Ubuntu Tutorials</description>
	<lastBuildDate>Mon, 06 Feb 2012 12:23:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Remove Workspace Switcher from Unity Launcher(via ppa) in Ubuntu 11.10</title>
		<link>http://ubuntuguide.net/remove-workspace-switcher-from-unity-launchervia-ppa-in-ubuntu-11-10</link>
		<comments>http://ubuntuguide.net/remove-workspace-switcher-from-unity-launchervia-ppa-in-ubuntu-11-10#comments</comments>
		<pubDate>Tue, 20 Dec 2011 07:17:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=5814</guid>
		<description><![CDATA[The Workspace Switcher icon on Ubuntu Unity&#8217;s Launcher is a waste of space if you&#8217;re used to using keyboard shortcuts. Workspace Switcher is un-customizable, it&#8217;s hard coded to unity and cannot be removed without hacking source code. Option 1: via imtx.me Thanks to TualatriX, the developer of ubuntu-tweak who modified the code and added it [...]
Related posts:<ol>
<li><a href='http://ubuntuguide.net/manage-ubuntu-11-04-unity-launcher-quicklist-using-unity-launcher-editor' rel='bookmark' title='Manage Ubuntu 11.04 Unity Launcher Quicklist using unity-launcher-editor'>Manage Ubuntu 11.04 Unity Launcher Quicklist using unity-launcher-editor</a></li>
<li><a href='http://ubuntuguide.net/how-to-install-unity-2d-qt-in-ubuntu-10-10-and-11-04' rel='bookmark' title='How to Install Unity 2D (Qt) in Ubuntu 10.10 and 11.04'>How to Install Unity 2D (Qt) in Ubuntu 10.10 and 11.04</a></li>
<li><a href='http://ubuntuguide.net/change-unity-2d-launcher-auto-hide-behavior-in-ubuntu-11-10-oneiric' rel='bookmark' title='Change Unity-2D Launcher auto-hide behavior in Ubuntu 11.10 Oneiric'>Change Unity-2D Launcher auto-hide behavior in Ubuntu 11.10 Oneiric</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://ubuntuguide.net/wp-content/uploads/2011/12/unity-launcher-with-workspace.png"><img src="http://ubuntuguide.net/wp-content/uploads/2011/12/unity-launcher-with-workspace.png"></a></p>
<p>The Workspace Switcher icon on Ubuntu Unity&#8217;s Launcher is a waste of space if you&#8217;re used to using keyboard shortcuts.<br />
Workspace Switcher is un-customizable, it&#8217;s hard coded to <code>unity</code> and cannot be removed without hacking source code.</p>
<h4>Option 1:</h4>
<p> via <a href="http://imtx.me/archives/1675.html" target="_blank">imtx.me</a><br />
Thanks to <em><a href="http://imtx.me/" target="_blank">TualatriX</a></em>, the developer of <a href="http://ubuntu-tweak.com" target="_blank">ubuntu-tweak</a> who modified the code and added it into his personal PPA: <a href="https://launchpad.net/~tualatrix/+archive/personal" target="_blank">https://launchpad.net/~tualatrix/+archive/personal</a></p>
<p>I&#8217;m not good at compiling codes and even not willing to spend time on it. So I tried this in Ubuntu 12.04 daily build. Installed (packages <a href="https://launchpad.net/~tualatrix/+archive/personal/+packages" target="_blank">here</a>):</p>
<p><code>libunity-core-4.0-4_4.24.0-0ubuntu2.1.1_amd64.deb<br />
libunity-core-4.0-dev_4.24.0-0ubuntu2.1.1_amd64.deb<br />
netbook-launcher_4.24.0-0ubuntu2.1.1_all.deb<br />
unity-common_4.24.0-0ubuntu2.1.1_all.deb<br />
unity-services_4.24.0-0ubuntu2.1.1_amd64.deb<br />
unity_4.24.0-0ubuntu2.1.1_amd64.deb</code></p>
<p>Missing dependencies can be fixed by Synaptic.</p>
<h4>Option 2:</h4>
<p>If you&#8217;d like modifying the code and rebuild unity by yourself, follow the steps from <a href="http://askubuntu.com/questions/38789/remove-the-workspace-switcher-launcher-from-unity-launcher" target="_blank">askubuntu</a>:</p>
<blockquote><p>Make sure you have the package dpkg-dev installed</p>
<p><code>sudo apt-get install dpkg-dev</code></p>
<p>To modify the code and compile it your self you need to do the following</p>
<p><code>mkdir ~/code<br />
cd ~/code<br />
mkdir build<br />
cd build<br />
sudo apt-get source unity<br />
cd unity*</code></p>
<p>Open plugins/unityshell/src/LauncherController.cpp with your favorite text editor, ie:</p>
<p><code>gksudo nano plugins/unityshell/src/LauncherController.cpp</code></p>
<p>Locate the lines</p>
<p><code>_num_workspaces = WindowManager::Default()->WorkspaceCount();<br />
if (_num_workspaces > 1)<br />
{<br />
  InsertExpoAction();<br />
}</code></p>
<p>Change them to</p>
<p><code>/*_num_workspaces = WindowManager::Default()->WorkspaceCount();<br />
if (_num_workspaces > 1)<br />
{<br />
  InsertExpoAction();<br />
}*/</code></p>
<p>Build the package</p>
<p><code>sudo apt-get build-dep unity<br />
sudo debuild -us -uc</code></p>
<p>Wait for it to finish and install when done</p>
<p><code>cd ..<br />
sudo dpkg -i unity*.deb libunity*.deb netbook*.deb</code></p></blockquote>
<p>Related posts:<ol>
<li><a href='http://ubuntuguide.net/manage-ubuntu-11-04-unity-launcher-quicklist-using-unity-launcher-editor' rel='bookmark' title='Manage Ubuntu 11.04 Unity Launcher Quicklist using unity-launcher-editor'>Manage Ubuntu 11.04 Unity Launcher Quicklist using unity-launcher-editor</a></li>
<li><a href='http://ubuntuguide.net/how-to-install-unity-2d-qt-in-ubuntu-10-10-and-11-04' rel='bookmark' title='How to Install Unity 2D (Qt) in Ubuntu 10.10 and 11.04'>How to Install Unity 2D (Qt) in Ubuntu 10.10 and 11.04</a></li>
<li><a href='http://ubuntuguide.net/change-unity-2d-launcher-auto-hide-behavior-in-ubuntu-11-10-oneiric' rel='bookmark' title='Change Unity-2D Launcher auto-hide behavior in Ubuntu 11.10 Oneiric'>Change Unity-2D Launcher auto-hide behavior in Ubuntu 11.10 Oneiric</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/remove-workspace-switcher-from-unity-launchervia-ppa-in-ubuntu-11-10/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Guake &#8211; Another Drop-down Quake-style Terminal Emulator</title>
		<link>http://ubuntuguide.net/guake-another-drop-down-quake-style-terminal-emulator</link>
		<comments>http://ubuntuguide.net/guake-another-drop-down-quake-style-terminal-emulator#comments</comments>
		<pubDate>Mon, 19 Dec 2011 05:14:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=5803</guid>
		<description><![CDATA[Guake is a top-down terminal for Gnome, in the style of Yakuake for KDE, Tilda or the terminal used in Quake. Guake&#8217;s properties window supports configuring keyboard shortcuts, appearences, main window height, etc. Unfortunately, the width is fixed and maximal. Guake is available in Ubuntu universe repository. Install it via Ubuntu Software Center, or: sudo [...]
Related posts:<ol>
<li><a href='http://ubuntuguide.net/install-yakuake-terminal-in-a-quake-style' rel='bookmark' title='Install Yakuake -terminal in a Quake-style'>Install Yakuake -terminal in a Quake-style</a></li>
<li><a href='http://ubuntuguide.net/access-remote-ubuntu-using-shellinaboxa-web-based-terminal-emulator' rel='bookmark' title='Access remote Ubuntu using Shellinabox,A Web Based Terminal Emulator'>Access remote Ubuntu using Shellinabox,A Web Based Terminal Emulator</a></li>
<li><a href='http://ubuntuguide.net/how-to-disable-browser-bar-drop-down-list-in-firefox' rel='bookmark' title='How to Disable browser bar drop-down list in Firefox'>How to Disable browser bar drop-down list in Firefox</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://ubuntuguide.net/wp-content/uploads/2011/12/Guake_in_Unity.png"><img src="http://ubuntuguide.net/wp-content/uploads/2011/12/Guake_in_Unity-450x360.png" alt="" title="Guake_in_Unity" width="450" height="360" class="aligncenter size-medium wp-image-5804" /></a></p>
<p>Guake is a top-down terminal for Gnome, in the style of Yakuake for KDE, Tilda or the terminal used in Quake.<br />
Guake&#8217;s properties window supports configuring keyboard shortcuts, appearences, main window height, etc. Unfortunately, the width is fixed and maximal.</p>
<div id="attachment_5807" class="wp-caption aligncenter" style="width: 375px"><a href="http://ubuntuguide.net/wp-content/uploads/2011/12/Guake_preferences.png"><img src="http://ubuntuguide.net/wp-content/uploads/2011/12/Guake_preferences-365x360.png" alt="" title="Guake_preferences" width="365" height="360" class="size-medium wp-image-5807" /></a><p class="wp-caption-text">Guake Preferences</p></div>
<p>Guake is available in Ubuntu universe repository. Install it via Ubuntu Software Center, or:</p>
<pre>sudo apt-get install quake</pre>
<p>Here are screenshots of Yakuake and Tilda (both quake style and available in ubuntu&#8217;s default repository):</p>
<div id="attachment_5810" class="wp-caption aligncenter" style="width: 460px"><a href="http://ubuntuguide.net/wp-content/uploads/2011/12/Yakuake.png"><img src="http://ubuntuguide.net/wp-content/uploads/2011/12/Yakuake-450x360.png" alt="" title="Yakuake" width="450" height="360" class="size-medium wp-image-5810" /></a><p class="wp-caption-text">Yakuake Terminal Emulator for KDE</p></div>
<div id="attachment_5811" class="wp-caption aligncenter" style="width: 510px"><a href="http://ubuntuguide.net/wp-content/uploads/2011/12/Tilda.png"><img src="http://ubuntuguide.net/wp-content/uploads/2011/12/Tilda-500x215.png" alt="" title="Tilda" width="500" height="215" class="size-medium wp-image-5811" /></a><p class="wp-caption-text">Tilda</p></div>
<p>Related posts:<ol>
<li><a href='http://ubuntuguide.net/install-yakuake-terminal-in-a-quake-style' rel='bookmark' title='Install Yakuake -terminal in a Quake-style'>Install Yakuake -terminal in a Quake-style</a></li>
<li><a href='http://ubuntuguide.net/access-remote-ubuntu-using-shellinaboxa-web-based-terminal-emulator' rel='bookmark' title='Access remote Ubuntu using Shellinabox,A Web Based Terminal Emulator'>Access remote Ubuntu using Shellinabox,A Web Based Terminal Emulator</a></li>
<li><a href='http://ubuntuguide.net/how-to-disable-browser-bar-drop-down-list-in-firefox' rel='bookmark' title='How to Disable browser bar drop-down list in Firefox'>How to Disable browser bar drop-down list in Firefox</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/guake-another-drop-down-quake-style-terminal-emulator/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Login Without Password in Ubuntu 11.10</title>
		<link>http://ubuntuguide.net/how-to-login-without-password-in-ubuntu-11-10</link>
		<comments>http://ubuntuguide.net/how-to-login-without-password-in-ubuntu-11-10#comments</comments>
		<pubDate>Mon, 21 Nov 2011 03:27:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=5639</guid>
		<description><![CDATA[If your Ubuntu machine is at home, you may want log-in Ubuntu without a password in the Log-in Screen or run sudo command without asking for a password. 1.) Set your user account to log-in without a password. This is easy, just click on top-right your user name and launch System Settings -> User Accounts. [...]
Related posts:<ol>
<li><a href='http://ubuntuguide.net/hide-user-list-at-login-screentype-username-and-password-to-login' rel='bookmark' title='Hide user-list at login screen,type username and password to login'>Hide user-list at login screen,type username and password to login</a></li>
<li><a href='http://ubuntuguide.net/how-to-reset-forgotten-userboot-password-in-ubuntu' rel='bookmark' title='How to reset forgotten user/boot password in Ubuntu'>How to reset forgotten user/boot password in Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/prevent-resetting-ubuntu-password-from-recovery-mode' rel='bookmark' title='Ask for a password to access recovery mode root console'>Ask for a password to access recovery mode root console</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If your Ubuntu machine is at home, you may want log-in Ubuntu without a password in the Log-in Screen or run sudo command without asking for a password.</p>
<p><strong>1.)</strong> Set your user account to log-in without a password.</p>
<p>This is easy, just click on top-right your user name and launch <code>System Settings -> User Accounts</code>. Click <em>Unlock</em> and enter the password. Now, double click on pass-phrase after <em>Password</em> and you&#8217;ll see following pic.</p>
<p><a href="http://ubuntuguide.net/wp-content/uploads/2011/11/LoginWithoutPasswd.png"><img src="http://ubuntuguide.net/wp-content/uploads/2011/11/LoginWithoutPasswd-485x360.png" alt="" title="LoginWithoutPasswd" width="485" height="360" class="aligncenter size-medium wp-image-5640" /></a></p>
<p>Choose &#8220;Login without a password&#8221; in first drop-down box and click &#8220;Change&#8221; at bottom.</p>
<p>Now, you can log-in this user without password both in GUI log-in screen and text (tty1~tty6) mode. The password is actually set to &#8220;None&#8221;. So in the tty1~tty6 (press Ctrl+Alt+F1~F6), it won&#8217;t ask a password for running commands with <code>sudo</code> at beginning. But in desktop environment, <code>sudo</code> command and &#8220;Authentication Required&#8221; window still need password and you can&#8217;t get through whatever you input. To deal with that see following steps.</p>
<p><strong>2.)</strong> Reset password in command-line. After that, you can login without password in LightDM Login Screen and all others back to normal.</p>
<p>Press Ctrl+Alt+F1 to navigate to TTY1 and log-in with your username. Then run this command to reset password:</p>
<pre>sudo passwd YOUR-USER-NAME</pre>
<p>Then input a new password and again to confirm.</p>
<p><strong>3.)</strong> If you want executing <code>sudo</code> command without asking for a password in terminal, run:</p>
<pre>sudo visudo</pre>
<p>Under &#8220;# Members of the admin group may gain root privileges&#8221; change:</p>
<pre>%admin ALL=(ALL) ALL</pre>
<p> to</p>
<pre>%admin ALL=(ALL) NOPASSWD:NOPASSWD:ALL</pre>
<p>Press <strong>Ctrl+X</strong> and then input <strong>y</strong> to save it.</p>
<p>Related posts:<ol>
<li><a href='http://ubuntuguide.net/hide-user-list-at-login-screentype-username-and-password-to-login' rel='bookmark' title='Hide user-list at login screen,type username and password to login'>Hide user-list at login screen,type username and password to login</a></li>
<li><a href='http://ubuntuguide.net/how-to-reset-forgotten-userboot-password-in-ubuntu' rel='bookmark' title='How to reset forgotten user/boot password in Ubuntu'>How to reset forgotten user/boot password in Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/prevent-resetting-ubuntu-password-from-recovery-mode' rel='bookmark' title='Ask for a password to access recovery mode root console'>Ask for a password to access recovery mode root console</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/how-to-login-without-password-in-ubuntu-11-10/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Install PAC Manager &#8211; Manage Remote Connections in Ubuntu 11.10</title>
		<link>http://ubuntuguide.net/install-pac-manager-manage-remote-connections-in-ubuntu-11-10</link>
		<comments>http://ubuntuguide.net/install-pac-manager-manage-remote-connections-in-ubuntu-11-10#comments</comments>
		<pubDate>Sat, 19 Nov 2011 04:39:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=5633</guid>
		<description><![CDATA[PAC, Perl Auto Connector is a simple GUI to manage/launch SSH/Telnet connections to remote machines. It is a Perl/GTK replacement for SecureCRT/Putty/etc (linux ssh/telnet/&#8230; gui)&#8230; It provides a GUI to configure connections: users, passwords, EXPECT regular expressions, macros, etc. Features: Unique linux app to implement SecureCRT&#8217;s functionality (more or less!) Remote and local macros Remotely [...]
Related posts:<ol>
<li><a href='http://ubuntuguide.net/secpanel-gui-tool-to-manage-ssh-connections' rel='bookmark' title='SecPanel-GUI Tool to manage ssh connections'>SecPanel-GUI Tool to manage ssh connections</a></li>
<li><a href='http://ubuntuguide.net/ssh-to-remote-server-without-password-in-ubuntu' rel='bookmark' title='Ssh to remote server without password in Ubuntu'>Ssh to remote server without password in Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/netactview-similar-to-tcpviewa-graphical-network-connections-viewer-for-linux' rel='bookmark' title='Netactview similar to TCPview,a graphical network connections viewer for Linux'>Netactview similar to TCPview,a graphical network connections viewer for Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>PAC, Perl Auto Connector is a simple GUI to manage/launch SSH/Telnet connections to remote machines.<br />
It is a Perl/GTK replacement for SecureCRT/Putty/etc (linux ssh/telnet/&#8230; gui)&#8230; It provides a GUI to configure connections: users, passwords, EXPECT regular expressions, macros, etc.</p>
<p><strong>Features:</strong></p>
<p><em>Unique linux app to implement SecureCRT&#8217;s functionality (more or less!)<br />
Remote and local macros<br />
Remotely send commands with EXPECT regexp<br />
Cluster connections!! Connections on same cluster share keystrokes!!<br />
Proxy support<br />
Serial/tty connection via cu/tip/remote-tty connections!!<br />
Pre/post connections local executions<br />
TABS OR WINDOWS for connections!!<br />
Wake On LAN capabilities<br />
Possibility to split terminals in the same TAB!<br />
Quick acces to configured connections via tray menu icon<br />
Best linux GUI for ssh, telnet, sftp, rdesktop, vnc, cu, remote-tty, ftp, etc<br />
DEB, RPM &#038; .TAR.GZ packages available!!<br />
More to come (ASA I find time!)<br />
FREE (GNU GPLv3)</em></p>
<p>Pac Manager Website: <a href="http://sites.google.com/site/davidtv/" target="_blank">http://sites.google.com/site/davidtv/</a></p>
<p><strong>Installation</strong></p>
<p>Download .deb package of pac from <a href="http://sourceforge.net/projects/pacmanager/" target="_blank">sourceforge.net</a></p>
<p>Then use this command to install pac in terminal:</p>
<pre>cd ~/Downloads
sudo dpkg -i pac-*.deb</pre>
<p>Run the command to fix dependencies error if any and finish installation.</p>
<pre>sudo apt-get -f install</pre>
<p><a href="http://ubuntuguide.net/wp-content/uploads/2011/11/PAC-option.jpg"><img src="http://ubuntuguide.net/wp-content/uploads/2011/11/PAC-option.jpg"></a></p>
<p><a href="http://ubuntuguide.net/wp-content/uploads/2011/11/4tabed-terminal.jpg"><img src="http://ubuntuguide.net/wp-content/uploads/2011/11/4tabed-terminal.jpg"></a></p>
<p>Related posts:<ol>
<li><a href='http://ubuntuguide.net/secpanel-gui-tool-to-manage-ssh-connections' rel='bookmark' title='SecPanel-GUI Tool to manage ssh connections'>SecPanel-GUI Tool to manage ssh connections</a></li>
<li><a href='http://ubuntuguide.net/ssh-to-remote-server-without-password-in-ubuntu' rel='bookmark' title='Ssh to remote server without password in Ubuntu'>Ssh to remote server without password in Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/netactview-similar-to-tcpviewa-graphical-network-connections-viewer-for-linux' rel='bookmark' title='Netactview similar to TCPview,a graphical network connections viewer for Linux'>Netactview similar to TCPview,a graphical network connections viewer for Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/install-pac-manager-manage-remote-connections-in-ubuntu-11-10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Tip: Enable installed apps synchronization with other computers</title>
		<link>http://ubuntuguide.net/ubuntu-tip-enable-synchronizing-installed-apps-with-other-computers</link>
		<comments>http://ubuntuguide.net/ubuntu-tip-enable-synchronizing-installed-apps-with-other-computers#comments</comments>
		<pubDate>Fri, 14 Oct 2011 04:42:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=5497</guid>
		<description><![CDATA[Ubuntu 11.10 Oneiric final has been released. In this Ubuntu edition, OneConf is integrated into Ubuntu Software Center. OneConf is a mechanism for recording software information in Ubuntu One, and synchronizing with other computers as needed. So now we can sync our installed applications with other computers using Ubuntu Software Center. Launch Ubuntu Software Center. [...]
Related posts:<ol>
<li><a href='http://ubuntuguide.net/create-backup-of-all-installed-packages-in-ubuntu' rel='bookmark' title='Create backup of all installed packages in ubuntu'>Create backup of all installed packages in ubuntu</a></li>
<li><a href='http://ubuntuguide.net/quickly-search-appsfiles-information-in-ubuntu-using-google-desktop' rel='bookmark' title='Quickly Search apps,files information in Ubuntu using Google Desktop'>Quickly Search apps,files information in Ubuntu using Google Desktop</a></li>
<li><a href='http://ubuntuguide.net/one-key-to-quick-setup-fresh-installed-ubuntu-with-ailurus' rel='bookmark' title='One key to Quick Setup fresh installed Ubuntu with Ailurus'>One key to Quick Setup fresh installed Ubuntu with Ailurus</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Ubuntu 11.10 Oneiric final has been released. In this Ubuntu edition, <a href="https://wiki.ubuntu.com/OneConf" target="_blank">OneConf</a> is integrated into Ubuntu Software Center.<br />
OneConf is a mechanism for recording software information in Ubuntu One, and synchronizing with other computers as needed. So now we can sync our installed applications with other computers using Ubuntu Software Center.</p>
<p>Launch Ubuntu Software Center. Click to <em>File -> Sync Between Computers&#8230;</em>, then input your username and password to enable this functionality.</p>
<p><a href="http://ubuntuguide.net/wp-content/uploads/2011/10/OneConf.png"><img src="http://ubuntuguide.net/wp-content/uploads/2011/10/OneConf-500x352.png" alt="" title="OneConf" width="500" height="352" class="aligncenter size-medium wp-image-5498" /></a></p>
<p>Related posts:<ol>
<li><a href='http://ubuntuguide.net/create-backup-of-all-installed-packages-in-ubuntu' rel='bookmark' title='Create backup of all installed packages in ubuntu'>Create backup of all installed packages in ubuntu</a></li>
<li><a href='http://ubuntuguide.net/quickly-search-appsfiles-information-in-ubuntu-using-google-desktop' rel='bookmark' title='Quickly Search apps,files information in Ubuntu using Google Desktop'>Quickly Search apps,files information in Ubuntu using Google Desktop</a></li>
<li><a href='http://ubuntuguide.net/one-key-to-quick-setup-fresh-installed-ubuntu-with-ailurus' rel='bookmark' title='One key to Quick Setup fresh installed Ubuntu with Ailurus'>One key to Quick Setup fresh installed Ubuntu with Ailurus</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/ubuntu-tip-enable-synchronizing-installed-apps-with-other-computers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activity Log Manager- Clear History, Prevent activities from Logging by File Type/Application</title>
		<link>http://ubuntuguide.net/activity-log-manager-clear-history-prevent-activities-from-logging-by-file-typeapplication</link>
		<comments>http://ubuntuguide.net/activity-log-manager-clear-history-prevent-activities-from-logging-by-file-typeapplication#comments</comments>
		<pubDate>Mon, 26 Sep 2011 04:26:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=5444</guid>
		<description><![CDATA[Activity Log Manager is a graphical user interface which lets you easily control what gets logged by Zeitgeist. It supports setting up blacklists according to several criteria (such as application or file types), temporarily stopping all logging as well as deleting recent events. Clear history, and stop all logging: Prevent from logging activities by adding [...]
Related posts:<ol>
<li><a href='http://ubuntuguide.net/clearprevent-recent-documents-under-files-folders-in-ubuntu-unity' rel='bookmark' title='Clear/Prevent Recent Documents under Files &amp; Folders in Ubuntu Unity'>Clear/Prevent Recent Documents under Files &#038; Folders in Ubuntu Unity</a></li>
<li><a href='http://ubuntuguide.net/install-gnome-activity-journalgui-for-zeitgeist-in-ubuntu-10-04' rel='bookmark' title='Install Gnome Activity Journal,GUI for Zeitgeist in Ubuntu 10.04'>Install Gnome Activity Journal,GUI for Zeitgeist in Ubuntu 10.04</a></li>
<li><a href='http://ubuntuguide.net/how-to-clear-login-history-and-command-history-in-ubuntu-linux' rel='bookmark' title='How to Clear Login History and Command History in Ubuntu Linux'>How to Clear Login History and Command History in Ubuntu Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Activity Log Manager is a graphical user interface which lets you easily control what gets logged by Zeitgeist.</p>
<p>It supports setting up blacklists according to several criteria (such as application or file types), temporarily stopping all logging as well as deleting recent events.</p>
<p><em>Clear history, and stop all logging:</em></p>
<p><a href="http://ubuntuguide.net/wp-content/uploads/2011/09/Activity-Log-Manager3.png"><img src="http://ubuntuguide.net/wp-content/uploads/2011/09/Activity-Log-Manager3-500x355.png" alt="" title="Activity-Log-Manager" width="500" height="355" class="aligncenter size-medium wp-image-5446" /></a></p>
<p><em>Prevent from logging activities by adding applications:</em></p>
<p><a href="http://ubuntuguide.net/wp-content/uploads/2011/09/Activity-Log-Manager11.png"><img src="http://ubuntuguide.net/wp-content/uploads/2011/09/Activity-Log-Manager11-500x351.png" alt="" title="Activity-Log-Manager1" width="500" height="351" class="aligncenter size-medium wp-image-5447" /></a><br />
<em>Prevent logging for the file types and file location:</em></p>
<p><a href="http://ubuntuguide.net/wp-content/uploads/2011/09/Activity-Log-Manager21.png"><img src="http://ubuntuguide.net/wp-content/uploads/2011/09/Activity-Log-Manager21-500x355.png" alt="" title="Activity-Log-Manager2" width="500" height="355" class="aligncenter size-medium wp-image-5448" /></a></p>
<p><strong>Installing Activity Log Manager</strong></p>
<p>Activity Log Manager can be installed from <a href="https://launchpad.net/~zeitgeist/+archive/ppa" target="_blank">zeigeist ppa</a> by running following command in terminal(supports Ubuntu 10.04 Lucid and higher):</p>
<pre>sudo add-apt-repository ppa:zeitgeist/ppa
sudo apt-get update
sudo apt-get install activity-log-manager</pre>
<p>Related posts:<ol>
<li><a href='http://ubuntuguide.net/clearprevent-recent-documents-under-files-folders-in-ubuntu-unity' rel='bookmark' title='Clear/Prevent Recent Documents under Files &amp; Folders in Ubuntu Unity'>Clear/Prevent Recent Documents under Files &#038; Folders in Ubuntu Unity</a></li>
<li><a href='http://ubuntuguide.net/install-gnome-activity-journalgui-for-zeitgeist-in-ubuntu-10-04' rel='bookmark' title='Install Gnome Activity Journal,GUI for Zeitgeist in Ubuntu 10.04'>Install Gnome Activity Journal,GUI for Zeitgeist in Ubuntu 10.04</a></li>
<li><a href='http://ubuntuguide.net/how-to-clear-login-history-and-command-history-in-ubuntu-linux' rel='bookmark' title='How to Clear Login History and Command History in Ubuntu Linux'>How to Clear Login History and Command History in Ubuntu Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/activity-log-manager-clear-history-prevent-activities-from-logging-by-file-typeapplication/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Let Grub2 remember and auto-select last entry you booted</title>
		<link>http://ubuntuguide.net/let-grub2-remember-and-auto-select-last-entry-you-booted</link>
		<comments>http://ubuntuguide.net/let-grub2-remember-and-auto-select-last-entry-you-booted#comments</comments>
		<pubDate>Thu, 22 Sep 2011 04:58:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=5441</guid>
		<description><![CDATA[Grub2 can remember the last entry you booted from and use this as the default entry to boot from next time. You may have multiple kernels or operating systems installed in one machine and managed with Grub2 boot loader. Then let Grub2 remember the last boot entry is useful. You don&#8217;t need to set a [...]
Related posts:<ol>
<li><a href='http://ubuntuguide.net/add-a-grub2-entry-for-ubuntu-booting-into-consolecommand-line' rel='bookmark' title='Add a Grub2 Entry for Ubuntu booting into console/command line'>Add a Grub2 Entry for Ubuntu booting into console/command line</a></li>
<li><a href='http://ubuntuguide.net/how-to-restore-grub2-boot-loader-onto-portable-hard-drive' rel='bookmark' title='How to Restore Grub2 boot loader onto portable hard drive'>How to Restore Grub2 boot loader onto portable hard drive</a></li>
<li><a href='http://ubuntuguide.net/manager-grub2-boot-loader-using-grub-customizergui' rel='bookmark' title='Manager Grub2 boot loader using Grub Customizer(GUI)'>Manager Grub2 boot loader using Grub Customizer(GUI)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Grub2 can remember the last entry you booted from and use this as the default entry to boot from next time.</p>
<p>You may have multiple kernels or operating systems installed in one machine and managed with Grub2 boot loader. Then let Grub2 remember the last boot entry is useful. You don&#8217;t need to set a default boot entry any longer.</p>
<p><strong>1.)</strong> Edit <code>/etc/default/grub</code>, and change the setting of <code>GRUB_DEFAULT</code>:</p>
<pre>gksu gedit /etc/default/grub</pre>
<p>change from:</p>
<blockquote><p>GRUB_DEFAULT=0</p></blockquote>
<p>to:</p>
<blockquote><p>GRUB_DEFAULT=saved<br />
GRUB_SAVEDEFAULT=true</p></blockquote>
<p><a href="http://ubuntuguide.net/wp-content/uploads/2011/09/Grub2_lastentry.png"><img src="http://ubuntuguide.net/wp-content/uploads/2011/09/Grub2_lastentry.png"></a></p>
<p><strong>2.)</strong> Regenerate the configuration file:</p>
<pre>sudo update-grub</pre>
<p>Related posts:<ol>
<li><a href='http://ubuntuguide.net/add-a-grub2-entry-for-ubuntu-booting-into-consolecommand-line' rel='bookmark' title='Add a Grub2 Entry for Ubuntu booting into console/command line'>Add a Grub2 Entry for Ubuntu booting into console/command line</a></li>
<li><a href='http://ubuntuguide.net/how-to-restore-grub2-boot-loader-onto-portable-hard-drive' rel='bookmark' title='How to Restore Grub2 boot loader onto portable hard drive'>How to Restore Grub2 boot loader onto portable hard drive</a></li>
<li><a href='http://ubuntuguide.net/manager-grub2-boot-loader-using-grub-customizergui' rel='bookmark' title='Manager Grub2 boot loader using Grub Customizer(GUI)'>Manager Grub2 boot loader using Grub Customizer(GUI)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/let-grub2-remember-and-auto-select-last-entry-you-booted/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Udev Discover &#8211; Gnome-Device-Manager-like app using gudev</title>
		<link>http://ubuntuguide.net/udev-discover-gnome-device-manager-like-app-using-gudev</link>
		<comments>http://ubuntuguide.net/udev-discover-gnome-device-manager-like-app-using-gudev#comments</comments>
		<pubDate>Thu, 01 Sep 2011 05:21:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=5394</guid>
		<description><![CDATA[Udev-Discover is a sysfs browsing tool focused on helping udev users and developers. Main features: Browsing the sysfs tree via udev Reports udev device info and udev properties Filter and search devices Monitorize udev device events Udev discover aims for being a gnome-device-manager-like app using gudev instead of HAL, and to provide some fancy features [...]
Related posts:<ol>
<li><a href='http://ubuntuguide.net/hacking-add-output-device-chooser-on-gnome-shell-sound-menu' rel='bookmark' title='Hacking: Add Output Device Chooser on Gnome Shell Sound Menu'>Hacking: Add Output Device Chooser on Gnome Shell Sound Menu</a></li>
<li><a href='http://ubuntuguide.net/netspeed-gnome-applet-that-monitor-traffic-occurs-on-network-device' rel='bookmark' title='Netspeed-Gnome Applet that monitor traffic occurs on network device'>Netspeed-Gnome Applet that monitor traffic occurs on network device</a></li>
<li><a href='http://ubuntuguide.net/gnome-commander-lightweight-two-pane-file-manager-for-gnome' rel='bookmark' title='GNOME Commander &#8211; Lightweight two-pane file manager for Gnome'>GNOME Commander &#8211; Lightweight two-pane file manager for Gnome</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Udev-Discover is a sysfs browsing tool focused on helping udev users and developers. </p>
<p><strong>Main features:</strong></p>
<p><em>Browsing the sysfs tree via udev<br />
Reports udev device info and udev properties<br />
Filter and search devices<br />
Monitorize udev device events</em></p>
<p>Udev discover aims for being a gnome-device-manager-like app using gudev instead of HAL, and to provide some fancy features for udev users and hackers.</p>
<p><strong>Installation:</strong></p>
<p>Ubuntu 11.04 Natty user can installing this <a href="https://launchpad.net/~fontanon/+archive/udev-discover" target="_blank">via ppa</a>, just run following commands in a terminal window:</p>
<pre>sudo apt-add-repository ppa:fontanon/udev-discover
sudo apt-get update
sudo apt-get install udev-discover</pre>
<p>Alternatively, download the source code: <a href="http://fontanon.org/udevdiscover/download-and-install/" target="_blank">http://fontanon.org/udevdiscover/download-and-install/</a></p>
<p><a href="http://ubuntuguide.net/wp-content/uploads/2011/08/udev-discover_002.png"><img src="http://ubuntuguide.net/wp-content/uploads/2011/08/udev-discover_002-484x360.png" alt="" title="udev-discover_002" width="484" height="360" class="aligncenter size-medium wp-image-5395" /></a></p>
<p>Related posts:<ol>
<li><a href='http://ubuntuguide.net/hacking-add-output-device-chooser-on-gnome-shell-sound-menu' rel='bookmark' title='Hacking: Add Output Device Chooser on Gnome Shell Sound Menu'>Hacking: Add Output Device Chooser on Gnome Shell Sound Menu</a></li>
<li><a href='http://ubuntuguide.net/netspeed-gnome-applet-that-monitor-traffic-occurs-on-network-device' rel='bookmark' title='Netspeed-Gnome Applet that monitor traffic occurs on network device'>Netspeed-Gnome Applet that monitor traffic occurs on network device</a></li>
<li><a href='http://ubuntuguide.net/gnome-commander-lightweight-two-pane-file-manager-for-gnome' rel='bookmark' title='GNOME Commander &#8211; Lightweight two-pane file manager for Gnome'>GNOME Commander &#8211; Lightweight two-pane file manager for Gnome</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/udev-discover-gnome-device-manager-like-app-using-gudev/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bootchart &#8211; Audit Ubuntu boot sequence and render in a chart</title>
		<link>http://ubuntuguide.net/bootchart-audit-ubuntu-boot-sequence-and-render-in-a-chart</link>
		<comments>http://ubuntuguide.net/bootchart-audit-ubuntu-boot-sequence-and-render-in-a-chart#comments</comments>
		<pubDate>Tue, 23 Aug 2011 04:41:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=5378</guid>
		<description><![CDATA[Bootchart is a tool for performance analysis and visualization of the GNU/Linux boot process. Resource utilization and process information are collected during the boot process and are later rendered in a PNG, SVG or EPS encoded chart. The project started as a response to a challenge posted by Owen Taylor on the Fedora development mailing list: [...]
Related posts:<ol>
<li><a href='http://ubuntuguide.net/fix-windows-when-boot-files-bootinintldrare-missing' rel='bookmark' title='Fix Windows when boot files (boot.ini,NTLDR)are missing'>Fix Windows when boot files (boot.ini,NTLDR)are missing</a></li>
<li><a href='http://ubuntuguide.net/manage-boot-up-services-in-ubuntu-using-bum-boot-up-manager' rel='bookmark' title='Manage boot up services in Ubuntu using BUM Boot-Up Manager'>Manage boot up services in Ubuntu using BUM Boot-Up Manager</a></li>
<li><a href='http://ubuntuguide.net/howto-view-and-limit-process-cpu-usage-in-ubuntu-linux' rel='bookmark' title='Howto View and Limit Process CPU usage in Ubuntu Linux'>Howto View and Limit Process CPU usage in Ubuntu Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Bootchart is a tool for performance analysis and visualization of the GNU/Linux boot process. Resource utilization and process information are collected during the boot process and are later rendered in a PNG, SVG or EPS encoded chart.</p>
<p>The project started as a response to a <a href="http://www.redhat.com/archives/fedora-devel-list/2004-November/msg00447.html" target="_blank">challenge posted by Owen Taylor</a> on the Fedora development mailing list:</p>
<div>
<p><strong>&#8220;</strong>The challenge is to create a single poster showing graphically what is going on during the boot, what is the utilization of resources, how the current boot differs from the ideal world of 100% disk and CPU utilization, and thus, where are the opportunities for optimization.<strong>&#8220;</strong></p>
<div><strong><br />
</strong></div>
</div>
<p>&nbsp;<br />
<strong>Installation</strong></p>
<p>Bootchart is available in Ubuntu universe repository, install it using <em>Ubuntu Software Center</em>.</p>
<p>Alternatively, download bootchart: <a href="http://www.bootchart.org/download.html" target="_blank">http://www.bootchart.org/download.html</a></p>
<p>Bootchart provides a shell script to be run by the kernel in the init phase. At next boot, the script will run in background and collect process information, CPU statistics and disk usage statistics from the /proc file system. </p>
<p>Tarballs of this data are left in <code>/var/log/bootchart</code>; from these either PNG or SVG will be generated if pybootchartgui is installed.</p>
<p><a href="http://ubuntuguide.net/wp-content/uploads/2011/08/wraith-deskto-natty-20110823-1.png"><img src="http://ubuntuguide.net/wp-content/uploads/2011/08/wraith-deskto-natty-20110823-1-73x360.png" alt="" title="wraith-deskto-natty-20110823-1" width="73" height="360" class="aligncenter size-medium wp-image-5380" /></a></p>
<p>Related posts:<ol>
<li><a href='http://ubuntuguide.net/fix-windows-when-boot-files-bootinintldrare-missing' rel='bookmark' title='Fix Windows when boot files (boot.ini,NTLDR)are missing'>Fix Windows when boot files (boot.ini,NTLDR)are missing</a></li>
<li><a href='http://ubuntuguide.net/manage-boot-up-services-in-ubuntu-using-bum-boot-up-manager' rel='bookmark' title='Manage boot up services in Ubuntu using BUM Boot-Up Manager'>Manage boot up services in Ubuntu using BUM Boot-Up Manager</a></li>
<li><a href='http://ubuntuguide.net/howto-view-and-limit-process-cpu-usage-in-ubuntu-linux' rel='bookmark' title='Howto View and Limit Process CPU usage in Ubuntu Linux'>Howto View and Limit Process CPU usage in Ubuntu Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/bootchart-audit-ubuntu-boot-sequence-and-render-in-a-chart/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PPA of linux-backport-natty 2.6.38-10.46 for Ubuntu 10.04 Lucid</title>
		<link>http://ubuntuguide.net/ppa-of-linux-backport-natty-2-6-38-10-46-for-ubuntu-10-04-lucid</link>
		<comments>http://ubuntuguide.net/ppa-of-linux-backport-natty-2-6-38-10-46-for-ubuntu-10-04-lucid#comments</comments>
		<pubDate>Sun, 17 Jul 2011 06:37:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=5265</guid>
		<description><![CDATA[Natty proposed linux kernel 2.6.38-10.46 was released few days ago. Here&#8217;s a backport for Ubuntu Lucid release in ppa:euroford/linux-kernel. Before adding this untrusted PPA, check the packages on ppa:euroford/linux-kernel. The ppa may change/update packages over time. sudo add-apt-repository ppa:euroford/linux-kernel sudo apt-get update sudo apt-get install linux-image-2.6.38-10-generic (or linux-image-2.6.38-10-generic-pae) Changelog: https://launchpad.net/ubuntu/+source/linux/2.6.38-10.46 Related posts: How to Install [...]
Related posts:<ol>
<li><a href='http://ubuntuguide.net/how-to-install-linux-kernel-3-0-rc2-in-ubuntu-11-04-natty-narwhal' rel='bookmark' title='How to Install Linux Kernel 3.0 rc2 in Ubuntu 11.04 Natty Narwhal'>How to Install Linux Kernel 3.0 rc2 in Ubuntu 11.04 Natty Narwhal</a></li>
<li><a href='http://ubuntuguide.net/ubuntu-11-04-upgrade-linux-kernel-to-2-6-39-0' rel='bookmark' title='Ubuntu 11.04 Upgrade Linux Kernel to 2.6.39.0'>Ubuntu 11.04 Upgrade Linux Kernel to 2.6.39.0</a></li>
<li><a href='http://ubuntuguide.net/how-to-install-linux-kernel-2-6-39-rc4-in-ubuntu-11-04-natty' rel='bookmark' title='How to Install Linux kernel 2.6.39 rc4 in Ubuntu 11.04 Natty'>How to Install Linux kernel 2.6.39 rc4 in Ubuntu 11.04 Natty</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Natty proposed linux kernel 2.6.38-10.46 was released few days ago. Here&#8217;s a backport for Ubuntu Lucid release in ppa:euroford/linux-kernel.</p>
<p>Before adding this untrusted PPA, check the packages on <a href="https://launchpad.net/~euroford/+archive/linux-kernel" target="_blank">ppa:euroford/linux-kernel</a>. The ppa may change/update packages over time.</p>
<pre>sudo add-apt-repository ppa:euroford/linux-kernel
sudo apt-get update
sudo apt-get install linux-image-2.6.38-10-generic (or linux-image-2.6.38-10-generic-pae)</pre>
<p>Changelog: <a href="https://launchpad.net/ubuntu/+source/linux/2.6.38-10.46" target="_blank">https://launchpad.net/ubuntu/+source/linux/2.6.38-10.46</a></p>
<p>Related posts:<ol>
<li><a href='http://ubuntuguide.net/how-to-install-linux-kernel-3-0-rc2-in-ubuntu-11-04-natty-narwhal' rel='bookmark' title='How to Install Linux Kernel 3.0 rc2 in Ubuntu 11.04 Natty Narwhal'>How to Install Linux Kernel 3.0 rc2 in Ubuntu 11.04 Natty Narwhal</a></li>
<li><a href='http://ubuntuguide.net/ubuntu-11-04-upgrade-linux-kernel-to-2-6-39-0' rel='bookmark' title='Ubuntu 11.04 Upgrade Linux Kernel to 2.6.39.0'>Ubuntu 11.04 Upgrade Linux Kernel to 2.6.39.0</a></li>
<li><a href='http://ubuntuguide.net/how-to-install-linux-kernel-2-6-39-rc4-in-ubuntu-11-04-natty' rel='bookmark' title='How to Install Linux kernel 2.6.39 rc4 in Ubuntu 11.04 Natty'>How to Install Linux kernel 2.6.39 rc4 in Ubuntu 11.04 Natty</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/ppa-of-linux-backport-natty-2-6-38-10-46-for-ubuntu-10-04-lucid/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

