DEBIAN_FRONTEND 環境変数

DEBIAN_FRONTEND 環境変数

ホスティングプロバイダー候補示唆するKVM ベースのサーバーの OS イメージを最小限にするために、ターミナルでコマンドを実行します。KVM テンプレートには必要のないパッケージが付属しているので、同じコマンドを使用して不要なパッケージを削除できると思いました。

このコマンドは で始まりDEBIAN_FRONTEND=noninteractiveapt-get remove次のように呼び出します。

DEBIAN_FRONTEND=noninteractive apt-get remove --purge -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" package-1 package-2 ... package-n; apt-get -y autoremove; apt-get clean all 

環境変数に遭遇したのは初めてでDEBIAN_FRONTEND、今のところ役に立つ情報は見つかりませんでした。そのため、これを に設定するとどうなるのか、また、その値 ( ) が保持されるnoninteractiveと思われるので、それが推奨されるのかどうか疑問に思っています。noninteractive

答え1

単にaptコマンドの先頭に を追加するだけでは、DEBIAN_FRONTEND=somethingそれが適用された単一のコマンドの後は持続しません。

オプションDEBIAN_FRONTENDについては、のセクション 7 のマニュアル ページに記載されています(システムでこれらを使用できるようにするには、パッケージをdebconfインストールする必要がある場合があります)。出典:debconf-docman 7 debconf

Frontends
   One of debconf's unique features is that the interface it  presents  to
   you is only one of many, that can be swapped in at will. There are many
   debconf frontends available:

   dialog The default frontend, this uses  the  whiptail(1)  or  dialog(1)
          programs to display questions to you. It works in text mode.

   readline
          The  most  traditional frontend, this looks quite similar to how
          Debian configuration always has been:  a  series  of  questions,
          printed  out  at  the console using plain text, and prompts done
          using the readline library. It even supports tab completion. The
          libterm-readline-gnu-perl package is strongly recommended if you
          chose to use this frontend; the default readline module does not
          support  prompting  with default values.  At the minimum, you'll
          need the perl-modules package installed to use this frontend.

          This frontend has some special hotkeys. Pageup (or ctrl-u)  will
          go  back  to  the previous question (if that is supported by the
          package that is using debconf), and pagedown  (or  ctrl-v)  will
          skip forward to the next question.

          This is the best frontend for remote admin work over a slow con‐
          nection, or for those who are comfortable with unix.

   noninteractive
          This is the anti-frontend. It never interacts with you  at  all,
          and  makes  the  default  answers  be used for all questions. It
          might mail error messages to root, but that's it;  otherwise  it
          is  completely  silent  and  unobtrusive, a perfect frontend for
          automatic installs. If you are using this front-end, and require
          non-default  answers  to questions, you will need to preseed the
          debconf database; see the section below  on  Unattended  Package
          Installation for more details.

また、次の点にも留意しています。

   You can change the default frontend debconf uses by reconfiguring  deb‐
   conf.  On the other hand, if you just want to change the frontend for a
   minute, you can set the DEBIAN_FRONTEND  environment  variable  to  the
   name of the frontend to use. For example:

     DEBIAN_FRONTEND=readline apt-get install slrn

   The  dpkg-reconfigure(8) and dpkg-preconfigure(8) commands also let you
   pass --frontend= to them, followed by the frontend  you  want  them  to
   use.

   Note  that not all frontends will work in all circumstances. If a fron‐
   tend fails to start up for some reason, debconf will print out  a  mes‐
   sage explaining why, and fall back to the next-most similar frontend.

答え2

無人スクリプト(Dockerfileを含む)を書くとき、apt install -ybutを使用する場合それなし DEBIAN_FRONTEND=noninteractive場合によっては、インストールが対話型プロンプトで停止することがあります。

ここに画像の説明を入力してください

これらの対話型 xpromptを使用してインストール コマンドを実行すると、DEBIAN_FRONTEND=noninteractive無効になります。

関連情報