Oracle® Solaris 11.2 시스템 설치

인쇄 보기 종료

업데이트 날짜: 2014년 7월
 
 

전역 영역 AI 매니페스트에서 비전역 영역 지정

클라이언트 시스템에 대한 AI 매니페스트의 configuration 요소를 사용하여 비전역 영역을 지정합니다. configuration 요소의 name 속성을 사용하여 영역 이름을 지정합니다. source 속성을 사용하여 영역에 대한 config 파일의 위치를 지정합니다. source 위치는 클라이언트가 설치 중 액세스할 수 있는 http:// 또는 file:// 위치일 수 있습니다.

다음 샘플 AI 매니페스트는 두 개의 비전역 영역을 지정합니다.

<!DOCTYPE auto_install SYSTEM "file:///usr/share/install/ai.dtd.1">
<auto_install>
  <ai_instance>
    <target>
      <logical>
        <zpool name="rpool" is_root="true">
          <filesystem name="export" mountpoint="/export"/>
          <filesystem name="export/home"/>
          <be name="solaris"/>
        </zpool>
      </logical>
    </target>
    <software type="IPS">
      <source>
        <publisher name="solaris">
          <origin name="http://pkg.oracle.com/solaris/release"/>
        </publisher>
      </source>
      <software_data action="install">
        <name>pkg:/entire@latest</name>
        <name>pkg:/group/system/solaris-large-server</name>
      </software_data>
    </software>

    <configuration type="zone" name="zone1" source="http://server/zone1/config"/>
    <configuration type="zone" name="zone2" source="file:///net/server/zone2/config"/>

  </ai_instance>
</auto_install>