Sponsored Content
Full Discussion: solaris 8 and 9 iso
Operating Systems Solaris solaris 8 and 9 iso Post 302187686 by caddyjoe77 on Monday 21st of April 2008 05:21:31 PM
Old 04-21-2008
Did you put the a and b files into one iso image by chance?

thats what i had to do for my latest DVD image of 10 that i downloaded.

Hope this helps
 

10 More Discussions You Might Find Interesting

1. Tips and Tutorials

Mounting an ISO image on Solaris

Many software packages can be downloaded in the form of an ISO image. ISO images can also be created from CD and saved as ISO images: $ cat /dev/somecd > somename.iso Rather than burning the image to a CD-ROM to access its contents, it is easy to mount the image directly into the filesystem... (0 Replies)
Discussion started by: kduffin
0 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. Solaris

Solaris 10 ISO

I'm download Sun Solaris 10 8/07 SPARC in 2 DVD ISO. (From sun.com) First ISO burn OK, but Second ISO my k3b does not distinguish as ISO a format, though all md5 sum OK! Please help! ( (2 Replies)
Discussion started by: jess_t03
2 Replies

4. Solaris

Solaris ISO image

Hi All, Can anyone give me the lnik to download the iso image file Solaris 10 . I need to install it on my local machine . Pls help me out. VINU (5 Replies)
Discussion started by: vinuvinod
5 Replies

5. Solaris

Fresh install of solaris 10 using an ISO

Hi all Im rebuilding an 6800 domain with solaris 10. Server is located in a different town and cant be bothered to drive down and install a dvd into its drive. So, apart from jumpstarting it and using a local DVD, is there a way I can an ISO image to build a new client ?? eg. mount an ISO... (2 Replies)
Discussion started by: sbk1972
2 Replies

6. Solaris

Install Solaris 10 by using the ISO file

Hi Gurus Recently i had download the ISO installer (sol-10-u8-ga-sparc-dvd.iso) for Solaris 10. And i ftp to a Server. May i know is it possible to install the Solaris by using this ISO file directly (not using network)? (8 Replies)
Discussion started by: SmartAntz
8 Replies

7. Solaris

Solaris 8 .iso download

Does anyone know where we can find Solaris 8 for SPARC? I managed only to find Solaris 10 on sun/oracle site :( (8 Replies)
Discussion started by: orange47
8 Replies

8. Solaris

solaris 10 update 10 8/11 dvd iso

Hi, I can not download iso file as it failed after downloading 1.1 or 1.2 gigs. I tried several times but each time it failed and the error messages like "File not found" or "Read error". My connection is stable (shown 32kbps and 18 hrs completion time) and I used jdownloader and flashgot... (10 Replies)
Discussion started by: vectrum
10 Replies

9. Solaris

Solaris 10 iso CD available?

I'm starting a project to replace the boot drive on my Sparc 10 Ultra running Solaris 10. Apparently, to do this I will need to boot from cdrom after installing the new drive. I went to the Orcale download site but they only have a DVD ISO for Solaris 10. Unfortunately, my machine only has a CD... (12 Replies)
Discussion started by: Michele31416
12 Replies

10. Solaris

How can I install Solaris 10 on an LDom using an iso?

Hello, I am trying to install Solaris 10 on a newly created LDom. Here are the commands I ran to create the LDom: ldm add-domain ldg2 ldm add-vcpu 8 ldg2 ldm add-memory 2g ldg2 ldm add-vnet vnet2 primary-vsw0 ldg2 ldm add-vdsdev /dev/dsk/c0t5000CCA01535E20Cd0s0 vol2@primary-vds0 ldm... (8 Replies)
Discussion started by: bstring
8 Replies
IMAGEISTRUECOLOR(3)							 1						       IMAGEISTRUECOLOR(3)

imageistruecolor - Finds whether an image is a truecolor image

SYNOPSIS
bool imageistruecolor (resource $image) DESCRIPTION
imageistruecolor(3) finds whether the image $image is a truecolor image. PARAMETERS
o $ image -An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(3). RETURN VALUES
Returns TRUE if the $image is truecolor, FALSE otherwise. EXAMPLES
Example #1 Simple detection of true color image instances using imageistruecolor(3) <?php // $im is an image instance // Check if image is a true color image or not if(!imageistruecolor($im)) { // Create a new true color image instance $tc = imagecreatetruecolor(imagesx($im), imagesy($im)); // Copy over the pixels imagecopy($tc, $im, 0, 0, 0, 0, imagesx($im), imagesy($im)); imagedestroy($im); $im = $tc; $tc = NULL; // OR use imagepalettetotruecolor() } // Continue working with image instance ?> NOTES
Note This function requires GD 2.0.1 or later (2.0.28 or later is recommended). SEE ALSO
imagecreatetruecolor(3), imagepalettetotruecolor(3). PHP Documentation Group IMAGEISTRUECOLOR(3)
All times are GMT -4. The time now is 06:28 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy