回答:
Launchpadには、ビットコイン用の個人パッケージアーカイブ(PPA)があります。
このPPAをシステムのソフトウェアソースに追加できます。ppa:bitcoin/bitcoin
その後、ubuntuソフトウェアセンターでビットコインを検索したり、ターミナルから検索したりできます。sudo apt-get install bitcoin
ちなみに、ビットコインはmaverickとlucidでのみ利用できるため、PPAを追加した後、ディストリビューションをmaverickに変更します。
そして、それを仕上げるためのスクリーンショット:
参照:
PPAの「natty」から「maverick」に変更するには、Ubuntuソフトウェアセンターからこれを行うことができます。
ビットコインPPAをクリックして、編集を選択します。次に、「Natty」を「Maverick」に変更します。
ソースをリロードし(プロンプトが表示されます)、maverickの「ビットコイン」バージョンをインストールできるはずです。
ビットコインは現在、ピアツーピアデーモンとクライアントのリリース候補バージョンでPPAを公式に保守しています。
ビットコインがあり、ランチパッド・プロジェクトをユニティ/ Docky / Openshotなどと同じプロジェクトの状況、つまりメンテナ-マット・コラーロは-公式に大きく貢献してbitcoin.orgウェブサイト。
これにより、すべてのバージョンが10.04以降からアップグレードされます。
次の手順は、システムをクライアントの最新バージョンにアップグレードします
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install bitcoin-qt
これを使用しても問題ないことの確認は、ビットコインフォーラムを介して行われます。
Compizの問題のため、Unityのビットコインは機能しません-これはバグレポートです
この問題は、ビットコインフォーラムでいくつかの提案とともに議論されています。
まとめ-インストールしたくない場合
Unityからログアウトし、セッション「Ubuntuクラシック(エフェクトなし)」を選択する必要があります。つまり、compizエフェクトなしでubuntuを実行します。
wxwidget
ライブラリをどのように更新しますか?
このスクリプトは、Ubuntu 11.10 oneiricとUbuntu 13.10 saucyの両方で機能しているように見えます。ただし、問題とインストールのコードが潜在的に必要ない可能性があると確信しています。誰かがより良いbashプログラマーであれば、そこに行き、if [ ...]
すべてのパッケージをインストールしないようにいくつかのステートメントを挿入します。
#!/bin/bash
# Word of caution, I am not an experienced shell programmer. All I can #
# guarantee is that this script has worked for me, and that it has #
# done so on multiple Ubuntu machines (one 11.10 and one 13.10), so #
# hopefully it will work for you too #
# Install some packages as instructed on various web sites
sudo apt-get -y install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev
sudo apt-get -y install libtool autotools-dev autoconf
sudo apt-get -y install libdb4.8-dev # Generally this step fails
sudo apt-get -y install libdb4.8++-dev # Generally this step fails
sudo apt-get -y install libboost1.37-dev # Sometimes this step fail
sudo apt-get -y install libboost-all-dev # Sometimes this step fail
sudo apt-get -y install libminiupnpc-dev
sudo apt-get -y install libdb++-dev
sudo apt-get -y install libprotobuf-dev
sudo apt-get -y install libqrencode-dev
# Build berkley db4.8
# Technically, this should only be installed if the above #
# libdb4.8XX-dev packages failed to install but nothing beats a little #
# overkill =) #
cd ~/Downloads
if [ ! -e db-4.8.30 ]
then
wget http://download.oracle.com/berkeley-db/db-4.8.30.tar.gz
tar zxvf db-4.8.30.tar.gz
rm -f db-4.8.30.tar.gz
fi
cd db-4.8.30/build_unix
../dist/configure --prefix=/usr/local --enable-cxx # If this doesn't work, try removing or changing prefix
make
sudo make install
cd ~/Downloads
rm -fr db-4.8.30/ # If it still doesn't work, try commenting out this line
locate libdb4.8-dev # Comment this out as it may cause problems
if [ $? -ne "0" ]
then
Failed to install db-4.8.30
exit -1
fi
# Build bitcoin
cd ~/Downloads
if [ ! -e bitcoin ]
then
git clone https://github.com/bitcoin/bitcoin ~/Downloads/bitcoin
fi
cd bitcoin
./autogen.sh
./configure # Non Ubuntu 13.xx versions
# ./configure --with-boost-libdir=/usr/lib/x86_64-linux-gnu # Ubuntu 13.xx version
make
cd ~/Downloads
rm -fr bitcoin
このPPAを使用して試すことができます:ビットコインDavid Armstrong PPA Launchpad
端末ウィンドウで(Alt + F2を押してgnome-terminalと入力)、次の行をコピーして貼り付けます。
sudo add-apt-repository ppa:stretch/bitcoin
sudo apt-get update && sudo apt-get install bitcoin
fossfreedomの答えに加えて、をインストールする必要があるかもしれませんadd-apt-repository
。たとえば、Ubuntu Server(16.04 LTS)
次のエラーが表示されます。
sudo: add-apt-repository: command not found
その場合、16.04には次のコマンドが必要です。
sudo apt install software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt update
sudo apt install bitcoin-qt
しかし、サーバーのために、あなたはかなりありそう望んでいないでしょうbitcoin-qt
けどbitcoind
。最後の行を次のように変更します。
sudo apt install bitcoind