mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
1.1 KiB
1.1 KiB
title |
---|
How do I mine LBRY credits? |
LBRY binaries are out for OS X and Ubuntu. Others may try compiling from source.
Mining on Ubuntu
wget https://s3.amazonaws.com/files.lbry.io/bins.zip
unzip bins.zip
./lbrycrdd -server -printtoconsole -gen
- If you need to start over, run
rm -rf bins.zip lbry* ~/.lbry*
. Note: this will delete your wallet and any credits you may have.
Mining on macOS
wget https://s3.amazonaws.com/files.lbry.io/osxbins.zip
unzip osxbins.zip
mkdir ~/Library/Application\ Support/lbrycrd
sudo chown -R "$(whoami)" ~/Library/Application\ Support/lbrycrd
echo -e "rpcuser=lbryrpc\nrpcpassword=$(env LC_CTYPE=C LC_ALL=C tr -dc A-Za-z0-9 < /dev/urandom | head -c 16 | xargs)" > ~/Library/Application\ Support/lbrycrd/lbrycrd.conf
./lbrycrdd -server -printtoconsole -gen
- If you need to start over, run
rm -rf bins.zip lbry* ~/.lbry ~/Library/Application\ Support/lbrycrd
. Note: this will delete your wallet and any credits you may have.
Compiling
LBRY can be compiled quite similarly to Bitcoin. Pester @jackrobison on Slack to fill this in!