Wed, 17 Jan 2007
Fedora Core 6 - GeForce3 Ti 200
I upgraded my main home computer to Fedora Core 6 (FC6) this past weekend. It has faithfully run Fedora Core 3 for the
last couple of years, however, I was so impressed with FC6 on my laptop I decided to update the main computer as well.
After completing the installation I usually look to The Unofficial Fedora FAQ
for answers on the usual little quirks that come with each release, however, they appear to have not updated the site
for FC6. Instead, I turned to Fedora Core 6 Tips and Tricks
for quick references to installing the most popular free add-on software packages.
The first thing I always do after a fresh install is update my
yum configuration to include the livna and
freshrpms repositories,
rpm -ihv http://ayo.freshrpms.net/fedora/linux/6/i386/RPMS.freshrpms/freshrpms-release-1.1-1.fc.noarch.rpm
rpm -ihv http://rpm.livna.org/fedora/6/i386/livna-release-6-1.noarch.rpm
Installing Xine DVD Player
With the above repositories setup, installing the Xine Video Player is as simple
as entering the following yum statement,
yum install xine xine-lib-extras-nonfree libdvdcss
and letting it resolve the other package dependencies. The libdvdcss library is what allows one to
play commercial DVD movies.
Installing the Nvidia Drivers
One of my other motivations for upgrading to FC6 was the new OpenGL accelerated desktop effects provided by
Compiz. Upon grabbing the latest drivers from Nvidia I discovered
that my video card is now listed as "legacy" and is no longer supported in the most recent driver downloads. I read
that Compiz needs at least version 96xx of the Nvidia drivers to work. I had to try several different ones until I
found that the NVIDIA-Linux-x86-1.0-9631-pkg1.run
package worked correctly.
My final modified xorg.conf configuration file is below which contains the necessary entries to add the
Nvidia OpenGL drivers as well as the transparency effects.
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Module"
Load "dbe"
Load "extmod"
Load "type1"
Load "freetype"
Load "glx"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Option "AddARGBGLXVisuals" "True"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
I am still amazed it runs as well as it does on my aging Pentium III 866 Mhz.
posted: 11:00 | 0 comments | tags: compiz, fedora, linux, nvidia
Thu, 02 Nov 2006
Fedora Core 6
I downloaded and installed the latest offering from the Fedora Project this past weekend: Fedora Core 6 "Zod". For me the fastest mirror continues to be the one graciously provided by Telus in Canada. As with the last Fedora release, this one installed without a problem on my Toshiba Satellite Pro 4600 notebook. Sound and wireless networking worked perfectly out of the box.

