MythTV 从 0.25 升级至 0.27 失败

MythTV 从 0.25 升级至 0.27 失败

我使用的是 ubuntu 12.10。我从软件中心安装了 MythTV,安装了 0.25。该版本不再受支持,因此我选择使用以下命令安装 0.27:

sudo add-apt-repository ppa:mythbuntu/0.27 
sudo apt-get update
sudo apt-get install mythtv

安装结果:

mythtv is already the newest version.
The following packages were automatically installed and are no longer required:
  apache2-mpm-prefork apache2-utils apache2.2-common libapache2-mod-php5
  libctemplate2 libzip2 mysql-utilities php-mythtv php5 php5-cli php5-common
  php5-mysql python-mysql.connector python-pysqlite2
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

我的MythTV版本还是0.25。

我尝试删除 MySQL 和 MythTV 多次,然后使用上述代码重新安装 MythTV,但无法安装 0.27。Synaptic 软件包管理器未显示任何 MythTV 升级。到底发生了什么?我该如何升级 MythTV?

答案1

我使用 Mythbuntu PPA 来保持更新。

sudo add-apt-repository ppa:mythbuntu/0.27
sudo apt-get update
sudo apt-get install mythtv

查找有关Launchpad 上的 Mythbuntu PPA

编辑:

如果 Mythbuntu PPA 没有出现在 Synaptic 或软件源中,请检查您的/etc/apt/sources.list文件。它应该包含以下条目:

deb http://ppa.launchpad.net/mythbuntu/0.27/ubuntu precise main  <-- Binary
deb-src http://ppa.launchpad.net/mythbuntu/0.27/ubuntu precise main  <--Source

或者通过软件源添加它们,通过使用上述 PPA URI 手动添加 PPA,二进制和源各一个条目,其中precise分发为条目,main组件为字段条目。

然后运行

sudo apt-get update

如果您想安装 MythTV 服务器(后端):

sudo apt-get install mythtv-backend-master

或者

sudo apt-get install mythtv-frontend

用于 MythTV 前端客户端。

相关内容