How to add a pre-existing network mount to /mnt/NAS

Hi All, I have a network drive that is cifs mounted in stab. I would like to have it seen by Volumio. Is there any way other than in the web UI to accomplish this? I am unable to find much documentation on the site as to how I might go about editing the locations where Volumio searches for media. I’m happy to read documentation if someone could just point me in the right direction. For more details on what I am trying to accomplish please also see my posts in the first time issues section of the forum.
Thanks for any help.

Make a symlink in /var/lib/mpd/music and refresh the database, it should pick it up automagically.

[code]$ssh pi@volumio
$sudo su -

ln -s /mnt/OTHER_MOUNT /var/lib/mpd/music/OTHER_MOUNT[/code]

Of course, if your device is already mounted as /mnt/NAS then it should already be there - unless there’s some other reason that mpd isn’t seeing the files (perhaps permissions). You may get clues in /var/log/mpd.log

That did it. Thanks much