<?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>greg&#039;s weblog &#187; linux</title>
	<atom:link href="http://gregk.me/category/tech/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://gregk.me</link>
	<description>the more I learn, the less I know</description>
	<lastBuildDate>Wed, 16 May 2012 21:28:18 +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>Multi-file search and replace using bash</title>
		<link>http://gregk.me/2011/multi-file-search-and-replace-using-bash/</link>
		<comments>http://gregk.me/2011/multi-file-search-and-replace-using-bash/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 12:54:59 +0000</pubDate>
		<dc:creator>Greg K</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[multifile replace]]></category>
		<category><![CDATA[sed]]></category>

		<guid isPermaLink="false">http://gregk.me/?p=1115</guid>
		<description><![CDATA[Recently I tried to replace one line with multiple lines of text using Netbeans. As much as Netbeans IDE is growing on me (having recently switched from Eclipse), I couldn&#8217;t accomplish this multi-file, multi-line replace with it (yes I know about Edit > Replace in Projects&#8230; that didn&#8217;t work). I turned to bash for a [...]]]></description>
		<wfw:commentRss>http://gregk.me/2011/multi-file-search-and-replace-using-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So that&#8217;s why I don&#8217;t compile from source &#8230;</title>
		<link>http://gregk.me/2011/so-thats-why-i-dont-compile-from-source/</link>
		<comments>http://gregk.me/2011/so-thats-why-i-dont-compile-from-source/#comments</comments>
		<pubDate>Sat, 21 May 2011 12:06:16 +0000</pubDate>
		<dc:creator>Greg K</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[dependencies]]></category>
		<category><![CDATA[php5.3]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://gregk.me/?p=1015</guid>
		<description><![CDATA[I needed to compile the latest PHP5 from source so I could enable FPM support. The following packages needed installing to successfully complete compilation. My configure line was as follows: './configure' '--prefix=/etc/php' '--with-config-file-path=/etc/php' '--with-curl' '--with-pear' '--with-gd' '--with-jpeg-dir' '--with-png-dir' '--with-zlib' '--with-xpm-dir' '--with-freetype-dir' '--with-t1lib' '--with-mcrypt' '--with-mhash' '--with-mysql' '--with-mysqli' '--with-pdo-mysql' '--with-openssl' '--with-xmlrpc' '--with-xsl' '--with-bz2' '--with-gettext' '--with-fpm-user=www-data' '--with-fpm-group=www-data' '--enable-fpm' [...]]]></description>
		<wfw:commentRss>http://gregk.me/2011/so-thats-why-i-dont-compile-from-source/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Installing PDO sqlite3 support on Ubuntu</title>
		<link>http://gregk.me/2011/installing-pdo-sqlite3-support-on-ubuntu/</link>
		<comments>http://gregk.me/2011/installing-pdo-sqlite3-support-on-ubuntu/#comments</comments>
		<pubDate>Sat, 23 Apr 2011 06:41:59 +0000</pubDate>
		<dc:creator>Greg K</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[pdo]]></category>
		<category><![CDATA[pecl]]></category>
		<category><![CDATA[sqlite3]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://gregk.me/?p=983</guid>
		<description><![CDATA[I was surprised to find PDO sqlite support wasn&#8217;t included by default with PHP 5 on my Ubuntu (10.04) virtual machine. You can check which drivers are available with this small snippet of code (assuming you run this from the command line): foreach (PDO::getAvailableDrivers() as $driver) { echo $driver . PHP_EOL; } Update: Long story [...]]]></description>
		<wfw:commentRss>http://gregk.me/2011/installing-pdo-sqlite3-support-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Display active git branch in bash prompt</title>
		<link>http://gregk.me/2011/display-active-git-branch-in-bash-prompt/</link>
		<comments>http://gregk.me/2011/display-active-git-branch-in-bash-prompt/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 13:53:47 +0000</pubDate>
		<dc:creator>Greg K</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[branches]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://gregk.me/?p=751</guid>
		<description><![CDATA[If you work with git as your version control system and don&#8217;t use a GUI app in your workflow, this one liner in your ~/.profile (or ~/.bashrc on Linux) will display the active branch you&#8217;re working on when you cd to a git repo path. PS1="\u@\h:\w\$(git branch 2>/dev/null &#124; grep -e '\* ' &#124; sed [...]]]></description>
		<wfw:commentRss>http://gregk.me/2011/display-active-git-branch-in-bash-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla Firefox and Thunderbird Ubuntu Maximized Issue</title>
		<link>http://gregk.me/2008/mozilla-firefox-and-thunderbird-ubuntu-maximized-issue/</link>
		<comments>http://gregk.me/2008/mozilla-firefox-and-thunderbird-ubuntu-maximized-issue/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 10:52:37 +0000</pubDate>
		<dc:creator>Greg K</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[8.04]]></category>
		<category><![CDATA[hardy heron]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://gregk.me/2008/10/28/mozilla-firefox-and-thunderbird-ubuntu-maximized-issue/</guid>
		<description><![CDATA[Not long now until Ibex is released. However, I ran into this issue again this morning so I thought I&#8217;d document the solution for others. Occasionally when starting Firefox or Thunderbird on Ubuntu (I&#8217;m running Hardy Heron 8.04), the window will lose all decoration. No title bar, no minimize, maximize or close buttons and will [...]]]></description>
		<wfw:commentRss>http://gregk.me/2008/mozilla-firefox-and-thunderbird-ubuntu-maximized-issue/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Bash script woes</title>
		<link>http://gregk.me/2007/bash-script-woes/</link>
		<comments>http://gregk.me/2007/bash-script-woes/#comments</comments>
		<pubDate>Mon, 28 May 2007 19:00:45 +0000</pubDate>
		<dc:creator>Greg K</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[bashscript]]></category>

		<guid isPermaLink="false">http://gregk.me/2007/05/28/bash-script-woes/</guid>
		<description><![CDATA[I had an opportunity to play with Bash script on Friday. My task was to write a small deployment script to grab our server class configuration settings from subversion and rsync them to the appropriate machines. This was easy enough, a couple of commands to subversion, rsync and some glue and I&#8217;d be done. However, [...]]]></description>
		<wfw:commentRss>http://gregk.me/2007/bash-script-woes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux answer to Aero: Xgl</title>
		<link>http://gregk.me/2006/linux-answer-to-aero-xgl/</link>
		<comments>http://gregk.me/2006/linux-answer-to-aero-xgl/#comments</comments>
		<pubDate>Thu, 15 Jun 2006 22:27:58 +0000</pubDate>
		<dc:creator>Greg K</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://gregk.me/2006/06/15/linux-answer-to-aero-xgl/</guid>
		<description><![CDATA[Well it seems I was a little slow off the mark with spotting this but I stumbled across Xgl today. What is Xgl? (quote lifted from Wikipedia) Xgl is an X server architecture, started by David Reveman, layered on top of OpenGL via glitz. It takes advantage of modern graphics cards via their OpenGL drivers, [...]]]></description>
		<wfw:commentRss>http://gregk.me/2006/linux-answer-to-aero-xgl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Goodbye Fedora, Hello Slackware</title>
		<link>http://gregk.me/2006/goodbye-fedora-hello-slackware/</link>
		<comments>http://gregk.me/2006/goodbye-fedora-hello-slackware/#comments</comments>
		<pubDate>Sun, 28 May 2006 14:53:40 +0000</pubDate>
		<dc:creator>Greg K</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[kcachegrind]]></category>
		<category><![CDATA[slackware]]></category>
		<category><![CDATA[xdebug]]></category>
		<category><![CDATA[xming]]></category>

		<guid isPermaLink="false">http://gregk.me/2006/05/28/goodbye-fedora-hello-slackware/</guid>
		<description><![CDATA[So I got XDebug working a couple of weekends ago. After much fun trying to install KCacheGrind on Fedora and setting up X forwarding to my Windows box I finally saw the fruits of my labour. I was impressed with the call graph which shows the flow of execution. This is a framework I spent [...]]]></description>
		<wfw:commentRss>http://gregk.me/2006/goodbye-fedora-hello-slackware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

