Skip to content

Linux_Client

hevnsnt edited this page Jun 14, 2016 · 8 revisions

How to I use the ⏣SKC Wallet###

In order to run the wallet on the Linux platform, you will need to compile it yourself. Luckily this is not as difficult as that sounds. The instructions below show how to get it running on Debian/Jessie.

debian/jessie

  • sudo apt-get install qt4-qmake libqt4-dev build-essential libssl-dev libdb++-dev libminiupnpc-dev libboost-all-dev libcurl4-openssl-dev git qt-sdk libminiupnpc-dev libssl-dev libdb++-dev
  • git clone https://github.com/SecKC/SecKCoin.git
  • cd seckcoin/
  • qmake "USE_UPNP=-"
  • cd seckcoin/src
  • make -f makefile.unix USE_UPNP=-

Once compiled, you will have seckcoin-qt, which is your wallet software.

After Compile

Run the client once, and after it has started, close it. This will create all the files that you need in order for the client to work, but we will need to configure it. The following directories and files are required (and created on first run)

  • ~/.seckcoin/
  • ~/.seckcoin/seckcoin.conf
  • ~/.seckcoin/wallet.dat

Go back to the directory that you cloned the github in, making sure there is a file seckcoin.conf.sample

  • cp ~/.seckcoin/seckcoin.conf ~/.seckcoin/seckcoin.conf.orig
  • seckcoin.conf.sample ~/.seckcoin/seckcoin.conf
Clone this wiki locally