ttf-mscorefonts-installer에 대한 Microsoft EULA 계약에 동의하려면 어떻게 해야 합니까?

ttf-mscorefonts-installer에 대한 Microsoft EULA 계약에 동의하려면 어떻게 해야 합니까?

최근 업데이트 후 ttf-mscorefonts-installer라이센스 계약에 동의하라는 메시지가 표시되었습니다.

 ┌─────────────────┤ Configuring ttf-mscorefonts-installer ├─────────────────┐
 │                                                                           │ 
 │ TrueType core fonts for the Web EULA                                        
 │ END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE                           
 │ IMPORTANT-READ CAREFULLY: This Microsoft End-User License Agreement         
 │ ("EULA") is a legal agreement between you (either an individual or a        
 │ single entity) and Microsoft Corporation for the Microsoft software         
 │ accompanying this EULA, which includes computer software and may include    
 │ associated media, printed materials, and "on-line" or electronic            
 │ documentation ("SOFTWARE PRODUCT" or "SOFTWARE"). By exercising your        
 │ rights to make and use copies of the SOFTWARE PRODUCT, you agree to be      
 │ bound by the terms of this EULA. If you do not agree to the terms of        
 │ this EULA, you may not use the SOFTWARE PRODUCT.                            
 │                                  <Ok>                                       
 │                                                                           │ 
 └───────────────────────────────────────────────────────────────────────────┘ 

스크린샷:
여기에 이미지 설명을 입력하세요

어떤 이유에서인지 내 터미널에서 승인을 허용하지 않거나 어떤 이유에서인지 잘못된 단축키를 누르고 있습니다... 키보드의 모든 문자를 모두 시도해 보았으며 그 Enter중에서도... 매우 간단하고 간단한 방법이 있다고 확신합니다. 이에 대한 확실한 해결책.

답변1

 ⇆ TAB 그렇다면 입니다 return ↵.

:-)


일반적으로 탐색하려면ncurses-스타일 메뉴:

  • 키를 사용하여 Tab한 요소(예: 버튼, 텍스트 상자)에서 다음 요소로 이동합니다. Shift+를 사용하여 Tab역방향으로 이동합니다.
  • Spacebar선택한 버튼을 "클릭"하는 데 사용됩니다 .
  • Enter기본 버튼(또는 기본값이 없는 경우 현재 선택된 버튼)을 클릭하는 데 사용됩니다 .
  • 화살표 키와 Page Up및 를 사용하여 텍스트 상자에서 위아래로 이동할 수 있습니다 Page Down. 그래도 작동하지 않으면 Tab탐색하려는 텍스트 상자가 선택될 때까지 키를 누르세요.

실수로 EULA에 동의하지 않는다고 말한 경우을(를) 다시 검토하고 동의할 기회를 원할 경우 을(를) 다시 설치하여 ttf-mscorefonts-installer전역 구성 파일을 삭제할 수 있습니다.

sudo apt-get --purge --reinstall install ttf-mscorefonts-installer

답변2

일반 설치, 배포 또는 스크립트

선택 사항을 미리 설정하려면 debconf를 사용하세요. 라이선스에 동의하라는 메시지가 표시되지 않습니다.

echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections
sudo apt-get install ttf-mscorefonts-installer

킥스타트 사용

Kickstart.cfg 파일에 다음을 추가하세요.

preseed --owner ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula boolean true

답변3

다음과 같은 단일 명령으로 라이센스에 동의할 수도 있습니다.

echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | debconf-set-selections

이렇게 하면 conf 파일이 생성되지 않습니다.

Puppet을 사용하는 경우 패키지 설치 방법은 다음과 같습니다.

class unifocus-context::msfonts {
  exec { "accept-msttcorefonts-license":
    command => "/bin/sh -c \"echo ttf-mscorefonts-installer msttcorefonts/accepted-     mscorefonts-eula select true | debconf-set-selections\""
  }

  package { "msttcorefonts":
    ensure  => installed,
    require => Exec['accept-msttcorefonts-license']
  }
}

답변4

(오른쪽 화살표 키)를 눌러보세요 . 그런 다음 화살표 키를 사용하여 탐색하고 옵션을 선택하려면 (Return)을 입력하세요.

관련 정보