
Originally Posted by
Sinbad
Which os?
If you are running a regular linux distro then google fstab. If you are using OpenElec you should use the autostart script and add mount commands in there.
I mount my network drives like this and works well:
Code:
#! /bin/sh
(sleep 20; \
mount -t cifs //192.168.1.103/Series /storage/tvshows -o username=media,password=media123
)&
(sleep 2; \
mount -t cifs //192.168.1.103/Movies /storage/videos -o username=media,password=media123
)&
(sleep 2; \
mount -t cifs //192.168.1.103/Music /storage/music -o username=media,password=media123
)&
Bookmarks