허니몬의 IT 이야기/리눅스 이야기, 우분투
출처 : http://www.jamesward.com/2010/10/14/install-adobe-air-on-64-bit-ubuntu-10-10

Right now Adobe AIR is only officially available for 32-bit Linux. But it does work on 64-bit Linux with the 32-bit compatibility libraries. There are several ways to install Adobe AIR on Linux. My preferred way on Ubuntu is to use the .deb package. However the .deb package distributed by Adobe can only be installed on 32-bit systems. Good news is that this can be easily fixed! To install the Adobe AIR .deb package on a 64-bit system just follow these steps:

  1. Download the Adobe AIR .deb file
  2. In a terminal window go to the directory containing the adobeair.deb file
  3. Create a tmp dir:
    mkdir tmp
  4. Extract the deb file to the tmp dir:
    dpkg-deb -x adobeair.deb tmp
    ++ dpkg-deb 명령어 설명 : http://manpages.ubuntu.com/manpages/intrepid/man1/dpkg-deb.1.html
  5. Extract the control files:
    dpkg-deb --control adobeair.deb tmp/DEBIAN
  6. Change the Architecture parameter from “i386″ to “all”:
    sed -i "s/i386/all/" tmp/DEBIAN/control
    ++ sed 명령어 설명 : http://manpages.ubuntu.com/manpages/intrepid/man1/sed.1.html
  7. Repackage the deb file:
    dpkg -b tmp adobeair_64.deb

Now you can install Adobe AIR on a 64-bit system! From the command line just do:

sudo dpkg -i adobeair_64.deb

That’s it! Let me know if you have any questions.

Ubuntu 32bit를 설치하려고 할 때, 
위의 그림에서 처럼 '오류: 잘못된 아키텍처 i386' 이라고 나올 경우 위의 내용을 활용하여 64bit에 맞춰서 패키징을 하여 실행할 수 있다. 그러나 본문의 댓글을 보면 알 수 있듯이, 위의 방법으로 했지만 안된다면, 안되는 것이다. ㅡ_-);;

 Adobe Air로 작성된 Pomodoro 프로그램을 설치해봤다. 잘 된다. 별다른 문제도 없어서 
apt-get에서도 별다른 오류 메시지 없다.