DATA 전문가로 가는 길

[ Perl ] Solaris9 - Perl 업그레이드 방법 본문

Programming/Perl

[ Perl ] Solaris9 - Perl 업그레이드 방법

EstenPark 2010. 12. 17. 17:33

작성자 : 박상수
작성일자 : 2010.12.18
작업환경 : VMware7 [ Solaris9 ]


1. Package Download

[설명] SUNFreeWare 에서 다운받습니다.




2. Package Delete

[설명] Perl 관련 패키지를 모두 제거 하세요.
[root@estenpark:/tmp]
# pkginfo |grep Perl

[root@estenpark:/tmp]
# pkgrm [패키지명]


3. Package Delete

[설명] 패키지 설치 합니다.
[root@estenpark:/tmp]
# gunzip -d perl-5.8.8-sol9-x86-local.gz
[root@estenpark:/tmp]
# pkgadd -d perl-5.8.8-sol9-x86-local

[설명] path 를 환경 변수에 넣어 줍니다.
[root@estenpark:/tmp]
# vi ~/.bash_profile
export PATH=$PATH:/usr/local/bin

[설명] Perl 버전을 확인 합니다.
[root@estenpark:/]
# perl -v

This is perl, v5.8.8 built for i86pc-solaris
Copyright 1987-2006, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.

Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl".  If you have access to the
Internet, point your browser at http://www.perl.org/, the Perl Home Page.



Comments