File: README.Debian

package info (click to toggle)
fcheck 2.7.59-27
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 612 kB
  • sloc: perl: 5,384; sh: 45; makefile: 5
file content (54 lines) | stat: -rw-r--r-- 1,748 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
FCHECK FOR DEBIAN
=================

Installation
------------

Debian package should perform all installation that is required. You should
only need to edit the configuration file and re-run fcheck additionally
including the -c option to rebuild the database.

Original README and INSTALL docs included that came with the source.

Configuration
-------------

Additional features included in the debian package include:

a) Default /etc/fcheck/fcheck.cfg config file to do some basic checking.

   This file will need editing to suit your personal requirements, please
   see the INSTALL file regarding syntax and options;

b) Automatic addition of a crontab entry to run fcheck regularly.

   Edit /etc/cron.d/fcheck and amend as required.

c) Addition of basic man page;

d) Basic fcheck md5sum database created when the package is installed;

   Database is created according to the ruleset defined in the configuration
   file, /etc/fcheck/fcheck.cfg. If you wish to change the database, then
   edit the configuration file and re-run fcheck with the -c option.

   See INSTALL file for further details.

 -- Graham Simpson <gsimpson@copernicusgbs.com>, Wed, 29 Nov 2000 07:44:36 +0000

Power Management
----------------

If you are using fcheck on a laptop and would like to avoid running the check
when you are running off of battery power, install the "powermgmt-base" package
and change the cronjob (/etc/cron.d/fcheck) like this:

from:

  30 */2	* * *	root	test -x /usr/sbin/fcheck && if ! nice ionice -c3 /usr/sbin/fcheck -asxrf ...

to:

  30 */2	* * *	root	test -x /usr/sbin/fcheck && /usr/bin/on_ac_power && if ! nice ionice -c3 /usr/sbin/fcheck -asxrf ...

 -- Francois Marier <francois@debian.org>  Thu, 01 Oct 2009 21:45:48 +1300