Post
Topic
Board Announcements (Altcoins)
Re: [ANN]☻▓☻MTR☻MASTERTRADERCOIN☻ ▓ ICO ENDED ▓ ☻ 110 K ☻OgNasty☻POS☻ ToshiDesk ☻▓☻
by
bizz
on 08/03/2015, 14:45:43 UTC



Also Community I have a question.

What features would you all like in the MTR wallet if you had your choice.

Give me your best ideas.

Cheers,

MasterTrader777

Hi MasterTrader

Not so much an idea for a feature in the wallet, but any chance you might release a wallet for Linux? I'm happy to leave a Linux system running 24/7 staking, but much less so a Windows system. At the moment I fire up my Windows 7 test system to stake for an hour or so while I have my breakfast Cheesy

Been lurking from very early on and kept up with what you're doing everyday. Great work, keep it up

CJ

You can compile from sources on github. It's not hard at all.  Look for readme there about building qt. Just install some dependencies, hit 2 commands & you have safest wallet possible.
Hi bizz

I did try, both ways - straight compile and by installing qt creator - but failed. I'll have another go and post the error messages I get. Has anyone successfully built a Linux MTR wallet from the source?

CJ

I did straight compile and it worked. Any error messages you get just google to find solution. I got one error & here's what I had to do to fix:

Code:
chmod 755 src/leveldb/build_detect_platform




If you could make a nice detailed guide on how to install on Linux I would appreciate it.

I will throw you some MTR as a gift.

Thanks for help the community while I was grabbing some much needed rest.

Cheers,

MasterTrader777

Guide is already here: https://github.com/CrypticApplications/MTR-Update/blob/master/doc/readme-qt.rst

Step by step would be something like this for Ubuntu:

1. Open terminal & install Git

Code:
sudo apt-get install git

2. Install dependencies (I'm not sure this is all that is)

Code:
sudo apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
    build-essential libboost-dev libboost-system-dev \
    libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
    libssl-dev libdb++-dev

3. Clone from github & go into directory

Code:
git clone https://github.com/CrypticApplications/MTR-Update.git && cd MTR-Update

4. In directory enter

Code:
qmake "USE_UPNP=1" && make

5. In case of errors just google it -  errors are likely due to missing dependency. I had some error about detecting platform so I did:

Code:
chmod 755 src/leveldb/build_detect_platform

and after that issue "make" command again

6. That should be all and Qt wallet executable should magically appear in your directory.