1

This started when I want to remove wine from my ubuntu. after I run this command

sudo apt-get remove wine

I thought I had managed to remove the software, it did not. then display an error message on my ubuntu panel related to the software.

An error occurred, please run package manager from the right-click menu or apt-get in a terminal to see what wrong. the error message was: 'unknown error: ''("the cache has no package named 'wine-devel-i386'. this usually means that your installed packages have unmet dependencies

I don't understand the meaning of the error message

image problem

Zanna
  • 70,465
BimoAN
  • 23

1 Answers1

0

Try use two single commands:

sudo apt-get remove wine

sudo apt-get purge wine

This error means that the server, from which he was trying to download "wine-devel-amd64", is unavailable.

BlueManCZ
  • 543