NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Other Clients Old Stuff (legacy) MVP & NMT MVPMCX2 and other NMT stuff v
« Previous 1 … 20 21 22 23 24 … 37 Next »
Playing DVDs in GBPVR to PCH client

 
  • 0 Vote(s) - 0 Average
Playing DVDs in GBPVR to PCH client
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,499
Threads: 963
Joined: May 2006
#11
2009-02-01, 07:18 PM
When you try the mount lines via telnet do you get any errors?

Martin
dbone1026
Offline

Junior Member

Posts: 11
Threads: 0
Joined: Jan 2009
#12
2009-02-01, 07:46 PM
mvallevand Wrote:When you try the mount lines via telnet do you get any errors?

Martin

I will install telnet now and report back
jksmurf
Offline

Posting Freak

HK (DMBTH)
Posts: 3,590
Threads: 410
Joined: Jul 2005
#13
2009-05-08, 11:02 PM
Martin,

OK, I have two scripts working well with gbpvr, one which launches off the USB and one which I occasionaly use to test stuff, off the server mvpmc share. However I cannot seem to get the DVD thing to work.

When I try to run the gbpvr.cgi (USB-Based) script it just jumps out.
When I try to run the gbpvr.cgi (Server-Based) script it just gives me a black screen for infinity (well, close to anyway).

I think I have the syntax correct but I'm stumped. My share is "GBPVRDVDLibrary", shared with Everyone, Guest, Admins.

Any suggestions?

gbpvr.cgi (USB-Based)
Code:
echo "Content-Length: 80";
echo "Content-type: text/html";
echo "";
cd ~
echo "";
if [ -f /etc/mvpmc/mvpmcx2 ]
  then
  echo "Already Connected!";
