「Bitcoin」の版間の差分
(en:Bitcoinへの転送ページ) |
|||
1行目: | 1行目: | ||
+ | [[Category:インターネットアプリケーション]] |
||
− | #redirect[[en:Bitcoin]] |
||
+ | [[en:Bitcoin]] |
||
+ | {{Related articles start}} |
||
+ | {{Related|アプリケーション一覧/インターネット#Bitcoin}} |
||
+ | {{Related articles end}} |
||
+ | |||
+ | [[Wikipedia:ja:Bitcoin|Bitcoin]] は中央サーバーや信用機関を必要としない分散型の P2P の電子通貨システムです。ユーザーは貨幣として暗号鍵を保有して互いに直接取り引きを行い、ネットワークの力を借りて二重使用をチェックします。しばしば BTC と表記される (例: '144 BTC') Bitcoin は、米ドルなどの伝統的な通貨に交換することもできます。 |
||
+ | |||
+ | == イントロダクション == |
||
+ | |||
+ | Bitcoin ネットワークはピアツーピアネットワーク上で稼働し、電子署名と暗号証明によって取引を作成・確認します。ノードは取引をネットワークに流すため、全ての取引は公に記録されます。これはブロックチェインと呼ばれます。'''ブロック'''とは先行するブロックに記録されていない一部または全ての Bitcoin の最新取引の記録です。ブロックチェインの整合性を保持するため、チェインの各ブロックは一つ前のブロックの整合性を確認し、ハッシュを使うことで最終的に一番最初のブロックまで遡ります。 |
||
+ | |||
+ | 新しい Bitcoin は[[#マイニング|マイニング]]によってネットワークから生成されます。マイニングでは新しいブロックを最新のブロックチェインに追加することが行われますが、有効なハッシュ (この場合巨大な整数) を生成する必要があるため、マイニングには計算力を必要とします。 |
||
+ | |||
+ | 検証を行うにはこの整数を一定の閾値以下にする必要があります。ブロックのデータは[[Wikipedia:ja:ノンス|ノンス値]]によって撹拌されています。ブロックのデータが閾値以下の整数になるまで大量の処理能力が費やされます。閾値はビットコインのマイニングを行っている人の数によって決まるため、1ブロックを処理するのに大体10分ほどかかります。 |
||
+ | |||
+ | == インストール == |
||
+ | |||
+ | [https://bitcoin.org bitcoin.org] から出されている公式の Bitcoin アプリケーションは現在 "Bitcoin Core" と呼ばれており (元は "bitcoin-qt" と呼称されていました) Arch の[[公式リポジトリ]]からインストールすることができます: (a) {{Pkg|bitcoin-qt}} または (b) {{Pkg|bitcoin-daemon}} '''と''' {{Pkg|bitcoin-cli}} パッケージ。Bitcoin Core のバージョン 0.10 までは、{{Pkg|bitcoin-daemon}} の bitcoind は RPC サーバーと RPC クライアント '''両方'''の働きをしていました。しかし、バージョン 0.10 から、Bitcoin Core の RPC [http://bitcoin.stackexchange.com/a/13369/3005 クライアントは別のバイナリに分けられています (bitcoin-cli)] 。bitcoin-qt と bitcoind はどちらも RPC サーバーとして機能するため、bitcoin-cli はどちらのサーバーも使うことができます。マシンに Bitcoin Core のパッケージを3つともインストールしても問題ありませんが、一度に実行できるのは bitcoind '''または''' bitcoin-qt のどちらか [https://en.bitcoin.it/wiki/Running_Bitcoin 片方だけ] です。 |
||
+ | |||
+ | ソフトウェアをコンピュータにインストールしても、それだけで Bitcoin は使えません。それはあくまで''すぐ終わる''ことです。Bitcoin Core を使うにあたって時間がかかるのは BTC ブロックチェインの取得で、現在 (Feb [https://longnow.org/about 02015]) は 22GB のデータファイルをマシンにダウンロードする必要があります。bitcoin-qt や bitcoind を起動すると、まず最初にソフトウェアは BTC ブロックチェインを全てダウンロードします。 |
||
+ | |||
+ | 軽量ソフトウェアとして[[公式リポジトリ]]には {{Pkg|multibit}} や {{Pkg|electrum}} がありますが、これらの代替ソフトウェアは Bitcoin Core ソフトウェアを使う場合よりも BTC を消失する可能性が高まります。ウォレットファイルが自分のコンピュータではなく他の人のコンピュータ上に置かれるからです。 |
||
+ | |||
+ | 以下の systemd サービスファイルで {{Pkg|bitcoin-daemon}} を使うことができます ('User=' は変更するか bitcoin ユーザーを作成する必要があります): |
||
+ | |||
+ | {{hc|/etc/systemd/system/bitcoind.service|<nowiki> |
||
+ | [Unit] |
||
+ | Description=Bitcoin daemon service |
||
+ | After=network.target |
||
+ | |||
+ | [Service] |
||
+ | Type=simple |
||
+ | User=bitcoin |
||
+ | ExecStart=/usr/bin/bitcoind |
||
+ | |||
+ | [Install] |
||
+ | WantedBy=multi-user.target |
||
+ | </nowiki>}} |
||
+ | |||
+ | == Bitcoin の入手方法 == |
||
+ | |||
+ | ビットコインを入手する方法はいくつかあります: |
||
+ | * 商品やサービスの対価としてビットコインを受け取る。 |
||
+ | * [https://en.bitcoin.it/wiki/Buying_bitcoins 伝統的な通貨] とビットコインを交換できるサービスが複数存在しています。 |
||
+ | * 直接会って現金とビットコインを交換してくれる人が近くにいないか探す。あなたの近所にいるトレーダーは [http://www.tradebitcoin.com/ bitcoin.local] や [http://www.bitcoinmap.com/ bitcoin map] で見つけられます。 |
||
+ | * [https://en.bitcoin.it/wiki/Pooled_mining マイニングプール] に参加する。 |
||
+ | * 高機能なハードウェアを持っている場合、単独で採掘を行って新しいブロックを作成することもできます (25 BTC 産出されます)。 |
||
+ | |||
+ | 初めてビットコインを触る場合、[http://www.bitcoinreward.net/ BitcoinReward] にアクセスすることで無料のコインが貰えます。Bitcoin を手に入れる方法の詳細は [http://www.weusecoins.com/getting-started.php We Use Coins] を見て下さい。 |
||
+ | |||
+ | === マイニング === |
||
+ | |||
+ | {{Note|マイニングで本当に稼ぐには専用のハードウェアが必須です。ハードウェアとパフォーマンスの比較は [https://en.bitcoin.it/wiki/Mining_hardware_comparison bitcoin.it wiki] を見て下さい。[http://bitcoinx.com/profit/ Profit Calculator] を使ってあなたのセットアップで利益が出るか確認することができます。}} |
||
+ | |||
+ | Bitcoin マイニングの基本概念は各ブロックには意味のないランダムなデータが含まれているということです。Bitcoin マイナーは最新のブロックから全てのデータを取得して、ランダムなデータを混ぜ合わせて全体のハッシュを計算します。有効なブロックが見つかるまでとにかく計算し続けます。ハッシュの複製は簡単ですが、ハッシュの予測は不可能であり、完全にランダムな値が生成されるため、マイナーはハッシュを生成するランダムなデータが何なのか予測するすべがありません。 |
||
+ | |||
+ | マイニングするには''マイナー''を使う必要があります。マイナーはハッシュを計算して Bitcoin を作成するプログラムです。マイニングに関してはこちらの [https://www.weusecoins.com/en/mining-guide/ 記事] が詳しく記述しています。 |
||
+ | |||
+ | [[AUR]] には Bitcoin マイナーがいくつか存在します: |
||
+ | * {{App|CGMiner|マルチスレッドのマルチプール CPU マイナー。|https://github.com/ckolivas/cgminer|{{Pkg|cgminer}}}} (ノート: GPU マイニングを行う場合は {{AUR|cgminer-gpu}} を使って下さい) |
||
+ | {{Tip|GPU マイニングを行う場合は適切な opencl パッケージが必要になります。Nvidia ならば {{Pkg|opencl-nvidia}}、Intel ならば AUR の {{AUR|intel-opencl-sdk}} が必要です。}} |
||
+ | * {{App|cpuminer|マルチスレッドの CPU マイナー。|http://yyz.us/bitcoin/|{{AUR|cpuminer-git}}{{Broken package link|{{aur-mirror|cpuminer-git}}}}}} |
||
+ | * {{App|MiningBeast|マルチプラットフォームのマイニングソフトウェア。|http://miningbeast.com/}} |
||
+ | * {{App|Phoenix Miner|効率的、高速、モジュール式、Python ベースの OpenCL GPU マイナー。|https://github.com/jedi95/Phoenix-Miner|{{AUR|phoenix-miner-svn}}{{Broken package link|{{aur-mirror|phoenix-miner-svn}}}}}} |
||
+ | |||
+ | == サンプル設定ファイル == |
||
+ | |||
+ | 以下は ''bitcoin-qt'' の設定ファイルの例です。次のコマンドを使ってファイルのモードを {{ic|600}} に設定してください: |
||
+ | # chmod 600 ~/.bitcoin/bitcoin.conf |
||
+ | |||
+ | {{hc|~/.bitcoin/bitcoin.conf|<nowiki> |
||
+ | # bitcoin.conf configuration file. Lines beginning with # are comments. |
||
+ | |||
+ | # Network-related settings: |
||
+ | |||
+ | # Run on the test network instead of the real bitcoin network. |
||
+ | #testnet=1 |
||
+ | |||
+ | # Connect via a socks4 proxy |
||
+ | #proxy=127.0.0.1:9050 |
||
+ | |||
+ | # Use as many addnode= settings as you like to connect to specific peers |
||
+ | #addnode=69.164.218.197 |
||
+ | #addnode=10.0.0.2:8333 |
||
+ | |||
+ | # … or use as many connect= settings as you like to connect ONLY |
||
+ | # to specific peers: |
||
+ | #connect=69.164.218.197 |
||
+ | #connect=10.0.0.1:8333 |
||
+ | |||
+ | # Do not use Internet Relay Chat (irc.lfnet.org #bitcoin channel) to |
||
+ | # find other peers. |
||
+ | #noirc=1 |
||
+ | |||
+ | # Maximum number of inbound+outbound connections. |
||
+ | #maxconnections= |
||
+ | |||
+ | # JSON-RPC options (for controlling a running Bitcoin/bitcoind process) |
||
+ | |||
+ | # server=1 tells Bitcoin to accept JSON-RPC commands. |
||
+ | #server=1 |
||
+ | |||
+ | # You must set rpcuser and rpcpassword to secure the JSON-RPC api |
||
+ | #rpcuser=user |
||
+ | #rpcpassword=password |
||
+ | |||
+ | # How many seconds bitcoin will wait for a complete RPC HTTP request. |
||
+ | # after the HTTP connection is established. |
||
+ | rpctimeout=30 |
||
+ | |||
+ | # By default, only RPC connections from localhost are allowed. Specify |
||
+ | # as many rpcallowip= settings as you like to allow connections from |
||
+ | # other hosts (and you may use * as a wildcard character): |
||
+ | #rpcallowip=10.1.1.34 |
||
+ | #rpcallowip=192.168.1.* |
||
+ | |||
+ | # Listen for RPC connections on this TCP port: |
||
+ | rpcport=8332 |
||
+ | |||
+ | # You can use Bitcoin or bitcoind to send commands to Bitcoin/bitcoind |
||
+ | # running on another host using this option: |
||
+ | rpcconnect=127.0.0.1 |
||
+ | |||
+ | # Use Secure Sockets Layer (also known as TLS or HTTPS) to communicate |
||
+ | # with Bitcoin -server or bitcoind |
||
+ | #rpcssl=1 |
||
+ | |||
+ | # OpenSSL settings used when rpcssl=1 |
||
+ | rpcsslciphers=TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH |
||
+ | rpcsslcertificatechainfile=server.cert |
||
+ | rpcsslprivatekeyfile=server.pem |
||
+ | |||
+ | # Miscellaneous options |
||
+ | |||
+ | # Set gen=1 to attempt to generate bitcoins |
||
+ | gen=0 |
||
+ | |||
+ | # Use SSE instructions to try to generate bitcoins faster. For muliple core processors. |
||
+ | #4way=1 |
||
+ | |||
+ | # Pre-generate this many public/private key pairs, so wallet backups will be valid for |
||
+ | # both prior transactions and several dozen future transactions. |
||
+ | keypool=100 |
||
+ | |||
+ | # Pay an optional transaction fee every time you send bitcoins. Transactions with fees |
||
+ | # are more likely than free transactions to be included in generated blocks, so may |
||
+ | # be validated sooner. |
||
+ | paytxfee=0.00 |
||
+ | |||
+ | # Allow direct connections for the ‘pay via IP address’ feature. |
||
+ | #allowreceivebyip=1 |
||
+ | |||
+ | # User interface options |
||
+ | |||
+ | # Start Bitcoin minimized |
||
+ | #min=1 |
||
+ | |||
+ | # Minimize to the system tray |
||
+ | #minimizetotray=1 |
||
+ | </nowiki>}} |
||
+ | |||
+ | == 参照 == |
||
+ | |||
+ | * [http://www.bitcoin.org/ Bitcoin 公式ウェブサイト] |
||
+ | * [https://en.bitcoin.it/wiki/Main_Page Bitcoin.it wiki] |
||
+ | * [http://forum.bitcoin.org/ Bitcoin フォーラム] |
||
+ | * Freenode の IRC チャンネル: |
||
+ | ** '''#bitcoin''' - (General Bitcoin-related) |
||
+ | ** '''#bitcoin-dev''' - (Development and technical) |
||
+ | ** '''#bitcoin-otc''' - (Over The Counter exchange) |
||
+ | ** '''#bitcoin-market''' - (Live quotes from markets) |
||
+ | ** '''#bitcoin-mining''' - (GPU mining related) |
||
+ | * [https://github.com/znort987/blockparser blockparser] — Fast, quick and dirty bitcoin blockchain parser. |
2015年10月31日 (土) 13:39時点における版
Bitcoin は中央サーバーや信用機関を必要としない分散型の P2P の電子通貨システムです。ユーザーは貨幣として暗号鍵を保有して互いに直接取り引きを行い、ネットワークの力を借りて二重使用をチェックします。しばしば BTC と表記される (例: '144 BTC') Bitcoin は、米ドルなどの伝統的な通貨に交換することもできます。
イントロダクション
Bitcoin ネットワークはピアツーピアネットワーク上で稼働し、電子署名と暗号証明によって取引を作成・確認します。ノードは取引をネットワークに流すため、全ての取引は公に記録されます。これはブロックチェインと呼ばれます。ブロックとは先行するブロックに記録されていない一部または全ての Bitcoin の最新取引の記録です。ブロックチェインの整合性を保持するため、チェインの各ブロックは一つ前のブロックの整合性を確認し、ハッシュを使うことで最終的に一番最初のブロックまで遡ります。
新しい Bitcoin はマイニングによってネットワークから生成されます。マイニングでは新しいブロックを最新のブロックチェインに追加することが行われますが、有効なハッシュ (この場合巨大な整数) を生成する必要があるため、マイニングには計算力を必要とします。
検証を行うにはこの整数を一定の閾値以下にする必要があります。ブロックのデータはノンス値によって撹拌されています。ブロックのデータが閾値以下の整数になるまで大量の処理能力が費やされます。閾値はビットコインのマイニングを行っている人の数によって決まるため、1ブロックを処理するのに大体10分ほどかかります。
インストール
bitcoin.org から出されている公式の Bitcoin アプリケーションは現在 "Bitcoin Core" と呼ばれており (元は "bitcoin-qt" と呼称されていました) Arch の公式リポジトリからインストールすることができます: (a) bitcoin-qt または (b) bitcoin-daemon と bitcoin-cli パッケージ。Bitcoin Core のバージョン 0.10 までは、bitcoin-daemon の bitcoind は RPC サーバーと RPC クライアント 両方の働きをしていました。しかし、バージョン 0.10 から、Bitcoin Core の RPC クライアントは別のバイナリに分けられています (bitcoin-cli) 。bitcoin-qt と bitcoind はどちらも RPC サーバーとして機能するため、bitcoin-cli はどちらのサーバーも使うことができます。マシンに Bitcoin Core のパッケージを3つともインストールしても問題ありませんが、一度に実行できるのは bitcoind または bitcoin-qt のどちらか 片方だけ です。
ソフトウェアをコンピュータにインストールしても、それだけで Bitcoin は使えません。それはあくまですぐ終わることです。Bitcoin Core を使うにあたって時間がかかるのは BTC ブロックチェインの取得で、現在 (Feb 02015) は 22GB のデータファイルをマシンにダウンロードする必要があります。bitcoin-qt や bitcoind を起動すると、まず最初にソフトウェアは BTC ブロックチェインを全てダウンロードします。
軽量ソフトウェアとして公式リポジトリには multibit や electrum がありますが、これらの代替ソフトウェアは Bitcoin Core ソフトウェアを使う場合よりも BTC を消失する可能性が高まります。ウォレットファイルが自分のコンピュータではなく他の人のコンピュータ上に置かれるからです。
以下の systemd サービスファイルで bitcoin-daemon を使うことができます ('User=' は変更するか bitcoin ユーザーを作成する必要があります):
/etc/systemd/system/bitcoind.service
[Unit] Description=Bitcoin daemon service After=network.target [Service] Type=simple User=bitcoin ExecStart=/usr/bin/bitcoind [Install] WantedBy=multi-user.target
Bitcoin の入手方法
ビットコインを入手する方法はいくつかあります:
- 商品やサービスの対価としてビットコインを受け取る。
- 伝統的な通貨 とビットコインを交換できるサービスが複数存在しています。
- 直接会って現金とビットコインを交換してくれる人が近くにいないか探す。あなたの近所にいるトレーダーは bitcoin.local や bitcoin map で見つけられます。
- マイニングプール に参加する。
- 高機能なハードウェアを持っている場合、単独で採掘を行って新しいブロックを作成することもできます (25 BTC 産出されます)。
初めてビットコインを触る場合、BitcoinReward にアクセスすることで無料のコインが貰えます。Bitcoin を手に入れる方法の詳細は We Use Coins を見て下さい。
マイニング
Bitcoin マイニングの基本概念は各ブロックには意味のないランダムなデータが含まれているということです。Bitcoin マイナーは最新のブロックから全てのデータを取得して、ランダムなデータを混ぜ合わせて全体のハッシュを計算します。有効なブロックが見つかるまでとにかく計算し続けます。ハッシュの複製は簡単ですが、ハッシュの予測は不可能であり、完全にランダムな値が生成されるため、マイナーはハッシュを生成するランダムなデータが何なのか予測するすべがありません。
マイニングするにはマイナーを使う必要があります。マイナーはハッシュを計算して Bitcoin を作成するプログラムです。マイニングに関してはこちらの 記事 が詳しく記述しています。
AUR には Bitcoin マイナーがいくつか存在します:
- CGMiner — マルチスレッドのマルチプール CPU マイナー。
- https://github.com/ckolivas/cgminer || cgminer (ノート: GPU マイニングを行う場合は cgminer-gpuAUR を使って下さい)
- cpuminer — マルチスレッドの CPU マイナー。
- http://yyz.us/bitcoin/ || cpuminer-gitAUR[リンク切れ: アーカイブ: aur-mirror]
- MiningBeast — マルチプラットフォームのマイニングソフトウェア。
- http://miningbeast.com/ || パッケージが存在しないか AUR で検索
- Phoenix Miner — 効率的、高速、モジュール式、Python ベースの OpenCL GPU マイナー。
- https://github.com/jedi95/Phoenix-Miner || phoenix-miner-svnAUR[リンク切れ: アーカイブ: aur-mirror]
サンプル設定ファイル
以下は bitcoin-qt の設定ファイルの例です。次のコマンドを使ってファイルのモードを 600
に設定してください:
# chmod 600 ~/.bitcoin/bitcoin.conf
~/.bitcoin/bitcoin.conf
# bitcoin.conf configuration file. Lines beginning with # are comments. # Network-related settings: # Run on the test network instead of the real bitcoin network. #testnet=1 # Connect via a socks4 proxy #proxy=127.0.0.1:9050 # Use as many addnode= settings as you like to connect to specific peers #addnode=69.164.218.197 #addnode=10.0.0.2:8333 # … or use as many connect= settings as you like to connect ONLY # to specific peers: #connect=69.164.218.197 #connect=10.0.0.1:8333 # Do not use Internet Relay Chat (irc.lfnet.org #bitcoin channel) to # find other peers. #noirc=1 # Maximum number of inbound+outbound connections. #maxconnections= # JSON-RPC options (for controlling a running Bitcoin/bitcoind process) # server=1 tells Bitcoin to accept JSON-RPC commands. #server=1 # You must set rpcuser and rpcpassword to secure the JSON-RPC api #rpcuser=user #rpcpassword=password # How many seconds bitcoin will wait for a complete RPC HTTP request. # after the HTTP connection is established. rpctimeout=30 # By default, only RPC connections from localhost are allowed. Specify # as many rpcallowip= settings as you like to allow connections from # other hosts (and you may use * as a wildcard character): #rpcallowip=10.1.1.34 #rpcallowip=192.168.1.* # Listen for RPC connections on this TCP port: rpcport=8332 # You can use Bitcoin or bitcoind to send commands to Bitcoin/bitcoind # running on another host using this option: rpcconnect=127.0.0.1 # Use Secure Sockets Layer (also known as TLS or HTTPS) to communicate # with Bitcoin -server or bitcoind #rpcssl=1 # OpenSSL settings used when rpcssl=1 rpcsslciphers=TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH rpcsslcertificatechainfile=server.cert rpcsslprivatekeyfile=server.pem # Miscellaneous options # Set gen=1 to attempt to generate bitcoins gen=0 # Use SSE instructions to try to generate bitcoins faster. For muliple core processors. #4way=1 # Pre-generate this many public/private key pairs, so wallet backups will be valid for # both prior transactions and several dozen future transactions. keypool=100 # Pay an optional transaction fee every time you send bitcoins. Transactions with fees # are more likely than free transactions to be included in generated blocks, so may # be validated sooner. paytxfee=0.00 # Allow direct connections for the ‘pay via IP address’ feature. #allowreceivebyip=1 # User interface options # Start Bitcoin minimized #min=1 # Minimize to the system tray #minimizetotray=1
参照
- Bitcoin 公式ウェブサイト
- Bitcoin.it wiki
- Bitcoin フォーラム
- Freenode の IRC チャンネル:
- #bitcoin - (General Bitcoin-related)
- #bitcoin-dev - (Development and technical)
- #bitcoin-otc - (Over The Counter exchange)
- #bitcoin-market - (Live quotes from markets)
- #bitcoin-mining - (GPU mining related)
- blockparser — Fast, quick and dirty bitcoin blockchain parser.