Sponsored Content
Full Discussion: Solaris install problem!!
Operating Systems Solaris Solaris install problem!! Post 302136737 by vutty81 on Wednesday 19th of September 2007 10:57:33 AM
Old 09-19-2007
Solaris install problem!!

I am running an x86 system with a clean 300GB hard drive. i installed solaris10 on it the first time as a slave drive(the other drive had xp on it and it was the active part). it gave me bad file system error among other things...bla bla bla... so i took out the drive with xp on it and switched the unix one to master(reset the jumper too). Then I wiped it with boot and nuke and I can get through the first disk but when I reboot and manually eject the disk its either giving me disk read error or if i keep the first one in long enough it brings me back to the beginning. Basically im an idiot and i dont know when to eject the first disk, so i just want to know when is the exact time(exact screen) to eject the first disk so grub can run the second cd. p.s. i dont remember when i did it the first time i installed solaris. yes i am a newbie at this.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Solaris install problem

I am trying to install Solaris 2.8 on an Ultra 5 with Openboot 3.11 from the install cd. I type in boot cdrom, and I get the error: Boot device: /pci@1f,0/pci@1,1/ide@3/cdrom@2,0:f File and args : /platform/sun4u/kernel/genunix. Elf32 read error. I looked up the error, and it said to reset the boot... (2 Replies)
Discussion started by: jeremiebarber
2 Replies

2. Solaris

Install Solaris 10 Problem

Hi! I have tried to install Solaris 10 on my laptop for some time now i have tried a lot of things but i have never been lucky...please can someone of you help me.. I have a Acer Aspire 1350 AMD ATHLON XP-M 2800+ MEMORY: 256MB DDR SDRAM GRAPHICS CARD: VIA KM400 The screen goes black... (1 Reply)
Discussion started by: CreamHarry
1 Replies

3. Solaris

Install problem Solaris 10.1 6/06

Hi all! I'm trying to install Solaris 10.1 6/06 and got a problem under the install,after the first Grub screen the screen went black and all letters are seen as dots, i have installed Solaris 10 earlier and that goes without any problem. Are there any settings i can do to Grub under the first... (2 Replies)
Discussion started by: larsgk
2 Replies

4. Solaris

Problem after Install SUN solaris x86

after install solaris x86 on my computer success, but it can't boot. When the machine start, and i choose option 1 - default, it shows "W" on screen and system restart . Anyone can help me. My computer : dual core - 1gb ram - x86 (7 Replies)
Discussion started by: quan0509
7 Replies

5. Solaris

Problem of install rsync on Solaris 10

hi all, I have download latest version for rsync from rsync download web site. I trying install rsync tool to sun solaris 10 (SPARC M4000 server) and but get some error. Please see below: -bash-3.00$ ./configure configure.sh: Configuring rsync 3.0.6 checking build system type...... (3 Replies)
Discussion started by: Tlg13team
3 Replies

6. Solaris

Solaris 10 on Enterprise 4500 install problem

Good day, I am dummie on solaris and trying learning about Solaris, so no much experience, this is my problem, I got enterprise 4500 SUN Sparc hardware, has 2 internal SCSI HD, when I try to install Solaris 10 says that "no disk found" at middle of installation, I already change the HD and the... (3 Replies)
Discussion started by: edgargarcia_y2k
3 Replies

7. Solaris

nagios-plugins-1.4.15 Install Problem on Solaris 10

I am trying to install nagios-plugins-1.4.15 on a Solaris 10 box and when I run the ./configure script I get this error: checking for grep that handles long lines and -e... configure: error: no acceptable grep could be found in... (2 Replies)
Discussion started by: thatwaseasy
2 Replies

8. Solaris

Solaris 10 install dvd drive boots, but not recoginized by install process

I am trying to build a Sun Ultra 10 with solaris 10. This computer is one of a collection that was donated to the non-profic company I work for. All media was wiped before I recieved them, so I am starting from stratch. I downloaded the Solaris 10 ISO and burned a DVD. The computer came with a... (4 Replies)
Discussion started by: gwillhight
4 Replies

9. Solaris

Solaris install problem

Hi does someone have a solaris 10 install problem on a sunfire v880? it keeps hanging (8 Replies)
Discussion started by: simplextibi
8 Replies

10. Solaris

No way to install a flar archive of Solaris 10 to Solaris 11.4 zone

I want to migrate a solaris 10 os to solaris 11.4 zone. I did this a)Collect some data like id sysid,disks,ip,etc..on solaris10 OK b)Create this file.cfg with this command on solaris 10 zonep2vchk -c > /migration/sol10.cfg OK c)Create the archive flash on Solaris10 (1 Reply)
Discussion started by: Linusolaradm1
1 Replies
HD(4)							     Linux Programmer's Manual							     HD(4)

NAME
hd - MFM/IDE hard disk devices DESCRIPTION
The hd* devices are block devices to access MFM/IDE hard disk drives in raw mode. The master drive on the primary IDE controller (major device number 3) is hda; the slave drive is hdb. The master drive of the second controller (major device number 22) is hdc and the slave hdd. General IDE block device names have the form hdX, or hdXP, where X is a letter denoting the physical drive, and P is a number denoting the partition on that physical drive. The first form, hdX, is used to address the whole drive. Partition numbers are assigned in the order the partitions are discovered, and only nonempty, nonextended partitions get a number. However, partition numbers 1-4 are given to the four partitions described in the MBR (the "primary" partitions), regardless of whether they are unused or extended. Thus, the first logi- cal partition will be hdX5. Both DOS-type partitioning and BSD-disklabel partitioning are supported. You can have at most 63 partitions on an IDE disk. For example, /dev/hda refers to all of the first IDE drive in the system; and /dev/hdb3 refers to the third DOS "primary" partition on the second one. They are typically created by: mknod -m 660 /dev/hda b 3 0 mknod -m 660 /dev/hda1 b 3 1 mknod -m 660 /dev/hda2 b 3 2 ... mknod -m 660 /dev/hda8 b 3 8 mknod -m 660 /dev/hdb b 3 64 mknod -m 660 /dev/hdb1 b 3 65 mknod -m 660 /dev/hdb2 b 3 66 ... mknod -m 660 /dev/hdb8 b 3 72 chown root:disk /dev/hd* FILES
/dev/hd* SEE ALSO
chown(1), mknod(1), sd(4), mount(8) 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 1992-12-17 HD(4)
All times are GMT -4. The time now is 02:49 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy