Sponsored Content
Operating Systems Solaris Burning Solaris 9 Installation ISOs to bootable CDs Post 302332277 by frozentin on Wednesday 8th of July 2009 02:57:11 PM
Old 07-08-2009
Was the cdrom working previously? What do OK prompt diagnostics report? Did you try booting from a Solaris 10 sparc cd, or any other boot media to rule out a faulty CD drive?
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

burning Solaris 8 images

this is probably going to sound really stupid...but how do i burn the Solaris 8 images i got off of Sun's servers? i know youre supposed to burn them in Nero/EasyCD/whatever, but Nero gives me some bullshit about it being an "unrecognized format" and EasyCD wants to burn it as an audio file. do i... (4 Replies)
Discussion started by: fuji250
4 Replies

2. Windows & DOS: Issues & Discussions

Burning ISO of Solaris 9

Hello, This is my first time setting up a Unix system, and I'm very excited to do so, but I'm run into some problems from the get go! I downloaded Solaris 9 (I specifically need this version of Unix, as I'm gunning for a better position in my company), and got a bz2 compressed image. I intend... (3 Replies)
Discussion started by: skeet23
3 Replies

3. AIX

installation CDs

I am trying to find the images of AIX 5.2 (or 5.3) installation CDs. Does any one know web links to download? I was not able to find any. I am wonderying if it is not possible at all. (7 Replies)
Discussion started by: gogogo
7 Replies

4. Solaris

Problem in locale installation through solaris 10 cds

Dear All I am in a problem where i have to install en_us locale through solaris 10 05/08 which is in 5 cds as I download from internet. when I use the following command after putting disk 1 of solaris 10 loceladm -a en_us -d /cdrom/cdrom0/s0/Solaris_10/Product It install few packages but... (3 Replies)
Discussion started by: girish.batra
3 Replies

5. Solaris

Help me, please! Solaris 10 hands-off installation from a bootable DVD

Hello, I have a problem with installing the Solaris 10 using a bootable DVD with a flar archive. I want this installation to be totally hands-off, but unfortunately after I run this boot command at the ok prompt: ok boot cdrom - install ... the system is rebooted and the interactive... (5 Replies)
Discussion started by: Przemek
5 Replies

6. Solaris

Solaris 8 02/04 CDs

Hi I have misplaced my Solaris 8 02/04 CDs - is there any way to get a copy? I have to re-install a server and it needs to be this version. Mick (2 Replies)
Discussion started by: mickg007
2 Replies

7. AIX

Integrate ML with AIX Installation CDs

In windows, there is a software that can help integrate some fixes or files into installtion media ( I think the software is called nLight or something). For example, if you want to include some SATA drivers into the installation CD of Windows XP you would: 1)get the Windows XP installation CDs. 2)... (1 Reply)
Discussion started by: Dardeer
1 Replies

8. Solaris

How to find Solaris 2.6 installation cds?

Hello Forum! I need to install Solaris 2.6, but it seems difficult to find that old version...any ideas where to find / buy the installation cd's? Best regards, /roinepe (2 Replies)
Discussion started by: roinepe
2 Replies

9. Solaris

Solaris 7 CDs 3/99

We have an Ultra 5 running Avaya's CMS (Call Management Software) and it crashed. I have a new Ultra 5 replacement that I need to reload Solaris 7 3/99 on it then I can run CPIO to pull all the CMS backup files off our tape backup. It has been years since we first setup this CMS server and... (0 Replies)
Discussion started by: drewmich
0 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 10:04 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy