Firefox and Flash on x86_64
Perhaps you, proud owner of a 64bit processor, running nice linux distributions, have noticed that there is no support for Flash files on your distribution-coming Firefox.
The problem is known at Macromedia and the fact is that there is no installer for Flash player on 64bit processors.
I have run Firefox without Flash for too much tima. NOW i want to see those eye candy clips...
There is the solution, and is quite simple... we must download Firefox 32bit, download the flash installer for linux and then proceed with a 32bit tailored binary.
First download Firefox from Mozilla web site. The download should consist of a tar.gz file containing the binaries of Firefox. Unpack the file in your home directory
tar -xzvf firefox-2.0.tar.gzor whatever is the filename.
Then go to Macromedia site and download the Flash Installer. It comes also in a tar.gz file. Save it to your home dir and unpack it by typing:
tar -xzvf install_flash_player_7_linux.tar.gzIn the created directory there is a file called libflashplayer.so. Copy the file to the plugins directory of the unpacked firefox dir:
cp install_flash_player_7_linux/libflashplayer.so firefox/plugins/Well that's done.... but.... if you run the new firefox by typing
~/firefox/firefoxyou will notice that no fonts are displayed in flash files... (at least in my fedora core 5...) what a problem!
The fact is that flash player searches the fonts in a wrong path. We can correct this by typing:
mkdir -p /usr/X11R6/lib/X11cd /usr/X11R6/lib/X11
ln -s /etc/X11/fs
ln -s /usr/share/X11/fonts
Now Flash player shows the fonts!! Nice!!