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