I'm not a coder, or developer, and I am feeling lost here. Sure, I downloaded stuff to install on linux that will enable me to print a certain amount of bitcoins in paper form, but I have not installed all these packages and run the python application. Even if I did, is there another application for Reading a bill and then inserting the data into a wallet.dat? If I manually insert data into a wallet.dat, how would I actually do it? I've looked at the contents of my wallet.dat file, it's a confusing jumble of Hex stuff to me. Until you developer types come up with an Easy tool to use to both print, and read, these Bitcoin bills, I think I'm going to be too lost to even attempt it. Someone please develop a linux Package, that installs all the dependencies, or something. Sheesh.
Software development takes time. The idea of printing bitcoins is just one idea that people are toying with, and this forum thread is the very first time someone has seriously attempted it. Accordingly, we have written some of the very first software that can read it back in, but it's just command-line tools. You can't expect us to polish it up into a proper user-friendly UI with a Linux package and so on, when really we are just experimenting with an idea that might not work.
As I said above, I have provided the reader software online that I wrote. It isn't pretty, but you can get it working on the command-line as follows:
1. You will need Bazaar, Git, build essentials and libssl (sudo apt-get install bzr git build-essential libssl-dev).
2. See
https://code.launchpad.net/~mgiuca/+junk/bitcoin-import, with further instructions
here.
3. As instructed on my page, type: bzr branch lp:~mgiuca/+junk/bitcoin-import -- this will create a new directory called bitcoin-import wherever you are.
4. You also need
Gavin's BitcoinTools if you haven't already got it. Type: git clone git://github.com/gavinandresen/bitcointools.git
5. Unfortunately, if you use Ubuntu, the supplied version of pycrypto will not work, so you need to get the full version
here and set that up as per its installation instructions.
6. cd into bitcoin-import and type: make
Now the instructions for use, as given in
privkeyimport.py:
1. Get the private key you wish to import in a text file. To do this, you either need to download the PDF of the printed money in a reader that can select the text and copy it, then paste it into a text file, OR get a QR code reader and paste the output text into a file. Whitespace is not important.
2. Run privkeyimport.py KEYFILE. This will write the key into your Bitcoin wallet. Use -n to just print without writing to the wallet.
3. Run bitcoin -rescan to ensure any transactions belonging to the imported key are added to the transaction list and balance.
As you can see, it requires a lot of technical fiddling, but no programming. Cleaner solutions will appear in time.