데비안에서 한 줄로 무언가를 설치할 때 부분적으로 -y 매개변수 사용

데비안에서 한 줄로 무언가를 설치할 때 부분적으로 -y 매개변수 사용

apt-get 설치 순서가 길고 대부분의 패키지에는 매개 변수가 필요합니다 -y.

두 줄로 다음을 수행할 수 있습니다.

apt-get upgrade unattended-upgrades sshguard curl wget git ansible zip unzip tree mc lamp-server^ -y
apt-get upgrade python-certbot-apache

그런데 이렇게 한줄에 다 할 수 있는 방법이 없을까요?

apt upgrade unattended-upgrades sshguard curl wget git -y ansible zip unzip tree mc -y lamp-server^ python-certbot-apache

-y시퀀스 내의 두 매개변수에 유의하세요.

지금은 테스트할 수 없습니다.

답변1

apt install -y unattended-upgrades sshguard curl wget git ansible zip unzip tree mc lamp-server^ && apt install python-certbot-apache 

관련 정보