How can I install the most recent Ubuntu xenial stable release?
Added by Stephen Avis about 7 years ago
I have a fully updated Lubuntu 16.04 LTS system.
I followed the instructions on the site:
sudo apt-get update
sudo apt-get install tvheadend
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 379CE192D401AB61
echo "deb https://dl.bintray.com/tvheadend/deb xenial stable-4.2" | sudo tee -a /etc/apt/sources.list
sudo apt-get update
sudo apt-get install tvheadend
However no tvheadend package was found.
By changing sources.list to point to release-4.2 I was able to install version 4.2.3.
How should I set my sources.list to always install the most recent stable version?
Replies (2)
RE: How can I install the most recent Ubuntu xenial stable release? - Added by saen acro about 7 years ago
Use
cat /etc/apt/sources.list
to see is
deb https://dl.bintray.com/tvheadend/deb xenial
are in list.
---------------------
You can easy make packages of stable branch 4.2
just clone
git clone -b release/4.2 https://github.com/tvheadend/tvheadend.git
then you can continue with http://tvheadend.org/boards/4/topics/24116
RE: How can I install the most recent Ubuntu xenial stable release? - Added by Stephen Avis about 7 years ago
Thanks. Opps, after a bit I realised that I hadn't read the note at the top of the Download page where it said that stable-4.2 was missing from the bintray repository
I purged the release-4.2 and installed the directly downloaded stable-4.2 deb.
All seems well.