<?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>Download Linux Free &#187; Guides</title>
	<atom:link href="http://downloadlinuxfree.com/guide/feed/" rel="self" type="application/rss+xml" />
	<link>http://downloadlinuxfree.com</link>
	<description></description>
	<lastBuildDate>Tue, 29 Jun 2010 00:17:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Delete files by age on Linux</title>
		<link>http://downloadlinuxfree.com/delete-files-by-age-on-linux/</link>
		<comments>http://downloadlinuxfree.com/delete-files-by-age-on-linux/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 00:34:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Guides]]></category>

		<guid isPermaLink="false">http://downloadlinuxfree.com/?p=456</guid>
		<description><![CDATA[Often it might be necessary to remove files older than a certain age on a Linux machine. This uses the bash programming language which is native to most Linux distributions. It can be run on a regular basis by scheduling it with the crontab, or run once to clean out old files. The time variable [...]]]></description>
			<content:encoded><![CDATA[<p>Often it might be necessary to remove files older than a certain age on a Linux machine. This uses the bash programming language which is native to most Linux distributions. It can be run on a regular basis by scheduling it with the crontab, or run once to clean out old files. The time variable can be changed to suit the user&#8217;s needs, more examples can be found at the Save Lono software engineering help site.</p>
<p>This script removes every *.wav file older then one minute in the directory it is executed.  This script is very useful and can be used with the cron daemon for regular file removal.</p>
<p>#!/bin/bash</p>
<p><strong>find ./*.wav -type f -mmin +1 -exec rm {} \;</strong></p>
<p>Also we can adjust this for days rather than minutes by changing ‘-mmin +1′ to ‘-mtime +10′.  This would delete .wav files in the working directory that were older than 10 days.</p>
<p><a href="http://www.savelono.com/linux/bash-script-to-remove-files-by-time.html">More Information</a><br />
provided by SaveLono.com</p>
<p>http://www.savelono.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://downloadlinuxfree.com/delete-files-by-age-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenSSH Visual Host Fingerprint Representation</title>
		<link>http://downloadlinuxfree.com/openssh-visual-host-fingerprint-representation/</link>
		<comments>http://downloadlinuxfree.com/openssh-visual-host-fingerprint-representation/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 08:41:26 +0000</pubDate>
		<dc:creator>David Hudson</dc:creator>
				<category><![CDATA[Guides]]></category>

		<guid isPermaLink="false">http://downloadlinuxfree.com/?p=281</guid>
		<description><![CDATA[With the visual host key fingerprint, users can more easily tell whether they recognize a hex key using ssh. The secure shell remote connection program lets you connect to another machine via an encrypted connection.
Apparently, there is a setting in OpenSSH 5.1 and later for visual remote host fingerprinting.  The basic concept is that [...]]]></description>
			<content:encoded><![CDATA[<p>With the visual host key fingerprint, users can more easily tell whether they recognize a hex key using ssh. The secure shell remote connection program lets you connect to another machine via an encrypted connection.</p>
<p>Apparently, there is a setting in OpenSSH 5.1 and later for visual remote host fingerprinting.  The basic concept is that it’s much easier for the human brain to notice a change in a visual pattern than in a string of hex digits.  To turn it on, simply add a line that says<br />
VisualHostKey yes to your ~/.ssh/config file. Then, when you go to SSH into a server, you’ll see a visual representation of the remote host fingerprint, in addition to the regular fingerprint, as shown below:</p>
<h2>Example</h2>
<pre>[dhudson@attackbot ~]$ ssh myhost.com
Host key fingerprint is
07:d4:02:db:9f:70:d5:2d:7f:1b:6a:df:83:73:95:1d

+--[ RSA 2048]----+
|      ....  .. . |
|       +. ..  o .|
|      . +..    o |
|         = .   Eo|
|        S +   . B|
|         .   o oo|
|            . o o|
|             o +.|
|              o .|
+-----------------+</pre>
]]></content:encoded>
			<wfw:commentRss>http://downloadlinuxfree.com/openssh-visual-host-fingerprint-representation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search your command history in Linux</title>
		<link>http://downloadlinuxfree.com/search-your-command-history-in-linux/</link>
		<comments>http://downloadlinuxfree.com/search-your-command-history-in-linux/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 07:33:23 +0000</pubDate>
		<dc:creator>David Hudson</dc:creator>
				<category><![CDATA[Guides]]></category>

		<guid isPermaLink="false">http://10.3.0.2/?p=85</guid>
		<description><![CDATA[Push Ctrl+R (Control key held down at the same time as the R key). This will display the following in your shell:
(reverse-i-search)`&#8217;:
Type part of the command you&#8217;re searching for, for example &#8220;ls&#8221;, bash will search for matching commands. For example, it might show:
(reverse-i-search)`ls&#8217;: ls &#8211; /home/bob/
What it actually shows is going to be dependent on [...]]]></description>
			<content:encoded><![CDATA[<p>Push Ctrl+R (Control key held down at the same time as the R key). This will display the following in your shell:</p>
<p>(reverse-i-search)`&#8217;:</p>
<p>Type part of the command you&#8217;re searching for, for example &#8220;ls&#8221;, bash will search for matching commands. For example, it might show:</p>
<p>(reverse-i-search)`ls&#8217;: ls &#8211; /home/bob/</p>
<p>What it actually shows is going to be dependent on the commands you&#8217;ve previously entered.</p>
<p>Control + R again to cycle through the list.</p>
<p>When you do this, bash looks for the last command that you entered that contains the substring &#8220;ls&#8221;, in my case that was &#8220;ls &#8230;&#8221;. If the command that bash finds is what you&#8217;re looking for, just hit Enter to execute it. You can also edit the command to suit your current needs before executing it (use the left and right arrow keys to move through it). If you&#8217;re looking for a different command, hit Ctrl+R again to find a matching command further back in the command history. You can also continue to type a longer substring to refine the search, since searching is incremental.</p>
<p>Note that the sub string you enter is searched for throughout the command, not just at the beginning of the command.</p>
<p>/home/susan/.bash_history</p>
<p>The predeeding &#8220;.&#8221; indicates that it a hidden file.</p>
<p>If you&#8217;ve used bash for a while you might know that the commands you enter are saved in the ~/.bash_history when you log out. Next time you log in, bash automatically loads these history commands from the saved file and you can then use the up and down arrow keys to browse your command history and find the command you want rather than re-entering it.</p>
]]></content:encoded>
			<wfw:commentRss>http://downloadlinuxfree.com/search-your-command-history-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
