<?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>Blog::Log &#187; linux</title>
	<atom:link href="http://www.stpe.se/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stpe.se</link>
	<description>Not a blog, more a log.</description>
	<lastBuildDate>Wed, 02 Jun 2010 13:01:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Using screen for linux background processing</title>
		<link>http://www.stpe.se/2009/09/using-screen-for-linux-background-processing/</link>
		<comments>http://www.stpe.se/2009/09/using-screen-for-linux-background-processing/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 15:48:56 +0000</pubDate>
		<dc:creator>stefan</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.stpe.se/?p=125</guid>
		<description><![CDATA[Perfect for long running batch jobs on a remote server over unreliable connections or if you want to bring your laptop home (instead of keeping that terminal running). Log in and run screen -t title_of_your_choice Do the same thing again if you want to create another window. All the following screen commands are preceeded by [...]]]></description>
			<content:encoded><![CDATA[<p>Perfect for long running batch jobs on a remote server over unreliable connections or if you want to bring your laptop home (instead of keeping that terminal running).</p>
<p>Log in and run<br />
<code>screen -t title_of_your_choice</code></p>
<p>Do the same thing again if you want to create another window.</p>
<p>All the following screen commands are preceeded by Ctrl-a (i.e. first press ctrl-a then the shortcut below)</p>
<ul>
<li>0-9 &#8211; switch to window by id</li>
<li>Ctrl-n &#8211; next window</li>
<li>Ctrl-a &#8211; previous window</li>
<li>K &#8211; kill window</li>
</ul>
<p>The next day, log in as usual and attach to the screen session using</p>
<p><code>screen -x</code></p>
<p>Check the man page for screen for other options and shortcuts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stpe.se/2009/09/using-screen-for-linux-background-processing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Count files recursively in a directory using Linux</title>
		<link>http://www.stpe.se/2008/12/count-files-recursively-in-a-directory-using-linux/</link>
		<comments>http://www.stpe.se/2008/12/count-files-recursively-in-a-directory-using-linux/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 07:53:57 +0000</pubDate>
		<dc:creator>stefan</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[command]]></category>

		<guid isPermaLink="false">http://www.stpe.se/?p=68</guid>
		<description><![CDATA[Using Linux, to get the number of files in the current directory, use: ls -1 &#124; wc -l To count the number of files recursively in the current and all directories below it, use: find . -type f &#124; wc -l]]></description>
			<content:encoded><![CDATA[<p>Using Linux, to get the number of files in the current directory, use:</p>
<p><code>ls -1 | wc -l</code></p>
<p>To count the number of files recursively in the current and all directories below it, use:</p>
<p><code>find . -type f | wc -l</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stpe.se/2008/12/count-files-recursively-in-a-directory-using-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Backup on Linux and Ubuntu</title>
		<link>http://www.stpe.se/2008/07/simple-backup-on-linux-and-ubuntu/</link>
		<comments>http://www.stpe.se/2008/07/simple-backup-on-linux-and-ubuntu/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 05:18:37 +0000</pubDate>
		<dc:creator>stefan</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.stpe.se/?p=33</guid>
		<description><![CDATA[Incremental encrypted remote backup using Amazon S3: Duplicity Incremental backup to another (remote) directory: rdiff-backup Easily available on Ubuntu using: sudo apt-get rdiff-backup Nice instructions for automating and scheduling backups. Simple backup by simply tar&#8217;ing everything, instructions on Ubuntu Forums.]]></description>
			<content:encoded><![CDATA[<p>Incremental encrypted remote backup using Amazon S3: <a href="http://www.brainonfire.net/2007/08/11/remote-encrypted-backup-duplicity-amazon-s3/">Duplicity</a></p>
<p>Incremental backup to another (remote) directory: <a href="http://www.nongnu.org/rdiff-backup/">rdiff-backup</a></p>
<p>Easily available on Ubuntu using:</p>
<blockquote><p>sudo apt-get rdiff-backup</p></blockquote>
<p><a href="http://www.ibm.com/developerworks/linux/library/l-backup/index.html">Nice instructions</a> for automating and scheduling backups.</p>
<p>Simple backup by simply tar&#8217;ing everything, instructions on <a href="http://ubuntuforums.org/showthread.php?t=35087">Ubuntu Forums</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stpe.se/2008/07/simple-backup-on-linux-and-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
