33 lines
722 B
Markdown
33 lines
722 B
Markdown
---
|
|
title: Setup LBRY blockchain with lbrycrd
|
|
description: Learn how to setup the LBRY blockchain with lbrycrd.
|
|
---
|
|
|
|
<Note text="It is recommended to use LBCD."/>
|
|
|
|
## Building
|
|
|
|
### With Docker
|
|
|
|
```shell
|
|
git clone https://github.com/lbryio/lbrycrd.git
|
|
cd lbrycrd
|
|
docker run -v "$(pwd):/lbrycrd" --rm -v "${HOME}/ccache:/ccache" -w /lbrycrd -e CCACHE_DIR=/ccache lbry/build_lbrycrd packaging/build_linux_64bit.sh
|
|
|
|
```
|
|
|
|
### Ubuntu
|
|
|
|
```shell
|
|
sudo apt install build-essential git libtool autotools-dev automake pkg-config bsdmainutils curl ca-certificates
|
|
git clone https://github.com/lbryio/lbrycrd.git
|
|
cd lbrycrd
|
|
./packaging/build_linux_64bit.sh
|
|
./src/test/test_lbrycrd
|
|
```
|
|
|
|
## Running
|
|
|
|
```shell
|
|
lbrycrdd -server -daemon
|
|
```
|