How can I build and run CDC in Red Hat Linux?

I downloaded the CDC and CVM(j2me_cdc_fp-1_0_2-src.zip), and wanted to build a VM in Red Hat Linux. But I can't find the Makefile in the "build" directory. How can I build it?

You should be able to run a J2SE VM with the CDC jar as the bootclasspath, I think.

Similar Messages

  • How to install and configure ASM on Red Hat Linux 6.4

    Hi Team,
    How do you install and configure ASM on Red Hat Linux 6.4?
    Thank you in advance.
    Bee

    Here is an article that you may find useful http://eriglen.blogspot.com/2013/01/step-by-step-configuring-automatic-storage-management-on-standalone-server-with-oracle-enterprise-linux-and-oracle-11g-R2-using-external-storage-managed-by-openfiler.html

  • How can I install and run a Windows program on my MacBook Pro/?

    How can I install and run a Windows program on my MacBook Pro?

    You have several options.
    1, Use a Virtual Machine like Vmware, Parallels etc... to Create a Virtual Windows Installation and Run your program in there.  A Virtual MAchine will runn in a Window on your Desktop and share your Mac's resources RAM HD space processor. Your MAc desktop will still be available while you run Windows install.
    http://www.parallels.com/
    2. Install Windows on a partition using Bootcamp. It will run a full installation of Windows you can boot into, and run your programs.  The Mac desktop will not available until your reboot the computer and start in OSx instead of Windows.
    https://www.apple.com/support/bootcamp/
    3. Use Wine /  Winebottler to run the Application without the need for a complete Windows installation.
    http://winebottler.kronenberg.org/

  • How can I install and run lookout 6.1 on windows server 2008 64-bit without errors?

    How can I install and run lookout 6.1 on windows server 2008 64-bit without any errors?
    I was unable to start the lookout applcation after I install the lookout 6.1 on windows server 2008 64-bit.
    (error code: 0xC0000142). Please help!
    Thanks

    This will pobably do http://joule.ni.com/nidu/cds/view/p/id/1051/lang/en but the major issue is that you should concentrate and read the instructions carefully. My two cents.
    Dieet
    Afvallen

  • How can I boot and run my Mac Mini on my 12" PwrBk display using firewire?

    How can I boot and run my Mac Mini on my 12" PwrBk display using firewire?

    bwhit:
    Welcome to Apple Discussions.
    No reason why you should not be able to do it using Firewire Target Disk Mode. Here's what you do:
    1. With both computers shut down connect both via firewire.
    2. Startup the Mini and hold down "T" key immediately after chime.
    3. Startup the PB and immediately after chime hold down Option key.
    4. Select second HDD icon on the screen and click on the right pointing arrow.
    5. Computer will boot from Mini's HDD.
    Be sure to shut down PB completely before shutting down Mini.
    Please do post back with an update or with further questions or comments.
    Cheers
    cornelius

  • Install forms6i and report 6i on Red Hat Linux Enterprise edition 4.0.2

    Dear All
    we want to install forms 6i and reports 6i on Red Hat linux enterprise edition 4.0.2
    if any person have step by step guide pl share with me
    Thanks

    such an old forms version on Red Hat 4 ? Please check first, if this is certified by Oracle
    metalink.oracle.com - Region Certifications
    can't you use the new Oracle Forms 10g ?

  • How can I download and run adobe 11.5 on mac OSX 10.5.8?

    How do you download and run Adobe version 11.5 on a Mac OSX 10.5.8 operating system?

    Welcome to the Apple Support Communities
    Adobe Flash 11.5 isn't supported in Mac OS X Leopard. You have to use Snow Leopard > http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard

  • Downloaded a trial version of Acrobat XI Pro on 14.03.2015 - how can I open and run it on my MAC PRO?

    How can I open the program and run it on my MAC PRO?

    There is an Acrobat 11 icon on the desktop when opened has the Acrobat XI Pro Installer.
    I followed the instructions on screen and checked "Use trial or subscription".
    The program installs but then I can't find where to open and run it.
    Please help.

  • HT204408 Internal FaceTime error occurred.  How can I fix and run FaceTime on my MacBook  running 10.6.8

    How can I fix face to run on my MacBook running 10.6.8. The error is "internal face error occurred.

    I was getting the same error, and I could not find the file to copy that others had mentioned.  However, I found a fix that works for me.  I did a "control + click" on the facetime icon in the dock, selected "options" then "remove from dock".  Once it was gone, I opened "launchpad" opened Facetime from launchpad, then when the icon was in the dock I did another "control + click", "options" and then "keep in dock".  Now I have no problem opening it.  Hope this helps someone else.

  • How can I build and Debug Tomcat 5.5 under Eclipse?

    http://jakarta.apache.org/tomcat/tomcat-5.5-doc/building.html
    I am doing some rearch on Tomcat and want to build and debug Tomcat5.5 under Eclipse. Originally tomcat is built with ANT, it downloads all components from different CVS and build them together.
    I'd like to import Tomcat Source code (only the core components, such as catalina and Coyota, Jasper) and build them with Eclipse Bilder, so I can debug it as a normal JAVA program under DEGUB-View.
    Who has such experience and help me? I havd built Jetty under Eclipse, but Tomcat is much more complex.

    Help

  • How can I compile and run other java classes from within an application?

    Hello there everyone! I really hope that someone can help me. I am writing a program that must be able to compile and run other java classes that are in different files, much like development environments like Kawa or Forte allow you to do.
    There has to be a way of doing this ( I hope!! ), but i can't seem to find it!!
    I have tried using this command to compile:
    Runtime.getRuntime().exec ("c:\\programs\\javac className.java");
    ...and this one to run:
    Runtime.getRuntime().exec ("c:\\programs\\java className");
    ...but neither works!!! I can compile and run classes that are in the same file as my application, but I can't get it to work at all for files in different directories or files.
    PLEASE, PLEASE, PLEASE help me - i've run out of ideas, and i need this to be working in 3 days!!!
    Thank you very much for any help anyone can give me, I really appreciate it!! Thanks again!!
    Adrian ( ...in distress!! )

    public class JavaCompiler{
       public static void main(String[] args)throws Exception{ //sorry bout the laziness
          if(args == null || args.length != 1){
             System.out.println("Usage: java JavaCompiler MyClass.java");
             System.exit(0);
          String className = args[0];
          Runtime rt = Runtime.getRuntime();
          Process p = rt.exec("javac " + className); //consider setting cpath for this
          p.waitFor();
          //now try to run after it is done.
          p = rt.exec("java " + className.substring(0, (className.length() - ".java".length()));
          p.waitFor();
          //do some other stuff
    }This should get you going. You may consider looking into the System.getProperty() method in order to determine the type of OS it is running on in order to findo out what command to run. I know that the sun tool listed above is nice, but by my understanding the sun tools provided are not guaranteed to stay the same. I'm no expert on this matter, but that is one of the reasons there is no API documentation for those tools. Also, I don't believe those tools come packaged with the JRE. (Of course if you are making an IDE it will be expected that the user has an sdk installed. Good luck with figuring this thing out.

  • How can I install and run the Java Telephony API

    Hello!
    I have downloaded the Java Telephony API but I couldn't find the installation notes for installing it on my PC (Win2000).
    Can anyone help me?

    Since the package is downloaded as just .class files just set your classpath like you normally would if you were creating your own package...I personally would install the class file version...run a sample program and see if this works...

  • How do I build and run a java application?

    I wrote my java swing application in jbuilder where I run it from a test class.
    Now I want to send it out to others, so they can run it from their computers, how do I do that? Is it possible to create an *.exe file with icon for them to click on? How do I do that?
    Thanks in advance!

    You should try InstallAnywhere 4.5 from ZeroG:
    http://www.zerog.com/products_ia_01.html
    It creates an exe for your application which can include the JVM necessary to run it.

  • How can i compile and run javatv ri on linux platform

    hi,
    can any one plz help me what is the requirement to execute javatv reference implementation on linux and what are the steps i should followand, and any commands required
    thx in adv

    See this question :-)
    http://forum.java.sun.com/thread.jsp?forum=54&thread=289574

  • How to build and run sample extensions?

    I spend quite a while in trying to get the sample extensions to run, provided at
    Adobe-CEP/CEP-Resources · GitHub  or also in the Adobe Illustrator CC 2014 SDK for the Plugins that have a GUI.
    So far i did not succeed.
    System Windows 7 x64. Illustrator CC
    First try:
    Package one of the samples using the Adobe package manager. Added the whole folder of "CEP_HTML_Test_Extension" or as well the "TutorialUI" from the SDK samples.
    and then install the resulting zxp file it using the "Extension manager". No errors reported. Extension managers lists the Extension as active for AI CC. Started Illustrator.
    But i dont see anything in illustrator. There is no entry "Extensions" in the Windows menu of Illustrator.
    The menus of the Tutorial PlugIn are shown, but the Dialog of the sample does not show up. In the debugger i noticed that the call to pFnLoadExtension fails.
    Second try:
    Following the pdf "USING THE ADOBE EXTENSION SDK" (http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/creativesuite/pdfs/CC14_Extension_S DK.pdf)
    Package done as before
    Activated PlayerDebugMode in HKEY_CURRENT_USER\Software\Adobe\CSXS.5
    copied the zxp file to C:\Program Files\Common Files\Adobe\CEP\extensions
    Same result. I do not see anything of a extension.
    I had no problems building and running the Sample Plugins though.
    What am i doing Wrong?
    How can i build and run a simple sample extension?
    Any help appreciated.

    Help About Illustrator shows:
    Version 2014 1.0
    18.1.0 (64 Bit)
    From Samples-master\UI_Showcase\CSXS\manifest.xml i see:
    <HostList>
    <Host Name="ILST" Version="[17.0,17.9]" />
    <Host Name="PHSP" Version="[14.0,14.9]"/>
    <Host Name="PHXS" Version="[14.0,14.9]"/>
    <Host Name="PPRO" Version="[7.0,7.9]" />
    </HostList>

Maybe you are looking for

  • Final cut Express unable to capture

    My Final Cut Express wont initialize my deck. A dialog box comes up saying so. one site suggest deleting quicktime receipts in my library folder on my mac, that quicktime needs to be reinstalled, then i should be able to get my canon HV20 video camer

  • HT201303 How do i change my credit card details from USA to Australia?

    I have an American account and want to purchase some music, i have moved to Oz and don't use my old credit card anymore. When i try to change my address in the billing section it is only for US customers and doesn't let me put my new Aust info in the

  • A65-S159 - I can't use the CD Recovery because my CD/DVD doesn't work properly

    Hi, I need help to reinstall the system and drives. It's a Satellite A65-S159. The CD/DVD doesn't work properly. Rarely, the CD/DVD can read a DVD. So I can't use the CD Recovery. What may I do? Thank you, Cabula, Brazil

  • Connecting imac to macbook. "No devices detected"

    I'm attempting to share screens betwee my MacBook and my iMac.  I'm using a 18Pin DIGITAL SINGLE LINK DVI-I CABLE to conect them.  Both devices are reading "No devices detected".  Any suggestions for my next step?

  • Aperture 3 versus Iphoto

    am I correct in thinking if I have Apertyre 3 I have no need for iPhoto,this is on the iMac... Also can't remember if I've asked this but on the iPad if I have iPhoto can Photo be deleted because its just a duplicate except it has less options,is thi