个人工具

“UbuntuHelp:CheckInstall”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
第2行: 第2行:
 
{{Languages|UbuntuHelp:CheckInstall}}
 
{{Languages|UbuntuHelp:CheckInstall}}
 
[[UbuntuHelp:CheckInstall|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.
 
[[UbuntuHelp:CheckInstall|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.
https://help.ubuntu.com/community/IconsPage?action=AttachFile&do=get&target=IconTip.png Use [[UbuntuHelp:CheckInstall|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.
+
https://help.ubuntu.com/community/IconsPage?action=AttachFile&do=get&target=IconTip.png Use [[UbuntuHelp:CheckInstall|CheckInstall]] instead of just runnin<pre><nowiki>sudo</nowiki></pre>ke 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! ==
 
== Warning! ==
 
[[UbuntuHelp:CheckInstall|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 [[UbuntuHelp:CheckInstall|CheckInstall]] (for instance, using Ctrl+C). Please have a [[UbuntuHelp:LiveCD|LiveCD]] ready for recovery, or be sure you can access the recovery mode, before using [[UbuntuHelp:CheckInstall|CheckInstall]]. If this problem happens to you, you will need to use the following command as root to reset the correct permissions.
 
[[UbuntuHelp:CheckInstall|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 [[UbuntuHelp:CheckInstall|CheckInstall]] (for instance, using Ctrl+C). Please have a [[UbuntuHelp:LiveCD|LiveCD]] ready for recovery, or be sure you can access the recovery mode, before using [[UbuntuHelp:CheckInstall|CheckInstall]]. If this problem happens to you, you will need to use the following command as root to reset the correct permissions.
第19行: 第19行:
 
</nowiki></pre>
 
</nowiki></pre>
 
== Usage ==
 
== Usage ==
Instead of <code><nowiki>sudo make install</nowiki></code> you will use <code><nowiki>sudo checkinstall</nowiki></code>
+
Instead of <pre><nowiki>sudo make install</nowiki></pre> you will use <pre><nowiki>sudo checkinstall</nowiki></pre>
The installed package can then also easily be removed via <code><nowiki>synaptic</nowiki></code>
+
The installed package can then also easily be removed via <pre><nowiki>synaptic</nowiki></pre>
 
or
 
or
 
<pre><nowiki>
 
<pre><nowiki>

2007年12月6日 (四) 10:07的版本


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 runnin
sudo
ke 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 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