SCO OPENSERVER5.0.7 Problem


 
Thread Tools Search this Thread
Operating Systems SCO SCO OPENSERVER5.0.7 Problem
# 1  
Old 02-28-2006
SCO OPENSERVER5.0.7 Problem

Hello all,
I m running SCO Openserver5.0.7 with HP DL760 G2 Machine with 4 Processor and 4GB Memory.We replaced the SERVER Board because it causing some problem.After replacing the system Board we are facing the problem in SCO OPENSERVER5.At the hardware level it showing 4Processor But in OS level it detecting only ONE processor.We also entered the License for 4 processor of SCO.Installed the latest EFS and Manintance pack.Please any one help...How can I resolve this issue.Anyone have Solution for this.
Thanx
Athar
+923332457207
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. SCO

SCO OpenServer 5.0.5 Problem

I am currently having a problem with my SCO OpenServer 5.0.5 / 3.2v5.0.5 system. Running smoothly for the past 3 years, at random on March 16, 2010 the system crashes. I reboot it. Everything is normal again. 9 hours later it crashes again. This cycle has repeated itself ever since then. System... (2 Replies)
Discussion started by: jesmith
2 Replies

2. SCO

Mouse problem in sco 5.0.6

hello i have a problem with mouse in vmware with sco 5.0.6 in graphic mode X11 my mouse move to corner after a while do you have any idea about this problem vmware 6.5.2 vmware 7 (5 Replies)
Discussion started by: kaydream
5 Replies

3. UNIX for Dummies Questions & Answers

vi problem, sco -> redhat

I rlogin from a sco box to a redhat box and run /bin/vi. Pgup, Pgdn, and arrow up/down keys don't work. I enter "export TERM=ansi80x25" and run vi again.Everything works just like I like it. Except the cursor turns into a blinking overscore. When I exit vi and close the connection to redhat,... (2 Replies)
Discussion started by: bussyw
2 Replies

4. SCO

Small Problem with SCO

Help Please , how to shutdown SCO v. 5.0.5 from client pc ( windows xp or 2000 ) ? i have full access from client and i need to shutdown SCO from windows (2 Replies)
Discussion started by: rabih_saleh
2 Replies

5. SCO

Sco 6 copying problem

We are using GTAR for daily copies of our database using Travan cartridges (Tapestor drive)and are having intermittent problems. Some days it does not copy and we can't figure out why. Sometimes it seems to be hanging and a tape status command doesn't return anything. Other times it doesn't copy... (0 Replies)
Discussion started by: Yrr88
0 Replies

6. SCO

sco openserver 5.07 installation problem

Hi everyone, We r installing sco openserver 5.07 on dell poweredge 2800 but we are facing problem when installing SCSI-raid drivers. Dell provide Perc4 raid card and we dont found raid drivers for this specific raid card. So we r stuck up on primary stage and we also dont know the... (2 Replies)
Discussion started by: mineshkoli
2 Replies

7. SCO

Problem while installing Unixware 7 SCO

Hi All, I just tried to intall Unix ware SCO version 7 on my computer but when system first boots from the CD The terminal Emulator does not shows texts in correct form; it shows all the text in Obnoxious form which is unable to read. I have ATI Radeon 9000 Graphics card installed on my... (0 Replies)
Discussion started by: monster12
0 Replies

8. UNIX for Dummies Questions & Answers

SCO 5.0.6 installation problem

I tryed to install SCO 5.0.6 OpenServer on P4 2.0 GHz 384 MB ram 40 GB HDD. It booted from the floppy disk, and when it comes to hd_config I got this error: unexpected trap in kernel mode: PANIC: K_trap - kernel mode trap 0x0000000E ** Safe to power off ** Please, what should I do? (1 Reply)
Discussion started by: Guest07
1 Replies

9. Filesystems, Disks and Memory

SCO openserver 5 install problem

Hello all, I'm trying to install SCO openserver 5 on a 2.5 Gig hard drive, and I tried fdisk and a low-level format of the drive. When I insert the boot diskette all seems fine, and it asks me to set the cd-rom and it sees it and reads from it. Well, I'm thinking all is well until right after I... (1 Reply)
Discussion started by: immulett
1 Replies

10. UNIX for Advanced & Expert Users

SCO 5.05 partition problem

Hardware: IBM 300PL 32MB RAM 60Gig HDD During the phase in SCO installation where I get to partition my hard disk, SCO only seems to see 8Gig out of the 60 that I have. Does anyone out there know of a utility or what I need to do to make the the whole 60Gig available. Thanks (3 Replies)
Discussion started by: budrito
3 Replies
Login or Register to Ask a Question
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)