아름프로의 Agile, DevOps, 그리고 일상 이야기

유분투에 Rational 제품 설치 본문

추억의 책장/IBM Rational

유분투에 Rational 제품 설치

아름프로 2010. 12. 8. 20:17
Multiplatform으로 되어 있는 파일을 다운 받으면 launchpad.sh를 볼 수 있다.
이 파일을 실행하면 windows와 동일한 환경의 설치 화면을 볼 수 있다.

설치 후, 또는 설치 전 /bin/sh 의 링크를 dash에서 bash로 변경해야 WAS의 profile을 생성할 수 있다.

> sudo rm -f /bin/sh
> sudo ln -s /bin/bash /bin/sh

만약, 64bit ubuntu에 설치 하는 경우는 launchpad에서 지원하지 않는 아키텍처라는 메시지를 볼 수 있다.
이때는 launchpad.sh 파일이 있는 폴더에에서 launchpad/SetArchitecture.sh 를 수정하면 설치할 수 있다.
-----------------------------------------------------------------------------------------------------------------------
       #!/bin/sh
       # Licensed Materials - Property of IBM
       # 5648-F10 (C) Copyright International Business Machines Corp. 2005
       # All Rights Reserved
       # US Government Users Restricted Rights - Use, duplication or disclosure
       # restricted by GSA ADP Schedule Contract with IBM Corp.
       LaunchPadArch=""
       case "`uname`" in
       Linux)  case "`file -L /bin/sh`" in
                      *Intel*80386*) LaunchPadArch=x86;;
                      *IA-64*) LaunchPadArch=IA64;;
                      *AMD*64*) LaunchPadArch=AMD64;;
위의 내용 다음에 아래의 한줄을 추가 하며 됨.
                 *x86*64*) LaunchPadArch=AMD64;;
-----------------------------------------------------------------------------------------------------------------------