Reputation: 19
What How to SETUP XRP RIPPLED in Linux.I am new to this please help me from scratch.with referral link
Upvotes: 0
Views: 336
Reputation: 1126
Make sure that your computer meets the minimum system requirements.
You can get direct build by installation, you can refer this link.
Update repositories:
$ sudo apt -y update
Install utilities:
$ sudo apt -y install apt-transport-https ca-certificates wget gnupg
Add Ripple's package-signing GPG key to your list of trusted keys:
$ wget -q -O - "https://repos.ripple.com/repos/api/gpg/key/public" | \
sudo apt-key add -
Fetch the Ripple repository.
$ sudo apt -y update
Install the rippled software package:
$ sudo apt -y install rippled
Check the status of the rippled service:
$ systemctl status rippled.service
The rippled service should start automatically. If not, you can start it manually:
$ sudo systemctl start rippled.service
To configure it to start automatically on boot:
$ sudo systemctl enable rippled.service
Or You can make your own rippled
build for linux, for that you can use this link.
Note: Make sure that first you have to install
boost
having version1.70.0
, otherwise you may not able to build it. (for manual build only)
Upvotes: 0