Create an ISO image of whole system


 
Thread Tools Search this Thread
Operating Systems Solaris Create an ISO image of whole system
# 1  
Old 04-03-2009
Create an ISO image of whole system

Hi All,

Please help me with this.

My plan is to create an ISO image of my current solaris 8 OS.Because we use a stripped out version of solaris 8 which is different than the standard one in CD. Will dd command will do ?

My idea is to create a VMware image from iso file and play it in VMware player.

Can you please advise

Thanks in Advance.
# 2  
Old 04-03-2009
If I remember correctly...

dd if=/dev/dsk/c0t0d0s0 of=/path-to/image.iso

...making sure the 'of' is not on the same disk as 'if'.
# 3  
Old 04-03-2009
That wouldn't be an ISO image but a raw UFS one. Have a look at mkisofs for creating ISOs.
This User Gave Thanks to jlliagre For This Post:
# 4  
Old 04-03-2009
Quote:
Originally Posted by jlliagre
That wouldn't be an ISO image but a raw UFS one. Have a look at mkisofs for creating ISOs.
You're right. I was thinking of /dev/dsk/c0t0d0s0 as being a CD, not a HDD.

mkisofs is the way to go but read the documentation fully and carefully. There are a ton of options that you may or may not need which will mean the difference between a working ISO or huge unusable file.
# 5  
Old 04-04-2009
Quote:
Originally Posted by seg
You're right. I was thinking of /dev/dsk/c0t0d0s0 as being a CD, not a HDD.
Then I guess there was no reason to warn against writing a file to it given the fact it's a read-only filesystem ;-)
# 6  
Old 04-05-2009
Sounds like making a flash archive/image would be simpler (as can be used for JumpStarting a machine) in which case you could run:
Code:
# cd /var/tmp
# flarcreate -n <imagename> -c -e <imagename> <imagename>

You would end up with a flar file fn the machine excluding the contents of /tmp and /var/tmp called <imagename>.

If you then use the flar split command on the flar file you will have a cpio format file of the machines filesystems.

Hope this might be a helpful alternative?

If not here is a useful document on Sun's site about writing CD's and making ISO files:
http://docs.sun.com/app/docs/doc/817...lh?l=en&a=view

Last edited by TonyFullerMalv; 04-05-2009 at 04:47 PM..
# 7  
Old 04-07-2009
# mkisofs -r -o image.iso <file or directory> . . . <file or directory>
Total translation table size: 0
Total rockridge attributes bytes: 247
Total directory bytes: 0
Path table size(bytes): 10
Max brk space used a000
176 extents written (0 MB)
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

How to Create ISO Image of a CD/DVD in Solaris 10?

Hi Solaris 10 Experts, How can I create an ISO Image of a CD/DVD from the cdrom to a temporary directory, and then use that image to burn it on a blank DVD in the cdrom in Solaris 10 1/13 OS environment? Please provide me with an example. With best regards, SS (1 Reply)
Discussion started by: ssabet
1 Replies

2. Red Hat

How to make boot.iso image from rhel6 installation dvd iso ?

Hello Everyone, Can anyone let me know how to make minimal boot.iso from rhl6 installation dvd iso image. I have a dvd image with me but i want to make just a minimal boot media. Somehow it is not shipped with dvd iso. I know we can download boot.iso from redhat site but is there any anyway we... (5 Replies)
Discussion started by: Rohit Bhanot
5 Replies

3. UNIX for Dummies Questions & Answers

How to modify an iso image file

Hi, I'm trying to create a customized debian installer on a USB key. I found a tutorial on how to create the usb key. After the USB key is prepared, all you have to do is to copy the iso file to the stick. So what I need to do now is to be able to modify the content of the iso file before... (7 Replies)
Discussion started by: chebarbudo
7 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. AIX

AIX ISO image file

Hi all, Can anyone get the link to download the iso image of AIX as i am new to AIX need to study and work on the concepts of AIX. Thnx in advance... VINU:) (3 Replies)
Discussion started by: vinuvinod
3 Replies

6. Ubuntu

Writing ISO image to CD

I want to install Ubuntu 7.10 and I have ISO image ubuntu-7.10-desktop-i386.iso . How can I convert to a bootable CD on linux or on windows. Thanks, J. (5 Replies)
Discussion started by: superuser84
5 Replies

7. UNIX for Advanced & Expert Users

Create an Ignite image on tape from Online IgniteUX image

Hi, (HP-UX 11.11) I need to create a tape image of an igniteUX image created on our igniteUX server. That is to say. I have a "Online" image of the igniteUX of the targeted system but I now need to copy it to a useable TAPE (igniteUX) image so i can build an other server from it that is not... (3 Replies)
Discussion started by: Andrek
3 Replies

8. UNIX for Advanced & Expert Users

mount iso image

I would like to mount an iso CD image on my Suse linux (SLES 9), the image has been copied to my suse linux machine. am able to mount the iso image manually by mount -oloop /iso/SLES-9-i386-CD1.iso /free but I would like to put the above entry in /etc/fstab so that when the machine is rebooted,... (2 Replies)
Discussion started by: hassan1
2 Replies

9. 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
Login or Register to Ask a Question