Home > Articles > Operating Systems, Server > Linux/UNIX/Open Source

Making Your Package Match Your Environment

Instead of having to worry and document foo as an exception, just package foo using your distribution's package tools and install it like any other package. There was a time when I felt like this was a pipe dream; having everything in the package manager meant a lot of work to me. But the alternative—being bitten during upgrades because foo was unknown to the package manager—can be a lot of work too. Fortunately, free software has come a long way. Most things you need are in your distribution already, so you can deploy a new version by simply compiling the new version within the constructs of the existing package version's build scripts. In short, fetch the source package from your distribution and build the package on your target system.

For packages not yet in your distribution, GNU's autoconf (which creates those handy "configure" scripts) and a generally improving skill set and standardization among free software developers have gone a long way toward making packaging from scratch a snap. Let's get down the specifics of how you'd package a new version of foo for your system using the Debian package-management tools. For our first example, let's assume that foo- 1.0 is the current version on our system and that the distribution provides for the version of the operating system we're running. There is a foo-2.0 available, but it's for the beta version of the operating system, and when we tried to load it we received all sorts of package-dependency warnings like those listed below:

root@bach:/tmp# dpkg --install foo_2.0-1_i386.deb
(Reading database ... 26613 files and directories currently installed.)
Preparing to replace foo 1.0-1 (using foo_2.0-1_i386.deb) ...
Unpacking replacement foo ...
dpkg: dependency problems prevent configuration of foo:
 foo depends on libc6 (>= 2.1.97); however:
  Version of libc6 on system is 2.1.3-13.
dpkg: error processing foo (--install):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 foo

(Re)building a Package for Your Environment on a Debian System

You need to set up APT (the Advance Package Tool) to pull from the latest available source packages. APT is similar in function to Red Hat's package manager and allows you to pull your binary and source package from a variety of sources. /etc/apt/sources.list controls where APT looks for software. The format is <type> <location> <release> <section(s)>:

# /etc/apt/sources.list
#
# <type> "deb" means binary packages
deb ftp://ftp.freesoftware.com/pub/linux/debian stable main contrib non-free
deb http://non-us.debian.org/debian-non-US stable/non-US main contrib non-free
deb http://security.debian.org/debian-security stable updates/main updates/contrib updates/non-free
#
# <type> deb-src means source packages
deb-src ftp://ftp.freesoftware.com/pub/linux/debian unstable main contrib non-free
deb-src file:/local-pkgs/debian stable main

