Como instalar com segurança o mysql 5.6 contra o akonadi-backend-mysql no Kubuntu 14.04?

1

Isso resulta de a instalação do kubuntu-desktop falhou em dependências não atendidas . Eu acho que perdi meu desktop kubuntu após a instalação do mysql 5.6. Recuperei a área de trabalho instalando o kubuntu-desktop e akonadi-backend-mysql que depende do mysql 5.5.

Quando recuperei o desktop, o MySQL 5.6 anteriormente instalado foi removido e esses dois arquivos não foram encontrados no diretório /var/run/mysqld/ .

/var/run/mysqld/mysqld.pid
/var/run/mysqld/mysqld.sock

Ainda tenho os arquivos de configuração

/etc/mysql/my.conf
/etc/mysql/conf.d/my5.6.conf

e os bancos de dados no diretório de dados

/var/lib/mysql/

Eu terei que instalar o MySQL 5.6, mas minha preocupação é que o akonadi-backend-mysql não funcione com o 5.6. Eu encontrei esse tipo de bug relatado . Aqui estão alguns dos meus detalhes:

sudo apt-cache depends akonadi-backend-mysql
[sudo] password for sithu: 
akonadi-backend-mysql
 |Depends: mysql-server-core-5.5
  Depends: mariadb-server-core-5.5
 |Depends: mysql-client-core-5.5
  Depends: mariadb-client-core-5.5
  Depends: libqt4-sql-mysql
  Recommends: akonadi-server
  Breaks: akonadi-server
  Replaces: akonadi-server


sithu@sithu-kubuntu:~$ sudo apt-cache policy akonadi-backend-mysql
akonadi-backend-mysql:
  Installed: 1.12.1-0ubuntu1.2
  Candidate: 1.12.1-0ubuntu1.2
  Version table:
 *** 1.12.1-0ubuntu1.2 0
        500 http://security.ubuntu.com/ubuntu/ trusty-security/universe i386 Packages
        100 /var/lib/dpkg/status
     1.12.1-0ubuntu1 0
        500 http://mm.archive.ubuntu.com/ubuntu/ trusty/universe i386 Packages


sithu@sithu-kubuntu:~$ sudo apt-get install mysql-server-5.6
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 mysql-server-5.6 : Depends: mysql-client-5.6 (>= 5.6.33-0ubuntu0.14.04.1) but it is not going to be installed
                    Depends: mysql-server-core-5.6 (= 5.6.33-0ubuntu0.14.04.1) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.


sithu@sithu-kubuntu:~$ sudo apt-get install mysql-client-5.6 mysql-client-core-5.6
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 mysql-client-core-5.6 : Breaks: mysql-client-core-5.5 but 5.5.53-0ubuntu0.14.04.1 is to be installed
E: Unable to correct problems, you have held broken packages.

Isso resulta em unmet dependencies: mysql-client-core-5.6 : Breaks: mysql-client-core-5.5 but 5.5.53-0ubuntu0.14.04.1 is to be installed .

Então, minha pergunta é

  1. É seguro instalar o MySQL 5.6 contra akonadi-backend-mysql ?
  2. Como instalá-lo sem invadir minha área de trabalho novamente?

Minha distro é o Kubuntu 14.04 LTS.

sithu@sithu-kubuntu:~$ lsb_release -a
No LSB modules are available.                                                                                         
Distributor ID: Ubuntu                                                                                                
Description:    Ubuntu 14.04.1 LTS                                                                                    
Release:        14.04                                                                                                 
Codename:       trusty
    
por Sithu 20.12.2016 / 17:06

1 resposta

0

Instalei MariaDB 10.1 com recursos do MySQL 5.6 & amp; 5,7 e tudo está indo bem.

sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db
sudo add-apt-repository 'deb [arch=amd64,i386,ppc64el] http://ftp.kaist.ac.kr/mariadb/repo/10.1/ubuntu trusty main'
sudo apt-get update
sudo apt-get install mariadb-server
    
por Sithu 21.12.2016 / 17:20