Sunday, May 5, 2024
229
rated 0 times [  229] [ 0]  / answers: 1 / hits: 144726  / 2 Years ago, sat, july 16, 2022, 9:41:54

I am a heavy user of certain applications that are built on AIR.



It appears that AIR has discontinued support for Linux. Even the older versions in the Adobe AIR Archives seem to support only 32 bit Linux distributions and I am on 64 bit currently.



Is there even a slight possibility that I could run AIR in these conditions? If so, can you please tell me where can I get a detailed step by step installation for this?


More From » software-installation

 Answers
0

  1. Download Latest Version Air 2.6.0 For Linux to your Desktop:






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:




[#41478] Sunday, July 17, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
olltea

Total Points: 238
Total Questions: 115
Total Answers: 107

Location: Moldova
Member since Tue, Feb 7, 2023
1 Year ago
;