Help support Hispagatos by mining

HOW TO - MINE LIKE A GATO

Here is a quick tutorial on how to help support Hispagatos by running cryptocurrency mining software.

Getting Started

Welcome to a step-by-step Monero (XMR) miner tutorial brought to you by your local gatos y gatas. This was tested with Arch Linux meow and updated last on March 11, 2020.

Installing & Initial Setup


	$ yay -S xmrig-mo

	Mining pool:	gulf.moneroocean.stream
	Mining port:	10001
	Mining address: 4AYprKT26fnZYdY1JjKLMR2K7zmCQhe9i5bn5oMV4VtEYvjiFhhXLVq8iycHRLTr6cD3oVSq19Yrx4JfmuuaU453M8GzTKb

	$ sudo cp /etc/xmrig-mo/xmrig-mo.conf.example /etc/xmrig-mo/xmrig-mo.conf
	$ sudo vim /etc/xmrig-mo/xmrig-mo.conf







Here is a snippet example below with the above mentioned changes:

    "pools": [
        {
            "algo": null,
            "coin": null,
            "url": "gulf.moneroocean.stream:10001",
            "user": "4AYprKT26fnZYdY1JjKLMR2K7zmCQhe9i5bn5oMV4VtEYvjiFhhXLVq8iycHRLTr6cD3oVSq19Yrx4JfmuuaU453M8GzTKb",
            "pass": "killab33z",
            "rig-id": null,
            "nicehash": false,
            "keepalive": true,
            "enabled": true,
            "tls": false,
            "tls-fingerprint": null,
            "daemon": false,
            "self-select": null
        }
    ],

We set algo and coin both to null so, according to [MoneroOcean's FAQ] (https://moneroocean.stream/user/help/faq.html), the pool will auto switch to mine Monero, and other similar coins, and will still yield Monero in the end. RTFM their FAQ for more info.

Also, on [Reddit] (https://www.reddit.com/r/MoneroMining/comments/f9p3q3/moneroocean_pool_now_support_mining_to_onion/fitv02q/) a MoneroOcean admin states:

"Algo switching works by modifying miner so it will benchmark algos on your system and provide this algo perf data to the pool, so pool can always give your miner the best profit coin jobs. Pool uses exchange to auto trade all coins to monero to pay it to miners."

	"log-file": "/tmp/xmrig-mo.log",

Setup CPU Mining

For the CPU miner setup, make sure the following is contained in the config:

	"cpu": {
		"enabled": true,
		
	"opencl": {
		"enabled": false,
		
	"cuda": { 
		"enabled": false,	

Setup GPU Mining

Since I do not have any GPUs to test now, I used the new XMRig Configuration Wizard [1] to learn what needs to be changed. The following are my findings, but RTFM to be sure:

AMD GPU

For AMD-based GPU, make sure the following is contained in the config:

	"opencl": {
		"enabled": true,
		
	"cuda": { 
		"enabled": false,	

Nvidia GPU

For Nvidia-based GPU, make sure the following is contained in the config:

	"opencl": {
		"enabled": false,
		
	"cuda": { 
		"enabled": true,	

Start the miner

First run with sudo so that the results of the automatic algorithm performance tests get written to the conf file:

	$ sudo xmrig-mo --config=/etc/xmrig-mo/xmrig-mo.conf

Afterwards, you can kill it and run it as user:

	$ xmrig-mo --config=/etc/xmrig-mo/xmrig-mo.conf

*

My personal tweaks


	$ sudo vim /etc/xmrig-mo/xmrig-mo.conf
	"algo-perf": {
		"astrobwt": 0.0
	},

*

And then...





*

Anything else...

If there is anything else I missed then let me know. As always -> RTFM, hack the system & enjoy life! - Killab33z

https://hispagatos.org

References

[1] XMRig Configuration Wizard (https://xmrig.com/wizard)

[2] MoneroOcean's port list (https://moneroocean.stream/#/ports)

Related articles

HackTheBox and Hispagatos:

Hackea el sistema! Los grupos anarquistas de hacking:

Libertad del software es descentralizar el poder:

---

← Newer: How to setup dnscrypt-proxy

→ Older: Weechat para Matrix con e2ee EDICIÓN FACIL

 █████ █████ █████ █████ █████ █████ █████ █████
░░░░░ ░░░░░ ░░░░░ ░░░░░ ░░░░░ ░░░░░ ░░░░░ ░░░░░

Hispagatos is an Anarcho Hacker collective[1] that resolves around the Hacker ethic[2] of Steven levy and Libertarian Socialism ideas.

We work hard to preserve hacker culture, decentralization,security and privacy in cyberspace and also motivate towards an horizontal and non hierarchical techno-anarcho-communist society (TACS) where technology is made by people for the people not by corporate masters to control people. a(A)a

1: Anarcho Hacker collective

2: Hacker Ethic

3: Libertarian Socialism

[donate using LiberaPay](https://liberapay.com/Hispagatos/donate)


Source