These are some notes on how I was able to get Webex to work on my Fedora 10 laptop. Webex is a java application so to start we need to install java. I usually opt to use the real thing because I’ve never been able to get Ice Tea to successfully work with the webex app.
Installing Java
So to start I download java from java.com. Specifically I downloaded version 1.6u14. This will offer up a file, jre-6u14-linux-i586.rpm.bin. After saving that to disk you need to convert this file to it’s native RPM format. This can be accomplished with these commands.
1 2 3 4 5 | # unpack RPM file sh jre-6u14-linux-i586.rpm.bin # install RPM rpm -Uvh jre-6u14-linux-i586.rpm |
Firefox Java Plugin
Once we have the java JRE installed we need to get the java plugin to be picked up by firefox. This can be accomplished by creating a unix link in firefox’s plugin directory, /usr/lib/mozilla/plugins. Additionally I also usually create a link in my home directory, ~/.mozilla/plugin. I occasionally run into problems where firefox seems to get confused about which plugins are available when I only install them to the firefox’s main system directory, so I’ve just gotten in the habit of installing them in both directories.
1 2 3 4 5 6 7 | # install plugin to firefox's main plugins dir cd /usr/lib/mozilla/plugins ln -s /usr/java/jre1.6.0_14/plugin/i386/ns7/libjavaplugin_oji.so # install plugin to user's firefox plugins dir cd ~/.mozilla/plugins ln -s /usr/java/jre1.6.0_14/plugin/i386/ns7/libjavaplugin_oji.so |
At this point do a quick restart of firefox and you should see the plugin under the pull-down, Tools -> Addons, under the plugins tab.

