NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Linux v
« Previous 1 … 10 11 12 13 14 … 34 Next »
[Obsolete] CoreElec and LibreElec as native host for NextPVR

 
  • 0 Vote(s) - 0 Average
[Obsolete] CoreElec and LibreElec as native host for NextPVR
thecubasekid
Offline

Member

UK
Posts: 72
Threads: 12
Joined: Apr 2020
#11
2021-02-24, 02:33 PM
thanks for looking

i created the scripts by connecting with SMB from a win 10 machine, created a new text document but didn't open it, then renamed accordingly and finally opened with notepad++ and pasted the lines in from this web page
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,100
Threads: 957
Joined: May 2006
#12
2021-02-24, 02:48 PM
They are still using CRLF at the bottom left click the CR LF to use LF only

Martin


Attached Files Thumbnail(s)
   
thecubasekid
Offline

Member

UK
Posts: 72
Threads: 12
Joined: Apr 2020
#13
2021-02-24, 10:11 PM
thanks - tried that and it did get further but is now complain about .net

i already installed .net core run time from CE addons, but that appears to be v3.1.5 and it looks like NPVR is looking for 3.1.0 - see below

from dotnet info;
CoreELEC_Beelink_GT1:~ # dotnet --info
It was not possible to find any installed .NET Core SDKs
Did you mean to run .NET Core SDK commands? Install a .NET Core SDK from:
https://aka.ms/dotnet-download

Host (useful for support):
Version: 3.1.5
Commit: 65cd789777

.NET Core SDKs installed:
No SDKs were found.

.NET Core runtimes installed:
Microsoft.NETCore.App 3.1.5 [/storage/.kodi/addons/tools.dotnet-runtime/bin/shared/Microsoft.NETCore.App]

To install additional .NET Core runtimes or SDKs:
https://aka.ms/dotnet-download

from NPVR service status check;

Feb 24 14:58:53 CoreELEC_Beelink_GT1 systemd[1]: Started NextPVR.
Feb 24 14:58:53 CoreELEC_Beelink_GT1 sh[3417]: It was not possible to find any compatible framework version
Feb 24 14:58:53 CoreELEC_Beelink_GT1 sh[3417]: The framework 'Microsoft.AspNetCore.App', version '3.1.0' was not found.
Feb 24 14:58:53 CoreELEC_Beelink_GT1 sh[3417]: - No frameworks were found.
Feb 24 14:58:53 CoreELEC_Beelink_GT1 sh[3417]: You can resolve the problem by installing the specified framework and/or SDK.
Feb 24 14:58:53 CoreELEC_Beelink_GT1 sh[3417]: The specified framework can be found at:
Feb 24 14:58:53 CoreELEC_Beelink_GT1 sh[3417]: - https://aka.ms/dotnet-core-applaunch?fra...re.App&fra
Feb 24 14:58:53 CoreELEC_Beelink_GT1 systemd[1]: nextpvr-server.service: Main process exited, code=exited, status=150/n/a
Feb 24 14:58:53 CoreELEC_Beelink_GT1 systemd[1]: nextpvr-server.service: Failed with result 'exit-code'.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,100
Threads: 957
Joined: May 2006
#14
2021-02-24, 10:52 PM
I have to look at my CE (I did it based on the Matrix builds) but that version should not be an issue. What actually seems to be missing is AspNetCore, which NextPVR also needs above and beyond the runtime.

Martin
thecubasekid
Offline

Member

UK
Posts: 72
Threads: 12
Joined: Apr 2020
#15
2021-02-25, 12:22 AM (This post was last modified: 2021-02-25, 12:27 AM by thecubasekid.)
OK Thanks....i tried searching addons for asp but got no results that appeared relevant, searching for net just returns the .NetCoreRunTime i already had on. maybe aspnetcore is part of the base matrix ce / ng image but not in the old non-ng images. I will have a go on a matrix box to see if i get it on or get a repeat. any how i still have docker available for s912, and i tested that on another box in the meantime with my kids small m3u, and it is pretty snappy at start up when using Matrix as the client, and seems to work pretty good so still have options to put the s912 to good use for a while yet!
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,100
Threads: 957
Joined: May 2006
#16
2021-02-25, 12:27 AM
Looking at the changelog the answer is yes https://github.com/CoreELEC/CoreELEC/blo...ngelog.txt

Martin
thecubasekid
Offline

Member

UK
Posts: 72
Threads: 12
Joined: Apr 2020
#17
2021-02-25, 12:11 PM (This post was last modified: 2021-02-25, 12:12 PM by thecubasekid.)
Thanks Martin,

i will ask on the CE forums if there is a way to get the aspnetcore from ng in to none ng, if not i guess it is back to docker (that is actually a lot better than i was expecting since the improvements with matrix addon with start up and epg load time optimization when powering the client box on)
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,100
Threads: 957
Joined: May 2006
#18
2021-02-25, 01:19 PM
It logs like the install is just using tar tor extract the binaries, shouldn't be too hard to do manually. You should be able to use the newer versions from Microsoft.

Martin
thecubasekid
Offline

Member

UK
Posts: 72
Threads: 12
Joined: Apr 2020
#19
2021-02-25, 03:28 PM
thanks Matin, i had a go earlier but didnt get any joy.

i created a folder /storage/aspnet then i took the 3.1 version tar file from this page https://docs.microsoft.com/en-us/dotnet/...al-install and copied to the new folder. i then navigated to that folder in ssh and ran the script noted on that page as below, i didnt get any error but NPVR still gives same error about missing aspnet when i try to start it.

DOTNET_FILE=aspnetcore-runtime-3.1.12-linux-arm.tar.gz
export DOTNET_ROOT=$HOME/dotnet

mkdir -p "$DOTNET_ROOT" && tar zxf "$DOTNET_FILE" -C "$DOTNET_ROOT"

export PATH=$PATH:$DOTNET_ROOT
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,100
Threads: 957
Joined: May 2006
#20
2021-02-25, 03:54 PM
I wouldn't worry too much about putting it in in the path or those environment variables, untar it and if can run a qualified path to dotnet and test with dotnet -info. Then just use that path in the .start script

Martin
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (5): « Previous 1 2 3 4 5 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Extras Tuners Not Loading on NextPVR 3.1 Linux Install Siftingice 1 18 10 hours ago
Last Post: mvallevand
  Extras Tuners Not Loading on NextPVR 3.1 Linux Install Siftingice 0 11 10 hours ago
Last Post: Siftingice
  NextPVR on Ubuntu 24.04 Server Running, Web interface not so much JeffH 15 533 2025-06-11, 05:43 PM
Last Post: mvallevand
  NextPVR can't open RAI (Italian main TV channels) links f2fg 17 3,706 2025-03-29, 10:15 AM
Last Post: alice_anto
  Guide data issue using NextPVR in a Proxmox LXC njc 10 1,261 2025-03-23, 01:40 PM
Last Post: njc
  NextPVR oddly limited to 7 tuners DaVinylSmith 4 661 2025-02-12, 02:49 PM
Last Post: DaVinylSmith
  NextPVR webserver not starting, prevents client from starting homemaisonbaile 28 2,015 2025-02-04, 05:23 PM
Last Post: mvallevand
  NextPVR 7 looses recordings after post processing ballfam 15 1,085 2024-12-20, 03:23 AM
Last Post: ballfam
  Colossus 2 and nextpvr Iriman 53 5,645 2024-12-16, 02:32 AM
Last Post: ehfortin
  NextPVR user1232 1 383 2024-11-09, 11:21 AM
Last Post: mvallevand

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode