Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

TVHEADEND Install? and Debian Buster "10"

New to Debian (Or Linux in general)? Ask your questions here!
Post Reply
Message
Author
JeSuisFlaneur
Posts: 74
Joined: 2019-08-28 16:00
Has thanked: 5 times

TVHEADEND Install? and Debian Buster "10"

#1 Post by JeSuisFlaneur »

GitHub, holder of tvheadend, sends me to JFrog to obtain the executables https://bintray.com/tvheadend/deb JFrog's commands fail.

Code: Select all

mark@Lexington:~$ sudo apt-add-repository "https://dl.bintray.com/tvheadend/deb COMPONENT" 
mark@Lexington:~$ sudo apt-get update
Hit:1 http://deb.debian.org/debian buster InRelease
Get:2 http://security.debian.org/debian-security buster/updates InRelease [65.4 kB]
Hit:3 http://deb.debian.org/debian buster-updates InRelease                    
Ign:4 https://dl.bintray.com/tvheadend/deb buster InRelease                    
Err:5 https://dl.bintray.com/tvheadend/deb buster Release
  404  Not Found [IP: 52.35.230.20 443]
Ign:6 http://ppa.launchpad.net/ozmartian/apps/ubuntu focal InRelease
Err:7 http://ppa.launchpad.net/ozmartian/apps/ubuntu focal Release
  404  Not Found [IP: 2001:67c:1560:8008::15 80]
Reading package lists... Done
E: The repository 'https://dl.bintray.com/tvheadend/deb buster Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'http://ppa.launchpad.net/ozmartian/apps/ubuntu focal Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
mark@Lexington:~$ sudo apt-get install tvheadend
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package tvheadend
How do I remove the problems from the repos this caused and can the PGP be removed as well? Or is this repairable with proper (accurate?) CLI?


User avatar
stevepusser
Posts: 12930
Joined: 2009-10-06 05:53
Has thanked: 41 times
Been thanked: 72 times

Re: TVHEADEND Install? and Debian Buster "10"

#3 Post by stevepusser »

Code: Select all

mark@Lexington:~$ sudo apt-add-repository "https://dl.bintray.com/tvheadend/deb COMPONENT" 
The instructions clearly state that you replace COMPONENT with one of these.
* release - for the latest official release
* stable - for nightly build of latest release branch (will pick up fixes quicker than release)
* unstable - for nightly build of master branch (don't use on production systems)
* obsolete - historic 3.4 build to keep older users happy

To use the repository:

$ sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 379CE192D401AB61
$ sudo apt-add-repository "https://dl.bintray.com/tvheadend/deb COMPONENT"
// COMPONENT is one of the above components
But you may also already wrecked your system with that separate ozmartian Ubuntu focal PPA.
MX Linux packager and developer

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: TVHEADEND Install? and Debian Buster "10"

#4 Post by Head_on_a_Stick »

stevepusser wrote:But you may also already wrecked your system with that separate ozmartian Ubuntu focal PPA.
The error message says that repository is disabled. Thankfully.

@OP: remove the added sources and use a snap package instead, as arochester suggests.

Find the files containing the repositories with

Code: Select all

grep 'ozmartin\|tvheadend' /etc/apt.sources.list{,.d/*}
deadbang

JeSuisFlaneur
Posts: 74
Joined: 2019-08-28 16:00
Has thanked: 5 times

Re: TVHEADEND Install? and Debian Buster "10"

#5 Post by JeSuisFlaneur »

to: stevepusser -- maybe that is clear to you but I thought COMPONENT means just that. You can call me stupid!

to: Head_on_a_Stick

Code: Select all

grep 'ozmartin\|tvheadend' /etc/apt.sources.list{,.d/*}

mark@Lexington:/$ grep 'ozmartin\|tvheadend' /etc/apt.sources.list{,.d/*}
grep: /etc/apt.sources.list: No such file or directory
grep: /etc/apt.sources.list.d/*: No such file or directory
and

sudo nano /etc/apt/sources.list shows:

deb https://dl.bintray.com/tvheadend/deb buster stable
# deb-src https://dl.bintray.com/tvheadend/deb buster stable
# deb-src https://dl.bintray.com/tvheadend/deb buster stable

to: arochster

mark@Lexington:/$ sudo snap install tvheadend

error: cannot communicate with server: Post http://localhost/v2/snaps/tvheadend: dial unix /run/snapd.socket: connect: no such file or directory

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: TVHEADEND Install? and Debian Buster "10"

#6 Post by Head_on_a_Stick »

JeSuisFlaneur wrote:

Code: Select all

mark@Lexington:/$ grep 'ozmartin\|tvheadend' /etc/apt.sources.list{,.d/*}
grep: /etc/apt.sources.list: No such file or directory
grep: /etc/apt.sources.list.d/*: No such file or directory
Oops, sorry, typo. That should have been:

Code: Select all

grep 'ozmartin\|tvheadend' /etc/apt/sources.list{,.d/*}
JeSuisFlaneur wrote:

Code: Select all

error: cannot communicate with server: Post http://localhost/v2/snaps/tvheadend: dial unix /run/snapd.socket: connect: no such file or directory
Is the snapd service & socket enabled & running?

Code: Select all

systemctl status snapd.{service,socket}
deadbang

Post Reply