else  
   mkdir /etc/mvpmc >/dev/NULL
   mount --bind  /opt/sybhttpd/localhost.drives/USB_DRIVE_A-1/mvpmc /etc/mvpmc
   mkdir /mnt/\\\\192.168.1.10\\GBPVRDVDLibrary
   mount -t cifs //192.168.1.10/GBPVRDVDLibrary /mnt/\\\\192.168.1.10\\GBPVRDVDLibrary -o username=root,rw
   cp /etc/mvpmc/utelnetd /usr/bin;
   chmod 777 /etc/mvpmc/*;
   utelnetd -l /bin/sh -p 23 &
   ln -s /lib/librmjpeg.so /lib/libjpeg.so.62
   ln -s /lib/librmzlib.so /lib/libz.so
   ln -s /lib/librmzlib.so /lib/libz.so.1
   ln -s /lib/librmzlib.so /lib/libz.so.123
   echo "Telnetd started on port 23............";
fi
killall gaya
sh -c /etc/mvpmc/startmeup 2>/dev/null >/dev/null &

gbpvr.cgi (Server Share-Based)
Code:
echo "Content-Length: 29";
echo "Content-type: text/html";
echo "";
cd ~
if [ -f /etc/mvpmc/mvpmcx2 ]
then
    echo "mvmcx2 is loaded";
else
    mkdir /etc/mvpmc
    mkdir /mnt/\\\\192.168.1.10\\GBPVRDVDLibrary
    mount -t cifs //192.168.1.10/mvpmc /etc/mvpmc -o username=root,rw
    mount -t cifs //192.168.1.10/GBPVRDVDLibrary /mnt/\\\\192.168.1.10\\GBPVRDVDLibrary -o username=root,rw
    cp /etc/mvpmc/utelnetd /usr/bin
    ln -s /lib/librmjpeg.so /lib/libjpeg.so.62
    ln -s /lib/librmzlib.so /lib/libz.so
    ln -s /lib/librmzlib.so /lib/libz.so.1
    ln -s /lib/librmzlib.so /lib/libz.so.123
    utelnetd -l /bin/sh -p 23 &
    echo "Telnetd started on port 23............";
fi
killall gaya
sh -c /etc/mvpmc/startmeup 2>/dev/null >/dev/null &
exit 0;
ASUS STRIX X470-F AMD 2700x 4GHz | Win10Prox64 | 32GB | NVIDIA GEforce GT1030 Fanless | WinTV DMB-TH | WinTV HVR-1280 | Hauppauge Colossus | AC86U/AC68U | USB-UIRT | RPi4 Libreelec | Sony Bravia LCD X9000F Android TV |
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,499
Threads: 963
Joined: May 2006
#14
2009-05-08, 11:46 PM
k I look like are either playing from a local or a mapped drive so you basically didn't follow the instructions here http://forums.gbpvr.com/showpost.php?p=2...ostcount=8 something like

Code:
mkdir /mnt/D:\\GBPVRDVDLibrary\\
    mount -t cifs //192.168.1.10/GBPVRDVDLibrary /mnt/D:\\GBPVRDVDLibrary -o username=root,rw

However I am not sure the using GBPVRDVDLibrary is a great sharename, I'd recommend for portability keeping it 12 characters or less. The sharename doesn't have to be the same as the folder that you are trying to share.

Martin
jksmurf
Offline

Posting Freak

HK (DMBTH)
Posts: 3,590
Threads: 410
Joined: Jul 2005
#15
2009-05-09, 11:15 PM
Martin, I keep getting an error "mount mounting \\192.168.1.10/GBPVRDVDLibrary on /mnt/D:\\GBPVRDVDLibrary fail

I tried changing the \\ to \\\\ as per this post to


Code:
mount -t cifs //192.168.1.10/GBPVRDVDLibrary /mnt/D:\\[COLOR=red]\\[/COLOR]GBPVRDVDLibrary -o username=root,rw

but still NG.

I also saw some posts which put a slash BETWEEN the D and the colon, but also NG.

Code:
mount -t cifs //192.168.1.10/GBPVRDVDLibrary /mnt/D[COLOR=red]\[/COLOR]:\\\\GBPVRDVDLibrary -o username=root,rw

Is this just a VISTA share issue do you think?

k.
ASUS STRIX X470-F AMD 2700x 4GHz | Win10Prox64 | 32GB | NVIDIA GEforce GT1030 Fanless | WinTV DMB-TH | WinTV HVR-1280 | Hauppauge Colossus | AC86U/AC68U | USB-UIRT | RPi4 Libreelec | Sony Bravia LCD X9000F Android TV |
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,499
Threads: 963
Joined: May 2006
#16
2009-05-09, 11:28 PM
No, it is not Vista. From your PC what do you see for this folder when you type the following at the command prompt?

net share

Martin
jksmurf
Offline

Posting Freak

HK (DMBTH)
Posts: 3,590
Threads: 410
Joined: Jul 2005
#17
2009-05-09, 11:46 PM
This:
ASUS STRIX X470-F AMD 2700x 4GHz | Win10Prox64 | 32GB | NVIDIA GEforce GT1030 Fanless | WinTV DMB-TH | WinTV HVR-1280 | Hauppauge Colossus | AC86U/AC68U | USB-UIRT | RPi4 Libreelec | Sony Bravia LCD X9000F Android TV |
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,499
Threads: 963
Joined: May 2006
#18
2009-05-09, 11:55 PM
I might have made a mistake in my first post try this from telnet

Code:
mkdir /mnt/D:\\GBPVRDVDLibrary
    mount -t cifs //192.168.1.10/GBPVRDVDLibrary /mnt/D:\\GBPVRDVDLibrary -o username=guest,ro

Martin
jksmurf
Offline

Posting Freak

HK (DMBTH)
Posts: 3,590
Threads: 410
Joined: Jul 2005
#19
2009-05-10, 12:05 AM
This
ASUS STRIX X470-F AMD 2700x 4GHz | Win10Prox64 | 32GB | NVIDIA GEforce GT1030 Fanless | WinTV DMB-TH | WinTV HVR-1280 | Hauppauge Colossus | AC86U/AC68U | USB-UIRT | RPi4 Libreelec | Sony Bravia LCD X9000F Android TV |
jksmurf
Offline

Posting Freak

HK (DMBTH)
Posts: 3,590
Threads: 410
Joined: Jul 2005
#20
2009-05-10, 12:09 AM
Here's the ls
ASUS STRIX X470-F AMD 2700x 4GHz | Win10Prox64 | 32GB | NVIDIA GEforce GT1030 Fanless | WinTV DMB-TH | WinTV HVR-1280 | Hauppauge Colossus | AC86U/AC68U | USB-UIRT | RPi4 Libreelec | Sony Bravia LCD X9000F Android TV |
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

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


Possibly Related Threads…
Thread Author Replies Views Last Post
  Just upgraded to 3.9.2 - NMTs now fail playing recordings lostboy 2 12,636 2017-04-24, 01:23 PM
Last Post: lostboy
  Playing DVD images on NMT through GB-PVR baj1 43 20,902 2012-09-03, 09:47 PM
Last Post: mvallevand
  PCH lockup at the end of playing an MTS file from Videos, doesn't revert to playlist? jksmurf 10 6,868 2012-08-15, 01:15 AM
Last Post: mvallevand
  Videos won't play on PCH A-100 with GBPVR arkennedy75 6 3,775 2012-01-20, 12:53 AM
Last Post: mvallevand
  More than one server - one NPVR and one GBPVR? baj1 4 2,712 2012-01-17, 06:49 PM
Last Post: martint123
  NMTinstall for GBPVR no longer working? caz 6 3,358 2011-07-09, 01:07 PM
Last Post: caz
  A200 & C200 GB-PVR client update mvallevand 45 19,824 2011-05-27, 11:07 PM
Last Post: jksmurf
  Can't play recorded video files on PCH-A100 using GBPVR dvasco 4 2,608 2011-01-04, 01:19 PM
Last Post: dvasco
  New mvpmcx2o update for GBPVR and NPVR 2010-12-24 mvallevand 3 2,106 2010-12-27, 01:51 PM
Last Post: mvallevand
  New M34A on eixting GBPVR 1.4.7: GBPVR via NetworkBrowser: "Request cannot be proc" lucille84 3 2,228 2010-11-09, 12:30 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