Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

please ansewr the question

Status
Not open for further replies.

hraa

IS-IT--Management
Jul 23, 2007
60
LY
i have servser p5 and i/o drawer in p5 one cdrom and two partion how make cdrom available for two partion in p5
 
You can't do that!

the cdrom should be assigned to one partition at a time!

Ulness you want to nfs share the cdrom to the other partition!

You can use DLPAR though to move the cdrom from one partition to the other!

Regards,
Khalid
 
To use DLPAR to move te cdrom from one partition to another, it can't be assigned as required to none of the partitions.
 
thanks sir
I can give driving cdrom change to every partion but I want to drive cdrom working with all Partions,i donot working rebot to frist pation when cdrom take it.
 
Don't understand what you mean, but I'll try to help a bit.

First of all, don't assign the cdrom as required to none of the partitions, assign it as desired to all the partitions.

In the HMC, you've got 2 ethernet adapters, the "private" one that comunicates with the P5 service processor, and the "public" one. You must set "Partition Comunication" in the public adapter.

Now the first partition to boot will take the cdrom, and the other partitions won't have it, but now you can move the cdrom WITHOU REBOOTING.

In the partition that holds the cdrom, you must identify the pci parent of the cdrom, like this:
Code:
      lsdev -l cd0 -F parent
This will show you the first parent of the cdrom, it can be ide (internal cdrom) or scsi (external scsi attached).
Now you have to find the parent of this device. If it showed ide0 (for example), you have to do:
Code:
      lsdev -l ide0 -F parent
And if it showed scsi1, you must do this:
Code:
      lsdev -l scsi1 -F parent

This will show you the next parent, and you have to do this until you find a pci device. For example:
Code:
# lsdev -l cd0 -F parent
scsi1
# lsdev -l scsi0 -F parent
sisscsia0
# lsdev -l sisscsia0 -F parent
pci7
Now you must remove this pci device, and all its children device:
Code:
# rmdev -l pci7 -R
cd0 Defined
scsi1 Defined
scsi2 Defined
sisscsia0 Defined
pci7 Defined
Now from the HMC you can move the cdrom from this partition to another with Dynamic LPAR (DLPAR).
Once you have moved it, in the second partition you must do a cfgmgr to detect and configure the cdrom.

Not sure if this is what you are looking for. Anyway, I suggest you to look for some redbooks on P5 and LPAR.
 
i am sorry for noise
for aberge sir
i want to use cdrom from two dynamic partions in server in same time.
i cane or i can't by ex clarification
thanks sir
 
Well, you can't use one cdrom for two LPARs at the same time (only is NFS)
 
simplest way for your problem , is copying content of cdroms to an nfs shared volume, available to all your lpars.Then you never will have to use the cd,and all lpars will be able to access the sources.

rgds,

R.
 
I can available every partition cdrom for solution the problem for me
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top