Create Your Own .deb Packages with Checkinstall

If you’ve been using Linux for a while, you’ve probably run across the need to install something from the source packages. Either the program you wanted wasn’t available in the repositories, or you wanted a more recent version than what’s shown in the repositories. Checkinstall is a program that will create Slackware, Debian, or RPM packages for you after you compile a program from source. For a typical install from source you run

./configure
make
sudo make install

With checkinstall you run

./configure
make
sudo checkinstall

Checkinstall is available in the Ubuntu Universe repository. Make sure Universe is enabled in your package sources and then install it with Synaptic or from the terminal with

sudo apt-get install checkinstall

One thought on “Create Your Own .deb Packages with Checkinstall

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.