source: general/genlib/gdbm.xml@ f2464092

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since f2464092 was 82f09cd1, checked in by Igor Živković <igor@…>, 20 years ago

various fixes/additions

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2426 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 4.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7<!ENTITY gdbm-download-http "http://ftp.gnu.org/gnu/gdbm/gdbm-&gdbm-version;.tar.gz">
8<!ENTITY gdbm-download-ftp "ftp://ftp.gnu.org/gnu/gdbm/gdbm-&gdbm-version;.tar.gz">
9<!ENTITY gdbm-size "223 KB">
10<!ENTITY gdbm-buildsize "4.1 MB">
11<!ENTITY gdbm-time "0.08 SBU">
12
13]>
14
15<sect1 id="gdbm" xreflabel="GDBM-&gdbm-version;">
16<?dbhtml filename="gdbm.html"?>
17<title>GDBM-&gdbm-version;</title>
18
19<sect2>
20<title>Introduction to <application><acronym>GDBM</acronym></application></title>
21
22<para>The <application><acronym>GDBM</acronym></application> package
23contains the <acronym>GNU</acronym> Database Manager. This
24is a disk file format database which stores key/data-pairs in single
25files. The actual data of any record being stored is indexed by a unique
26key, which can be retrieved in less time than if it was stored in a text
27file.</para>
28
29<sect3><title>Package information</title>
30<itemizedlist spacing='compact'>
31<listitem><para>Download (HTTP): <ulink
32url="&gdbm-download-http;"/></para></listitem>
33<listitem><para>Download (FTP): <ulink
34url="&gdbm-download-ftp;"/></para></listitem>
35<listitem><para>Download size: &gdbm-size;</para></listitem>
36<listitem><para>Estimated Disk space required:
37&gdbm-buildsize;</para></listitem>
38<listitem><para>Estimated build time:
39&gdbm-time;</para></listitem></itemizedlist>
40</sect3>
41
42
43</sect2>
44
45<sect2>
46<title>Installation of <application><acronym>GDBM</acronym></application></title>
47
48<para>Install <application><acronym>GDBM</acronym></application> by running the following commands:
49</para>
50
51<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
52make &amp;&amp;
53make BINOWN=root BINGRP=root install</command></userinput></screen>
54
55<para>In addition, you may need to install the <application>DBM</application>
56and <application>NDBM</application> compatibility headers since some
57applications look for these older dbm routines.</para>
58
59<screen><userinput><command>make BINOWN=root BINGRP=root install-compat</command></userinput></screen>
60
61</sect2>
62
63<sect2>
64<title>Command explanations</title>
65
66<para><command>make BINOWN=root BINGRP=root install</command>: This
67command overrides the <varname>BINOWN</varname> and
68<varname>BINGRP</varname> variables in the <filename>Makefile</filename>
69changing ownership of the installed files to root instead of the bin
70user.</para>
71
72</sect2>
73
74<sect2>
75<title>Contents</title>
76
77<para>The <application><acronym>GDBM</acronym></application> package
78contains <filename class="libraryfile">libgdbm</filename> libraries.</para>
79
80</sect2>
81
82<sect2><title>Description</title>
83
84<sect3><title>gdbm libraries</title>
85<para><filename class="libraryfile">libgdbm</filename> libraries contain functions that perform
86database routines using extendible hashing.</para></sect3>
87
88
89</sect2>
90
91</sect1>
92
Note: See TracBrowser for help on using the repository browser.