Linux Package Management (Distribute Your App)

From Foss2Serve
Jump to: navigation, search


Title

Linux RPM package management Part 1 (Packaging the 'htop' command)

Overview

Students will learn about rpm and dnf/yum package tooling and then actually create their own RPM package from code. This can be advertised to students as being able to distribute their own Linux-based application to the world.

Prerequisites

Students should be familiar with:

  • Beginner to Intermediate Shell knowledge (Linux command line)
    • Getting around the Linux file system, sudo'ing, editing files, etc.
  • Making and compiling Linux software code
    • see extended note in the Comments section below
Learning
Objectives
After successfully completing this activity, the learner should be able to:
  • Install RPM's and use the dnf/yum command to install and inspect packages
  • Create a compliant .spec file
  • Build an RPM from existing code and assure that it works
  • Keep a working log and cheat sheet of command-line history
Process Skills
Practiced


Background

Is there background reading material?

Are there other related activities?

What is the rationale for this activity?

  • Students may wonder how they can distribute Linux-based code that they develop out to other everyday users. Not many users enjoy compiling code, so the RPM package structure allows easy installation of binary pre-compiled code packages. Basically, a student could have coded a small sample command-line application and now they can send it to others easily. The other side of it is that students, as users of Linux, will be interfacing with RPM packages not of their making and it will be good to have an understanding of the backends of how this works. Students will interface with the dnf and yum commands even if simply using Linux for fun. Now, they can have knowledge into how it works and how they can employ it for their careers and personal uses.


Directions

Keep a working log

Log your shell commands, answers to questions, and commentary in a text file, wiki, or blog. You will be constructing and troubleshooting numerous Linux shell command's and their outputs. Your assignment is to document these commands and the process you went through in an organized fashion. You might use bullet points or a new set of commands on each line. Make sure it is easily consumable by a human (your instructor), as well as yourself 10 years from now.

The data that is the output of the commands is not as interesting as key lines or a summary/comment of their output or on what the command has done - ex: failed, succeeded, why, what it did, what it changed, etc. Write these in complete sentences. Commentary is especially important if you run into problems. When this occurs, state the problem and how you intend to solve it. At the end, you should have a text document with all of the commands, right and wrong, that you went through to get this activity completed. It should read as a timeline of what you did and what your thoughts were, to get the assignment complete. After this is complete, you will summarize the most useful commands into a sort of cheat sheet - this can come in useful for years to come.

See some samples and tools for a working log. Whatever method you use, make your written log human readable, make it a story if you wish. When you come back to this years from now, needing to remind yourself how to package some newly minted code, you want a summary/cheat sheet and you want to be able to understand the context and follow your thoughts of why you tried certain things. You don't want to be parsing through lines and lines of shell input and output.

Working log examples
Working log Tools to help you
  • history command - Use this command to see what commands you have typed in the past.
  • script command - You may alternately want to use the script command, which records all commands and their output to a file. The downside is that you have to remember to run this command before you wanted that output.
  • Multiple terminal windows/tabs - It is advised that you utilize multiple terminal (shell) windows at the same time. When you get sidetracked on installing a dependency, use a separate window for that. This keeps your shell history organized and parsable afterwards.
  • Up your terminals buffer limit - You might also consider upping your terminal windows buffer for the number of lines it holds, to somewhere in the tens of thousands - just in case you decide you want to come back to something you learned a while back, or in case a command spits out thousands of lines of results - which can happen. Some terminal applications can record commands and output to text files.


The activity will follow these general steps

  1. Use dnf/yum and rpm files.
  2. Learn about creating rpm's and the rpmbuild command.
  3. Package the htop project into an RPM.


