Created
December 14, 2013 02:40
-
-
Save kendellfab/7955072 to your computer and use it in GitHub Desktop.
Fedora MP3 support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm | |
rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm | |
yum install gstreamer-plugins-ugly gstreamer-plugins-bad gstreamer-ffmpeg | |
## java ## | |
alternatives --install /usr/bin/java java /usr/java/latest/jre/bin/java 200000 | |
## javaws ## | |
alternatives --install /usr/bin/javaws javaws /usr/java/latest/jre/bin/javaws 200000 | |
## Java Browser (Mozilla) Plugin 32-bit ## | |
alternatives --install /usr/lib/mozilla/plugins/libjavaplugin.so libjavaplugin.so /usr/java/latest/jre/lib/i386/libnpjp2.so 200000 | |
## Java Browser (Mozilla) Plugin 64-bit ## | |
alternatives --install /usr/lib64/mozilla/plugins/libjavaplugin.so libjavaplugin.so.x86_64 /usr/java/latest/jre/lib/amd64/libnpjp2.so 200000 | |
## Install javac only if you installed JDK (Java Development Kit) package ## | |
alternatives --install /usr/bin/javac javac /usr/java/latest/bin/javac 200000 | |
alternatives --install /usr/bin/jar jar /usr/java/latest/bin/jar 200000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment