updated on Sat Jan 14 12:12:45 UTC 2012
[aur-mirror.git] / ioreniced / ioreniced.conf
blobdfcd22f1ac1167fd29f1829055b5141b76c00418
2 # the i/o priority to be used:
3 # 1 -> real time   -> DONT use this unless you know what you are doing
4 # 2 -> best effort -> default setting for all processes
5 # 3 -> idle        -> lowest priority, shouldnt kill the system while doing
6 #                     i/o-intensive stuff
7 IONICE_PRIO="3"
10 # all processes you want to run at the given i/o priority
11 # every "hit" in the process list will get the priority
12 # means adding "rar" here works for both "rar" and "unrar"
14 IONICE_ME=('kio_file'
15            'find'
16            'cp'
17            'mv'
18            'mc'
19            'tar'
20            'updatedb'
21            'mandb'
22            'gzip'
23            'bzip2'
24            'rar'
25            'zip'
26            '7z'
27            'mkisofs'
28            'mksquashfs'
29            'repo-add'
30            'bsdtar')
33 # how often should we check for new processes and apply some io niceness
34 # (value = seconds)
36 POLLING_INTERVAL="2"
39 # behavior of the daemon:
40 # brute: always iorenice all matching processes, dont check anything
41 #        (should be safe. try "smart" in case of problems.)
42 # smart: keep a list of processes and iorenice only once
43 #        (100% safe, but uses more cpu)
45 BEHAVIOR="brute"
48 # logging options
49 # (value = yes/no)
51 ENABLE_LOGGING="no"
52 LOG_FILE="/var/log/ioreniced.log"