<?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>Bitwise Gamgee &#187; Linux</title>
	<atom:link href="http://blog.burcsade.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.burcsade.com</link>
	<description>I code, therefore I am</description>
	<lastBuildDate>Thu, 29 Dec 2011 10:02:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tired of iPhone hitting CPU usage to 100% on Ubuntu 10.04</title>
		<link>http://blog.burcsade.com/2011/12/29/tired-of-iphone-hitting-cpu-usage-to-100-on-ubuntu-10-04/</link>
		<comments>http://blog.burcsade.com/2011/12/29/tired-of-iphone-hitting-cpu-usage-to-100-on-ubuntu-10-04/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 10:02:59 +0000</pubDate>
		<dc:creator>laforge</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cpu usage]]></category>
		<category><![CDATA[gvfs-afc-volume-monitor]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.burcsade.com/?p=178</guid>
		<description><![CDATA[If you are one of those that plugs his iPhone or iPod Touch to the Ubuntu box and experiencing an overall slow down, try disabling the gvfs-afc-volume-monitor volume monitor. It will not affect the charging but definitely help keeping your nerve  

sudo chmod -x /lib/udev/iphone-set-info /usr/lib/gvfs/gvfs-afc-volume-monitor



Bookmark It



















Hide Sites



$$('div.d178').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); ]]></description>
		<wfw:commentRss>http://blog.burcsade.com/2011/12/29/tired-of-iphone-hitting-cpu-usage-to-100-on-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Mac OS X Lion Style Reverse Scrolling On Ubuntu</title>
		<link>http://blog.burcsade.com/2011/07/27/get-mac-os-x-lion-style-reverse-scrolling-on-ubuntu/</link>
		<comments>http://blog.burcsade.com/2011/07/27/get-mac-os-x-lion-style-reverse-scrolling-on-ubuntu/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 08:09:04 +0000</pubDate>
		<dc:creator>laforge</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MacOS]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[reverse scrolling]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.burcsade.com/?p=150</guid>
		<description><![CDATA[Just switched to new Mac OS X Lion and adjusting to the reverse scrolling feature, I have started to have problems with the Ubuntu I am using at work. Although it is kind of a mind exercise, I realized that having 2 different scrolling directions at home and at work is not for me. So [...]]]></description>
		<wfw:commentRss>http://blog.burcsade.com/2011/07/27/get-mac-os-x-lion-style-reverse-scrolling-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Monit configuration to monitor Memcached instances</title>
		<link>http://blog.burcsade.com/2010/11/09/monit-configuration-to-monitor-memcached-instances/</link>
		<comments>http://blog.burcsade.com/2010/11/09/monit-configuration-to-monitor-memcached-instances/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 11:12:04 +0000</pubDate>
		<dc:creator>laforge</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[memcached]]></category>
		<category><![CDATA[monit]]></category>
		<category><![CDATA[monit configuration]]></category>
		<category><![CDATA[monitor memcached]]></category>

		<guid isPermaLink="false">http://blog.burcsade.com/?p=99</guid>
		<description><![CDATA[Monit is a free open source utility for managing and monitoring, processes, files, directories and filesystems on a UNIX system. It is pretty easy to configure and even easier to use. It comes with a simple web server to monitor statuses of the alerts you set (with basic HTTP authentication). On Monit W&#8217;k&#8217; you can [...]]]></description>
		<wfw:commentRss>http://blog.burcsade.com/2010/11/09/monit-configuration-to-monitor-memcached-instances/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Find Large Files on Ubuntu</title>
		<link>http://blog.burcsade.com/2009/07/11/find-large-files-on-linux/</link>
		<comments>http://blog.burcsade.com/2009/07/11/find-large-files-on-linux/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 12:00:30 +0000</pubDate>
		<dc:creator>laforge</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[large file]]></category>

		<guid isPermaLink="false">http://blog.burcsade.com/?p=64</guid>
		<description><![CDATA[Here is the command that you can use to find files larger than 2G (quite usefult for application with 2G filesize limit, like INN2 compiled without large file support.)

1
find / -type f -size +2G -exec ls -lh &#123;&#125; \; &#124; awk '{ print $8 &#34;: &#34; $5 }'



Bookmark It



















Hide Sites



$$('div.d64').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); ]]></description>
		<wfw:commentRss>http://blog.burcsade.com/2009/07/11/find-large-files-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

