PDA

View Full Version : E2 - how to mount a networkdrive ??



onkelm
25-10-2010, 10:25 AM
Hi,

I like to mount a path to my networkdrive, it is a synology.
On my VU+ it is done in auto.network like this:

video -fstype=nfs,rw,soft,tcp,nolock,rsi ze=8192,wsize=8192 192.168.0.100:/volume1/video


But here does not work, any idea ?

onkelm

RogerThis
25-10-2010, 01:38 PM
The media player is no good unless I can connect it to a network share.

I was trying this too. The mounting statement I was using is


mkdir /mnt/movies
mount -t smbfs -o username=roger,password=pass888 //192.168.0.8/movies
/mnt/movies


But I was getting this error

mount: mounting //192.168.0.8/movies on /media/movies failed: No such device

I think that smbclient isn't installed. So I downloaded
http://security.debian.org/debian-security/pool/updates/main/s/samba/smbclient_3.2.5-4lenny13_mipsel.deb

I had to change the .deb file to a .ipk I did this by using the following commands



ar x smbclient_3.2.5-4lenny13_mipsel.deb
tar cvzf smbclient_3.2.5-4lenny13_mipsel.ipk ./debian-binary ./data.tar.gz ./control.tar.gz


And ran this to install the smbclient



ipkg install /tmp/smbclient_3.2.5-4lenny13_mipsel.ipk


But I get this error


*** glibc detected *** ipkg: double free or corruption (out): 0x0041b850 *** Aborted

So I used this line first

export MALLOC_CHECK_=0


Then rerun



ipkg install /tmp/smbclient_3.2.5-4lenny13_mipsel.ipk


But now I get this



Installing smbclient (2:3.2.5-4lenny13) to root...
smbclient: *****isfied recommendation for smbfs
Configuring dreambox-bootlogo
mount: can't find /boot in /proc/mounts
postinst script returned status 1
Collected errors:
* ERROR: Cannot satisfy the following dependencies for smbclient:
* samba-common (= 2:3.2.5-4lenny13) * libcomerr2 (>= 1.01) * libkrb53 (>= 1.6.dfsg.2) * libldap-2.4-2 (>= 2.4.7) * libncurses5 (>= 5.6+20071006-3) * libwbclient0 (>= 2:3.2.0) *
* Cannot find package smbclient.
* ERROR: dreambox-bootlogo.postinst returned 1


So I'm missing a load of dependencies for smbclient.

Is there an easier way to do this?

lanlol
25-10-2010, 02:17 PM
Hey, the nfs mount worked for me :

mkdir /mnt/nfs
mount -t nfs 192.xxx.xxx.xxx:/xya/xyb /mnt/nfs -o rw,nolock,intr,soft,udp

onkelm
25-10-2010, 02:42 PM
thanks, for me too.

mpeg videos working, but so far no avi.

So we have to wait :-)

Any idea how to automount this way ?

onkelm

lanlol
25-10-2010, 02:52 PM
thanks, for me too.

mpeg videos working, but so far no avi.

So we have to wait :-)

Any idea how to automount this way ?

onkelm

avi is working with the media plugins, but the box hangs after stopping the playback, at least my box with .27

for automount, add the line in /etc/init.d/rcS

onkelm
25-10-2010, 03:20 PM
hi,

nice thanks we go further :-)

Any idea what path is needed to mount it directly into root-media-player directory ?

I mean that it shows up in mediaplayer at the beginning togehter with external storage, network mount and internal flash ?

OnkelM