NextPVR Forums
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR v5 Support Linux v
« Previous 1 9 10 11 12 13
Install issue

 
  • 0 Vote(s) - 0 Average
Install issue
sub
Online

Administrator

NextPVR HQ, New Zealand
Posts: 96,890
Threads: 676
Joined: Nov 2003
#31
2019-06-18, 02:12 AM
It's still fairly early days for me understanding the best way to approach these sorts of issues when users have them on Linux.

A couple of options:
1) you temporarily allow me to remote in to this Linux box via ssh, adding port 22 port forwarding in your router to whatever the Linux machine is, with this I can run the debug session from here, and watch where it crashes. I'd only need access for 20 minutes or so.
2) or you try running:
Code:
gdb ./DeviceHostLinux -device:adapter0 -type:ATSC -parent:0 -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB
run
and when it segfaults try typing 'backtrace'.

The first of those would be the most straight forward. For the second, it might give us a bit more to go on, but we may have to repeat the process with a debug build to get better info.
shspvr
Offline

Senior Member

Posts: 391
Threads: 30
Joined: Jan 2004
#32
2019-06-18, 02:29 AM
sub Wrote:It's still fairly early days for me understanding the best way to approach these sorts of issues when users have them on Linux.

A couple of options:
1) you temporarily allow me to remote in to this Linux box via ssh, adding port 22 port forwarding in your router to whatever the Linux machine is, with this I can run the debug session from here, and watch where it crashes. I'd only need access for 20 minutes or so.
2) or you try running:
Code:
gdb ./DeviceHostLinux -device:adapter0 -type:ATSC -parent:0 -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB
run
and when it segfaults try typing 'backtrace'.

