Sponsored Content
Full Discussion: Powervm ivm vios
Operating Systems AIX Powervm ivm vios Post 303032904 by bakunin on Tuesday 26th of March 2019 12:47:58 PM
Old 03-26-2019
Quote:
Originally Posted by filosophizer
how can one solve "mismatch between the LPAR type and the booting image"
hmm, just to make sure i understand the situation correctly:

- you have (POWER6) managed system
- you want to boot from an internal disk
- on the disk a VIOS image is installed

On the case of 3 "yes"es: you need to install the LPAR anyway, so boot it via NIM methods (mksysb+spot). You can the select the disk to install to and this disk will be wiped first, so the VIOS image will go away. Only then (after installation) you can boot from the disk.

I hope this helps.

bakunin
 

10 More Discussions You Might Find Interesting

1. AIX

PowerVM Express and IVM limitations

When using PowerVM Express and IVM (no HMC) on a Power6 P520 , can I configure 2 LPARs in addition to a VIO server, or does the VIO Server count as one of the two LPAR's that PowerVM Express allows? (1 Reply)
Discussion started by: JodyTek
1 Replies

2. AIX

VIOS IVM unavailable - how do I restart it?

Hi everyone, Sorry if this post is in the wrong place. I searched the forums for "IVM" and it turned up no results. Hopefully someone knows about this. My dilemma is that I have multiple IBM JS12 Express blades in our blade center, each running VIOS 2.1.0.10-FP-20.1 and hosting a couple LPARs. Out... (2 Replies)
Discussion started by: need2bageek
2 Replies

3. AIX

PowerVM HA questions

hi guys, i need to develop following setup for a customer: high availability oracle database on aix7 and linux in 2 different LPAR using dual ps700 blande a ds3400 and HMC. the question is, it is possible to have automatic vioc failover(aix,linux) when for example 1 vios goes down? in... (6 Replies)
Discussion started by: gullio23
6 Replies

4. AIX

Need IBM PowerVM

Hi all please give me a link for IBM PowerVM (4 Replies)
Discussion started by: babinlonston
4 Replies

5. AIX

VIOS IP address - separate vlan for vios servers ?

Hello, Lets say for simplicity that I do not use any vlan config inside my server - one lpar group use hea physical port1, another group hea physical port2. Physical port1 configured as vlan1 on external switch, physical port2 as vlan2. What is the common practice - should I isolate my vios... (0 Replies)
Discussion started by: vilius
0 Replies

6. AIX

IBM VIOS POWERVM IVM error

Hi, When I try to login on my vios ivm website http://vios through the browser -- all three of them -- firefox , chrome , Internet Explorer , i get this error http://vioserver/j_security_check I have java installed on the machine from where i am trying to open up the IVM/VIOS webpage. I... (2 Replies)
Discussion started by: filosophizer
2 Replies

7. AIX

IBM Power Pseries Open Firmware boot / VIOS POWERVM VET CODE

Hello, I installed PowerVM IVM Virtual I/O on P-550 but later found out that the machine isn't activated for CoD VET code for virtualization. So when booted , it goes into OPEN Firmware I/O Hosting requires a hosting partition boot not permitted exit called > ok Panel shows > IO... (3 Replies)
Discussion started by: filosophizer
3 Replies

8. AIX

CD-ROM issue with PowerVM IVM VIOS

I am facing problems in moving CD-ROM from one lpar to another. CDROM can be seen on the POWERVM (IVM) server , but through the web-access if I move it ( assign it ) to LPAR it will be assigned. I run cfgmgr , and the cdrom does not show up in the LPAR. I firmly believe this is the reason why I... (2 Replies)
Discussion started by: filosophizer
2 Replies

9. AIX

AIX VIOS IVM Ethernet problem

Hi All, I have a p520 box running 3 LPARs, 1 x VIOS, 1 x AIX 6.1 and 1 x AIX 7.1 and no HMC, all configuration is performed via VIOS/IVM Until recently the box did not have the AIX7.1 LPAR and everything was fine with the box. We needed to use AIX 7.1 for a new project, so I created a... (11 Replies)
Discussion started by: KevB
11 Replies

10. AIX

Revisiting IBM PowerVM VIOS AIX

coming from this thread: https://www.unix.com/aix/211107-ibm-power-pseries-open-firmware-boot-vios-powervm-vet-code.html PowerVM, formerly known as Advanced Power Virtualization (APV), is a chargeable feature of IBM POWER5, POWER6, POWER7, POWER8, and POWER9 servers and is required for support... (0 Replies)
Discussion started by: filosophizer
0 Replies
IVMCONFIGACTIONS.XML(5) 					File Formats Manual					   IVMCONFIGACTIONS.XML(5)

