Dell Optiplex GXa SolarisTM 9  x86  12/02

パッケージ フリーウェア

戻る
いくつかのフリーウェアはパッケージ化されていて、インストールが楽にできるようになっているので利用する。 但し、パッケージ化はソースがリリースされてからかなり時間が経ってからリリースされるので、セキュアな ソフトウェアはパッケージに頼らずにソースからコンパイル・インストールするべきだ。 OSインストール後、すぐにパッケージからインストールするべき(必要だったり、便利だったり)フリーウェアは
bison-1.875d-sol9-intel-local flex-2.5.4a-sol9-intel-local gcc-3.4.2-sol9-intel-local gzip-1.3.5-sol9-intel-local libgcc-3.4.1-sol9-intel-local m4-1.4.2-sol9-intel-local make-3.80-sol9-intel-local popt-1.7-sol9-intel-local tar-1.15.1-sol9-intel-local wget-1.9.1-sol9-intel-local
などが挙げられる。 ダウンロード元
httpの一覧は http://www.sunfreeware.com/ ftpで直接段ロードする場合は、 ftp://ftp.sunfreeware.com/pub/freeware/intel/9/ 国内ミラーサイトは、 http://sunsite.sut.ac.jp/pub/sun-info/Solaris/intel/9/
準 備:
パッケージは標準では/var/spool/pkg内に入れて作業するようになっているが、ここで は新規ディレクトリ/opt/pkg/を作成し、その中で作業する。 SuperUserになる。
$ su password:
作業ディレクトリに移動する。
# cd /opt/pkg/
wget:
ftpで上記サーバーにアクセスする。
# ftp ftp.sunfreeware.com Connected to sunfreeware.com. 220 ftp.sunfreeware.com FTP server ready. Name (ftp.sunfreeware.com:you): anonymous 331 Guest login ok, send your complete e-mail address as password. Password:you@domain1.com 230- 230-============================================== 230-This is the ftp.sunfreeware.com ftp server 230- 230-If you have not already done so, make sure 230-you have read the Downloading/Installation, 230-FAQ, and Disclaimer links on 230-http://sunfreeware.com. 230- 230-This is a restricted access system. All 230-transfers are logged. If you disagree 230-with this practice, log off now. 230- 230-Questions go to Steve Christensen at 230-the address given on sunfreeware.com. 230-============================================== 230- 230- 230 Guest login ok, access restrictions apply. Remote system type is UNIX. Using binary mode to transfer files. ftp> cd pub/freeware/intel/9 250 CWD command successful. ftp> get wget-1.9.1-sol9-intel-local.gz 200 PORT command successful. 150 Opening BINARY mode data connection for wget-1.9.1-sol9-intel-local.gz (541202 bytes). ################################## 226 Transfer complete. local: wget-1.9.1-sol9-intel-local.gz remote: wget-1.9.1-sol8-intel-local.gz 541202 bytes received in 2 seconds (850.74 Kbytes/s) ftp> bye 221-You have transferred 541202 bytes in 1 files. 221-Total traffic for this session was 542243 bytes in 1 transfers. 221-Thank you for using the FTP service on ftp.sunfreeware.com. 221 Goodbye.
ダインロードしたパッケージを解凍する。
# gunzip wget-1.9.1-sol9-intel-local.gz
インストールする。
# pkgadd -d ./wget-1.9.1-sol9-intel-local
あとは指示に従ってEnterを押していくだけ。
他のパッケージ:
以下はgccを例にとった場合。他のパッケージも同じ要領でインストールする。 ダウンロードする。
# wget http://sunsite.sut.ac.jp/pub/sun-info/Solaris/intel/9/gcc-3.4.2-sol9-intel-local.gz
ダウンロードしたアーカイブを解凍する。
# gunzip gcc-3.4.2-sol9-intel-local.gz
インストールする。
# pkgadd -d ./gcc-3.4.2-sol9-intel-local
あとは指示に従ってEnterを押していくだけ。