Sponsored Content
Operating Systems SCO Need Help With System Recovery After HD Errors Post 302992751 by spock9458 on Wednesday 1st of March 2017 10:21:00 AM
Old 03-01-2017
My only concern is functionality, and since I was under the false impression that I needed the separate file system, I didn't even check it yesterday. Now that I have, it is working GREAT!! All of the operations that we needed from our old system is basically the ability to look at, print and/or email the historical information that we have going back about 20 to 25 years. All of that is operational and I will be a hero now - thanks for all your help with this.

There are just a couple of "cleanup" issues - SCO keeps complaining that I have software that is not registered - I have entered the license numbers I have, but I remember there was a website you had to go on and get a Registration Key. Is there still a place to do that?

Also, in my tinkering around I was able to get SCO installed on a VM, using VM Workstation version 12.5 in a Windows 7 Pro-64 computer. I chose the VM Workstation 8.x compatibility model for my VM, an IDE hard drive at 0:0 and an IDE CD Rom at 1:0 using the physical drive of the computer. Using the defbootstr command at installation it went like a champ. I even installed the keyboard mouse and the graphic screen/mouse is working. The only problem I have is I can't find instructions about how to install the network card driver. I selected "bridge mode" when I created the VM, and SCO did not recognize my NIC at installation, it is a Realtek PCIe GBE Family NIC on the mother board. I believe it is compatible with 5.0.6a, and I think I found the driver, but I have no clue how to get it installed. My only option is from a CD (I think) and I don't know how to do that. The Software Manager does not recognize what I downloaded and burned to the CD as "software" and I am clueless - could you advise me? I can't find any instructions online. I would like to have this VM as a "backup" plan, I would not use it unless the physical server goes down again. Thanks again for all your help.
 

8 More Discussions You Might Find Interesting

1. HP-UX

Automatic system recovery?

Hi all! I've a strange problem. I would use the GNU Make tool on HPUX 11.11. To archive this, i have compiled the sourcecode and renamed HP make in /usr/bin from make to make_old. Now i have make a softlink from /usr/local/bin/make (GNU version) to /usr/bin/make. All things here are ok, but... (1 Reply)
Discussion started by: coredump2003
1 Replies

2. UNIX for Advanced & Expert Users

Adapter Errors and Link Errors

$ errpt | more IDENTIFIER TIMESTAMP T C RESOURCE_NAME DESCRIPTION 3074FEB7 0802050205 T H fscsi1 ADAPTER ERROR B8113DD1 0802050205 T H fcs1 LINK ERROR B8113DD1 0802050205 T H fcs1 LINK ERROR 3074FEB7 0802050205 T H fscsi0 ADAPTER ERROR B8113DD1 ... (0 Replies)
Discussion started by: mcastill66
0 Replies

3. AIX

make a recovery CD/DVD - system has no writable devices

Hi, Has anyone please got some advise as to how I can make a CD/DVD on an AIX 5.3 system so that it can be fully recoverd just by inserting the backed up system. The system that I need to recover has no writable devices, not even a tape drive (it wasn't specified by me btw). I am trying to... (0 Replies)
Discussion started by: stevek007
0 Replies

4. AIX

System recovery

Hi everyone I'm green AIX user or rather beginner (light green). Unfortunately I have to restore my system + data from scratch (things happen) and make it up and running. I've never done it before. Can someone of you provide me with link/procedure/instruction how to do it? Now I know only:... (3 Replies)
Discussion started by: fraydey
3 Replies

5. UNIX for Advanced & Expert Users

Data Recovery from file system overwritten with LVM.

Hey peeps, Here is somethin u might find interestin.... Is it possible to recover data from a partition which used to be an ext3 file sytem with some nice forgotten backups, which now is an lvm partion containg root partition of another OS. :) I couldn't create any mess better than this, can... (2 Replies)
Discussion started by: squid04
2 Replies

6. UNIX for Advanced & Expert Users

linux system recovery after overriding connect() by "ld.so.preload"

dear fellows; i have used ld.so.preload file to override connect() function, dynamic library overriding, it did worked really fine ...... but i went on to struck in a situation ... within the overrided connect() i have used printf once to see IP and Port to whom the connect request is being... (1 Reply)
Discussion started by: mzeeshan
1 Replies

7. UNIX for Advanced & Expert Users

fsck.gfs2 outputs "RG recovery impossible; I can't fix this file system"

I have a CentOS release 5.2 (Final)host running kernel 2.6.18-92.el5 with at raid 10 that had two mirrored drives fail. The drives were re-inserted and now the raid shows healthy (for now). I tried to mount but got an Input/output error. I then attempted a fsck: fsck.gfs2 -y /dev/vg_01/uss_vol... (0 Replies)
Discussion started by: king_hippo
0 Replies

8. Red Hat

Linux system hangs giving ntp errors

Hi folks, I am facing issue of my system (host1) getting hanged after throwing following ntpd messages. I am not able to ssh to the server there after. only option is to restart the host: Dec 29 02:58:51 host1 ntpd: time reset -0.207907 s Dec 29 02:58:51 host1 ntpd: synchronisation lost Dec 29... (0 Replies)
Discussion started by: SiddhV
0 Replies
pthread_attr_setdetachstate(3)				     Library Functions Manual				    pthread_attr_setdetachstate(3)

NAME
pthread_attr_setdetachstate - Changes the detachstate attribute in the specified thread attributes object. LIBRARY
DECthreads POSIX 1003.1c Library (libpthread.so) SYNOPSIS
#include <pthread.h> int pthread_attr_setdetachstate( pthread_attr_t *attr, int detachstate); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: IEEE Std 1003.1c-1995, POSIX System Application Program Interface PARAMETERS
Thread attributes object to be modified. New value for the detachstate attribute. Valid values are as follows: This the default value. Threads are created in "undetached" state. The created thread is detached immediately, before it begins running. DESCRIPTION
This routine changes the detachstate attribute in the thread attributes object specified by the attr argument. The detachstate attribute specifies whether the thread created using the specified thread attributes object is created in a detached state or not. A value of PTHREAD_CREATE_JOINABLE indicates the thread is not detached, and a value of PTHREAD_CREATE_DETACHED indicates the thread is detached. PTHREAD_CREATE_JOINABLE is the default value. Your program cannot use the thread handle (the value of type pthread_t that is returned by the pthread_create(3) routine) for a detached thread because the thread might terminate asynchronously, and a thread ID is not valid after termination. In particular, it is an error to attempt to detach or join with a detached thread. When a thread that has not been detached completes execution, DECthreads retains the state of that thread to allow another thread to join with it. If the thread is detached before it completes execution, DECthreads is free to immediately reclaim the thread's storage and resources. Failing to detach threads that have completed execution can result in wasting resources, so threads should be detached as soon as the program is done with them. If there is no need to use the thread's handle after creation, create the thread initially detached. RETURN VALUES
If an error condition occurs, this routine returns an integer value indicating the type of error. Possible return values are as follows: Successful completion. The detached state attribute is returned in detachstate. The value specified by the attr argument is not a valid thread attributes object or the detachstate argument is invalid. ERRORS
None RELATED INFORMATION
Functions: pthread_attr_init(3), pthread_attr_getdetachstate(3), pthread_create(3), pthread_join(3) Manuals: Guide to DECthreads and Programmer's Guide delim off pthread_attr_setdetachstate(3)
All times are GMT -4. The time now is 10:32 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy