블록체인

비트코인 BTC 노드구성(ubuntu-15.04-desktop-amd64)

iesay 2018. 8. 23. 14:29

우분투 : ubuntu-15.04-desktop-amd64.iso

 

apt-get  update 오류

cd /etc/apt/

vi socurce.list

내용 다 지운 후

#+ Ubuntu Main Repos

deb http://01.archive.ubuntu.com/ubuntu/ trusty main restricted universe multiverse 

deb-src http://01.archive.ubuntu.com/ubuntu/ trusty main restricted universe multiverse 


#+ Ubuntu Update Repos

deb http://01.archive.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse 

deb http://01.archive.ubuntu.com/ubuntu/ trusty-updates main restricted universe multiverse 

deb http://01.archive.ubuntu.com/ubuntu/ trusty-proposed main restricted universe multiverse 

deb http://01.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse 

deb-src http://01.archive.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse 

deb-src http://01.archive.ubuntu.com/ubuntu/ trusty-updates main restricted universe multiverse 

deb-src http://01.archive.ubuntu.com/ubuntu/ trusty-proposed main restricted universe multiverse 

deb-src http://01.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse 

 

재실행 apt-get  update

SSH 서버 구축

 

openssh-server 설치시 오류

apt-get install openssh

The following packages have unmet dependencies:
 openssh-server : Depends: openssh-client (= 1:6.6p1-2ubuntu2.10)
                  Recommends: ssh-import-id but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

업데이트

apt-get update && sudo apt-get upgrade -y && sudo apt-get install -f && sudo apt-get install openssh-server -y

 

openssh-client설치

apt-get install openssh-client=1:6.6p1-2ubuntu1

 

다시

apt-get install openssh

 

openssh 실행

service ssh start