우분투에서 xmr-stak-cpu를 이용하여 모네로 채굴 서버 만들기 영상+스크립트

2018. 1. 25. 22:10보안 & 해킹/IT 꿀팁


필수 패키지 설치

apt update -y

apt install -y libmicrohttpd-dev libssl-dev cmake build-essential libhwloc-dev


git으로 xmr-stak-cpu 받기
cd /opt
git clone https://github.com/fireice-uk/xmr-stak-cpu.git
cd xmr-stak-cpu
cmake -DCMAKE_CXX_COMPILER=/usr/bin/g++-5 -DCMAKE_CC_COMPILER=/usr/bin/gcc5
make install
cd bin
chmod +x xmr-stak-cpu
cp config.txt config.txt.bak

config.txt 수정

CPU 쓰레드 개수[각주:1] 대로 지정한다. 주석을 잘 읽어볼것.


"cpu_threads_conf" :
[
        { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 0 },
        { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 1 },
]
,

자기 이메일 주소 변경

"pool_address" : "xmr.pool.minergate.com:45560",
"wallet_address" : "email@gmail.com",
"pool_password" : "x",




cd ~
vim start.sh


start.sh 작성하기

cd /opt/xmr-stak-cpu/bin
./xmr-stak-cpu config.txt


권한 준 후 nohup으로 백그라운드 돌리기

chmod +x start.sh
nohup ~/start.sh &



  1. grep -c processor /proc/cpuinfo [본문으로]