From the looks of it, you just need to
1. make sure that miner exists in the current directory (ls -al)
2. start the miner like this ./miner --flags etc etc ( ./ is current dir).
Thanks
edit - sometimes it is named "minerd", but IDK in your case, I don't use that miner.
the problem is that your current directory is not in your %PATH% so it can't see miner, so you have to start it by ./ or fully qualified path e.g. /usr/local/src/miner-src/build/miner --flags
oh derrrrrr.... I was forgetting the "./" in front of "miner"
however, a new issue ----
monerominer@monerominer:~/wolf-xmr-miner-0.3b$ ./miner xmr.conf
[18:01:22] Parsed pool URL: xmr.poolto.be
[18:01:22] Successfully connected to pool's stratum.
[18:01:22] Request: {"method": "login", "params": {"login": "438gFWUiHY68N4MUMWbgUGXyqGC47eqq65TbiTy4MyL4Fm7aRYHKPBM9aGyNbmeqWvLMC4aUsifgS719Shg38KKa8TZaXG7", "pass": "x", "agent": "wolf-xmr-miner/0.1"}, "id": 1}
[18:01:22] Got something: {"id":1,"jsonrpc":"2.0","error":null,"result":{"id":"933664273004978","job":{"blob":"02039e95bdbe05b0d489689fc1bd652f8f9e8de35c28ff976410ee758c8a5cc3d4324de1f2cf6f0000000024dc732a4391e0ae70ffbdb6e6fb50933baa6a54ba950ec7e709982ea8e3f00803","job_id":"262076305435039","target":"711b0d00"},"status":"OK"}}
[18:01:23] Error -61 when calling clCreateBuffer to create hash scratchpads buffer.
Segmentation fault (core dumped)
monerominer@monerominer:~/wolf-xmr-miner-0.3b$
In the wolf readme it states
Wolf's OpenCL XMR Miner for AMD GPUs
If you get an error about clCreateBuffer - lower your rawintensity. See the example config xmr.conf for details.
Generally, you want to raise rawintensity as high as it will go without error - but remember, 2MiB of GPU RAM is needed for every work-item.
I edited the xmr.conf to reflect my GPU's stock clock and memory freqs, then reduced the intensity to 100 .... I still got the error. I reduced the intensity all the way to 1, I still got the error. I don't think its an intensity issue, more like an open cl issue perhaps?
Your thoughts?
I edited the xmr.conf with my wallet address and payment id as well as the pool that I want to mine on.
However, I'm still getting that cl error, but I noticed that the pool is NOT what I entered, and the payment address is not mine.
Where if the correct configuration file found. I edeted the xmr.conf found in the same folder as miner, I also found xmr.conf~ in my home folder after pressing ctrl-h.
Somewhere its getting the config info to mine with a pool and address that is not mine.
monerominer@monerominer:~/wolf-xmr-miner-0.3b$ ./miner xmr.conf
[18:47:16] Parsed pool URL: xmr.poolto.be
[18:47:17] Successfully connected to pool's stratum.
[18:47:17] Request: {"method": "login", "params": {"login": "438gFWUiHY68N4MUMWbgUGXyqGC47eqq65TbiTy4MyL4Fm7aRYHKPBM9aGyNbmeqWvLMC4aUsifgS719Shg38KKa8TZaXG7", "pass": "x", "agent": "wolf-xmr-miner/0.1"}, "id": 1}
[18:47:17] Got something: {"id":1,"jsonrpc":"2.0","error":null,"result":{"id":"306201277323998","job":{"blob":"0203d2a9bdbe054538459b23229928fd3a66be792f6a29c8fa04781f5f57f4bc43599d89a8bba400000000d799b581c1ee759d9f28d3c18b50d96e48fe7110428122166b299e6d3878cc2008","job_id":"959680734225548","target":"711b0d00"},"status":"OK"}}
[18:47:18] Error -61 when calling clCreateBuffer to create hash scratchpads buffer.
Segmentation fault (core dumped)
monerominer@monerominer:~/wolf-xmr-miner-0.3b$
xmr.conf contents
{
"Algorithms":
[
{
"name": "CryptoNight",
"devices":
[
{
"index": 0,
"corefreq": 1050,
"memfreq": 1400,
"fanspeed": 100,
"powertune": 1,
"threads": 1,
"rawintensity": 1,
"worksize": 1
}
],
"pools":
[
{
"url": "stratum+tcp://xmr-usa.dwarfpool.com:8050",
"user": "463tWEBn5XZJSxL]U6uLQnxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxyV3z8zctJLPCZy24jvb3NiTcTJ.7c3740cc047b4ddxxxxxxxxd5aed3ea3fdf78f",
"pass": "x"
}
]
}
]
}