RE: Guide: How To Build A Cryptocurrency Proof-of-Stake Mining Box For Absolute Newbies

You are viewing a single comment's thread from:

Guide: How To Build A Cryptocurrency Proof-of-Stake Mining Box For Absolute Newbies

in cryptocurrency •  6 years ago 

Thanks to everyone who has tipped and commented. Just a couple of pointers regarding the 'Building the QT Wallet' stage:

  • If you cannot clone the Denarius github files, you may need to install git first by entering this into terminal:

sudo apt-get install git

  • If you run into trouble making the swapfile (step 2), you may need to do those steps but put 'sudo' at the start of each command, eg.

sudo dd if=/dev/zero of=swapfile bs=1M count=4000
sudo chmod 0600 swapfile
sudo mkswap swapfile

  • If when doing step 4 you receive an error like 'qmake cannot execute: no such file or directory', then you need to add in an 'export' step to make sure Ubuntu uses QT5 for building the wallet:

cd denarius
export QT_SELECT=qt5
qmake "USE_UPNP=1" "USE_QRCODE=1" denarius-qt.pro
make –j4

Cheers!

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

Below worked temp, but no longer allows access.

I kept my remote desktop connection going like this.
sudo nano /etc/xrdp/xrdp.ini

Change port=-1 to port=ask5910

[xrdp1]
name=sesman-vnc
lib=libvnc.so
username=ask
password=ask
ip=127.0.0.1
port=-1

to

[xrdp1]
name=sesman-vnc
lib=libvnc.so
username=ask
password=ask
ip=127.0.0.1
port=ask5910