मैं आमतौर पर अपनी मशीनों को अपग्रेड करता हूं:
sudo apt-get update && time sudo apt-get dist-upgrade
नीचे से एक अंश है man apt-get
। अपग्रेड का उपयोग करना नियम को बनाए रखता है: किसी भी परिस्थिति में वर्तमान में हटाए गए संकुल को स्थापित नहीं किया जाता है, या संकुल पहले से ही पुनर्प्राप्त और स्थापित नहीं किया गया है। यदि यह आपके लिए महत्वपूर्ण है, तो उपयोग करें apt-get upgrade
। यदि आप "बस काम" के लिए चीजें चाहते हैं, तो आप शायद apt-get dist-upgrade
यह सुनिश्चित करना चाहते हैं कि निर्भरता का समाधान हो।
इस पर विस्तार करने के लिए कि आप डिस्ट- अपग्रेड के बजाय अपग्रेड क्यों चाहते हैं , यदि आप एक सिस्टम एडमिनिस्ट्रेटर हैं, तो आपको प्रेडिक्टिबिलिटी की आवश्यकता है। आप पीपीए के संग्रह (शायद आपके पास इन-हाउस पीपीए) से उपयुक्त पिनिंग या पुलिंग जैसी उन्नत सुविधाओं का उपयोग कर रहे हों , अपने सिस्टम और उपलब्ध उन्नयन का निरीक्षण करने के बजाय हमेशा उपलब्ध सभी पैकेजों का उत्सुकता से उन्नयन करें। आप बहुत निराश हो जाते हैं, जब अनुपयोगी व्यवहार करता है, खासकर अगर यह एक उत्पादन सेवा के डाउनटाइम की ओर जाता है।
upgrade
upgrade is used to install the newest versions of all packages
currently installed on the system from the sources enumerated in
/etc/apt/sources.list. Packages currently installed with new
versions available are retrieved and upgraded; under no
circumstances are currently installed packages removed, or packages
not already installed retrieved and installed. New versions of
currently installed packages that cannot be upgraded without
changing the install status of another package will be left at
their current version. An update must be performed first so that
apt-get knows that new versions of packages are available.
dist-upgrade
dist-upgrade in addition to performing the function of upgrade,
also intelligently handles changing dependencies with new versions
of packages; apt-get has a "smart" conflict resolution system, and
it will attempt to upgrade the most important packages at the
expense of less important ones if necessary. So, dist-upgrade
command may remove some packages. The /etc/apt/sources.list file
contains a list of locations from which to retrieve desired package
files. See also apt_preferences(5) for a mechanism for overriding
the general settings for individual packages.
sudo apt full-upgrade
इसी तरह की चीजें करता है।