Oracle® Solaris 11.2 시스템 설치

인쇄 보기 종료

업데이트 날짜: 2014년 7월
 
 

비전역 영역 AI 매니페스트

이 비전역 영역 설치용 AI 매니페스트는 전역 영역 설치용 AI 매니페스트와 비슷합니다. AI 매니페스트 요소 및 속성에 대한 자세한 내용은 ai_manifest(4) 매뉴얼 페이지를 참조하십시오.

    다음 요소나 속성은 비전역 영역 AI 매니페스트에 사용하지 마십시오.

  • ai_instance 요소의 auto_reboot 속성

  • ai_instance 요소의 http_proxy 속성

  • target 요소의 disk 자식 요소

  • logical 요소의 noswap 속성

  • logical 요소의 nodump 속성

  • configuration 요소

target 요소의 logical 자식 요소만 비전역 영역 AI 매니페스트에 사용할 수 있습니다. logical 요소에서는 하나의 zpool 자식 요소만 지정할 수 있습니다.

zpool 요소에서 filesystembe 자식 요소만 비전역 영역 AI 매니페스트에 사용할 수 있습니다.

software 요소의 type 속성에 지원되는 유일한 값은 IPS이며, 이것이 기본값입니다.

예 12-1  기본 영역 AI 매니페스트

다음 파일은 비전역 영역의 기본 AI 매니페스트를 보여줍니다. 영역용 사용자 정의 AI 매니페스트를 제공하지 않으면 이 매니페스트가 사용됩니다. 이 매니페스트는 /usr/share/auto_install/manifest/zone_default.xml에서 사용할 수 있습니다.

target 섹션은 영역에 대한 ZFS 파일 시스템을 정의합니다. destination 섹션은 설치할 로켈을 지정합니다. software_data 섹션은 solaris-small-server 패키지 설치를 지정합니다. solaris-small-server 패키지는 대부분의 비전역 영역에 필요한 도구 및 장치 드라이버의 그룹 패키지입니다. solaris-small-server 그룹 패키지에 포함된 전체 패키지 목록을 보려면 Oracle Solaris 11.2의 소프트웨어 추가 및 업데이트 의 그룹 패키지의 설치 가능한 모든 패키지 나열에 설명된 대로 pkg contents 명령을 사용하십시오.

지정된 패키지 소스는 없습니다. 시스템 저장소에 대한 내용은 pkg.sysrepo(1M)를 참조하십시오.

<?xml version="1.0" encoding="UTF-8"?>
<!--

 Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.

-->
<!DOCTYPE auto_install SYSTEM "file:///usr/share/install/ai.dtd.1">

<auto_install>
    <ai_instance name="zone_default">
        <target>
            <logical>
                <zpool name="rpool">
                    <!--
                      Subsequent <filesystem> entries instruct an installer
                      to create following ZFS datasets:

                          <root_pool>/export         (mounted on /export)
                          <root_pool>/export/home    (mounted on /export/home)

                      Those datasets are part of standard environment
                      and should be always created.

                      In rare cases, if there is a need to deploy a zone
                      without these datasets, either comment out or remove
                      <filesystem> entries. In such scenario, it has to be also
                      assured that in case of non-interactive post-install
                      configuration, creation of initial user account is
                      disabled in related system configuration profile.
                      Otherwise the installed zone would fail to boot.
                    -->
                    <filesystem name="export" mountpoint="/export"/>
                    <filesystem name="export/home"/>
                    <be name="solaris">
                        <options>
                            <option name="compression" value="on"/>
                        </options>
                    </be>
                </zpool>
            </logical>
        </target>

        <software type="IPS">
            <destination>
                <image>
                    <!-- Specify locales to install -->
                    <facet set="false">facet.locale.*</facet>
                    <facet set="true">facet.locale.de</facet>
                    <facet set="true">facet.locale.de_DE</facet>
                    <facet set="true">facet.locale.en</facet>
                    <facet set="true">facet.locale.en_US</facet>
                    <facet set="true">facet.locale.es</facet>
                    <facet set="true">facet.locale.es_ES</facet>
                    <facet set="true">facet.locale.fr</facet>
                    <facet set="true">facet.locale.fr_FR</facet>
                    <facet set="true">facet.locale.it</facet>
                    <facet set="true">facet.locale.it_IT</facet>
                    <facet set="true">facet.locale.ja</facet>
                    <facet set="true">facet.locale.ja_*</facet>
                    <facet set="true">facet.locale.ko</facet>
                    <facet set="true">facet.locale.ko_*</facet> 
                    <facet set="true">facet.locale.pt</facet>
                    <facet set="true">facet.locale.pt_BR</facet>
                    <facet set="true">facet.locale.zh</facet>
                    <facet set="true">facet.locale.zh_CN</facet>
                    <facet set="true">facet.locale.zh_TW</facet>
                </image>
            </destination>
            <software_data action="install">
                <name>pkg:/group/system/solaris-small-server</name>
            </software_data>
        </software>
    </ai_instance>
</auto_install>