|
SageTV Downloads & Instructions This forum is for discussions containing Downloads and Instructions related to the Open Source version of SageTV. Please do not post questions in this forum. |
|
Thread Tools | Search this Thread | Display Modes |
#21
|
|||
|
|||
It is working now it was a permissions and I had setup Opendct with the VM Host IP. Changed to the VM IP and it is working.... but I really need to record to a network share. So it does work with ubuntu-16.04-desktop-amd64
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct. |
#22
|
||||
|
||||
So, I finally got around to trying out a test linux server. I set up a VirtualBox machine on my Windows desktop, installed ubundu 14.04 LTS server, and ran the script. I've got the sage server running just fine - but I don't know how to add UNC paths as library folders. Does SageTV on Linux support UNC paths for import/recording folders? That's really the only way I can see this being usable for me, as most my storage will remain on my windows server.
__________________
Buy Fuzzy a beer! (Fuzzy likes beer) unRAID Server: i7-6700, 32GB RAM, Dual 128GB SSD cache and 13TB pool, with SageTVv9, openDCT, Logitech Media Server and Plex Media Server each in Dockers. Sources: HRHR Prime with Charter CableCard. HDHR-US for OTA. Primary Client: HD-300 through XBoxOne in Living Room, Samsung HLT-6189S Other Clients: Mi Box in Master Bedroom, HD-200 in kids room |
#23
|
||||
|
||||
Quote:
__________________
SageTV v9 Server: ASRock Z97 Extreme4, Intel i7-4790K @ 4.4Ghz, 32GB RAM, 6x 3TB 7200rpm HD, 2x 5TB 7200rpm HD, 2x 6TB 7200rpm HD, 4x 256GB SSD, 4x 500GB SSD, unRAID Pro 6.7.2 (Dual Parity + SSD Cache). Capture: 1x Ceton InfiniTV 4 (ClearQAM), 2x Ceton InfiniTV 6, 1x BM1000-HDMI, 1x BM3500-HDMI. Clients: 1x HD300 (Living Room), 1x HD200 (Master Bedroom). Software: OpenDCT :: WMC Live TV Tuner :: Schedules Direct EPG |
#24
|
|||
|
|||
Quote:
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct. Last edited by nyplayer; 06-01-2016 at 06:38 PM. |
#25
|
|||
|
|||
I just mounted my share. See man mount.cifs. You can add the mount to /etc/fstab to have it mount on boot.
__________________
Home Network: https://karylstein.com/technology.html |
#26
|
|||
|
|||
Can you post the syntax? and can you browse to it in Linux SageTV?
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct. Last edited by nyplayer; 06-01-2016 at 06:55 PM. |
#27
|
|||
|
|||
Quote:
For a one-time mount try something like this: Code:
sudo mount -t cifs //MYNAS/MYSHARE /TARGET/DIR -o username=SHARE_USER,password=SHARE_PASS My share is \\STEINSERVER\Recorded TV and I have a user "SageTV" with read/write access to the share so my mount looked like this: Code:
sudo mount -t cifs "//STEINSERVER/Recorded TV" "/media/steinserver/Recorded TV" -o username=Sagetv,password=MY_PASS Code:
//STEINSERVER/Recorded\040TV /media/steinserver/Recorded\040TV cifs credentials=/root/.smbcredentials_sagetv,iocharset=utf8,sec=ntlm 0 0 The file /root/.smbcredentials_sagetv contains the following: username=SageTV password=MY_PASS Instead of credentials=xxx in the fstab file you can put username=xxx,password=yyy, but then anyone with an account on the box can read the password. I like to lock things down a little more on my systems though, (and cringe whenever I see the suggestion to do a chmod 777 on anything...)
__________________
Home Network: https://karylstein.com/technology.html |
#28
|
||||
|
||||
Quote:
I suppose 766 would be a little less risky from a security standpoint.
__________________
SageTV v9 Server: ASRock Z97 Extreme4, Intel i7-4790K @ 4.4Ghz, 32GB RAM, 6x 3TB 7200rpm HD, 2x 5TB 7200rpm HD, 2x 6TB 7200rpm HD, 4x 256GB SSD, 4x 500GB SSD, unRAID Pro 6.7.2 (Dual Parity + SSD Cache). Capture: 1x Ceton InfiniTV 4 (ClearQAM), 2x Ceton InfiniTV 6, 1x BM1000-HDMI, 1x BM3500-HDMI. Clients: 1x HD300 (Living Room), 1x HD200 (Master Bedroom). Software: OpenDCT :: WMC Live TV Tuner :: Schedules Direct EPG Last edited by EnterNoEscape; 06-01-2016 at 08:07 PM. |
#29
|
||||
|
||||
I use Windows Clients, so UNC paths are required for comskip playback. I'm sure I can work around some mapping to make it work - but I think Sage SHOULD be able to browse the network, so this likely needs to be fixed if something is broken.
__________________
Buy Fuzzy a beer! (Fuzzy likes beer) unRAID Server: i7-6700, 32GB RAM, Dual 128GB SSD cache and 13TB pool, with SageTVv9, openDCT, Logitech Media Server and Plex Media Server each in Dockers. Sources: HRHR Prime with Charter CableCard. HDHR-US for OTA. Primary Client: HD-300 through XBoxOne in Living Room, Samsung HLT-6189S Other Clients: Mi Box in Master Bedroom, HD-200 in kids room |
#30
|
|||
|
|||
I had problems with mount.cifs so I installed autofs. autofs will disconnect the after a specified period to save system resources and do an automatic remount, however it can also be configured to not disconnect. In addition to cifs shares it can connect to NFS shares as well. I configured my NFS target share to accept connections from the SageTV server IP address.
# Install autofs and connect to Network shares sudo apt-get install nfs-common sudo apt-get install cifs-utils sudo apt-get install autofs sudo mkdir -p /var/media/nfstarget sudo mkdir -p /var/media/shared # add to /etc/auto.master /var/media/shared /etc/auto.cifs-shares --timeout=0 --ghost /var/media/nfstarget /etc/auto.nfs-shares --timeout=0 --ghost # Added lines like this to /etc/auto.cifs-shares shareName -fstype=cifs,rw,username=user,password=password ://192.168.1.1/Public/SharedVideos # Added to /etc/auto.nfs-shares TVSeries -fstype=nfs,rw,soft,tcp,nolock 192.168.1.2:/media/TVSeries |
#31
|
|||
|
|||
Agree I give up mounting shares from my Nas did not work nor mounting my Video folders on my server. I need to be able to browse the network within sagetv too.... Will stick with windows for now.
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct. |
#32
|
|||
|
|||
Quote:
Finally I got it to work had to use the IP of the NAS and not the name. Thanks.
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct. |
#33
|
||||
|
||||
Quote:
EDIT: That said, this is really only an issue with Comskip Playback - and that plugin really SHOULD be reworked to access the file via SageTV API's that can access the server filesystem, instead of direct java fileIO, which accesses if via the client's filesystem. It's been many years since I've looked into doing any plugin work, so maybe that's where I should focus my attention for now.
__________________
Buy Fuzzy a beer! (Fuzzy likes beer) unRAID Server: i7-6700, 32GB RAM, Dual 128GB SSD cache and 13TB pool, with SageTVv9, openDCT, Logitech Media Server and Plex Media Server each in Dockers. Sources: HRHR Prime with Charter CableCard. HDHR-US for OTA. Primary Client: HD-300 through XBoxOne in Living Room, Samsung HLT-6189S Other Clients: Mi Box in Master Bedroom, HD-200 in kids room Last edited by Fuzzy; 06-02-2016 at 02:26 AM. |
#34
|
|||
|
|||
Well one thing I am glad that I at least tried the install the script ... it is fantastic takes all the guess work out of installing. But the limitation of not being able o browse or use unc paths is a deal breaker for me. I too do not have many Mini clients most of my clients are windows clients.
Congrats to he author of the script great job.
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct. |
#35
|
||||
|
||||
As I understand it, smb://server/share should work. When I tried to add anything to my media directories in that manner, the STV just offers to create a folder based on the name. It doesn't appear to know I'm not specifying a local path. This thread suggests that SageTV can do these things on it's own, but I don't see how. I see the code that's supposed to mount the share in the source, but I'm not sure how that ties into the STV. Going all the way up the levels and selecting Network results in it failing to find anything.
I personally just mount everything in fstab, but I can see this being a problem for other users that really just want it to work.
__________________
SageTV v9 Server: ASRock Z97 Extreme4, Intel i7-4790K @ 4.4Ghz, 32GB RAM, 6x 3TB 7200rpm HD, 2x 5TB 7200rpm HD, 2x 6TB 7200rpm HD, 4x 256GB SSD, 4x 500GB SSD, unRAID Pro 6.7.2 (Dual Parity + SSD Cache). Capture: 1x Ceton InfiniTV 4 (ClearQAM), 2x Ceton InfiniTV 6, 1x BM1000-HDMI, 1x BM3500-HDMI. Clients: 1x HD300 (Living Room), 1x HD200 (Master Bedroom). Software: OpenDCT :: WMC Live TV Tuner :: Schedules Direct EPG |
#36
|
|||
|
|||
Quote:
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct. |
#37
|
||||
|
||||
Quote:
Quote:
__________________
Batch Metadata Tools (User Guides) - SageTV App (Android) - SageTV Plex Channel - My Other Android Apps - sagex-api wrappers - Google+ - Phoenix Renamer Downloads SageTV V9 | Android MiniClient |
#38
|
||||
|
||||
Quote:
__________________
Buy Fuzzy a beer! (Fuzzy likes beer) unRAID Server: i7-6700, 32GB RAM, Dual 128GB SSD cache and 13TB pool, with SageTVv9, openDCT, Logitech Media Server and Plex Media Server each in Dockers. Sources: HRHR Prime with Charter CableCard. HDHR-US for OTA. Primary Client: HD-300 through XBoxOne in Living Room, Samsung HLT-6189S Other Clients: Mi Box in Master Bedroom, HD-200 in kids room |
#39
|
|||
|
|||
I have problems directly browsing my network at home but I assumed it was because I have a Windows domain and the machines I am attaching to are domain members. Maybe there should be a way to prompt for or otherwise enter domain credentials. I know, I'm a big nerd for having my own Windows domain at home.
__________________
Server: i5 8400, ASUS Prime H370M-Plus/CSM, 16GB RAM, 15TB drive array + 500GB cache, 2 HDHR's, SageTV 9, unRAID 6.6.3 Client 1: HD300 (latest FW), HDMI to an Insignia 65" 1080p LCD and optical SPDIF to a Sony Receiver Client 2: HD200 (latest FW), HDMI to an Insignia NS-LCD42HD-09 1080p LCD |
#40
|
|||
|
|||
I can browse the network with the docker stuckless put out. The only thing I had to do to browse to my computers is eliminate my WHS v1 server from becoming the master browser on the network. My unRAID server is my master browser but my WHSv1 server would ignore the fact that a master browser already existed when it booted and list itself as the master browser also which eliminated browsing from the docker since there were two master browsers on the network.
Basically I turned off on my WHSv1 server the following: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Browser\Parameters key MaintainServerList. It was set to Yes I set it to NO and then I was able to browse the network from the docker. I also found that SageTV installed on Mint 17.3 to be able to browse the network when the Ubuntu and Debian installs I tried could not - don't know why. Probably just luck of the draw or some setting I changed that I don't remember now.
__________________
"Keep your goals away from the trolls" Last edited by BobPhoenix; 06-05-2016 at 02:34 PM. |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
SageTV 7 - Arch Linux 2013.10.01 Install HOWTO | bcjenkins | SageTV Linux | 3 | 09-14-2014 04:57 PM |
Linux suspend / resume script? | drewg | SageTV Linux | 2 | 04-14-2013 06:26 PM |
ComChecker for Linux/Mac Script Version | bcjenkins | SageTV Customizations | 10 | 04-30-2010 03:01 PM |
Utility: Linux/OS X batch beta firmware upgrade script | bcjenkins | SageTV Customizations | 3 | 08-13-2008 07:08 AM |
Perl script to automatically grab movie thumbs | sundansx | SageTV Customizations | 0 | 01-10-2007 11:41 PM |