I have a working samygo-all-extension usb-stick always plugged in the tv.
If I want to browse my nfs server I have to:
-press mediaplay
-press [A] to switch from usb to samygo virtual usb
-choose Video
-choose nfs
-choose the server address
-choose _the_shared_folder_path_whith_orrible_underscores
-choose a movie and play

oh, no! It's too much! I would like to shorten the path by making a symlink so I:
Code: Select all
$ telnet tv
Trying 10.222.3.26...
Connected to TV.
Escape character is '^]'.
/mtd_rwarea/network_opt #cd /dtv/usb/sdb
/dtv/usb/sdb # ln -s nfs/10.222.3.25/_media_Dati_Incoming/ Server
ln: Server: Operation not permitted
Code: Select all
ln -s /dtv/usb/sdb/nfs/10.222.3.25/_media_Dati_Incoming/ /dtv/usb/sdb/Server
http://forum.samygo.tv/viewtopic.php?f= ... om+command
03_04_symlink.init
Code: Select all
#!/bin/sh
ln -s /dtv/usb/sdb/nfs/10.222.3.25/_media_Dati_Incoming/ /dtv/usb/sdb/Server
ln -s /dtv/usb/sdb/nfs/10.222.3.25/_media_Dati_PVR/ /dtv/usb/sdb/PVR
Please how can I get a very short path_yo_my_server_files ?
Thankyou..!