~ted-m-cox/serverguide/vcs-bzr-doc

« back to all changes in this revision

Viewing changes to serverguide/C/package-management.xml

  • Committer: Doug Smythies
  • Date: 2015-04-04 01:44:58 UTC
  • mfrom: (247.1.2 sanchopanza_001)
  • Revision ID: dsmythies@telus.net-20150404014458-yw9gaqnbqxxf0kev
minor edits; MP: #255167; MP: #255165; by Ted Cox

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
]>
10
10
<chapter id="package-management" status="review">
11
11
        <title>Package Management</title>
12
 
        <para>Ubuntu features a comprehensive package management system for installing, upgrading, configuring, and removing software.  In addition to providing access to an organized base of over 35,000 software packages for your Ubuntu computer, the package management facilities also feature dependency resolution capabilities and software update checking.
 
12
        <para>Ubuntu features a comprehensive package management system for installing, upgrading, configuring, and removing software.  In addition to providing access to an organized base of over 45,000 software packages for your Ubuntu computer, the package management facilities also feature dependency resolution capabilities and software update checking.
13
13
        </para>
14
14
        <para>
15
15
        Several tools are available for interacting with Ubuntu's package management system, from simple command-line utilities which may be easily automated by system administrators, to a simple graphical interface which is easy to use by those new to Ubuntu.
23
23
        Debian package files typically have the extension '.deb', and usually exist in <emphasis role="italics">repositories</emphasis> which are collections of packages found on various media, such as CD-ROM discs, or online.  Packages are normally in a pre-compiled binary format; thus installation is quick, and requires no compiling of software.
24
24
        </para>
25
25
        <para>
26
 
        Many complex packages use the concept of <emphasis role="italics">dependencies</emphasis>.  Dependencies are additional packages required by the principal package in order to function properly.  For example, the speech synthesis package <application>festival</application> depends upon the package <application>libasound2</application>, which is a package supplying the <application>ALSA</application> sound library needed for audio playback.  In order for <application>festival</application> to function, it and all of its dependencies must be installed. The software management tools in Ubuntu will do this automatically.
 
26
        Many complex packages use <emphasis role="italics">dependencies</emphasis>.  Dependencies are additional packages required by the principal package in order to function properly.  For example, the speech synthesis package <application>festival</application> depends upon the package <application>libasound2</application>, which is a package supplying the <application>ALSA</application> sound library needed for audio playback.  In order for <application>festival</application> to function, it and all of its dependencies must be installed. The software management tools in Ubuntu will do this automatically.
27
27
        </para>
28
28
  </sect1>
29
29
  <sect1 id="dpkg" status="review">