Install the Oracle Times Error: Environment does not meet the requirements of the solution

Source: Internet
Author: User

I used to have this problem when I installed Oracle, and I didn't care much about it, so I modified the cvu_ in the CLIENT\STAGE\CVU directory. Prereq.xml file (add support for the current operating system) to solve the problem, but also did not make some notes, but later some classmates asked this question, for this, I put this issue to record down, for later have this kind of question friend reference:

1, first find the CLIENT\STAGE\CVU directory of Cvu_prereq.xml, some of the key code is as follows (before modification, take Win8 as an example, before the modification is not supported WIN8 system related information):

<?xml version= "1.0"?>
<SYSTEM>
<MEMORY>
<physical_memory value= "unit=" MB "severity=" ignorable "/>
<!--<available_memory value= "unit=" MB "/>--
</MEMORY>
<SPACE>
<loc var= "Temp_area" temp= "true" size= "" unit= "MB" severity= "ignorable"/>
</SPACE>
</SYSTEM>
<CERTIFIED_SYSTEMS>
<operating_system release= "5.0" >
<version value= "3"/>
<architecture value= "32-bit"/>
<name value= "Windows2000"/>
<ENV_VAR_LIST>
<env_var name= "PATH" max_length= "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<operating_system release= "5.1" >
<version value= "3"/>
<architecture value= "32-bit"/>
<name value= "windowsxp"/>
<ENV_VAR_LIST>
<env_var name= "PATH" max_length= "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<operating_system release= "5.2" >
<version value= "3"/>
<architecture value= "32-bit"/>
<name value= "Windows Server 2003"/>
<ENV_VAR_LIST>
<env_var name= "PATH" max_length= "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<operating_system release= "6.0" >
<version value= "3"/>
<architecture value= "32-bit"/>
<name value= "WindowsServer2008"/>
<ENV_VAR_LIST>
<env_var name= "PATH" max_length= "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<operating_system release= "6.0" >
<version value= "3"/>
<architecture value= "32-bit"/>
<name value= "WindowsVista"/>
<ENV_VAR_LIST>
<env_var name= "PATH" max_length= "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<operating_system release= "6.1" >
<version value= "3"/>
<architecture value= "32-bit"/>
<name value= "Windows 7"/>
<ENV_VAR_LIST>
<env_var name= "PATH" max_length= "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<!--here to add information about support for WIN8 systems--
</CERTIFIED_SYSTEMS>
<ORACLE_HOME>
<COMPATIBILITY_MATRIX>
<ALLOW>
<NEW_HOME/>
<comp name= "Oracle.server" atleast= "11.2.0.0.0" atmost= "11.2.9.9.9"/>
<comp name= "oracle.client" atleast= "11.2.0.0.0" atmost= "11.2.9.9.9"/>
</ALLOW>
<DISALLOW>
<comp name= "Oracle.server" atleast= "8.1.0.0.0" atmost= "10.2.9.9.9"/>
<comp name= "oracle.client" atleast= "8.1.0.0.0" atmost= "9.2.0.9.0"/>
<comp name= "Oracle.iappserver.iapptop" atleast= "9.0.2.0.0" atmost= "9.0.9.0.0"/>
<comp name= "Oracle.iappserver.infrastructure" atleast= "9.0.2.0.0" atmost= "9.0.9.0.0"/>
<comp name= "Oracle.iappserver.devcorner" atleast= "9.0.2.0.0" atmost= "9.0.9.0.0"/>
<comp name= "oracle.ids.toplevel.development" atleast= "9.0.0.0.0" atmost= "9.0.9.0.0"/>
<comp name= "Oracle.install.instcommon" atleast= "8.1.3.0.0" atmost= "9.2.9.9.9"/>
<comp name= "ORACLE.NETWORKING.NETCLT" atleast= "8.1.3.0.0" atmost= "9.2.0.9.0"/>
<ORCA_HOME/>
</DISALLOW>
</COMPATIBILITY_MATRIX>
</ORACLE_HOME>
</HOST>


