मैंने इसे पहले देखा है। मैं सोच रहा हूँ कि यह वास्तव में क्या करता है?
मैंने इसे पहले देखा है। मैं सोच रहा हूँ कि यह वास्तव में क्या करता है?
जवाबों:
से man apt-get
:
-f, --fix-broken
Fix; attempt to correct a system with broken dependencies in place. This
option, when used with install/remove, can omit any packages to permit APT
to deduce a likely solution. If packages are specified, these have to
completely correct the problem. The option is sometimes necessary when
running APT for the first time; APT itself does not allow broken package
dependencies to exist on a system. It is possible that a system's dependency
structure can be so corrupt as to require manual intervention (which usually
means using dselect(1) or dpkg --remove to eliminate some of the offending
packages). Use of this option together with -m may produce an error in some
situations. Configuration Item: APT::Get::Fix-Broken.
sudo apt-get -f install
खुद से, टूटे हुए पैकेज को ठीक करने के लिए पर्याप्त नहीं है, इस उत्तर को देखें ।
package
, तो इसके परिणामस्वरूप असमत निर्भरताएँ उत्पन्न होती हैं, तो बस sudo apt-get remove package
असमत निर्भरता की त्रुटि से छुटकारा पाने के लिए करें और ब्रेक को ठीक करने वाले पैकेजों को स्थापित न करें।
यहां मैंने इसे बहुत उपयोगी पाया। मैंने .deb पैकेजों के एक जोड़े को स्थापित करने के लिए एक dpkg कमांड चलाई, लेकिन कुछ विफलताओं के गायब होने के कारण इंस्टॉल विफल हो गया।
मैं फिर भागा
apt-get -f install
और इसने ठीक उसी तरह की निर्भरताएं स्थापित कीं जिनकी जरूरत थी। मैं तब अपने dpkg कमांड को फिर से चला पा रहा था और सब कुछ काम कर रहा था।