In addition to being one of the slickest looking releases, it appears to run faster than Core 5, which was even faster than Core 4. It is amazing to me, and a testiment to open source, that each release of an operating system can offer more in terms of features, yet still run more efficiently on my aging Pentium III notebook than the previous version. Wouldn't it be nice is all operating systems worked that way?
posted: 00:33 | 0 comments | tags: fedora, linux, software
Mon, 14 Mar 2005
Fedora Core 3 Sound Problems
What I discovered after my previous post is that while I now had sound on my Toshiba 4600, it sounded like garbage. I started up
XMMS to listen to a few oggs and
when I turned up the volume the music came across fuzzy and distorted. No amount of fussing with the mixer controls or XMMS would correct
it.
I discovered that going into the preferences (Ctl+P) of XMMS the Output Plugin was set on "eSound" and switching it to the "ALSA"
driver fixed the sound and made it crystal clear.
posted: 22:09 | 0 comments | tags: alsa, fedora, linux, notebook, xmms
Sun, 13 Mar 2005
Fedora Core 3 on Toshiba Satellite Pro 4600
I recently upgraded my notebook from Fedora Core 1 to Fedora Core 3. It was a smooth install with the exception of two common
annoyances: no sound and no wireless network connection. This problem was different from my Fedora Core 2 installation on the
notebook in which it did not even see the wireless card, and having no time to fuss with it, I re-installed FC1. In FC3 both the
Intel 82801BA/BAM AC'97 audio card and the internal Intersil PRISM2 wireless card were detected, however, I could not activate them.
After searching the Fedora Forum I came across
this link in which greeners posted a
solution which worked on his 4600. Apparently there is a problem with IRQ 11 being used by the ACPI
module and it interferes with both the sound card and the wireless NIC interface. The solution is to add an option to the kernel load
statement in the grub loader configuration.
Edit the /etc/grub.conf file and append "pci=noacpi" to the end of the kernel line as illustrated below:
title Fedora Core (2.6.9-1.667)
root (hd0,0)
kernel /vmlinuz-2.6.9-1.667 ro root=LABEL=/1 rhgb quiet pci=noacpi
initrd /initrd-2.6.9-1.667.img
Reboot the notebook and you should have a working sound card now. To enable the wireless card I simply went into the Network
Configuration and added a new "Wireless Device" device type as eth1.
posted: 23:13 | 0 comments | tags: fedora, linux, notebook
Sat, 08 Jan 2005
Fedora Core 3 and PyOpenGL 2.0 Installation
According to the website, PyOpenGL "is a cross platform Python binding
to OpenGL and related APIs." Since I have started playing around a bit with Python this
new year I was curious to see how the language could be used for graphics, and specifically, 3D graphic development. In the past I have
tinkered with OpenGL a bit, however, it has usually been by means of programming under
C and using SDL as the library.
I was a little daunted after viewing the installation page
and seeing what needed to be done, however, being new to Python I was pleasantly suprised to find that most of the OpenGLContext dependencies could simply
being installed by entering,
python setup.py install
after untarring the archives into a temporary directory. It doesn't get much easier than that.
Pay close attention to the requirement for GLUT 3.7. On Fedora Core 3
RedHat has taken to installing freeglut,
which is a completely open sourced alternative to the OpenGL Utility Toolkit (GLUT). In theory, it should be a fairly complete drop-in replacement for GLUT,
however, I could not get PyOpenGL to install with it on my system. I read a few posts mostly pertaining to Fedora Core 2 and similar issues and with the
latest alpha release of PyOpenGL-2.0.2.01.tar.gz the author has attempted to have
the installation procedure detect the presence of freeglut, however, I was not able to get it to work.
In the end I uninstalled freeglut, downloaded and installed GLUT 3.7 from source
and then reinstalled the latest alpha release of PyOpenGL. After receiving no further errors, I went into "/usr/lib/python2.3/site-packages/OpenGL/Demo/GLUT" and typed in,
python gears.py
and voila! I had hardware accelerated rotating gears doing about 1400+ fps on my Pentium III 866.
posted: 00:54 | 0 comments | tags: fedora, linux, pyopengl, python
Tue, 28 Dec 2004
Fedora Core 3 and Nvidia
I have had the Fedora Core 3 CDs burned almost since they came out and have been waiting for an ideal time to upgrade the
Fedora Core 1 install on my desktop. Since there never is an ideal time to do a system upgrade I decided to let it run while
working on my laptop today.
If you are doing the same for the first time I strongly recommend you follow the Fedora Core 3 Installation Notes as
it is a valuable reference and can help you avoid a few pitfalls. I had the page bookmarked and never bothered to read it until after I had installed FC3. Read the notes before you install. Seriously.
The install went great and I immediately downloaded the latest Nvidia linux display driver 1.0-6629, read their
installation notes and proceeded. After rebooting the result was a system that would hang on the message, "Configuring kernel parameters." If left alone the system would eventually
boot to a login prompt. After a brief panicked search on Google I found
this reference which mostly worked for me.
What I did to solve the problem and get FC3 back into a graphical state was modify the above to this:
- Interrupt GRUB from booting by pressing any key, edit the bootparameters by pressing the "e"-key, and remove the "rhgb"-parameter from the boot parameters. Then continue booting normally. (This will skip the graphical boot in Fedora.)
- Fedora might complain about not being able to the graphical display, however, ignore it and cancel all questions until you get to the login prompt.
- Login as root, and enter "/sbin/modprobe nvidia" to load the nvidia-module.
- Enter "cp -a /dev/nvidia* /etc/udev/devices/"
- Finally, modify the /etc/rc.local file using a text editor (eg. "vi /etc/rc.local") and at the end of the file add the line, "/sbin/modprobe nvidia" This should fix the boot problem.
- Save and exit and you should be back at the command prompt.
- Reboot the system and you should be back in business
I have seen posts in the meantime that suggest using RedHat's up2date to update the udev packages before applying the Nvidia driver solve a lot of the problems and should make the above unnecessary especially
step 4 above as that is the only way to make the changes stick through a reboot.
posted: 11:35 | 0 comments | tags: fedora, linux, nvidia