- 论坛徽章:
- 0
|
About one year ago, in order to study FreeBSD systematically, I read through the FreeBSD Handbook and summarized the material for better unstanding. By doing this, I found the work did help me a lot, as every time when I wrote something into the notebook, I had to undertand the logic and organized the materials in a way that I understood. However, the chapter I am posting here is the only chapter that I typed on my computer. All other chapters were written by hand.
Now, I'd like to post it here to show you the way I learnt. Any mistakes remain on my own and all corrections are warmly welcome.
Chapter 4 Installing Applications: Packages and Ports (1)
1. Overview of Software Installation
Two ways to install software in FreeBSD system: Packages and Ports.
Packages:
The steps of installing a package:
1. Downloading
2. Unpacking
3. Patching
4. Compiling
5. installing
Ports:
A FreeBSD port for an application is a collection of files designed to automate the process of compiling an application from source code.
2. Benefits of Package and Ports
Package Benefits
1. Size is smaller than source code
2. Not require additional compilation (time-consuming on a slow system)
3. Not require any understanding of the process involved in compiling software on FreeBSD
Ports Benefits
1. Tweak the compilation options vs. Conservative options (it could generate code that is specific to a system)
2. Some applications have compile time options relating to what they can and cannot do
3. Some software is distributed by source code to avoid licensing.
4. Some people don't trust binary distributions.
5. If you have local patches, you will need the source in order to apply them.
3. Finding Your Application
When you decide to install an application, you must know what the application is called. There are a number of ways to find it out:
1. www.FreeBSD.org/ports. An up-to-date searchable list of all the available applications.
2. www.FreshPorts.org. It tracks changes to the applications in the ports tree as they happen.
3. www.freshmeat.net. Find an application without knowing the name.
4. When you know the exact name of the port and want to find out which category it is in, you can use whereis file command.
5. Use the Ports Collection’s built-in search mechanism. Within the /usr/ports, run make search name=program-name or make search key=string where string is some text to search for (case-insensitive).
4. Using the Packages System
4.1 Installing a Package – download a package manually and install it locally:
1. Connect to the server:
# ftp –a ftp2.FreeBSD.org
2. Change to the right directory
# cd /pub/FreeBSD/ports/packages/sysutils/
3. Download the file
# get lsof-4.56.4.tgz
4. Disconnect the connection and install the package
ftp> exit
# pkg_add lsof-4.56.4.tgz
If you don't have a source of local packages (such as a FreeBSD CD-ROM set) then it will probable be easier to use the –r option to pkg_add. This will cause the utility to automatically determine the correct object formal and release and then fetch and install the package from an FTP site.
# pkg_add –r lsof
4.2 Managing Packages
pkg_info
A utility that lists and describes the various packages installed.
pkg_version
Summarizes the versions of all installed packages. It compares the package version to the current version found in the ports tree. The meanings of the following symbols are.
= Installed package matches the one found in the local ports tree.
< The installed version is older than the one available in the ports tree
> The installed version is newer than the one available in the ports tree.
? The installed package cannot be found in the ports index.
* There are multiple versions of the package.
pkg_delete
Remove a previously installed software package.
# pkg_delete xchat-1.7.1
4.3 Miscellaneous
All packages information is stored within the /var/db/pkg directory. The installed file list and descriptions of each package can be found within files in this directory. |
|