Executing "jdeveloper.exe on Linux CENTOS

I'm new to both Linux and Oracle. I've installed "jdeveloper" on an CENTOS 5.2 Linux. The installation went well with not issues. However, I'm unable to execute jdeveloper.exe. When i type "./jdeveloper.exe" I get the following message:
bash: ./jdeveloper.exe: cannot execute binary file
The attributes of the file is as follows:
-rwxr-xr-x 1 root root 45056 Feb 8 15:04 jdeveloper.exe
Why do I get the above message?
How do I fix it?
Thanks

Well, .exe files are for Windows based systems only. On Linux and Unix systems you can start JDeveloper by calling $JDEV_HOME/jdev/bin/jdev (adjustment of the execution rights might be needed).
--olaf                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • How can I execute JDeveloper?

    Howdy!!
    There is some problem about executing JDeveloper!
    As the install guide indicate, I installed JDK and JDeveloper(jdevstudiobase10131.zip) and I modified "setJavaHome" in jdev.conf file.
    Although I think I installed everything to run the JDeveloper and I execute the "jdevW.exe", the JDeveloper is not displayed.
    When I double click the "jdevW.exe" or "jdev.exe", the main logo is displayed and the progressive bar looks like working, but when the progressive reaches at 3/5, main logo is disappered and that's all.
    In a "Windows Job Manager" I can find then "Jdevw.exe" process with 72KB.
    What is a problem? Is there any point which I must check to execute JDeveloper?
    Is there any log file which is written error logs?
    Help me!!!
    My windows version is MS Windows XP Professional, Service Pack 2 (KOREAN)
    In my windows, Oracle XE is installed.
    Thanks for your help in advance!!

    Hi Frank.
    Unfortunately there is no message when I kick "jdev.exe" on a window command line.
    I wonder this Jdevloper version (10.1.3.1) doesn't support KOREAN LANGUAGE yet.
    Shortly speaking again, when I type "jdev.exe" then the logo image is displayed for 2 or 3 seconds. And then the logo file is disappeared, that time I found the "javaw.exe" process in the Window Task Manager". That's all.
    Is there any extra thing I have to modify in jdev.conf file?
    Is there any debugging method to trace start process?
    Finally, Is there any trace log file when the Jdeveloper start?
    Thanks Frank.

  • How to convert the javasource file(*.class) to execute file(*.exe)?

    How to convert the javasource file(*.class) to execute file(*.exe)?
    thank you!

    Although i have seen a few programs (that are platform specific) that will embed a small jvm into an exe with your class file, it is generally excepted that you cannot create an executable file using java. The JAR executable file is probably the closest your going to get
    Pete

  • How to execute a .exe file in java(Jsp) without using a process ???

    Hi All ,
    How to execute a .exe file in Jsp without using a process ??? ...
    Is it Possiable ????

    itsdhanasaraa wrote:
    But as this a web application ... By using Runtime i'm getting some probs ..
    Let me guess, you want your web application to run a program on the client and to your surprise that's not working?
    Ain't gonna happen.
    its taking more time to execute .... that's y is there any other option to execute .exe file other than Runtime.getRuntime().exec("filename");Write proper English and you may be taken more seriously.
    1) it's not "taking more time to execute", whatever that's supposed to mean.
    2) there's no other way to execute something. Not that you should every use even that way anyway
    3) whenever you start thinking of executing external programs from Java, start thinking of not using Java in the first place.

  • Through Java code I want to execute a exe file which is in aJar file

    I am having some classes and an exe file in a directory. I have made them in to a Jar file. In a class file which is in that jar file i want to execute a Exe file which is also resides in that jar file. Is it possible to exexute that EXE file?
    For Example....
    1. Im having a directory named CLIENT.
    2. In that directory I have 10 clss files and an EXE file.
    3. These class files and EXE files are ziped in to a Jar file.
    4. I have to give the Jar file to my client.
    5. He can put that Jar file where ever he installed my product may be C driver or D drive like that
    Now the problem is...
    I want to execute the Exe File from one of the class where both the exe file and class file resides in the Jar file
    This is my requirment
    Can anyone Help to me to solve this problem?
    Thanks in Advancd
    Ibram Shah.A.M
    ([email protected])

    The answer is to extract the EXE into a temp directory, execute it, and delete it when you're done. For example:
    //This is the path *inside* the JAR file!
    InputStream in = getClass().getResourceAsStream("/resources/myprog.exe");
    OutputStream out = new FileOutputStream("myprog.exe");
    File file = new File("myprog.exe");
    int data;
    while((data = in.read()) >= 0) out.write(data);
    in.close();
    out.close();
    //Execute the EXE here using java.lang.Runtime.exec()
    if(file.exists()) file.delete();
    ...

  • .oui error in the install of oracle database client in a linux CentOS

    I am installing oracle database client in eqipo linux CentOS, after making all the passages for the creation of the user oracle and its groups beginning the ./runInstaller application and appears to me the following error:
    ./runInstaller: line 66: /install/.oiu: cannot excecute binary file
    as I can solve this
    they can notify me the possible solution to the following e-mail?
    [email protected] or
    [email protected]

    You may want to check these references for CentOS install:
    Installing 10g Release 2 on Centos 4.3 & 4.4
    http://www.dizwell.com/prod/node/50
    http://download-uk.oracle.com/docs/cd/B19306_01/install.102/b15660/toc.htm
    Oracle® Database Installation Guide
    10g Release 2 (10.2) for Linux x86
    Part Number B15660-02
    Installing Oracle 10.2.0.1 on CentOS 5.0 (x86_64)
    http://bderzhavets.blogspot.com/2007/04/installing-oracle-10.html
    Installing 9i (9.2.0.1) Database on Centos 4.5
    Installing 9i (9.2.0.1) Database on Centos 4.5
    installing 10.2.0 on CentOS
    Re: Got "java.lang.NullPointerException" installing 10.2.0 on CentOS
    Link error installing 10gR2 on CentOS 4.4
    Link error installing 10gR2 on CentOS 4.4
    Re: 10g in vmware Centos
    10g in vmware Centos
    ~ Madrid.

  • How to execute one .exe file with as3 in air ?

    Hi
    How to execute one .exe file with as3 in air?
    I want do this work without fscommand .
    plize help me .

    itsdhanasaraa wrote:
    But as this a web application ... By using Runtime i'm getting some probs ..
    Let me guess, you want your web application to run a program on the client and to your surprise that's not working?
    Ain't gonna happen.
    its taking more time to execute .... that's y is there any other option to execute .exe file other than Runtime.getRuntime().exec("filename");Write proper English and you may be taken more seriously.
    1) it's not "taking more time to execute", whatever that's supposed to mean.
    2) there's no other way to execute something. Not that you should every use even that way anyway
    3) whenever you start thinking of executing external programs from Java, start thinking of not using Java in the first place.

  • How to execute SAPgui.exe from java code

    Hi All,
    Can any one provide me the exe file name of SAP GUI related.
    I need to call the SAP GUI related exe file from java.
    i tried with a small java prog which executes the exe files.
    it works fine with notepad.exe,javac.exe . But i am unable to execute the SAPgui.exe.
    This is my java code
    try{
         Runtime rt=Runtime.getRuntime();
    //String str= "C:
    WINNT
    system32
    notepad.exe";
    //Process pp=rt.exec("C:
    j2sdk1.4.2_08
    bin
    javac");
    Process pp=rt.exec("C:
    Program Files
    SAP
    FrontEnd
    SAPgui
    SAPgui.exe");
    BufferedReader br=new BufferedReader(new InputStreamReader(pp.getErrorStream()));
                         String line;
                         while ((line = br.readLine()) != null) {
                             System.out.println(line);
              }catch(Exception e){
                   System.out.println(e);
    and may i pass any additional parameters inorder to invoke this exe.
    Please share your ideas abt  this problem.
    Its Urgent PLZ
    Adv Thanks
    Regds
    Phani.

    hi Rajesh,
    here my complete code:
              try{
                   Runtime rt=Runtime.getRuntime();
    //               String str= "C:\Programmi\SAP\FrontEnd\SAPgui\saplogon.exe";
                   String str= "C:\Programmi\SAP\FrontEnd\SAPgui\Sapgui.exe 10.113.10.201 00";
                   //               Process pp=rt.exec("C:\j2sdk1.4.2_08\bin\javac");
                   Process pp=rt.exec(str);
                   BufferedReader br=new BufferedReader(new InputStreamReader(pp.getErrorStream()));
                   String line;
                   while ((line = br.readLine()) != null) {
                   System.out.println(line);
                   }catch(Exception e){
                   System.out.println(e);
    Please note that system number is only two digit and in your case is 00.
    Another important think, i'm using the italian version of windows, so the program directory is c:\programmi, please change into c:\program files, or you can modify your code to be language indipendend using an system environment variable (if exist).
    Hope this help
    Francesco

  • How to execute external exe in SSIS Package

    Hi,
    I wanted to know how to execute external exe from SSIS Package can any one explain me or provide me valuable links.
    Regards ,
    Ajay

    There are few things you need to take care before executing exe from SSIS
    1. The arguments etc expected by exe should be clearly defined inside execute process task
    2. The Path where exe exists should be accessible to the account executing the package. SO you should grant account required permissions
    3. If executing from a job make sure you either define a proxy account with required permissions and configure it to run the job or give service account all access required for executing exe
    see
    http://www.mssqltips.com/sqlservertip/2163/running-a-ssis-package-from-sql-server-agent-using-a-proxy-account/
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Can't execute setup.exe on PDA

    hi, i'm testing simple example with Oracle817 and 9i lite database..
    my problem is that i can't execute setup.exe on my PDA...
    i packaged new application by only importing scott.emp tabale with wtgpack.exe
    then i set user priviledge and parameter in the mobile server control center web page..
    i downloaded mobile client for wince on strong arm cpu...
    while i packaged mobile application there was no exception or error messages..
    but i can't execute downloaded setup.exe file for installing mobile client.. though..
    only it's not proper wince application sign can be seen on PDA..
    PDA that i use is with strong arm sa-1100 cpu and windows CE 3.0(build 126)..
    but it's not compaq or any other well known product though..
    anyway.. anyone had this kinda situation..?
    please help me out..
    thank your in advance..

    When I turned my computer on I had the setup.exe shortcut on my desktop (0 bytes), and can't delete it.
    good lord. this is precisely the second time i've ever seen this reported. (the other chap i saw with this ended up with two such icons on his desktop, if i remember correctly.)
    Katrina: am i remembering this correctly?
    what eventually worked for him was downloading and installing a copy of Pocket Killbox, which he eventually managed to use to get rid of the beasts.
    keep us posted.
    love, b

  • CANNOT EXECUTE "CEC_MAIN.EXE" after Kasperesky installation

    HI,
    iIm using Toshiba Satellite series laptop.
    Ever since i installed kasperesky software, i'm getting this msg, when i start my system: CANNOT EXECUTE "CEC_MAIN.EXE".
    Kindly help.
    sandeep sathyan

    Hi!
    The CEC_MAIN.EXE belongs to the Camera Assistant software. The file you find on C:\Program Files\Camera Assistant Software for Toshiba.
    I think the software will be blocked by Kaspersky Firewall. So allow the CEC_MAIN.EXE in the software and then the problem should be solved.
    Bye

  • I need help moving my Photoshop 7 from my old laptop to my new laptop which is running Windows 7 Enterprise.  I've tried two routes unsuccessfully.  I install the CD, it does not autoplay.  I execute Autoplay.exe at the root directory, I am welcomed, I ch

    I need help moving my Photoshop 7 from my old laptop to my new laptop which is running Windows 7 Enterprise. I’ve tried two routes unsuccessfully. I install the CD, it does not autoplay. I execute Autoplay.exe at the root directory, I am welcomed, I choose English, I accept the EULA, I get the Install/Explore choices window, with the Install button already selected, I click the Photoshop button, the CD spins, and nothing happens.  In the 2nd attempt I execute Setup.exe in the Photoshop directory, and nothing happens at all.  I’m never even offered the opportunity to enter my product code. What should I do?

    There could is likely a compatibility problem between the old software and the newer operating system.

  • Forms runtime executable ifrun90.exe

    I am running Oracle forms 9i on windows 2000.
    I can deploy the forms on a browser
    I want to be able to run the form under windows.
    Document says to use the executable IFRUN90.EXE
    I cannot find this executable.
    I have done a COMPLETE installation of Oracle Application Developer.
    Any suggestions ?

    The document is wrong, there is no Forms runtime in 9i - it is only
    running in web.
    If you need to design for c/s, you have to use Forms 6i.

  • Executing acroRd32.exe execution question

    Hi everyone;
    Is there a way to execute acroRd32.exe without installatio?.  I have the entire reader system in one directory.  I uninstalled the reader (7.0) but I have all the components of this installation in one directory.  I executed acrord32.exe and I get the above errror.  I have an application that I will be distributing, and received the Adobe Reader and Runtime  Software Distribution License Agreement last week for distributed of the reader software with the application. I want to distribution the reader components as a sub-directory under my application system, so the user can use this version without installing adobe reader on their workstation.
    Is this possible or does the user have to have the reader installed on their workstation?

    AFAIK Adobe Reader must be installed, as it also places various registry entries, as well as the PDF file association, plus items in the Program Files\Common Files folder.

  • Pda execute other exe from Labview

    I'm looking for ways to execute an exe from Labview PDA that is stored on the PDA (another PDA application)... I'm running WM5.0 ... .any ideas ...
    Greycat

    Hey Greycat.
    That is a great question!  So as you noticed there is no equivalent to System Exec in LabVIEW PDA, so you cannot launch an application that way.  I would think that there would be a DLL that could be called on the PDA that will allow you to launch applications.  However, after several Google searches I was not able to come up with any specific code or DLLs.  Once you found that DLL hoewever, you shouldn't have problems launch an EXE.  I am assuming that these are not other LabVIEW PDA built EXEs, which is a shame since you might be able to open a VI reference to that VI. 
    Andy F.
    Message Edited by Andy F. on 04-25-2006 06:52 PM
    National Instruments

Maybe you are looking for

  • Depot sto excise invoice cancallation

    dear sir I have do the STO for plant to depot steps 1) sto po created 2) delivery created in vl10b 3) PGI in vl02n 4)per-form invoice in vf01 5) excise invoice in J1iin 6) goods recipts and excise posting done in depot plant MIGO 7)J1IDEPOTSTOCK1 - D

  • How can i make buttons in an article to go for other articles in Folios Builders for Ipad?

    I am trying to make buttons in an index, for goingo to other articles, but they never worked here. When a i put Go to Destination, and choose de Indd file, it does not work. Can i make a scrollable frame a button either? When i tryed, it did not work

  • Risk Management Customization / Incident Loss Database

    Hi there, is anyone familiar with Risk Management 2.0? I'm struggling with the incident loss database - especially with the "segment settings" Could anyone explain the idea behind this?

  • Please give me When Nokia C2 is released in india

    Hello ,              I am waiting for buy Nokia C2 in india, So please give me release date in india,Waiting for your reply. Yours Santhosh

  • Batch export of iMovie clips

    I'm looking for a means of simplifying the workflow of creating individual quicktime files of the "events" in my home videos. I'm currently using iMovie to capture and edit the video into a series of "events" (e.g., soccer game, birthday party,...),