본문 바로가기
컴퓨터 활용(한글, 오피스 등)/50_2.운영체제_리눅스

리눅스_우분투_설치된 프로그램 확인

by 3604 2022. 11. 21.
728x90

ubuntu -- 설치된 프로그램 확인-하기

 

환경 : ubuntu 18.04 LTS 서버, 네이버 클라우드 플랫폼 서버

 

참고 : https://itsfoss.com/list-installed-packages-ubuntu/

 
 
 
$ apt list --installed        // 설치된 모든 프로그램 목록 보여줌.
 
 
$ apt list --installed | grep 프로그램명      // 프로그램명에 와일드카드 사용 못함.
 
 
$ apt list 프로그램명 --installed
or
$ apt list --installed 프로그램명        // 프로그램명에 와일드카드 사용 가능.
 
 
 
 
 
** openssh-server 프로그램 설치 여부 확인 하기 **
 
$ apt list --installed *ssh*

 

 

 

728x90