]>
Commit | Line | Data |
---|---|---|
03fa53a6 | 1 | Bitcoin 0.7.0 BETA |
ca588487 | 2 | |
6bf4253a | 3 | Copyright (c) 2009-2012 Bitcoin Developers |
ca588487 | 4 | Distributed under the MIT/X11 software license, see the accompanying |
f00a0dcf | 5 | file COPYING or http://www.opensource.org/licenses/mit-license.php. |
ca588487 GA |
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 ([email protected]). | |
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 | ----- | |
f00a0dcf | 21 | You need the Qt4 run-time libraries to run Bitcoin-Qt. On Debian or Ubuntu: |
d6245ca5 GA |
22 | sudo apt-get install libqtgui4 |
23 | ||
ca588487 | 24 | Unpack the files into a directory and run: |
7ec064b8 | 25 | bin/32/bitcoin-qt (GUI, 32-bit) |
ca588487 | 26 | bin/32/bitcoind (headless, 32-bit) |
7ec064b8 | 27 | bin/64/bitcoin-qt (GUI, 64-bit) |
ca588487 GA |
28 | bin/64/bitcoind (headless, 64-bit) |
29 | ||
b6b039d8 | 30 | |
ca588487 GA |
31 | See the documentation at the bitcoin wiki: |
32 | https://en.bitcoin.it/wiki/Main_Page | |
7ec064b8 | 33 | for help and more information. |