私はLinux Mint 17.2 Cinnamonを実行しています。クレイジーなようにPPAを追加して(わかりました…わかりました)、たくさんのテーマ、アイコン、カーソルをダウンロードしました。問題は、私がダウンロードした多くのパッケージの1つが何とか破損していることです!パッケージはmbuntu-y-icons-v4
で提供されていますppa:noobslab/themes
。
これは次のようになりますsudo apt-get install mbuntu-y-icons-v4
。
Reading package lists... Done
Building dependency tree
Reading state information... Done
mbuntu-y-icons-v4 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
1 not fully installed or removed.
Need to get 12.3 MB of archives.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://ppa.launchpad.net/noobslab/themes/ubuntu/ trusty/main mbuntu-y-icons-v4 all 3.12.2~trusty~NoobsLab.com [12.3 MB]
Fetched 12.3 MB in 35s (347 kB/s)
dpkg: error processing package mbuntu-y-icons-v4 (--configure):
package mbuntu-y-icons-v4 is not ready for configuration
cannot configure (current status `half-installed')
Errors were encountered while processing:
mbuntu-y-icons-v4
E: Sub-process /usr/bin/dpkg returned an error code (1)
sudo apt-get remove
orclean
またはautoremove
orを使用してもsudo apt-get install -f
問題は解決しません。
これは次のようになりますsudo dpkg --remove --force-remove-reinstreq mbuntu-y-icons-v4
。
dpkg: warning: overriding problem because --force enabled:
dpkg: warning: package is in a very bad inconsistent state; you should
reinstall it before attempting a removal
dpkg: warning: files list file for package 'totem-mozilla' missing; assuming package has no files currently installed
(Reading database ... 2508592 files and directories currently installed.)
Removing mbuntu-y-icons-v4 (3.12.2~trusty~NoobsLab.com) ...
update-alternatives: warning: forcing reinstallation of alternative (null) because link group x-cursor-theme is broken
update-alternatives: using /usr/share/icons/DMZ-White/cursor.theme to provide /etc/alternatives/x-cursor-theme (x-cursor-theme) in auto mode
update-alternatives: error: unable to install `/etc/alternatives/x-cursor-theme.dpkg-tmp' as `/etc/alternatives/x-cursor-theme': No such file or directory
dpkg: error processing package mbuntu-y-icons-v4 (--remove):
subprocess installed post-removal script returned error exit status 2
Errors were encountered while processing:
mbuntu-y-icons-v4
ご覧のとおり、問題の1つは床が明らかにx-cursor-theme
損傷していることです/etc/alternatives
。次に、この問題を解決する方法を見つけて、次のようにしました。
sudo rm -i /etc/alternatives/x-cursor-theme
sudo ln -sf /usr/share/icons/DMZ-White/cursor.theme /etc/alternatives/x-cursor-theme
CURSOR=DMZ-White
gsettings set org.gnome.desktop.interface cursor-theme "$CURSOR"
sudo update-alternatives --set x-cursor-theme /usr/share/icons/$CURSOR/cursor.theme
最後の行は次の結果を提供します。
update-alternatives: warning: forcing reinstallation of alternative /usr/share/icons/DMZ-White/cursor.theme because link group x-cursor-theme is broken
update-alternatives: error: unable to install `/etc/alternatives/x-cursor-theme.dpkg-tmp' as `/etc/alternatives/x-cursor-theme': No such file or directory
私はちょうどその愚かなパッケージを削除し、カーソルが再びmbuntu-y-icons-v4
正しく動作するようにしたいと思います(マウスを指しているプログラムによって変わります)。 5時間かかりました!助けてください。