♧ dpkg와 APT는 오랫동안 사용되어 온 훌륭한 도구지만, 이들 도구는 여러 측면에서
미묘한 차이를 가지고 있기 때문에 제대로 사용하기 위해서는 상당한 이해가 요구된다.
aptitude 프로그램은 curses 기반의 커맨드라인 툴로 충분히 유연하면서도,
주요 패키지 작업 과정 (패키지 설치나 업그레이드 전에 apt-get update를 실행하는 것과 같은)
을 자동화하여 가능한 쉽게 작업할 수 있도록 해준다.
이러한 이유로 가능하다면 커맨드라인에서는 aptitude 명령어를 사용할 것을 권장.
▶ aptitude의 일반적 기능
aptitude 명령어 | 설 명 |
sudo aptitude | curses 인터페이스로 시작. <Ctrl + t>를 사용하면 메뉴에 접근할 수 있으며 q 키는 프로그램을 종료. |
aptitude help | aptitude 명령어의 도움말을 출력. |
aptitude search <keyword> | 주어진 키워드와 일치하는 패키지들을 보여줌. |
sudo aptitude update | APT 리포지토리들로부터 사용 가능한 패키지를 업데이트 한다. |
sudo aptitude upgrade | 모든 패키지를 최신 버전으로 업그레이드 한다. |
aptitude show <package> | 패키지의 설치여부에 관계없이 주어진 패키지에 대한 정보를 보여줌. |
sudo aptitude download <package> | 주어진 패키지를 설치하지 않고 다운로드만 받는다. |
sudo aptitude clean | /var/cache/apt/archives 디렉토리에 다운로드된 .deb 파일들을 모두 삭제한다. |
sudo aptitude autoclean | /var/cache/apt/archives 디렉토리에 있는 오래된 .deb 파일들을 모두 삭제한다. 이 작업은 디스크 공간 낭비를 방지하면서 현재 캐시를 유지할 수 있는 방법이다. |
sudo aptitude install <package> | 주어진 패키지를 시스템에 설치. 특정 버전을 선택하거나 와일드카드 문자를 사용하기 위한 여러 옵션이 있다. |
sudo aptitude remove <package> | 시스템으로부터 주어진 패키지를 삭제한다. |
sudo patitude purge <package> | 패키지 제거와 환경 설정 파일도 함께 삭제. |
sudo aptitude dist-upgrade | 모든 패키지를 가장 최신 버전으로 업그레이드 하는데, 필요한 경우 패키지를 삭제하거나 추가적으로 설치. |
■ aptitude를 사용하여 패키지 관리
## 패키지 업데이트 & 업그레이드 ## $ sudo aptitude update …[중략]… $ sudo aptitude upgrade …[중략]…
## 패키지 검색 & 정보 질의 ## $ aptitude search minic p minicom - friendly menu driven serial communication program $ aptitude show minicom Package: minicom State: not installed Version: 2.5-1 …[중략]…
## 패키지를 설치하지 않고 다운로드만 받기 ## (해당 디렉토리에 다운로드 받은 파일 존재) $ sudo aptitude download minicom Get:1 http://ftp.daum.net/ubuntu/ natty/universe minicom i386 2.5-1 [285 kB] Fetched 285 kB in 0초 (3,149 kB/s) ## 다운로드 받은 패키지 설치 ## $ sudo aptitude install minicom The following NEW packages will be installed: lrzsz{a} minicom 0 packages upgraded, 2 newly installed, 0 to remove and 1 not upgraded. Need to get 99.9 kB/385 kB of archives. After unpacking 1,470 kB will be used. Do you want to continue? [Y/n/?] n
## 패키지 삭제 ## $ sudo aptitude remove minicom The following packages will be REMOVED: lrzsz{u} minicom 0 packages upgraded, 0 newly installed, 2 to remove and 1 not upgraded. Need to get 0 B of archives. After unpacking 1,470 kB will be freed. Do you want to continue? [Y/n/?] y (데이터베이스 읽는중 ...현재 170390개의 파일과 디렉터리가 설치되어 있습니다.) …[중략]… ## 패키지 캐시 삭제 ## (인스톨 설치시 패키지는 /var/cache/apt/archives에 저장) (오래된 패키지만 삭제 : sudo aptitude autoclean) $ ls aptitude_0.6.3-3.2ubuntu1_i386.deb lock libboost-iostreams1.42.0_1.42.0-4ubuntu2_i386.deb lrzsz_0.12.21-5_i386.deb libcwidget3_0.5.16-3ubuntu2_i386.deb minicom_2.5-1_i386.deb libsigc++-2.0-0c2a_2.2.4.2-1ubuntu1_i386.deb partial $ sudo aptitude clean $ ls lock partial
##### 유용한 옵션 조합 ##### /* -v : 더 많은 정보 제공 (md5sum …등) */ $ aptitude show -v minicom Package: minicom State: not installed …[중략]… Filename: pool/universe/m/minicom/minicom_2.5-1_i386.deb MD5sum: 497900daa7807ae0c968d6630219bd4b …[중략]…
/* -s : 실제 동작은 수행하지 않고, 어떤 작업이 수행되는지 시뮬레이션 */ $ sudo aptitude -s install minicom The following NEW packages will be installed: …[중략]… Do you want to continue? [Y/n/?] y Would download/install/remove packages.
/* -y : 모든 질문에 미리 Yes답변 */ (되돌리는 기능이 없으므로 신중히 사용) $ sudo aptitude -vs -y install minicom The following NEW packages will be installed: lrzsz{a} minicom 0 packages upgraded, 2 newly installed, 0 to remove and 1 not upgraded. Need to get 385 kB of archives. After unpacking 1,470 kB will be used. Inst lrzsz (0.12.21-5 Ubuntu:11.04/natty [i386]) Inst minicom (2.5-1 Ubuntu:11.04/natty [i386]) Conf lrzsz (0.12.21-5 Ubuntu:11.04/natty [i386]) Conf minicom (2.5-1 Ubuntu:11.04/natty [i386])
/* -h : 도움말 기능 (사용 가능한 옵션들을 보여줌) */ $ aptitude -h aptitude 0.6.3 Usage: aptitude [-S fname] [-u|-i] aptitude [options] <action> ... …[중략]… install - Install/upgrade packages. remove - Remove packages. purge - Remove packages and their configuration files. hold - Place packages on hold. …[중략]… Options: -h This help text. --no-gui Do not use the GTK GUI even if available. -s Simulate actions, but do not actually perform them. -d Only download packages, do not install or remove anything. -P Always prompt for confirmation or actions. …[중략]… |
▷ moo 옵션 : 이스터에그(Easter eggs) - 즐거움을 주기 위해 프로그램 속에 숨겨져 있는 기능
$ aptitude moo There are no Easter Eggs in this program. $ aptitude -v moo There really are no Easter Eggs in this program. $ aptitude -vv moo Didn't I already tell you that there are no Easter Eggs in this program? $ aptitude -vvv moo Stop it! $ aptitude -vvvv moo Okay, okay, if I give you an Easter Egg, will you go away? $ aptitude -vvvvv moo All right, you win. /----\ …[중략]… |
'컴퓨터 서적 정리 > Ubuntu Linux Toolbox' 카테고리의 다른 글
[Chap2 #07] - deb 패키지 만들기 (0) | 2011.08.06 |
---|---|
[Chap2 #06] - debsums를 사용하여 설치된 패키지 검증 (0) | 2011.08.06 |
[Chap2 #04] - dpkg를 사용하여 Software 관리 (0) | 2011.08.05 |
[Chap2 #03] - APT 사용하여 Software 관리 (0) | 2011.08.04 |
[Chap2 #02] - Debian Software Package 사용 (0) | 2011.08.04 |