(2) 패키지 매니저 (apt , yum)

2019. 3. 25. 17:33 OS/Linux

■ 설치된 패키지 목록 확인 

 # dpkg -l 


 apache2 관련 패키지 목록만 확인해보자.

 # dpkg -l |grep apache2


■ Advanced Packaging Tool

  A. apt-cache  

      apt-cache search [패키지명]

      (ex. # apt-cache search tomcat)


  B. apt-get

     apt-get install [패키지명]

(ex. # apt-get install tomcat7)


# apt-get update;  - 최신상태의 패키지매니저 목록을 보여준다. 

# apt-cache search htop - htop과 관련된 패키지가 있는지를 찾아본다. (패키지 스토어에서)

# apt-get install htop - 설치되어있지 않으면 해당 패키지를 설치하면된다.

# apt-get upgrade htop  - 이미 설치되어있는 패키지 프로그램에 대하여 버전 업그레이드를 하고싶을경우에 업그레이드 명령을 사용하면된다.

# apt-get remove htop - htop 패키지를 제거해보자.



출처: https://sourceflower.tistory.com/54?category=613435 [소스플로우]