Змінна середовища 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
Не знаючи, що це робить, я можу сказати, що коли ви встановлюєте змінну таким чином як частину більш тривалої командної строки, вона ефективна лише під час виконання цієї команди. Це не зберігається.
Gunnar Hjalmarsson

Відповіді:


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прапор із влучними командами, оскільки він буде більш чітким, і в більшості випадків він відповідає нашим потребам.
Денніс

@Dennis Я думаю, що це тому, що readline не обов'язково встановлюється, і apt може видавати попередження як таке.
гайд

4
Примітка: якщо використовується DEBIAN_FRONTENDз sudo, встановіть змінну в межах sudoкоманди, а не для неї. Тобто: sudo DEBIAN_FRONTEND=noninteractive apt-get install slrn. Якщо ви поставите налаштування змінної env раніше sudo, вона буде дійсною для самої sudoкоманди, і sudoне скопіює її до apt-getзапущеної команди. Використання його між sudoі фактичною командою є sudoсинтаксисом для налаштування змінних env для команди, яку потрібно запустити (див. Сторінку man). Це дало мені важкий час, тому я думав, що поділитися.
caxcaxcoatl

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