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 2 3 4 5 … 34 Next »
Please assist with clearer setup instructions

 
  • 0 Vote(s) - 0 Average
Please assist with clearer setup instructions
JonnyGators
Offline

Junior Member

USA
Posts: 43
Threads: 1
Joined: Aug 2024
#11
2024-08-15, 09:28 PM
(2024-08-15, 09:23 PM)mvallevand Wrote: If you can install Docker that outside of NextPVR's scope, I did suggest try LibreELEC if you have no skills but since you set up OMV I assume that you can read your way through the wiki.

Are you using the IP of your Docker and running bridge mode maybe try host mode to make things easier.  Again that would be Docker configuration.

Once you get Docker running it is almost ridiculously simple to install and HDHR especially if you use Schedules Direct https://www.youtube.com/watch?v=lYuG6670bMo  I can walk you through the my utility that will create and XMLTV file once you get NextPVR running (ignore the EPG part of that video)

Martin

I have no idea what any of this means.

This is yet another response that is not a set of step by step instructions one can follow to set this up.


Attached Files Thumbnail(s)
   
JonnyGators
Offline

Junior Member

USA
Posts: 43
Threads: 1
Joined: Aug 2024
#12
2024-08-15, 09:30 PM
Everyone seems to be under the impression I can install it or have installed it.


No!


I cannot make sense of any of this to install anything.



Please - instructions! Everything you do is completely useless, if no one can figure out what to do with that work due to the lack of clear instructions.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,659
Threads: 767
Joined: Nov 2003
#13
2024-08-15, 09:32 PM
(2024-08-15, 09:30 PM)JonnyGators Wrote: Everyone seems to be under the impression I can install it or have installed it.


No!


I cannot make sense of any of this to install anything.



Please - instructions! Everything you do is completely useless, if no one can figure out what to do with that work due to the lack of clear instructions.
No we are not. I only briefly thought that when you incorrectly made it sound like you had installed it.

Since then I've been saying we don't know anything about Open Media Vault. Your difficulties here are to do with Open Media Vault.
JonnyGators
Offline

Junior Member

USA
Posts: 43
Threads: 1
Joined: Aug 2024
#14
2024-08-15, 09:34 PM
(2024-08-15, 09:23 PM)sub Wrote:
Quote:Reading back over this thread - no one is listening to me, no one is answering my questions.
I think it's more a case of we don't know anything about Open Media Vault. I can't even picture what you're trying to do there to get it installed, so pretty hard to make suggestions.

But the link that was provided included information, that you yourself provided, in doing this with docker-compose.  

But only as like an afterthought, and without any information about any of the other stuff.


How do you set this up, step by step, beginning to end, using something like OMV that uses docker-compose?
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,659
Threads: 767
Joined: Nov 2003
#15
2024-08-15, 09:38 PM
I don't know how you'd do it in Open Media Vault.

Normally with a docker-compose file in a directory of your choosing, you'd just run the following to start it (in Linux or Windows or Mac), from the same directory as the file.
Code:
docker-compose up

If you need additional drivers mapped into container you'd include these in your docker-compose.yml. Ultimately, these changes would depend what you want to map into the container, so not shown in the example.

Likewise, if you're using legacy HDHR, you may need to include that range of ports, and the HOST_IP environment variable.
JonnyGators
Offline

Junior Member

USA
Posts: 43
Threads: 1
Joined: Aug 2024
#16
2024-08-15, 09:43 PM
This makes no sense.


I don't understand why you can't figure out how to properly setup a docker-container for this.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,830
Threads: 954
Joined: May 2006
#17
2024-08-15, 09:46 PM
First start with the OMV Docker instructions (it is not trivial)

https://www.wundertech.net/how-to-instal...ediavault/

Then check out this link for Docker OMV https://forums.nextpvr.com/showthread.php?tid=61060 you will need to add a line to access your legacy device.

If you can't get that going you probably need to spend more time reading and less posting. Again that is all Docker support not NextPVR.

Martin
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,659
Threads: 767
Joined: Nov 2003
#18
2024-08-15, 09:49 PM
(2024-08-15, 09:43 PM)JonnyGators Wrote: This makes no sense.


I don't understand why you can't figure out how to properly setup a docker-container for this.
I just tried it here. These are the exact steps I did...

Created a c:\test directory. In that test directory, I created a docker-compose.yml, with the following in it:

Code:
version: '3.5'
services:
  nextpvr:
    image: nextpvr/nextpvr_amd64:stable
    container_name: nextpvr
    environment:
      - PUID=1000
      - PGID=100
      - TZ=Europe/london
    ports:
      - 8866:8866
      - 16891:16891/udp
    volumes:
      - d:/docker/config:/config
      - d:/docker/recordings:/recordings
      - d:/docker/buffer:/buffer
    restart: 'unless-stopped'

I then ran the following:
Code:
docker-compose up

NextPVR is now running, and I can view it in my browser at http://localhost:8866
JonnyGators
Offline

Junior Member

USA
Posts: 43
Threads: 1
Joined: Aug 2024
#19
2024-08-15, 09:53 PM
(2024-08-15, 09:46 PM)mvallevand Wrote: First start with the OMV Docker instructions (it is not trivial)

https://www.wundertech.net/how-to-instal...ediavault/

Then check out this link for Docker OMV https://forums.nextpvr.com/showthread.php?tid=61060  you will need to add a line to access your legacy device.

If you can't get that going you probably need to spend more time reading and less posting.  Again that is all Docker support not NextPVR.

Martin

I have docker installed on OMV.

However, I've only known it to work right by the specific method I've referenced multiple times over the course of this thread, which seems to go ignored.

Which uses docker compose.

The ONLY thing I"ve found that you've provided that even REFERENCES  or ACKNOWLEDGES docker compose is this:

version: '3.5'
services:
  nextpvr:
    image: nextpvr/nextpvr_amd64Confusedtable
    container_name: nextpvr
    environment:
      - PUID=1000
      - PGID=100
      - TZ=Europe/london
    ports:
      - 8866:8866

So I posted that in, and it created something - but it doesn't work.  It does nothing!

YOu keep doing vague things like referencing " you will need to add a line to access your legacy device.", and posting links to docker syntax that is COMPLETELY DIFFERENT from docker compose syntax, which is all I know how to make work right in OMV!

And again - NONE OF THIS ARE INSTRUCTIONS!!!!!!!!

Just little fragments of useful or useless information.


Why can NO ONE provide ANYTHING that passes as useful instructions anymore?
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,830
Threads: 954
Joined: May 2006
#20
2024-08-15, 09:55 PM (This post was last modified: 2024-08-15, 09:55 PM by mvallevand.)
Are you running Docker on Intel/AMD?

Martin
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

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


Possibly Related Threads…
Thread Author Replies Views Last Post
  Linux setup - Help a Windows user... prothed 18 2,375 2024-06-03, 11:08 AM
Last Post: Rod Hutchinson
  VOD setup matt77303 19 6,216 2023-08-14, 07:25 PM
Last Post: xbmcgotham
  New linux setup extras help greatwhitenorth 8 2,147 2023-01-26, 07:11 PM
Last Post: mvallevand
  Pi4 and best possible low-power setup? TheRealRoland 2 1,243 2020-11-13, 09:33 AM
Last Post: ceejayemm
  setup question DAFFY2020 18 3,780 2020-09-20, 01:35 AM
Last Post: sub
  HP mini remote setup for NextPVR/Kodi bluesight 0 892 2020-05-13, 08:06 PM
Last Post: bluesight

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

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

Linear Mode
Threaded Mode