I can not install anything in ubuntu [closed]

0

When I want to install an app on ubuntu 16.04 it sends me the same error, for example I want to install Wine and it tells me this:

jp@JP:/var/www/html/ebook$ sudo sudo apt install wine-stable
Leyendo lista de paquetes... Hecho
Creando árbol de dependencias       
Leyendo la información de estado... Hecho
Tal vez quiera ejecutar «apt-get -f install» para corregirlo:
Los siguientes paquetes tienen dependencias incumplidas:
mysql-server : Depende: mysql-server-5.7 pero no va a instalarse
 wine-stable : Depende: wine64 (>= 1.8.5-1ubuntu2) pero no va a instalarse o
                    wine32 (>= 1.8.5-1ubuntu2)
           Depende: wine64 (< 1.8.5-1ubuntu2.1~) pero no va a instalarse o
                    wine32 (< 1.8.5-1ubuntu2.1~)
E: Dependencias incumplidas. Intente «apt-get -f install» sin paquetes (o especifique una solución).

I always have the mysterious error of mysql

    
asked by José Pablo Santizo 17.10.2017 в 04:09
source

2 answers

1

Execute these commands:

sudo apt-get autoremove; sudo apt-get autoclean; sudo apt-get update; sudo apt-get -f install;

This should solve the problem. If it were not, please edit the question and add new information.

    
answered by 19.02.2018 в 09:22
0

Execute sudo apt-get -f install in the terminal. If it does not work for you, you should find out the version of mysql-server that is compatible with wine-stable and install it.

    
answered by 17.10.2017 в 04:59