NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Legacy (v4.x and earlier) v
« Previous 1 … 145 146 147 148 149 … 433 Next »
NextPVR on Linux?

NextPVR on Linux?
Reddwarf
Offline

Posting Freak

Posts: 6,629
Threads: 230
Joined: Mar 2007
#11
2016-01-29, 10:34 PM
HarryH3 Wrote:Just looking at if from a different direction... If your main intent is to avoid Windows 10, then don't install Windows 10. Wink Windows 7 and 8.1 will continue to work for many years. I've played with 10 in a VM, but don't really see any reason to take the plunge, especially with Micosoft's "WE will decide when your OS will get updated" mentality. Sad
The automatic update can be avoided, but I agree that Windows 7 is a much better choice, most of the bugs are hunted down now and it is very stable. I still run my Win 7 on my htpc and have no plans to change that.

"I'd rather have a bottle in front of me than a frontal lobotomy"
christheman
Offline

Member

Posts: 104
Threads: 14
Joined: Apr 2014
#12
2016-01-30, 05:17 AM (This post was last modified: 2016-01-30, 05:21 AM by christheman.)
mvallevand Wrote:I would start be seeing if you can get Hauppauge Capture running in Linux with Wine using your HDPVR2

Martin

Thanks for getting back, you guys are great.

I will try and address these posts.

I tried this first tonight. So far I only tried the software on the CD provided with the HD-PVR2. It includes a Windows installer, and different INF files and directories. I tried the install wizard in Crossover (Wine), and it couldn't see the device. So that method is out, and I am not too crazy about trying it in VirtualBox - for reasons sub provided.

However, in Linux, I issued the terminal command "LSUSB" to list all the USB busses, and it definitely saw my device. The HD-PVR2 showed up as "Hauppauge" under "/dev/bus/usb/002/004" (the 4th device on the 2nd USB bus). The installation CD also showed up, under a different USB entry. I'll bet that is different from the Windows convention, in addition to multiple other things.

There is however an uncompiled cross-platform driver for Linux. This is only for the HD-PVR2 Gaming Edition, which I happen to have. This is the original version without the IR Blaster.

http://www.hauppauge.com/site/support/linux.html#tabs-3

It would have been nice if they also provided a compiled .deb file - like an .exe or .msi file in Windows. So that is about as far as I think I will go with that for right now.. LOL. If I get into compiling things, then I might try doing that.

---------------

