SHOEISHA iD

パスワードを忘れた場合はこちら

※旧SEメンバーシップ会員の方は、同じ登録情報(メールアドレス&パスワード)でログインいただけます

CodeZine編集部では、現場で活躍するデベロッパーをスターにするためのカンファレンス「Developers Summit」や、エンジニアの生きざまをブーストするためのイベント「Developers Boost」など、さまざまなカンファレンスを企画・運営しています。

'); googletag.cmd.push(function() { googletag.pubads().addEventListener('slotRenderEnded', function(e) { var ad_id = e.slot.getSlotElementId(); if (ad_id == 'div-gpt-ad-1659428980688-0') { var ad = $('#'+ad_id).find('iframe'); if ($(ad).width() == 728) { var ww = $(window).width(); ww = ww*0.90; var style = document.createElement("style"); document.head.appendChild( style ); var sheet = style.sheet; sheet.insertRule( "#div-gpt-ad-1659428980688-0 iframe {-moz-transform: scale("+ww/728+","+ww/728+");-moz-transform-origin: 0 0;-webkit-transform: scale("+ww/728+","+ww/728+");-webkit-transform-origin: 0 0;-o-transform: scale("+ww/728+","+ww/728+");-o-transform-origin: 0 0;-ms-transform: scale("+ww/728+","+ww/728+");-ms-transform-origin: 0 0;}", 0 ); sheet.insertRule( "#div-gpt-ad-1659428980688-0 div{ height:"+(90*ww/728)+"px;width:"+728+"px;}", 0 ); } else { if ($(window).width() < 340) { var ww = $(window).width(); ww = ww*0.875; var style = document.createElement("style"); document.head.appendChild( style ); var sheet = style.sheet; sheet.insertRule( "#div-gpt-ad-1659428980688-0 iframe {-moz-transform: scale("+ww/320+","+ww/320+");-moz-transform-origin: 0 0;-webkit-transform: scale("+ww/320+","+ww/320+");-webkit-transform-origin: 0 0;-o-transform: scale("+ww/320+","+ww/320+");-o-transform-origin: 0 0;-ms-transform: scale("+ww/320+","+ww/320+");-ms-transform-origin: 0 0;}", 0 ); sheet.insertRule( "#div-gpt-ad-1659428980688-0 div{ height:"+(180*ww/320)+"px;width:"+320+"px;}", 0 ); } } } }); }); } else { document.write('
'); document.write('
'); }
UNIXコマンド辞典

pkgadd

Solarisでパッケージをインストールする

対応OS: solaris

2015/05/20 08:00

pkgadd [-n] [-d DEVICE] PKGNAME

 pkgaddコマンドは、パッケージをインストールします。Solarisでのみ使用可能です。

オプション
① -n
Solarisでのパッケージのインストールは、対話形式で行われます。しかし、このオプションを指定すると対話形式で入力する値に、すべてデフォルトのものを適用したとして処理を継続します。
② -d DEVICE
パッケージファイルの格納先を「DEVICE」で指定します。省略時には、「/var/spool/pkg」に格納します。
引数
① PKGNAME
インストールするパッケージ名を指定します。
パッケージをインストールする
# pkgadd -n SUNWbash 
#
パッケージファイルの格納先を指定してインストールする
# cd /opt/pkg 
# ls
SUNWgzip SUNWjman SUNWzsh SUNWzshS
パッケージファイル
# pkgadd -d /opt/pkg

The following packages are available:
1 SUNWgzip The GNU Zip (gzip) compression utility
(i386) 11.9.0,REV=2002.03.02.00.30
2 SUNWjman Japanese localization specific English manual pages
(i386) 1.2,REV=2002.01.31.09.18
3 SUNWzsh Z shell (zsh)
(i386) 11.9.0,REV=2002.03.02.00.30
4 SUNWzshS Source for the Z shell (zsh)
(i386) 11.9.0,REV=2002.03.02.00.30
ディレクトリ「/opt/pkg」の配下にあるパッケージの一覧を表示

Select package(s) you wish to process (or 'all' to process
all packages). (default: all) [?,??,q]: 2
インストールするパッケージを選択
ここでは「2」の「SUNWjman」を選択

Processing package instance from

Japanese localization specific English manual pages
(i386) 1.2,REV=2002.01.31.09.18
Copyright 2002 Sun Microsystems, Inc. All rights reserved.
Use is subject to license terms.

This appears to be an attempt to install the same architecture and
version of a package which is already installed. This installation
will attempt to overwrite this package.

Using > as the package base directory.
## Processing package information.
## Processing system information.
49 package pathnames are already properly installed.
## Verifying package dependencies.
## Verifying disk space requirements.
## Checking for conflicts with packages already installed.
## Checking for setuid/setgid programs.

This package contains scripts which will be executed with super-user
permission during the process of installing this package.

Do you want to continue with the installation of [y,n,?] y
実際にインストールを行う場合は「y」、インストールを中止する場合は「n」を指定

Installing Japanese localization specific English manual pages as

## Installing part 1 of 1.

Installation of was successful.

The following packages are available:

1 SUNWgzip The GNU Zip (gzip) compression utility
(i386) 11.9.0,REV=2002.03.02.00.30
2 SUNWjman Japanese localization specific English manual pages
(i386) 1.2,REV=2002.01.31.09.18
3 SUNWzsh Z shell (zsh)
(i386) 11.9.0,REV=2002.03.02.00.30
4 SUNWzshS Source for the Z shell (zsh)
(i386) 11.9.0,REV=2002.03.02.00.30

Select package(s) you wish to process (or 'all' to process
all packages). (default: all) [?,??,q]: q
さらにインストールを続ける場合は、インストールするパッケージの番号を選択。インストールを終了する場合は「q」を選択
#

関連タグ

UNIXコマンド辞典トップページに戻る

本コンテンツは「UNIXコマンド辞典 ビギナー編」(2003年)を元にWeb用に再編集したものです
All Contents copyright © 2003-2009 Odyssey Communications Inc., Shoeisha Co., Ltd.

開発者必携!VBAスキルを証明する資格「VBAエキスパート」

" ); }

イベント

CodeZine編集部では、現場で活躍するデベロッパーをスターにするためのカンファレンス「Developers Summit」や、エンジニアの生きざまをブーストするためのイベント「Developers Boost」など、さまざまなカンファレンスを企画・運営しています。

新規会員登録無料のご案内

メールバックナンバー

アクセスランキング

アクセスランキング