<?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>BSDnexus</title>
	<atom:link href="http://www.bsdnexus.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bsdnexus.com/blog</link>
	<description>&#34;UBER&#34; means I don&#039;t drink the coffee ... I chew the beans instead!!!</description>
	<lastBuildDate>Tue, 05 Mar 2013 09:50:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Pipe filenames to tar</title>
		<link>http://www.bsdnexus.com/blog/articles/pipe-filenames-to-tar</link>
		<comments>http://www.bsdnexus.com/blog/articles/pipe-filenames-to-tar#comments</comments>
		<pubDate>Tue, 05 Mar 2013 09:50:15 +0000</pubDate>
		<dc:creator>wintellect</dc:creator>
				<category><![CDATA[Oneliner]]></category>
		<category><![CDATA[tar]]></category>

		<guid isPermaLink="false">http://www.bsdnexus.com/blog/?p=322</guid>
		<description><![CDATA[Simple oneliner that demonstrates the principle of how to specify the files you wish tar to archive (or extract) by piping to it: cat filenames.txt &#124; tar cvzf ~/try.tgz -T -]]></description>
				<content:encoded><![CDATA[<p>Simple oneliner that demonstrates the principle of how to specify the files you wish tar to archive (or extract) by piping to it:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cat</span> filenames.txt <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tar</span> cvzf ~<span style="color: #000000; font-weight: bold;">/</span>try.tgz <span style="color: #660033;">-T</span> -</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bsdnexus.com/blog/articles/pipe-filenames-to-tar/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PostgreSQL CSV output from the CLI</title>
		<link>http://www.bsdnexus.com/blog/articles/postgresql-csv-output-from-the-cli</link>
		<comments>http://www.bsdnexus.com/blog/articles/postgresql-csv-output-from-the-cli#comments</comments>
		<pubDate>Wed, 30 Jan 2013 11:55:44 +0000</pubDate>
		<dc:creator>wintellect</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Oneliner]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[postgresql]]></category>

		<guid isPermaLink="false">http://www.bsdnexus.com/blog/?p=319</guid>
		<description><![CDATA[Get CSV output from a postgreSQL database directly from the CLI: 1 psql -A -F ',' -t -c 'select * from tablename;' You can then, clearly, redirect the output as desired.]]></description>
				<content:encoded><![CDATA[<p>Get CSV output from a postgreSQL database directly from the CLI:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">psql <span style="color: #660033;">-A</span> <span style="color: #660033;">-F</span> <span style="color: #ff0000;">','</span> <span style="color: #660033;">-t</span> <span style="color: #660033;">-c</span> <span style="color: #ff0000;">'select * from tablename;'</span></pre></td></tr></table></div>

<p>You can then, clearly, redirect the output as desired.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bsdnexus.com/blog/articles/postgresql-csv-output-from-the-cli/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parse JSON on the CLI</title>
		<link>http://www.bsdnexus.com/blog/articles/parse-json-on-the-cli</link>
		<comments>http://www.bsdnexus.com/blog/articles/parse-json-on-the-cli#comments</comments>
		<pubDate>Mon, 26 Nov 2012 10:35:29 +0000</pubDate>
		<dc:creator>wintellect</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Oneliner]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.bsdnexus.com/blog/?p=312</guid>
		<description><![CDATA[Simple one-liner to parse JSON on the command line: 1 cat fileof.json &#124; python -mjson.tool]]></description>
				<content:encoded><![CDATA[<p>Simple one-liner to parse JSON on the command line:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="python" style="font-family:monospace;">cat fileof.<span style="color: black;">json</span> | python -mjson.<span style="color: black;">tool</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bsdnexus.com/blog/articles/parse-json-on-the-cli/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Config cleanup</title>
		<link>http://www.bsdnexus.com/blog/articles/config-cleanup</link>
		<comments>http://www.bsdnexus.com/blog/articles/config-cleanup#comments</comments>
		<pubDate>Sat, 05 May 2012 15:38:35 +0000</pubDate>
		<dc:creator>wintellect</dc:creator>
				<category><![CDATA[Oneliner]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[awk]]></category>

		<guid isPermaLink="false">http://www.bsdnexus.com/blog/?p=300</guid>
		<description><![CDATA[A one liner to remove all stale pkg config files on a system after the main programs have been removed. WARNING: There's no going back so make sure you do want all these config files removed and that they're not being used in any way. 1 apt-get purge `dpkg -l &#124; awk '/^rc/ &#123;foo = [...]]]></description>
				<content:encoded><![CDATA[<p>A one liner to remove all stale pkg config files on a system after the main programs have been removed.</p>
<p><strong>WARNING</strong>: There's no going back so make sure you do want all these config files removed and that they're not being used in any way.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="awk" style="font-family:monospace;">apt<span style="color:black;">-</span>get purge `dpkg <span style="color:black;">-</span>l | awk '<span style="color:black;">/^</span>rc<span style="color:black;">/</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>foo = foo <span style="color:#000088;">$2</span> <span style="color: #ff0000;">&quot; &quot;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> <span style="color: #C20CB9; font-weight: bold;">END</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #0BD507; font-weight: bold;">print</span> foo<span style="color: #7a0874; font-weight: bold;">&#125;</span>'`</pre></td></tr></table></div>

<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bsdnexus.com/blog/articles/config-cleanup/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generating SSL certificates</title>
		<link>http://www.bsdnexus.com/blog/articles/generating-ssl-certificates</link>
		<comments>http://www.bsdnexus.com/blog/articles/generating-ssl-certificates#comments</comments>
		<pubDate>Mon, 29 Aug 2011 13:27:03 +0000</pubDate>
		<dc:creator>wintellect</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[csr]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://www.bsdnexus.com/blog/?p=284</guid>
		<description><![CDATA[Generate server private key The first task is to create a server private key. In this example, a key of 1024 bits is created and the passphrase is encrypted using tripple DES: openssl genrsa -des3 -out server.key 1024 To create a  key without a passphrase (so there is no need to enter a passphrase when [...]]]></description>
				<content:encoded><![CDATA[<h2>Generate server private key</h2>
<p>The first task is to create a server private key. In this example, a key of 1024 bits is created and the passphrase is encrypted using tripple DES:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;">openssl genrsa <span style="color: #660033;">-des3</span> <span style="color: #660033;">-out</span> server.key <span style="color: #000000;">1024</span></pre></td></tr></table></div>

<p>To create a  key without a passphrase (so there is no need to enter a passphrase when the Apache server starts for example):</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;">openssl genrsa <span style="color: #660033;">-out</span> server.key <span style="color: #000000;">1024</span></pre></td></tr></table></div>

<p>or to remove a passphrase in an already existent file:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;">openssl rsa <span style="color: #660033;">-in</span> server.key <span style="color: #660033;">-out</span> server.key.insecure
<span style="color: #c20cb9; font-weight: bold;">mv</span> server.key server.key.secure
<span style="color: #c20cb9; font-weight: bold;">mv</span> server.key.insecure server.key</pre></td></tr></table></div>

<h2>Generate certificate signed request (CSR)</h2>
<p>The CSR is the file required by the certificate issuer to sign and issue a certificate and is generated as follows:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;">openssl req <span style="color: #660033;">-new</span> <span style="color: #660033;">-key</span> server.key <span style="color: #660033;">-out</span> server.csr</pre></td></tr></table></div>

<p>This requires certain bits of data to be entered:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;">Country Name <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">2</span> letter code<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>AU<span style="color: #7a0874; font-weight: bold;">&#93;</span>: GB
State or Province Name <span style="color: #7a0874; font-weight: bold;">&#40;</span>full name<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>Some-State<span style="color: #7a0874; font-weight: bold;">&#93;</span>: Yorks
Locality Name <span style="color: #7a0874; font-weight: bold;">&#40;</span>eg, city<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>: York
Organization Name <span style="color: #7a0874; font-weight: bold;">&#40;</span>eg, company<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>Internet Widgits Pty Ltd<span style="color: #7a0874; font-weight: bold;">&#93;</span>: BSDnexus
Organizational Unit Name <span style="color: #7a0874; font-weight: bold;">&#40;</span>eg, section<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>: IT
Common Name <span style="color: #7a0874; font-weight: bold;">&#40;</span>eg, YOUR name<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>: www.bsdnexus.com
Email Address <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>:</pre></td></tr></table></div>

<p>The completed file server.csr is ascii based and can be submitted to the CA in a variety of forms who will then issue the server.crt file</p>
<h2>Self signed certificate</h2>
<p>If the website is a private one, it is possible to self-sign a certificate, however, this leads to browsers complaining until an exception is applied. Currently, the following pages are displayed by two well known browsers:</p>
<div id="attachment_290" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.bsdnexus.com/blog/wp-content/uploads/2011/08/FF_cert_issue.jpg"><img class="size-medium wp-image-290" title="FF_cert_issue" src="http://www.bsdnexus.com/blog/wp-content/uploads/2011/08/FF_cert_issue-300x183.jpg" alt="Firefox indicating an SSL certificate issue" width="300" height="183" /></a><p class="wp-caption-text">Firefox and SSL cert issue</p></div>
<div id="attachment_291" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.bsdnexus.com/blog/wp-content/uploads/2011/08/IE_cert_issue.jpg"><img class="size-medium wp-image-291 " title="IE_cert_issue" src="http://www.bsdnexus.com/blog/wp-content/uploads/2011/08/IE_cert_issue-300x135.jpg" alt="Firefox indicating an SSL certificate issue" width="300" height="135" /></a><p class="wp-caption-text">IE and SSL cert issue</p></div>
<p>SHould you still wish to sign your own CSR to generate the server.crt file, the following command can be used:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;">openssl x509 <span style="color: #660033;">-req</span> <span style="color: #660033;">-days</span> <span style="color: #000000;">365</span> <span style="color: #660033;">-in</span> server.csr <span style="color: #660033;">-signkey</span> server.key <span style="color: #660033;">-out</span> server.crt</pre></td></tr></table></div>

<h2>Install certificates</h2>
<p>The files can be stored anywhere on the system, however, under /etc/ssl seems customary. Ensure the files are only readable by root. If a CA has signed your CSR they will provide two files (names may be slightly different) "server.crt" and "server.ca-bundle". If you have self-signed, merely omit the reference to the .ca-bundle file.</p>
<p>For apache a virtual host entry could look as follows (notice the references to the files):</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="" style="font-family:monospace;">&lt;VirtualHost _default_:<span style="">443</span>&gt;
  ServerAdmin webmaster@bsdnexus.com
  DocumentRoot /usr/local/apache/share/htdocs
  ServerName www.bsdnexus.com
  SSLEngine on
  SSLCertificateKeyFile /etc/ssl/bsdnexus/server.key
  SSLCertificateFile /etc/ssl/bsdnexus/server.crt
  SSLCertificateChainFile /etc/ssl/bsdnexus/server.ca-bundle
&lt;/VirtualHost&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bsdnexus.com/blog/articles/generating-ssl-certificates/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Files without comments</title>
		<link>http://www.bsdnexus.com/blog/articles/files-without-comments</link>
		<comments>http://www.bsdnexus.com/blog/articles/files-without-comments#comments</comments>
		<pubDate>Mon, 22 Aug 2011 07:15:01 +0000</pubDate>
		<dc:creator>wintellect</dc:creator>
				<category><![CDATA[Oneliner]]></category>
		<category><![CDATA[awk]]></category>
		<category><![CDATA[cat]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.bsdnexus.com/blog/?p=276</guid>
		<description><![CDATA[Use *awk to remove comment lines that start with a '#' making it easier to view the actual configurations/settings cat /path/to/file &#124; awk '!/^#/ {print $0}' [Edit] To remove the blank lines as well as the comments, alter the awk command to awk '!/^#&#124;^$/ {print $0}']]></description>
				<content:encoded><![CDATA[<p>Use *awk to remove comment lines that start with a '#' making it easier to view the actual configurations/settings</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cat</span> <span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #ff0000;">'!/^#/ {print $0}'</span></pre></td></tr></table></div>

<p><strong>[Edit]</strong></p>
<p>To remove the blank lines as well as the comments, alter the awk command to</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #ff0000;">'!/^#|^$/ {print $0}'</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bsdnexus.com/blog/articles/files-without-comments/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch convert audio files</title>
		<link>http://www.bsdnexus.com/blog/articles/batch-convert-audio-files</link>
		<comments>http://www.bsdnexus.com/blog/articles/batch-convert-audio-files#comments</comments>
		<pubDate>Wed, 10 Aug 2011 07:47:42 +0000</pubDate>
		<dc:creator>wintellect</dc:creator>
				<category><![CDATA[Oneliner]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.bsdnexus.com/blog/?p=272</guid>
		<description><![CDATA[Simple one-liner to batch convert one type of audio file to another using ffmpeg. The example converts .ogg to .mp3 files: for x in *.ogg; do ffmpeg -i &#34;$x&#34; &#34;`basename &#34;$x&#34; .ogg`.mp3&#34;; done]]></description>
				<content:encoded><![CDATA[<p>Simple one-liner to batch convert one type of audio file to another using ffmpeg. The example converts .ogg to .mp3 files:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">for</span> x <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">*</span>.ogg; <span style="color: #000000; font-weight: bold;">do</span> <span style="color: #c20cb9; font-weight: bold;">ffmpeg</span> <span style="color: #660033;">-i</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$x</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #780078;">`basename &quot;$x&quot; .ogg`</span>.mp3&quot;</span>; <span style="color: #000000; font-weight: bold;">done</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bsdnexus.com/blog/articles/batch-convert-audio-files/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>dpkg tips</title>
		<link>http://www.bsdnexus.com/blog/articles/dpkg-tips</link>
		<comments>http://www.bsdnexus.com/blog/articles/dpkg-tips#comments</comments>
		<pubDate>Fri, 05 Aug 2011 07:32:39 +0000</pubDate>
		<dc:creator>wintellect</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.bsdnexus.com/blog/?p=256</guid>
		<description><![CDATA[dpkg is package manager for Debian, and found in most of its derivatives. Programs such as apt and aptitude are front-ends to dpkg. Following are some handy to know dpkg commands. Package Listing To display all currently installed packages (including version numbers) or a specfic package: dpkg -l &#91;package_name&#93; Package Querying To show details about [...]]]></description>
				<content:encoded><![CDATA[<p>dpkg is package manager for Debian, and found in most of its derivatives. Programs such as apt and aptitude are front-ends to dpkg. Following are some handy to know dpkg commands.</p>
<h2>Package Listing</h2>
<p>To display all currently installed packages (including version numbers) or a specfic package:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-l</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>package_name<span style="color: #7a0874; font-weight: bold;">&#93;</span></pre></td></tr></table></div>

<h2>Package Querying</h2>
<p>To show details about a specific package:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-p</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>package_name<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></td></tr></table></div>

<p>To find out which files are installed by a package:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-L</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>package_name<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></td></tr></table></div>

<p>To find out which package installs a particular file:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-S</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #000000; font-weight: bold;">|</span> part_of_filename<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></td></tr></table></div>

<h2>Package Removal</h2>
<p>To remove a package but retain the configuration files:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-r</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>package_name<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></td></tr></table></div>

<p>To remove a package <em>including</em> the configuration files:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-P</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>package_name<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bsdnexus.com/blog/articles/dpkg-tips/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AcerAspireOne Touchpad on Debian</title>
		<link>http://www.bsdnexus.com/blog/articles/aceraspireone-touchpad-on-debian</link>
		<comments>http://www.bsdnexus.com/blog/articles/aceraspireone-touchpad-on-debian#comments</comments>
		<pubDate>Sun, 10 Jul 2011 22:01:37 +0000</pubDate>
		<dc:creator>wintellect</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[aceraspireone]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[touchpad]]></category>

		<guid isPermaLink="false">http://www.bsdnexus.com/blog/?p=241</guid>
		<description><![CDATA[When installing Debian "Testing" on the AcerAspireOne the touchpad does not register a single tap of the pad as a left mouse click. To rectify this add the following line to the file /etc/modprobe.d/psmouse.conf options psmouse proto=imps According to this Ubuntu source, some setups may be better with exps instead of imps.]]></description>
				<content:encoded><![CDATA[<p>When installing Debian "Testing" on the AcerAspireOne the touchpad does not register a single tap of the pad as a left mouse click. To rectify this add the following line to the file /etc/modprobe.d/psmouse.conf</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;">options psmouse <span style="color: #007800;">proto</span>=imps</pre></td></tr></table></div>

<p>According to <a href="http://ubuntuforums.org/archive/index.php/t-1472195.html">this Ubuntu source</a>, some setups may be better with exps instead of imps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bsdnexus.com/blog/articles/aceraspireone-touchpad-on-debian/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>apt autoclean</title>
		<link>http://www.bsdnexus.com/blog/articles/apt-autoclean</link>
		<comments>http://www.bsdnexus.com/blog/articles/apt-autoclean#comments</comments>
		<pubDate>Tue, 05 Jul 2011 08:27:16 +0000</pubDate>
		<dc:creator>wintellect</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[aptitude]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.bsdnexus.com/blog/?p=234</guid>
		<description><![CDATA[To have apt-get/aptitude auto-clean all the downloaded .deb files after running an "update" (to keep as much free space as possible) simply add the following to /etc/apt/apt.conf.d/00autoclean Aptitude::Autoclean-After-Update;]]></description>
				<content:encoded><![CDATA[<p>To have apt-get/aptitude auto-clean all the downloaded .deb files after running an "update" (to keep as much free space as possible) simply add the following to /etc/apt/apt.conf.d/00autoclean</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;">Aptitude::Autoclean-After-Update;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bsdnexus.com/blog/articles/apt-autoclean/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
