PACKAGE MANAGEMENT ================== In your zone on CoralCMD, two package managers are pre-installed. One is simply dubbed "pkg", which is the IPS (Image Packaging System) client. It's the native package manager for OmniOS, the Illumos-based OS we use here. With pkg, you can install software via the package name, or, if there is a name conflict, via the FMRI (Fault Management Resource Identifier). The FMRI can be found via "pkg search" and then your search term. After you find the FMRI of the package you wish to install, you may install it using "pkg install". As an example, to install GNU Groff, you would type: sudo pkg install pkg:/text/groff You can also remove IPS packages with "pkg uninstall". If there is a package that you cannot find with IPS, you may use pkgsrc, a cross-platform package database maintained by The NetBSD Foundation, as well as Triton Datacenter for their Illumos builds. pkgsrc uses the "pkgin" command to manage binary packages. You can install packages via "pkgin in" and you may uninstall them via "pkgin rm". If you cannot find a package, you may run "pkgin se" to search the package database. It is reccomended to update the packages in your zone periodically. You may do this with the following: - sudo pkg update - sudo pkgin ug NOTE: You may need to install GCC's runtime for some packages in pkgsrc. You may do this with IPS: sudo pkg install gcc-runtime