LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-26-2009, 10:33 PM   #1
yewint
Member
 
Registered: Dec 2009
Posts: 57

Rep: Reputation: 15
problem installing .bin file


Hi, I am new to Linux

I download "RealPlayer11GOLD.bin"
and I want to install.
I wrote this in shell

$ chmod +x RealPlayer11GOLD.bin
$ ./RealPlayer11GOLD.bin

but I got the following error message

$ bash: ./RealPlayer11GOLD.bin: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory

Please help me out, thanks
 
Old 12-26-2009, 11:58 PM   #2
gregorian
Member
 
Registered: Apr 2006
Posts: 509

Rep: Reputation: 34
Hi, I'm not sure what's the cause of your error. But if you want to play videos, execute this to get a general purpose player that supports a lot of formats:

yum install mplayer mplayer-skins mplayer-fonts mplayerplug-in mplayer-gui mplayer-codecs

Last edited by gregorian; 12-27-2009 at 12:00 AM.
 
Old 12-27-2009, 12:43 AM   #3
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Welcome to LQ.

The Real package for Fedora :

http://www.real.com/linux .. .. look for RPM Package ..
> > http://www.real.com/realcom/R?href=h...ayer11GOLD.rpm
→ RealPlayer11GOLD.rpm

Other instructions
http://liquidat.wordpress.com/2008/0...-110-released/
.....
.....


The bin installer may also be usable ?
chmod +x RealPlayer11GOLD.bin

.. Or use the command : 'sh RealPlayer11GOLD.bin'.
.....
 
Old 12-27-2009, 03:11 AM   #4
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
What is the output from
Code:
rpm -qf /lib/ld-linux.so.2 
rpm -qa | grep glibc
I would suggest to reinstall glibc
 
Old 12-27-2009, 05:18 AM   #5
yewint
Member
 
Registered: Dec 2009
Posts: 57

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by repo View Post
What is the output from
Code:
rpm -qf /lib/ld-linux.so.2 
rpm -qa | grep glibc
I would suggest to reinstall glibc
hi repo,
the output for rpm -qf /lib/ld-linux.so.2 is "No such file or directory" and the second is as follow

glibc-common-2.9-2.x86_64
glibc-2.9-2.x86_64
glibc-headers-2.9-2.x86_64
glibc-devel-2.9-2.x86_64

Anyway to execute that bin file? I also download rpm format and install with the following command

$rpm -Uvh RealPlayer11GOLD.rpm

and I got the error again

error: can't create transaction lock on /var/lib/rpm/__db.000
(No such file or directory)

Last edited by yewint; 12-27-2009 at 05:29 AM.
 
Old 12-27-2009, 07:06 AM   #6
ongte
Member
 
Registered: Jun 2009
Location: Penang, Malaysia
Distribution: Mageia, CentOS, Ubuntu
Posts: 468

Rep: Reputation: 72
For Fedora you should use the RPM installer.

error: can't create transaction lock on /var/lib/rpm/__db.000
(No such file or directory)

The error above is because you are not root. Switch to root before running the command.

$ su -
 
Old 12-27-2009, 08:46 AM   #7
Samotnik
Member
 
Registered: Jun 2006
Location: Belarus
Distribution: Debian GNU/Linux testing/unstable
Posts: 471

Rep: Reputation: 40
/lib/ld-linux.so.2 is a link to /lib/ld-2.X.X.so (instead of X there are some version numbers). So you should execute a command (as a root):
# ln -s $(ls /lib/ls-2.*) /lib/ld-linux.so.2
 
Old 12-27-2009, 11:33 AM   #8
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
The Real install instructions for RealPlayer .. ..

I think it is quite clear how to install the RealPlayer11GOLD.rpm

But OK, I can repeat the install instructions, post # 3
http://liquidat.wordpress.com/2008/0...-110-released/
The instructions say ( in case nobody read it ) :

1) cd <location-of-RealPlayer11GOLD.rpm-package>/
2) su
3) yum --nogpgcheck localinstall RealPlayer11GOLD.rpm

Then you will get "lsb" + all other dependencies !
Total 13 packages on my Fedora 12.
.....

And you get a "Real Player 11" icon in
> > ' Programs ' > Sound & Video ..
.....

But then again, you never told which Fedora, you are using.
May be it doesn't work with an old Fedora core ..
.....

Last edited by knudfl; 12-27-2009 at 04:53 PM.
 
Old 12-28-2009, 02:13 AM   #9
yewint
Member
 
Registered: Dec 2009
Posts: 57

Original Poster
Rep: Reputation: 15
Thanks to all for your replies , I will try again like you all said. I am now using fedora 10.
 
Old 12-28-2009, 02:48 AM   #10
yewint
Member
 
Registered: Dec 2009
Posts: 57

Original Poster
Rep: Reputation: 15
Oh yes, I got it. Thanks knudfl. Can you suggest me how to set installed dir to that command?

Last edited by yewint; 12-28-2009 at 04:28 AM.
 
Old 12-28-2009, 02:04 PM   #11
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
.. If your question is : how to 'cd' to RealPlayer11GOLD.rpm :
Example : it is located on the Desktop ..
1) cd Desktop
.. or 1a) : cd /home/"username"/Desktop/
2) su
3) yum --nogpgcheck localinstall RealPlayer11GOLD.rpm

.. And if your question means : where are the installed files ..
The application is installed to /opt/ ,
and the file 'realplay' is (also) in /usr/bin/realplay
( The start command is : realplay ).
.....
 
  


Reply

Tags
realplay, realplayer, realplayer11



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
installing from a .bin file nishant.4545 Linux - Newbie 1 06-20-2009 02:19 AM
Installing .bin-files, leave the file in /usr/local/bin/ ? lagu2653 Linux - Software 1 11-08-2005 08:30 PM
Installing a .Bin file upgradez Linux - Software 2 11-08-2003 07:01 AM
Installing a .bin file EECGeek Linux - Newbie 6 09-28-2003 08:39 AM
Installing BIN-file kbhadsten Linux - General 3 09-10-2002 05:54 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:31 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration