7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

bitcoin coreのインストール(ubuntu)

Last updated at Posted at 2017-03-05

ただ試したいだけだし、いちいちインストールするのめんどくせえ、、、
って人はもうすでにbitcoin coreが使える状態のコンテナを用意してます

$ sudo docker pull tokuo201/bitcoin_core_on_ubuntu

#必要なライブラリ
当然ながら更新はしてください

$ sudo apt-get update

###gccのインストール

$ sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils

###openSSLのインストール

$ sudo apt-get install libtool autotools-dev autoconf libssl-dev

###Boostのインストール

$ sudo apt-get install libboost-all-dev

###libdb4.8のインストール

$ sudo add-apt-repository ppa:bitcoin/bitcoin
$ sudo apt-get update
$ sudo apt-get install libdb4.8-dev libdb4.8++-dev

###GUIライブラリのインストール

$ sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler

###その他ライブラリ

$ sudo apt-get install libminiupnpc-dev libqrencode-dev git

#Bitcoin Coreのインストール

$ git clone https://github.com/bitcoin/bitcoin.git
$ cd bitcoin
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install

7
7
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?