Missed a 'password' should be 'passphrase'.
[novacoin.git] / doc / README
1 Bitcoin 0.3.25 BETA
2
3 Copyright (c) 2009-2011 Bitcoin Developers
4 Distributed under the MIT/X11 software license, see the accompanying
5 file license.txt or http://www.opensource.org/licenses/mit-license.php.
6 This product includes software developed by the OpenSSL Project for use in
7 the OpenSSL Toolkit (http://www.openssl.org/).  This product includes
8 cryptographic software written by Eric Young (eay@cryptsoft.com).
9
10
11 Intro
12 -----
13 Bitcoin is a free open source peer-to-peer electronic cash system that is
14 completely decentralized, without the need for a central server or trusted
15 parties.  Users hold the crypto keys to their own money and transact directly
16 with each other, with the help of a P2P network to check for double-spending.
17
18
19 Setup
20 -----
21 Unpack the files into a directory and run:
22  bin/32/bitcoin (GUI, 32-bit)
23  bin/32/bitcoind (headless, 32-bit)
24  bin/64/bitcoin (GUI, 64-bit)
25  bin/64/bitcoind (headless, 64-bit)
26
27
28 Wallet Encryption
29 -----------------
30 Bitcoin supports native wallet encryption so that people who steal your
31 wallet file don't automatically get access to all of your Bitcoins.
32 In order to enable this feature, chose "Encrypt Wallet" from the
33 Options menu.  You will be prompted to enter a passphrase, which
34 will be used as the key to encrypt your wallet and will be needed
35 every time you wish to send Bitcoins.  If you lose this passphrase,
36 you will lose access to spend all of the bitcoins in your wallet,
37 no one, not even the Bitcoin developers can recover your Bitcoins.
38 This means you are responsible for your own security, store your
39 passphrase in a secure location and do not forget it.
40
41 Remember that the encryption built into bitcoin only encrypts the
42 actual keys which are required to send your bitcoins, not the full
43 wallet.  This means that someone who steals your wallet file will
44 be able to see all the addresses which belong to you, as well as the
45 relevant transactions, you are only protected from someone spending
46 your coins.
47
48 It is recommended that you backup your wallet file before you
49 encrypt your wallet.  To do this, close the Bitcoin client and
50 copy the wallet.dat file from ~/.bitcoin/ on Linux, /Users/(user
51 name)/Application Support/Bitcoin/ on Mac OSX, and %APPDATA%/Bitcoin/
52 on Windows (that is /Users/(user name)/AppData/Roaming/Bitcoin on
53 Windows Vista and 7 and /Documents and Settings/(user name)/Application
54 Data/Bitcoin on Windows XP).  Once you have copied that file to a
55 safe location, reopen the Bitcoin client and Encrypt your wallet.
56 If everything goes fine, delete the backup and enjoy your encrypted
57 wallet.  Note that once you encrypt your wallet, you will never be
58 able to go back to a version of the Bitcoin client older than 0.4.
59
60 Keep in mind that you are always responsible for you own security.
61 All it takes is a slightly more advanced wallet-stealing trojan which
62 installs a keylogger to steal your wallet passphrase as you enter it
63 in addition to your wallet file and you have lost all your Bitcoins.
64 Wallet encryption cannot keep you safe if you do not practice
65 good security, such as running up-to-date antivirus software, only
66 entering your wallet passphrase in the Bitcoin client and using the
67 same passphrase only as your wallet passphrase.
68
69
70 See the documentation at the bitcoin wiki:
71   https://en.bitcoin.it/wiki/Main_Page
72
73 ... for help and more information.