In the preceding /etc/apt/sources.list, the bulk of the distribution is pulled from a nearby mirror (ftp.freesoftware.com), while non–U.S. (code that ITAR won't let Americans export) is pulled from a location outside the United States, and security updates come from Debian's security archive. The two deb-src URLs indicate where source packages should be pulled from. Note that the <release> field for source packages is set to unstable so that I can pull from the latest available version. I also have a file URL for the packages I maintain.

Any time APT sources are modified, you have to instruct APT to contact each of the archives listed and pull the current list of packages available from there with this command:

apt-get update

Once that's complete, we're ready to pull the source for foo-2.0 and build it on our system (and against our libraries):

root@bach:/tmp$ apt-get source foo --compile

This command instructs APT to pull the package sources, extract them, and then compile them using dpkg-buildpackage, Debian's main tool for building .debs. In case you're wondering, you don't have to run this command as root—in fact, you probably shouldn't. A tool called fakeroot can be used to trick the package build scripts into thinking that you are root during the build process (so that permissions for the foo binary can be set appropriately). To do this, drop the --compile option and execute these commands after the apt-get source <package>:

tony@bach:/tmp$ cd foo-2.0
tony@bach:/tmp/foo-2.0$ dpkg-buildpackage -rfakeroot -uc -us

The -r will call fakeroot for us, and the -uc and -us switches simply indicate that we're not going to be signing the resulting package with the GPG key of the package maintainer. If all goes well, there will be a newly created foo_2.0-1_i386.deb sitting in /tmp.

Of course, you need to load the appropriate compilers and development libraries to build the binary itself. These are the same things you would need if you were to pull the original ("upstream") source and compile it yourself. To try to make things easier for Debian users, a Build-depends: line in ./foo-2.0/debian/control lists packages required to build the foo package.

Packaging from Scratch

The process just described is great when a source package is available with the version you need, but what about when the source package is outdated, or there's no package foo in your distribution? In that case, you'll need to build a package from scratch, using your distribution's tools. This may sound daunting, but please hear me out before you decide that this is simply too much work. You may be pleasantly surprised, and a little extra time up front builds the package for any number of boxes—and can save you expensive troubleshooting and/or downtime later.

Let's assume that we need qux, and our distribution doesn't currently ship with qux, nor can we find qux binary packages by browsing around the Web. We've retrieved the upstream tarball, qux_1.2.tgz, and we should extract it into a directory named qux-1.2 (a well-mannered tarball will do this for us anyway, so check the contents of the tarball with tar tzvf qux_1.2.tgz before you go to any trouble). Now, on a Debian system, change directories to qux-1.2 and invoke this command:

tony@bach:/tmp/qux/qux-1.2$ dh_make -s -etmancill@debian.org

Take a look at the build: and install: targets in debian/rules (it's a Makefile) to make sure that they do reasonable things, that is, the things that you would do from a command line to build the package yourself. About the only trick is that you want files (binaries, man pages—whatever comprises the package) to end up under debian/tmp/, as this represents the root of what will be copied over when the package is installed. Also add a comment or two to debian/changelog to indicate anything special about this release (this is also where you'll indicate the version number of the package). Once you're satisfied, use the dpkg-buildpackage command as shown previously to build your .deb.

Now, let's not beat around the bush—building packages can be complex. Often the packaging is involved because of how the software interacts with other packages and subsystems on the box. (Does it need to update inetd.conf and restart inetd? Is it a daemon that needs to be started on bootup? Do configuration files need to be converted from formats used by older versions of the package?) But the process is conceptually simple, and the difficult part is learning the arbitrary nuances of the package-building tools. So it's not much different from UNIX itself… The key is to take the time to read the documentation and not be intimidated by your first attempt. By building your own packages, you gain ultimate control over what's installed in your environment, including configuration files precustomized for your environment, site-specific documentation in the man pages, and binaries compiled with optimizations for your processor.

Now, after you build a slew of local packages, you need some easy way to distribute them. If you have to run around and install them by hand, you might as well just compile them by hand on every box! (Not really, since you'd be missing the point of having the software under the packaging system.) The sample /etc/apt/sources.list presented earlier should give you an idea; simply create your own local mirror and add the appropriate URL to all of your production systems' sources.list files. This provides an excellent way to control what's loaded into your environment, by giving you the opportunity to create local versions of packages that are either newer versions than those that ship with the distribution, or preconfigured for your environment. Keeping all your local packages in one central repository also helps you keep versions consistent across your environment.

As justification for building your own packages, I covered one type of dependency problem—the case where the binary is compiled against a newer library version than what you have installed. I should discuss a couple other dependency issues that can be resolved by rolling your own packages:

  • Dependencies on a particular kernel revision. Some system tools are sensitive to the kernel version on your system, and may break after a kernel upgrade. This is because the program may access /proc/kcore and/or need to access kernel data structures directly. (lsof is an example.) These programs use the header files in /usr/src/linux/include to determine the appropriate data structures to use to represent certain kernel memory objects, so a new kernel can mean new data structures. In most cases, the program merely needs to be compiled on a system running the same version of the kernel as the target environment.

  • Dependencies on newer versions of supporting libraries. Libraries evolve to include new functionality, and a developer may require that you run at least version X.Y to run foo-2.0. An example would be a dependency upon a particular version of GTK. (GTK is a GUI toolkit; see http://www.gtk.org.) Now you not only need to build a new foo package, but you have to upgrade libfoo as well. You might want to go ahead and build packages for both, but take note. Other packages that depend on libfoo may not be happy with the new library version, so you could end up recompiling for everything that depends on libfoo. This was probably not your intention, and really could result in a lot of work. In this situation, you may want to build a foo package that contains binaries statically linked against the newer version of libfoo. Note that this alternative may not be suitable for binaries that are being spawned very rapidly, such as a CGI program on a Web server, as process creation can be more expensive for statically linked binaries.

Having all of your system software under control is a Good Thing. It may take a bit more effort up front, but this effort is the difference between a point-in-time solution (quickly installing foo by hand and having to deal with issues down the road) and a solution that will survive future system changes. Installing all software via the package manager helps create consistency across installation and troubleshooting procedures, and it makes version inventory a snap. Furthermore, getting acquainted with your distribution's package tool will help you understand issues you may encounter during upgrades or with other third-party packages. For the more community-minded, you can share your packages with others and the Open Source community at large.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020