web-dev-qa-db-ja.com

Ironhideをアンインストールできない、または他のパッケージをインストールできない

Ironhide(別名BumbleBee)をインストールしました。それを機能させることはできませんでしたが、今はパッケージをアンインストールできず、他のものをインストールまたは削除できません。この問題を解決するために私ができることはありますか?

$ Sudo apt-get remove -f ironhide
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  virtualgl acpi-call-dkms virtualgl-libs easybashgui
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED
  ironhide
0 upgraded, 0 newly installed, 1 to remove and 65 not upgraded.
1 not fully installed or removed.
After this operation, 1,901 kB disk space will be freed.
Do you want to continue [Y/n]? Y
(Reading database ... 297969 files and directories currently installed.)
Removing ironhide ...
groupdel: group 'ironhide' does not exist
dpkg: error processing ironhide (--remove):
 subprocess installed post-removal script returned error exit status 6
Processing triggers for ureadahead ...
Errors were encountered while processing:
 ironhide
E: Sub-process /usr/bin/dpkg returned an error code (1)
2
YXD

これを修正するには、次を実行します。

ファイルを編集しました/var/lib/dpkg/info/ironhide.postrm

行をコメントアウトしました:

if [ `cat /etc/group |grep ironhide |wc -l` > 0 ]; then
        groupdel ironhide
fi

その後、正常に実行できました:

$ Sudo apt-get remove ironhide
5
YXD

このようなグループを追加するだけです:

Sudo addgroup ironhide

そして、もう一度鉄皮を取り除こうとします

Sudo apt-get --purge remove ironhide

バンブルビーの正しいインストール方法をここに追加します: Getting gnome-Shell working on nvidia optimus notebook

2
Pedro Gouveia