The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Operating Systems > BSD
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 06-10-2009
_R3d _R3d is offline
Registered User
  
 

Join Date: Jul 2006
Posts: 73
freebsd and openbsd use the ports system.
you can either use
Code:
pkg_add -r pkgname
to install the binary package of the software. the -r switch pulls in all dependencies. or you can build from source.
Code:
cd /usr/ports/whatever/port
make install clean
netbsd uses pkg-src. i know nothing about pkg-src.
now theres pcbsd and desktopbsd. pcbsd uses pbi for software. BUT, being as that it is essentially freebsd, you can still use the ports system... which i recommend anyways.
i dont know anything about desktopbsd.