Page 1 of 1

Howto mount?

Posted: Sat Dec 31, 2011 2:49 pm
by madkai93
Hi,

I use SamyPVR to record to my network drive. I set the recording path in config file, everything works.
Now I want to use PVR+. geo650 said I have to create script called MOVIE001.sh which mount my network share in /mtd_wiselink/MOVIE001. I am really a linux noob :)
I googled and found out how to mount. But it doesn?t work. Can anybody help me and say what?s wrong with this?

Code: Select all

mount -t ntfs /dtv/usb/sdb/smb/192.168.178.1/FRITZ.NAS/IC35L080-AVVA07-0-01 /mtd_wiselink/MOVIE001

Re: Howto mount?

Posted: Sat Dec 31, 2011 4:18 pm
by arris69
madkai93 wrote:Hi,

I use SamyPVR to record to my network drive. I set the recording path in config file, everything works.
Now I want to use PVR+. geo650 said I have to create script called MOVIE001.sh which mount my network share in /mtd_wiselink/MOVIE001. I am really a linux noob :)
I googled and found out how to mount. But it doesn?t work. Can anybody help me and say what?s wrong with this?

Code: Select all

mount -t ntfs /dtv/usb/sdb/smb/192.168.178.1/FRITZ.NAS/IC35L080-AVVA07-0-01 /mtd_wiselink/MOVIE001
if its already mounted to /dtv/usb/sdb/smb/192.168.178.1/FRITZ.NAS/IC35L080-AVVA07-0-01
then

Code: Select all

mkdir /mtd_wiselink/MOVIE001
mount -o bind /dtv/usb/sdb/smb/192.168.178.1/FRITZ.NAS/IC35L080-AVVA07-0-01 /mtd_wiselink/MOVIE001

Re: Howto mount?

Posted: Sat Dec 31, 2011 4:39 pm
by madkai93
arris69 wrote: if its already mounted to /dtv/usb/sdb/smb/192.168.178.1/FRITZ.NAS/IC35L080-AVVA07-0-01
then

Code: Select all

mkdir /mtd_wiselink/MOVIE001
mount -o bind /dtv/usb/sdb/smb/192.168.178.1/FRITZ.NAS/IC35L080-AVVA07-0-01 /mtd_wiselink/MOVIE001
Thanks for answering.
I tired it but PVR+ say "target not ready".
What do you mean by
if its already mounted to /dtv/usb/sdb/smb/192.168.178.1/FRITZ.NAS/IC35L080-AVVA07-0-01
?
I just use SamyGo Extensions for virtual USB. The MOVIE001.SH should just be want you wrote? or something more?