<?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>Spind.net Blog &#187; Fedora10</title>
	<atom:link href="http://blog.spind.net/tag/fedora10/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.spind.net</link>
	<description>Stories from the trenches of System Administration</description>
	<lastBuildDate>Mon, 19 Dec 2011 09:21:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Sun JRE on Firefox</title>
		<link>http://blog.spind.net/2009/02/19/sun-jre-on-firefox/</link>
		<comments>http://blog.spind.net/2009/02/19/sun-jre-on-firefox/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 11:48:31 +0000</pubDate>
		<dc:creator>hc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Fedora10]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Sun]]></category>

		<guid isPermaLink="false">http://blog.spind.net/?p=94</guid>
		<description><![CDATA[I rarely need a Java plugin for my 64-bit Firefox browser, but once in a rare while I need to use certain government services that require a digital signature and the original Sun Java plugin &#8211; OpenJDK just doesn&#8217;t cut it. Sun changed a couple of things recently, so many of the howto&#8217;s are outdated [...]]]></description>
			<content:encoded><![CDATA[<p>I rarely need a Java plugin for my 64-bit Firefox browser, but once in a rare while I need to use certain government services that require a digital signature and the original Sun Java plugin &#8211; <a href="http://www.openjdk.org/">OpenJDK</a> just doesn&#8217;t cut it. Sun changed a couple of things recently, so many of the howto&#8217;s are outdated &#8211; this will work though:</p>
<p>Make sure you remove/disable OpenJDK:</p>
<div class="codebox">
$ rpm -e java-1.6.0-openjdk-plugin
</div>
<p>Get the latest <b>Java SE Runtime Environment (JRE)</b> <a href="http://java.sun.com/javase/downloads/">here</a>. Make sure it&#8217;s the 64-bit non-RPM version. The RPM might work too, I just didn&#8217;t test it. We&#8217;ll assume it&#8217;s version 1.6.0-12. Execute the following commands to unpack it:</p>
<div class="codebox">
$ umask 022<br />
$ chmod +x jre-6u12-linux-x64.bin<br />
$ ./jre-6u12-linux-x64.bin
</div>
<p>Accept the license agreement. The directory <tt>jre1.6.0_12</tt> is created. Execute the following commands to move JRE and make a symbolic link to the plugin:</p>
<div class="codebox">
$ mv jre1.6.0_12 /opt<br />
$ cd /usr/lib64/mozilla/plugins<br />
$ ln -s /opt/jre1.6.0_12/lib/amd64/libnpjp2.so .
</div>
<p>The new thing here is that they recently renamed the plugin from <tt>libjavaplugin_oji.so</tt> to <tt>libnpjp2.so</tt> &#8211; that set me off track for a while.</p>
<p>Restart Firefox and type in <tt>about:plugins</tt> and look for Java &#8211; if it&#8217;s there, you&#8217;re all set.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spind.net/2009/02/19/sun-jre-on-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ethernet device, where art thou?</title>
		<link>http://blog.spind.net/2008/12/16/ethernet-device-where-art-thou/</link>
		<comments>http://blog.spind.net/2008/12/16/ethernet-device-where-art-thou/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 09:09:50 +0000</pubDate>
		<dc:creator>hc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Fedora10]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[udev]]></category>

		<guid isPermaLink="false">http://blog.spind.net/?p=77</guid>
		<description><![CDATA[Today I lost my Ethernet devices, probably as a result of upgrading the apartment server from Fedora 9 to Fedora 10. The culprit turned out to be the service responsible for dynamic device management &#8211; udev. These symptoms started showing up in the logfile: Dec 16 07:26:12 server kernel: udev: renamed network interface eth1 to [...]]]></description>
			<content:encoded><![CDATA[<p>Today I lost my Ethernet devices, probably as a result of upgrading the apartment server from Fedora 9 to Fedora 10. The culprit turned out to be the service responsible for dynamic device management &#8211; <em>udev</em>. These symptoms started showing up in the logfile:</p>
<div class="codebox">
Dec 16 07:26:12 server kernel: udev: renamed network interface eth1 to eth4<br />
Dec 16 07:26:12 server kernel: udev: renamed network interface eth0 to eth2<br />
Dec 16 07:26:12 server kernel: udev: renamed network interface eth1 to eth5
</div>
<p>The <em>udev</em> daemon creates and renames devices according to configuration files in <tt>/etc/udev/rules.d/</tt> called <em>rules</em>. One of them &#8211; <tt>70-persistent-net.rules</tt> &#8211; specifically handles network devices. This file was screwed up badly by Anaconda, and had dupes and network devices from a previous hardware configuration. I cleaned up this file, so it had only contained rules that matched the hardware addresses of the installed network devices:</p>
<div class="codebox">
SUBSYSTEM==&#8221;net&#8221;, ACTION==&#8221;add&#8221;, DRIVERS==&#8221;?*&#8221;, ATTR{address}==&#8221;00:1e:8c:85:cd:e2&#8243;, ATTR{type}==&#8221;1&#8243;, KERNEL==&#8221;eth*&#8221;, NAME=&#8221;eth0&#8243;<br />
SUBSYSTEM==&#8221;net&#8221;, ACTION==&#8221;add&#8221;, DRIVERS==&#8221;?*&#8221;, ATTR{address}==&#8221;00:50:da:21:e3:34&#8243;, ATTR{type}==&#8221;1&#8243;, KERNEL==&#8221;eth*&#8221;, NAME=&#8221;eth1&#8243;<br />
SUBSYSTEM==&#8221;net&#8221;, ACTION==&#8221;add&#8221;, DRIVERS==&#8221;?*&#8221;, ATTR{address}==&#8221;00:01:02:24:6d:91&#8243;, ATTR{type}==&#8221;1&#8243;, KERNEL==&#8221;eth*&#8221;, NAME=&#8221;eth2&#8243;
</div>
<p>Various external <em>&#8220;plug-and-play&#8221;</em> helpers may add newly found network devices to this file, so if your network devices start changing names, you might want to check <tt>/etc/udev/rules.d/70-persistent-net.rules</tt>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spind.net/2008/12/16/ethernet-device-where-art-thou/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nVidia on Fedora 10</title>
		<link>http://blog.spind.net/2008/12/11/nvidia-on-fedora-10/</link>
		<comments>http://blog.spind.net/2008/12/11/nvidia-on-fedora-10/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 10:17:14 +0000</pubDate>
		<dc:creator>hc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Fedora10]]></category>
		<category><![CDATA[GLX]]></category>
		<category><![CDATA[nVidia]]></category>

		<guid isPermaLink="false">http://blog.spind.net/?p=74</guid>
		<description><![CDATA[Quick guide to installing nVidia drivers on Fedora 10, using the RPMFusion repository: $ yum install -y xorg-x11-drv-nvidia $ /usr/sbin/nvidia-config-display enable A reboot was required, as I had done some kernel upgrading and the installed nVidia module didn&#8217;t match the running kernel. If direct rending is enabled, you&#8217;ve got the driver properly installed: $ glxinfo [...]]]></description>
			<content:encoded><![CDATA[<p>Quick guide to installing nVidia drivers on Fedora 10, using the RPMFusion repository:</p>
<div class="codebox">
$ yum install -y xorg-x11-drv-nvidia<br />
$ /usr/sbin/nvidia-config-display enable
</div>
<p>A reboot was required, as I had done some kernel upgrading and the installed nVidia module didn&#8217;t match the running kernel. If <em>direct rending</em> is enabled, you&#8217;ve got the driver properly installed:</p>
<div class="codebox">
$ glxinfo | grep &#8216;direct rendering&#8217;<br />
direct rendering: Yes
</div>
<p>Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spind.net/2008/12/11/nvidia-on-fedora-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 10 &#8211; Light version</title>
		<link>http://blog.spind.net/2008/12/03/fedora-10-light-version/</link>
		<comments>http://blog.spind.net/2008/12/03/fedora-10-light-version/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 11:08:00 +0000</pubDate>
		<dc:creator>hc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Fedora10]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[LXDE]]></category>
		<category><![CDATA[Openbox]]></category>
		<category><![CDATA[Xfce]]></category>

		<guid isPermaLink="false">http://blog.spind.net/?p=62</guid>
		<description><![CDATA[Is your machine too old and too slow? Does the Gnome Desktop make you grind your teeth with impatience? Why not take Xfce or LXDE for a test spin? Install both software groups: yum groupinstall -y &#8216;XFCE&#8217; yum groupinstall -y &#8216;LXDE&#8217; Installing the LXDE group also gives you Openbox. LXDE and Xfce pretty much looks [...]]]></description>
			<content:encoded><![CDATA[<p>Is your machine too old and too slow? Does the <a href="http://gnome.org/">Gnome Desktop</a> make you grind your teeth with impatience? Why not take <a href="http://www.xfce.org/">Xfce</a> or <a href="http://lxde.org/">LXDE</a> for a test spin?</p>
<p>Install both software groups:</p>
<div class="codebox">
yum groupinstall -y &#8216;XFCE&#8217;<br />
yum groupinstall -y &#8216;LXDE&#8217;
</div>
<p>Installing the LXDE group also gives you <a href="http://icculus.org/openbox/">Openbox</a>. LXDE and Xfce pretty much looks like the Gnome Desktop with application menus and icons on the desktop, whereas Openbox reminds me more of the good old days, where every application launch started with right-clicking on the desktop.</p>
<p>To try these desktop environments out, click your username on the login screen, pick the environment you want in the <em>Session</em> pull-down menu at the bottom of the screen, enter your password and you&#8217;re all set.</p>
<p>Note: Openbox&#8217; <em>Logout</em> menu item didn&#8217;t work for me, but <em>Exit</em> did the trick. If you get stuck, you can simply kill the whole graphics subsystem (Xorg) with CTRL+ALT+BACKSPACE.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spind.net/2008/12/03/fedora-10-light-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 10 Install Notes</title>
		<link>http://blog.spind.net/2008/12/03/fedora-10-install-notes/</link>
		<comments>http://blog.spind.net/2008/12/03/fedora-10-install-notes/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 10:45:13 +0000</pubDate>
		<dc:creator>hc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Fedora10]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.spind.net/?p=52</guid>
		<description><![CDATA[These are the install notes for my Fedora 10 install on my workstation at the office: Enable access to both the free and the nonfree repositories at RPM Fusion and run an upgrade: rpm -Uvh \ http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm \ http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm Make sure the system is crisp and updated with the new repositories: yum clean all yum [...]]]></description>
			<content:encoded><![CDATA[<p>These are the install notes for my Fedora 10 install on my workstation at the office:</p>
<p>Enable access to both the <b>free</b> and the <b>nonfree</b> repositories at <a href="http://www.rpmfusion.org/">RPM Fusion</a> and run an upgrade:</p>
<div class="codebox">
rpm -Uvh \<br />
http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm \</p>
<p>http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm</p>
</div>
<p>Make sure the system is crisp and updated with the new repositories:</p>
<div class="codebox">
yum clean all<br />
yum upgrade -y
</div>
<p>Install GStreamer plugins with stability/license issues, including support for <b>AAC</b>, A52, SID, <b>MPEG2</b>, MP4, <b>H.264</b>, DVD navigation etc.:</p>
<div class="codebox">
yum install -y gstreamer-plugins-bad<br />
yum install -y gstreamer-plugins-ugly<br />
yum install -y gstreamer-plugins-schroedinger<br />
yum install -y gstreamer-ffmpeg
</div>
<p>Install various <b>alternate video players</b>:</p>
<div class="codebox">
yum install -y vlc<br />
yum install -y mplayer
</div>
<p>Install various <b>video encoders</b>:</p>
<div class="codebox">
yum install -y ffmpeg<br />
yum install -y mencoder
</div>
<p>In time of writing, Adobe&#8217;s <b>Flash plugin</b> isn&#8217;t available as RPM &#8211; at least not the lastest beta version for x86_64 &#8211; so download it from <a href="http://labs.adobe.com/downloads/flashplayer10.html">Adobe Labs</a>, unpack and drop <tt>libflashplayer.so</tt> in <tt>~/.mozilla/plugins/</tt>. Make sure you&#8217;ve removed any trace of NSPluginWrapper first. Example (this is a single-user install, so don&#8217;t run as root):</p>
<div class="codebox">
rpm -e nspluginwrapper<br />
wget http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.d20.7.linux-x86_64.so.tar.gz<br />
tar -zxvf libflashplayer-10.0.d20.7.linux-x86_64.so.tar.gz<br />
rm -f libflashplayer-10.0.d20.7.linux-x86_64.so.tar.gz<br />
mkdir &#8211;parent ~/.mozilla/plugins<br />
mv libflashplayer.so ~/.mozilla/plugins
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.spind.net/2008/12/03/fedora-10-install-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

