PDA

View Full Version : urgent: RealOne segmentation fault



pau
03-12-2004, 08:46 PM
Hi,

I am trying to install RealOne to listen to the news in Spain (I am spanish living in Germany) because almost all sites say that my Real 8 has not "r protocol"... I do not know what this mean, but I guess these sites require a newer version of Realplayer
I looked at this site and I found an script by probono to install RealOne but both with it or running directly ./r1p1_linux22_libc6_i386_a1.bin I get always

Segmentation fault ~/r1p1_linux22_libc6_i386_a1.bin

as root and normal user. Can you help me? Thanks.

Pau

PS: Here you are the script

#!/bin/bash

# knx_realone.sh 0.1
# Install RealONE Player
# by probono
# GPL

RP_NAME="r1p1_linux22_libc6_i386_a1.bin"

if [ -f "$RP_NAME" ];
then

# No nasty registration screen (works?)
mkdir -p ~/.realnetworks
cat >> ~/.realnetworks/RealPlayer_9_0 <<EOF
eregistered=1
cookiesenabled=0
EOF

# menu entry and MIME file association
mkdir -p ~/.kde/share/applnk/.hidden
cat >> ~/.kde/share/applnk/.hidden/realone.desktop <<EOF
[Desktop Entry]
Comment=
Exec=\$HOME/RealPlayer9/realplay
Icon=realplayer
InitialPreference=1
MimeType=audio/x-pn-realaudio;Application
Name=RealONE Player
ServiceTypes=
Terminal=false
Type=Application
EOF

# run
cp r1p1_linux22_libc6_i386_a1.bin ~
cd ~
chmod 777 r1p1_linux22_libc6_i386_a1.bin
~/r1p1_linux22_libc6_i386_a1.bin

else
echo "$RP_NAME is needed in current dir to install Realplayer"
echo "Please download it from: http://scopes.real.com/real/player/unix/unix.html"
fi