Difference between revisions of "Installing MythTV on Ubuntu"
(Explanation of which package to choose) |
(Adding install instructions) |
||
Line 29: | Line 29: | ||
|- | |- | ||
|} | |} | ||
+ | |||
+ | =Check Available Version= | ||
+ | Check which version of your package is available as follows: | ||
+ | |||
+ | <code>sudo apt-get update<br> | ||
+ | apt-cache policy <b>packagename</b><br></code> | ||
+ | |||
+ | For <b>packagename</b> substitute one of the available names in the table above. The display will show something like this: | ||
+ | <pre> | ||
+ | peter@liberator:~$ apt-cache policy mythtv | ||
+ | mythtv: | ||
+ | Installed: (none) | ||
+ | Candidate: 2:0.27.0+fixes.20140324.8ee257c-0ubuntu3 | ||
+ | Version table: | ||
+ | 2:0.27.0+fixes.20140324.8ee257c-0ubuntu3 0 | ||
+ | 500 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/multiverse i386 Packages | ||
+ | 2:0.27.0+fixes.20140324.8ee257c-0ubuntu2 0 | ||
+ | 500 http://us.archive.ubuntu.com/ubuntu/ trusty/multiverse i386 Packages | ||
+ | </pre> | ||
+ | The number following "2:" is the Release that is available in your repository. | ||
+ | The current latest release is {{CurrentRelease}}. You will want to install this Release unless you are installing a new frontend or slave backed to a backend that runs an earlier Release. In the case of the above example you can see we do not have the latest release available in the repository. | ||
+ | =Install PPA= | ||
+ | If the version in the repository is not the latest, you will need to install a PPA. The [https://launchpad.net/~mythbuntu MythTV PPA] has a PPA for each major version of MythTV. Install the ppa using the following command: | ||
+ | |||
+ | <code>sudo add-apt-repository ppa:mythbuntu/<b>0.XX</b></code> | ||
+ | |||
+ | <b>0.XX</b> is the major version that you are installing, for example 0.27. Note that even if the Current Release ({{CurrentRelease}}) has three numbers separated by periods, the PPA name only uses the first two levels of the version number. After running this command, repeat the instructions above to check the available version. | ||
+ | =Install Software= | ||
+ | Once you have the correct Release version in your repository, install the package, as follows: | ||
+ | |||
+ | <code>sudo apt-get install <i>packagename</i><br></code> | ||
[[Category:Software Installation|1100]] | [[Category:Software Installation|1100]] |
Revision as of 23:43, 12 July 2015
This page is up-to-date as of MythTV version 0.27.6, the current release is 31.0
Contents
Introduction
This page describes how to install on Ubuntu, using the package manager.
Choose Your Package
Decide what type of installation you need.
If this is your first system and you are using a single box for recording and watching, you need a complete frontend, backend and database. Choose the mythtv package.
If you are adding a Frontend to an existing system, to allow for watching on another TV or computer system, choose the mythtv-frontend package.
If you are adding a Slave Backend use mythtv-backend. This is an advanced usage that few people will need.
There are packages for installing a complete system, or for installing parts of a multi server system.
mythtv | Complete frontend and backend system with database. |
mythtv-frontend | Frontend that connects to a separate backend. |
mythtv-backend | Backend without database. This is either a master backend where there is a separate database server or a slave backend. |
mythtv-backend-master | Master Backend with database. |
mythtv-database | MythTV database only. Advanced use where there is a separate database server from backend. You will need to also install mysql server when using this. |
mythplugins | Plugins for a frontend system. |
Check Available Version
Check which version of your package is available as follows:
sudo apt-get update
apt-cache policy packagename
For packagename substitute one of the available names in the table above. The display will show something like this:
peter@liberator:~$ apt-cache policy mythtv mythtv: Installed: (none) Candidate: 2:0.27.0+fixes.20140324.8ee257c-0ubuntu3 Version table: 2:0.27.0+fixes.20140324.8ee257c-0ubuntu3 0 500 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/multiverse i386 Packages 2:0.27.0+fixes.20140324.8ee257c-0ubuntu2 0 500 http://us.archive.ubuntu.com/ubuntu/ trusty/multiverse i386 Packages
The number following "2:" is the Release that is available in your repository. The current latest release is 31.0. You will want to install this Release unless you are installing a new frontend or slave backed to a backend that runs an earlier Release. In the case of the above example you can see we do not have the latest release available in the repository.
Install PPA
If the version in the repository is not the latest, you will need to install a PPA. The MythTV PPA has a PPA for each major version of MythTV. Install the ppa using the following command:
sudo add-apt-repository ppa:mythbuntu/0.XX
0.XX is the major version that you are installing, for example 0.27. Note that even if the Current Release (31.0) has three numbers separated by periods, the PPA name only uses the first two levels of the version number. After running this command, repeat the instructions above to check the available version.
Install Software
Once you have the correct Release version in your repository, install the package, as follows:
sudo apt-get install packagename