Libraries required by commands

In solaris 10 how to I know what libraries are required by a particular command?
please advise

try

ldd /path/to/command

You do this only if the command is not a shell builtin or keyword - it works only when your command is an actual external executable file.

which command-name 

tells you the information you need.