<?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>Matt Conroy &#187; Linux</title>
	<atom:link href="http://www.mattconroy.com/index.php/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mattconroy.com</link>
	<description>My NoLedge</description>
	<lastBuildDate>Thu, 24 Jun 2010 21:11:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing SSH on Ubuntu 7.04</title>
		<link>http://www.mattconroy.com/index.php/2008/02/27/installing-ssh-on-ubuntu-704/</link>
		<comments>http://www.mattconroy.com/index.php/2008/02/27/installing-ssh-on-ubuntu-704/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 19:31:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.mattconroy.com/index.php/2008/02/27/installing-ssh-on-ubuntu-704/</guid>
		<description><![CDATA[I am going to start creating videos for little things that I setup on Ubuntu. Maybe it will help someone. If not I wasted time, but I got another post 
Ubuntu SSH Install
]]></description>
			<content:encoded><![CDATA[<p>I am going to start creating videos for little things that I setup on Ubuntu. Maybe it will help someone. If not I wasted time, but I got another post <img src='http://www.mattconroy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="http://www.mattconroy.com/wp-content/uploads/2008/02/ubuntusshinstall.swf" title="Ubuntu SSH Install">Ubuntu SSH Install</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattconroy.com/index.php/2008/02/27/installing-ssh-on-ubuntu-704/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Large Files Linux</title>
		<link>http://www.mattconroy.com/index.php/2008/01/29/finding-large-files-linux/</link>
		<comments>http://www.mattconroy.com/index.php/2008/01/29/finding-large-files-linux/#comments</comments>
		<pubDate>Wed, 30 Jan 2008 02:10:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.mattconroy.com/index.php/2008/01/29/finding-large-files-linux/</guid>
		<description><![CDATA[To find large files in linux you can use the find command.
As an example you can find all files that are close to 1GB or over by issuing the command:

find . -type f -size +1000000

The above command will list all files larger than 1GB recursively from the current working directory.
]]></description>
			<content:encoded><![CDATA[<p>To find large files in linux you can use the find command.</p>
<p>As an example you can find all files that are close to 1GB or over by issuing the command:</p>
<pre>
find . -type f -size +1000000
</pre>
<p>The above command will list all files larger than 1GB recursively from the current working directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattconroy.com/index.php/2008/01/29/finding-large-files-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VSFTP Users without access to a shell cannot log in</title>
		<link>http://www.mattconroy.com/index.php/2008/01/26/vsftp-users-without-access-to-a-shell-cannot-log-in/</link>
		<comments>http://www.mattconroy.com/index.php/2008/01/26/vsftp-users-without-access-to-a-shell-cannot-log-in/#comments</comments>
		<pubDate>Sat, 26 Jan 2008 17:19:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.mattconroy.com/index.php/2008/01/26/vsftp-users-without-access-to-a-shell-cannot-log-in/</guid>
		<description><![CDATA[If you are here you have probably seen this error &#8220;530 Login incorrect&#8221;
In order to fix this problem you need to ensure that the shell being used for the user in question is in the file /etc/shell.

# /etc/shells: valid login shells
/bin/csh
/bin/sh
/usr/bin/es
/usr/bin/ksh
/bin/ksh
/usr/bin/rc
/usr/bin/tcsh
/bin/tcsh
/usr/bin/esh
/bin/dash
/bin/bash
/bin/rbash
/usr/bin/screen
Any shell that is in this file will allow the user to connect.
]]></description>
			<content:encoded><![CDATA[<p>If you are here you have probably seen this error &#8220;530 Login incorrect&#8221;</p>
<p>In order to fix this problem you need to ensure that the shell being used for the user in question is in the file /etc/shell.</p>
<pre>
# /etc/shells: valid login shells
/bin/csh
/bin/sh
/usr/bin/es
/usr/bin/ksh
/bin/ksh
/usr/bin/rc
/usr/bin/tcsh
/bin/tcsh
/usr/bin/esh
/bin/dash
/bin/bash
/bin/rbash
/usr/bin/screen</pre>
<p>Any shell that is in this file will allow the user to connect.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattconroy.com/index.php/2008/01/26/vsftp-users-without-access-to-a-shell-cannot-log-in/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick and dirty backups for linux using tar</title>
		<link>http://www.mattconroy.com/index.php/2008/01/23/quick-and-dirty-backups-for-linux-using-tar/</link>
		<comments>http://www.mattconroy.com/index.php/2008/01/23/quick-and-dirty-backups-for-linux-using-tar/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 02:28:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.mattconroy.com/index.php/2008/01/23/quick-and-dirty-backups-for-linux-using-tar/</guid>
		<description><![CDATA[I found this link useful. I have attached the actual backup script located on this page just in case it is gone in the future.
Tar Backup Script
Tar Backup Web Page
]]></description>
			<content:encoded><![CDATA[<p>I found this link useful. I have attached the actual backup script located on this page just in case it is gone in the future.</p>
<p><a href="http://www.mattconroy.com/wp-content/uploads/2008/01/backup.txt" title="Tar Backup Script">Tar Backup Script</a><br />
<a href="http://www.faqs.org/docs/securing/chap29sec306.html">Tar Backup Web Page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattconroy.com/index.php/2008/01/23/quick-and-dirty-backups-for-linux-using-tar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
