Sco unix and java

not sure if this is the right place to ask this question.
1. Does sco unix support Java 5.0?
2. What version of sco unix is capatible with Java 5.0 and Java 1.4.2?
Thanks in advance!

According to this you can install and execute J2SE for Intel Linux on S.C.O.

Similar Messages

  • Unix and Java

    Hey guys, im taking a computer programing class this semester and i was wondering if anyone has tried running Unix and Java OS on their macs? Im going to be writing my own programs for the class, such as creating a ball in a window and making it bounce etc. So far i been using my school computers and i was wondering how macs are?

    You can't run OS X without running Unix Strictly speaking, 10.4 (Tiger) isn't a certified Unix, so you may find a couple of non-standard things, but 10.5 (Leopard) will be certified.
    There are a ton of Java developers who work on Macs, so it's as good a platform as any for Java development. Apple are always a bit behind the official JDK releases because they produce their own rather than using Sun's, though. As for development tools, Apple's Xcode, Sun's Netbeans and IBM's Eclipse all work just fine on Macs-- although to be honest you shouldn't need much more than a decent text editor if you're just taking an elementary programming class.

  • Can you run SCO UNIX platform apps on 10.4?

    Just wodering if it is possible to run SCO UNIX platform apps on a Mac?
    I have 2 applications designed to run on SCO UNIX and I would be interested to see how they work.
    I don't know anything about the us of UNIX BTW
    G4   Mac OS X (10.4.4)  

    Hi Atlantean,
       It's certainly not possible to run a precompiled binary and SCO isn't exactly known for their open source community spirit. They'd probably sue you. I'm a little surprised that you'd mention them in polite company.
    Gary
    ~~~~
       "Spare no expense to save money on this one."
             -- Samuel Goldwyn

  • Setting file permisions ,group permission on Windows and unix from java

    Hi
    i am trying to set up file permissions through java on unix and windows operation sysyem
    .I don't want to use shell scripts .
    thank you for your help.

    HI BIJ001,
    Thanks for reply.I am paling to use
    1)First i am detecting operating system
    2)if it is UNIX->calling unix scripts from JAVA
    2)if it is WINDOWS ->calling Bat scripts.
    But attrib command in windows does not support FIle Gropu permssion like unix(chmod 777 filename).
    Do yoou have any experience in .bat sctipts on file permission.
    Let me know .Again thank you for reply.

  • How to install jdk to SCO unix?

    I am a new developer in SCO unix ,can you tell me how to jdk to SCO unix?
    install which version of jdk and how to install,
    where can I down the file needed?

    As far as I know, Sun hasn't released a JDK for Unix. It's only available for Solaris, Linux, and Windows.
    IBM has realeased developer kits for some of their platforms (AIX, OS/390), but that's not going to help you much.
    There has been a lot of talk among open-source developers about Sun relasing the source code to Java. Such would enable ports of the SDK to other platforms (SCO, Mac...). This may only happen after IBM buys Sun (still a few years off '-) .

  • Problem with JSP and Java Servlet Web Application....

    Hi every body....
    I av developed a web based application with java (jsp and Java Servlets)....
    that was working fine on Lane and Local Host....
    But when i upload on internet with unix package my servlets and Java Beans are not working .....
    also not access database which i developed on My Sql....
    M using cpanel support on web server
    Plz gave me solution...
    Thanx looking forward Adnan

    You need to elaborate "not working" in developer's perspective instead of in user's perspective.

  • Using Oracle driver in JDBC for Unix and Linux based servers

    Please, let me know how to mention the Oracle driver within the forName.class(" "); statement in the Jdbc-Servlet for Unix and Linux based servers.
    I'm using Windows-OS for Java programming. Should I have to use the same environment(Unix/Linux with Oracle) for compiling or just compiling, mentioning the driver in the java program would suffice?
    Please, Help me.
    Thank You.
    from,
    Silas eschole.
    email: [email protected]
    [email protected]

    I've used Oracle's thin driver like this:
    Class.forName ( "oracle.jdbc.driver.OracleDriver" );
    Connection DBConnection = DriverManager.getConnection("jdbc:oracle:thin:USER/PASSWD@database" );
    You need Oracles client classes ( e.g. classes111.zip ) at run time, not during compilation.
    Thin client connects directly to the Oracle DB, so the database description is like PORT:MACHINE:SID
    Connection is made through Oracle's listener even when your DB is in the same machine that your program is running. Port number is propably 1521 or 1526, depending on your listener.ora definitions and used Oracle SQL*Net version.

  • Problem with new-line-character and java.io.LineNumberReader under AIX

    Hi folks,
    I got the following problem: I wrote a little parser that reads in a plain-text, tabulator-separated, line-formatted logfile (and later on safes the data to a 2-dimensional Vector). This logfile was originally generated by an AIX ksh script, however, I copied it on my Windows machine to work with it (for I'm using a Java editor that runs under Win Systems).
    For any reason, Windows, and what is worse Java too, seems not to recognize correctly the new-line character (in the API it is written that this should be a newline '\n' or a carriage-return '\r' or one followed by the other) that marks the end of a line in the logfile.
    Also, when I'm opening the logfile with the "Notepad"-editor, this special character does not seem to be recognized, every line is inserted right after the other.
    On the other side, when I open the logfile with the built-in editor in the CMD-Shell ("Dos-shell"), the newline chars seem to be recognized correctly.
    But when start my parser on the AIX-machine the newline does not seem to be recognized correctly again.
    I tried to read in the logfile with MS-Excel and safe it as a plain-text, tabulator-separated, line-formatted logfile again, with such files my parser works fine both on the AIX as it does on Windows.
    Any ideas? Anybody got over the same problem already?
    Greetz FK

    Under windows, text files' lines are usually delimited by \r\n,
    under Unix/Linux/AIX etc. \n
    and under Mac \r.
    I recommend to use the following editors, which are capable to handle files with Unix and Windows-styled line-delimiters or convert between these types:
    Programmer's File Editor (PFE; available on Windows)
    The Nirvana Editor (http://www.nedit.org/; available on Unix, MAcOS, Windows)
    (BTW good old vim can handle that too. Transferring text files to windows in order to edit them, even using Excel for this purpose means your being a UNIX newbie, (I mean no offense by writing this) so vim is probably beyond your reach for the moment.)
    Java normally assumes the platform's line delimiters where it is running, so if you transferred the file from Unix to Windows might be distrurbing.

  • Execute command on UNIX and get the result

    I want to write a Java program, which can execute a shell script in UNIX and get back the result. Any idea?

    Check these two tips:
    How to execute a command from code
    http://www.java-tips.org/java-se-tips/java.lang/how-to-execute-a-command-from-code.html
    How to read output from a Command execution
    http://www.java-tips.org/java-se-tips/java.lang/how-to-read-output-from-a-command-execution.html

  • Trying to find the correct Oracle version for SCO Unix 5.06

    Please I will appreciate you can help me indicating where can I download the correct Oracle version for SCO Unix 5.06. I have downloaded the Tru64 Compaq version but it is not working with SCO.
    Best regards
    Armando Delgado
    00511 8105860
    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name
    - Filename
    - Date/Time
    - Browser + Version
    - O/S + Version
    - Error Msg

    This is pretty old. From the certify matrix, you can see the last available versions this platform supported were 9.0.1 and 8.1.7, just for the Intel SCO Open UNIX 8 with LKP. SCO 5.0 last time I used it was with an Oracle7.3 release. In case you don't have software it'll be hard to find, unless you address this to your Oracle Representative.
    Are you absolutely required to run on this version? Otherwise, you could try new software and new oracle releases, unless you want to run unsupported.
    ~ Madrid.

  • COBOL and Java

    Hello to everybody.
    My problem consist in calling a compiled COBOL module from a Java servlet/program. In Windows I know I usually use the NetExpress library for doing it, but now I have to move in a UNIX environment... Does someone know how to do it inside a LINUX/UNIX environment ?
    Thank you very much in advance for your help

    And you are going to move the cobol code to the unix box and recompile right? That is the only way the cobol will run on unix.
    Java does not talk to cobol.
    Java does however do JNI. That allows java to call a C method. C code can do many things. Like talk to interfaces which talk to cobol. I have no idea how to do that.
    You might also check the vendor of the cobol that you are running. They might have a java interface. (It will still be JNI but at least you won't have to write it.)
    Alternatively if the cobol will remain on the windows box then that is an entirely different story.

  • How about SCO OpenUnix and Unixware?

    Either are also provided free binary code for x86 platform and single user license.
    Have everyone give some opinions that about Solaris vs. SCO Unix?

    One word about SCO.
    Junk. Another word about their free UNIX. It's a single user license, and UnixWare is very particular about license enforcement. It will NOT let you log in more than once if you have a single user license. In other words, useless.
    UnixWare is also a bloated giant, with humongous hardware thirst and at least a few hundred security holes that there are no patches for. Just take a look at the patch listings. It's rediculous. Sun maintains maintanence updates for you and periodic patch packs. SCO/Caldera does not. You have to sift through and add them one by one.
    I have worked with SCO for a while and while UnixWare has some nice features on paper, it is in my list ranking first from the bottom. The nice things are:
    VxFS as a native filesystem.
    Lots of 3rd party driver support.
    The bad things are:
    Licensing, very expensive and rigorously enforced.
    Slow.
    Lots of bugs and security problems.
    Patches are not ordered and are difficult to apply properly.
    Support is nonexistent unless you pay big $$$.
    SCO/Caldera charges for licensing in weird and non-logical ways. They combine the following to form licensing:
    Per user licensing, where you buy user licenses in packs of 25 I think.
    Per server licensing, available in different variants such as Departmental, Data Center and a slew of others. These comprise of a "base" license upon which user licenses can be added.
    Per software used licensing, where you pay for EXTRA user licenses for certain software that you use. Sun does this with its compilers, but that's about it. SCO/Caldera does this with just about every title they have.

  • Unable to locate existing  file from unix using java program

    Hi
    I have created a file in unix using java program, file.createNewFile();
    And when i try to search for the same file using file.exists() it is returning false. Paths are correct. Can anybody help me out.
    Thanks & Regards,
    Prasanth

    In Linux FC5 using JDK1.6, this code         File temp = new File(System.getProperty("user.home") + "/abcdefghijklmn");
            System.out.println(temp.createNewFile());prints 'true' and the file is created with length zero.

  • Oracle client for SCO Unix

    Hi,
    Where I can't download oracle client for SCO Unix ?
    Thanks.

    You're right. You can't download Oracle client for SCO Unix.
    I'm not sure what you mean by "SCO Unix", but if you go to MetaLink and look at the Certification matrix, you see two different listings that make reference to SCO:
    Unixware (SCO) - Terminal Oracle release for this platform was 8.1.7.
    Intel SCO Open Unix 8 with LKP - Terminal Oracle release for this platform was 9.0.1.
    So, I think you're out of luck.
    -Mark

  • Oracle under Sco Unix

    Hi,
    Is it possible to work on Oracle8i & Oracle9iAS under SCO UNIX.
    Pl. mail me the installiation document, if any body have.
    Thanks,
    Sathya

    Hello,
    Please repost this question in the appropriate section of the Discussion Forum.
    This forum is for general suggestions and feedback about the OTN site.
    You can also use our new offering called OTN Service Network:
    For Oracle Advice/Minimal Support (fee based) on the Oracle Database Server, Oracle9i Application Server Containers for J2EE (OC4J), Oracle9i JDeveloper, Reports, Forums, SQL*Plus, and PL/SQL, please go to: http://www.oracle.com/start/otnServiceNetwork/intro.html?src=912386&Act=6
    For customers with paid support (Metalink) please go to:
    http://www.oracle.com/support/metalink
    Regards,
    OTN

Maybe you are looking for