2, in the designated place Add support WIN8 system information, the specific code is as follows (modified):

<?xml version= "1.0"?>
<SYSTEM>
<MEMORY>
<physical_memory value= "unit=" MB "severity=" ignorable "/>
<!--<available_memory value= "unit=" MB "/>--
</MEMORY>
<SPACE>
<loc var= "Temp_area" temp= "true" size= "" unit= "MB" severity= "ignorable"/>
</SPACE>
</SYSTEM>
<CERTIFIED_SYSTEMS>
<operating_system release= "5.0" >
<version value= "3"/>
<architecture value= "32-bit"/>
<name value= "Windows2000"/>
<ENV_VAR_LIST>
<env_var name= "PATH" max_length= "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<operating_system release= "5.1" >
<version value= "3"/>
<architecture value= "32-bit"/>
<name value= "windowsxp"/>
<ENV_VAR_LIST>
<env_var name= "PATH" max_length= "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<operating_system release= "5.2" >
<version value= "3"/>
<architecture value= "32-bit"/>
<name value= "Windows Server 2003"/>
<ENV_VAR_LIST>
<env_var name= "PATH" max_length= "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<operating_system release= "6.0" >
<version value= "3"/>
<architecture value= "32-bit"/>
<name value= "WindowsServer2008"/>
<ENV_VAR_LIST>
<env_var name= "PATH" max_length= "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<operating_system release= "6.0" >
<version value= "3"/>
<architecture value= "32-bit"/>
<name value= "WindowsVista"/>
<ENV_VAR_LIST>
<env_var name= "PATH" max_length= "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<operating_system release= "6.1" >
<version value= "3"/>
<architecture value= "32-bit"/>
<name value= "Windows 7"/>
<ENV_VAR_LIST>
<env_var name= "PATH" max_length= "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<operating_system release= "6.2" >
<version value= "3"/>
<architecture value= "64-bit"/>
<name value= "Windows 8"/>
<ENV_VAR_LIST>
<env_var name= "PATH" max_length= "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<operating_system release= "6.2" >
<version value= "3"/>
<architecture value= "32-bit"/>
<name value= "Windows 8"/>
<ENV_VAR_LIST>
<env_var name= "PATH" max_length= "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>


</CERTIFIED_SYSTEMS>
<ORACLE_HOME>
<COMPATIBILITY_MATRIX>
<ALLOW>
<NEW_HOME/>
<comp name= "Oracle.server" atleast= "11.2.0.0.0" atmost= "11.2.9.9.9"/>
<comp name= "oracle.client" atleast= "11.2.0.0.0" atmost= "11.2.9.9.9"/>
</ALLOW>
<DISALLOW>
<comp name= "Oracle.server" atleast= "8.1.0.0.0" atmost= "10.2.9.9.9"/>
<comp name= "oracle.client" atleast= "8.1.0.0.0" atmost= "9.2.0.9.0"/>
<comp name= "Oracle.iappserver.iapptop" atleast= "9.0.2.0.0" atmost= "9.0.9.0.0"/>
<comp name= "Oracle.iappserver.infrastructure" atleast= "9.0.2.0.0" atmost= "9.0.9.0.0"/>
<comp name= "Oracle.iappserver.devcorner" atleast= "9.0.2.0.0" atmost= "9.0.9.0.0"/>
<comp name= "oracle.ids.toplevel.development" atleast= "9.0.0.0.0" atmost= "9.0.9.0.0"/>
<comp name= "Oracle.install.instcommon" atleast= "8.1.3.0.0" atmost= "9.2.9.9.9"/>
<comp name= "ORACLE.NETWORKING.NETCLT" atleast= "8.1.3.0.0" atmost= "9.2.0.9.0"/>
<ORCA_HOME/>
</DISALLOW>
</COMPATIBILITY_MATRIX>
</ORACLE_HOME>
</HOST>

Install the Oracle Times Error: Environment does not meet the requirements of the solution

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.