Adobe Air on 32-bit linux fails to install

Hello everyone,
I am new to this forum and wonder if anybody could help me with my issue:
The AdobeAirInstaller.bin fails to complete. It puts some files into / tmp, then a short flicker on the screen. The installer dies without any comment.
I tried install as root - enable the install log file ~/.airinstaller.log - it gets a new timestamp when the installer dies - but nothing gets logged.
The system is a iei AFL-10A embedded touchscrenn system with an AMD Geode, 256 M physical RAM and 768 M swap, ubuntu 8.10 lxde and openbox.
checked all the libs against http://www.adobe.com/support/documentation/en/air/1_5/AIR_1_5_linux_release_notes.pdf.
I am at the end of my ideas
josef

Hello everyone
I did get rid of LXDE/Openbox completely and installed gnome instead. Nothing changed.
There is a firefox on the system and it displays the animation (flash ?) on the adobe homepage fine.
Josef

Similar Messages

  • My hard drive fried and had to be replaced. I'm trying to install CS4 from my original discs but keep getting this error message - "One or more of the required components of Adobe Creative Suite 4 Design Standard failed to install correctly". A customer s

    My hard drive fried and had to be replaced. I'm trying to install CS4 from my original discs but keep getting this error message - "One or more of the required components of Adobe Creative Suite 4 Design Standard failed to install correctly". A customer service rep gave me a link to download off the Adobe site, but when I try to open the file to run it, I get this error message - "A problem occurred extracting the archive".
    Can anyone help?

    Yep.  Nothing happens at all. Windows tries to execute the uninstaller, but I don't get any other screen and all activity stops for the MSI.  I monitored it in Process Monitor and the MSI executable appears, but is quickly ended, like it couldn't find anything or something.
    It's as if windows has a blank entry in Programs and Features, because it used to show the size of the Adobe application in the "Size" column.  Now it's just blank.  Link to screenshot below:
    http://img829.imageshack.us/img829/5006/screenshotcaf.jpg
    Note the install date.  That's when I was able to successfully reinstall it.  Now I can't even do that.  I should also mention I tried Revo Uninstaller.  It deleted one small registry key, but nothing changed.
    By the way, is the CS cleaner supposed to ask for a disc in the drive when you run it?  It refused to run unless I had one in it, so I used my install dvd.

  • How di I run Adobe Air SDK ADL in Linux?

    Hi,
       I downloaded Adobe Air sdk, and want to run adl... But it does nothing at all. No error message, no results, nada.....
    How do I make it at least tell me what it is trying to do? (I renamed adl to adl_linux since there was an adl file already in the flex sdk,
    apparently it is for the mac)
    Here is what I get:
    $ $flexsdk/bin/adl_linux
    $ $flexsdk/bin/adl_linux AirTopo2-app.xml
    $ $flexsdk/bin/adl_linux no-such-file.xml
    $
    Not very helpful....... Is there anything else I need that adl depends upon???
    Thanks,
    Larry

    OK, I am getting further...
      I can get started...
      But I guess Adobe does not know how to build executables in linux without shared libraries. It is just a flag for goodness sake! It includes the code
    in the binary. Yes, it makes the executable larger, but it does not require the user to load a bunch of stuff he does not need/want.
    I now get:
    $ ./adl
    Error loading the runtime (libpangocairo-1.0.so.0: cannot open shared object file: No such file or directory)
    My quandary is this, I work for a large company, there are over 250 developers who each have their own machines and work on the same product. We have professionally managed linux boxes that exist half way across the country. We have our development environment in views that can be created.
    To include this list of shared objects in our linux boxes is not feasible. We could possibly add to our development views, and I will try and modify LD_LIBRARY_PATH to point to location in our views.
    This is a lot of work Because Adobe does not (know about?) want to use the -static flag in "ld" to not use shared libraries (and Adobe does not use Java for adl....)
    It would be really nice if Adobe had a version if the SDK that did not require this huge list of shared libraries that I would not even try and request get installed company wide (my Department's linux boxes and all other standardized development boxes)
    Please, Please, Please use "ld -static" when you link executables for linux! (or make adl a java program)
    I need adl to run regression tests on a part of our product.
    Required libraries
    libgtk-x11-2.0.so.0
    libgdk-x11-2.0.so.0
    libgdk_pixbuf-2.0.so.0
    libgobject-2.0.so.0
    libglib-2.0.so.0
    libgthread-2.0.so.0
    libX11.so.6
    libfontconfig.so.1
    libfreetype.so.6
    libXrender.so.1
    libz.so.1
    libxml2.so.2
    libnss3.so
    libssl3.so
    libsmime3.so
    libnspr4.so
    libdl.so.2
    libplc4.so
    libplds4.so
    libstdc++.so.6
    libm.so.6
    libgcc_s.so.1
    libpthread.so.0
    libc.so.6
    libxslt.so.1
    libcairo.so.2
    libXt.so.6
    libpango-1.0.so.0
    libpangocairo-1.0.so.0
    libpangoft2-1.0.so.0
    libpng12.so.0
    libGL.so
    libkwallet.so*
    libgnome-keyring.so
    libkwalletclient.so*
    libkdecore.so*
    libDCOP.so
    libqt-mt.so
    libhal.so
    libhal-storage.so
    libXext.so

  • Compilation of adobe air app that uses ANE fails while using the flex ant tasks.

    The resolution seems to be a hack - which when you rename .ane files to .swc, it works.
    I came across this workaround here: http://stackoverflow.com/questions/11112705/using-ant-mxmlc-task-with-native-extension?rq= 1
    <mxmlc file="${app.root}/app.as" 
                   output="${output.dir}/app.swf"
                   allow-source-path-overlap="true"
                   debug="false"
                   actionscript-file-encoding="UTF-8"
                   swf-version="19" >
                <load-config filename="${framework.root}/air-config.xml"/>
                <source-path path-element="${framework.root}"/>
                <source-path path-element="src"/>
                <source-path path-element="other"/>
                <compiler.library-path dir="libs" append="true">
                    <include name="**/*.swc"/>
                </compiler.library-path>
                <!-- THIS DOES NOT WORK -->
                <compiler.external-library-path dir="nativeExtension" append="true">
                    <include name="**/*.ane"/>
                </compiler.external-library-path>
            </mxmlc>
    However, if I rename all the .ane files in the nativeExtension directory to .swc the following change works..
                <!-- THIS WORKS -->
                <compiler.external-library-path dir="nativeExtension" append="true">
                    <include name="**/*.swc"/>
                </compiler.external-library-path>
    Has this issue been addressed?
    I'm using the following:
    - Adobe AIR SDK & Compiler (version 3.7) for Mac OS X
    - ActionScript Compiler 2.0
    - Apache Ant wrapper located in "AIRSDK_Compiler/ant/lib/flexTasks.jar"
    Let me know if any other details will be helpful.

    I'm using something like this in my build.xml (inapp.purchase.flash.swc is the flash wrapper for the ANE):
                <external-library-path dir="${basedir}/extensions/inapp.purchase/inapp.purchase.flash/bin" append="true">
                    <include name="inapp.purchase.flash.swc" />
                </external-library-path>
    I don't think you need ANE when building swf component of your app. ANE is only required for packaging. By linking with external inapp.purchase.flash.swc you're just telling action script compiler that above symbols will be defined later (in ANE).

  • Adobe flash plugin 64 bit linux so file

    I have downloaded the tar.gz file for my firefox 7 browser running
    under Mandriva 2011 64 bit linux.
    I understand that I want to place or soft link the libflashplayer.so
    file to an appropriate directory of firefox 7.
    However firefox 7 doesn't have a mozilla/plugins
    like directory. I have tried placing the .so file in the path of the firefox executable, with no luck.
    How may I get this plugin to work?

    https://bbs.archlinux.org/viewtopic.php?id=104973

  • Adobe Air crashing Win 7 and will not install

    My problem began with me trying to do a full system scan on my computer with a few different programs and it failing 5% in. Each program stopped at Adobe
    AIR files. So I googled Adobe AIR and noticed that there were viruses running under that name, so I called McAfee and they told me that there was a problem
    with Adobe Air. I have tried to uninstall and nothing happens. I have tried to install the latest update and it will say "installing" for a couple of hours with no
    progress showing in the line, so with my lack of patience I cancel update and even the CANCELLING window stays up until I use the task manager to close it! At
    one point i had my computer tell me that Adobe AIR was corrupt. HELP ME PLEASE!!
    SINCERELY,
    FRUSTRATED MOM

    For install issues, we always request the corresponding log files. That, plus a host of additional install troubleshooting information, is at http://kb2.adobe.com/cps/403/kb403150.html. Could you please attach the installer's log here.

  • Adobe Reader 9.1.3 (CPSID49522) failed to install

    Has anyone else had this problem?  I have been unable to update Adobe Reader since sometime in June.  Should I completely removed reader and download and restall program?  Also what exactly is Adobe Air?

    You might ask in the Reader forum. I have no idea.

  • Adobe CS5 Design Standard - Some updates failed to install

    I am tying to find a solution to this problem, and am unable to find a way to contact Adobe directly for customer assistance. When I click on the Customer Support link at the bottom, the page that loads says, "Error 'This serial number is not for a qualifying product...' when installing an upgrade or upsell."  I didn't install an upgrade version of CS5, and I didn't have it on more than one computer. My hard drive crashed at the end of 2013, and I had to replace it with a new one. I wasn't able to deactivate the product on the old hard drive, but it installed just fine on the new one. Now the updates will not work.
    Does anyone know how to fix this or how to contact Adobe directly for help?  Thanks.

    I am also experiencing this same issue. I purchased the CS5 Master Collection in 2011 and it is now failing to install updates. My Adobe Application Manager is giving me the same error messages that you are getting. The Customer Support link takes me to the same website. Adobe Support just told me to come on here to find the answers that I seek because CS5 is no longer supported by support specialists. It's pretty discouraging to see that nobody has answered you since you posted this in July.

  • Adobe Air "The Flash Builder debugger failed to connect to the running application".

    Hi,
    I know this issue or bug, is well known here, but i only read problems with flex apps and im trying to debug an Air app, i've read almost all about this problem but i cant found a solution for this. I tryed rebooting my desktop, uninstalling and installing again, etc. I installed flash builder 4.6 on other computers and worked fine only my computer has the problem and i don't understand why.
    I have windows 7, 64 bits.
    I tryed to do a telnet to port 7935, i did this cause a read a post with suggesting doing that, the port does listen and throw me this error
    "▼∟disable_script_stuck_dialogon∟disable_script_stuckon↕∟break_on_faulton▬∟enumer
    ate_overrideon§∟notify_on_failureon↕∟invoke_setterson§∟swf_load_messageson¶∟gett
    er_timeout1500¶∟setter_timeout5000♦☺☺"
    I hope someone can help me.
    Thank you.
    Gabriel Vargas.

    I Installed the Flash Builder 4.6 and now i cant debug any flex or air app.. neither flex builder (flex 3).. i don't what to do.. i really need to debug my apps.. someones has to know an answer..

  • HP F380 All in one printer 64 bit driver fails to install

    I have a HP F380 All in one printer. I donwloaded the driver for Windows 7 (64 bit). The installation program abbruptly dies with an error 
    Please advise how I should proceed now.

    Hello shrijoshi,
    I see that you're getting a runtime error when you are trying to install the HP Deskjet F380 on your Windows 7 (64 bit) machine. Please follow the steps listed below:
    Hold down the Windows Logo key ( ) on the keyboard and the 'R' to open the run box, type %temp%
    Look for, and open the folder starting with 7z (Example: 7zS2356)
    Open folder Util
    Open folder CCC
    If you have an HP computer run the L3uninstall.exe . If you have a non-HP computer run the L4uninstall.exe
    When the uninstall has completed restart the computer
    Follow these steps to reset the registry settings and options for Windows Installer.
    Click Start , and then click Run .
    In the Open box, type msiexec /unreg, and then click OK .
    Click Start , and then click Run .
    In the Open box, type msiexec /regserver, and then click OK
    Run Disk cleanup from Accessories\ System Tools
    Download and install the latest version of Adobe flash player http://www.adobe.com/support/flashplayer/downloads .html
    Now we can restart the computer
    I would now like you to install the software using the HP Printer Install Wizard it was created to help Windows 7, Windows 8, and Windows 8.1 users download and install the latest and most appropriate HP software solution for their HP Printer
    Your HP F380 should now be successfully installed, if you run into any problems please let me know.
    Thank you,
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Updater Adobe Bridge CS5 4.0.2 fails to install

    Any ideas here...I keep getting a signal from Adobe Updater that my Adobe Bridge CS5 needs an update. Downloads CS5 4.0.2 ok...then the installation fails...no logging appears to occur of the problem. Has anyone dealt with this before, I cant seem to reach Adobe support.
    iMac 24" 3.06GHz

    Hi Donn,
    You might also take a look at the following technical support document to see if it applies:
    http://kb2.adobe.com/cps/850/cpsid_85031.html
    Regards,
    Julie

  • Adobe CSI CS4 1.0.1 Fails to Install

    I'm trying to install the Services Update for CS4, which comes down as CSI CS4 1.0.1. I have tried the updater and manually installing the update and it fails everytime, but without any clue as to why its failing. I have serched through the logs and can't seem to find anything. I am running a Dual 2.3 GHz PPC G5 with OS X 10.5.7. Any help would be appreciated.
    Edit: I have uninstalled, run the cleanup utility, and completely reinstalled to no avail.
    Also the logs only say: Error Payload failed to install

    There is nothing that Mac users operating with Snow Leopard can do about it right now.
    A search on "CSI CS4 1.0.1" brought up the following FAQ:
    http://blogs.adobe.com/jnack/files/Adobe-SnowLeopard_FAQ.pdf
    The relevant passage is:
    Adobe CSI Extensions: Users may be unable to update their CSI Extensions via the Connections Panel. The cause is relatedtointeractionbetweenCreativeSuite4productsandApple'sJavaTMRuntimeEnvironment(JRE)v .1.6. The update will appear to be complete, but the user will again receive notification that the update is available at every update check interval. Users who have not installed the CSI update v1.0.1 will not be impacted, but they also will not receive notifications about available extension updates. Users who installed the CSI update v.1.0.1 and the corresponding extension updates prior to upgrading to Mac OS X Snow Leopard (v10.6) will also not be impacted by the issue.    Adobe Extensions affected include the Connections panel itself, the KulerTM extension, Search for Help, and Share My Screen. Adobe plans to have an additional update for the CSI and related files as soon as possible.
    Regards,
    Don O'Shea

  • New PC with windows 7 64 bit, itunes fails to install

    I took receipt of a new machine yesterday that has windows 7 64bit as the OS. I downloaded the 64 bit latest itunes but it just will not install. It gtes tot a section called "copying files" and then BANG the bluescreen of death with a APC_Index_mismatch.
    Just wondered if anyone has had similar or managed to get latest itunes to install on a 64bit windows 7 system please ?

    I also have similar problem. iTunes will not install on new HP desktop which uses Win 7 Professional and IE 9! Instal stops with note download was incomplete. Tried several times without Firewall and clearing IE history Still no luck! Is it a Win 7 or IE 9 problem?????

  • Adobe RoboHelp 7.0.1 Update failed to install

    I can't install the upgrade. I have tried by using the Adobe
    Updater and Help|Check for updates. Any ideas?

    Try downloading it from this page.
    http://www.adobe.com/support/robohelp/downloads.html

  • Adobe Acrobat 8.1.6 (CPSID_49167) failed to install.

    Running Professional 8.1.5. It says it wants to update, then I get this message:
    I am the administrator, there is no antivirus software, it's a legal copy with a valid serial number, running Mac OS X 10.6.8 on a Macbook Pro. The previous updates worked fine. I have restored from CD and tried several times. The updates go in one by one till this one.
    Any suggestions?
    Thanks.

    Hi,
    Just toss'n the chicken bones here; but, why not try a "repair" of 8.1.5 & then try the update.
    Be well...

Maybe you are looking for