View unanswered posts | View active topics It is currently Tue May 21, 2013 5:27 pm



Reply to topic  [ 47 posts ]  Go to page Previous  1, 2, 3, 4, 5
 Jukebox won't load + Covers won't show 
Author Message

Joined: Sun Mar 25, 2012 11:49 am
Posts: 31
Post Re: Jukebox won't load + Covers won't show
Hi Andy,

thank you for your answer.

Is there any thread which has a little how to about "telnet POHD" and "Install Putty on POHD"? And I'm not quiet sure about the Swap partitions you mentioned.

Arvakur


Sat Jul 21, 2012 1:40 pm
Profile

Joined: Sun Oct 31, 2010 4:48 pm
Posts: 1382
Location: Manchester, UK
Post Re: Jukebox won't load + Covers won't show
Hi
PuTTY is a Windows client which will provied telnet, SSH and other connectivity.
Install PuTTY on your PC. You will need to know the IP Address of your player, which you enter in the hostname box, and selecting Telnet tells PuTTY to connect on port 23.
This gives you a command line interface to the player, login as root with no password
Andy

_________________

Playon HD Mini PV73200+ Firmware v7.4.6 r7317 (Modified)
YAMJ v2.9-Snapshot r3416
YAYMan r0.99.99.24
MediaInfo CLI v0.7.61
Buffalo Linkstation 2TB Mirrored NAS
WD My World Book II 1TB Mirrored NAS
Wired 1GB LAN


Sat Jul 21, 2012 9:20 pm
Profile

Joined: Sun Mar 25, 2012 11:49 am
Posts: 31
Post Re: Jukebox won't load + Covers won't show
Hi,

YAMJ still breaks down. Same "errors/problems" as before.

What I did:
Quote:
1) Putty (download and open)
2) Telnet POHD
3) mkdir /tmp/usbmounts/sda1/Filme
4) mkdir /tmp/usbmounts/sda1/Jukebox
5) vi /usr/local/etc/rcS
5.1) Moved all the way down with arrows
5.2) Press "i"+Enter to start editing
5.3) ADD
"sleep 30
mount -t cifs //192.168.1.111/Filme /tmp/usbmounts/sda1/Filme -o ro,username=PlayonHD,password=*******
mount -t cifs //192.168.1.111/Filme/Jukebox /tmp/usbmounts/sda1/Jukebox -o ro,username=PlayonHD,password=*******"
5.4) ESC -> :x+ENTER
6.) YamJ Program directory on PC -> Open Library -> <playerpath>file://../../../../tmp/usbmounts/sda1/Filme/</playerpath>
7) Delete and rebuild directory
8) Restarted POHD
9) Initialised Jukebox


For further information see attachments. Don't wonder about "E:\Filme" I always use my hard drive at PC for doing the jukebox but "copy/synch" it with my NAS afterwards. I always start use the julebox on NAS from POHD.


Attachments:
ls and mount.PNG
ls and mount.PNG [ 78.24 KiB | Viewed 372 times ]
Library.PNG
Library.PNG [ 75.84 KiB | Viewed 372 times ]
rcS.PNG
rcS.PNG [ 68.53 KiB | Viewed 372 times ]
Sat Jul 21, 2012 11:44 pm
Profile

Joined: Thu Jan 05, 2012 12:40 am
Posts: 809
Location: Brisbane, AU
Post Re: Jukebox won't load + Covers won't show
I use a slightly different variation to mount my NAs on my Mini 2. It may help.

#!/bin/ash

