Post
Topic
Board Announcements (Altcoins)
Re: [ANN][RIC] Riecoin, new prime nrs. POW **CPU-ONLY** NEW 0.9.1 CLIENT
by
surfer43
on 05/06/2014, 01:11:52 UTC
Guys im having a problem running the xptminer on ubuntu 14.04.
It says permission denied when i try to run it on terminal, i already navigate to the folder of the files.

./xptminer-sse4-b15 -o http://ypool.net -u . -p -t 4

Im using i5-920.
Also, how to create a batch file (.bat) like on windows, so that i can run the miner by just opening the file or putting it to startup programs.

Thanks.
Give yourself permission to execute the file:
Code:
chmod 777 xptminer-sse4-b15

Make a file called mine.sh with this inside
Code:
#!/bin/bash
/path/to/xptminer-sse4-b15 -o http://ypool.net -u . -p -t 4
Give yourself permission to execute mine.sh:
Code:
chmod 777 mine.sh
Then opening mine.sh or putting it to startup programs should start mining.