web-dev-qa-db-ja.com

Wineが実際にアンインストールされたかどうかわからない

私はUbuntuが初めてなので、以前にwineをインストールしようとしました。インストールを続行したくないので、次のコマンドを使用してアンインストールしようとしました。

Sudo apt-get remove wine --purge

ターミナルを開いてタイプするたびに

wine

、私のシステムは言う

Usage: wine PROGRAM [ARGUMENTS...]   Run the specified program
       wine --help                   Display this help and exit
       wine --version                Output version information and exit

システムがwineコマンドを認識するので、それはwineがまだどこかにインストールされていると思います。 wineは私のシステムから完全にアンインストールされますか?そうでない場合、どうすればよいですか? Ubuntu 18.04のこのページの指示に従ってインストールしました: https://wiki.winehq.org/Ubunt

2
jflinux

apt-get remove ...コマンドは実際にwineを削除しましたか?試してみたところ、18.04にこのメッセージが表示されました。

$ Sudo apt-get remove wine --purge
Reading package lists... Done
Building dependency tree
Reading state information... Done
Virtual packages like 'wine' can't be removed
0 upgraded, 0 newly installed, 0 to remove and 192 not upgraded.

メッセージに示されているように、wineは仮想パッケージであるため、削除できません。ただし、次のように削除できます。

$ Sudo apt-get purge wine*
...
se 'apt autoremove' to remove them.
The following packages will be REMOVED:
  wine-stable* wine1.6* wine64*
0 upgraded, 0 newly installed, 3 to remove and 192 not upgraded.
After this operation, 869 kB disk space will be freed.
Do you want to continue? [Y/n] y
...

このシナリオでは、apt-getパターンに一致するすべてのパッケージを削除するには、wine*は、パターンに一致するすべてのパッケージを削除します。

0
slm