> I was wondering if its possible for mythvideo to have videos from > multiple folders, ie if i have more than one hard drive with videos on > them?
You were right on with the sym-links, that is exactly what I do. My setup is like this: /video/videos is the folder I point myth to when I want to add a video source I can do it like so $ ln -s /mnt/server-share /video/videos which gives your /video/videos/server-share or $ ln -s /mnt/server-share /video/videos/dvds which gives your /video/videos/dvds either way works. if you want to see where your symlinks point use the -l option with ls $ ls -l /video/videos dvds -> /mnt/server-share If later you need to remove them, remember not to have a trailing slash with rm $ rm /video/videos/dvds works but not $ rm /video/videos/dvds works/ Hope this helps. -- Travis
_______________________________________________ mythtv-users mailing list [email protected] http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
