Archlinux 패키지 base-devel의 모든 멤버를 설치하는 방법

Archlinux 패키지 base-devel의 모든 멤버를 설치하는 방법

나는 archlinux 패키지 base-devel의 모든 옵션을 설치하고 싶습니다.

"sudo pacman -S --needed base-devel" 명령을 실행하면 다음과 같은 결과가 나타납니다.

[vagrant@archlinux ~]$ sudo pacman -S --needed base-devel
warning: file-5.40-5 is up to date -- skipping
warning: findutils-4.8.0-1 is up to date -- skipping
warning: gawk-5.1.0-1 is up to date -- skipping
warning: gettext-0.21-1 is up to date -- skipping
warning: grep-3.6-1 is up to date -- skipping
warning: gzip-1.11-1 is up to date -- skipping
warning: pacman-6.0.1-1 is up to date -- skipping
warning: sed-4.8-1 is up to date -- skipping
warning: sudo-1.9.7.p2-1 is up to date -- skipping
:: There are 15 members in group base-devel:
:: Repository core
   1) autoconf  2) automake  3) binutils  4) bison  5) fakeroot  6) flex  7) gcc
   8) groff  9) libtool  10) m4  11) make  12) patch  13) pkgconf  14) texinfo
   15) which

Enter a selection (default=all): 

설치할 패키지를 선택하라는 대화형 프롬프트를 방지하는 방법.

답변1

--noconfirm대화형 프롬프트를 피하기 위해 사용할 수 있습니다 . 이렇게 하면 다중 선택 프롬프트뿐만 아니라 모든 프롬프트에 대한 기본 선택이 선택됩니다.

man pacman설명하다:

모든 "확실합니까?" 메시지를 무시합니다. 스크립트에서 팩맨을 실행하려는 경우가 아니면 이는 좋은 생각이 아닙니다.

관련 정보