3

I cannot run firefox version 9.0.1. When i try to execute the binary firefox I get an error -bash: ./firefox: cannot execute binary file. The info returned by file is as follows:

firefox: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV),
dynamically linked (uses shared libs), for GNU/Linux 2.6.9, stripped

The system info returned by uname -r is:

2.6.37

It might be worth mentioning that I do not have administrator rights on this machine (I have a shell account).

I am downloading the file from the following web page: http://www.mozilla.org/en-US/firefox/all.html (file name firefox-9.0.1.tar.bz2)

Then I am extracting the file into my home folder using tar xvf firefox-9.0.1.tar.bz2. Then I go into the firefox directory and try to execute by typing ./firefox. After that I get the aforementioned error.

The file firefox of course have the rights to be executed (x).

Does anyone have any idea why I cannot execute the browser?

Jagger
  • 153

1 Answers1

2

The problem was indeed the fact that the system is 64 bit and does not have the support for executing 32 bit binaries installed.

I downloaded the newest version of Firefox for x64 architecture from Firefox 9.0.1 x86_64

Jagger
  • 153