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.
'UNIX > ubuntu' 카테고리의 다른 글
[스크랩] 우분투 14.04 LTS 서버 설치하기 (0) | 2017.09.15 |
---|---|
우분투 12.04 iptables 설정 저장/적용 (0) | 2013.11.13 |
우분투에서 iptables 사용법 (0) | 2013.11.13 |
우분투 secure 로그 messages 로그 (0) | 2013.11.13 |
HBA 카드 정보 확인 (0) | 2013.07.16 |