Yes you can.
I'm using MLB 2TB with Transmission on RT AC66U running Merlin Firmware.
Ensure the path command correct when install transmission using putty.
TapaTalking from Republic™ Of Android
any other ways to save to NAS from transmission?
For what? We've got a quite powerfull PowerPC CPU on MBL. Just install transmission on chroot'ed environment with my script:any other ways to save to NAS from transmission?
wget http://mbl-common.googlecode.com/svn/chroot-install/install.sh
sh ./install.sh
[2013/06/22 03:21:01] minidlna.c:497: error: Media directory "//pch-a110/share/Videos/" not accessible! [No such file or directory]
Hi,
I've transmission running in a NMT (PCH A-110) and been trying to make the minidlna server in RT-AC66U to scan the SMB network path //pch-a110/share/Videos, but when the config file is applied I got:
What I'm doing wrong?
Thanks in advance.
Hi,
I've transmission running in a NMT (PCH A-110) and been trying to make the minidlna server in RT-AC66U to scan the SMB network path //pch-a110/share/Videos, but when the config file is applied I got:
What I'm doing wrong?
Thanks in advance.
You can only point to a local path, you can't use a direct URI.
You might be able to make it work by first mounting the SMB share on a local mount point, having minidlna scan that mount point, and restarting minidlna after the share gets mounted.
mount -t nfs 192.168.1.200:/share/Download /mnt/PCH-A110
Thanks for the reply, after posting I did a little more research I came to that conclusion. I had some difficult mounting the network path as NFS filetype because I wasn't using portmap on both sides and the syntax wasn't right. The one that worked is below:
Code:mount -t nfs 192.168.1.200:/share/Download /mnt/PCH-A110
with this code I can not transfer big files... its crash... with cifs works stable...
NFS is known to have some stability issues when accessing remote shares. The issue lies somewhere in the kernel, and I couldn't figure out why or where exactly.
sterf@RT-AC66R:/tmp/home/root# mount \\\\192.168.1.200\\share\\Download /mnt/popcornhour -t cifs -o "username=nmt,pass=1234"
mount: mounting \\192.168.1.200\share\Download on /mnt/popcornhour failed: No such device or address
I read about this stability issues, but I couldn't mount it as cifs:
Code:sterf@RT-AC66R:/tmp/home/root# mount \\\\192.168.1.200\\share\\Download /mnt/popcornhour -t cifs -o "username=nmt,pass=1234" mount: mounting \\192.168.1.200\share\Download on /mnt/popcornhour failed: No such device or address
I read about this stability issues, but I couldn't mount it as cifs:
Code:sterf@RT-AC66R:/tmp/home/root# mount \\\\192.168.1.200\\share\\Download /mnt/popcornhour -t cifs -o "username=nmt,pass=1234" mount: mounting \\192.168.1.200\share\Download on /mnt/popcornhour failed: No such device or address
# cat /opt/etc/init.d/S01firmware_nfs
#!/bin/sh
prefix="/opt"
PATH=${prefix}/bin:${prefix}/sbin:/sbin:/bin:/usr/sbin:/usr/bin
mountPoint="/tmp/mnt/MyBookLive"
start() {
[ -d "$mountPoint" ] || mkdir $mountPoint
portmap
mount -t nfs -o nfsvers=3 192.168.1.3:/nfs/Public $mountPoint
}
stop() {
umount $mountPoint
killall portmap
}
status() {
echo -n "$mountPoint is "
if [ -z "$(mount | grep $mountPoint)" ]
then
echo unmounted.
else
echo mounted.
fi
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 2
start
;;
status) status
;;
*)
echo "Usage: $0 (start|stop|restart|status)"
exit 1
;;
esac
exit 0
Your mount path is two levels deep. Shares are only one level, you can't mount a folder inside a share.
if you want to use routers minidlna... make folder in "/mnt/sda1" call it "MyBookLive"
and add this to your services-start:
mount \\\\192.168.1.200\\Public /mnt/sda1/MyBookLive -t cifs -o "username=nmt,password=1234"
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!