Difference between revisions of "Instalasi BerkeleyDB"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (New page: # download berkeley db from http://www.oracle.com/technology/pro...-db/index.html # create a dir in your home and un-tar the downloaded file there # go to ./build_unix directory in the roo...) |
Onnowpurbo (talk | contribs) |
||
Line 1: | Line 1: | ||
+ | ==Install== | ||
+ | |||
+ | Instalasi menggunakan | ||
+ | |||
+ | apt-get install db4.8-util db4.8-doc | ||
+ | |||
+ | ==Compile== | ||
+ | |||
+ | Kalau anda punya account di oracle.com bisa compile dari [[source code]] | ||
+ | |||
# download berkeley db from http://www.oracle.com/technology/pro...-db/index.html | # download berkeley db from http://www.oracle.com/technology/pro...-db/index.html | ||
# create a dir in your home and un-tar the downloaded file there | # create a dir in your home and un-tar the downloaded file there |
Latest revision as of 09:10, 5 January 2011
Install
Instalasi menggunakan
apt-get install db4.8-util db4.8-doc
Compile
Kalau anda punya account di oracle.com bisa compile dari source code
- download berkeley db from http://www.oracle.com/technology/pro...-db/index.html
- create a dir in your home and un-tar the downloaded file there
- go to ./build_unix directory in the root directory of the berkeley db source you just un-tarred
- run this command at your shell:
../dist/configure --bindir=/usr/local/bin --libdir=/usr/lib/ --includedir=/usr/include/ --enable-cxx
- run 'make' at your command prompt
- next run 'make install'; if you are not an admin, do 'sudo make install' instead
Referensi
- http://www.oracle.com/technetwork/database/berkeleydb/downloads/index.html
- http://ubuntuforums.org/showthread.php?t=1210320