I’ve just been told about a programme called Foxit. The person who told me about it said it’s better than Adobe. I cannot update to newest version of Adobe on Firefox for some reason, so I keep having to click on the grey box to get anything to work on Adobe. Consequently if Foxit is better and compatible with Mint 13 then I’m interested.
I have never tried Foxit, so cannot comment on it but, you could update the flash player (assuming that is what you mean with Adobe) on Mint:
Go to Adobe site and download recent tar.gz pack of FLASH player for linux.
Extract folder, open it and copy paste the libflashplayer.so file to etc/alternatives overwrite the old one.
Use mv command while root. It should do the trick.
Sorry I was not clear enough, what I meant that by issuing the command as root it would replace the old flash file with the new one.
So if you do:
sudo mv libflashplayer.so /etc/alternatives
Assuming you have extracted the libflashplayer.so to your home, then that should work. Otherwise replace with correct location.
[EDIT]
If you have downloaded install_flash_player_11_linux.i386.tar.gz to your Downloads folder then the following command sequence should work:
mkdir ~/tmp
tar -xzvf ~/Downloads/install_flash_player_11_linux.i386.tar.gz -C ~/tmp
I have tried both sets of commands and these are the results I get from each:
sudo mv libflashplayer.so /etc/alternatives
tanya@VGN-NS30E-S ~ $ sudo mv libflashplayer.so /etc/alternatives
[sudo] password for tanya:
mv: cannot stat `libflashplayer.so’: No such file or directory
mkdir ~/tmp
tar -xzvf ~/Downloads/install_flash_player_11_linux.i386.tar.gz -C ~/tmp
tanya@VGN-NS30E-S ~ $ mkdir ~/tmp
mkdir: cannot create directory `/home/tanya/tmp’: File exists
tanya@VGN-NS30E-S ~ $ tar -xzvf ~/Downloads/install_flash_player_11_linux.i386.tar.gz -C ~/tmp
tar (child): /home/tanya/Downloads/install_flash_player_11_linux.i386.tar.gz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now