Project

General

Profile

SOLVED: tvheadend on Banana Pi under Lubuntu 14.04

Added by Sebastian Gallehr almost 10 years ago

I want to install tvheadend on Lubuntu 14.04 in a banana pi. S I've done:

sudo apt install curl
curl http://apt.tvheadend.org/repo.gpg.key | sudo apt-key add -
sudo apt-add-repository http://apt.tvheadend.org/stable
sudo apt update
sudo apt install tvheadend

But after "apt install tvheadend" it says:
E: Paket tvheadend kann nicht gefunden werden.

Can somebody help?


Replies (5)

RE: tvheadend on Banana Pi under Lubuntu 14.04 - Added by Prof Yaffle almost 10 years ago

Banana Pi is ARM, isn't it? Looks like there aren't ARM builds for Trusty, only Debian Wheezy:

http://apt.tvheadend.org/stable/pool/main/t/tvheadend/

Either build from source or try grabbing the Debian .deb and installing with dpkg would be my guess - assuming ARMhf is the right architecture for you.

RE: tvheadend on Banana Pi under Lubuntu 14.04 - Added by Sebastian Gallehr almost 10 years ago

Thank you for the hint. Yes, Banana Pi is ARM. But ubuntu is also a debian based distribution as far as I know. So it should work?

After sudo apt update the following message returns (hope you can understand german):

W: Fehlschlag beim Holen von http://apt.tvheadend.org/stable/dists/trusty/InRelease Erwarteter Eintrag »main/binary-armhf/Packages« konnte in Release-Datei nicht gefunden werden (falscher Eintrag in sources.list oder missgebildete Datei).

Maybe I can add those package »main/binary-armhf/Packages« manually?

RE: tvheadend on Banana Pi under Lubuntu 14.04 - Added by B C almost 10 years ago

this means you have an error in /etc/apt/sources.list. As Long as apt update complains it will not work

RE: tvheadend on Banana Pi under Lubuntu 14.04 - Added by Sebastian Gallehr almost 10 years ago

yes. But I can not see any unusual things in my sources.list. So I thought I should fix the "main/binary-armhf/Packages" problem.

Here is my sources.list:

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.

deb http://ports.ubuntu.com/ubuntu-ports/ trusty main restricted
deb-src http://ports.ubuntu.com/ubuntu-ports/ trusty main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://ports.ubuntu.com/ubuntu-ports/ trusty-updates main restricted
deb-src http://ports.ubuntu.com/ubuntu-ports/ trusty-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://ports.ubuntu.com/ubuntu-ports/ trusty universe
deb-src http://ports.ubuntu.com/ubuntu-ports/ trusty universe
deb http://ports.ubuntu.com/ubuntu-ports/ trusty-updates universe
deb-src http://ports.ubuntu.com/ubuntu-ports/ trusty-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://ports.ubuntu.com/ubuntu-ports/ trusty multiverse
deb-src http://ports.ubuntu.com/ubuntu-ports/ trusty multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ trusty-updates multiverse
deb-src http://ports.ubuntu.com/ubuntu-ports/ trusty-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
# deb http://ports.ubuntu.com/ubuntu-ports/ trusty-backports main restricted universe multiverse
# deb-src http://ports.ubuntu.com/ubuntu-ports/ trusty-backports main restricted universe multiverse

deb http://ports.ubuntu.com/ubuntu-ports/ trusty-security main restricted
deb-src http://ports.ubuntu.com/ubuntu-ports/ trusty-security main restricted
deb http://ports.ubuntu.com/ubuntu-ports/ trusty-security universe
deb-src http://ports.ubuntu.com/ubuntu-ports/ trusty-security universe
deb http://ports.ubuntu.com/ubuntu-ports/ trusty-security multiverse
## deb http://apt.tvheadend.org/stable trusty main
## deb-src http://apt.tvheadend.org/stable trusty main
deb http://apt.tvheadend.org/stable trusty main
# deb-src http://apt.tvheadend.org/stable trusty main
deb-src http://ports.ubuntu.com/ubuntu-ports/ trusty-security multiverse

SOLVED: tvheadend on Banana Pi under Lubuntu 14.04 - Added by Sebastian Gallehr almost 10 years ago

thanks to the following little tut from "Lars", who has send an eMail to me due to not having an account, installation has been succesful :-)

sudo su
echo "deb http://apt.tvheadend.org/stable wheezy main" >> /etc/apt/sources.list
wget http://apt.tvheadend.org/stable/repo.gpg.key -O - | sudo apt-key add -
apt-get update
apt-get install tvheadend
    (1-5/5)