Skip to content
Gandalf86 edited this page Dec 14, 2021 · 3 revisions

Installing Titcoin on Linux

  1. Download the current release tarball (.tar.gz) from https://titcoin.github.io/
  2. Execute the following to install the wallet on your system in /usr/local:
  • sudo tar -xzf titcoin-0.16.3.5.tar.gz -C /usr/local
  1. If there were no errors, you can remove the .tar.gz tarball now

Troubleshooting:

  • Make sure that /usr/local/bin is included in your PATH variable (check echo $PATH)
  • Make sure that /usr/local/share/man is included in your man path (check manpath)

Usage

  • Run titcoin-qt from the command line to open the graphical Titcoin wallet (or create a desktop shortcut for this command)
  • Run titcoind to start the Titcoin daemon. Optionally, create a systemd unit file for it to start automatically.
  • Use titcoin-cli to interact with the Titcoin daemon via the RPC interface
  • Use man titcoind/man titcoin-cli etc. to get a list of command line options
  • Use titcoin-cli help to get a list of RPC commands supported by a running titcoind instance

Updating Titcoin

Just follow the above instructions for installing Titcoin, it will overwrite the existing Titcoin files automatically.

Uninstalling Titcoin

Run sudo find /usr/local -name '*titcoin*' -delete

Clone this wiki locally