1.先更新系统,看命令。如果出现选择YN时一律选Y,后面不解释。
sudo apt-get update
sudo apt-get upgrade
每行一条命令,后面不解释。
2.下载并安装LTC钱包
下载
wget https://download.litecoin.org/litecoin-0.10.2.2/linux/litecoin-0.10.2.2-linux32.tar.gz
解压
tar xvzf litecoin-0.10.2.2-linux32.tar.gz
拷贝钱包程序
cp litecoin-0.10.2.2/bin/litecoind /usr/bin
sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo sysctl vm.swappiness=5
sudo sysctl vm.vfs_cache_pressure=20
编辑
sudo nano /etc/fstab
插入内容
/swapfile none swap sw 0 0
Ctrl+X键保存退出
编辑
sudo nano /etc/sysctl.conf
插入内容
vm.swappiness=5
vm.vfs_cache_pressure = 50
Ctrl+X键保存退出
4.
创建文件夹
mkdir ~/.litecoin
创建文件
nano ~/.litecoin/litecoin.conf
将下面内容输入到litecoin.conf文件中
rpcuser=user
rpcpassword=Password123
disablewallet=1
server=1
listen=1
discover=1
bind=0.0.0.0
daemon=1
txindex=1
rpcport=10332
port=10333
mininput=0.00000001
blockprioritysize=1
blockmaxsize=750000
mintxfee=0.00001000
minrelaytxfee=0.00001000
gen=0
按Ctrl+X键退出>Y>回车
5.运行钱包
litecoind -daemon
查看钱包实时日志
tail -f ~/.litecoin/debug.log
6.安装
sudo apt-get install python-zope.interface python-twisted python-twisted-web git python-dev libpython2.7-stdlib screen
7.下载P2POOL并安装
git clone https://github.com/iongchun/p2pool.git
cd p2pool/litecoin_scrypt
sudo python setup.py install
8.运行矿池
等钱包更新好后,执行下面命令
cd ~/p2pool/
screen -dmS p2poolserver python run_p2pool.py --net litecoin --bitcoind-address 127.0.0.1 --bitcoind-rpc-port 10332 --bitcoind-p2p-port 10333 --address LdyhkBwkeo14wmZeWcVsVPmqLAeAGcRo2d -n litecoin-p2pool.com:9338 --fee 0 --give-author 0
查看矿池状态
screen -r p2poolserver
返回命令行
Ctrl+A再按D