Other thoughts are that I see my Windows setup directory has installation files for NextPVR, Microsoft .NET 4, and Visual C Redist 2008. At the least, Linux Mint has a large package in its repository called "Mono" which is the native way in Linux to use .NET programming, though it would probably need to be recompiled with a Linux compiler. (Linux doesn't have .exe files, just binary files with the file permission set to "execute as a program".)

https://en.wikipedia.org/wiki/Mono_%28software%29


So although anything could be possible, it looks like it might be some extra work. For now I'll just stick with using this on Windows XP or Windows 7. I have them both. The main computers I wanted to change over went so well that I got a bit more optimistic than I should have over the others. Smile
christheman
Offline

Member

Posts: 104
Threads: 14
Joined: Apr 2014
#13
2016-01-30, 12:37 PM
Reddwarf Wrote:A little over a year ago (or is it two now?) I spent a lot of time trying to get npvr running under Linux Mint using Crossover. It worker to run it as a client after MUCH struggle, but the problem is tuners. There are no BDA-drivers that can run under Crossover or Wine, and the developers of Crossover told me that they had no plans for implementing device handling, like tuners. So that door is pretty much closed.

Edit: On second thought, it just MIGHT be possible to get npvr running using Crossover with net based tuners that does not require native drivers, but I doubt it is worth the effort.

I think I see a reason or two why the hardware vendor might have been hesitant to provide open-source BDA drivers. They could provide proprietary versions though, just so the customer could get it up and running.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,943
Threads: 956
Joined: May 2006
#14
2016-01-30, 12:51 PM
Some H/W vendors are linux friendly but doesn't mean they need to support Wine which is your real problem. If you are gong linux there are reasonable and linux PVR alternatives.

Martin
christheman
Offline

Member

Posts: 104
Threads: 14
Joined: Apr 2014
#15
2016-01-30, 06:28 PM
mvallevand Wrote:Some H/W vendors are linux friendly but doesn't mean they need to support Wine which is your real problem. If you are gong linux there are reasonable and linux PVR alternatives.

Martin

In my head I'm no longer considering using Wine at this point, since we are basically talking about what would normally be kernel-level drivers in Linux. I have used Crossover (Wine) successfully with Filemaker 9. My personal apps I have developed on it have many requirements (Windows XP, Java, IE8, single core process), and Wine was able to meet every one of them, but just no actual drivers were needed.

My last thoughts were on the theoretical possibilities of porting over to Linux. Here are some things which don't require Wine: Compile and use the HW vendor's native Linux drivers (Hauppauge provides a few - I linked to one). Use the Linux package called "Mono" to port the .NET code to Linux and run natively in Linux (I linked to that too). Then there would be the video drivers, which are already installed in the distro (I use Linux Mint and they are there). They are used natively by programs like VLC Media Player. Making Mono (,NET) and their video drivers talk might actually be an easy thing, since it would be tapping into a pre-existing infrastructure which is already put together. A Linux guru could probably help with the initial layout. All just theoretical, no pressure. Just me thinking out loud.
Reddwarf
Offline

Posting Freak

Posts: 6,629
Threads: 230
Joined: Mar 2007
#16
2016-01-30, 06:37 PM
christheman Wrote:In my head I'm no longer considering using Wine at this point, since we are basically talking about what would normally be kernel-level drivers in Linux. I have used Crossover (Wine) successfully with Filemaker 9. My personal apps I have developed on it have many requirements (Windows XP, Java, IE8, single core process), and Wine was able to meet every one of them, but just no actual drivers were needed.

My last thoughts were on the theoretical possibilities of porting over to Linux. Here are some things which don't require Wine: Compile and use the HW vendor's native Linux drivers (Hauppauge provides a few - I linked to one). Use the Linux package called "Mono" to port the .NET code to Linux and run natively in Linux (I linked to that too). Then there would be the video drivers, which are already installed in the distro (I use Linux Mint and they are there). They are used natively by programs like VLC Media Player. Making Mono (,NET) and their video drivers talk might actually be an easy thing, since it would be tapping into a pre-existing infrastructure which is already put together. A Linux guru could probably help with the initial layout. All just theoretical, no pressure. Just me thinking out loud.
Everything is POSSIBLE but it would still be a heck of a lot of work.... Wink

"I'd rather have a bottle in front of me than a frontal lobotomy"
christheman
Offline

Member

Posts: 104
Threads: 14
Joined: Apr 2014
#17
2016-01-30, 07:24 PM (This post was last modified: 2016-01-30, 07:31 PM by christheman.)
Reddwarf Wrote:Everything is POSSIBLE but it would still be a heck of a lot of work.... Wink

LOL Yup... Smile
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): « Previous 1 2


Possibly Related Threads…
Thread Author Replies Views Last Post
  NextPVR - EPG Setup - XML/XMLTV EPG - Zap2it & Zap2xml Erdrick 126 141,243 2024-01-29, 01:07 AM
Last Post: stoenjes44
  NextPVR VOD through Kodi unmich 2 1,245 2023-06-18, 03:54 AM
Last Post: sub
  Can NextPVR switch graphics mode to best match content ? madbrain 2 2,162 2021-09-25, 02:25 AM
Last Post: madbrain
  NextPVR and Remote viewing MaxiBelas 2 1,679 2021-09-07, 05:29 PM
Last Post: sub
  Help with NextPVR evinahmad86 1 1,428 2021-07-23, 07:01 PM
Last Post: sub
  Epg setting SD token NextPvr 4.2.4 casimir@zyxu.ca 1 1,567 2021-03-05, 01:38 PM
Last Post: mvallevand
  NextPVR hangs when tuning to offline channel? CormacBaptiste 2 1,935 2021-02-03, 01:29 PM
Last Post: Graham
  NextPVR V4 Web Issue meccano 3 1,891 2021-01-30, 04:20 AM
Last Post: meccano
  TV very choppy after downgrade from Nextpvr v5 riverboat2001 18 4,799 2021-01-26, 01:51 PM
Last Post: mvallevand
  Configure NextPVR Server Pliedes 1 1,821 2020-10-07, 04:59 PM
Last Post: sub

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

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

Linear Mode
Threaded Mode