How to install UNIX 5.0.7 on an ML 330 G3 server with IDE array instead of scsi bus


 
Thread Tools Search this Thread
Operating Systems SCO How to install UNIX 5.0.7 on an ML 330 G3 server with IDE array instead of scsi bus
# 1  
Old 01-31-2008
How to install UNIX 5.0.7 on an ML 330 G3 server with IDE array instead of scsi bus

My boss get a Proliant ML 330 G3 server with IDE ARRAY Bus, I try to isntall UNIX 5.0.7 on it but i't didn't detect as a hdd, I try to configure it as single logical drive and many combinations but UNIX always says taht there is no hdd, does anyone knows how to?? the boss of course won't say it makes a wrong choice, help me please
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Scsi bus scan

Hi, I have presented a LUN to a VM (RHEL 5.8) and need to scan the scsi bus in order for the OS to pick it up. On FC attached hosts I can: echo "1" > /sys/class/fc_host/host0/issue_lip echo "- - -" > /sys/class/scsi_host/host0/scan ....but this does not work on my vm. ... (3 Replies)
Discussion started by: Duffs22
3 Replies

2. UNIX for Dummies Questions & Answers

Install SCSI Jaz drive in Sparc Solaris

I recently got a Sun Sparc 10 Ultra with Solaris 10 installed on it. Now I'm trying to connect my SCSI Jaz drive to it. I moved my Adaptec AHA-2940U PCI SCSI card from my XP PC (where it was working OK) to the Sun and that's about as far as I got. I did a probe-scsi-all and got nothing back,... (0 Replies)
Discussion started by: Michele31416
0 Replies

3. BSD

How to rescan scsi bus without reboot on OpenBSD

Hello, My question as title, I don't know the exact command, anyone could tell me about it? Kevin (0 Replies)
Discussion started by: guixingyi
0 Replies

4. Solaris

SCSI Bus Reset

hey guys i got this in my logs what does this mean: (4 Replies)
Discussion started by: sbn
4 Replies

5. UNIX and Linux Applications

How to install Nagios on Unix server

Hi all, i have install nagios on my Linux Centos 5 server and i want to install the agent on unit server to monitor it. I can monitor a linux and windows servers but still looking for a article on how to intall nagios on Unix server. Thanx in advance (2 Replies)
Discussion started by: Tulz
2 Replies

6. UNIX for Dummies Questions & Answers

Not able to install Oracle Workgroup Server on SCO Unix 5.0.2 box

After having to replace a video card and having a corrupt root directory, I had to wipe out and reinstall my SCO OpenServer Enterprise System 5.0.2. because nothing would work for the root password. I am now trying to reinstall the Oracel Workgroup Server SCO v7.1.5.2 and it tells me I need to... (1 Reply)
Discussion started by: sheilaj1
1 Replies

7. UNIX for Dummies Questions & Answers

How to know what program is install on Unix server?

I would like to know how to check what program is install on the Unix system? like the add/remove inside the control panel can show what program installed. (4 Replies)
Discussion started by: zp523444
4 Replies

8. UNIX for Dummies Questions & Answers

SCSI bus is hung

Anyone have any ideas what could be causing me to get the error "The SCSI bus is hung. Perhaps an external device is turned off"? This is occuring when I try to boot off of my external CDROM. I have tried this CDROM on 3 different systems, tried different SCSI cables, and different terminators... (2 Replies)
Discussion started by: saucierm
2 Replies

9. UNIX for Dummies Questions & Answers

The difference between SCSI & IDE Hard disks.

Hello agian ! What is the difference between SCSI and IDE hard disks ? I have Intel PC and when i check i have Generic IDE TYPE DISK0 is IDE hard disk is ok for Solrais ? or should i buy the SCSI hard disk ? Thanks Abid Malik (3 Replies)
Discussion started by: abidmalik
3 Replies

10. Filesystems, Disks and Memory

Change rootdev from SCSI to IDE

Hi, I have been attempting for the last few hours to change the root device to IDE from and SCSI adapter ... after modifying who knows how many files... (system still runs as long as the SCSI controller is present) ... as soon as I take it out, it gives me a panic, saying that rootdev cannot be... (3 Replies)
Discussion started by: pasha
3 Replies
Login or Register to Ask a Question
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)