오늘의 인기 글
최근 글
최근 댓글
Today
Total
05-19 08:40
관리 메뉴

우노

[Ubuntu] Package Install 시, 사용자 입력 요청 무시 본문

Operating System/Linux & Ubuntu

[Ubuntu] Package Install 시, 사용자 입력 요청 무시

운호(Noah) 2021. 11. 22. 19:40

Package Install 시, 사용자 입력 요청 화면

  • Package Install 시, 아래와 같은 사용자 입력 요청으로 인해 Package Install 이 중지되는 경우가 있다.

      Please select the geographic area in which you live. Subsequent configuration
      questions will narrow this down by presenting a list of cities, representing
      the time zones in which they are located.
    
        1. Africa        6. Asia            11. System V timezones
        2. America       7. Atlantic Ocean  12. US
        3. Antarctica    8. Europe          13. None of the above
        4. Australia     9. Indian Ocean
        5. Arctic Ocean  10. Pacific Ocean

해결 방법

  • Package Install 명령어에 "DEBIAN_FRONTEND=noninteractive" 를 추가함으로써,
    사용자 입력 요청을 무시할 수 있다.

      DEBIAN_FRONTEND=noninteractive apt-get install "패키지명" -y
Comments