Bu, 6 aydan kısa bir sürede, Ubuntu ekiplerinin herhangi bir test etmeden ve çalışan Ubuntu sistemlerini bozmadan önerilen bir güncelleme yaptıkları ikinci kezdir.
Bu adamlar son zamanlarda mevcut LTS versiyonunu sahte ve denenmemiş güncellemelerle kırmak için serbest bırakıldılar ... Bu yeni, geçen yıla kadar hiç olmadı.
Çözüm NEVER install
önerilen ve sözde olan Partial Upgrade
... Sisteminizi Synaptic
paket yoluyla paket yoluyla güncelleyebilirsiniz (bunun iyi bir şekilde Synaptic
resmi sürümden kaldırılmasına rağmen ) ... Buggy sürümünün tüm güncellemelerini engelleyene kadar . İşte bir örnek:
#!/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
Sonra betiği şu anki dizindeki ismine göre çalıştırın:
$ ./block-upd-nemo
Engelini kaldırmak için
#!/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
Sonra
$ ./unblock-upd-nemo
Burada Synaptic'te, bu paketleri kaldırarak compiz
kırılan ilgili paketlerin uzun bir listesini görebilirsiniz Xenial LTS
:
ubuntu-desktop unity unity-tweak-tool unsettings ...
Engellenecek paketler:
[Liste, birlik etkilenen paketleri kaçırdığım için güncellendi]
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
Oldukça uzun bir liste. Shell komut dosyası aracılığıyla yönetilebilir.
Bir kurtarma çözümü, bir Xenial kurulum USB çubuğundan önyükleme yapmak ve bir gerçekleştirmektir chroot
. Paketleri indirmek ve onları yüklemek için zorlamak için Launchpad web sitesine gidin ve ardından tüm güncellemeleri engelleyin veya sürümleri güncelleme yapılandırmanızdan kaldırın .compiz
Release (main)
dpkg -i *.deb
proposed
[Güncelleme]: Etkilenen paketleri indirmek ve indirmek için Launchpad web sitesine gitmeniz gerekir (betiğe bakınız).unity
Release (main)
Eğer aşina değilseniz Google arama.
İşte benim compiz
yeni biten benim engelleme betiğim:
[Birlikten etkilenen paketleri kaçırdıkça güncellendi]
#!/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
Komut dosyalarını çalıştırılabilir olarak ayarlamayı unutmayın.
$ chmod a+x block-upd-compiz
[Folllow Up]: 19 paketinin blokajını kaldırmak için bir Shell betiği çalıştırdıktan sonra compiz
ve unity
. N0rbet
Çözümü denedim ve işe yarıyor gibi görünüyor:
$ 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