Sponsored Content
Operating Systems SCO SCO Unix on-site Tech in Seattle? Post 302329373 by davidanders on Friday 26th of June 2009 09:24:00 PM
Old 06-26-2009
Thank you for your response and time

Quote:
Originally Posted by edfair
This isn't rocket science. You can probably do it yourself, with a little help. Will require you to know the root password, some idea of how much space the data takes up, the ability to use tools to get the covers off and the bad tape drive out, and to replace the tape drive with something else and cover it back up.
I know the root password.
Not sure about data size - almost a complete newb with unix, except for some troubleshooting commands in OSX (FreeBSD) DIR? Get Info?
Tools and hardware replacement is second nature.

Quote:
Originally Posted by edfair
Changing the backup device is a small change using edgemenu and edge reports the backup every time it does one to the root mailbox, if it is implemented correctly.
And I get to EdgeMenu and EdgeReports how?
Login as Root
Open BackupEdge (can it do the update automatically?)
I downloaded the 01.02.04 update in .exe format that is supposed to create two appropriate disks for the Unix Server (in process now)
Is there a good guide for BackupEdge for the clueless?

Thank you for your response and time.
David

OH, by the way... Would you go with DVD-RW or harddrive (160Gb or 320Gb)???
I have a thing about tape drives, unless you buy two at install time so you have a backup.
Thanx

AND AGAIN
Do you do a Bootable DiskImage of the drive in case of drive failure? A one time deal unless updates are added...
AND an incremental backup of the databases for restoration?
Sorry for questions, I understand. I have answered Mac questions for nine years at allexperts, here.
http://www.allexperts.com/expert.cgi...63&expID=16292

Thank you, again.

Last edited by davidanders; 06-26-2009 at 10:38 PM..
 

4 More Discussions You Might Find Interesting

1. News, Links, Events and Announcements

Anti-Unix site running Unix

I just wanted to share this piece of news to all of you, comments are unnecessary :) http://news.com.com/2100-1001-872266.html (1 Reply)
Discussion started by: J.P
1 Replies

2. Filesystems, Disks and Memory

SCO TCP/IP runtime System for SCO Unix

Hi everyone i have a question for all of you. It may be basic or it may be a good one. I recently aquired a copy of "SCO TCP/IP runtime System for SCO Unix" (thats what the disks say) and for the life of me i can not get it to load. i have tried opening the disk in linux and it can not determine... (0 Replies)
Discussion started by: Cerberus
0 Replies

3. SCO

load sco xenix and sco unix binary ?

Hi I have some sco xenix object, bin and archive files that operate in sco unix 5.0.7. I know that sco unix kernel can support sco xenix binary. I want to know how can I link xenix and unix archives together? (0 Replies)
Discussion started by: javad1_maroofi
0 Replies

4. Programming

Need best forum site for java (as for unix its unix.com)

Hi All, Can anyone help me for knowing the java best side forums. where i will get a quick responce like here , as i am having lot of question. Thanks (1 Reply)
Discussion started by: aish11
1 Replies
SDL_CDOpen(3)							 SDL API Reference						     SDL_CDOpen(3)

NAME
SDL_CDOpen- Opens a CD-ROM drive for access. SYNOPSIS
#include "SDL.h" SDL_CD *SDL_CDOpen(int drive); DESCRIPTION
Opens a CD-ROM drive for access. It returns a SDL_CD structure on success, or NULL if the drive was invalid or busy. This newly opened CD- ROM becomes the default CD used when other CD functions are passed a NULL CD-ROM handle. Drives are numbered starting with 0. Drive 0 is the system default CD-ROM. EXAMPLES
SDL_CD *cdrom; int cur_track; int min, sec, frame; SDL_Init(SDL_INIT_CDROM); atexit(SDL_Quit); /* Check for CD drives */ if(!SDL_CDNumDrives()){ /* None found */ fprintf(stderr, "No CDROM devices available "); exit(-1); } /* Open the default drive */ cdrom=SDL_CDOpen(0); /* Did if open? Check if cdrom is NULL */ if(!cdrom){ fprintf(stderr, "Couldn't open drive: %s ", SDL_GetError()); exit(-1); } /* Print Volume info */ printf("Name: %s ", SDL_CDName(0)); printf("Tracks: %d ", cdrom->numtracks); for(cur_track=0;cur_track < cdrom->numtracks; cur_track++){ FRAMES_TO_MSF(cdrom->track[cur_track].length, &min, &sec, &frame); printf(" Track %d: Length %d:%d ", cur_track, min, sec); } SDL_CDClose(cdrom); SEE ALSO
SDL_CD, SDL_CDtrack, SDL_CDClose SDL
Tue 11 Sep 2001, 22:58 SDL_CDOpen(3)
All times are GMT -4. The time now is 05:08 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy