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

Similar Messages

  • Can you run apps that you have saved or backed up in airport time capsule?

    Can you run apps that you have saved or backed up in airport time capsule?

    Only by restoring them.

  • Can you run Adobe Photoshop CS version 8 on Yosemite?

    Can you run Adobe Photoshop CS version 8 on Yosemite?

    Well if you want permanent license Adobe software, here is the price list for the CS6 catalog .  Creative Suite 6
    Just know that with the exception of Adobe Camera Raw updates, CS6 will have maintenance updates, but not the features of CC 2014.
    The rental model called Creative Cloud means you will have the software installed on your Mac and you can work with your files as before, it's just that activation depends on a $50 monthly fee. Upgrades are piped in at no further cost, and you have the freedom to switch platforms and interface languages. You activate on up to two computers, PC, Mac or mixed. 20 GB online storage for collaboration, and you can also store and sync your settings and custom presets. Typekit if you'd like to try new and difference fonts.
    Look at it this way, it's not a big deal if you are in business. You rent many things and this is probably not your largest monthly expense.
    Gene

  • Can I run a Unix shell when insert some record on a specific table?

    Can I run a Unix shell when insert some record on a specific table?
    I need to run a Unix shell when a record be insert on a table. Is there a way in order to do that?
    THanks,
    Carlos.

    1. Make a backup of the extproc.c file in the c:\orant\rdbms80\extproc
    directory.
    2. Create a file called extern.c in the c:\orant\rdbms80\extproc directory.
    The "extern.c" file :
    #include <oci.h>
    #define NullValue -1
    #include<stdio.h>
    #include<string.h>
    long __declspec(dllexport) OutputString(context ,
                             path , path_ind ,
                             message , message_ind,
                             filemode , filemode_ind ,
                             len , len_ind )
    char *path;
    char *message; 
    char *filemode;
    int len;
    OCIExtProcContext *context;
    short path_ind;
    short message_ind;
    short filemode_ind;
    short len_ind;
    FILE *file_handle;
    int i ;
    char str[3];
    int value;
    /* Check whether any parameter passing is null */
    if (path_ind == OCI_IND_NULL || message_ind == OCI_IND_NULL ||
    filemode_ind == OCI_IND_NULL || len_ind == OCI_IND_NULL ) {
    text initial_msg = (text )"One of the Parameters Has a Null Value!!! ";
    text *error_msg;
    /* Allocate space for the error message text, and set it up.
    We do not have to free this memory - PL/SQL will do that automatically. */
    error_msg = OCIExtProcAllocCallMemory(context,
    strlen(path) + strlen(initial_msg) + 1);
    strcpy((char *)error_msg, (char *)initial_msg);
    /*strcat((char *)error_msg, path); */
    OCIExtProcRaiseExcpWithMsg(context, 20001, error_msg, 0);
    /* OCIExtProcRaiseExcp(context, 6502); */
    return 0;
    /* Open the file for writing. */
    file_handle = fopen(path, filemode);
    /* Check for success. If not, raise an error. */
    if (!file_handle) {
    text initial_msg = (text )"Cannot Create file ";
    text *error_msg ;
    /* Allocate space for the error message text, and set it up.
    We do not have to free this memory - PL/SQL will do that automatically. */
    error_msg = OCIExtProcAllocCallMemory(context,
    strlen(path) + strlen(initial_msg) + 1);
    strcpy((char *)error_msg, (char *)initial_msg);
    strcat((char *)error_msg, path);
    OCIExtProcRaiseExcpWithMsg(context, 20001, error_msg, 0);
    return 0;
    i = 0;
    while (i < len)
    /* Read the hexadecimal value(1). */
    str[0] = message;
         i++;
    /* Read the hexadecimal value(2). */
    str[1] = message[i];
    /* Convert the first byte to the binary value. */
    if (str[0] > 64 && str[0] < 71)
    str[0] = str[0] - 55;
    else
    str[0] = str[0] - 48;
    /* Convert the second byte to the binary value. */
    if (str[1] > 64 && str[1] < 71)
    str[1] = str[1] - 55;
    else
    str[1] = str[1] - 48;
    /* Convert the hex value to binary (first & second byte). */
    value = str[0] * 16 + str[1];
    /* Write the binary data to the binary file. */
    fprintf(file_handle,"%c",value);
              i++;
    /* Output the string followed by a newline. */
    /* fwrite(message,len,1,file_handle); */
    /* Close the file. */
    fclose(file_handle);
    3. Use the make.bat available in the c:\orant\rdbms80\extproc directory. You
    need to run vcvars32.bat file before running this batch file. This will
    create a dll file.
    4. Configure the tnsnames.ora and the listener.ora files.
    The tnsnames.ora should contain the following entries.
    extproc_connection_data.world =
    (DESCRIPTION =
    (ADDRESS =
    (PROTOCOL = IPC)
    (KEY = ORCL)
    (CONNECT_DATA = (SID = extproc)
    The listener.ora should contain the following entries.
    # P:\ORANT\NET80\ADMIN\LISTENER.ORA Configuration File:p:\orant\net80\admin\listener.ora
    # Generated by Oracle Net8 Assistant
    LISTENER8 =
    (ADDRESS = (PROTOCOL = TCP)(HOST = winnt_nsc)(PORT = 1521))
    SID_LIST_LISTENER8=
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = winnt_nsc)
    (SID_NAME = ORCL)
    (SID_DESC =
    (SID_NAME = extproc)
    (PROGRAM = extproc)
    5. Login from sqlplus and issue the following statements.
    create library externProcedures as 'C:\orant\RDBMS80\EXTPROC\extern.dll';
    Create or replace PROCEDURE OutputString(
    p_Path IN VARCHAR2,
    p_Message IN VARCHAR2,
    p_mode in VARCHAR2,
    p_NumLines IN BINARY_INTEGER) AS EXTERNAL
    LIBRARY externProcedures
    NAME "OutputString"
    With context
    PARAMETERS (CONTEXT,
    p_Path STRING,
    p_path INDICATOR,
    p_Message STRING,
    p_message INDICATOR,
    p_mode STRING,
    p_mode INDICATOR,
    p_NumLines INT,
    p_numlines INDICATOR);
    This is the pl/sql block used to write the contents of the BLOB into a file.
    Set serveroutput on before running it.
    SQL> desc lob_tab;
    Name Null? Type
    C1 NUMBER
    C2 BLOB
    lob_tab is the table which contains the blob data.
    declare
    i1 blob;
    len number;
    my_vr raw(10000);
    i2 number;
    i3 number := 10000;
    begin
    -- get the blob locator
    SELECT c2 INTO i1 FROM lob_tab WHERE c1 = 2;
    -- find the length of the blob column
    len := DBMS_LOB.GETLENGTH(i1);
    dbms_output.put_line('Length of the Column : ' || to_char(len));
    -- Read 10000 bytes at a time
    i2 := 1;
    if len < 10000 then
    -- If the col length is < 10000
    DBMS_LOB.READ(i1,len,i2,my_vr);
    outputstring('p:\bfiles\ravi.bmp',rawtohex(my_vr),'wb',2*len);
    -- You have to convert the data to rawtohex format. Directly sending the buffer
    -- data will not work
    -- That is the reason why we are sending the length as the double the size of the data read
    dbms_output.put_line('Read ' || to_char(len) || 'Bytes');
    else
    -- If the col length is > 10000
    DBMS_LOB.READ(i1,i3,i2,my_vr);
    outputstring('p:\bfiles\ravi.bmp',rawtohex(my_vr),'wb',2*i3);
    dbms_output.put_line('Read ' || to_char(i3) || ' Bytes ');
    end if;
    i2 := i2 + 10000;
    while (i2 < len ) loop
    -- loop till entire data is fetched
    DBMS_LOB.READ(i1,i3,i2,my_vr);
    dbms_output.put_line('Read ' || to_char(i3+i2-1) || ' Bytes ');
    outputstring('p:\bfiles\ravi.bmp',rawtohex(my_vr),'ab',2*i3);
    i2 := i2 + 10000 ;
    end loop;
    end;

  • Can you run the darker shade UI on iOS7 running v28

    Hi,
    Can you run the darker shade UI on iOS7 running v28 instead of the lighter shade UI?
    Thanks.

    The UI and certain features/functions in v28 has changed as compared to the previous versions. But you can customize the v28 UI color/fonts/text etc to something of your choice. Then replace the default UI with your own in App builder
    http://www.adobe.com/devnet/digitalpublishingsuite/articles/using-dps-store-configurator.h tml

  • I used to have an application in my iPhone 4 and 4s that captures business card and creates its content to my contacts. Its no longer working with my i5. Can you recommend me a new apps for this same function

    I used to have an application in my iPhone 4 and 4s that captures business card and creates its content to my contacts. Its no longer working with my i5. Can you recommend me a new apps for this same function

    Try CardMunch it works well for me

  • Can you delete the game center app

    Can you delete the game center app off the iphone

    No, BUT you can hide it in a folder. Unlike Newsstand *cough*

  • Can you run Embedded PL/SQL Gateway and Oracle HTTP Server at the same time

    Hi,
    I know this will sound a bit odd but their is a business case for asking this. Can you run APEX via the Embedded PL/SQL Gateway and the Oracle HTTP Server at the same time? Would their be any security/stability/etc issues I'd need to worry about? I know that I'll need to run them on different ports.
    Thank you,
    Martin Giffy D'Souza
    [http://apex-smb.blogspot.com/]

    I think I've done this in the past. Theres no technical reason why you can't do this as far as I know.
    I can't remember if I used different ports or same port.

  • Can you schedule the downloading of app updates to a specific time?

    Can you schedule the downloading of app updates to a specific time?

    I honestly wouldn't do that.  You have no idea if the software update server will be properly functioning then.  Also you should always backup your data prior installing updates. 
    Note when you install updates, you also have the option to install later, but just download first.
    Always make sure the updates work with each other by finding out the requirements from the developer before installing.  A clone backup will let you recover yourself to the point before the install, if you do it right.

  • Can you run windows via bootcamp on the macbook pro retina display 2.5GHz dual-core Intel Core i5 512GB flash storage1

    Can you run windows via bootcamp on the macbook pro retina display 2.5GHz dual-core Intel Core i5 512GB flash storage1

    http://www.apple.com/support/bootcamp/

  • Can you run Entourage for Mac 2008 v12.1.0 on Mac OSX 10.8.2?

    Can you run Entourage for Mac 2008 v12.1.0 on Mac OSX 10.8.2?

    Office 2008 will run in Mountain Lion including Entourage.

  • Can you run a window version of LabVIEW on an Apple MacBook Pro using boot camp?

    Can you run a window version of LabVIEW 8 on an Apple MacBook Pro using boot camp?

    I don't have a mac, but you may want to read this:
    http://themacview.blogspot.com/
    Should give you more info about what NI is saying.
    Matt Holt
    Certified LabVIEW Architect

  • Can you run a windows only Photoshop plugin on a Mac using Parallels?

    Can you run a windows only Photoshop plugin on a Mac using Parallels?   In particular a .8BF plugin like PTFilters.8BF  or Super Cubic.

    If you also have a Photoshop version of the Photoshop application, the answer is of course YES.
    Otherwise, the answer is no,
    If you have the CC subscription, then of course you can install a Photoshop Windows version and run your plug-in.  That'll be separate from your Photoshop Mac install..

  • Can you run labview on Windows Tablet PC Edition?

    Can you run labview on Windows Tablet PC Edition?...or does LabVIEW executable and Run-time engine operate with this OS?

    LabVIEW 7.x will run without any problems on a Windows Tablet PC with SP1. There have been documented issues with Windows XP SP2 and LabVIEW subsequently not exiting properly--LabVIEW's window closes but somehow it is still present in the task manager.
    Hope this helps.

  • Can you run or install both Photoshop CS6 & CC?

    Can you run or install both Photoshop CS6 & CC?  I thought I'd load both until I decide which one I like best.  Any thoughts?

    Photoshop CS5 and CS6 running at the same time.

Maybe you are looking for

  • How to free-form transform/distort image?

    Hello, everyone! I need to fit my photo on a video of a hand-held piece of paper that is a little distorted by holding in fingers and moving. I tracked it using planar tracker (Mocha Pro) and exported into Motion, so now I have 4-corner pinned rectan

  • Add old 18-inch Studio Display to 2013 iMac; How ??

    I need more screen real estate. My current computer is a 27-inch iMac, bought in May, 2013. When I bought the iMac the folks at the Apple store across town told me I needed an adapter to run a 2nd monitor and they sold me a "Mini DisplayPort to DVI A

  • 'Phone' and 'Tablet' versions of Tumblr blog embedded into Muse

    Hi, I have managed to embed a Tumblr blog into my 'Desktop' Muse website which works fine however my problem is when I go to create 'Phone' and 'Tablet' versions the blog is cropped. Does Tumblr have Moblie Site formats to use for these formats or ca

  • Is there any BTE event after 1025  for post document ?

    Hi, I used to add default account document's text by BTE 1025 ,but after upgrade to ECC5.0,it's not work now . I found the reason is : after run the interface program written by me ,the system run another program  OPEN_FI_PERFORM_00001025_E ,that mad

  • Posting date is coming as next day if posted on sunday

    Hi,   We rae facing some problem, our weekly off is sunday, but when user create any billing document on sunday e.g 16.01.2011  all document it is shoing as posted on next day i.e ON monday 17.01.2011,  what setting to be chekc for this in factory ca