2009-10-18, 05:21 PM
I'm a seasoned HTPC user but a GBPVR NOOB. I've gotten GBPVR configured and running with Comcast Digital cable using a HDHR. Here's the details on my setup:
HTPC/server is connected via DVI/HDMI cable to a HDTV, coax dig audio cable to DD5.1 receiver - Pentium 4 2GB RAM Win XP MCE SP3
Popcornhour A100 with internal hdd connected to a HDTV, stereo audio only. A100 cabled to HDTV via component video and analog stereo audio cables. Video out set to 720P
HDHR tuning clear QAM comcast digital cable
I followed the Wiki and installed using CSI to disk and also on the HTPC.
I've found some forum posts and have been trying to modify the gbpvr.cgi file located in C:/mvpmc appropriately. No love thus far.
I assume that this folder comes into play when I lauch gbpvr thru the network browser and not when I launch via web service for the PCH hdd install. Is this correct?
Are there advantages to the CSI hdd install over the other, easier to launch, quicker interface? If the hdd install is better, this is the one I ultimately want to get configured properly.
The HTPC has 6 hard drives. Three drives are dedicated to DVD rips and each ISO file is located in its own folder on the root of the drive. If I cannot mount the root on the NMT, perhaps I need to move these subfolders off the root and into containing folder with descriptive name such as "Kids_Movies"
One of the drives containing DVD ISOs already has subfolders. I'm initially trying to get the ISOs located in individual subfolders in I:\MOM+DAD to play on the NMT.
original gbpvr.cgi file:
#!/bin/sh
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
mount -t cifs //192.168.0.5/mvpmc /etc/mvpmc -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;
modified file (doesn't work):
#!/bin/sh
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
mount -t cifs //192.168.0.5/mvpmc /etc/mvpmc -o username=root,rw
mkdir /mnt/I:\\MOM+DAD
mount -t cifs //192.168.1.5/MOM+DAD /mnt/I:\\MOM+DAD -o username=user,password=password,ro
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;
Any insight on what is wrong. I not sure how to Telnet, test or verify the script.
Thanks!
TechHome
HTPC/server is connected via DVI/HDMI cable to a HDTV, coax dig audio cable to DD5.1 receiver - Pentium 4 2GB RAM Win XP MCE SP3
Popcornhour A100 with internal hdd connected to a HDTV, stereo audio only. A100 cabled to HDTV via component video and analog stereo audio cables. Video out set to 720P
HDHR tuning clear QAM comcast digital cable
I followed the Wiki and installed using CSI to disk and also on the HTPC.
I've found some forum posts and have been trying to modify the gbpvr.cgi file located in C:/mvpmc appropriately. No love thus far.
I assume that this folder comes into play when I lauch gbpvr thru the network browser and not when I launch via web service for the PCH hdd install. Is this correct?
Are there advantages to the CSI hdd install over the other, easier to launch, quicker interface? If the hdd install is better, this is the one I ultimately want to get configured properly.
The HTPC has 6 hard drives. Three drives are dedicated to DVD rips and each ISO file is located in its own folder on the root of the drive. If I cannot mount the root on the NMT, perhaps I need to move these subfolders off the root and into containing folder with descriptive name such as "Kids_Movies"
One of the drives containing DVD ISOs already has subfolders. I'm initially trying to get the ISOs located in individual subfolders in I:\MOM+DAD to play on the NMT.
original gbpvr.cgi file:
#!/bin/sh
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
mount -t cifs //192.168.0.5/mvpmc /etc/mvpmc -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;
modified file (doesn't work):
#!/bin/sh
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
mount -t cifs //192.168.0.5/mvpmc /etc/mvpmc -o username=root,rw
mkdir /mnt/I:\\MOM+DAD
mount -t cifs //192.168.1.5/MOM+DAD /mnt/I:\\MOM+DAD -o username=user,password=password,ro
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;
Any insight on what is wrong. I not sure how to Telnet, test or verify the script.
Thanks!
TechHome