Hi,
I do not know about this file system, but normally to mount any file system in linux this is what you do
mount -t <filesystem> <device to mount> <mount point>
for example
if I had to mount the windows FAT file system then
mount -t vfat /dev/hda1 /mnt/win
where vfat is the FAT file system
/dev/hda1 is the device that points to the file syste
/mnt/win is the directory under which the file system will be mounted
This is just a brief, for more details you can refer to the man pages of mount
dont forget to unmount the system
use umount