Where is AIR 3.6 ELS file on OSX

Used to be in /Users/[user]/Library/Application Support/Adobe/AIR/ELS.
Has it moved from this location?
Thanks,
Daniel

OK, apparenlty system.h is gone in the 3.8 kernel.
I don't know if the information is correct, but according to the Fedora forum:
Missing system.h - FedoraForum.org
asm/switch_to.h is the replacement for asm/system.h in 3.3 + kernels
So the source you are compiling may not be compatible with the kernel version. Perhaps it would work if you create a symbolic like like the following:
# cd /usr/src/kernels/$(uname -r)/include/asm
# ln -s switch_to.h system.h
It may fail on other files too, but perhaps worth a try.
You may have to contact IBM to ask for a newer version of the driver, or use an older version of the kernel. You could for instance install the UEK2 (2.6.39) kernel, which is based on the 3.10 mainstream kernel if I remember correctly and also available.

Similar Messages

  • I lost the installation disks for CS4 master collection. Where can I download the installation file?

    Hello,
    I lost the installation disks for CS4 master collection polish version. Where can I download the installation file?

    Hi filmowka,
    Welcome to the Community!
    Go to http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here.html and choose Master collection CS4 from the list.
    Follow the Very Important Section else the download will not start.
    Thanks!
    Ankit

  • AIR Flash Player configuration file location

    What is the name and location of the AIR Flash Player configuration file? I'm assuming the name should be mm.cfg like it is for the flash palyer on the desktop, where do I put this file when I compile my AIR app?

    The "per user" config file, mm.cfg, is outlined here: http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7fc9.html
    If you want to modify the system level mms.cfg, that'll be in your C:\windows\syswow64\macromed\flash folder

  • I have a MacBook Air, which I just upgraded to OSX Lion. I also have the latest version of iTunes. When I try to stream to the AirPort, the Airport resets, and the wireless connection on the macbook locks up. Any suggestions where to start?

    I have a MacBook Air, which I just upgraded to OSX Lion. I also have the latest version of iTunes. When I try to stream to the AirPort, the Airport resets, and the wireless connection on the macbook locks up. Any suggestions where to start?

    To free up hard drive space the best bet is to move data files that you don't need access to all the time. Likely candidates are music, video, and photos. Things like word processing and spreadsheet files can also be moved but they tend not to be very large and so don't free up much space. The problem with moving the above mentioned files is that iTunes and iPhoto need to know where the files are stored.
    Here's an article explaining how to move the iTunes folder. You can move the iPhoto library using the Finder but there is a slight complication. Start iPhoto, open the Preferences and click on the Advanced tab. The first option is "Copy items to the iPhoto Library". If this option is checked, copy the iPhoto library to your external folder (drag it from the Pictures folder to your external drive) and then delete it from your Picture folder. If this option is not checked, it is a bit more complicated and we'll need to talk a bit.

  • Where does GUI_UPLOAD function store the files?

    Where does GUI_UPLOAD function store the files?

    Hi Audrey
    Here is an example of accessing files from application server: 
    open dataset w_file for input in text mode.
      if sy-subrc <> 0.
        message e895 with 'Unable to locate file'.
      else.
        do.
          read dataset w_file into it_data.
          if sy-subrc eq 4.            " End of file reached
            clear it_data.
            exit.
          else.
            append it_data.
            clear it_data.
          endif.
        enddo.
        close dataset w_file.
    In the above example, w_file is declared as string containing  c:\usr\sap\test.txt
    And this file should be there on this path on application server.
    And, yes, you need to declare it_data as an internal table containing fields corresponding to file from which you are reading data.
    Regards
    Ashish Jain
    [email protected]

  • I am trying to backup my Itunes onto my external hard drive. I am at the step where I on Itunes, click on File - Library - Organize library. I am suppose to check mark both boxes there, It won't allow me to check mark the second box, why? How to fix this.

    I am trying to backup my Itunes onto my external hard drive. I am at the step where I on Itunes, click on File ->Library ->Organize library. I am suppose to check mark both boxes there, the first being "Consolidate Files" & the second being "Reorganize files in the folder 'Itunes Media'. I am able to checkmark the first box but It won't allow me to check mark the second box, why? How can i fix this? Please help!

    Well you must have made a mistake somewhere. The last instruction of step four reads:
    When you've found your iTunes library folder, drag that folder to your external hard drive. This will begin the iTunes backup. The amount of time the backup will take depends on the size of your library. When the transfer is done, your backup is complete and your external hard drive can be disconnected.
    Normally dragging content from to a new location on a different drive will result in a copy action which is what you were supposed to do. At a guess you somehow managed to move the iTunes folder. Then when you started iTunes it created a new blank library for you assuming it had just been installed rather that raising a warning.
    Close iTunes. Rename the iTunes folder on the internal drive as iTunes (Empty) then copy the iTunes folder from the external back into the User's Music folder. Start iTunes. All should be well.
    When you've made sure it all works please read my User Tip and use that method to backup in future. Since you already have a folder with the backup in place you can skip the "Make New" operation in the fourth step and simply choose the external folder.
    tt2

  • When I try to open a pdf link in my browser I am asked where I want to save the file.  I used to be asked if I wanted to open the file.  How do I get back to being asked if I want to open rather than save?

    When I try to open a pdf link in my browser I am asked where I want to save the file.  I used to be asked if I wanted to open the file.  How do I get back to being asked if I want to open rather than save?

    What browser?

  • What is directory where I can put in jar file without specify classpath ?

    hi,
    Is there any directory in weblogic similar to the directory of WEB-INF/lib/ where I can throw a jar file in without specify classpath explicitly.
    The reason I'm looking for such directory is :
    -- I do not want to specify classpath explicitly
    -- I'd like it outside of an application so that it stay even if the application redeployed.
    Thanks

    Hi Aacc,
    The domain library directory that you are looking for is usually $DOMAIN_DIR/lib, for example "C:\Oracle\WLS_Middleware10.3.4\user_projects\domains\test_domain_1\lib" (Windows) or "/u01/weblogic/domains/my_domain/lib" (Linux/Unix).
    The jars located in this directory will be picked up and added dynamically to the end of the server classpath at server startup. The jars will be ordered lexically in the classpath. The domain library directory is one mechanism that can be used for adding application libraries to the server classpath.
    You can override the $DOMAIN_DIR/lib directory using the -Dweblogic.ext.dirs system property during startup. This property specifies a list of directories to pick up jars from and dynamically append to the end of the server classpath using java.io.File.pathSeparator as the delimiter between path entries.
    -Cris

  • Where can i find the temp file in oracle 9ias ver 9.0.3

    Hi All,
    When I am trying to deploy stateless session bean(SLSB)in oracle 9ias ver 9.0.3,i am getting the following exception
    SequenceHome_StatelessSessionHomeWrapper3.java:9: SequenceHome_StatelessSessionHomeWrapper3 should be declared abstract; it does not define create (java.lang.String) in SequenceHome_StatelessSessionHomeWrapper3
    public class SequenceHome_StatelessSessionHomeWrapper3 extends com.evermind.server.ejb.RemoteStatelessSessionEJBHome implements sequence.SequenceHome
    and one more where can i find this temp file.I want to see this SequenceHome_StatelessSessionHomeWrapper3.java file..how its possible
    Thanks and Regards,
    Bala

    Try this link - it should always point to the latest iteration

  • Where can i find the cached file?

    where can i find the cached file?.
    while one video was getting cached . I could see the cached file in the cache directory that mozilla firefox uses which in my pc is .....Local Settings\Application Data\Mozilla\Firefox\Profiles\uujksq39.default\Cache. but later on when the full video was completely cached i couldnt find the file existing in that directory and i still have my session of that firefox opened and can watch the video from the firefox session.
    since the cached video is still there ,there most be some place where the firefox is storing that file. is it the case that when the file is big (greater than some threshold value) firefox stores in some other directory?

    You can do a search an the about:cache page.

  • Where is photoshop elements 11 catalog files stored in windows 7 for carbonite to back up?

    Where is photoshop elements 11 catalog files stored in windows 7 for carbonite to back up?  Also any other files besides the pictures that I should back up?

    [email protected] wrote:
    Where is photoshop elements 11 catalog files stored in windows 7 for carbonite to back up?  Also any other files besides the pictures that I should back up?
    Very important : your catalog does not contain your pictures. They are where you have imported them in your computer. If they are all under a master folder like 'My Pictures' or 'Pictures', you should set your backup software to backup those folders.
    The catalog itself is mainly a database keeping all the information about your pictures : location, keywords, ratings, albums...
    It's a folder containing the dababase and several other components. You find its location looking in the help section, system info.
    The integrated backup / restore process in Elements saves both your media files and the catalog.
    http://www.johnrellis.com/psedbtool/photoshop-elements-faq.htm#_Backing_up_your

  • Where do i get soap.jar file to download from ?

    I am writing a SOAP client class in java and am looking for a place where I can download soap.jar file.
    Can somebody inform where it is.
    Thanks

    Hi.
    You can download the SOAP stuff from http://xml.apache.org/soap/ under the 'Download' link.
    Regards,
    Lance
    Lance Walton - [email protected]
    Team In A Box - Software without Tragedy
    http://www.teaminabox.co.uk

  • I need to send an email where the recipient opens the PDF file with a password,   can anybody help me and show me how to do that

    Hello,  I am trying to send an email where the recipient opens the PDF file with a password,   can anybody show me how to do that

    Hi surez,
    To password protect a PDF file, you need to use Acrobat. If you don't have Acrobat, you can try it for free for 30 days. See www.adobe.com/products/acrobat.html for more information.
    In Acrobat, you choose File > Properties when the document is open, and then click the Security tab to set up a password.
    Please let us know how it goes.
    Best,
    Sara

  • Where is the name of the file when upload in UIX

    Hi, I'm using ORDSYS.ORDDoc as column type of my upload file colum, because is the only way to do upload with UIX without programming. All is Ok with this type of colum (I wish to do the same with blobs), but I have a problem: where is the name of the file? I need to get the name, I read about one attribute for this, somebody know about it?
    Thanks.

    Hi,
    but I made all automatic with UIX, I need that the link when I listing this colum, don't say a fixed name, I want that this link save the file with the original file name. 2 things, maybe when the file was saved, the info about the original name not was saved too, or the method that write the link, don't use this name, only a fixed name.
    Thanks.

  • TS1367 My MacBook air has a blinking file folder icon on a blank screen with a ? In the center of the icon. I've tried turning on and off three times but it hasn't helped.  Any suggestions?

    My MacBook Air has a blinking file folder icon on a blank screen with a ? In the middle of the icon. I've tried turning my computer off and on three times with no luck.  Any recommendations on how to fix the problem? 

    Reinstall OS X without erasing the drive
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.

Maybe you are looking for