diff options
| author | Slack Coder <slackcoder@server.ky> | 2025-08-26 16:07:00 -0500 |
|---|---|---|
| committer | Slack Coder <slackcoder@server.ky> | 2025-09-04 04:55:00 -0500 |
| commit | f7c9b27b590ed1527d913e6083fa3aa2b7ab3ca7 (patch) | |
| tree | 55cf542918c3748231f006d7700d84c968c31d89 /bitcoin/README | |
| parent | 3f799ac48e925555c5a771558633675cf3819cdf (diff) | |
| download | slackbuilds-bitcoin.tar.xz | |
Add bitcoin: add rc.scriptbitcoin
Diffstat (limited to 'bitcoin/README')
| -rw-r--r-- | bitcoin/README | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/bitcoin/README b/bitcoin/README new file mode 100644 index 0000000..0f38190 --- /dev/null +++ b/bitcoin/README @@ -0,0 +1,36 @@ +bitcoin (P2P electronic cash system) + +Bitcoin is a free open source peer-to-peer electronic cash system +that is completely decentralized, without the need for a central +server or trusted parties. Users hold the crypto keys to their +own money and transact directly with each other, with the help +of a P2P network to check for double-spending. + +Bitcoin Core connects to the Bitcoin peer-to-peer network to +download and fully validate blocks and transactions. + +Please make sure to read the release notes first before upgrading: +https://bitcoincore.org/en/releases/29.0/ + +zeromq is an optional dependency (autodetected). To disable building the graphical components, set GUI=off when building. + +To run bitcoin as a system, add to /etc/rc.d/rc.local: + + if [ -x /etc/rc.d/rc.bitcoind ]; then + /etc/rc.d/rc.bitcoind start + fi + +and to /etc/rc.d/rc.local_shutdown (creating it if needed): + + if [ -x /etc/rc.d/rc.bitcoind ]; then + /etc/rc.d/rc.bitcoind stop + fi + +The script requires a 'bitcoin' user/group before running. + + useradd bitcoin \ + --system \ + --comment 'bitcoin daemon' \ + --shell /bin/false \ + --user-group \ + --home-dir /var/lib/bitcoin |
