Changeset c90376c1
- Timestamp:
- 06/25/2004 03:44:26 PM (19 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 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, ken/inkscape-core-mods, krejzi/svn, lazarus, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226
- Children:
- 9f729d3
- Parents:
- b0d6e4b
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
content/databases/db-3.3.xml
rb0d6e4b rc90376c1 5 5 %general-entities; 6 6 7 <!ENTITY db-3.3-download-http " 8 <!ENTITY db-3.3-download-ftp "ftp:// ftp.pu.edu.tw/Unix/Database/BerkeleyDB/db-&db-3.3-version;.tar.gz">7 <!ENTITY db-3.3-download-http "http://fresh.t-systems-sfr.com/unix/src/misc/db-&db-3.3-version;.tar.gz"> 8 <!ENTITY db-3.3-download-ftp "ftp://sleepycat1.inetu.net/releases/db-&db-3.3-version;.tar.gz"> 9 9 <!ENTITY db-3.3-size "2.3 MB"> 10 <!ENTITY db-3.3-buildsize "2 0.3MB">10 <!ENTITY db-3.3-buildsize "27.5 MB"> 11 11 <!ENTITY db-3.3-time "0.80 SBU"> 12 12 ]> … … 38 38 <itemizedlist spacing='compact'> 39 39 <listitem><para>Required Patch: <ulink 40 url="http://www.sleepycat.com/ webforms/patchdl.php?src=patch.3.3.11.1"/></para></listitem>40 url="http://www.sleepycat.com/update/&db-3.3-version;/patch.&db-3.3-version;.1"/></para></listitem> 41 41 <listitem><para>Recommended Patch: <ulink 42 url="http://www.sleepycat.com/ webforms/patchdl.php?src=patch.3.3.11.2"/></para></listitem>42 url="http://www.sleepycat.com/update/&db-3.3-version;/patch.&db-3.3-version;.2"/></para></listitem> 43 43 </itemizedlist></sect3> 44 45 44 46 45 </sect2> … … 49 48 <title>Installation of <application>Berkeley DB</application></title> 50 49 51 <para>See: <ulink url="http://www.sleepycat.com/download/patching.shtml"/>52 for instructions on installing the patches.53 </para>54 55 50 <para>Install <application>Berkeley DB</application> by running the following commands: 56 51 </para> 57 52 58 <screen><userinput><command>cd build_unix && 53 <screen><userinput><command>patch -Np0 -i ../patch.&db-3.3-version;.1 && 54 patch -Np0 -i ../patch.&db-3.3-version;.2 && 55 cd build_unix && 59 56 ../dist/configure --prefix=/opt/db-3.3 --enable-compat185 && 60 57 make && 61 58 make docdir=/opt/db-3.3/doc/Berkeley-DB install && 62 59 cd /opt/db-3.3/lib/ && 63 rm -f libdb.so&&60 mv libdb.so .. && 64 61 for i in $(ls); do mv $i /usr/lib; ln -sf /usr/lib/$i; done && 62 mv ../libdb.so . && 65 63 cd /opt/db-3.3/include/ && 66 64 sed -i 's/^DB185/DB/' db_185.h && … … 72 70 <title>Command explanations</title> 73 71 74 <para><command>sed 's/^DB185/DB/' /usr/include/db_185.h > /usr/include/db_185.h.new</command>: Change the DB185 database pointer to DB.</para> 72 <para><parameter>docdir=/opt/db-3.3/doc/Berkeley-DB</parameter>: Installs the 73 documentation in the <filename class="directory">/opt/db-3.3</filename> 74 hierarchy.</para> 75 76 <para><command>mv libdb.so ..</command> and <command>mv ../libdb.so 77 .</command>: Avoids moving <filename>libdb.so</filename> to 78 <filename class="directory">/usr/lib</filename>.</para> 79 80 <para><command>for i in ...; do ...; ln ...; done</command>: Moves the DB 81 libraries to <filename class="directory">/usr/lib</filename> and creates 82 symlinks to these libraries in 83 <filename class="directory">/opt/db-3.3/lib</filename>.</para> 84 85 <para><command>sed -i 's/^DB185/DB/' db_185.h</command>: Change the DB185 86 database pointer to DB.</para> 75 87 76 88 </sect2> … … 88 100 <command>db_recover</command>, 89 101 <command>db_stat</command>, 90 <command>db_upgrade</command> and 91 <command>db_verify</command>. 102 <command>db_upgrade</command>, 103 <command>db_verify</command> and the 104 <filename class="library">libdb-3</filename> libraries. 92 105 93 106 </para> … … 100 113 <para><command>db_archive</command> prints the pathnames of log files that are 101 114 no longer in use.</para></sect3> 102 103 115 104 116 <sect3><title>db_checkpoint</title> … … 122 134 readable text.</para></sect3> 123 135 124 125 136 <sect3><title>db_recover</title> 126 137 <para><command>db_recover</command> is used to restore a database to a -
general.ent
rb0d6e4b rc90376c1 1 <!ENTITY day "2 4">1 <!ENTITY day "25"> 2 2 <!ENTITY month "06"> 3 3 <!ENTITY year "2004"> -
introduction/welcome/changelog.xml
rb0d6e4b rc90376c1 18 18 19 19 <itemizedlist> 20 21 <listitem><para>June 25th, 2004 [randy]: Added patch instructions and 22 command explanations for DB-3.</para></listitem> 20 23 21 24 <listitem><para>June 25th, 2004 [igor]: Added Screen-4.0.2,
Note:
See TracChangeset
for help on using the changeset viewer.