Thursday 7 December 2017

How to mine XRY coin(royalties coin) - easiest coin to mine windows

Easiest coin to mine on windows PC 

1. Download and install the ROYALTIES Wallet from official website https://xry.io

2. Open Royalties wallet ( It will take some time to sync to the network however you can mine)

3. First take backup of your wallet and save it at some secure place(Gdrive, onedrive, etc.)

4. Goto Mining > add pool > host : 45.76.251.222 and port:3333






5. Click on start mining.


Note :

* Check your XRY earning by entering your address here : http://www.xrypool.co

* XRY calculator : 20hash/sec = 1.47 XRY /day estimated  (as of 8th Dec 2017)

* You can deposit your XRY to xrybank which will give you profit as below

* XRY Block explorer : http://xryexplorer.info/

* My mining status 1 :

Hashrate : 480H/s
Duration : 1 hours
Mined : 0.7 XRY



* My mining status 2 (intel i3 6006u):

Hashrate : 20H/s
Duration : 1 hours
Mined : 0.1 XRY




* Convert XRY to Bitcoin : https://www.cryptopia.co.nz/Exchange/?market=XRY_BTC

* Donate XRY : XRY1Em81NiKTgHU3nTVZxAMyiyu44MLTCBJ3Mdd6ns2eUw5XeZKMRwf92hLaVQqUxT48VSsqdtPA3H3b8mgZURLm3UeRATciAb



Friday 10 November 2017

How to mine Monero on Linux CPU

How to create Monero wallet's public address

1. Go to https://mymonero.com/#/create-your-account

2. Enter private login key and save this in  key somewhere safe.


3. Once you logged in you will see your wallet address.





Mining Monero on Ubuntu 14 and above

Replace WALLET_ADDRESS with your own Monero wallet's public address. The "-t 2" option determines how many of your CPU threads will be used for mining.

1. sudo apt-get install git libcurl4-openssl-dev build-essential libjansson-dev autotools-dev automake

2. git clone https://github.com/hyc/cpuminer-multi cd cpuminer-multi

3. ./autogen.sh

4. CFLAGS="-march=native" ./configure

5. make

6. sudo ./minerd -a cryptonight -o stratum+tcp://pool.minexmr.com:4444 -u WALLET_ADDRESS -p x -t 2



Mining Monero on Fedora 24 and above

Replace WALLET_ADDRESS with your own Monero wallet's public address. The "-t 2" option determines how many of your CPU threads will be used for mining.


1. yum -y install git curl-devel libcurl glib-devel libtool 

2. git clone https://github.com/hyc/cpuminer-multi 

3. cd cpuminer-multi

4.  ./autogen.sh 

5. CFLAGS="-march=native" ./configure 

6. make 

7. sudo ./minerd -a cryptonight -o stratum+tcp://pool.minexmr.com:4444 -u WALLET_ADDRESS -p x -t 3


How to check mining status 


2. Enter your wallet address

Note : The minimum withdrawal  is 0.5XMR ( you can set here http://minexmr.com/)



Estimate Mining Profits

1KH/s = 0.02XMR/day

This is only an estimate, you may receive more or less than stated


Tuesday 14 February 2017

SCP secure copy directly between linux machines

SCP : secure copy directly between linux servers. SCP runs on port 22 by default.

server1 = 192.168.0.10
server2 = 192.168.0.11


Syntax : scp -[options] username@server1:/path  /local_path

Options :

p = Speed of connection
r = Recursive
v = Verbose details
C = Compression
l = Bandwidth Limit (l -500)
p= Port

root@server2:/tmp# scp -pr root@server1:/root/test /tmp
test1                                         100%    0     0.0KB/s   00:00
test2                                         100%    0     0.0KB/s   00:00