I´m following this post to get running Litecoin Core on my Raspberry Pi 3 with Kali. This howto was created for Raspbian, but it also works in Kali ARM for Raspberry Pi 3
root@kali:~# sudo apt-get install git build-essential libtool autotools-dev auto make pkg-config libssl-dev libevent-dev bsdmainutils libboost-system-dev libboos t-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test- dev libboost-thread-dev libminiupnpc-dev libzmq3-dev jq
root@kali:~# git clone -b 0.15 https://github.com/litecoin-project/litecoin.git
root@kali:~/litecoin# ./autogen.sh
root@kali:~/litecoin# ./configure CXXFLAGS=”–param ggc-min-expand=1 –param ggc-min-heapsize=32768″ –enable-cxx –without-gui –disable-shared –with-pic –enable-upnp-default –disable-wallet
root@kali:~/litecoin# make check
root@kali:~/litecoin# make install
root@kali:~# litecoind -daemon
root@kali:~# vim .litecoin/litecoin.conf
rpcuser = usrlitecoin
rcpassword= pwusrlitecoin
server=1
daemon=1
dbcache=100
maxorphantx=10
maxmempool=50
maxconnections=10
maxuploadtarget=5000
testnet=1
root@kali:~# litecoin-cli stop
root@kali:~# which litecoind
/usr/local/bin/litecoind
root@kali:~# crontab -e
@reboot sleep 8; /usr/local/bin/litecoind
root@kali:~# init 6
root@kali:~# tail -f .litecoin/testnet4/debug.log
Shows daemon log.
root@kali:~# litecoin-cli -rpcuser=usrlitecoin -rpcpassword=pwusrlitecoin getinfo
{
“deprecation-warning”: “WARNING: getinfo is deprecated and will be fully removed in 0.16. Projects should transition to using getblockchaininfo, getnetworkinfo, and getwalletinfo before upgrading to 0.16”,
“version”: 150001,
“protocolversion”: 70015,
“blocks”: 0,
“timeoffset”: 0,
“connections”: 4,
“proxy”: “”,
“difficulty”: 0.000244140625,
“testnet”: true,
“relayfee”: 0.00100000,
“errors”: “”
}
And now, wait for the Blockchain to fully update. This could take hours, may be days..
root@kali:~# litecoin-cli -rpcuser=usrlitecoin -rpcpassword=pwusrlitecoin getinfo
{
“deprecation-warning”: “WARNING: getinfo is deprecated and will be fully removed in 0.16. Projects should transition to using getblockchaininfo, getnetworkinfo, and getwalletinfo before upgrading to 0.16”,
“version”: 150001,
“protocolversion”: 70015,
“blocks”: 4021,
“timeoffset”: -1,
“connections”: 8,
“proxy”: “”,
“difficulty”: 0.0009000699454675865,
“testnet”: true,
“relayfee”: 0.00100000,
“errors”: “”
}








