Linux Installation Guide

This guide describes how to download, verify, install and encrypt the GoByte Core wallet for Linux. The guide is written for Ubuntu 20.04 LTS, but the steps should be similar for other Linux distributions.

Downloading the GoByte Core wallet

Visit https://www.gobyte.network/downloads to download the latest GoByte Core wallet. In most cases, the website will properly detect which version you need. Click the GoByte Core button to download the package directly.

wallets/gobytecore/img/linux/download.png

The website properly detects the wallet appropriate for your system

If detection does not work, you will need to manually choose your operating system and whether you need a 32 or 64 bit version. If you are unsure whether your version of Linux is 32 or 64 bit, you can check in Ubuntu under the Settings > About > OS Type. For details on how to check this in other versions of Linux, see here.

../../_images/linux-checkbits.png

Ubuntu System Overview. This is a 64 bit system.

If you have a 32-bit system, download GoByte Core x86. If you have a 64-bit system, download GoByte Core x64. Once you know which version you need, download the GoByte Core TGZ file to your computer from https://www.gobyte.network/downloads and save it to your Downloads folder.

Verifying GoByte Core

This step is optional, but recommended to verify the authenticity of the file you downloaded. This is done by checking its detached signature against the public key published by the GoByte Core development team. To download the detached signature, click the Signature button on the wallet download page and save it to the same folder as the downloaded binary.

All releases of GoByte are signed using GPG by Antonio Moratti (or Hisyam Nasir) with the key 9ED8 A2B0 A016 6C55, verifiable here on Keybase. Open a terminal, import the key and verify the authenticity of your download as follows:

curl https://keybase.io/antoniomoratti/pgp_keys.asc | gpg --import
gpg --verify gobytecore-0.13.0.0-x86_64-linux-gnu.tar.gz.asc
wallets/gobytecore/img/linux/setup-linux-gpg.png

Downloading the PGP key and verifying the signed binary

If you see the message Good signature from "Antonio Moratti <antoniom@gobyte.network>" [unknown] then you have an authentic copy of GoByte Core for Linux.

Extracting GoByte Core

GoByte Core for Linux is distributed as a compressed archive and not an installer. This is because this same archive also contains other files built for running a masternode on a server, for example. In this guide, we will extract the executable file with a graphical user interface (GUI) designed for use by end users as a wallet.

Extract GoByte Core as follows:

tar xzf gobytecore-0.13.0.0-x86_64-linux-gnu.tar.gz

This will create a folder named gobytecore-0.13.0 in the current working directory. We will now install the executable binaries to /usr/local/bin using the install command:

sudo install -m 0755 -o root -g root -t /usr/local/bin gobytecore-0.13.0/bin/*

Start GoByte Core from the terminal with the following command:

gobyte-qt

The first time the program is launched, you will be offered a choice of where you want to store your blockchain and wallet data. Choose a location with enough free space, as the blockchain can reach 30GB+ in size. It is recommended to use the default data folder if possible.

wallets/gobytecore/img/linux/106329842.png

Choosing the GoByte Core data folder

GoByte Core will then start up. This will take a little longer than usual the first time you run it, since GoByte Core needs to generate cryptographic data to secure your wallet.

wallets/gobytecore/img/linux/106329854.png

Starting GoByte Core

Synchronizing GoByte Core to the GoByte network

Once GoByte Core is successfully installed and started, you will see the wallet overview screen. You will notice that the wallet is “out of sync”, and the status bar at the bottom of the window will show the synchronization progress.

wallets/gobytecore/img/linux/106329873.png

GoByte Core begins synchronizing with the GoByte network

During this process, GoByte Core will download a full copy of the GoByte blockchain from other nodes to your device. Depending on your internet connection, this may take a long time. If you see the message “No block source available”, check your internet connection. When synchronization is complete, you will see a small blue tick in the lower right corner.

wallets/gobytecore/img/linux/106329889.png

GoByte Core synchronization is complete

You can now begin to use your wallet to send and receive funds.

Encrypting your GoByte wallet

After your wallet has synchronized with the GoByte network, it is strongly advised to encrypt the wallet with a password or passphrase to prevent unauthorized access. You should use a strong, new password that you have never used somewhere else. Take note of your password and store it somewhere safe or you will be locked out of your wallet and lose access to your funds.

To encrypt your wallet, click Settings > Encrypt wallet.

wallets/gobytecore/img/linux/106329907.png

Encrypting the GoByte wallet with a password

You will be asked to enter and verify a password.

wallets/gobytecore/img/linux/106329946.png

Entering a password

wallets/gobytecore/img/linux/106329973.png

Confirm you want to encrypt your wallet

When the encryption process is complete, you will see a warning that past backups of your wallet will no longer be usable, and be asked to shut down GoByte Core. When you restart GoByte Core, you will see a small blue lock in the lower right corner.

wallets/gobytecore/img/linux/106329989.png

Fully encrypted and synchronized GoByte Core wallet

Using the Ubuntu Repository to install GoByte Core

Ubuntu allows you to add third-party repositories to install and update software using the apt command line utility. GoByte Core team maintains such a repository, although the software version included here may be older than what is available on the website. To install GoByte Core from the repository, open the Terminal and enter the following commands:

sudo add-apt-repository ppa:gobytecoin/gobyte
sudo apt update
sudo apt install gobyted gobyte-qt