#Check that the USB attached drive is alive and has the correct directory
sleep 30
LOGFILE=/tmp/log/mountnas.log
DIR1=/tmp/usbmounts/sda6/NAS
STATUS=Z
date 1>$LOGFILE
if [ -d $DIR1 ]; then
echo $DIR1 " exists." 1>>$LOGFILE
STATUS=A
else
i=1
until [ -d $DIR1 ] ; do
let i+=1 ; sleep 1
echo $i 1>>$LOGFILE
if [ $i -ge 60 ] ; then
echo $DIR1 " does not exist." 1>>$LOGFILE
STATUS=B
break ;
fi
done
fi
echo $STATUS 1>>$LOGFILE
if test $STATUS = "A"
then
echo "USB Directory Exists" 1>>$LOGFILE
#Now check that NAS is alive
ping 10.1.1.240 1>>$LOGFILE
pingstatus=$?
if test $pingstatus -eq 0
then
echo "NAS Alive" 1>>$LOGFILE
mount -t cifs -o username=root,password=smb123,RO, //10.1.1.240/dev /tmp/usbmounts/sda6/NAS
mountstatus=$?
if test $mountstatus -eq 0
then
echo "NAS Mounted" 1>>$LOGFILE
else
echo "NAS Mount Error" 1>>$LOGFILE
fi
else
echo "NAS not Active" 1>>$LOGFILE
fi
else
echo "USB Drive does not Exist" 1>>$LOGFILE
echo "No attempt to mount NAS" 1>>$LOGFILE
fi

_________________
"Beer is living proof that God loves us and wants us to be happy." - Benjamin Franklin 1706-1790
"It's ALWAYS Beer o'clock" - Homer Simpson


Sun Jul 22, 2012 2:57 am
Profile

Joined: Sun Mar 25, 2012 11:49 am
Posts: 31
Post Re: Jukebox won't load + Covers won't show
Hi Greg,

are the following changes correct?
When 192.168.0.111 = NAS?
What about the created Jukebox directory?
There is a space /dev /tmp/ is that estimated?


GregiBoy wrote:
I use a slightly different variation to mount my NAs on my Mini 2. It may help.

#!/bin/ash

#Check that the USB attached drive is alive and has the correct directory
sleep 30
LOGFILE=/tmp/log/mountnas.log
DIR1= /tmp/usbmounts/sda1/Filme
STATUS=Z
date 1>$LOGFILE
if [ -d $DIR1 ]; then
echo $DIR1 " exists." 1>>$LOGFILE
STATUS=A
else
i=1
until [ -d $DIR1 ] ; do
let i+=1 ; sleep 1
echo $i 1>>$LOGFILE
if [ $i -ge 60 ] ; then
echo $DIR1 " does not exist." 1>>$LOGFILE
STATUS=B
break ;
fi
done
fi
echo $STATUS 1>>$LOGFILE
if test $STATUS = "A"
then
echo "USB Directory Exists" 1>>$LOGFILE
#Now check that NAS is alive
ping 192.168.0.111 1>>$LOGFILE
pingstatus=$?
if test $pingstatus -eq 0
then
echo "NAS Alive" 1>>$LOGFILE
mount -t cifs -o username=PlayonHD,password=XXX,RO, //192.168.0.111/dev /tmp/usbmounts/sda1/Filme
mountstatus=$?
if test $mountstatus -eq 0
then
echo "NAS Mounted" 1>>$LOGFILE
else
echo "NAS Mount Error" 1>>$LOGFILE
fi
else
echo "NAS not Active" 1>>$LOGFILE
fi
else
echo "USB Drive does not Exist" 1>>$LOGFILE
echo "No attempt to mount NAS" 1>>$LOGFILE
fi


Sun Jul 22, 2012 9:31 am
Profile

Joined: Thu Jan 05, 2012 12:40 am
Posts: 809
Location: Brisbane, AU
Post Re: Jukebox won't load + Covers won't show
Yes. You have the IP Address = NAS correct

tere is a space after dev but the statement 192.168.1.111/dev depends on what you see in your windows browser by say Mapping a network drive and type the NAS IP address and then browse it.to see what shows.

_________________
"Beer is living proof that God loves us and wants us to be happy." - Benjamin Franklin 1706-1790
"It's ALWAYS Beer o'clock" - Homer Simpson


Sun Jul 22, 2012 10:17 pm
Profile

Joined: Sun Mar 25, 2012 11:49 am
Posts: 31
Post Re: Jukebox won't load + Covers won't show
Hi Greg,

What about the created Jukebox directory on USB Stick? No need for that with your version?
I don't get what you mean by IP/dev. Moviedirectory at NAS when connected from PC?


Mon Jul 23, 2012 7:27 pm
Profile
Display posts from previous:  Sort by  
Reply to topic   [ 47 posts ]  Go to page Previous  1, 2, 3, 4, 5

Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by: phpBB | Innitial forum Design by: STSoftware | Modified by: AC Ryan.