0

enter image description here

I marked the problem i cant install with ubuntu center and Synaptic i cant repair !!

The following packages have unmet dependencies: wine1.6: Depends: wine1.6-i386 (= 1: 1.6.1-0ubuntu1 PPA1 ~ ~ precise1) but it is not installable E: Unmet dependencies. Try 'apt-get f install' with no packages (or specify a solution).

64 bit 12.04LTS

and tried update to ubuntu 14.04 but I cant update too..

2 Answers2

0

Since I can't read Spanish (I guess) and since you tagged wine, then probably you didn't follow the correct procedures to install wine from PPA.

To install wine from command line:

1- Open a terminal and add the wine Ubunutu PPA (Personal Package Archive) by typing
sudo add-apt-repository ppa:ubuntu-wine/ppa
2- Then, perform an update to the list of archives by typing sudo apt-get update
3- Wine should now be in the list, install it by typing: sudo apt-get install wine1.7

Note: wine1.7 is the latest version, I use 1.6 version. you can choose your wine version before installing by pressing Tab after typing sudo apt-get install wine

egy
  • 433
  • 2
  • 5
  • 14
  • not work in the second command me appeared the message wine1.6: Depends: wine1.6-i386...In most things I try to install says wine1.6: Depends: wine1.6-i386 – Joshuar De León Aug 20 '14 at 16:41
  • Oh sorry, my bad! I typed upgrade instead of update. I fixed it now. – egy Aug 20 '14 at 16:44
  • I changed to upgrade and the same jeeje.. !! – Joshuar De León Aug 20 '14 at 16:49
  • No, amigo. Type update not upgrade. – egy Aug 20 '14 at 16:55
  • Ok ... I changed and now says this ... The following packages have unmet dependencies:   wine1.6: Depends: wine1.6-i386 (= 1: 1.6.1-0ubuntu1 PPA1 ~ ~ precise1) but it is not installable   wine1.7: Depends: wine1.7-amd64 (= 1: 1.7.18-0ubuntu1) but will not be installed             Depends: wine1.7-i386 (= 1: 1.7.18-0ubuntu1) but it is not installable             Conflicts: wine1.6 but 1: 1.6.1-0ubuntu1 ~ ~ precise1 PPA1 will be installed E: Unmet dependencies. Try 'apt-get f install' with no packages (or specify a solution). – Joshuar De León Aug 20 '14 at 16:58
0

First of all close the terminal, Ubuntu Software Centre & Synaptics. Now open a terminal and try these steps:

sudo apt-get purge moka-gtk-theme wine1.6
sudo apt-get autoremove
sudo apt-get autoclean
sudo apt-get update
sudo apt-get install wine1.6
sudo apt-get install moka-gtk-theme

Post any error you get in any of the command.

rishiag
  • 899