कुछ भी बदले बिना apt-get अपडेट / अपग्रेड सूची


21

मैं देखना चाहूंगा कि अद्यतन / उन्नयन के लिए कौन से पैकेज उपलब्ध हैं वास्तव में बिना किसी फाइल को बदलने के क्योंकि कुछ पैकेज ऐसे हैं जिन्हें मैं अपडेट नहीं करना चाहता। क्या तब अपवादों के साथ अद्यतन प्राप्त करना संभव होगा।


उपयुक्त उपलब्ध अद्यतन के बारे में जानने की जरूरत है apt-get update, और वह कुछ चीजों को बदल देगा। हालांकि महान सवाल ... संबंधित जानकारी यहां
bvj

जवाबों:


9

मैं उपयोग करता हूं apt list --upgradable
अगले विकल्प है apt-get --simulate upgrade। (@EightBitTony पर आधारित)
यहां विभिन्न विकल्पों के आउटपुट हैं (आशा है कि यह किसी की मदद करता है):

me@machine:~$ apt list --upgradable
    Listing... Done
    kubernetes-cni/kubernetes-xenial 0.7.5-00 amd64 [upgradable from: 0.6.0-00]
    N: There are 3 additional versions. Please use the '-a' switch to see them.
me@machine:~$ apt-get --simulate upgrade
    NOTE: This is only a simulation!
          apt-get needs root privileges for real execution.
          Keep also in mind that locking is deactivated,
          so don't depend on the relevance to the real current situation!
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    Calculating upgrade... Done
    The following packages will be upgraded:
      kubernetes-cni
    1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
    Inst kubernetes-cni [0.6.0-00] (0.7.5-00 kubernetes-xenial:kubernetes-xenial [amd64])
    Conf kubernetes-cni (0.7.5-00 kubernetes-xenial:kubernetes-xenial [amd64])
me@machine:~$ apt-get -u upgrade --assume-no
    E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied)
    E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?
me@machine:~$ sudo apt-get -u upgrade --assume-no
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    Calculating upgrade... Done
    The following packages will be upgraded:
      kubernetes-cni
    1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
    Need to get 6,473 kB of archives.
    After this operation, 4,278 kB of additional disk space will be used.
    Do you want to continue? [Y/n] N
    Abort.
me@machine:~$ sudo apt-get -u -V upgrade
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    Calculating upgrade... Done
    The following packages will be upgraded:
       kubernetes-cni (0.6.0-00 => 0.7.5-00)
    1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
    Need to get 6,473 kB of archives.
    After this operation, 4,278 kB of additional disk space will be used.
    Do you want to continue? [Y/n] n
    Abort.

नाव पर स्वागत है।
bvj

32

Apt-get man पेज से,

   -s, --simulate, --just-print, --dry-run, --recon, --no-act
       No action; perform a simulation of events that would occur
       but do not actually change the system. Configuration Item:
       APT::Get::Simulate.

       Simulation run as user will deactivate locking (Debug::NoLocking)
       automatic. Also a notice will be displayed indicating that this
       is only a simulation, if the option APT::Get::Show-User-Simulation-Note
       is set (Default: true). Neither NoLocking nor the notice will be
       triggered if run as root (root should know what he is doing without
       further warnings by apt-get).

       Simulate prints out a series of lines each one representing a
       dpkg operation, Configure (Conf), Remove (Remv), Unpack (Inst).
       Square brackets indicate broken packages and empty set of square
       brackets meaning breaks that are of no consequence (rare).

तो बस आप सुनिश्चित करें apt-get -s upgrade

यदि आप कुछ विशेष पैकेजों को अपग्रेड करना चाहते हैं, apt-get install <package name>तो यह पहले से इंस्टॉल होने पर इसे अपडेट कर देगा। हालाँकि इसे सभी निर्भरताओं को भी अपडेट करना होगा, और वे जो हैं, उसके आधार पर, यह बहुत सारे अपडेट को कैस्केड कर सकता है।

अगर मैं पैकेज अपडेट में पीछे हूं, तो मैं apt-get installकुछ बड़े लोगों (शायद php, apache2, आदि) पर करूंगा, ताकि मैं उन्हें समाहित रख सकूं और किसी भी मुद्दे की जांच कर सकूं, और उसके apt-get upgradeबाद मैं कर रहा हूं।


8

उनके संस्करणों के साथ उन्नत किए जाने वाले पैकेजों को सूचीबद्ध करने के लिए:

$ sudo apt-get -u -V upgrade
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages have been kept back:
   mysql-client-5.5 (5.5.29-0ubuntu0.12.04.2 => 5.5.32-0ubuntu0.12.04.1)
   mysql-server-5.5 (5.5.29-0ubuntu0.12.04.2 => 5.5.32-0ubuntu0.12.04.1)
   mysql-server-core-5.5 (5.5.29-0ubuntu0.12.04.2 => 5.5.32-0ubuntu0.12.04.1)
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.

फिर, आप चुन सकते हैं कि क्या अपग्रेड करना है:

$ sudo apt-get --only-upgrade install mysql-client-5.5
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following package was automatically installed and is no longer required:
firefox-globalmenu
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
libterm-readkey-perl
The following NEW packages will be installed:
libterm-readkey-perl
The following packages will be upgraded:
mysql-client-5.5
1 upgraded, 1 newly installed, 0 to remove and 2 not upgraded.
Need to get 8,123 kB of archives.
After this operation, 139 kB of additional disk space will be used.
Do you want to continue [Y/n]? Y
Get:1 http://us.archive.ubuntu.com/ubuntu/ precise/main libterm-readkey-perl i386 2.30-4build3 [28.4 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main mysql-client-5.5 i386 5.5.32-0ubuntu0.12.04.1 [8,094 kB]
...

यदि कोई पुरानी निर्भरताएं हैं, जिन्हें हटा दिया गया है, तो आप चला सकते हैं apt-get autoremove, और जैसा कि आप देख सकते हैं, किसी भी नई निर्भरता को स्थापित करने के लिए प्रेरित किया जाएगा। --only-upgradeझंडा आवश्यक नहीं है, लेकिन अच्छा आप यह सुनिश्चित करें कि आप गलती से एक नए पैकेज स्थापित नहीं करते पहले से मौजूद किसी उन्नयन के बजाय चाहते हैं, यानी आप उन क्षणों में से एक है और गलती से गलत पैकेज टाइप करें:

$ sudo apt-get --only-upgrade install mysql-proxy
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Skipping mysql-proxy, it is not installed and only upgrades are requested.
The following package was automatically installed and is no longer required:
firefox-globalmenu
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.

1

यह आप जारी करने में मदद करता है apt-get -s upgradeजो केवल एक अनुकरण करता है? और फिर आप प्रत्येक वांछित पैकेज को अपडेट कर सकते हैं apt-get install <thepackage>

यदि आप चाहते हैं कि एक अच्छा सीएलआई जीयूआई के साथ इंटरैक्टिव तो उपयोग करें aptitude। यदि यह अभी तक स्थापित नहीं है, तो इसे स्थापित करें apt-get install aptitude

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.