Step 1: dnf / yum and .rpm's

  • First, lets do some learning before we jump into shell commands. Answer the following in your log:
    • What is the difference between dnf and yum? Why was the change made?
    • What are .rpm files? Where might you find them and how are they used?
  • Use the dnf command to view what packages have been recently installed on your machine.
    • Hint: There is a specific command for this. man dnf is your friend
    • Attempting to list all packages will often be quite a long listing.
  • Use the dnf command to install a .rpm package not currently installed on your machine.
    • Pick something simple, as you will need to operate it in the next steps.
    • Hint: If you dont find your own (more credit given for this), you can install screen
  • Use dnf to show that the new package is now installed.
  • Run or operate this newly installed utility. Where did dnf place the executable file?


Step 2: RPM's and rpmbuild

Required reading / watching:

  1. RPM Build Example Video - Watch, at least, the first 8 mins of this video from a recording of a local Linux User Group meeting
  2. RPM process Diagram from video - Find the diagram that the video references on the page labeled 12-17
    • Document authored by Guru Labs, L.C. released under the CC-BY-NC-ND 2.0 license
  3. Packaging the `wget` command - Review this example in its entirety
    • This will take some time to read, but don't worry about details, as we will step through it again below.
    • If you were to try to follow along in the shell, there may be some difficulties with wget.
    • Instead, save it for Part 3 below; You will use this readings structure to turn the htop code into an RPM.

Questions:

  • What is a source RPM vs binary RPM?
  • What does the rpmbuild command do?
  • Quickly summarize the directory structure when making your own RPM - you will stick this into your cheat sheet later, so make it short.


Step 3: Create your own 'htop' RPM

In this section, we will take code from the htop project and turn it into an RPM package.

Htop is a tool that shows you how busy your CPUs and memory are, as well as detailed information about the various processes being run on your operating system. It is semi visual, in that it runs in the terminal, but uses colors and blocks to make "graphics" (called ncurses). It is a successor to the famed top command that comes in all linux flavors. System administrators use both of these to diagnose and troubleshoot problems.

Htop was selected in this activity because it does not come standard in most operating systems, meaning it is not already installed. It is also a relatively small/simple build and the functionality of htop is rather useful.


Instructions:

  • Build htop manually
    • Compile the htop project to test that the code can be turned into binary form in your environment.
    • Before you can create an RPM, code must compile manually.
    • See Dependency Issues in the appendix below for detailed configure and make issues that you might run into.
    • Once you have ./configure, make, and make install compiling htop, you can move on to building an RPM for it
  • Create RPM dir structure
    • It should look like:
      [nyeates@localhost myhtop]$ ls
      BUILD RPMS SOURCES SPECS SRPMS
    • Place your tar.gz file into the SOURCES directory
    • Assure that you stick to the naming convention "package-version.tar.gz"
  • Build an RPM and test that it works
    • Run rpmbuild command
    • Use rpmlint and mock to verify that the created .RPM works
    • (Optional) You might try to dnf install the RPM on a separate computer or shell to see that it really works
      • This is not required for this activity

Deliverables

One single text document can hold all of what needs to be handed in below. Put them in the following order, first to last, so that the instructor can find them easily.

Students will hand in:

  • Cheat sheet / Summary
    • A quick-reference guide, truly meant for your future use.
    • List key commands and what they do.
    • Succinctly explain the RPM directory structure.
  • Answers to specific questions
    • 1-3 sentance answers to the questions asked throughout the above activity.
  • The working log
    • See the above lengthy note about the working log.

Assessment

Criteria Level 1 (fail) Level 2 (pass) Level 3 (good) Level 4 (exceptional)
Installs and inspects RPMs with dnf/yum Did not attempt commands Attempted to install RPM, but was unsuccessful Installed RPM and showed that it is installed Installed RPM, showed that it is installed, and ran the installed binary
Creates a compliant .spec file Did not attempt to create file Creates file, but minimally fills out metadata Creates file, fills out metadata Creates file, fills out metadata, and adds comments
Builds an RPM and assures that it works Did not attempt to build RPM Attempted to build RPM, but was unsuccessful Built RPM Built RPM and assured that it works with rpmlint, mock and/or dnf install
Creates a working log and cheat sheet of commands Did not create a working log Created a minimal working log that shows only commands and their output - no user comments Created working log that explains commands and summarizes with a cheat sheet Created working log that contains an easy to follow narrative of commands and reasons why they were run; Summarizes with a cheat sheet that is very easy to reference and understand


