Переменная окружения DEBIAN_FRONTEND


22

Мой потенциальный хостинг-провайдер предлагает запустить команду в терминале, чтобы сделать образ ОС сервера на основе KVM минимальным. Поскольку их KVM-шаблоны поставляются с пакетами, которые мне не нужны, я подумал, что могу использовать эту же команду для удаления нежелательных пакетов.

Эта команда начинается с DEBIAN_FRONTEND=noninteractive, затем вызывается apt-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) будет сохраняться.


4
Не зная, что он делает, я могу сказать, что когда вы устанавливаете переменную таким образом как часть более длинной командной строки, это эффективно только при выполнении этой команды. Это не сохраняется.
Гуннар

Ответы:


27

Простое добавление aptкоманды с помощью DEBIAN_FRONTEND=somethingне сохраняется после отдельной команды, к которой она применяется.

Эти DEBIAN_FRONTENDпараметры описаны на страницах справочного руководства в разделе 7 debconf(вам может потребоваться установить debconf-docпакет, чтобы сделать их доступными в вашей системе). От man 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.

1
Я вижу DEBIAN_FRONTEND=noninteractiveчасто используемые в Dockerfiles. Этот ответ заставляет меня задуматься, почему мы просто не используем --yesфлаг с командами apt, так как он будет более явным и в большинстве случаев будет соответствовать нашим потребностям.
Деннис

@ Денис Я думаю, это потому, что readline не обязательно установлен, и apt может вывести предупреждение как таковое.
hayd

4
Примечание: если используется DEBIAN_FRONTENDс sudo, установите переменную внутри sudoкоманды, а не для нее. То есть: sudo DEBIAN_FRONTEND=noninteractive apt-get install slrn. Если вы установили параметр переменной env ранее sudo, он будет действителен для самой sudoкоманды и sudoне будет копировать ее в выполняемую apt-getкоманду. Использование его между sudoи фактической командой является sudoсинтаксисом для установки переменных env для запускаемой команды (см. Справочную страницу). Это дало мне трудные времена, поэтому я подумал, что хочу поделиться.
caxcaxcoatl

1
Если вы хотите изменить поведение по умолчанию внешнего интерфейса на noninteractive, вы можете сделать это с помощью следующей команды:dpkg-reconfigure debconf --frontend=noninteractive
Carter Pape
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.