<?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>dead.at &#124; nowhere useful &#187; Linux</title>
	<atom:link href="http://wp.dead.at/category/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://wp.dead.at</link>
	<description>Just my WordPress weblog</description>
	<lastBuildDate>Thu, 18 Aug 2011 13:49:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Apache2 SSL Error: ssl_error_rx_record_too_long</title>
		<link>http://wp.dead.at/2011/07/apache2-ssl-error-ssl_error_rx_record_too_long</link>
		<comments>http://wp.dead.at/2011/07/apache2-ssl-error-ssl_error_rx_record_too_long#comments</comments>
		<pubDate>Wed, 13 Jul 2011 07:37:12 +0000</pubDate>
		<dc:creator>wese</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://wp.dead.at/?p=121</guid>
		<description><![CDATA[To fix this you must not use a wildcard domain for your vhost and make sure it&#8217;s your actual server ip. #Wrong: &#60;VirtualHost _default_:443&#62; #Right: &#60;VirtualHost 10.1.1.5:443&#62; If this doesn&#8217;t fix your problem check the following: Did you set, usually done per vhost: SSLEngine on Cert/Key correctly generated Hope that helps some of you out.]]></description>
		<wfw:commentRss>http://wp.dead.at/2011/07/apache2-ssl-error-ssl_error_rx_record_too_long/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improve SATA Performance by disabling command queuing.</title>
		<link>http://wp.dead.at/2009/04/improve-sata-performance-by-disabling-command-queuing</link>
		<comments>http://wp.dead.at/2009/04/improve-sata-performance-by-disabling-command-queuing#comments</comments>
		<pubDate>Wed, 08 Apr 2009 06:07:08 +0000</pubDate>
		<dc:creator>wese</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[SATA]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://wp.dead.at/2010/02/improve-sata-performance-by-disabling-command-queuing</guid>
		<description><![CDATA[Just a short and simple way to improve reading performance for SATA Drives. When you disable the command queueing on the drive, you will allow the kernel to do this solely on its own, which results in overall better performance. This example on my Server shows an 30mb/s increase, which is for real. # Default [...]]]></description>
		<wfw:commentRss>http://wp.dead.at/2009/04/improve-sata-performance-by-disabling-command-queuing/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to: Backup to FTP with NCFTP</title>
		<link>http://wp.dead.at/2008/08/how-backup-ftp-ncftp</link>
		<comments>http://wp.dead.at/2008/08/how-backup-ftp-ncftp#comments</comments>
		<pubDate>Thu, 14 Aug 2008 05:07:08 +0000</pubDate>
		<dc:creator>wese</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://wp.dead.at/?p=96</guid>
		<description><![CDATA[Showing an easy way of copying your files to an remote FTP Server. Install ncftpapt-get install ncftp apt-get install ncftp Create ncftp-serverconfig /root/.ncftp/backupserver.cfg host &#60;server-ip/hostname&#62; user &#60;username&#62; pass &#60;password&#62; Create CronJob /etc/cron.d/backup 40 2 * * *     root     ncftpput -f /root/.ncftp/backupserver.cfg -vZmRF /ftp-directory/ /local-backup/* 1&#62;/dev/null This way you will recieve warnings/errors. Flags -f [...]]]></description>
		<wfw:commentRss>http://wp.dead.at/2008/08/how-backup-ftp-ncftp/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to: pdf-lib 4.0.1 on Debian Etch</title>
		<link>http://wp.dead.at/2008/08/how-pdf-lib-401-debian-etch</link>
		<comments>http://wp.dead.at/2008/08/how-pdf-lib-401-debian-etch#comments</comments>
		<pubDate>Fri, 08 Aug 2008 06:07:08 +0000</pubDate>
		<dc:creator>wese</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://wp.dead.at/?p=68</guid>
		<description><![CDATA[This is just a short how to to get pdf-lib 4.0.1 (freeware) working on Debian Etch, without compiling php from source. I&#8217;m going to use pear to compile the php &#8211; pdf Extension. 1. Install php4 / php5 for apache if you havent done already # Apache1 apt-get install libapache-mod-php4 libapache-mod-php4 # Apache2 apt-get install [...]]]></description>
		<wfw:commentRss>http://wp.dead.at/2008/08/how-pdf-lib-401-debian-etch/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Munin Plugin: Openvz V2</title>
		<link>http://wp.dead.at/2008/08/munin-plugin-openvz-v2</link>
		<comments>http://wp.dead.at/2008/08/munin-plugin-openvz-v2#comments</comments>
		<pubDate>Fri, 08 Aug 2008 06:07:08 +0000</pubDate>
		<dc:creator>wese</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[syscp]]></category>

		<guid isPermaLink="false">http://wp.dead.at/?p=74</guid>
		<description><![CDATA[I have updated my Munin Plugin so it will nolonger depend on PHP to be installed. It will allow you to easily monitor your running VE&#8217;s stats with Munin. Installation On Debian Etch Upload the attached script to your server and place it in your shared munin plugins directory /usr/share/munin/plugins/openvz_ Configure munin to run the [...]]]></description>
		<wfw:commentRss>http://wp.dead.at/2008/08/munin-plugin-openvz-v2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Use SysCP Panel with Nginx + Apache2 * Update 2</title>
		<link>http://wp.dead.at/2008/08/how-use-syscp-panel-nginx-apache2-update-2</link>
		<comments>http://wp.dead.at/2008/08/how-use-syscp-panel-nginx-apache2-update-2#comments</comments>
		<pubDate>Fri, 08 Aug 2008 06:07:08 +0000</pubDate>
		<dc:creator>wese</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[syscp]]></category>

		<guid isPermaLink="false">http://wp.dead.at/?p=80</guid>
		<description><![CDATA[Please make sure your familiar with SysCP, Apache and your Server. Since i&#8217;m using SysCP to manage my Vhosts i created a script to do the Nginx SiteConfiguration. Nginx Configuration&#8217;s /etc/nginx/syscp_sites.conf &#8211; This file will be dynamicaly generated. /etc/nginx/proxy.conf proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; client_max_body_size 10m; client_body_buffer_size 128k; proxy_connect_timeout [...]]]></description>
		<wfw:commentRss>http://wp.dead.at/2008/08/how-use-syscp-panel-nginx-apache2-update-2/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to: Export + Import Linux Users.</title>
		<link>http://wp.dead.at/2008/08/how-to-export-import-linux-users</link>
		<comments>http://wp.dead.at/2008/08/how-to-export-import-linux-users#comments</comments>
		<pubDate>Fri, 08 Aug 2008 06:07:08 +0000</pubDate>
		<dc:creator>wese</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://wp.dead.at/?p=87</guid>
		<description><![CDATA[Here is an simple way of exporting your Local Users and import them back somewhere else. To retain the user password, use the -p flag which will allow the use of a pre-encrypted password. Command join -t":" -11 -21 /etc/passwd /etc/shadow&#124;awk -F":" '{if($8 !~ /^!/ &#38;&#38; $8 !~ /^\*/ &#38;&#38; $3 &#62; 0) { gsub(/\$/,"\\$",$8); print("useradd [...]]]></description>
		<wfw:commentRss>http://wp.dead.at/2008/08/how-to-export-import-linux-users/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/30 queries in 0.030 seconds using disk: basic
Object Caching 513/577 objects using disk: basic

Served from: wp.dead.at @ 2012-02-07 11:42:38 -->
