Solaris 10で1つの大域ゾーンと2つの非大域ゾーンを構成する方法は?

Solaris 10で1つの大域ゾーンと2つの非大域ゾーンを構成する方法は?

SUN M3000サーバーがあります。 2つの非大域ゾーン(zu9dmsとzu10dms)を持つ大域ゾーン(z1dms)で構成しようとしています。構成方法を教えてください。

ベストアンサー1

通常の Solaris インスタンスは大域ゾーンを提供します。

ゾーンを使用して構成zonecfgおよびzoneadmインストールできます。

一般的な領域の作成は、次の方法で行われます。

#configure the zone
zonecfg -z zu9dms
create
#make some modifications if you want an alternate zonepath or autoboot for example
verify
exit

ゾーンを含むディレクトリの所有者とモードはroot非常に重要です。700

#install the zone
zoneadm -z zu9dms install

#boot the zone and enter the console of the zone
zoneadm -z zu9dms boot; zlogin -C zu9dms

#wait until SMF is configured and follow the system configuration assistant

man詳細については、次のページをお読みくださいman zonecfgman zoneadm

おすすめ記事