Comments

What should the instructor know before using this activity?

  • Students should know how to compile Linux software code before doing this activity.
    • There exists an activity which covers this: Introduction_to_building_open_source_software
    • Particularly, students should have experience using the configure, make, and make install commands
    • If students have not compiled in the past, it is common to not have all of the required libraries and modules already installed for the compilation process to succeed. This is a major part of creating RPM's. This setup takes time to troubleshoot and setup, and it could be different on each system if students are not using identical operating systems.

What are some likely difficulties that an instructor may encounter using this activity?

  • Instructors may run into students having build problems. The instructor should implement the commands of this activity on a machine themselves. You may still run into student problems that you did not see, but at least you have the context.
  • If you allow students to run on their own systems, there may be more of these compatibility problems. Consider a lab / virtual machine environment or telling students that are on their own environments that they will need to support themselves.


Additional Information

ACM BoK
Area & Unit(s)

PL - Programming Languages, SE - Software Engineering

ACM BoK
Topic(s)

PL/Compiler Semantic Analysis, PL/Code Generation, SE/Tools and Environments

Difficulty

Easy-Medium, for students that meet the pre-reqs

Estimated Time
to Complete

3-4 hours

Environment /
Materials
  • Access to the shell of a Linux operating system that uses RPM (virtualized or on hardware can work)
  • root access is likely needed - another good vote for virtualized systems (might use virtualbox)
Author(s)

Nick Yeates

Source
License

This work is licensed under a Creative Commons Attribution 4.0 International License

CC-BY.png


Suggestions for Open Source Community

Suggestions for an open source community member who is working in conjunction with the instructor:

  • Why did your community decide to standardize on the autotools-based config/make building? Or, why not?
  • Explain to students why packaging skills can be used on many open source linux-based projects, across their careers.
  • Help students through the often-confusing build process
  • Help students to find alternate examples to step through - aka, finding project code other than the ones listed above and making it into an RPM.

Appendix

Dependency Issues

  • htop may provide you with issues when running ./configure, make, and make install; Find some solutions below.
    • There is always some odd ./configure setting or dependency that needs installing (this means, other rpm packages that this project needs installed in order to compile)
    • Unfortunately, these dependencies are not installed automatically - you must install them yourself and then try to ./configure or make again
  • Some dependency issues you might run into with htop:
    • gcc, try each of these commands one at a time:
      sudo dnf install glibc-devel glibc-headers kernel-headers kernel-devel gnutls-devel
      sudo dnf groupinstall "Development Tools"
      sudo dnf install gnutls
      # answer from http://stackoverflow.com/questions/18076157/why-does-configure-say-no-c-compiler-found-when-gcc-is-installed
    • libncurses or unicode, "configure: error: You may want to use --disable-unicode or install libncursesw."
      ./configure --disable-unicode # first try disabling unicode like they suggest
      which ncurses # ncurses is usually already installed, but if not, you will need to dnf install it also
      sudo dnf install ncurses-devel # try installing the ncurses-developer library package
      # answer from http://www.linuxquestions.org/questions/linux-software-2/error-while-try-to-install-htop-0-8-a-655823/
  • Some make issues you might run into with htop:
    • Permission denied, "/usr/bin/install: cannot create regular file '/usr/local/bin/htop': Permission denied"
      sudo make install # you needed sudo (root) vs just running this as make install


Other readings

While researching this activity, these other resources were found. Instructors and students may find them useful for added reading or background.


Consider breaking these additional steps into a new activity

The following can be additional future steps, or a completely separate activity:

  1. Have students host the package on a web source (A free internet service that makes the .rpm accessible by URL)
  2. Have each student in the class pair up and try to install the other person's RPM and run the new command
Personal tools
Namespaces
Variants
Actions
Events
Learning Resources
HFOSS Projects
Evaluation
Navigation
Toolbox