<?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 Schuld&#039;s Blog &#187; Fedora</title>
	<atom:link href="http://chrisschuld.com/category/linux/fedora/feed/" rel="self" type="application/rss+xml" />
	<link>http://chrisschuld.com</link>
	<description>personal musings on the composition of software</description>
	<lastBuildDate>Mon, 30 Aug 2010 03:48:50 +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>RHEL5 init (init.d) script for OpenOffice.org (2.3+)</title>
		<link>http://chrisschuld.com/2008/10/rhel5-init-initd-script-for-openoffice-org/</link>
		<comments>http://chrisschuld.com/2008/10/rhel5-init-initd-script-for-openoffice-org/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 23:25:49 +0000</pubDate>
		<dc:creator>Chris Schuld</dc:creator>
				<category><![CDATA[CentOS5]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://chrisschuld.com/?p=66</guid>
		<description><![CDATA[For a recent project I needed to perform document translations from DOC to PNG which requires an essential intermediate step to PDF. The transformations required us to go to from DOC to PDF which can easily be done very nicely using openoffice 2.3 in a headless configuration. The downside is you need a process running [...]]]></description>
			<content:encoded><![CDATA[<p>For a recent project I needed to perform document translations from DOC to PNG which requires an essential intermediate step to PDF.  The transformations required us to go to from DOC to PDF which can easily be done very nicely using openoffice 2.3 in a headless configuration.  The downside is you need a process running on a machine which you can connect to to make the transformation.</p>
<p>Here is the init.d script for starting up the soffice.bin (soffice) program in a headless mode:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #666666; font-style: italic;"># chkconfig: 345 20 80</span>
<span style="color: #666666; font-style: italic;"># description: init.d script for headless openoffice.org (2.3+ for RHEL5 32bit)</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># processname: soffice</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># source function library</span>
. <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>rc.d<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>functions
&nbsp;
<span style="color: #007800;">RETVAL</span>=<span style="color: #000000;">0</span>
<span style="color: #007800;">SOFFICE_PATH</span>=<span style="color: #ff0000;">'/usr/lib/openoffice.org/program'</span>
<span style="color: #007800;">SOFFICE_ARGS</span>=<span style="color: #ff0000;">'-accept=&quot;socket,host=localhost,port=8100;urp&quot; -headless -nofirststartwizard'</span>
<span style="color: #007800;">SOFFICE_PIDFILE</span>=<span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>run<span style="color: #000000; font-weight: bold;">/</span>soffice.bin.pid
&nbsp;
start_soffice<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
       <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #660033;">-n</span> $<span style="color: #ff0000;">&quot;Starting OpenOffice.org&quot;</span>
       <span style="color: #007800;">$SOFFICE_PATH</span><span style="color: #000000; font-weight: bold;">/</span>soffice.bin <span style="color: #007800;">$SOFFICE_ARGS</span> <span style="color: #000000; font-weight: bold;">&gt;/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;&amp;</span><span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">&amp;</span>
       <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #007800;">$?</span> <span style="color: #660033;">-eq</span> <span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> echo_success <span style="color: #000000; font-weight: bold;">||</span> echo_failure
       <span style="color: #c20cb9; font-weight: bold;">pidof</span> soffice.bin <span style="color: #000000; font-weight: bold;">&amp;</span> <span style="color: #007800;">$SOFFICE_PIDFILE</span>
       <span style="color: #7a0874; font-weight: bold;">echo</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
start<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
       start_soffice
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
stop<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
       <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #660033;">-n</span> $<span style="color: #ff0000;">&quot;Stopping OpenOffice&quot;</span>
       killproc soffice.bin
       <span style="color: #7a0874; font-weight: bold;">echo</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
<span style="color: #000000; font-weight: bold;">case</span> <span style="color: #ff0000;">&quot;$1&quot;</span> <span style="color: #000000; font-weight: bold;">in</span>
       start<span style="color: #7a0874; font-weight: bold;">&#41;</span>
               start
               <span style="color: #000000; font-weight: bold;">;;</span>
       stop<span style="color: #7a0874; font-weight: bold;">&#41;</span>
               stop
               <span style="color: #000000; font-weight: bold;">;;</span>
       restart<span style="color: #7a0874; font-weight: bold;">&#41;</span>
               stop
               start
               <span style="color: #000000; font-weight: bold;">;;</span>
       <span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
               <span style="color: #7a0874; font-weight: bold;">echo</span> $<span style="color: #ff0000;">&quot;Usage: $0 {start|stop|restart}&quot;</span>
<span style="color: #000000; font-weight: bold;">esac</span></pre></td></tr></table></div>

<p>NOTE: in 64bit the lib path has a &#8217;64&#8242; in it so</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">SOFFICE_PATH</span>=<span style="color: #ff0000;">'/usr/lib/openoffice.org/program'</span></pre></div></div>

<p>becomes</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">SOFFICE_PATH</span>=<span style="color: #ff0000;">'/usr/lib64/openoffice.org/program'</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://chrisschuld.com/2008/10/rhel5-init-initd-script-for-openoffice-org/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Playing MP3 Files in Fedora 8 using KDE</title>
		<link>http://chrisschuld.com/2007/11/playing-mp3-files-in-fedora-8-using-kde/</link>
		<comments>http://chrisschuld.com/2007/11/playing-mp3-files-in-fedora-8-using-kde/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 01:21:11 +0000</pubDate>
		<dc:creator>Chris Schuld</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://chrisschuld.com/2007/11/playing-mp3-files-in-fedora-8-using-kde/</guid>
		<description><![CDATA[To play MP3 files in Fedora 8 with KDE you need to add software to your default installation. This software does not come &#8220;stock&#8221; with KDE because the software is not free and RedHat is required to filter it &#8212; therefore if you download this update make sure you check the licensing agreements: First, add [...]]]></description>
			<content:encoded><![CDATA[<p>To play MP3 files in Fedora 8 with KDE you need to add software to your default installation.  This software does not come &#8220;stock&#8221; with KDE because the software is not free and RedHat is required to <em>filter it</em> &#8212; therefore if you download this update make sure you check the licensing agreements:</p>
<ol>
<li>First, add Livna sources using <strong>rpm</strong>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">rpm <span style="color: #660033;">-ivh</span> http:<span style="color: #000000; font-weight: bold;">//</span>rpm.livna.org<span style="color: #000000; font-weight: bold;">/</span>livna-release-8.rpm</pre></div></div>

</li>
<li>Next, Install kdemultimedia-extras-nonfree<sup>**</sup> using <strong>yum</strong>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> kdemultimedia-extras-nonfree</pre></div></div>

</li>
<p>That is it, next launch Amarok as an example and hello MP3 music!<br />
<img src='http://chrisschuld.com/wp-content/uploads/2007/11/screenshot-kde-amarok.png' alt='Amarok Launching' /><br />
<em>Q: Hey Chris, why does the kdemultimedia-extras package end in &#8220;-nonfree&#8221;<br />
A: Good question, tough answer, the kdemultimedia-extras-nonfree package contains plug-ins which cannot be shipped by Red Hat / Fedora because the license is <strong>not</strong> LGPL.  Please note the the license of the entire library is <strong>not</strong> LGPL!  So of course you shouldn&#8217;t install it unless you pay the owners for licensing rights.<br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://chrisschuld.com/2007/11/playing-mp3-files-in-fedora-8-using-kde/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Playing MP3 Files in Fedora 8 using Gnome</title>
		<link>http://chrisschuld.com/2007/11/playing-mp3-files-in-fedora-8-audio-files/</link>
		<comments>http://chrisschuld.com/2007/11/playing-mp3-files-in-fedora-8-audio-files/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 01:06:12 +0000</pubDate>
		<dc:creator>Chris Schuld</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://chrisschuld.com/2007/11/playing-mp3-files-in-fedora-8-audio-files/</guid>
		<description><![CDATA[To play MP3 files in Fedora 8 you need to add software to your default installation: First, add Livna sources using rpm rpm -ivh http://rpm.livna.org/livna-release-8.rpm Next, Install Rhythmbox (assuming you are using Gnome) using yum yum install rhythmbox Next, Install gstreamer-plugins-ugly** using yum yum install gstreamer-plugins-ugly That is it, next launch Rythmbox and hello music! [...]]]></description>
			<content:encoded><![CDATA[<p>To play MP3 files in Fedora 8 you need to add software to your default installation:</p>
<ol>
<li>First, add Livna sources using <strong>rpm</strong>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">rpm <span style="color: #660033;">-ivh</span> http:<span style="color: #000000; font-weight: bold;">//</span>rpm.livna.org<span style="color: #000000; font-weight: bold;">/</span>livna-release-8.rpm</pre></div></div>

</li>
<li>Next, Install Rhythmbox (assuming you are using Gnome) using <strong>yum</strong>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> rhythmbox</pre></div></div>

</li>
<li>Next, Install gstreamer-plugins-ugly<sup>**</sup> using <strong>yum</strong>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> gstreamer-plugins-ugly</pre></div></div>

</li>
<p>That is it, next launch Rythmbox and hello music!<br />
<img src='http://chrisschuld.com/wp-content/uploads/2007/08/fedora-rythmbox-launch.png' alt='Rythmbox Launch' /></p>
<p><em>Q: Hey Chris, why does the gstreamer-plugins end in &#8220;-ugly&#8221;<br />
A: Good question, tough answer, the GStreamer is a streaming media library which contains plug-ins which cannot be shipped in gstreamer-plugins-good because the license is <strong>not</strong> LGPL.  Please note the the license of the entire library is <strong>not</strong> LGPL!  So of course you shouldn&#8217;t install it unless you pay the owners for licensing rights.<br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://chrisschuld.com/2007/11/playing-mp3-files-in-fedora-8-audio-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rpmdb: Lock table is out of available locker entries</title>
		<link>http://chrisschuld.com/2007/08/rpmdb-lock-table-is-out-of-available-locker-entries/</link>
		<comments>http://chrisschuld.com/2007/08/rpmdb-lock-table-is-out-of-available-locker-entries/#comments</comments>
		<pubDate>Fri, 17 Aug 2007 20:45:26 +0000</pubDate>
		<dc:creator>Chris Schuld</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://chrisschuld.com/2007/08/rpmdb-lock-table-is-out-of-available-locker-entries/</guid>
		<description><![CDATA[If while using &#8216;yum&#8217; or &#8216;rpm&#8217; you receive the following error: rpmdb: Lock table is out of available locker entries Your RPM dB files are screwed up&#8230; here is how you unscrew them! This error tell you the Berkley database files which RPM uses are damaged and in order to clear the error you must [...]]]></description>
			<content:encoded><![CDATA[<p>If while using &#8216;yum&#8217; or &#8216;rpm&#8217; you receive the following error:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">rpmdb: Lock table is out of available locker entries</pre></div></div>

<p>Your RPM dB files are screwed up&#8230; here is how you unscrew them!</p>
<p><em>This error tell you the Berkley database files which RPM uses are damaged and in order to clear the error you must rebuild the Berkley dB files from scratch.</em></p>
<p>Here is how you fix this error:</p>
<ol>
<li>Make a backup of  your current files</li>
<li>Remove the damaged files</li>
<li>Rebuild your RPM Berkley dB files</li>
<li>Use yum again</li>
</ol>
<p>Here is the command walk through:</p>
<ol>
<li>As root, execute this:<br/>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>root; <span style="color: #c20cb9; font-weight: bold;">tar</span> cvzf rpm-backup.tar.gz <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>rpm</pre></div></div>

</li>
<li>Remove the Berkeley dB files which yum and rpm use:<br/>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>rpm<span style="color: #000000; font-weight: bold;">/</span>__db.00<span style="color: #000000; font-weight: bold;">*</span></pre></div></div>

</li>
<li>Instruct rpm to rebuild the databases files:<br/>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">rpm <span style="color: #660033;">--rebuilddb</span></pre></div></div>

</li>
<li>Test your yum command again:<br/>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> somepackage</pre></div></div>

</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://chrisschuld.com/2007/08/rpmdb-lock-table-is-out-of-available-locker-entries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing MP3 files in Fedora 7</title>
		<link>http://chrisschuld.com/2007/08/playing-mp3-files-in-fedora-7/</link>
		<comments>http://chrisschuld.com/2007/08/playing-mp3-files-in-fedora-7/#comments</comments>
		<pubDate>Thu, 09 Aug 2007 00:00:55 +0000</pubDate>
		<dc:creator>Chris Schuld</dc:creator>
				<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">http://chrisschuld.com/2007/08/playing-mp3-files-in-fedora-7/</guid>
		<description><![CDATA[To play MP3 files in Fedora 7 you need to add software to your default installation: First, add Livna sources using rpm rpm -ivh http://rpm.livna.org/livna-release-6.rpm Next, Install Rhythmbox using yum yum install rhythmbox Next, Install gstreamer-plugins-ugly** using yum yum install gstreamer-plugins-ugly That is it, next launch Rythmbox and hello music! Q: Hey Chris, why does [...]]]></description>
			<content:encoded><![CDATA[<p>To play MP3 files in Fedora 7 you need to add software to your default installation:</p>
<ol>
<li>First, add Livna sources using <strong>rpm</strong>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">rpm <span style="color: #660033;">-ivh</span> http:<span style="color: #000000; font-weight: bold;">//</span>rpm.livna.org<span style="color: #000000; font-weight: bold;">/</span>livna-release-6.rpm</pre></div></div>

</li>
<li>Next, Install Rhythmbox using <strong>yum</strong>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> rhythmbox</pre></div></div>

</li>
<li>Next, Install gstreamer-plugins-ugly<sup>**</sup> using <strong>yum</strong>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> gstreamer-plugins-ugly</pre></div></div>

</li>
<p>That is it, next launch Rythmbox and hello music!<br />
<img src='http://chrisschuld.com/wp-content/uploads/2007/08/fedora-rythmbox-launch.png' alt='Rythmbox Launch' /></p>
<p><em>Q: Hey Chris, why does the gstreamer-plugins end in &#8220;-ugly&#8221;<br />
A: Good question, tough answer, the GStreamer is a streaming media library which contains plug-ins which cannot be shipped in gstreamer-plugins-good because the license is <strong>not</strong> LGPL.  Please note the the license of the entire library is <strong>not</strong> LGPL!  So of course you shouldn&#8217;t install it unless you pay the owners for licensing rights.<br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://chrisschuld.com/2007/08/playing-mp3-files-in-fedora-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reload fstab (/etc/fstab)</title>
		<link>http://chrisschuld.com/2007/08/reload-fstab-etcfstab/</link>
		<comments>http://chrisschuld.com/2007/08/reload-fstab-etcfstab/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 14:31:59 +0000</pubDate>
		<dc:creator>Chris Schuld</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://chrisschuld.com/2007/08/reload-fstab-etcfstab/</guid>
		<description><![CDATA[If you make a new entry in fstab it will not auto-mount. Therefore you must reload / refresh the entries. A reboot will do this but that is not a friendly way to do it. A quick way to reload new entries in /etc/fstab (fstab) is to use the mount command: mount -a]]></description>
			<content:encoded><![CDATA[<p>If you make a new entry in fstab it will not auto-mount.  Therefore you must reload / refresh the entries.  A reboot will do this but that is not a friendly way to do it.  A quick way to reload new entries in /etc/fstab (fstab) is to use the mount command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mount</span> <span style="color: #660033;">-a</span></pre></div></div>

<p><br/></p>
<div style="text-align:center;"><img src='http://chrisschuld.com/wp-content/uploads/2007/08/screenshot-mount-a.png' alt='Mount -a' /></div>
]]></content:encoded>
			<wfw:commentRss>http://chrisschuld.com/2007/08/reload-fstab-etcfstab/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>The HTML Validator Firefox Plugin In Linux</title>
		<link>http://chrisschuld.com/2007/08/the-html-validator-firefox-plugin-in-linux/</link>
		<comments>http://chrisschuld.com/2007/08/the-html-validator-firefox-plugin-in-linux/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 20:15:57 +0000</pubDate>
		<dc:creator>Chris Schuld</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://chrisschuld.com/2007/08/the-html-validator-firefox-plugin-in-linux/</guid>
		<description><![CDATA[I use the &#8220;HTML Validator&#8221; Firefox plugin daily. I found it does not work out of the box in Linux namely Fedora Core 6 and Fedora 7. You immediately get a HTML-rendered screen that states: FATAL ERROR : The dynamic C library contained in the extension file could not be found Getting rid of this [...]]]></description>
			<content:encoded><![CDATA[<p>I use the &#8220;<a href="http://users.skynet.be/mgueury/mozilla/">HTML Validator</a>&#8221; Firefox plugin daily.  I found it does not work out of the box in Linux namely <a href="http://fedoraproject.org/">Fedora Core 6</a> and <a href="http://fedoraproject.org/">Fedora 7</a>.  You immediately get a HTML-rendered screen that states:</p>
<div class="ref">
<pre>FATAL ERROR : The dynamic C library contained in the extension file could not be found</pre>
</div>
<p>Getting rid of this message took me a few minutes of research and I never found a step-by-step HOW-TO for Fedora &#8212; so here goes!</p>
<p>Here is how you get rid of this message and get the plugin working in <a href="http://fedoraproject.org/">Fedora Core 6</a> or <a href="http://fedoraproject.org/">Fedora 7</a>:</p>
<ol>
<li>First, uninstall the plugin by clicking on Tools&#8211;>Add-ons and clicking uninstall<br />
<a href='http://chrisschuld.com/wp-content/uploads/2007/08/remove-firefox-addon.png' title='Remove HTML Validator'><img src='http://chrisschuld.com/wp-content/uploads/2007/08/remove-firefox-addon.png' alt='Remove HTML Validator' /></a><br/></li>
<li>Second, close all instances of Firefox</li>
<li>Next, install three packages using yum
<ul>
<li>compat-libstdc++-296</li>
<li>compat-libstdc++-33</li>
<li>tidy</li>
</ul>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> compat-libstdc++-<span style="color: #000000;">296</span> compat-libstdc++-<span style="color: #000000;">33</span> tidy</pre></div></div>

</li>
<li>Reinstall the <a href="http://users.skynet.be/mgueury/mozilla/">HTML Validator</a> plugin</li>
<li>Restart Firefox, done!</li>
</ol>
<p><a href="http://users.skynet.be/mgueury/mozilla/">HTML Validator</a> should now be installed inside of Firefox on <a href="http://fedoraproject.org/">Fedora Core 6</a> or <a href="http://fedoraproject.org/">Fedora 7</a></p>
]]></content:encoded>
			<wfw:commentRss>http://chrisschuld.com/2007/08/the-html-validator-firefox-plugin-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Missing phpize?</title>
		<link>http://chrisschuld.com/2007/07/missing-phpize/</link>
		<comments>http://chrisschuld.com/2007/07/missing-phpize/#comments</comments>
		<pubDate>Fri, 13 Jul 2007 20:06:08 +0000</pubDate>
		<dc:creator>Chris Schuld</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://chrisschuld.com/2007/07/missing-phpize/</guid>
		<description><![CDATA[In an attempt to add the PECL Upload Progress package, I received the following error: &#91;root@zebra cbschuld&#93;# pecl install uploadprogress-beta downloading uploadprogress-0.3.0.tgz ... Starting to download uploadprogress-0.3.0.tgz &#40;4,677 bytes&#41; .....done: 4,677 bytes 3 source files, building running: phpize sh: phpize: command not found ERROR: `phpize' failed Hmmm, it turns out I never added the package [...]]]></description>
			<content:encoded><![CDATA[<p>In an attempt to add the PECL <a href="http://pecl.php.net/package/uploadprogress" target="_blank">Upload Progress</a> package, I received  the following error:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>root<span style="color: #000000; font-weight: bold;">@</span>zebra cbschuld<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #666666; font-style: italic;"># pecl install uploadprogress-beta</span>
downloading uploadprogress-0.3.0.tgz ...
Starting to download uploadprogress-0.3.0.tgz <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">4</span>,<span style="color: #000000;">677</span> bytes<span style="color: #7a0874; font-weight: bold;">&#41;</span>
.....done: <span style="color: #000000;">4</span>,<span style="color: #000000;">677</span> bytes
<span style="color: #000000;">3</span> <span style="color: #7a0874; font-weight: bold;">source</span> files, building
running: phpize
<span style="color: #c20cb9; font-weight: bold;">sh</span>: phpize: <span style="color: #7a0874; font-weight: bold;">command</span> not found
ERROR: <span style="color: #000000; font-weight: bold;">`</span>phpize<span style="color: #ff0000;">' failed</span></pre></div></div>

<p>Hmmm, it turns out I never added the package php-devel (oops).  If you are missing phpize on your machine add it with:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> php-devel</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://chrisschuld.com/2007/07/missing-phpize/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
