Generate VMImage for Solaris 8 ISO File


 
Thread Tools Search this Thread
Operating Systems Solaris Generate VMImage for Solaris 8 ISO File
# 1  
Old 03-15-2010
Generate VMImage for Solaris 8 ISO File

Hi,
I have Solaris 8.0 iso files. How do I generate a VMImage using the iso files ? If anybody have tried it before, then please let me know the steps.

Thx in advance
Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

5. 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

6. 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

7. Solaris

solaris 8 and 9 iso

hi i downloaded solaris 8 and 9 iso from sun.com. i can mount it with winmount and i can see files. but when running it from vmware it won't boot. i even do it on physical server, it won't boot as well. what should i do to make this installation boot? thanks itik (1 Reply)
Discussion started by: itik
1 Replies

8. Solaris

Solaris 8/07 DVD ISO for SPARC

I'm in shock! Sorry =( Step 1. I'm download 2 segments of Sun Solaris 10 8/07 from Solaris Operating System - Get Solaris 10. After unzip they i have it: bash$ ls -l total 9705512 -rw-r--r-- 1 root root 321 Feb 1 11:13 checksum.md5 -rw-r--r-- 1 root root 1621098496... (5 Replies)
Discussion started by: jess_t03
5 Replies

9. 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

10. 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
Login or Register to Ask a Question
Encode::Byte(3pm)					 Perl Programmers Reference Guide					 Encode::Byte(3pm)

NAME
Encode::Byte - Single Byte Encodings SYNOPSIS
use Encode qw/encode decode/; $greek = encode("iso-8859-7", $utf8); # loads Encode::Byte implicitly $utf8 = decode("iso-8859-7", $greek); # ditto ABSTRACT
This module implements various single byte encodings. For most cases it uses x80-xff (upper half) to map non-ASCII characters. Encodings supported are as follows. Canonical Alias Description -------------------------------------------------------------------- # ISO 8859 series (iso-8859-1 is in built-in) iso-8859-2 latin2 [ISO] iso-8859-3 latin3 [ISO] iso-8859-4 latin4 [ISO] iso-8859-5 [ISO] iso-8859-6 [ISO] iso-8859-7 [ISO] iso-8859-8 [ISO] iso-8859-9 latin5 [ISO] iso-8859-10 latin6 [ISO] iso-8859-11 (iso-8859-12 is nonexistent) iso-8859-13 latin7 [ISO] iso-8859-14 latin8 [ISO] iso-8859-15 latin9 [ISO] iso-8859-16 latin10 [ISO] # Cyrillic koi8-f koi8-r cp878 [RFC1489] koi8-u [RFC2319] # Vietnamese viscii # all cp* are also available as ibm-*, ms-*, and windows-* # also see L<http://msdn.microsoft.com/en-us/library/aa752010%28VS.85%29.aspx> cp424 cp437 cp737 cp775 cp850 cp852 cp855 cp856 cp857 cp860 cp861 cp862 cp863 cp864 cp865 cp866 cp869 cp874 cp1006 cp1250 WinLatin2 cp1251 WinCyrillic cp1252 WinLatin1 cp1253 WinGreek cp1254 WinTurkish cp1255 WinHebrew cp1256 WinArabic cp1257 WinBaltic cp1258 WinVietnamese # Macintosh # Also see L<http://developer.apple.com/technotes/tn/tn1150.html> MacArabic MacCentralEurRoman MacCroatian MacCyrillic MacFarsi MacGreek MacHebrew MacIcelandic MacRoman MacRomanian MacRumanian MacSami MacThai MacTurkish MacUkrainian # More vendor encodings AdobeStandardEncoding nextstep hp-roman8 DESCRIPTION
To find how to use this module in detail, see Encode. SEE ALSO
Encode perl v5.18.2 2013-11-04 Encode::Byte(3pm)