<?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>blog.cnizz.com &#187; linux</title>
	<atom:link href="http://blog.cnizz.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cnizz.com</link>
	<description>my little notepad</description>
	<lastBuildDate>Sun, 29 Aug 2010 00:33:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fix Gnome Vino Server (VNC) From Randomly Closing on Ubuntu</title>
		<link>http://blog.cnizz.com/2010/03/19/fix-gnome-vino-server-vnc-from-randomly-closing-on-ubuntu/</link>
		<comments>http://blog.cnizz.com/2010/03/19/fix-gnome-vino-server-vnc-from-randomly-closing-on-ubuntu/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 16:04:21 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vino]]></category>

		<guid isPermaLink="false">http://blog.cnizz.com/?p=309</guid>
		<description><![CDATA[I&#8217;m not a fan of Gnomes implementation of the VNC Server on Ubuntu.  It is always randomly closing on me.  If you have SSH access to your desktop though you can remotely start the vino-server allowing you to once again VNC in.
Simply create the following script and name it something like start-vino.sh:

1
2
3
4
5
#!/bin/bash
gconftool-2 -s [...]]]></description>
		<wfw:commentRss>http://blog.cnizz.com/2010/03/19/fix-gnome-vino-server-vnc-from-randomly-closing-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>adventures in linux printing, set default printer and firefox command line print</title>
		<link>http://blog.cnizz.com/2009/07/23/adventures-in-linux-printing-set-default-printer-and-firefox-command-line-print/</link>
		<comments>http://blog.cnizz.com/2009/07/23/adventures-in-linux-printing-set-default-printer-and-firefox-command-line-print/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 23:08:55 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[CUPS]]></category>
		<category><![CDATA[export PRINTER=]]></category>
		<category><![CDATA[firefox command line print]]></category>
		<category><![CDATA[lpoptions]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[printing]]></category>

		<guid isPermaLink="false">http://blog.cnizz.com/?p=169</guid>
		<description><![CDATA[We are in the process of redesigning our packing slips that get sent out to customers with each order.  The previous developer went with a solution, html2ps, that has shotty support for CSS and design principals in general.  The designer and I decided we needed something else.  After trying numerous solutions, a [...]]]></description>
		<wfw:commentRss>http://blog.cnizz.com/2009/07/23/adventures-in-linux-printing-set-default-printer-and-firefox-command-line-print/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>using perror to help debug mysql errors</title>
		<link>http://blog.cnizz.com/2008/11/04/using-perror-to-help-debug-mysql-errors/</link>
		<comments>http://blog.cnizz.com/2008/11/04/using-perror-to-help-debug-mysql-errors/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 17:59:27 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.cnizz.com/2008/11/04/using-perror-to-help-debug-mysql-errors/</guid>
		<description><![CDATA[Print a description for a system error code or an error code from a MyISAM/ISAM/BDB table handler.  Example, type &#8220;perror 150&#8243; in the linux shell.

1
2
# perror 150
MySQL error code 150: Foreign key constraint is incorrectly formed





		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Share this on Reddit
		
		
			Add to a lense on Squidoo
		
		
			Stumble upon something good? Share it on [...]]]></description>
		<wfw:commentRss>http://blog.cnizz.com/2008/11/04/using-perror-to-help-debug-mysql-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>use linux screen command to manage multiple shell sessions</title>
		<link>http://blog.cnizz.com/2008/05/27/linux-screen-command/</link>
		<comments>http://blog.cnizz.com/2008/05/27/linux-screen-command/#comments</comments>
		<pubDate>Tue, 27 May 2008 19:54:20 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.cnizz.com/2008/05/27/linux-screen-command/</guid>
		<description><![CDATA[Screen is useful for running a script or other long process as yourself if you are worried about disconnecting from your SSH session or want to do some other things in the shell as the process runs.  You will need screen installed to do this.  This will really save you a lot of [...]]]></description>
		<wfw:commentRss>http://blog.cnizz.com/2008/05/27/linux-screen-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>apc (alternative php cache) on debian etch</title>
		<link>http://blog.cnizz.com/2008/03/26/apc-alternative-php-cache-on-debian-etch/</link>
		<comments>http://blog.cnizz.com/2008/03/26/apc-alternative-php-cache-on-debian-etch/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 05:45:40 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.cnizz.com/?p=89</guid>
		<description><![CDATA[This is one of the best packages you can incorporate into your web development.  Basically APC allows you to cache data in memory for extremely fast data access.  We are exploring writing an application at work the must have extremely fast access to data, so fast that we are willing to dedicate a [...]]]></description>
		<wfw:commentRss>http://blog.cnizz.com/2008/03/26/apc-alternative-php-cache-on-debian-etch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
