Link : http://askubuntu.com/questions/87447/how-can-i-install-adobe-air
Download Latest Version Air 2.6.0 For Linux to your Desktop:Ctrl+Alt+T to open terminal
sudo apt-get install ia32-libs
- (32bit crap if you want to run this in x64 Ubuntu)cd Desktop
(change dir. to Desktop dir.)chmod +x AdobeAIRInstaller.bin
(change mode - execute permission yes)./AdobeAIRInstaller.bin
(after you accept the Adobe Air license, it will prompt you for your password; it needs root access in order to install)
Maybe you'll get an error after the last command?
Sorry, an error has occurred. Adobe AIR could not be installed. Install either Gnome Keyring or KDE KWallet before installing Adobe AIR.
This can be fixed:
In a terminal (default shortcut: Ctrl+Alt+T), type:
locate libgnome-keyring.so
This is my result (yours might be different):
/usr/lib/x86_64-linux-gnu/libgnome-keyring.so.0 /usr/lib/x86_64-linux-gnu/libgnome-keyring.so.0.2.0
As suggested below by @jmendeth, the easiest way to tell the installer where to find these files is to use LD_LIBRARY_PATH:
For 32-bit Ubuntu (tested on 12.04):
LD_LIBRARY_PATH=/usr/lib/i386-linux-gnu ./AdobeAIRInstaller.bin
For 64-bit Ubuntu, the command line would probably be:
LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu ./AdobeAIRInstaller.bin
If the LD_LIBRARY_PATH trick doesn't work, you can try this:
Create a symbolic link to your location strings that you found with the previous commands:
sudo ln -s /usr/lib/x86_64-linux-gnu/libgnome-keyring.so.0 /usr/lib/libgnome-keyring.so.0` sudo ln -s /usr/lib/x86_64-linux-gnu/libgnome-keyring.so.0.2.0 /usr/lib/libgnome-keyring.so.0.2.0
Use following commands for 32-bit systems:
sudo ln -s /usr/lib/i386-linux-gnu/libgnome-keyring.so.0 /usr/lib/libgnome-keyring.so.0 sudo ln -s /usr/lib/i386-linux-gnu/libgnome-keyring.so.0.2.0 /usr/lib/libgnome-keyring.so.0.2.0
Then repeat step 4 & 6 (skip 5, as the permission to execute the file hasn't changed).
Remove symbolic links after installation of Adobe AIR 2.6.0:
sudo rm /usr/lib/libgnome-keyring.so.0 sudo rm /usr/lib/libgnome-keyring.so.0.2.0
Reference:
'TechNote > Linux' 카테고리의 다른 글
[Ubuntu] How to connect to Ubuntu via MSTSC. (0) | 2013.05.07 |
---|---|
[Ubuntu] Login using fingerprint reader on Ubuntu 12.04 (0) | 2013.03.19 |
How to set up xdmcp on Ubuntu 10.04 LTS (0) | 2013.01.10 |
Console Login Failure On CentOS (0) | 2012.11.01 |
우분투세미나발표자료 (0) | 2012.08.21 |