I just wrote a tutorial. Here it is for your perusal. I hope it will help.
Linux tutorial(but should be very close for other platforms)
Summary:
Two terminals, once for the daemon and one for the wallet and mining
• terminal 1:
• terminal 2:
./simplewallet --generate-new-wallet=name_of_my_wallet.bin
(first time)
./simplewallet --wallet-file=name_of_my_wallet.bin
(next times)
Get the precompiled binariesWindows
Mac
Linux
you can also compile from source (I was not able to do so on Manjaro Linux, but the Ubuntu precompiled work flawlessly)
Open two terminalsFor each terminal be sure to go to the folder where you have you binaries (on a graphical interface, the fastest way it to drag-and-drop a file from the file manager then remove the name of the file to have only the folder)
On
terminal 1, type this command
Let it sync, it will be MUCH faster than bytecoin, since it is one day old (bytecoin is two years old)
That's all. Don't close (once the daemon is active, you can use
show_hr to get your hashrate or
set_log 1/2/3 to change the verbosity of the logs). If you close the daemon whilst you are mining, mining will stop (obviously) and if you open the daemon again the mining won't resume (you must use the start_mining command on the wallet for that)
On
terminal 2, type this command:
./simplewallet --generate-new-wallet=name_of_my_wallet.bin
(I am not sure .bin is necessary)
You will be prompted for a password. Be careful, you won't have to type a confirmation so beware of typos!
Close the wallet with the "exit" command.
Now type this command:
./simplewallet --wallet-file=name_of_my_wallet.bin
and enter your password. If you forgot your password or mistyped it at creation time, delete every file starting with name_of_my_wallet.bin and start over. Every bitmonero would be lost forever, that's why it is important that you do it just after the creation, before any mining.
MiningAnd now the good stuff: mining!
Since the wallet is also the miner, enter this:
where x is your number of threads (use nproc on linux to know it - should work on Mac too; on Windows, either get a utility for this or use this formula: number of CPU (usually 1) time number of cores time 2 (if no support for Hyperthread, remove the *2)
Or course, you don't have to use all your threads (especially if you are using your computer for something else)
Unfortunately, on my machine/OS, I cannot mine on more than one thread at a time. I don't know if it is my machine or my OS.(deleted the blockchain and resynchronized, works now)
By the way: if you want to know your hashrate, type show_hr in bitmonerod. And if you want to change the amount of information in the daemon, use set_log 1 (least info) to set_log 3 (max info)
How can you know that you are actually mining? Check you CPU usage :-) If it less than 80% chances are you are not mining.
I hope this tutorial will prove useful
Edit: I've been suggested to add my address, so here it is:
46ctfLBhgyzJm61oTtDfu9GbVhG7ito4fNiQjdZcB5bL3mz5ejQrPD29uEkDHFzCVTHGFqAdG456w6ivYp7K23SiGREUiQe
(by the way, this coin is welcome breath of fresh air after the agressiveness and, dare I say, stupidity of the Blackcoin thread)
Thanks to
tacotime for the Ubuntu binaries (I could not compile on Arch) and
Vilchaco for the show_hr trick.