Sponsored Content
Operating Systems SCO Loading SCO 507 on HP ProLiant ML350 G6 Post 302361176 by farmboy on Monday 12th of October 2009 12:13:10 PM
Old 10-12-2009
Loading SCO 507 on HP ProLiant ML350 G6

This is my first load of SCO OpenServer v5.0.7 on a HP ProLiant ML350 G6. When it asks me to identify the source media it can't find it no matter how I respond. The SCO compatible page says it used the on board SATA DVD-ROM on Port 2 of the embedded SATA controller with "Legacy IDE emulation (as default)". I can't find any configuration area for the SATA ports anywhere. Is there a boot string I can use to get this to work?
 

8 More Discussions You Might Find Interesting

1. SCO

Sco Unixware 7.1.3 hangs in installation during loading of IDE

Hello, i'm mostly a linux person, so I have some experience in unix. I don't even know where to start with unixware though. I boot, anwser a couple questions in the installer, and when it comes to detecting and loading the drivers, it hangs as 90% when loading "IDE". I press crtl-alt-esc and it... (1 Reply)
Discussion started by: techmaster
1 Replies

2. SCO

SCO 5.0.5 want to install on ML350 G5

Hi Can any one suggest me how i will install SCO 5.0.5 on new server ML350 G5 as vendar says this machine is not compatable for SCO 5.0.5 this machine only can support SCO 5.0.7 but i dont want to install SCO 5.0.7 . OR which machine is available in the market for SCO 5.0.5 . Waiting for... (1 Reply)
Discussion started by: munirh
1 Replies

3. SCO

Problems installing a tape storageworks on ML350 G5 with sas hdd and 29320alp card

I just install UNIX SCO 5.0.7 on a new Proliant ML 350 G5 with hpsas driver on an smart array E200i, i just realized that it doesn have an scsi port for the tape unit (storageworks dat40), just add a scsi card 29320ALP pcix card, installed the ad320 driver downloaded from adaptec and from sco site,... (6 Replies)
Discussion started by: jactroo
6 Replies

4. SCO

Installing SCO OpenServer v5.07 on an HP ML350 G5 server

Hi there We are trying to install SCO OpenServer v5.07 on an HP ML350 G5 server. I have downloaded the drivers from HP's website, but are getting nowhere. (I feel that I am going round in circles - every time I google for the drivers, I end up here.) :( What happens is we create the driver... (12 Replies)
Discussion started by: The_Librarian
12 Replies

5. Shell Programming and Scripting

Function loading in a shell scripting like class loading in java

Like class loader in java, can we make a function loader in shell script, for this can someone throw some light on how internally bash runs a shell script , what happenes in runtime ... thanks in advance.. (1 Reply)
Discussion started by: mpsc_sela
1 Replies

6. SCO

Getting error sco unix 507 from cdrom:no controller for device you chosen

Installing SCO UNIX 507 on Dell Poweredge T610. It has no floppy so I downloaded the BTLD onto CD from SCO site to load without floppy drive. BTLD loads ok. when i get to the Media to be used, no matter what option i chose i get the error: No controller for device you have chosen. During bootup you... (9 Replies)
Discussion started by: romanglad112
9 Replies

7. UNIX for Advanced & Expert Users

Help me to install UNIXware 7.1.4 on hp ml350 g6 server

hi all i have hp proliant ml350 g6 , i want install unixware 7.1.4 , i excute steps installation but an error ocured hard disk not found after completed install HBA DRIVER , when chnage using DCU utility from automatic to mannul some reseason like unkow device see must be configure can you help... (1 Reply)
Discussion started by: eng.sami80
1 Replies

8. SCO

SCO 5.0.7 driver for HP SmartArray P410i Controller on Proliant DL380 G7?

Hi I hope this is the right forum. I am attempting to install SCO 5.0.7 on a Proliant DL380 G7 with a Smart Array P410I Controller. I need a driver for this. Can anybody point me to a download? Thanks in anticipation. (12 Replies)
Discussion started by: Stuart1946
12 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.25 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 03:23 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy