* VERSION 11 is now available, can someone update this page? Thanks. *
I like RealPlayer and use it often, but I know that installing it on any Linux system can be a hassle for first time Linux users. Unfortunately the port of RealPlayer to Linux is a non-paid Community project, and therefore not perfect.
For Windows users this may seem like another example of a good reason to stay away from Linux, but RealAudio makes the vast majority of it's cash on Windows systems and they don't have the resources to devote to full time Linux developers.
Frustrating for new users, but what better way to work your way around the system and learn a little about the UNIX way of doing things? And there is no point in blaming Linux. RealAudio owns the program, not the community that took time out of their day to bring it to UNIX/Linux.
Here is the easy way and it takes no longer than 10 or 15 minutes.
First, go to https://player.helixcommunity.org/2005/downloads/ and download RealPlayer10GOL.bin ( it's an archive). Save this to My Documents. To make things simple it may be best to be in Full Desktop mode to do the following steps.
dir and RealPlayer10GOLD.bin will list in a green color, or you can do it the UNIX way and type ls -l and view the file, size and permissions which will show at the beginning of the line and read
rwxrwxrwx 1 root root 5790356 2008-04-05 21:37 RealPlayer10GOLD.bin
(the rwxrwxrwx stands for User/Group/World read/write/execute permissions which is what we want).
./RealPlayer10GOLD.bin and click the enter key (the ./ is essential in order to tell the system that it will find the program in your immediate PATH since the directory you are now in does not appear in the path of any of the system users, including root).Extracting files for RealPlayer installation….. and shortly afterwards show the Welcome Screen. Follow the directions and press the ENTER key to continue.[/root/RealPlayer]: enter the following path on the command line, /usr/lib/RealPlayer, and click the ENTER key.n and press the ENTER key.ln -s /usr/lib/RealPlayer/realplay /usr/bin/realplayls -al /usr/bin/real*lrwxrwxrwx 1 root root 28 2008-04-08 14:04 /usr/bin/realplay → /usr/lib/RealPlayer/realplayrealplay at the command line and press the ENTER key. the results will show a segfault (memory segmentation fault) and the line $REALPLAYBIN “$@”. This tells us that the RealPlayer supplied script has not found the directory where it's located in order to properly start up.cd /usr/lib/RealPlayercp realplay realplay.bak chmod -x realplay.baknano realplay#!/bin/sh and press the ENTER key.export GTK_IM_MODULE=
export QT_IM_MODULE=
export LC_ALL=“C”
export LANG=“C”# if REALPLAYDIR detection doesn't work, hardcode the directory here
REALPLAYDIR=`dirname $REALPLAYSCRIPT`# so that it looks like this: # if REALPLAYDIR detection doesn't work, hardcode the directory here
# REALPLAYDIR=`dirname REALPLAYSCRIPT`` and '. Between these delete the words dirname $REALPLAYSCRIPT and enter /usr/lib/RealPlayer. It should all look like this when you're done:# if REALPLAYDIR detection doesn't work, hardcode the directory here
# REALPLAYDIR=`dirname $REALPLAYSCRIPT`
REALPLAYDIR=`/usr/lib/RealPlayer`y and press the ENTER key to save the buffer as realplay.There is more to be done in order to have the player load automatically from web page links. I'll follow up with those instructions later.
Nb : there is a new version , RealPlayer11 , that you can download from : http://www.real.com/linux only when following the above instructions you get blocked at the second part of the nano business . Has someone a solution , a new script ?