UNIX/ubuntu

우분투에서 rpm 설치하기

99iberty 2013. 11. 28. 13:59

 

http://kevinx64.tistory.com/312

 

 

우분투에서는 우분투용 설치 포맷인 deb(Debian package) 파일을 지원해준다. 따라서, Alien을 이용해서 rpm파일을 deb파일로 변환하여 설치하거나, Alien을 이용해서 rpm파일을 바로 설치할 수 있다. (sudo 명령어를 붙혀줘야지 Alien 실행이 가능하다. root 계정이라면 생략해도 무방하다.)

[Alien 설치하기]
sudo apt-get install alien

[rpm 파일 바로 설치하기]
sudo alien -i package_file.rpm

[deb 파일로 변환하여 설치하기]
sudo alien package_file.rpm (변환)
sudo dpkg -i package_file.deb (설치)

 

 

alien 옵션 중에서...

 

       -k, --keep-version
           By default, alien adds one to the minor version number of each package it converts. If this option is given, alien will not do this.

       -v, --verbose
           Be verbose: Display each command alien runs in the process of converting a package.

 

       -c, --scripts
           Try to convert the scripts that are meant to be run when the package is installed and removed. Use this with caution, because these scripts might be designed to work on a system
           unlike your own, and could cause problems. It is recommended that you examine the scripts by hand and check to see what they do before using this option.