The first of those would be the most straight forward. For the second, it might give us a bit more to go on, but we may have to repeat the process with a debug build to get better info.
Well this what got back
gdb: unrecognized option '-device:adapter0'
Use `gdb --help' for a complete list of options.
sub
Online

Administrator

NextPVR HQ, New Zealand
Posts: 96,890
Threads: 676
Joined: Nov 2003
#33
2019-06-18, 02:32 AM
Sorry, try:

gdb --args ./DeviceHostLinux -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB

run

backtrace
shspvr
Offline

Senior Member

Posts: 391
Threads: 30
Joined: Jan 2004
#34
2019-06-18, 02:43 AM
sub Wrote:Sorry, try:

gdb --args ./DeviceHostLinux -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB

run

backtrace

Program received signal SIGSEGV, Segmentation fault.
__GI___libc_free (mem=0x4) at malloc.c:3109
3109 malloc.c: No such file or directory.
(gdb) backtrace
#0 __GI___libc_free (mem=0x4) at malloc.c:3109
#1 0x000055555557fa23 in dvb_file_free ()
at /usr/include/libdvbv5/dvb-file.h:265
#2 run_scan () at /home/graeme/projects/DeviceHostLinux/scanv5.cpp:517
#3 scanmain () at /home/graeme/projects/DeviceHostLinux/scanv5.cpp:778
#4 0x0000555555559fd7 in scanStart ()
at /home/graeme/projects/DeviceHostLinux/main.cpp:492
#5 0x0000555555558bb2 in main ()
at /home/graeme/projects/DeviceHostLinux/main.cpp:756
sub
Online

Administrator

NextPVR HQ, New Zealand
Posts: 96,890
Threads: 676
Joined: Nov 2003
#35
2019-06-18, 03:21 AM
Can you try replacing your DeviceHostLinux with this newer version, and run:

./DeviceHostLinux -verbose -device:adapter0 -type:ATSC -parent:0 -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB

This version should generate more logging. Hopefully something useful.
shspvr
Offline

Senior Member

Posts: 391
Threads: 30
Joined: Jan 2004
#36
2019-06-18, 03:43 AM
sub Wrote:Can you try replacing your DeviceHostLinux with this newer version, and run:

./DeviceHostLinux -verbose -device:adapter0 -type:ATSC -parent:0 -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB

This version should generate more logging. Hopefully something useful.

come before as so run gdb
Program received signal SIGSEGV, Segmentation fault.
__GI___libc_free (mem=0x4) at malloc.c:3109
3109 malloc.c: No such file or directory.
(gdb) backtrace
#0 __GI___libc_free (mem=0x4) at malloc.c:3109
#1 0x000055555557fb33 in dvb_file_free () at /usr/include/libdvbv5/dvb-file.h:265
#2 run_scan () at /home/graeme/projects/DeviceHostLinux/scanv5.cpp:517
#3 scanmain () at /home/graeme/projects/DeviceHostLinux/scanv5.cpp:785
#4 0x0000555555559ff9 in scanStart () at /home/graeme/projects/DeviceHostLinux/main.cpp:493
#5 0x0000555555558bd9 in main () at /home/graeme/projects/DeviceHostLinux/main.cpp:761
sub
Online

Administrator

NextPVR HQ, New Zealand
Posts: 96,890
Threads: 676
Joined: Nov 2003
#37
2019-06-18, 03:50 AM
Running outside of gdb, did it produce more logging?
shspvr
Offline

Senior Member

Posts: 391
Threads: 30
Joined: Jan 2004
#38
2019-06-18, 04:10 AM
sub Wrote:Running outside of gdb, did it produce more logging?

Nope just some old message as before
shspvr
Offline

Senior Member

Posts: 391
Threads: 30
Joined: Jan 2004
#39
2019-06-18, 09:17 PM
I tested reg Ubuntu 19.04 it was the same as PoP_OS any way the Command ./DeviceHostLinux -device:adapter0 -type:ATSC -parent:0 -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB seem be working under 18.0.4.2 just fine so what ever the problem is with 19.04 as both PoP_OS and Ubuntu are doing it which a real drag as is less bugg at leases for me.
sub
Online

Administrator

NextPVR HQ, New Zealand
Posts: 96,890
Threads: 676
Joined: Nov 2003
#40
2019-06-18, 09:40 PM
shspvr Wrote:I tested reg Ubuntu 19.04 it was the same as PoP_OS any way the Command ./DeviceHostLinux -device:adapter0 -type:ATSC -parent:0 -scan:/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB seem be working under 18.0.4.2 just fine so what ever the problem is with 19.04 as both PoP_OS and Ubuntu are doing it which a real drag as is less bugg at leases for me.
Ok good to know. I'll try PoP_OS when I get a chance.

I was thinking about it last night, and I suspect it'll come down to the version of libdvbv5. It possible this distribution is using an older version.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (13): « Previous 1 2 3 4 5 6 … 13 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  Fresh Install - no playback OSD in Kodi/knewc baj1 17 330 3 hours ago
Last Post: mvallevand
  1 radio frequency playback issue bisonfan 15 244 2021-01-08, 11:06 PM
Last Post: mvallevand
  Arch x64 install fails ATSC scan ("status":"Error: No such file or directory") jwh7 18 948 2020-11-27, 05:52 PM
Last Post: jwh7
  New Install can't record or play live TV SailTV 8 392 2020-11-08, 05:14 PM
Last Post: mvallevand
  Watch now issue bader77uk 74 3,455 2020-08-02, 01:48 PM
Last Post: bader77uk
  New Install, Can't Watch or Record MikeN2020 6 566 2020-07-24, 05:03 PM
Last Post: mvallevand
  New Linux install - can't watch live TV AMD 5 662 2020-07-13, 07:12 AM
Last Post: mvallevand
  Cannot stream live TV after new install rosede 16 1,287 2020-06-08, 11:44 AM
Last Post: rosede
  UI issue in Channels > Advanced rkulagow 2 299 2020-05-15, 12:01 AM
Last Post: sub
  Install v5 for Linux on LibreElec scotrich99 2 764 2020-05-02, 03:51 PM
Last Post: Sim0n

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

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

Linear Mode
Threaded Mode