The *nix documentation project is meant to provide online searchable documentation for Linux, FreeBSD, OpenBSD, NetBSD, HP-UX, Tru64 and other Unix like operating systems.
Currently hosting over 25000 manual pages,
over 200 Linux Howtos, over 100 FreeBSD tips and a friendly comunity forum where your questions will be answered.
|
FreeBSD Tip Of the Day
|
View all tips
|
You can install extra packages for FreeBSD by using the ports system.
If you have installed it, you can download, compile, and install software by
just typing
# cd /usr/ports//
# make install && make clean
as root. The ports infrastructure will download the software, change it so
it works on FreeBSD, compile it, install it, register the installation so it
will be possible to automatically uninstall it, and clean out the temporary
working space it used. You can remove an installed port you decide you do not
want after all by typing
# cd /usr/ports//
# make deinstall
as root.
|
|