6

I tried:

  1. Launching Ubuntu Software Centre
  2. I typed in "air" and found "adobe air"
  3. It says "available from the 'maverick-partner' source. and has a button "use this source"
  4. I clicked "use this source", I saw a "in progress (1)" icon come up in the side bar, and disappear, but nothing happened/changed.

I'm stuck.

I have actually already added the maverick-partner source to apt so I could install sun-java6-jdk.

Braiam
  • 69,112

7 Answers7

3

How to install Adobe AIR on Ubuntu 13.10

Instructions for Ubuntu 13.10

How to install Adobe AIR on Ubuntu 10.10

I have looked into this and on the official Adobe Air 2 page for Linux, 64-bit binaries are not available, although 32-bit should work fine.

Try going through the steps on this page here: http://kb2.adobe.com/cps/521/cpsid_52132.html

Although they are intended for 9.04, I can't see why this wouldn't work on 10.10.

If following those steps don't work, try this article on OMG!Ubuntu!: http://www.omgubuntu.co.uk/2010/01/how-to-install-adobe-air-on-ubuntu-64bit-2/

2

How to install Adobe Air in Ubuntu 13.10

There are 2 ways to install Adobe Air on Ubuntu 13.10.

  1. Install it using wine
  2. Install it using outdated Linux installer.

Using wine

The easyest way is to use Playonlinux. Please note that some functions will not work.

Outdated Linux Installer

Please note that adobe AIR is no longer officially supported. Installing it requires an enormous amount of hacking which can make your system unstable.

ia32-libs

Adobe AIR depends on the ia32-libs package. However, that package was dropped for Ubuntu 13.10. This should not be a problem because there are other packages that do the exact same thing, however, older software thinks this is a problem. With .deb packages, you can just repackage them and remove the ia32-libs dependency. Seeing as this installer is a .bin blob, the only way to do it is to install ia32-libs manually.

Download the ia-32-libs package from the raring repository and install it manually: http://packages.ubuntu.com/raring/amd64/ia32-libs/download

Other dependencies

use the "Get Libs" utility. to grab the 32-bit libraries that your package manager will not allow to co-exist with your 64-bit ones.

wget http://jeffhendricks.net/getlibs-all.deb

Install "Get Libs" and grab our libraries.

sudo dpkg -i getlibs-all.deb
sudo getlibs -l libhal-storage.so.1
sudo getlibs -l libgnome-keyring.so.0.2.0

Install the required package dependencies.

sudo apt-get install libhal-storage1 libgnome-keyring0 lib32nss-mdns

Make a symbolic link between the 32-bit libraries installed by Get Libs, and the location they are expected to be found in. (one of these two might not work on your system, I'm not sure which one)

sudo ln -s /usr/lib/i386-linux-gnu/libgnome-keyring.so.0 /usr/lib/libgnome-keyring.so.0
sudo ln -s /usr/lib32/i386-linux-gnu/libgnome-keyring.so.0 /usr/lib/libgnome-keyring.so.0

Actual adobe AIR installation

Download the Adobe AIR installer:

wget http://airdownload.adobe.com/air/lin/download/2.6/AdobeAIRInstaller.bin

Make it excecutable

chmod +x ./AdobeAIRInstaller.bin

And finally, Install Adobe AIR itself

sudo ./AdobeAIRInstaller.bin

source: www.thepowerbase.com/2013/06/how-to-install-adobe-air-in-ubuntu-13-04/ source: http://ubuntuforums.org/showthread.php?t=2181649

1

Go to the Adobe Air download page, and select the .deb version in the pull down menu, let it download and install like you would any other .deb file.

Here is a howto explaining how to install 32bit Adobe Air, on 64bit Ubuntu.... It doesn't look like here is an easier way to do it.

TheXed
  • 27,638
1

The partner repository has been causing trouble recently to some users when installing Adobe Flash, because the connection times out and the installation is interrupted. So I suspect you are experiencing the same problem in regard to Adobe Air. Try again later or download the deb file from Adobe directly.

lovinglinux
  • 6,427
0

I used this ppa. It has the 64-bit package.

To add the ppa and install Adobe Air run:

sudo add-apt-repository ppa:dajhorn/adobeair
sudo apt-get update 
sudo apt-get install adobeair

You could just run the first two lines of code then install it in the software center if you wish :)

0

have you tried to download the .deb package from the official repos or website.then you may use Gdebi package installer(available in USC) to install adobe air.

i have tried this for many apps that don't install properly from USC.it works in most cases.

0

I second @Galgalesh's answer to use Wine because I was unlucky trying approaches to install Adobe AIR natively on Ubuntu 14.04 LTS. Wine works for me instead.

Here are my steps for installing Adobe AIR on Ubuntu 14.04LTS which I am using to run time management app Klok (from getklok.com - https://askubuntu.com/a/563302/7072 ):-

I used the free WineHQ software which enables many Windows applications to run on Ubuntu.

Steps:

1) Installing WINE, part 1 of 2: I ensured a pre-requisite package was installed https://www.winehq.org/download/ubuntu

2) Installing WINE, part 2 of 2: I then installed WineHQ from the commandline, issued command: sudo apt-get build-dep wine1.6

3) Installing Adobe AIR - part 1 of 2: I downloaded Adobe Air from here http://labs.adobe.com/downloads/air.html

4) Installing Adobe AIR - part 2 of 2: I right clicked on the downloaded air16_win.exe file, from: http://labs.adobe.com/downloads/air.html From the pop-up menu, I selected Open With, then selected Wine Windows Program Manager and followed the steps from there.