<?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>neverblog.net &#187; Linux</title>
	<atom:link href="http://neverblog.net/category/technology/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://neverblog.net</link>
	<description>google</description>
	<lastBuildDate>Tue, 10 Apr 2012 14:55:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Install Siege on Mac OS X Snow Leopard</title>
		<link>http://neverblog.net/install-siege-on-mac-os-x-snow-leopard/</link>
		<comments>http://neverblog.net/install-siege-on-mac-os-x-snow-leopard/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 17:23:04 +0000</pubDate>
		<dc:creator>Vasken</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[load average]]></category>
		<category><![CDATA[load testing]]></category>
		<category><![CDATA[server load]]></category>
		<category><![CDATA[siege]]></category>

		<guid isPermaLink="false">http://neverblog.net/?p=1383</guid>
		<description><![CDATA[I recently needed to install Siege on my MacBookPro. Here&#8217;s what I did: wget ftp://ftp.joedog.org/pub/siege/siege-latest.tar.gz tar -xvf siege-latest.tar.gz cd siege-2.70/ ./configure &#038;&#038; make &#038;&#038; make install That&#8217;s it! Now you should be able to do something like this: siege -c50 http://yourserver.com That will simulate 50 concurrent users hitting that particular URL. After siege runs for [...]]]></description>
		<wfw:commentRss>http://neverblog.net/install-siege-on-mac-os-x-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fixing eventfd() failed error after YUM nginx upgrade</title>
		<link>http://neverblog.net/fixing-eventfd-failed-error-after-yum-nginx-upgrade/</link>
		<comments>http://neverblog.net/fixing-eventfd-failed-error-after-yum-nginx-upgrade/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 01:24:37 +0000</pubDate>
		<dc:creator>Vasken</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[eventfd]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://neverblog.net/?p=1284</guid>
		<description><![CDATA[After running a Nessus scan on my VPS last night, I ran a yum update to fix a few security holes patched in newer software packages. It was pretty late, so I went to sleep after the upgrade, because everything seemed to be working fine. This morning, when I went to log in to this [...]]]></description>
		<wfw:commentRss>http://neverblog.net/fixing-eventfd-failed-error-after-yum-nginx-upgrade/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>502 Bad Gateway with phpMyAdmin and nginx</title>
		<link>http://neverblog.net/502-bad-gateway-with-phpmyadmin-and-nginx/</link>
		<comments>http://neverblog.net/502-bad-gateway-with-phpmyadmin-and-nginx/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 22:06:16 +0000</pubDate>
		<dc:creator>Vasken</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[502 error]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://neverblog.net/?p=1067</guid>
		<description><![CDATA[I recently ran into an issue with phpMyAdmin served via nginx. When I would click on some of the databases on the sidebar in the home phpMyAdmin screen, the main frame would return a 502 Bad Gateway from nginx. The nginx error.log revealed an &#8220;upstream sent too big header while reading response header from upstream&#8221; [...]]]></description>
		<wfw:commentRss>http://neverblog.net/502-bad-gateway-with-phpmyadmin-and-nginx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filtering numerically in a log file</title>
		<link>http://neverblog.net/filtering-numerically-in-a-log-file/</link>
		<comments>http://neverblog.net/filtering-numerically-in-a-log-file/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 14:46:22 +0000</pubDate>
		<dc:creator>Vasken</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[awk]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[if statement]]></category>
		<category><![CDATA[log]]></category>

		<guid isPermaLink="false">http://neverblog.net/?p=1058</guid>
		<description><![CDATA[I recently needed to filter some log data to find all the entries that exceeded a certain numeric value (in my case, 100). A little Googling yielded the following solution: less /web/temp/apache_procs.log &#124; awk '{ if( $6 >= 100) print $1 " " $2 " " $6}' The first half of this command obviously opens [...]]]></description>
		<wfw:commentRss>http://neverblog.net/filtering-numerically-in-a-log-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Become root on Mac OS X Snow Leopard (or Leopard)</title>
		<link>http://neverblog.net/become-root-on-mac-os-x-snow-leopard-or-leopard/</link>
		<comments>http://neverblog.net/become-root-on-mac-os-x-snow-leopard-or-leopard/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 18:29:59 +0000</pubDate>
		<dc:creator>Vasken</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac Tips]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[sudo]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://neverblog.net/become-root-on-mac-os-x-snow-leopard-or-leopard/</guid>
		<description><![CDATA[Here&#8217;s a little tip I use all the time, but have yet to commit to the blogosphere. If you&#8217;re trying to work on the Terminal command line in 10.6 or 10.5, it&#8217;s annoying to be prompted for your password to sudo every 5 minutes, and it gets confusing who&#8217;s running what commands. If you just [...]]]></description>
		<wfw:commentRss>http://neverblog.net/become-root-on-mac-os-x-snow-leopard-or-leopard/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/

Page Caching using memcached
Object Caching 786/849 objects using apc

Served from: neverblog.net @ 2012-05-17 18:39:20 -->
