<?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>/home/\/\ick &#187; Debian</title>
	<atom:link href="http://timony.com/mickzblog/category/linux/debian-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://timony.com/mickzblog</link>
	<description>Things that interest me.</description>
	<lastBuildDate>Tue, 06 Apr 2010 03:30:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<atom:link rel="next" href="http://timony.com/mickzblog/category/linux/debian-linux/feed/?page=2" />

		<item>
		<title>Install Oracle SQL Developer on Ubuntu Karmic</title>
		<link>http://timony.com/mickzblog/2010/01/09/install-oracle-sql-developer-on-ubuntu-karmic/</link>
		<comments>http://timony.com/mickzblog/2010/01/09/install-oracle-sql-developer-on-ubuntu-karmic/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 20:40:48 +0000</pubDate>
		<dc:creator>Mick</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql developer]]></category>

		<guid isPermaLink="false">http://timony.com/mickzblog/?p=708</guid>
		<description><![CDATA[If you want to install Oracle&#8217;s SQL Developer on Ubuntu (or another DEB based system such as Debian) you can do one of the following: Download the RPM package and install using rpm (not advisable). Download the RPM package and convert to a DEB package using alien Download the ZIP file titled &#8220;Oracle SQL Developer [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to install Oracle&#8217;s <a title="Oracle's SQL Developer" href="http://www.oracle.com/technology/software/products/sql/index.html">SQL Developer</a> on Ubuntu (or another DEB based system such as Debian) you can do one of the following:</p>
<ol>
<li>Download the RPM package and install using rpm (not advisable).</li>
<li>Download the RPM package and convert to a DEB package using alien</li>
<li>Download the ZIP file titled &#8220;Oracle SQL Developer for other platforms&#8221; and manually install</li>
<li>Use the make-sqldeveloper-package to convert the ZIP file into a DEB package</li>
</ol>
<p>I used the make-sqldeveloper-package, which is available for Debian and Ubuntu and it&#8217;s derivatives. However, the man page and the instructions are little unclear on how to use it. You need to download the zip file available at <a href="http://www.oracle.com/technology/software/products/sql/index.html">Oracle&#8217;s</a> (and not the RPM file nor any of the other packages) and then use the make-sqldeveloper-package to convert it to a DEB which you can then install using the dpkg command.</p>
<p>This is preferable to using rpm or alien as you can more easily manage the package using Debian&#8217;s and Ubuntu package management tools, plus it will integrate SQL Developer into Gnome&#8217;s Menu System . Plus, when Oracle updates their version you can use make-sqldeveloper-package to create an updated DEB package and easily update the version you have installed. The procedure outlined below works on Ubuntu Karmic and should also work on any Debian version that has the make-sqldeveloper-package.</p>
<p>As the man page states:</p>
<blockquote><p>This utility will require you to download the &#8220;Oracle  SQL  Developer  for  other  platforms&#8221;  archive  from  &lt;<a href="http://otn.oracle.com/software/prod‐ucts/sql/">http://otn.oracle.com/software/prod‐ucts/sql/</a>&gt; to create the Debian package from.</p></blockquote>
<h4>1. Download the ZIP file from Oracle&#8217;s site</h4>
<p>You will need to accept Oracle&#8217;s license agreement and download the ZIP file, titled &#8220;Oracle SQL Developer for other platforms&#8221;, from:</p>
<p><a href="http://www.oracle.com/technology/software/products/sql/index.html">http://www.oracle.com/technology/software/products/sql/index.html</a></p>
<h4>2. Install the make-sqldeveloper-package package</h4>
<p style="padding-left: 30px;">sudo apt-get install sqldeveloper-package</p>
<p>You will need Ubuntu&#8217;s <a title="Ubuntu software repositorys" href="http://www.ubuntu.com/community/ubuntustory/components">multiverse</a> software repository. See the <a href="https://help.ubuntu.com/community/Repositories/Ubuntu">instructions</a> on how to do so.</p>
<h4>3. Convert the ZIP file to .DEB package</h4>
<p>The format of the command is:</p>
<p style="padding-left: 30px;">make-sqldeveloper-package -b BUILD_LOCATION LOCATION_OF_ZIP_FILE</p>
<p>In my example, I&#8217;m going to use /tmp/ORA as the build location and the ZIP file has been download to my Desktop (~Desktop).</p>
<p style="padding-left: 30px;">make-sqldeveloper-package -b /tmp/ORA/ ~/Desktop/sqldeveloper-2.1.0.63.73-no-jre.zip</p>
<p>The command will create the build directory and remove it when the command finishes. If the command completes successfully you&#8217;ll see the following output after a minute or two:</p>
<p style="padding-left: 30px;">make-sqldeveloper-package: Building sqldeveloper package in &#8220;/tmp&#8221;.</p>
<p>The DEB file will be created in the current directory. In my example I had changed directories to /tmp and that&#8217;s where the DEB file will be:</p>
<p style="padding-left: 30px;">/tmp/sqldeveloper_2.1.0.63.73+0.2.3-1_all.deb</p>
<p>See the man page for more information about the tool:</p>
<p style="padding-left: 30px;">man make-sqldeveloper-package</p>
<h4>4. Install the package</h4>
<p style="padding-left: 30px;">sudo dpkg -i sqldeveloper_2.1.0.63.73+0.2.3-1_all.deb</p>
<h4>5. Run SQL Developer</h4>
<p>After installing there should he an entry in Gnome&#8217;s menu to start the SQL Developer. It&#8217;s located under:</p>
<p style="padding-left: 30px;"><strong>Applications-&gt;Programming-&gt;SQL Developer</strong></p>
<p><em>Note</em>: You will need a JVM installed for the tool to run.</p>
<p>Obligatory Screen Shot:</p>
<div id="attachment_719" class="wp-caption aligncenter" style="width: 310px"><a rel="attachment wp-att-719" href="http://timony.com/mickzblog/2010/01/09/install-oracle-sql-developer-on-ubuntu-karmic/sqldeveloper_screenshot-2/"><img class="size-medium wp-image-719" title="Oracle SQL Developer on Ubuntu" src="http://timony.com/mickzblog/wp-content/uploads/2010/01/sqldeveloper_screenshot1-300x248.jpg" alt="" width="300" height="248" /></a><p class="wp-caption-text">Oracle SQL Developer</p></div>
]]></content:encoded>
			<wfw:commentRss>http://timony.com/mickzblog/2010/01/09/install-oracle-sql-developer-on-ubuntu-karmic/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Killing X</title>
		<link>http://timony.com/mickzblog/2009/04/12/killing-x/</link>
		<comments>http://timony.com/mickzblog/2009/04/12/killing-x/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 01:14:31 +0000</pubDate>
		<dc:creator>Mick</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ireland]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[picture]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[dontzap linux ubuntu X11 x debian killX]]></category>
		<category><![CDATA[gui]]></category>

		<guid isPermaLink="false">http://timony.com/mickzblog/2009/04/12/killing-x/</guid>
		<description><![CDATA[On Ubuntu it used to be that ctrl-alt-backspace would kill X (the backend of the various graphical user interfaces on Linux). In an aim to be user friendly this is now disabled by default. This can be a real pain if X locks up, you can&#8217;t kill it nor change to a console. On Debian [...]]]></description>
			<content:encoded><![CDATA[<p>On Ubuntu it used to be that ctrl-alt-backspace would kill X (the backend of the various graphical user interfaces on Linux). In an aim to be user friendly this is now disabled by default. This can be a real pain if X locks up, you can&#8217;t kill it nor change to a console.</p>
<p>On Debian and Ubuntu you can install the dontzap command which will allow you to kill X:</p>
<pre style="padding-left: 30px;">sudo apt-get install dontzap</pre>
<p>Then run dontzap:</p>
<pre style="padding-left: 30px;">sudo dontzap -d</pre>
<p>Or you can the following section to your /etc/X11/xorg.conf file (which is what the dontxzap command does):</p>
<pre style="padding-left: 30px;">Section "ServerFlags"
        Option  "DontZap"       "False"
EndSection</pre>
<p>See <a href="http://albertomilone.com">Alberto Milone&#8217;s</a> blog for more info:<br />
<a href="http://albertomilone.com/wordpress/?p=335">http://albertomilone.com/wordpress/?p=335</a></p>
]]></content:encoded>
			<wfw:commentRss>http://timony.com/mickzblog/2009/04/12/killing-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stuff I&#8217;ve read or reading &#8230;</title>
		<link>http://timony.com/mickzblog/2009/03/04/stuff-ive-read-or-reading/</link>
		<comments>http://timony.com/mickzblog/2009/03/04/stuff-ive-read-or-reading/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 03:10:19 +0000</pubDate>
		<dc:creator>Mick</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://timony.com/mickzblog/?p=528</guid>
		<description><![CDATA[Some links to stuff I&#8217;ve either read or plan to read which I think is interesting: Python is not Java, tips for Java programmers starting w/ Python: http://dirtsimple.org/2004/12/python-is-not-java.html Python for Bioinformatics: http://www.pasteur.fr/recherche/unites/sis/formation/python/index.html BioPython: http://biopython.org/DIST/docs/tutorial/Tutorial.html I need to know Selenium better, it&#8217;s possible that I might consider using it for a project I might be working [...]]]></description>
			<content:encoded><![CDATA[<p>Some links to stuff I&#8217;ve either read or plan to read which I think is interesting:</p>
<p>Python is not Java, tips for Java programmers starting w/ Python:<br />
<a href="http://dirtsimple.org/2004/12/python-is-not-java.html">http://dirtsimple.org/2004/12/python-is-not-java.html</a><br />
Python for Bioinformatics:<br />
<a href="http://www.pasteur.fr/recherche/unites/sis/formation/python/index.html">http://www.pasteur.fr/recherche/unites/sis/formation/python/index.html</a><br />
BioPython:<br />
<a href="http://biopython.org/DIST/docs/tutorial/Tutorial.htm">http://biopython.org/DIST/docs/tutorial/Tutorial.html</a></p>
<p>I need to know Selenium better, it&#8217;s possible that I might consider using it for a project I might be working on (that sounds like it might have some UI bugs/issues/problems):<br />
<a href="http://seleniumhq.org/">http://seleniumhq.org/</a></p>
<p>10 things every programmer should read (this will take a while to wade through):<br />
<a href="http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice">http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice</a></p>
<p>Xen Cluster Mgt using Ganeti for Debian Lenny:<br />
<a href="http://www.howtoforge.com/xen-cluster-management-with-ganeti-on-debian-lenny">http://www.howtoforge.com/xen-cluster-management-with-ganeti-on-debian-lenny</a><br />
Ganeti admin guide and install guide:<br />
<a href="http://ganeti-doc.googlecode.com/svn/ganeti-1.2/admin.html">http://ganeti-doc.googlecode.com/svn/ganeti-1.2/admin.html</a><br />
<a href="http://ganeti-doc.googlecode.com/svn/ganeti-1.2/install.html">http://ganeti-doc.googlecode.com/svn/ganeti-1.2/install.html</a></p>
<p>David Byrne (of Talking Heads) interviews Thom Yorke (of Radiohead):<br />
<a href="http://www.wired.com/entertainment/music/magazine/16-01/ff_yorke?currentPage=all">http://www.wired.com/entertainment/music/magazine/16-01/ff_yorke?currentPage=all</a></p>
<p>With a great quote, that shows how well the record companies treat their performing artists (that&#8217;s sarcasm in case you don&#8217;t have a sense of humour). First Radiohead made zip/zilch/nada from EMI sales of digitized versions of their music:</p>
<blockquote><p>Yorke: In terms of digital income, we&#8217;ve made more money out of this record than out of all the other Radiohead albums put together, forever — in terms of anything on the Net. And that&#8217;s nuts. It&#8217;s partly due to the fact that EMI wasn&#8217;t giving us any money for digital sales. All the contracts signed in a certain era have none of that stuff &#8230;</p>
<p>Yorke: &#8230; It&#8217;s about whether the music affects you or not. And why would you worry about an artist or a company going after people copying their music if the music itself is not valued?</p></blockquote>
<p>Then he talks about how the music iteself isn&#8217;t valued, but the business processes surrounding the marketing and selling of music:</p>
<blockquote><p>
Byrne: You&#8217;re valuing the delivery system as opposed to the relationship and the emotional thing&#8230;</p>
<p>Yorke: You&#8217;re valuing the company or the interest of the artists rather than the music itself. I don&#8217;t know. We&#8217;ve always been quite naive. We don&#8217;t have any alternative to doing this. It&#8217;s the only obvious thing to do. </p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://timony.com/mickzblog/2009/03/04/stuff-ive-read-or-reading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hi Lenny</title>
		<link>http://timony.com/mickzblog/2009/02/16/hi-lenny/</link>
		<comments>http://timony.com/mickzblog/2009/02/16/hi-lenny/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 17:51:54 +0000</pubDate>
		<dc:creator>Mick</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[valentine's day]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://timony.com/mickzblog/?p=472</guid>
		<description><![CDATA[Debian GNU/Linux 5.0, codenamed Lenny, was recently released. Here&#8217;s a round of of articles about the release and why you might want to consider Debian for your infrastructure. Techworld sums up what this means for companies and highlights new features and security enhancements: http://www.techworld.com/news/index.cfm?RSS&#38;NewsID=110898 Debian 5.0, known as Lenny, will offer users improved security handling. [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Debian " href="http://www.debian.org/">Debian</a> <a title="GNU" href="http://en.wikipedia.org/wiki/GNU">GNU</a>/<a href="http://en.wikipedia.org/wiki/Linux">Linux</a> 5.0, codenamed <a href="http://wiki.debian.org/DebianLenny">Lenny</a>, was <a title="Debian 5.0 Release Announcement" href="http://www.debian.org/News/2009/20090214">recently released</a>. Here&#8217;s a round of of articles about the release and why you might want to consider Debian for your infrastructure.</p>
<p>Techworld sums up what this means for companies and highlights new features and security enhancements:</p>
<p><a href="http://www.techworld.com/news/index.cfm?RSS&amp;NewsID=110898">http://www.techworld.com/news/index.cfm?RSS&amp;NewsID=110898</a></p>
<blockquote><p><span class="underlineLinks"><a href="http://wiki.debian.org/NewInLenny" target="_blank">Debian 5.0, known as Lenny</a>, will offer users improved security handling. For example, as an added protection measure, Debian Installer will now apply any security updates before the first boot.<br />
In addition, several security-critical packages have been built with GCC hardening features, and the standard system contains fewer setuid root binaries and fewer open ports. Other new features include support for IPv6, NFS 4, PostgreSQL 8.3.5, MySQL 5.1.30 and 5.0.51a, Samba 3.2.5, PHP 5.2.6, Asterisk 1.4.21.2, Nagios 3.06 and the Xen Hypervisor 3.2.1.</span></p>
<p><span class="underlineLinks">&#8230; <em>Debian was proving to be particularly attractive, claiming that Debian was now the Linux distribution with the lowest total cost of ownership.</em></span></p></blockquote>
<p>And Russell Coker mentions that Debian has full <a title="Debian Wiki Page on Xen" href="http://wiki.debian.org/Xen">Xen</a> support, which will make <a title="Xen Home Page" href="http://www.xen.org/">Xen</a> users happy!</p>
<p><a title="Debian &amp; Xen" href="http://etbe.coker.com.au/2009/02/16/xen-and-lenny/">http://etbe.coker.com.au/2009/02/16/xen-and-lenny/</a></p>
<blockquote><p>One of the features that is particularly noteworthy is that Xen has been updated and now works fully and correctly on the 2.6.26 kern</p></blockquote>
<p>Sami Haatinen suggests that administrators utilize the apt-listchanges command:</p>
<p><a title="apt-listchanges" href="http://ressukka.net/blog/posts/20090215_apt-listchanges/">http://ressukka.net/blog/posts/20090215_apt-listchanges/</a></p>
<blockquote><p>It lists changes made to packages since the currently installed version. Sure that information will be overwhelming on major upgrades, but what is useful even on major upgrades is the capability to parse News files in the same way.</p></blockquote>
<p>Debian 5.0 release notes are available at:</p>
<p><a title="Debian 5.0 release notes" href="http://debian.org/releases/stable/i386/release-notes/">http://debian.org/releases/stable/i386/release-notes/</a></p>
<p>Me? I&#8217;m being running a mixture of Debian Stable, Testing, Sid, and Experimental on my Desktop and it runs stable 99% of time. A configuration like that isn&#8217;t recommended, as serious breakage can occur. But, this rarely happens, and I&#8217;ve Debian enough to know when not to let the package manager remove important packages! On my laptop, a Lenovo T400, I run <a title="Ubuntu" href="http://www.ubuntu.com/">Ubuntu</a> Linux, see <a title="I got a T400" href="http://timony.com/mickzblog/2009/01/22/got-a-t400/">here</a> for why.</p>
<p>Why use Lenny as a codename? All versions of Debian have been named after characters from the film <a title="IMDB on Toy Story" href="http://www.imdb.com/title/tt0114709/">Toy Story</a>. The unstable version is codenamed <a title="Sid on IMDB" href="http://www.imdb.com/character/ch0002471/">Sid</a>, and Sid will never be released as <a href="http://www.debian.org/doc/FAQ/ch-ftparchives#s-sid">Sid</a> breaks things. For a list of the previous names used see Section 6.2 here:</p>
<p><a title="Debian FAQ" href="http://www.debian.org/doc/FAQ/ch-ftparchives">http://www.debian.org/doc/FAQ/ch-ftparchives</a></p>
<p><a href="http://www.desktoplinux.com/news/NS2868263273.html">Lenny</a> is named after a pair of wind-up <a title="Lenny on IMDB" href="http://www.imdb.com/character/ch0032562/">binoculars</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://timony.com/mickzblog/2009/02/16/hi-lenny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RAD7.5 on Debian or Ubuntu</title>
		<link>http://timony.com/mickzblog/2009/02/07/rad75-on-debian-or-ubuntu/</link>
		<comments>http://timony.com/mickzblog/2009/02/07/rad75-on-debian-or-ubuntu/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 02:27:44 +0000</pubDate>
		<dc:creator>Mick</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[libstdc++5]]></category>
		<category><![CDATA[rad7]]></category>
		<category><![CDATA[Rational]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://timony.com/mickzblog/?p=433</guid>
		<description><![CDATA[If your installing RAD 7.5 (IBM Rational Application Developer) on Debian or Ubuntu, install the libstdc++5 package: apt-get install libstdc++5]]></description>
			<content:encoded><![CDATA[<p>If your installing RAD 7.5 (IBM Rational Application Developer) on Debian or Ubuntu, install the libstdc++5 package:</p>
<pre>apt-get install libstdc++5</pre>
]]></content:encoded>
			<wfw:commentRss>http://timony.com/mickzblog/2009/02/07/rad75-on-debian-or-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable mod_perl on Debian, Ubuntu, &amp; Other Linuxes.</title>
		<link>http://timony.com/mickzblog/2009/01/31/mod_perl/</link>
		<comments>http://timony.com/mickzblog/2009/01/31/mod_perl/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 02:44:56 +0000</pubDate>
		<dc:creator>Mick</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[Archlinux]]></category>
		<category><![CDATA[cgi]]></category>
		<category><![CDATA[directories]]></category>
		<category><![CDATA[enable]]></category>
		<category><![CDATA[ExecCGI]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[ModPerl]]></category>
		<category><![CDATA[mod_perl]]></category>
		<category><![CDATA[perl-script]]></category>
		<category><![CDATA[PerlSendHeader]]></category>
		<category><![CDATA[pl]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SetHandler]]></category>
		<category><![CDATA[sites-available]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://timony.com/mickzblog/?p=377</guid>
		<description><![CDATA[To enable mod_perl with Apache2 on Debian &#38; Ubuntu for all directories served up by Apache2, including user directories such as ~/public_html, add the following lines to /etc/apache2/sites-available/default # enable mod_perl     &#60;Files ~ "\.(pl&#124;cgi)$"&#62;            SetHandler perl-script            PerlResponseHandler ModPerl::Registry            Options +ExecCGI            PerlSendHeader On     &#60;/Files&#62; In a real production environment you [...]]]></description>
			<content:encoded><![CDATA[<p>To enable mod_perl with Apache2 on Debian &amp; Ubuntu for all directories served up by Apache2, including user directories such as ~/public_html, add the following lines to /etc/apache2/sites-available/default</p>
<pre># enable mod_perl
    &lt;Files ~ "\.(pl|cgi)$"&gt;
           SetHandler perl-script
           PerlResponseHandler ModPerl::Registry
           Options +ExecCGI
           PerlSendHeader On
    &lt;/Files&gt;</pre>
<p>In a real production environment you probably don&#8217;t want to enable this for all directories that Apache2 serves up, but only from those directories you expect to run perl in.</p>
<p>Thanks to this <a title="mod_perl question on Ubuntu Forums" href="http://ubuntuforums.org/archive/index.php/t-78161.html">thread</a> on the Ubuntu Forums for the info.</p>
<p>Titled updated as per Ozkar&#8217;s suggestion.</p>
]]></content:encoded>
			<wfw:commentRss>http://timony.com/mickzblog/2009/01/31/mod_perl/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adobe Flash Sound not working with Iceweasel on Debian?</title>
		<link>http://timony.com/mickzblog/2009/01/01/adobe-flash-sound-not-working-with-iceweasel-on-debian/</link>
		<comments>http://timony.com/mickzblog/2009/01/01/adobe-flash-sound-not-working-with-iceweasel-on-debian/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 23:05:47 +0000</pubDate>
		<dc:creator>Mick</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flashplugin-nonfree-extrasound]]></category>
		<category><![CDATA[sound]]></category>

		<guid isPermaLink="false">http://timony.com/mickzblog/?p=333</guid>
		<description><![CDATA[After upgrading to Flash 10 sound stopped working. Installing the flashplugin-nonfree-extrasound package solved that problem for me: aptitude install flashplugin-nonfree-extrasound If your using pulse audio, install the flashplugin-nonfree-pulse package. It doesn&#8217;t look like the Debian flash plug-in suggests either package: apt-cache show flashplugin-nonfree&#124;more Package: flashplugin-nonfree Priority: optional Section: contrib/web &#8230; Suggests: iceweasel, konqueror-nsplugins, x-ttcidfont-conf, msttcorefonts, [...]]]></description>
			<content:encoded><![CDATA[<p>After upgrading to Flash 10 sound stopped working. Installing the flashplugin-nonfree-extrasound package solved that problem for me:</p>
<p>aptitude install flashplugin-nonfree-extrasound</p>
<p>If your using pulse audio, install the <em>flashplugin-nonfree-pulse</em> package. It doesn&#8217;t look like the Debian flash plug-in suggests either package:</p>
<blockquote><p>apt-cache show flashplugin-nonfree|more<br />
Package: flashplugin-nonfree<br />
Priority: optional<br />
Section: contrib/web<br />
&#8230;<br />
Suggests: iceweasel, konqueror-nsplugins, x-ttcidfont-conf, msttcorefonts, ttf-dejavu, ttf-xfree86-nonfree, xfs (&gt;= 1:1.0.1-5)</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://timony.com/mickzblog/2009/01/01/adobe-flash-sound-not-working-with-iceweasel-on-debian/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Netbeans 6.5 on Debian</title>
		<link>http://timony.com/mickzblog/2008/12/03/netbeans-65-on-debian/</link>
		<comments>http://timony.com/mickzblog/2008/12/03/netbeans-65-on-debian/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 04:55:41 +0000</pubDate>
		<dc:creator>Mick</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jvm]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[ror]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://timony.com/mickzblog/?p=310</guid>
		<description><![CDATA[Doesn&#8217;t perform badly, I&#8217;ve been using it recently with Ruby code, and I like how it colourises the code to make editing code easier, and performs it auto-completion and method lookup (basically all the features you&#8217;d expect with a modern IDE). It&#8217;s does&#8217;t startup as fast as using Emacs, or vi, but I find the [...]]]></description>
			<content:encoded><![CDATA[<p>Doesn&#8217;t perform badly, I&#8217;ve been using it recently with Ruby code, and I like how it colourises the code to make editing code easier, and performs it auto-completion and method lookup (basically all the features you&#8217;d expect with a modern IDE).</p>
<p>It&#8217;s does&#8217;t startup as fast as using Emacs, or vi, but I find the features very handy and very convenient. It doesn&#8217;t look  bad either. It runs better on my PC at home running Debian Linux than it does on my PC at work running WinXP. This is probably because I&#8217;m using a 1.5 JVM on WinXP and a 1.6 JVM on Debian. Running on 1.6 JVM&#8217;s means that Netbeans will automatically use anti-aliased fonts if you have anti-aliased fonts enabled (much easier on the eyes if your using a LCD screen).</p>
<p><a href="http://timony.com/mickzblog/wp-content/uploads/2008/12/screenshot-r4rmusic1-netbeans-ide-65.jpg"><img class="aligncenter size-medium wp-image-311" title="Netbeans 6.5 on Debian Linux" src="http://timony.com/mickzblog/wp-content/uploads/2008/12/screenshot-r4rmusic1-netbeans-ide-65-300x238.jpg" alt="" width="300" height="238" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://timony.com/mickzblog/2008/12/03/netbeans-65-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KDE4 and Debian</title>
		<link>http://timony.com/mickzblog/2008/10/12/kde4-and-debian/</link>
		<comments>http://timony.com/mickzblog/2008/10/12/kde4-and-debian/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 19:53:40 +0000</pubDate>
		<dc:creator>Mick</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[kde4]]></category>
		<category><![CDATA[window manager]]></category>

		<guid isPermaLink="false">http://timony.com/mickzblog/?p=268</guid>
		<description><![CDATA[I figured it&#8217;s time for me to try and install kde4 again! Previously I had to remove KDE4 due to package conflicts. There are installation instructions at: http://pkg-kde.alioth.debian.org/experimental.html So following the instructions there on what changes to make to your sources.list, and then run: aptitude update I&#8217;ve had some dependency issues, and installing the kde4 [...]]]></description>
			<content:encoded><![CDATA[<p>I figured it&#8217;s time for me to try and install kde4 again! Previously I had to <a title="KDE4 previously on /home/mick" href="http://timony.com/mickzblog/2008/02/02/kde4-debian/">remove</a> KDE4 due to package conflicts. There are installation instructions at:</p>
<blockquote><p><a title="KDE4 on Debian" href="http://pkg-kde.alioth.debian.org/experimental.html">http://pkg-kde.alioth.debian.org/experimental.html</a></p></blockquote>
<p>So following the instructions there on what changes to make to your sources.list, and then run:</p>
<blockquote><p>aptitude update</p></blockquote>
<p>I&#8217;ve had some dependency issues, and installing the kde4 package (a meta-package that will install all of KDE4) would not install due to dependency issues with the <a href="http://packages.debian.org/experimental/kdegraphics">kdegraphics</a> package. The way around this is to install the kde4-minimal package and whichever of the other packages you want. So I installed everything, <em>minus</em> the kdegraphics package via the following:</p>
<blockquote><p>aptitude install -t experimental kde4-minimal kdeplasma-addons kdegames kdemultimedia kdenetwork kdepim kdeutils kdeedu kdeadmin kdeartwork kdetoy</p></blockquote>
<p>Be prepared for a lot of packages to be installed, for others to be removed, and to possibly break your existing kde3 installation (if you have one). See the first comment to see what I had to install and remove.</p>
<p>Firstly, KDE4 does not import any of your KDE3 settings, which is pretty annoying, as all of the applications start with the default settings, and is really annoying with applications like kmail &#8230; however some has created a tool to import the settings:</p>
<p><a href="http://silentcoder.co.za/silentcoder/?page_id=330">http://silentcoder.co.za/silentcoder/?page_id=330</a></p>
<p>My only complaint about the tool, is that it requires root to install it. I&#8217;d also like the option to be able to run the tool without first having to install it. Anyways, it seems to work pretty well and imported all of my mail into kmail, the only thing it didn&#8217;t do was import account settings into kmail.</p>
<p><em>This post is a work in progress, I&#8217;ll update it over the next day or so with any further instructions as I install, configure, and test KDE4.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://timony.com/mickzblog/2008/10/12/kde4-and-debian/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Debian&#8217;s e17 Packages</title>
		<link>http://timony.com/mickzblog/2008/10/12/debians-e17-packages/</link>
		<comments>http://timony.com/mickzblog/2008/10/12/debians-e17-packages/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 19:12:26 +0000</pubDate>
		<dc:creator>Mick</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[e17]]></category>
		<category><![CDATA[enlightenment]]></category>
		<category><![CDATA[experimental]]></category>

		<guid isPermaLink="false">http://timony.com/mickzblog/?p=260</guid>
		<description><![CDATA[I thought I&#8217;d start looking at using Debian&#8217;s experimental E17 packages. I commented out all other E17 repo&#8217;s from my source.list and installed the debian e17 package. It installs a minimal amount of related packages, and there doesn&#8217;t seem to be lot of e17 packages available in the experimental repo sudo aptitude install e17 Reading [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I thought I&#8217;d start looking at using Debian&#8217;s experimental E17 packages. I commented out all other E17 repo&#8217;s from my source.list and installed the debian e17 package. It installs a minimal amount of related packages, and there doesn&#8217;t seem to be lot of e17 packages available in the experimental repo</p>
<blockquote style="text-align: left;"><p>sudo aptitude install e17<br />
Reading package lists&#8230; Done<br />
Building dependency tree<br />
Reading state information&#8230; Done<br />
Reading extended state information<br />
Initializing package states&#8230; Done<br />
Reading task descriptions&#8230; Done<br />
The following NEW packages will be installed:<br />
e17 e17-data{a} libecore-con0{a} libecore-evas0{a} libecore-fb0{a} libecore-file0{a} libecore-imf0{a} libecore-ipc0{a} libecore-job0{a} libecore-txt0{a} libecore-x0{a} libecore0{a}<br />
libedbus0{a} libedje0{a} libeet1{a} libefreet0{a} libembryo0{a} libevas-engines{a} libevas0{a}<br />
0 packages upgraded, 19 newly installed, 0 to remove and 0 not upgraded.<br />
Need to get 8110kB of archives. After unpacking 15.5MB will be used.</p></blockquote>
<p style="text-align: left;">This appears to provide a good basic E17 Desktop, but provides no additional themes, and I&#8217;m not sure how many modules it includes. Here&#8217;s a screenshot:<br />
<a title="Default Debian E17 Install by bettlebrox, on Flickr" href="http://www.flickr.com/photos/timony/2934708695/"><img class="aligncenter" src="http://farm4.static.flickr.com/3163/2934708695_5199a7a373.jpg" alt="Default Debian E17 Install" width="500" height="376" /></a>
</p>
<p style="text-align: left;">If you want to use this add the following to your /etc/apt/sources.list:</p>
<blockquote>
<p style="text-align: left;">deb http://ftp.us.debian.org/debian/ experimental main non-free contrib</p>
</blockquote>
<p style="text-align: left;">This also includes <a title="KDE4 posting on /home/mick" href="http://timony.com/mickzblog/2008/02/02/kde4-debian/">KDE4</a> packages. You&#8217;ll want to be careful with this repo, that you don&#8217;t pull in and install too many (possibly breaking) packages from it.</p>
<p>Look for my latest posting on E17 as this information could be out-of-date:</p>
<p><a title="e17 tags at /home/mick" href="../category/e17/">http://timony.com/mickzblog/category/e17/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://timony.com/mickzblog/2008/10/12/debians-e17-packages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
