Playing MP3 Files in Fedora 8 using KDE

Fedora, Linux 2 Comments »

To play MP3 files in Fedora 8 with KDE you need to add software to your default installation. This software does not come “stock” with KDE because the software is not free and RedHat is required to filter it — therefore if you download this update make sure you check the licensing agreements:

  1. First, add Livna sources using rpm
    rpm -ivh http://rpm.livna.org/livna-release-8.rpm
  2. Next, Install kdemultimedia-extras-nonfree** using yum
    yum install kdemultimedia-extras-nonfree
  3. That is it, next launch Amarok as an example and hello MP3 music!
    Amarok Launching
    Q: Hey Chris, why does the kdemultimedia-extras package end in “-nonfree”
    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 not LGPL. Please note the the license of the entire library is not LGPL! So of course you shouldn’t install it unless you pay the owners for licensing rights.

2 Comments »
Digg!

Playing MP3 Files in Fedora 8 using Gnome

Fedora, Linux No Comments »

To play MP3 files in Fedora 8 you need to add software to your default installation:

  1. First, add Livna sources using rpm
    rpm -ivh http://rpm.livna.org/livna-release-8.rpm
  2. Next, Install Rhythmbox (assuming you are using Gnome) using yum
    yum install rhythmbox
  3. Next, Install gstreamer-plugins-ugly** using yum
    yum install gstreamer-plugins-ugly
  4. That is it, next launch Rythmbox and hello music!
    Rythmbox Launch

    Q: Hey Chris, why does the gstreamer-plugins end in “-ugly”
    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 not LGPL. Please note the the license of the entire library is not LGPL! So of course you shouldn’t install it unless you pay the owners for licensing rights.

No Comments - Post Your Comment »
Digg!

rpmdb: Lock table is out of available locker entries

Fedora, Linux No Comments »

If while using ‘yum’ or ‘rpm’ you receive the following error:

rpmdb: Lock table is out of available locker entries

Your RPM dB files are screwed up… 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 rebuild the Berkley dB files from scratch.

Here is how you fix this error:

  1. Make a backup of your current files
  2. Remove the damaged files
  3. Rebuild your RPM Berkley dB files
  4. Use yum again

Here is the command walk through:

  1. As root, execute this:
    cd /root; tar cvzf rpm-backup.tar.gz /var/lib/rpm
  2. Remove the Berkeley dB files which yum and rpm use:
    rm /var/lib/rpm/__db.00*
  3. Instruct rpm to rebuild the databases files:
    rpm --rebuilddb
  4. Test your yum command again:
    yum install somepackage
No Comments - Post Your Comment »
Digg!

Playing MP3 files in Fedora 7

Fedora No Comments »

To play MP3 files in Fedora 7 you need to add software to your default installation:

  1. First, add Livna sources using rpm
    rpm -ivh http://rpm.livna.org/livna-release-6.rpm
  2. Next, Install Rhythmbox using yum
    yum install rhythmbox
  3. Next, Install gstreamer-plugins-ugly** using yum
    yum install gstreamer-plugins-ugly
  4. That is it, next launch Rythmbox and hello music!
    Rythmbox Launch

    Q: Hey Chris, why does the gstreamer-plugins end in “-ugly”
    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 not LGPL. Please note the the license of the entire library is not LGPL! So of course you shouldn’t install it unless you pay the owners for licensing rights.

No Comments - Post Your Comment »
Digg!

Reload fstab (/etc/fstab)

Fedora, Linux 1 Comment »

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


Mount -a
1 Comment »
Digg!

The HTML Validator Firefox Plugin In Linux

Fedora, Firefox No Comments »

I use the “HTML Validator” 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 message took me a few minutes of research and I never found a step-by-step HOW-TO for Fedora — so here goes!

Here is how you get rid of this message and get the plugin working in Fedora Core 6 or Fedora 7:

  1. First, uninstall the plugin by clicking on Tools–>Add-ons and clicking uninstall
    Remove HTML Validator
  2. Second, close all instances of Firefox
  3. Next, install three packages using yum
    • compat-libstdc++-296
    • compat-libstdc++-33
    • tidy
    linux> yum install compat-libstdc++-296 compat-libstdc++-33 tidy
  4. Reinstall the HTML Validator plugin
  5. Restart Firefox, done!

HTML Validator should now be installed inside of Firefox on Fedora Core 6 or Fedora 7

No Comments - Post Your Comment »
Digg!

Missing phpize?

Fedora, PHP No Comments »

In an attempt to add the PECL Upload Progress package, I received the following error:

[root@zebra cbschuld]# pecl install uploadprogress-beta
downloading uploadprogress-0.3.0.tgz ...
Starting to download uploadprogress-0.3.0.tgz (4,677 bytes)
.....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 php-devel (oops). If you are missing phpize on your machine add it with:

yum install php-devel
No Comments - Post Your Comment »
Digg!
Original Design by j david macor.com. Original WP Theme & Icons by N.Design Studio
Entries RSS Comments RSS Log in