NAME
IvmConfigActions.xml - actions to be performed by ivman(8) DESCRIPTION
IvmConfigActions.xml specifies which actions are to be performed by ivman(8) when a device is inserted/attached to the system, where an action is defined as mounting the device or executing a program. IvmConfigActions.xml is parsed as an XML file. The general form of the file is: <?xml version="1.0" encoding="UTF-8"?> <ivm:ActionsConfig version="0.2" xmlns:ivm="http://www.eikke.com/ivm"> <ivm:Match name="matchname" value="matchvalue"> <ivm:Option name="optionname1" value="optionvalue1" /> <ivm:Option name="optionname2" value="optionvalue2" /> ... </ivm:Match> ... </ivm:ActionsConfig> Each time a device is added to the system, this file is parsed. If, for a Match element, matchname=matchvalue is true for the new device, then the Match or Option elements within that Match element are parsed. A Match element can have any of the following names: ivm.mountable Whether or not HAL specifies that a device can and should be mounted. Must be "true" or "false". hal.anything The string in place of "anything" will be taken as the name of a HAL property string for the device, and the value of the prop- erty will be compared to the value given. Run 'lshal' to see a list of HAL properties which can be used here. * Match every device. Use with care! An Option element can have any of the following names: checkOnInit If set to 'true', IvmConfigActions.xml will be parsed when Ivman starts and rules will be applied to all devices currently attached to the system. This can be used to, for example, mount any removable devices attached to the system when Ivman starts. This option should be specified outside of any 'match' constructs. mount Whether or not to mount the device. Must be "true" or "false". If more than one value applies to a device, then the one clos- est to the end of the file will be used. exec A command to execute when the device or disc is inserted. The amount of commands per device is unlimited. execun A command to execute when the device or disc is removed. The amount of commands per device is unlimited. Note that HAL prop- erty substitution is limited for execun; since the device no longer exists when the command is executed, we cannot get informa- tion about it from HAL, therefore any substitution will occur with the property values at the time of device insertion (or mounting if Ivman mounted it), NOT removal. execdvd A command to execute when the device is inserted if the device is a volume containing DVD-format video. The amount of commands per device is unlimited. NOTE: execdvd is deprecated! A HAL property now exists to indicate whether or not a DVD contains video - volume.disc.is_videodvd . exec, execdvd and execun support substitution of HAL device properties. This is accomplished by surrounding the property name with $ sym- bols. For instance, if $hal.volume.mount_point$ is within a command, it will be replaced with the volume's mount point before execution. No character escaping is done in the substitution, but the characters ' and " are replaced with ?, so you can surround the substitution with quotes without fear. Remember that this is an XML file, which means that characters which have a special meaning in XML (entities) need to be escaped. Some characters which are popular in shell scripting (&, <, >) are among these special characters. As a quick reference, & becomes &amp; , < becomes &lt; , > becomes &gt; , ' becomes &apos; and " becomes &quot; . As many Matches can be nested as is desired, and as many Matches and Options can be placed within a Match as is desired. This, along with the ability to test HAL properties, makes Ivman quite flexible; see the examples below. EXAMPLES
<!-- autoplay video DVDs --> <ivm:Match name="hal.volume.disc.type" value="dvd_rom"> <ivm:Option name="execdvd" value="xine -f -g -D dvd:$hal.block.device$" /> </ivm:Match> <!-- autoplay audio CDs --> <ivm:Match name="hal.volume.disc.type" value="cd_rom"> <ivm:Match name="hal.volume.disc.has_audio" value="true"> <ivm:Match name="hal.volume.disc.has_data" value="false"> <ivm:Option name="exec" value="cdplay -d $hal.block.device$ -c" /> </ivm:Match> </ivm:Match> </ivm:Match> <!-- blacklist some partitions we don't want mounted --> <ivm:Match name="hal.block.device" value="/dev/hda5"> <ivm:Option name="mount" value="false" /> </ivm:Match> <ivm:Match name="hal.block.device" value="/dev/hda2"> <ivm:Option name="mount" value="false" /> </ivm:Match> Many more examples are given in the default file provided with Ivman. SEE ALSO
ivman(8), IvmConfigBase.xml(5), IvmConfigProperties.xml(5), IvmConfigConditions.xml(5) 12 May 2005 IVMCONFIGACTIONS.XML(5)
All times are GMT -4. The time now is 10:25 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy