I have some network shares mounted with Network Browser and automounts.xml. Everything is OK till I do not shut down the computer, where the shares are. After that, even if the computer is up again, when I open the recording list, spinning wheels appear and the only way is to restart the box from terminal.
any advances on the "E2" to fix this problem ?
No, it's a Linux bug the Linux devs are too stupid to fix.
It will happen on your Desktop machine running Linux as well ...
Uhm ... wait ... Desktop? Linux?
Ok. Forget it.
It's beyond Enigma2 devs control however, as it needs to get fixed inside the Linux kernel ...
You can work around the problem by using either autofs or smbnetfs.
autofs is the better choice because it also works for servers not visible on the network (i.e. that have to be accessed using their IP).
Just telnet/ssh to the box and do
opkg install autofs
then add your shares to /etc/auto.net, like this
# automounter configuration
Schlafzimmer -fstype=cifs,rw,user=root,pass=YourPaswword ://192.168.1.17/Harddisk
Dokus -fstype=cifs,ro,user=Your\ username,pass=YourPaswword ://192.168.1.20/Dokus
Filme -fstype=cifs,ro,user=Your\ username,pass=YourPaswword ://192.168.1.20/Filme
Porn -fstype=cifs,ro,user=Your\ username,pass=YourPaswword ://192.168.1.20/Porn
TV-Serien -fstype=cifs,ro,user=Your\ username,pass=YourPaswword ://192.168.1.20/TV-Serien
Whitespaces inside username and/or pass have to be escaped using a backslash \ as shown above
chmod 600 auto.net
after that.
Now
cd /etc/init.d
and edit the file "autofs" there.
Between these lines
echo -n "Starting $prog: "
# Make sure autofs4 module is loaded
add "mkdir -p /media/net" to work around the problems a.) autofs forgets to create those dirs and b.) it will stupidly remove them again and again
The result should look like this:
echo -n "Starting $prog: "
mkdir -p /media/net
# Make sure autofs4 module is loaded
Works like a charm for me.