个人工具

UbuntuHelp:CheckInstall

来自Ubuntu中文

Wikibot讨论 | 贡献2007年11月22日 (四) 12:12的版本

跳转至: 导航, 搜索


CheckInstall keeps track of all files installed by a "make install" or equivalent, creates a Slackware, RPM, or Debian package with those files, and adds it to the installed packages database, allowing for easy package removal or distribution.

IconsPage?action=AttachFile&do=get&target=IconTip.png Use CheckInstall instead of just running "sudo make install", as that will likely put files all over the filesystem, with no easy way of removing them if things go wrong. If in the future you try to install a package that contains the same file as the software you are compiling, you will receive errors and the software you compiled may stop working.

Warning!

CheckInstall occasionally sets incorrect access permissions for your root directory (/), resulting in the inability to execute most commands or perform most operations on the system. This seems to happen if you interrupt CheckInstall (for instance, using Ctrl+C). Please have a UbuntuHelp:LiveCD ready for recovery, or be sure you can access the recovery mode, before using CheckInstall. If this problem happens to you, you will need to use the following command as root to reset the correct permissions.

chmod 755 /

You may want to run checkinstall with the command line

checkinstall --install=no

without using sudo, to avoid the problem, and then install the generated Debian package manually.

See bug #45763 for more information.

Installation

sudo aptitude install checkinstall

Usage

Instead of sudo make install you will use sudo checkinstall

The installed package can then also easily be removed via synaptic or

sudo dpkg -r packagename

Use CheckInstall with auto-apt

You can use auto-apt when you want to build a simple package from source with checkinstall. You need to have auto-apt installed!

Instead of

./configure

you use:

auto-apt run ./configure

If the dependencies are available, a dialog box opens and ask you to install them.

The rest remains the same

make
sudo checkinstall

IconsPage?action=AttachFile&do=get&target=IconWarning3.png Blog Rabais reported some troubles: He tested it with Swftools which has several dependencies. avi2swf didn't compile correctly and he had to remove all avifile dependencies manually to remove avi2swf from the compilation

Credits: Ubuntu-fr.org