Skip to content

Country

How to backup and restore your QTUM wallet

How to backup and restore your QTUM wallet

Backing up your wallet is an important step to securing your coins in the event of losing your current staking wallet. Having a backup will enable you to restore your wallet for staking. First let’s take a copy of the wallet.dat file just in case the file gets corrupted when we copy it over. To make a copy type in the following command:

scp pi@raspberrypi.local:~/.qtum/wallet.dat ./rpi_wallet-backup.dat

You should now see a backup copy of your wallet stored in your current directory location. You can check by typing in the following command:

ls 

Before we transfer the backup wallet we need to give the following permissions to the file: 

sudo chmod 755 rpi_wallet-backup.dat 

Now we are going to transfer the backup wallet to your computer and there are a few ways in which you can do this.

USB Flash Drive

The easiest and most convenient way to transfer files from the StakeBox is to use a USB flash drive. It is highly recommended that you also protect your Flash drive by encrypting it with a password in the event that you may lose it.

  1. Insert your USB flash drive into a spare USB 2.0 socket on your StakeBox. The Flash drive will automatically be detected as a drive and its directory will become available.
  2. On the Desktop click on the file icon on the top tool bar
  3. Navigate to where you saved your wallet backup file and right click to copy or go to File > Copy
  4. Navigate to the USB flash drive in Media > Pi > NAME OF FLASH DRIVE
  5. In the menu select File > Paste to make a copy of the backup wallet

VNC Viewer

If you are using VNC viewer there is a built-in File Transfer option where you can ONLY send files from either the server or the client. In this case we will want to send files from the Server since that is where the StakeBox is running.

  1. Open VNC viewer on your computer and connect to the StakeBox. On the desktop you should see the VNC server icon in the top right tool bar. Click on this icon to open up the VNC server.

  1. In the VNC server application click on the menu in the top right hand corner to bring a drop box down. You should see the option File Transfer.

  1. Click on File Transfer and you should see the File Transfer Here you can click on Send Files and select the QTUM wallet backup file we created earlier.

If you go back to the VNC viewer on your computer you should see a message stating that a file transfer has successfully been completed.

SFTP File Transfer

The SSH File transfer protocol is the easiest method to transfer files between two devices on your StakeBox since we already have SSH enabled.

  1. On your computer you will need to download an FTP client such as FileZilla from filezilla-project.org

  1. Launch FileZilla and go to File > Site manager

  1. Create a New Site and name it StakeBox or whatever you like.
  2. Under General tab fill in the IP address of your StakeBox and in the Protocol box select SFTP. Under Logon Type select normal and then fill in your user name and password for the StakeBox in the below fields.

  1. Click connect
  2. If prompted click ok to trust the host connection

 

  1. You are now connected to the StakeBox using SFTP 

Here we can see our folder on the right hand side where we saved our wallet backup file earlier.

  1. On the left hand side navigate to a folder where you would like to save your backup wallet to. For example, you might want to save it to a new folder named QTUM Wallet in the Documents folder. Simply navigate to Documents and right click to create a new directory.
  2. Now locate your wallet backup file on the right hand side and right click the file and select Download

You should now see the back-up wallet has now transferred to your computer. Make sure that you save this wallet in a secure location to prevent any unauthorized access. 

Restoring Your Wallet

In the event that you have completely lost your running wallet, you can easily restore your wallet by copying your previously backed-up wallet file into the specific data directory before restarting the evergreencoin core program.

If the data directory is complete missing i.e. you have re-installed a failed OS or on a new StakeBox, the easiest way to restore your wallet is to perform the following steps:

  1. Start the qtum core service, this will create the data directory:
qtumd -daemon
  1. Once the qtum core service has started running for a about 30 seconds or so shut it down by typing in the following:
ps -A | grep qtumd

You should see a process number, then:

kill <id>

Where id is the process number.

  1. Replace the wallet.dat file that was just created in the data directory with your latest back-up wallet. Make sure the back-up wallet is the named wallet.dat.
  2. Restart the qtum daemon:
qtumd -daemon
Next article How to remotely access your QTUM StakeBox