INS-13001 Oracle 11g client install error

Operating System: win10-64

Oracle client version: win64_11gR2_client.zip

Installation error prompt:

 

The reason is 11g version of the operating system compatibility does not contain win10, you need to add manual

Add the following in ./stage/cvu/cvu_prerep.xml

 

          <OPERATING_SYSTEM RELEASE="6.2">
                  <VERSION VALUE="3"/>
                  <ARCHITECTURE VALUE="64-bit"/>
                  <NAME VALUE="Windows 10"/>
                  <ENV_VAR_LIST>
                    <ENV_VAR NAME="PATH" MAX_LENGTH="1023" />
                  </ENV_VAR_LIST>
          </OPERATING_SYSTEM>

Re-run the installation program, will have the following error:

 

Also you need to add some content above the consent of the ./stage/cvu/oracle.client_InstantClient.xml

          <OPERATING_SYSTEM RELEASE="6.2">
                  <VERSION VALUE="3"/>
                  <ARCHITECTURE VALUE="64-bit"/>
                  <NAME VALUE="Windows 10"/>
                  <ENV_VAR_LIST>
                    <ENV_VAR NAME="PATH" MAX_LENGTH="1023" />
                  </ENV_VAR_LIST>
          </OPERATING_SYSTEM>

After saving, re-install it!

Guess you like

Origin www.cnblogs.com/tonnytangy/p/12153098.html