The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > OS Specific Forums > SUN Solaris
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 05-10-2008
frozentin frozentin is offline
Registered User
 

Join Date: May 2008
Posts: 22
Try doing this to find out the name of the package:
# pkginfo -l | grep -i "box".
Be sure to do the next step to confirm this is the right package:
# pkginfo -l <pkg-name from above>

or if you know the name of any binary command that came with this package, (one of the 2 pkgchks below needs a full pathname to the binary/filename that you want to check -- I don't remember whether it's the "P" or the "p". Check that before using these commands.)

# pkgchk -l -P <cmd-name or filename>
or
# pkgchk -l -p <cmd-name or filename>

or

you can find out which package a command/file belongs to by grep'ing for it in /var/sadm/install/contents.
Reply With Quote