6 महीने से भी कम समय में यह दूसरी बार है जब उबंटू की टीमों ने बिना किसी परीक्षण और ब्रेकिंग वाले उबंटू सिस्टम को प्रस्तावित अपडेट किया।
ये लोग हाल ही में मौजूदा LTS संस्करण को फोनी और अनटाइटेड प्रस्तावित अपडेट के साथ तोड़ने के लिए ढीले हैं ... यह नया है, पिछले साल तक ऐसा कभी नहीं हुआ था।
समाधान NEVER install
एक प्रस्तावित और तथाकथित के लिए है Partial Upgrade
... आप अभी भी Synaptic
पैकेज द्वारा पैकेज के माध्यम से अपने सिस्टम को अपडेट कर सकते हैं (हालांकि इसका अच्छा अर्थ Synaptic
निकालने के लिए अब इसे आधिकारिक रिलीज से हटा दिया गया है) ... जब तक आप छोटी गाड़ी रिलीज के सभी अपडेट को ब्लॉक नहीं करते हैं । यहाँ एक उदाहरण है:
#!/bin/sh
#
# Add nemo package to update blacklist
# Run script as super user i.e. sudo ./block-upd-unity.sh
#
if [ $(id -u) != 0 ]; then
echo "This script requires root permissions"
sudo "$0"
exit
fi
echo "nemo hold" | dpkg --set-selections
echo "nemo-data hold" | dpkg --set-selections
echo "nemo-fileroller hold" | dpkg --set-selections
फिर वर्तमान निर्देशिका में इसके नाम से स्क्रिप्ट चलाएँ, जैसे:
$ ./block-upd-nemo
अनब्लॉक करने के लिए
#!/bin/sh
#
# Remove nemo package from update blacklist
# Run script as super user i.e. sudo ./block-upd-unity.sh
#
if [ $(id -u) != 0 ]; then
echo "This script requires root permissions"
sudo "$0"
exit
fi
echo "nemo install" | dpkg --set-selections
echo "nemo-data install" | dpkg --set-selections
echo "nemo-fileroller install" | dpkg --set-selections
फिर
$ ./unblock-upd-nemo
यहां सिनैप्टिक में आप compiz
संबंधित पैकेजों की एक लंबी सूची देख सकते हैं जो Xenial LTS
इन पैकेजों को हटाकर टूट रहे हैं:
ubuntu-desktop unity unity-tweak-tool unsettings ...
ब्लॉक करने के लिए पैकेज हैं:
[सूची अद्यतन के रूप में मैं एकता प्रभावित संकुल याद किया]
compiz compiz-core compiz-dev compiz-gnome compiz-plugins compiz-plugins-default compiz-plugins-extra compiz-plugins-main compiz-plugins-main-default compizconfig-settings-manager libcompizconfig0 libdecoration0 libdecoration0-dev python-compizconfig libunity-core-6.0-9 libunity-core-6.0-dev unity unity-schemas unity-services
काफी लंबी सूची। शैल पटकथा के माध्यम से प्रबंधनीय।
एक रिकवरी सॉल्यूशन एक क्सिअल इनस्टॉल USB स्टिक से बूट करने के लिए और एक परफॉर्म करने के लिए होगा chroot
। पैकेज डाउनलोड करने के लिए लॉन्चपैड वेबसाइट पर जाएं और फिर उन्हें स्थापित करने के लिए बाध्य करें और सभी अपडेट को ब्लॉक करें, या अपने अपडेट कॉन्फ़िगरेशन से रिलीज़ को हटा दें ।compiz
Release (main)
dpkg -i *.deb
proposed
[अद्यतन]: आप के लिए लॉन्चपैड वेबसाइट पर जाने unity
और Release (main)
प्रभावित संकुल को डाउनलोड करने की आवश्यकता है (स्क्रिप्ट में नीचे देखें)।
यदि आप इससे परिचित नहीं हैं तो Google खोज।
यहाँ मेरी अवरुद्ध स्क्रिप्ट है जो compiz
मैंने अभी-अभी समाप्त की है:
[अद्यतन के रूप में मैं एकता प्रभावित संकुल याद किया]
#!/bin/sh
#
# Add compiz package to update blacklist
# Run script as super user i.e. sudo ./block-upd-compiz.sh
#
if [ $(id -u) != 0 ]; then
echo "This script requires root permissions"
sudo "$0"
exit
fi
echo "compiz hold" | dpkg --set-selections
echo "compiz-core hold" | dpkg --set-selections
echo "compiz-dev hold" | dpkg --set-selections
echo "compiz-gnome hold" | dpkg --set-selections
echo "compiz-plugins hold" | dpkg --set-selections
echo "compiz-plugins-default hold" | dpkg --set-selections
echo "compiz-plugins-extra hold" | dpkg --set-selections
echo "compiz-plugins-main hold" | dpkg --set-selections
echo "compiz-plugins-main-default hold" | dpkg --set-selections
echo "compizconfig-settings-manager hold" | dpkg --set-selections
echo "libcompizconfig0 hold" | dpkg --set-selections
echo "libdecoration0 hold" | dpkg --set-selections
echo "libdecoration0-dev hold" | dpkg --set-selections
echo "python-compizconfig hold" | dpkg --set-selections
echo "libunity-core-6.0-9 hold" | dpkg --set-selections
echo "libunity-core-6.0-dev hold" | dpkg --set-selections
echo "unity hold" | dpkg --set-selections
echo "unity-schemas hold" | dpkg --set-selections
echo "unity-services hold" | dpkg --set-selections
निष्पादन योग्य स्क्रिप्ट सेट करना न भूलें ...
$ chmod a+x block-upd-compiz
[Folllow Up]: शेल पैकेज चलाने के बाद 19 पैकेजों को अनब्लॉक करने के लिए compiz
और unity
। मैंने N0rbet
समाधान की कोशिश की और यह काम करने लगता है:
$ sudo apt-get install compiz-core-abiversion-20170630
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'compiz-core' instead of 'compiz-core-abiversion-20170630'
The following additional packages will be installed:
compiz-dev compiz-gnome compiz-plugins compiz-plugins-default libcompizconfig0 libdecoration0
libdecoration0-dev libunity-core-6.0-9 libunity-core-6.0-dev unity unity-schemas unity-services
The following packages will be upgraded:
compiz-core compiz-dev compiz-gnome compiz-plugins compiz-plugins-default libcompizconfig0 libdecoration0
libdecoration0-dev libunity-core-6.0-9 libunity-core-6.0-dev unity unity-schemas unity-services
13 upgraded, 0 newly installed, 0 to remove and 13 not upgraded.
Need to get 5,410 kB of archives.
After this operation, 283 kB of additional disk space will be used.
Do you want to continue? [Y/n] y