尝试安装 MySQL 时出现“无法找到包 mysql-server”

尝试安装 MySQL 时出现“无法找到包 mysql-server”
$ sudo apt-get install mysql-server
[sudo] password for user: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package mysql-server

我正在使用 Ubuntu 14.04。

答案1

mysql-server 是一个依赖于最新版本的 mysql-server 的元包,因此不需要安装。打开终端并输入:

sudo apt-get update
sudo apt-get install aptitude
sudo aptitude install mysql-server-5.5 mysql-server-core-5.5

答案2

您应该首先打开终端并输入以下内容来检查您正在搜索的包是否存在:

apt search <your package name>

通过输入选择要安装的软件包

sudo apt-get install <the package name you found after searching>

您也可以在突触包管理器应用程序中执行此操作。

相关内容