Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Zettelkasten - ZETTEL, coin with new hashalgo - CPU-mineable (for a while)
by
zettelkasten
on 24/04/2018, 21:20:49 UTC
Linux-Wallet (Qt + daemon) - 64 bit: http://zettelkasten.org/zettelkasten-linux-64.tar.gz

Has qt and all libraries statically linked.

I just tested it on a fresh Ubuntu 16 installation and it works right away without any further dependencies.

Can someone test?
Is the wallet.dat file format compatible between the Windows and Linux QT wallets?

Yes.

And with any other system like Mac OS etc.
I'm pretty confident that it is the same on all systems that use this db format.

Wallet.dat is a berkeley-db-file, so on linux you can use the berkeley-db-tools to inspect it if you are curious:

if you don't have it installed try...

Code:
sudo apt-get install db-util

then navigate to your wallet.dat and write this to show everything that is in your wallet.dat:

Code:
db_dump -p wallet.dat

or if you want to list all the database names in your wallet.dat:

Code:
db_dump -l wallet.dat

or furthermore if you want to show the content of the database "main" within your wallet.dat:

Code:
db_dump -p -s main wallet.dat

There are probably such tools for windows too.
And of course this db file would look exactly the same on windows too.

But I suggest you make a test yourself.