Sponsored Content
Full Discussion: Solaris 10 iso CD available?
Operating Systems Solaris Solaris 10 iso CD available? Post 302774799 by achenle on Sunday 3rd of March 2013 11:28:48 AM
Old 03-03-2013
It shouldn't be that hard to replace the CD drive with a DVD drive, as long as it isn't a SCSI CD drive. I'm not sure I've ever seen a SCSI DVD drive....
 

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

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

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

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

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

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

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
SD(4)							     Linux Programmer's Manual							     SD(4)

NAME
sd - driver for SCSI disk drives SYNOPSIS
#include <linux/hdreg.h> /* for HDIO_GETGEO */ #include <linux/fs.h> /* for BLKGETSIZE and BLKRRPART */ CONFIGURATION
The block device name has the following form: sdlp, where l is a letter denoting the physical drive, and p is a number denoting the parti- tion on that physical drive. Often, the partition number, p, will be left off when the device corresponds to the whole drive. SCSI disks have a major device number of 8, and a minor device number of the form (16 * drive_number) + partition_number, where drive_num- ber is the number of the physical drive in order of detection, and partition_number is as follows: partition 0 is the whole drive partitions 1-4 are the DOS "primary" partitions partitions 5-8 are the DOS "extended" (or "logical") partitions For example, /dev/sda will have major 8, minor 0, and will refer to all of the first SCSI drive in the system; and /dev/sdb3 will have major 8, minor 19, and will refer to the third DOS "primary" partition on the second SCSI drive in the system. At this time, only block devices are provided. Raw devices have not yet been implemented. DESCRIPTION
The following ioctls are provided: HDIO_GETGEO Returns the BIOS disk parameters in the following structure: struct hd_geometry { unsigned char heads; unsigned char sectors; unsigned short cylinders; unsigned long start; }; A pointer to this structure is passed as the ioctl(2) parameter. The information returned in the parameter is the disk geometry of the drive as understood by DOS! This geometry is not the physical geometry of the drive. It is used when constructing the drive's partition table, however, and is needed for convenient operation of fdisk(1), efdisk(1), and lilo(1). If the geometry information is not available, zero will be returned for all of the parameters. BLKGETSIZE Returns the device size in sectors. The ioctl(2) parameter should be a pointer to a long. BLKRRPART Forces a reread of the SCSI disk partition tables. No parameter is needed. The SCSI ioctl(2) operations are also supported. If the ioctl(2) parameter is required, and it is NULL, then ioctl(2) will fail with the error EINVAL. FILES
/dev/sd[a-h]: the whole device /dev/sd[a-h][0-8]: individual block partitions COLOPHON
This page is part of release 3.44 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2012-05-03 SD(4)
All times are GMT -4. The time now is 07:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy