This is now the 4th Fedora system I need to setup and I continue to reference the great article at: http://www.mjmwired.net/resources/mjm-fedora-f9.html#mp3 to get my job done. But why not convert it into a script so that I can avoid the headache if I have to do it a 5th time! And might also come handy to other folks.
Note: All commands here are from the original post (except where specified)
How to use: login as your normal user and open a root shell by doing #su -
#!/bin/sh
# A script to do/install common addons and tweaks. Referenced from http://www.mjmwired.net/resources/mjm-fedora-f9.html#mp3 and added onto. Make sure to change the variables below per your environment
#the loginname/user you would use on the linux box
LOGINNAME=pr0t0s
#Setup sudo
echo '${LOGINNAME} ALL=(ALL) ALL' >> /etc/sudoers
#setup rpm, livna
rpm --import /etc/pki/rpm-gpg/*
rpm -ivh http://rpm.livna.org/livna-release-9.rpm
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-livna
#echo networkwait
echo NETWORKWAIT=1 >> /etc/sysconfig/network
#gcc compat and gcc 3.4
yum -y install compat-libstdc++-33 compat-libstdc++-296
yum install compat-gcc-34 compat-gcc-34-c++
#Install mp3 and media players
#audacious
yum -y install audacious audacious-plugins-nonfree*
yum -y install rhythmbox gstreamer-plugins-ugly gstreamer-plugins-bad gstreamer-ffmpeg
yum -y install amarok amarok-extras-nonfree amarok-visualisation
yum -y install k3b-extras-nonfree
yum -y install mplayer mplayer-gui gecko-mediaplayer mencoder
yum -y install mplayer mplayer-gui gecko-mediaplayer mencoder
mkdir -p /usr/lib/codecs
wget http://www.mplayerhq.hu/MPlayer/releases/codecs/all-20061022.tar.bz2
tar -jxvf all-20071007.tar.bz2 --strip-components 1 -C /usr/lib/codecs/
yum -y install vlc
# True type fonts
rpm -ivh msttcore-fonts-2.0-2.noarch.rpm
# Flash Support
rpm -ivh http://linuxdownload.adobe.com/adobe-release/adobe-release-i386-1.0-1.noarch.rpm
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux
yum -y install flash-plugin libflashsupport
#Adobe Acrobat Reader
rpm -ivh http://linuxdownload.adobe.com/adobe-release/adobe-release-i386-1.0-1.noarch.rpm
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux
yum -y install AdobeReader_enu
# Shout out Yohoo message
echo " ######################## YOOOHOOOOO=done #####################"