5

I have a copy of addressbook from Nokia N900 and it's a Berkeley DB file. How can I view it's contents?

$ file addressbook.db 
addressbook.db: Berkeley DB (Hash, version 8, native byte-order)
int_ua
  • 8,892

3 Answers3

2

Install db-util. There are several in Ubuntu Software Center (for example db5.3-util). The latest version via command line:

sudo apt-get install db-util

After installing all you need to do is:

db_dump addressbook.db 

Description of an old version from USC:

enter image description here

MCCCS
  • 103
Rinzwind
  • 309,379
1

If you have postfix installed, try

postmap -s <database-file-name>

For example, with the two files virtual and virtual.db, where virtual is the text file from which virtual.db was made with makemap, use

postmap -s virtual

Note that you do not have to specify the .db extension.

graham
  • 13,061
pbw
  • 11