Install Adobe AIR on 64-bit Ubuntu 10.10

    技术2022-05-20  31

    Install Adobe AIR on 64-bit Ubuntu 10.10By JAMES WARD | Published: OCTOBER 14, 2010Right 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:

    Download the Adobe AIR .deb fileIn a terminal window go to the directory containing the adobeair.deb fileCreate a tmp dir:mkdir tmpExtract the deb file to the tmp dir:dpkg-deb -x adobeair.deb tmpExtract the control files:dpkg-deb --control adobeair.deb tmp/DEBIANChange the Architecture parameter from "i386″ to "all":sed -i "s/i386/all/" tmp/DEBIAN/controlRepackage the deb file:dpkg -b tmp adobeair_64.debNow you can install Adobe AIR on a 64-bit system! From the command line just do:

    sudo dpkg -i adobeair_64.debThat's it! Let me know if you have any questions.

     


    最新回复(0)