Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ermin-muratovic/e347319ea1d11fd21bd7413a6606c98f to your computer and use it in GitHub Desktop.
Save ermin-muratovic/e347319ea1d11fd21bd7413a6606c98f to your computer and use it in GitHub Desktop.
#!/bin/bash
#install minergate xfast cli miner v1.7 for ubuntu 18.04 or later (XMR supported)
sudo apt-get update && wget https://minergate.com/download/xfast-ubuntu-cli -O minergate-cli.deb && sudo dpkg -i minergate-cli.deb
#starts miner (4 cores for Monero=xmr)
minergate-cli -user <your@email.com> -xmr 4
@GameBully2K
Copy link

terminate called after throwing an instance of 'spdlog::spdlog_ex'
  what():  logger with name 'core' already exists
Aborted (core dumped)

i get this code when i run the command in ubuntu's consol

@rohitk5252
Copy link

searched further for the answer I found that the issue resides with version 1.6 and later of the minergate software.

Uninstall* the version you currently have:
sudo apt-get --purge remove minergate

Now download and install version 1.5 using the following commands:

curl -o minergate-cli.deb https://download.minergate.com/xfast-ubuntu-cli/1.5 && sudo dpkg -i minergate-cli.deb
Then run the software using the command:
minergate-cli --user <minergate user email here> --xmr

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment