<?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>Chris Carey &#187; Linux</title>
	<atom:link href="http://chriscarey.com/wordpress/category/Linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://chriscarey.com/wordpress</link>
	<description>Software Developer, Salt Lake City</description>
	<lastBuildDate>Sun, 22 Aug 2010 23:24:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Netatalk with Debian or Ubuntu</title>
		<link>http://chriscarey.com/wordpress/2010/08/22/netatalk-with-debian-or-ubuntu/</link>
		<comments>http://chriscarey.com/wordpress/2010/08/22/netatalk-with-debian-or-ubuntu/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 23:10:42 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=591</guid>
		<description><![CDATA[By default, it is compiled without SSL support. Mac clients will not be able to connect. Here is how you get Netatalk working on Debian or Ubuntu the clean way, with custom compiled packages. apt-get source netatalk apt-get install devscripts fakeroot libssl-dev cracklib2-dev apt-get build-dep netatalk cd netatalk-2.0.3 DEB_BUILD_OPTIONS=ssl debuild dpkg -i ../netatalk*.deb If you [...]]]></description>
			<content:encoded><![CDATA[<p>By default, it is compiled without SSL support. Mac clients will not be able to connect. Here is how you get Netatalk working on Debian or Ubuntu the clean way, with custom compiled packages.</p>
<pre class="brush: bash;">
apt-get source netatalk
apt-get install devscripts fakeroot libssl-dev cracklib2-dev
apt-get build-dep netatalk
cd netatalk-2.0.3
DEB_BUILD_OPTIONS=ssl debuild
dpkg -i ../netatalk*.deb
</pre>
<p>If you get an error message about keysigning (when building), this command may help:</p>
<pre class="brush: bash;">
DEB_BUILD_OPTIONS=ssl dpkg-buildpackage -us -uc
</pre>
<p>http://www.blackmac.de/archives/58-Make-Netatalk-talk-to-Leopard-Mac-OS-X-10.5.html</p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2010/08/22/netatalk-with-debian-or-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wireless on Dell Mini 10v with Ubuntu 10.04 Netbook Remix</title>
		<link>http://chriscarey.com/wordpress/2010/05/21/wireless-on-dell-mini-10v-with-ubuntu-10-04-netbook-remix/</link>
		<comments>http://chriscarey.com/wordpress/2010/05/21/wireless-on-dell-mini-10v-with-ubuntu-10-04-netbook-remix/#comments</comments>
		<pubDate>Sat, 22 May 2010 03:37:47 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[10V]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/2010/05/21/wireless-on-dell-mini-10v-with-ubuntu-10-04-netbook-remix/</guid>
		<description><![CDATA[Here are the commands to get wireless working: #!/bin/bash sudo aptitude update sudo aptitude install bcmwl-kernel-source]]></description>
			<content:encoded><![CDATA[<p>Here are the commands to get wireless working:</p>
<pre class="brush: bash;">
#!/bin/bash
sudo aptitude update
sudo aptitude install bcmwl-kernel-source
</pre>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2010/05/21/wireless-on-dell-mini-10v-with-ubuntu-10-04-netbook-remix/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Netatalk on Intrepid once again</title>
		<link>http://chriscarey.com/wordpress/2009/04/17/netatalk-on-intrepid-once-again/</link>
		<comments>http://chriscarey.com/wordpress/2009/04/17/netatalk-on-intrepid-once-again/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 16:56:47 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://chriscarey.com/blog/?p=372</guid>
		<description><![CDATA[The deb file I used to use isnt working. But this script does work for compiling netatalk with SSL support so it actually works: mkdir -p ~/src/netatalk cd ~/src/netatalk sudo apt-get install devscripts cracklib2-dev dpkg-dev libssl-dev build-essential sudo apt-get build-dep netatalk apt-get source netatalk cd netatalk-2.0.3 DEB_BUILD_OPTIONS=ssl dpkg-buildpackage -us -uc sudo debi echo &#8220;netatalk hold&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>The deb file I used to use isnt working. But this script does work for compiling netatalk with SSL support so it actually works:</p>
<p><bash><br />
mkdir -p ~/src/netatalk<br />
cd ~/src/netatalk<br />
sudo apt-get install devscripts cracklib2-dev dpkg-dev libssl-dev build-essential<br />
sudo apt-get build-dep netatalk<br />
apt-get source netatalk<br />
cd netatalk-2.0.3<br />
DEB_BUILD_OPTIONS=ssl dpkg-buildpackage -us -uc<br />
sudo debi</p>
<p>echo &#8220;netatalk hold&#8221; | sudo dpkg &#8211;set-selections<br />
</bash></p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2009/04/17/netatalk-on-intrepid-once-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recursive grep search with filenames and line numbers</title>
		<link>http://chriscarey.com/wordpress/2009/02/18/recursive-grep-search-with-filenames-and-line-numbers/</link>
		<comments>http://chriscarey.com/wordpress/2009/02/18/recursive-grep-search-with-filenames-and-line-numbers/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 16:56:16 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://chriscarey.com/blog/?p=364</guid>
		<description><![CDATA[Slack and Bill at worked helped me out with a nice recursive grep search. It is now my favorite: egrep -irHn &#60;searchterm&#62; &#60;path&#62;]]></description>
			<content:encoded><![CDATA[<p>Slack and Bill at worked helped me out with a nice recursive grep search. It is now my favorite:</p>
<p style="padding-left: 30px;">egrep -irHn &lt;searchterm&gt; &lt;path&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2009/02/18/recursive-grep-search-with-filenames-and-line-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mounting a lvm crypted device via the command line</title>
		<link>http://chriscarey.com/wordpress/2009/01/19/mounting-a-lvm-crypted-device-via-the-command-line/</link>
		<comments>http://chriscarey.com/wordpress/2009/01/19/mounting-a-lvm-crypted-device-via-the-command-line/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 21:06:37 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://chriscarey.com/blog/?p=350</guid>
		<description><![CDATA[#cryptsetup luksOpen /dev/HARDDISK DEVICENAME #lvmdiskscan #vgchange -ay #ls -l /dev/mapper #mkdir /media/crypt #mount /dev/mapper/DEVICENAME /media/crypt]]></description>
			<content:encoded><![CDATA[<p>#cryptsetup luksOpen /dev/HARDDISK DEVICENAME<br />
#lvmdiskscan<br />
#vgchange -ay<br />
#ls -l /dev/mapper<br />
#mkdir /media/crypt<br />
#mount /dev/mapper/DEVICENAME /media/crypt</p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2009/01/19/mounting-a-lvm-crypted-device-via-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AFP File Sharing from Linux to Mac</title>
		<link>http://chriscarey.com/wordpress/2008/12/12/afp-file-sharing-from-linux-to-mac/</link>
		<comments>http://chriscarey.com/wordpress/2008/12/12/afp-file-sharing-from-linux-to-mac/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 19:02:29 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://chriscarey.com/blog/?p=334</guid>
		<description><![CDATA[I posted something on this a while back, and someone in the comments posted a great howto. I felt it is worthy of another link so it is easy to find. This basically lets your Linux box share files using the AFP protocol which is very fast and the native file sharing protocol for Mac [...]]]></description>
			<content:encoded><![CDATA[<p>I posted something on this a while back, and someone in the comments posted a great howto. I felt it is worthy of another link so it is easy to find. This basically lets your Linux box share files using the AFP protocol which is very fast and the native file sharing protocol for Mac OS X.</p>
<p>http://www.kremalicious.com/2008/06/ubuntu-as-mac-file-server-and-time-machine-volume/</p>
<p>This person built a DEB package for modified netatalk which works on Ubuntu Ibex:</p>
<p>http://gpz500.wordpress.com/2008/09/27/lairone-al-servizio-del-leopardo/</p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2008/12/12/afp-file-sharing-from-linux-to-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP phpinfo() on the fly</title>
		<link>http://chriscarey.com/wordpress/2008/11/14/php-phpinfo-on-the-fly/</link>
		<comments>http://chriscarey.com/wordpress/2008/11/14/php-phpinfo-on-the-fly/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 21:21:47 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://chriscarey.com/blog/?p=304</guid>
		<description><![CDATA[Here is a little trick to get phpinfo() information on the fly. You need php-cli installed (sometimes its called php4-cli or php5-cli) echo "&#60;?php phpinfo(); ?&#62;" &#124; php4 echo "&#60;?php phpinfo(); ?&#62;" &#124; php5 echo "&#60;?php phpinfo(); ?&#62;" &#124; php5-cli etc You can also tack on a &#124; grep at the end if you want [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a little trick to get phpinfo() information on the fly.</p>
<p>You need php-cli installed (sometimes its called php4-cli or php5-cli)</p>
<p><code><br />
echo "&lt;?php phpinfo(); ?&gt;" | php4<br />
echo "&lt;?php phpinfo(); ?&gt;" | php5<br />
echo "&lt;?php phpinfo(); ?&gt;" | php5-cli<br />
</code></p>
<p>etc</p>
<p>You can also tack on a | grep at the end if you want to filter for certain words.</p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2008/11/14/php-phpinfo-on-the-fly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>VMWare Server 1.0.7 on Ubuntu Intrepid Ibex 8.10</title>
		<link>http://chriscarey.com/wordpress/2008/10/30/vmware-server-107-on-ubuntu-intrepid-ibex-810/</link>
		<comments>http://chriscarey.com/wordpress/2008/10/30/vmware-server-107-on-ubuntu-intrepid-ibex-810/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 22:39:24 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://chriscarey.com/blog/?p=296</guid>
		<description><![CDATA[Here is a link I found that got this working again: Click Here Here is a link to fix a keyboard error some have: Click Here]]></description>
			<content:encoded><![CDATA[<p>Here is a link I found that got this working again:<br />
<a href="http://www.insecure.ws/2008/10/20/vmware-specific-specific-55x-and-kernel-2627">Click Here</a></p>
<p>Here is a link to fix a keyboard error some have:<br />
<a href="http://nthrbldyblg.blogspot.com/2008/06/vmware-and-fubar-keyboard-effect.html">Click Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2008/10/30/vmware-server-107-on-ubuntu-intrepid-ibex-810/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Turning Ubuntu Hardy into OS X</title>
		<link>http://chriscarey.com/wordpress/2008/08/30/turning-ubuntu-hardy-into-os-x/</link>
		<comments>http://chriscarey.com/wordpress/2008/08/30/turning-ubuntu-hardy-into-os-x/#comments</comments>
		<pubDate>Sun, 31 Aug 2008 04:19:14 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://chriscarey.com/blog/?p=175</guid>
		<description><![CDATA[Since I&#8217;m an Apple fanboy now of course I love the OS X experience. I wanted to theme my Ubuntu to look nicer and came across this link. I love the new fonts the most! They kick the trash out of the built in fonts. http://maketecheasier.com/turn-your-ubuntu-hardy-to-mac-osx-leopard/2008/07/23]]></description>
			<content:encoded><![CDATA[<p>Since I&#8217;m an Apple fanboy now of course I love the OS X experience. I wanted to theme my Ubuntu to look nicer and came across this link. I love the new fonts the most! They kick the trash out of the built in fonts.</p>
<p>http://maketecheasier.com/turn-your-ubuntu-hardy-to-mac-osx-leopard/2008/07/23</p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2008/08/30/turning-ubuntu-hardy-into-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SUID Search</title>
		<link>http://chriscarey.com/wordpress/2008/08/14/suid-search/</link>
		<comments>http://chriscarey.com/wordpress/2008/08/14/suid-search/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 21:51:20 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://chriscarey.com/blog/?p=158</guid>
		<description><![CDATA[find / \( -perm -004000 -o -perm -002000 \) -type f -print]]></description>
			<content:encoded><![CDATA[<p>find / \( -perm -004000 -o -perm -002000 \) -type f -print</p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2008/08/14/suid-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
