Unable to execute a file which is shown to exist by ls

Like I said, ls reports the file as existing, colors the filename green showing it's an executable, which was confirmed by `ls -l`. Normal file manipulation such as rm, mv, cp, etc all seem to work. Bash can not execute the file, reporting it as non-existant, and sh can't execute it either.
It might be a permissions issue but I doubt it, the file's permissions are as follows: All can read, only the owner can execute, write, AND read.
The file along with the others in the directory were extracted from a zip archive by the latest version of unzip (as pulled from the arch repos).
Last edited by eulallia1 (2009-07-01 13:08:38)

mcmillan wrote:gconf isn't a library file. It should probably work using the 64bit version of it, so pacman -S gconf
Oh, thank you. I'm not entirely used to linux yet, even though I've used it for months.
Well I'm having a different issue now at the moment. lib32-nss is installed but chrome is reporting an error stating that it's elf-class is ELFCLASS64, so the library is 64-bit. Where do I find the 32-bit nss Library (locally, as lib32-nss was installed by pacman)? At first, chrome threw an error because it couldn't find libnss3.so.1d, so I copied libnss3.so as libnss3.so.ld.
(Edit)
I fixed that issue.
Chrome is now throwing an error before execution (before it was because it couldn't handle the 64-bit libraries so I had to copy the 32-bit versions from /opt/lib32/), about libgconf-2.so.4, because it is 64-bit. This may sound like a repeat of the issue before but it truly is not. This time, due to ambiguous naming conventions I can not replace the library it is complaining about because it is in a sense, a necessity. Things could quite easily go wrong if I replaced it with a 32-bit library just to satiate chrome.
In short, Is there some prefix path variable or something, thus eliminating chrome's constant checks of /usr/lib and instead redirecting them to /opt/lib32?
Because I believe I've heard of a variable which contains colon separated library directories for applications to check through but I can't remember what it was called, just that it was a part of ldconfig.
Finally, (hopefully after this question and the prior question, there won't be anymore ),
is there a way to install a 32-bit version of libdbus-glib? E.g., using make to compile a 32-bit version. (Edit: Compiling the latest dbus-glib doesn't work, as online forums seem to say that a 32-bit version 'libc9' (ubuntu forums) is necessary. Glibc is installed in both 32-bit and 64-bit versions on this system)
Last edited by eulallia1 (2009-07-01 17:33:59)

Similar Messages

  • Unable to execute JAR files

    I am unable to execute jar files and applets. Also, the Java Web Start and the Java Plugin Control Panel will not load. I have unloaded the JRE and installed other versions. To date I have loaded and unloaded the following:
    1.4.1
    1.4.2_01, _02, _04
    1.4.2_04 SDK
    But no change in the outcome.
    The javaw application starts but does not load the jar file.
    The applets and jar files run fine on other computers with any of those JRE/SDK's installed.
    Any suggestions would be helpful.

    Command line
    To create a JAR file >jar cvf filename.jar filename.class(s)
    To view the contents of a JAR file >jar tvf filename.jar
    To extract the contents of a JAR file >jar xf filename.jar
    To extract specific files from a JAR file >jar xf filename.jar archived-file(s)
    To run an application packaged as a JAR file
    >jar xvf filename.jar META-INF/MANIFEST.MF
    The above will place META-INF/MANIFEST.MF file in your working directory. Open this file in text editor. Under Version, type in
    Main-Class: filename
    example;
    Manifest-Version: 1.0
    Main-Class: SelectPurchase
    Created-By: 1.3.0 (Sun Microsystems Inc.)
    save file
    update META-INF/MANIFEST.MF file in jar file with;
    jar umf META-INF/MANIFEST.MF filename.jarto run jar file from command line;
    java -jar filename.jarTo run an application packaged as a JAR file
    (version 1.1) jre -cp app.jar MainClass
    (version 1.2 -- requires Main-Class
    manifest header)
    To invoke an applet packaged as a JAR file <applet code=AppletClassName.class
    archive="JarFileName.jar"
    width=width height=height>
    </applet>
    Does anyone know how to get the application to run by clicking on a Desktop Icon?

  • I am unable to execute swf file present in server on local machine.

    Hi all,
        I am a newbie to Flash and ActionScript 3.0 platform. I don't know whether this is the correct place to post this kind of queries/problems/issues here. Till now, I had posted only basic flash issues here in this forum. I feel this is the most powerful issue which created head-ache to me till now. I spent nearly 4 hours working with this issue. But, I don't find any solution even in google.
        I have created a swf file, which when gets executed, gets data from backend database and displays as items in Combo-box. In swf file, if we select an item from Combo-box, collects data from database and gets back to flash and displays them as items in Combo-box. Each item has a specific image(.jpg file)associated,which gets displayed on stage of flash file(.swf file) upon selected from combo-box.
        I am calling/invoking the flash file, When I click on a Button/select a tab created within my Java application.But,when the button gets clicked/tab gets selected, Combo-box is visible in flash file, but with no elements when we try to click upon it and the following error is getting displayed in a dialog-box:
    Title of the error is: An action-script error has occured.
    The error messsage is:
    Error #2044: Unhandled securityError:. text=Error #2048: Security sandbox violation: http://localhost:8888/com.mymdworld.Application/DynaAccess.swf cannot load data from http://www.example.com:8080/servlet/getviews.
              at DynaAccess_fla::MainTimeline/DynaAccess_fla::frame1()
    Also, the dialog-box contains two buttons namely, "Dismiss All" & "Continue" buttons.
    Please, I request anyone to help me regarding this.
    Actually, What is going on internaly? & Why for is this error?
    Please, spend 2 minutes of your valuable time in filling the reply to this thread.
    I will be waiting for your replies...
    Thanks in advance...
    Srihari.Ch

    http://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html
    Check the docs and google "crossdomain policy"

  • Can we make executable jar file which dont have main method?

    I have a problem.
    With whatever R&D i have done so far my understanding is that in order to create executable jar files i need a main method.
    my problem is i have certain MIS reports which are developed in java and deployed through JSP pages...so my java program has no Main Method and only objects of the classes are being called in the JSP pages.
    for e.g: i have a java class file BulkSms.class and i make an object of it in the JSP page through which my purpose is achieved by calling various method in the BulkSms through it s objects and there is no main method.
    Can i make an executable jar file without a main method and if so please give me a detailed procedure of how to go about it.
    i want to make it executable so tht on the click of it the MIS report is displayed from the JSP page.

    I am completely ignorant of JSPs, but you can not execute a jar or any java application unless you have a main method. It sounds like you need a way to launch the JSP - can't you do this with a browser?

  • Unable to compile .c file which includes jni.h

    I have implemented the native method in c program and saved it as JNIDemo.c.The problem is that when I compile the c file I get lots of error regarding jni.h file which I have placed inside the include dir of torbo c.Please tell me- is there any specific path setting of jni.h header file?? How to create the dll file of the JNIDemo.c?

    Suggestions:
    1) post the error messages
    2) post the file (if small enough)
    3) consider asking this in the JNI forum where you have a better chance of bumping into a JNI expert. If you do this, please have each thread refer to the other so as not to get flamed for cross-posting.

  • Unable to Execute Class File

    Dear All,
    I am Using JDK1.3 in Microsoft Windows 2003 sever.
    I had Created a test program as follows, Which is Saved in the BIN directory Named t.Java
    class t
    public static void main (String arg[])
    {     System.out.println ("Test Prorgram ");     }
    When I compile the above Code it Compiled Successfully.
    But, When I try to execute the class
    It reports the ClassNoDefFoundException.
    It had Try the following Set Classpath = C:\jdk1.3\bin; command, still I have the same problem.
    How can I Execute the Class File.?

    Run it like this:
    java -classpath . tSome useful resource:
    Java's code conventions: [http://java.sun.com/docs/codeconv/]
    What is the classpath really: [http://en.wikipedia.org/wiki/Classpath_(Java)]
    Also, Java 1.3 is really old. I recommend to download and install Java 1.5 or 1.6.

  • Unable to execute sh file from java file on the solaris

    hi all
    i have written a java program through which i want to shutdown the weblogic server on the solaris.
    I have written following code
    static Runtime objruntime = null;
    objruntime = Runtime.getRuntime();
    Process objprocess=null;
    String url = "/home/xxx/xxx/xxxx/xxxxx/stopWebLogic.sh";
    try {
                   objprocess = objruntime.exec(url);
                   objprocess.destroy();
                   System.out.println("Server shutdown OK..");
              } catch (Exception e) {
         System.out.println("Error executing Cedera Server shutdown." + e);
    I am able to execute the above code on the linux 7.1 means server get shutdown forcefully.
    But when i am trying to execute above code on solaris, server is not getting shutdown.
    Can anybody please help to solve this problem.
    Thanks in advance
    regards
    andy

    we didn't got what you are trying to say..
    what i want to achieve is...
    we are having one condition check in Startup class if that condition becomes false we have to stop the weblogic from starting up.
    if we execute same command posted previously from shell directly its' working fine.
    we are using "csh" shell. we have also tried to execute the command as follows - " csh /home/xxxx/xxx/xxx/xxxxx/stopWebLogic.sh"
    but no achievement.
    it seems that "objruntime.exec(url);" is not able to invoke the shell script "stopWebLogic.sh". We have also checked the execute permission for the same.
    Neither we are getting any error nor any message.
    can u please give us some guide lines on how to achieve this.

  • Unable to execute xsql files

    Hello,
    I am not able to display the XML document from helloworld.xsql. The web server displays the document has is in IE 5.0. I am using the JRun for servlets along with personal web server. I have configured all the calsspath. The only thing I am unsure is configuration of oracle.xml.xsql.XSQLServlet.
    Where should it be configured in Jrun?
    Any help would be appreciated.
    Thanks,
    RP
    null

    Hi Ozawa,
    Thanks for yr reply. I have set the mapping & the aliases as u have mentioned. Also I have the classpath in JRUN set to all the files given below. But I cannot still display the XML document. I have also given below the modified XSQLConfig.xml file. As u can tell I am using MS-access DB.
    I tested by putting the file (helloworld.xsql) both within the root directory of my web server & servlet directory, without any results.
    Can anybody out there or Ozawa please help me out with this.
    Thanks in advance,
    RP
    C:\OracleXSQL/xsql/lib;
    C:\OracleXSQL/xsql/lib/oraclexsql.jar
    C:\OracleXSQL/xsql/lib/classes111.zip;
    C:\OracleXSQL/xsql/lib/xmlparserv2.jar;
    C:\OracleXSQL/xsql/lib/oraclexmlsql.jar;
    C:\OracleXSQL/xsql/lib/XSQLConfig.xml;
    XSQLConfig.xml file:
    <?xml version="1.0" ?>
    <XSQLConfig>
    <connectiondefs dumpallowed="no">
    <connection name="demo">
    <dburl>jdbc:odbc:@prog61.planet.net:Student</dburl>
    <driver>sun.jdbc.odbc.JdbcOdbcDriver</driver>
    </connection>
    </connectiondefs>
    <actiondefs>
    <action>
    <elementname>param</elementname>
    <handlerclass>oracle.xml.xsql.actions.ExampleGetParameterHandler</handlerclass>
    </action>
    <action>
    <elementname>current-date</elementname>
    <handlerclass>oracle.xml.xsql.actions.ExampleCurrentDBDateHandler</handlerclass>
    </action>
    </actiondefs>
    </XSQLConfig>
    null

  • Unable to access pdf files which were previously accessable.

    I have discovered a direcotry of PDF files that are archives of documents produced and accessable normally with even a reader version of Adobe. I have accessed these files easilly and without issue in the past. I have tried to access some of these documents today and they are all unaccessable.
    They are located on a network drive in one directory and its subdirectories.

    The message was
    "Acrobat could not open ........ because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).
    To create an Adobe PDF document, go to the source application. Then print the document to Adobe PDF"

  • Unable to find MP4 file which is loaded into the nano

    i bought a 6th gen nano.. and copied a MP4 file over via iTunes.. it went through..
    but after that, i cannot seem to find the MP4 file..
    can anyone help to tell me, how can i find the MP4 file? [even if i cannot view, then can i delete it?]
    thanks.

    Ok just search some support documenst here and they say how to do it for older models so I assume its ok.
    *_DO IT AT YOUR OWN RISK IF YOUR NOT SURE TAKE IT TO APPLE_*
    Un plug your Ipod for computer.
    Hold "Volume -" then "Standby button" then "Volume +"
    Keep holding all 3 till you get to Ipods diagnostic mode.
    Select "Standby" power button is the enter key.
    Tap standby button again and you will see the apple logo
    As soon as you see it hold both Vol - and Vol + at the same time.
    Hold them till you get a very generic looking " OK to disconnect" screen
    Connect ipod to computer
    Your now in disk mode.
    _IVE ONLY DONE THIS WITH WINDOWS AND HAVE LESS THE ZERO EXP WITH A MAC_
    Once again if your unsure _JUST TAKE IT TO APPLE_
    Make sure you follow proper methods to eject the Ipod before you disconnect it.
    Message was edited by: run-mofo

  • Finder unable to find some file which actually exist?

    My problem is .. I tried to look up several photo through Finder search function, I am sure they existing under Pictures and when I browse into Pictures. I see them there for sure.
    But no matter how many time i tried to put their name for search, Finder only able to pick up the thumbnail that generated by iphoto but not the original photo in my folder.
    I also tried to:
    1. re-index
    2. delete plist file for finder and spotlight
    still not working.
    I also tried to move the file to external hard disk to see if finder will pick it up.. but not
    the only way that finder will pick up the file again is.. either re-name it.. or save-as another copy.. then finder can finally pick that up.
    Is that something to do with the file permission on my file?? they are just ordinary photo file that imported by iphone.
    pls help

    The reason I asked what OS you are using is that you have not updated your Public Profile and still show that you are running 10.4.8 - Hate to waste time with useless suggestions.
    Anyway, are you searching for the names of the files as they are named by your camera or a title that you are assigning in iPhoto?
    If you are searching for a title that you've added to a photo then you need to do that from within iPhoto. Adding Titles doesn't change the original file name that Spotlight tracks, it just's adds a metatag that can be read, filtered, and searched for in iPhoto.

  • How can I run a sequence file which is stored as BLOB

    Hallo,
    I' using (or better will use) TestStand 3.1 and a ORACLE database. Is there a way to load and execute sequence files which are not stored on the filesystem but as BLOBs in the ORACLE DB. The choice which sequence has to be executed is done dynamically within a custom built process model. A certain sequencefile should be loaded and started by referencing it not by filename but with the PrimaryKey of the table.
    I don't know if this would be a certain capability implemented in TestStand or in ORACLE. It could be something like mapping a BLOB into the Filesystem and pretend that the file is present on the filesystem, something like that!
    Any ideas are highly appreciated
    Thanks
    Oliver Friedrich

    Oliver -
    TestStand does not have any hooks to allow a test system developer to override the internal searching for a file on disk. The only simple option that I see is to to query the database and download the latest sequences ahead of time. This is similar to a Source Code Control mechanism. Keep in mind that once an execution loads a sequence file, the file is typically not released until the last execution completes so you cannot load an updated copy of the sequence file while executing, especially the client sequence file.
    Scott Richardson
    National Instruments

  • Executable JAR file: Could not find the main class.

    Hello,
    I have a problem with making an executable JAR file.
    I have written a JAVA program that consists of five different classes of which User.java is the main class and I have saved a text document with Main-Class: User and a blank line after that.
    If I try:
    jar cmf MainClass.txt User.jar User.class Beheerder.class Operator.class Manager.class MaakVisueelSchema.class
    it makes a executable jar file which actually works! :)
    But when the Operator class trys to open the MaakVisueelSchema class the screen stays blank.
    I can run MaakVisueelSchema with java MaakVisueelSchema.
    So I tried to make an executable JAR that consists only of MaakVisueelSchema, the same way as I did for User:
    Main-Class: MaakVisueelSchema
    jar cmf MainClass.txt MaakVisueelSchema.jar MaakVisueelSchema.class
    Then I get the error message:
    Could not find the main class. Program will exit.
    from the Java Virtual Machine Launcher.
    The big difference between MaakVisueelSchema and the other classes is that MaakVisueelSchema contains a PaintComponent method and an ComponentListener. Is it possible that one of those creates the error?
    Can anyone help me with this problem?
    Thanks in advance!
    Bye!

    Yes,
    I tried:
    jar xvf MaakVisueelSchema.jar
    and it returns:
    META-INF/
    META-INF/MANIFEST.MF
    MaakVisueelSchema.classN/G. You need to manually create a manifest file in a text editor, have it point to your main class, and enter it in your jar command as an argument.

  • ESB- FTP adapter unable to poll a file

    I have a FTP adapter it has to poll files, with diff naming convention.(like "asd", 'wer',"jkl","AVC"). But the adapter was unable to poll a file which name start with AVC
    reamining files are polled successfully.At ftp location ftp adapter will poll file and place all records into DB through ESB,for ESB we can set adapters as inbound.Plz give me any suggessions to solve this problem(10.1.3.4).Thq.

    I checked the error logs and it informed it was not able to create the stage directory where as i am only creating the stage directory and providing the path to it.so i could not really understand the exact error.
    Does a stage directory get created automatically anywhere else?

  • Stereo File is only shown as mono

    I've got a problem with the audio lines in Premiere Cs 5.5. I've got a .mov file and after importing the file, premiere shows me, that my audio line is only mono whereelse on a nother similar computer with cs5.5 the file is stereo. The problem with the file, which is shown with a mono line won't show me the audi line in the cutting sector. PLEASE HELP ME.
    THX

    I've got a problem with the audio lines in Premiere Cs 5.5. I've got a .mov file and after importing the file, premiere shows me, that my audio line is only mono whereelse on a nother similar computer with cs5.5 the file is stereo. The problem with the file, which is shown with a mono line won't show me the audi line in the cutting sector. PLEASE HELP ME.
    THX

Maybe you are looking for

  • Low volume on Ipod Nano when playing through car stereo

    I used to own a 4 gig ipod mini, and I'd connect it to my car stereo via a stereo cassette adapter. Well, that little guy crashed after a few years of good hard use, and I bought an Ipod Nano. Only, when I play the Nano through my car stereo, the vol

  • MBP can't find SSD after kernel panic

    I installed a Crucial  M500 240GB SATA 2.5-Inch 7mm drive using an Other World Computing adapter into my MacBook Pro back in October.  It has been working very well until yesterday.  I typically leave my laptop on and just close the case.  When I ope

  • What kind of sound card does a Macbook Pro have?

    I can't find this info in the "about this mac" section, or on the product specs in the apple store. Anybody know?

  • Icon problem in 10.6.7

    Since i updated to 10.6.7 i have the following problem. Fonts get weird, and icons disappear randomly. Whats up? And what is Apple doing about this update?

  • Deleted workspace still shows in dock Xcode application menu

    I deleted a workspace, but still shows on the dock app menu (just above Options and/or Open Developer Tool), if I click on it nothing happens...because it has been deleted of course. How can I get remove it from menu?