<?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>Tux Training</title>
	<atom:link href="http://tuxtraining.com/feed" rel="self" type="application/rss+xml" />
	<link>http://tuxtraining.com</link>
	<description></description>
	<lastBuildDate>Thu, 19 Nov 2009 20:00:41 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fix Fedora 12s Broken User Access</title>
		<link>http://tuxtraining.com/2009/11/19/fix-fedora-12s-broken-user-access</link>
		<comments>http://tuxtraining.com/2009/11/19/fix-fedora-12s-broken-user-access#comments</comments>
		<pubDate>Thu, 19 Nov 2009 19:56:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[policykit]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[stupid]]></category>
		<category><![CDATA[user access control]]></category>

		<guid isPermaLink="false">http://tuxtraining.com/?p=2257</guid>
		<description><![CDATA[A hotly debated topic this week has been a decision made with the latest release of Fedora.  The 12th release has made it so that local users can install signed packages from the repositories, without root access.
You can read all the nerd-rage here:
Fedora 12 allows any user to install software on a machine without [...]]]></description>
		<wfw:commentRss>http://tuxtraining.com/2009/11/19/fix-fedora-12s-broken-user-access/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gmail, offlineimap, msmtp, and mutt for command line email</title>
		<link>http://tuxtraining.com/2009/11/09/gmail-offlineimap-msmtp-and-mutt-for-command-line-email</link>
		<comments>http://tuxtraining.com/2009/11/09/gmail-offlineimap-msmtp-and-mutt-for-command-line-email#comments</comments>
		<pubDate>Mon, 09 Nov 2009 20:22:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Commandline Tools]]></category>
		<category><![CDATA[Email & IM]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[msmtp]]></category>
		<category><![CDATA[mutt]]></category>
		<category><![CDATA[offlineimap]]></category>

		<guid isPermaLink="false">http://tuxtraining.com/?p=2256</guid>
		<description><![CDATA[

Collecting bits and pieces over the past year, I&#8217;ve come up with the perfect solution for email on the command line.   Enjoy.

mkdir ~/Mail   (if you want this to be different change the &#8220;localfolders&#8221; line in .offlineimaprc   )
here, the following are my configs. All of these will have to be editted with [...]]]></description>
		<wfw:commentRss>http://tuxtraining.com/2009/11/09/gmail-offlineimap-msmtp-and-mutt-for-command-line-email/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basics of User Management</title>
		<link>http://tuxtraining.com/2009/11/09/basics-of-user-management</link>
		<comments>http://tuxtraining.com/2009/11/09/basics-of-user-management#comments</comments>
		<pubDate>Mon, 09 Nov 2009 20:19:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Basics]]></category>

		<guid isPermaLink="false">http://tuxtraining.com/?p=2255</guid>
		<description><![CDATA[A comprehensive guide for basic user management of a linux box:



Create Users
Creating a user is rather simple.   While logged in as root, type:
useradd username

Where “username” is the name of the user you want to add.  There are a couple options to this command as well.
-s allows you to specify what shell you [...]]]></description>
		<wfw:commentRss>http://tuxtraining.com/2009/11/09/basics-of-user-management/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An overview of the find command</title>
		<link>http://tuxtraining.com/2009/11/09/an-overview-of-the-find-command</link>
		<comments>http://tuxtraining.com/2009/11/09/an-overview-of-the-find-command#comments</comments>
		<pubDate>Mon, 09 Nov 2009 20:16:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[atime]]></category>
		<category><![CDATA[ctime]]></category>
		<category><![CDATA[exec]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[mtime]]></category>
		<category><![CDATA[xargs]]></category>

		<guid isPermaLink="false">http://tuxtraining.com/?p=2253</guid>
		<description><![CDATA[Let us see how to use find command to  gain lots of useful information about users and their files.

Find Syntax
find &#60;path to search in&#62; &#60;options&#62; &#60;expression to search for&#62;

Finding files by name
The below command will search the &#8220;/etc&#8221; directory for any file name containing the word &#8220;fstab&#8221; within it.
 find /etc -name *fstab*

Finding all large [...]]]></description>
		<wfw:commentRss>http://tuxtraining.com/2009/11/09/an-overview-of-the-find-command/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The most common usage of sed</title>
		<link>http://tuxtraining.com/2009/10/28/the-most-common-usage-of-sed</link>
		<comments>http://tuxtraining.com/2009/10/28/the-most-common-usage-of-sed#comments</comments>
		<pubDate>Wed, 28 Oct 2009 22:49:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[sed]]></category>

		<guid isPermaLink="false">http://tuxtraining.com/?p=2249</guid>
		<description><![CDATA[make a file with your favorite text editor. Name this file &#8220;old&#8221; and place the word &#8220;day&#8221; within it. Save it in your home directory. /home/&#60;username&#62;.
Now in a shell run:


sed s/day/night/ old &#62;new


Now you will have a file called &#8220;new&#8221;. Open that file and it should have changed the word day to night.
Re-edit the file [...]]]></description>
		<wfw:commentRss>http://tuxtraining.com/2009/10/28/the-most-common-usage-of-sed/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix: Number Pad Will Not Work in Ubuntu</title>
		<link>http://tuxtraining.com/2009/10/27/fix-number-pad-will-not-work-in-ubuntu</link>
		<comments>http://tuxtraining.com/2009/10/27/fix-number-pad-will-not-work-in-ubuntu#comments</comments>
		<pubDate>Tue, 27 Oct 2009 14:11:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[cursor]]></category>
		<category><![CDATA[mouse keys]]></category>
		<category><![CDATA[number pad]]></category>

		<guid isPermaLink="false">http://tuxtraining.com/?p=2246</guid>
		<description><![CDATA[Sometimes when I&#8217;ve been messing around on Ubuntu my number pad will quit working.  The number lock is on, I can see the indicator right there.  Toggling the num lock on and off doesn&#8217;t fix things.  I found that holding 8, 2, 4, or 6 moves the cursor on the screen though.
This is an Accessibility [...]]]></description>
		<wfw:commentRss>http://tuxtraining.com/2009/10/27/fix-number-pad-will-not-work-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sync Tomboy Notes with Dropbox in Ubuntu</title>
		<link>http://tuxtraining.com/2009/10/27/sync-tomboy-notes-with-dropbox-in-ubuntu</link>
		<comments>http://tuxtraining.com/2009/10/27/sync-tomboy-notes-with-dropbox-in-ubuntu#comments</comments>
		<pubDate>Tue, 27 Oct 2009 12:32:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[tomboy]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://tuxtraining.com/?p=2245</guid>
		<description><![CDATA[Recently covered how to sync Tomboy notes across the Ubuntu One network, but many out there prefer file sharing in the cloud to be a bit less &#8220;beta&#8221; and use Dropbox instead.   Luckily syncing Tomboy notes isn&#8217;t too terribly difficult this way either.

Install and Setup Dropbox.
Add the Dropbox repository for Ubuntu package source file. [...]]]></description>
		<wfw:commentRss>http://tuxtraining.com/2009/10/27/sync-tomboy-notes-with-dropbox-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix Ctrl Alt Backspace behavior in Ubuntu</title>
		<link>http://tuxtraining.com/2009/10/27/fix-ctrl-alt-backspace-behavior-in-ubuntu</link>
		<comments>http://tuxtraining.com/2009/10/27/fix-ctrl-alt-backspace-behavior-in-ubuntu#comments</comments>
		<pubDate>Tue, 27 Oct 2009 12:18:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://tuxtraining.com/?p=2244</guid>
		<description><![CDATA[Ubuntu 9.04 disabled the semi-crucial keyboard shortcut, Ctrl+Alt+Backspace, that used to force the X graphical server to restart, and made it wonky to re-enable. Luckily, Ubuntu 9.10, due out in nine days, has a single setting to restore it.
Go to System-&#62;Preferences-&#62;Keyboard settings, then head to the Layouts tab under Keyboard settings, click the &#8220;Key sequence [...]]]></description>
		<wfw:commentRss>http://tuxtraining.com/2009/10/27/fix-ctrl-alt-backspace-behavior-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get the old notification system back in Ubuntu 9.04 and 9.10</title>
		<link>http://tuxtraining.com/2009/10/26/get-the-old-notification-system-back-in-ubuntu-9-04-and-9-10</link>
		<comments>http://tuxtraining.com/2009/10/26/get-the-old-notification-system-back-in-ubuntu-9-04-and-9-10#comments</comments>
		<pubDate>Mon, 26 Oct 2009 23:53:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[notify-osd]]></category>
		<category><![CDATA[stracciatella]]></category>

		<guid isPermaLink="false">http://tuxtraining.com/?p=2242</guid>
		<description><![CDATA[The next Ubuntu release (9.04, “Jaunty Jackalope”) will see the first set of changes introduced by Canonical’s Desktop Experience Team: The much-discussed notify-osd notification system, and the indicator applet.
The idea came up to allow both developers and users to be able to choose between the “Ubuntuized” and a more “upstream-like” GNOME experience.  Martin Pitt (maintainer) has  called that “stracciatella [...]]]></description>
		<wfw:commentRss>http://tuxtraining.com/2009/10/26/get-the-old-notification-system-back-in-ubuntu-9-04-and-9-10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Chromium on Ubuntu</title>
		<link>http://tuxtraining.com/2009/10/26/install-chromium-on-ubuntu</link>
		<comments>http://tuxtraining.com/2009/10/26/install-chromium-on-ubuntu#comments</comments>
		<pubDate>Mon, 26 Oct 2009 18:37:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Browsers]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[chromium]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://tuxtraining.com/?p=2241</guid>
		<description><![CDATA[Chromium is an open-source and webkit based browser project . The Chromium codebase is the basis for Google’s Chrome browser.  Getting this installed in Ubuntu isn&#8217;t too much hassle.

First you need to edit the /etc/apt/sources.list file
sudo vim /etc/apt/sources.list
and place the following in it:
deb http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main
deb-src http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main
Replace karmic with jaunty or intrepid [...]]]></description>
		<wfw:commentRss>http://tuxtraining.com/2009/10/26/install-chromium-on-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.520 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-19 10:50:05 -->
<!-- Compression = gzip -->