Mount point in a server

Hi ,

How to find out mount point in a server ?

OS -- SunOS 5.6 Generic sun4u sparc SUNW

Thanks

Just type "mount" to list all the mounted file systems.

There are several ways to know what device is mounted on where:
The following two commands will show you what is mounted where presently:

# mount
# cat /etc/mnttab

This will show you what devices get mounted where during boot:

# cat /etc/vfstab

What exactly are you looking for anyway?

even doing df will show the mount points of all currently mounted filesystems

Thank you all for your responds.