File: INSTALL

package info (click to toggle)
duc 1.4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,632 kB
  • sloc: ansic: 11,398; sh: 165; makefile: 101; xml: 24
file content (126 lines) | stat: -rw-r--r-- 4,482 bytes parent folder | download
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126

Quickstart
----------

To build Duc with its default options, run:

    $ ./configure
    $ make
    $ sudo make install


To get the required dependencies on Debian or Ubuntu, run:

    $ sudo apt-get install libncursesw5-dev libcairo2-dev libpango1.0-dev \
      build-essential libtokyocabinet-dev


On RHEL or CentOS systems, you need to do:

    $ sudo yum install pango-devel cairo-devel tokyocabinet-devel 


Duc comes with various user interfaces and a number of back ends for database
access and graph drawing. You can choose which options should be used with the
./configure script to build Duc to fit best in your environment.

This document describes the various options which can be passed to the
./configure script, and the impact these options have on Duc functionality.


User interfaces
---------------

Duc comes with the following user interfaces:

- Command line interface (duc ls): This user interface has no external
  dependencies and is always enabled

- Ncurses console interface (duc ui): an interactive console interface, which
  depends on ncurses or ncursesw. This user interface is enabled by default. If
  your system does not provide ncurses, you can disable this with

    --disable-ui

- X11 GUI (duc gui): This is the default interface for Linux and other Unix
  systems. This user interface depends on the cairo library (see below). If
  your system has no X11 or cairo available, disable this user interface with:

    --disable-x11

- OpenGL GUI (duc gui): an OpenGL/GLFW user interface which should be portable
  on a large range of operating systems. The OpenGL gui is disabled by default.
  If you want to enable OpenGL, run ./configure with:

    --enable-opengl --disable-x11


Database back end
----------------

Duc supports various key-value database back ends, at this time Tokyocabinet,
Leveldb and Sqlite3 are supported. Duc uses Tokyocabinet by default: the
performance is acceptable and generates in the smallest database size.

    --with-db-back end=ARG

If your system supports none of the above, contact the author to see if we can
add your favourite back end.

Please note: Not all database formats can be shared between machines with
different architectures. Notably, Tokyocabinet is built with non-standard
options which break compatibility with other linux distributions, even on the
same architecture [1]. If you are planning to share databases between different
platforms (index machine A, display on machine B) we recommend using the
sqlite3 backend.

1. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667979

When picking a backend you probably need to choose between speed, size and
robustness. Some measurements on my system of a 372G directory with 1.6M files:

----------------------------------
 Database        Run time Db size
                      (s)    (kB)
----------------------------------
 tokyocabinet [*]     8.4   19.2
 leveldb              7.1   31.5
 sqlite3             13.5   71.1
 lmdb                 5.9   78.7
 kyotocabinet         8.3   26.7
----------------------------------

[*] Tokyocabinet currenty is the default used by Duc because of the good
compression and reasonable performance. A problem is that Tokyocabinet is not
very stable and can create corrupt databases when interrupting the indexing. If
this is a problem for you, choose a different db backend.

Graphics
--------

Duc supports various back ends for creating graphics, but some have dependencies
which cannot be met on all systems. Especially on headless server systems or
embedded systems not all graphics libraries are available.

- SVG: Duc has native SVG support, which can be used by the 'duc graph' command
  to create static images of disk usage. The SVG back end has no external
  dependencies and is always enabled.

- HTML canvas: Duc has native support for generating graphs in HTML5 using
  JavaScript and the canvas object. The HTML back end has not external
  dependencies and is always enabled.

- Cairo/pango: The cairo/pango back end is required for the X11 user interface,
  and also adds an option to the duc-graph command to generate images in .PNG
  or .PDF file format. If your systems does not have cairo and pango available,
  add the following flag to ./configure:

    --disable-cairo

- OpenGL: Duc can draw to OpenGL contexts and can be used by the 'duc gui'
  command. To enable the OpenGL back end for the 'duc gui' command, run 
  ./configure with:

    --enable-opengl --disable-x11