What How to SETUP XRP RIPPLED in Linux.I am new to this please help me from scratch.with referral link
1 Answers
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)

- 1,041
- 8
- 20
-
Oh cool, thanks @Monarth for compiled cocise steps in setting up the ripple service. I am now all setup with the testnet. However, I am also looking to setup wallets, accounts on ripple and test the transfers, balance checks etc. Is there any link you can point me to as the documentation / information is spread out. Or if you can share similar summary of steps, that would be really helpful for me and others that are new to ripple – karthik sl17 Oct 28 '19 at 13:26