I don't know about referencing the NAND as one device, but these are the notes I have made (copied from an earlier thread here, most likely)
JFFS2:
mkdir/mnt/block2
mount -t jffs2 /dev/mtdblock2 /mnt/block2 -o ro
UBIFS:
cat /proc/mtd
dev: size erasesize name
mtd0: 00100000 00020000 "u-boot"
mtd1: 00400000 00020000 "uImage"
mtd2: 1fb00000 00020000 "root"
ubiattach /dev/ubi_ctrl -m 2 -d 0
mount -t ubifs ubi0_0 /mnt/nand
OR
mount -t ubifs ubi0:rootfs /mnt/nand
umount ubi0_0
OR
umount ubi0:rootfs
(I'm not quite sure why I have the umount options listed, like I say, it was probably copied from somewhere else).