Apt-get (या aptitude) को -y के साथ चलाएँ, लेकिन कॉन्फ़िगरेशन फ़ाइलों के प्रतिस्थापन के लिए संकेत नहीं है?


71

जब apt-get -y install <packages ...>उबंटू 10.04 पर चल रहा होता है, तो मैं चाहूंगा apt-get(या aptitudeअगर यह आसान हो जाए) तो मुझे अतिरिक्त निर्भरताएं स्थापित करने के लिए मुझे संकेत नहीं देना चाहिए ( -yजैसा कि मैं इसे समझता हूं) का व्यवहार, लेकिन मुझे ओवरराइटिंग कॉन्फ़िगरेशन फ़ाइलों के बारे में संकेत नहीं देना चाहिए, इसके बजाय हमेशा मौजूदा रखने के लिए मान लें। (जो आमतौर पर डिफ़ॉल्ट होता है)। दुर्भाग्य से --trivial-onlyलगता है -yकि manपृष्ठ के अनुसार, दिखाए गए संकेत को उलटा और प्रभावित नहीं करना चाहिए ।

विशेष पैकेज के रूप sambaमें nullmailer, localepurgeऔर lighttpdमुझे टर्मिनल के साथ बातचीत करने के लिए मजबूर किया है, भले ही पूरी प्रक्रिया को स्क्रिप्ट किया गया था और गैर-संवादात्मक होना था।

जवाबों:


97

तुम उपयोग कर सकते हो:

sudo apt-get update
sudo apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" dist-upgrade

केवल विशिष्ट पैकेजों के लिए, जैसे mypackage1 mypackage2:

sudo apt-get update
sudo apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install mypackage1 mypackage2

स्रोत: http://raphaelhertzog.com/2010/09/21/debian-conffile-configuration-file-managed-by-dpkg/

Avoiding the conffile prompt

Every time that dpkg must install a new conffile that you have modified
(and a removed file is only a particular case of a modified file in dpkg’s eyes),
it will stop the upgrade and wait your answer. This can be particularly annoying for
major upgrades. That’s why you can give predefined answers to dpkg with the help
of multiple --force-conf* options:

    --force-confold: do not modify the current configuration file, the new version
is installed with a .dpkg-dist suffix. With this option alone, even configuration
files that you have not modified are left untouched. You need to combine it with
--force-confdef to let dpkg overwrite configuration files that you have not modified.
    --force-confnew: always install the new version of the configuration file, the
current version is kept in a file with the .dpkg-old suffix.
    --force-confdef: ask dpkg to decide alone when it can and prompt otherwise. This
is the default behavior of dpkg and this option is mainly useful in combination with
--force-confold.
    --force-confmiss: ask dpkg to install the configuration file if it’s currently
missing (for example because you have removed the file by mistake).

If you use Apt, you can pass options to dpkg with a command-line like this:

$ apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" dist-upgrade

You can also make those options permanent by creating /etc/apt/apt.conf.d/local:

Dpkg::Options {
   "--force-confdef";
   "--force-confold";
}

आपको कम से dpkg के मैनुअल में अधिक जानकारी और अधिक विकल्प मिल सकता है http://manpages.ubuntu.com/manpages/xenial/en/man1/dpkg.1.html या man dpkgऔर यानी "confdef" के लिए देखो।


33
"मेरा मानना ​​है कि यह स्व-व्याख्यात्मक है" ... उन विकल्पों का उपयोग करने के लिए आयें जिन्हें मैंने कभी किसी के लिए उपयोग करने के लिए नहीं देखा है
notbad.jpeg

1
@ notbad.jpeg: मेरा मानना ​​है कि टिप्पणी उन विकल्पों के नामकरण के उद्देश्य से थी। मुझे वास्तव में आत्म-व्याख्यात्मक नाम मिलते हैं। बेशक उनका उपयोग करने के बारे में पता नहीं था :-D
0xC0000022L

3
किस बारे में -y?
JDS

4
यह भी देखें: linux.die.net/man/1/dpkg--force अनुभाग के तहत , यह confoldऔर confdefविकल्पों का वर्णन करता है । इसके अलावा उपयोगी: apt-config dumpसे askubuntu.com/questions/254129/...
thom_nic

3
"आत्म-व्याख्यात्मक" ... हम्म, मैंने पाया कि विवरण बेहद भ्रामक है, खासकर उन्हें संयोजन में उपयोग करना है या नहीं। चीजों को साफ करने वाला एक था dpkg(1)। साभार @thom_nic
ल्लोकेई
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.