답변:
런치 패드 에는 비트코 인용 개인 패키지 아카이브 (PPA)가 있습니다.
이 PPA를 시스템의 소프트웨어 소스에 추가 할 수 있습니다. ppa:bitcoin/bitcoin
그런 다음 우분투 소프트웨어 센터에서 비트 코인 또는 터미널을 검색 할 수 있습니다sudo apt-get install bitcoin
그건 그렇고 : 비트 코인은 매버릭과 루시드에서만 사용할 수 있으므로 PPA를 추가 한 후 분포를 매버릭으로 변경하십시오.
그리고 그것을 끝내는 스크린 샷 :
참고 문헌 :
PPA에 대해 'natty'에서 'maverick'으로 변경하려면 Ubuntu 소프트웨어 센터에서이를 수행 할 수 있습니다.
비트 코인 PPA를 클릭하고 편집을 선택하십시오. 다음으로 'Natty'를 'Maverick'으로 변경합니다.
소스를 다시로드하면 (프롬프트가 표시됨) maverick의 'bitcoin'버전을 설치할 수 있어야합니다.
Bitcoin은 P2P 데몬 및 클라이언트의 릴리스 후보 버전으로 공식적으로 PPA 를 유지 관리했습니다 .
비트 코인은 런치 패드 프로젝트, 즉 Unity / Docky / Openshot 등과 같은 프로젝트 상태를 가지고 있습니다. 관리자 인 Matt Corallo는 공식 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 classic (효과 없음)"세션을 선택해야합니다. 즉, compiz 효과없이 ubuntu를 실행합니다.
wxwidget
라이브러리를 어떻게 업데이트 합니까?
우분투 11.10 oneiric과 우분투 13.10 소스에서 모두 나를 위해 일한 것처럼 보이는이 스크립트를 설정했습니다. 그러나 문제가 많고 잠재적으로 필요하지 않은 코드를 설치하는 것이 확실합니다. 누군가가 더 나은 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를 사용해보십시오 : bitcoin 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