Sponsored Content
Operating Systems SCO Can I run Perkin Elmer software on SCO ? Post 302371396 by TonyLawrence on Saturday 14th of November 2009 02:27:40 PM
Old 11-14-2009
Quote:
Originally Posted by Neo
Ha! If that is the case, then Wiki says that SCO Open Desktop 2.0 is 3.2v4.1 1992.

So, can software for SCO 3.2v4.1 run on SCO OpenServer 5.0 3.2v5.0 1995 ? I assume it can.

Are these really the old 5" floppies? I can't understand the posts so well Smilie
Nor can we :-)

Most older SCO apps could transition to the 5.0.x versions. If there were obstacles, sometimes a little creative linking/ symlinking could resolve it, but in general, you have to need or want it very badly if it doesn't just pop up working. I can tell you that it would take a lot more than money to get me involved in anything like that today. In general, I strongly urge people toward Linux - and even (shudder) Windows if there is no other choice.

The stuff is just too hard to support. I fixed up an old SCO spreadsheet app to run on a 5.0.6 system some years back - for unexplained reasons it just stopped working last year. The people wanted me to fix it again - I just put my foot down and told them they had to move on because I wasn't going to mess with it again. They were not happy, but I was :-)

---------- Post updated at 02:27 PM ---------- Previous update was at 02:20 PM ----------

I found Peerkins Elmer software running on SCO:

EVISA Instrument database: Perkin-Elmer Corp. - Optima 3000

Bottom of the page:

Quote:
Operating Systems: SCO/UNIX ODT (multitasking & multiuser environment), MS-DOS, and Microsoft Windows.
So - he very well could have old SCO software. Again, could be xinstall, pkgadd or even just tar or cpio disks.
 

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How can i set up Software disk mirroring(Raid1) in SCO 5.0.5 with two SCSI harddisk ?

thank u very much, (1 Reply)
Discussion started by: coralsea
1 Replies

2. SCO

Software router on SCO Unixware 2.X

Hi, I am trying to setup an old SCO Unix 2.x box to act as a router. I have got 2 network cards in the box. As far as I know, I need to setup "ip forwarding" and "routes". Can anyone tell me how to setup "ip forwarding" on SCO Unixware 2.X? (0 Replies)
Discussion started by: sreenir
0 Replies

3. UNIX for Advanced & Expert Users

Netscape - What version will run on SCO Unix v3.2 2 Release 5

This question has been resolved. (0 Replies)
Discussion started by: system77
0 Replies

4. SCO

I need a box to run SCO 3.2 5.0.5 i386 with...

need it to be able to run Seagate STT8000A tape drive. Any suggestions where to go. (5 Replies)
Discussion started by: Mike Gomes
5 Replies

5. SCO

Recommendation for hardware to run SCO OSR 5.0.7 natively

Looking for a modern server to run SCO OSR 5.0.7 without VM (native), h/w must have manufacturers warranty. Requirements would be to accommodate light loads of up to 15 users, app does not take more than 30 - 40 MB of RAM and data stored takes up to 15 - 20 GB, no internet connections... (3 Replies)
Discussion started by: migurus
3 Replies
CFREE(3)						     Linux Programmer's Manual							  CFREE(3)

NAME
cfree - free allocated memory SYNOPSIS
#include <stdlib.h> /* In SunOS 4 */ int cfree(void *ptr); /* In glibc or FreeBSD libcompat */ void cfree(void *ptr); /* In SCO OpenServer */ void cfree(char *ptr, unsigned num, unsigned size); /* In Solaris watchmalloc.so.1 */ void cfree(void *ptr, size_t nelem, size_t elsize); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): cfree(): _BSD_SOURCE || _SVID_SOURCE DESCRIPTION
This function should never be used. Use free(3) instead. 1-arg cfree In glibc, the function cfree() is a synonym for free(3), "added for compatibility with SunOS". Other systems have other functions with this name. The declaration is sometimes in <stdlib.h> and sometimes in <malloc.h>. 3-arg cfree Some SCO and Solaris versions have malloc libraries with a 3-argument cfree(), apparently as an analog to calloc(3). If you need it while porting something, add #define cfree(p, n, s) free((p)) to your file. A frequently asked question is "Can I use free(3) to free memory allocated with calloc(3), or do I need cfree()?" Answer: use free(3). An SCO manual writes: "The cfree routine is provided for compliance to the iBCSe2 standard and simply calls free. The num and size argu- ments to cfree are not used." RETURN VALUE
The SunOS version of cfree() (which is a synonym for free(3)) returns 1 on success and 0 on failure. In case of error, errno is set to EINVAL: the value of ptr was not a pointer to a block previously allocated by one of the routines in the malloc(3) family. CONFORMING TO
The 3-argument version of cfree() as used by SCO conforms to the iBCSe2 standard: Intel386 Binary Compatibility Specification, Edition 2. SEE ALSO
malloc(3) COLOPHON
This page is part of release 3.53 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. 2007-07-26 CFREE(3)
All times are GMT -4. The time now is 08:31 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy