Skip to content

Commit

Permalink
Add mining and gpu
Browse files Browse the repository at this point in the history
  • Loading branch information
omidraha committed Sep 22, 2018
1 parent 683a5ba commit d001a01
Show file tree
Hide file tree
Showing 5 changed files with 126 additions and 9 deletions.
1 change: 1 addition & 0 deletions src/crypto_currency/crypto_currency.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ Contents:
:maxdepth: 3

tips
mining

71 changes: 71 additions & 0 deletions src/crypto_currency/mining.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
Mining
======



Mining software
---------------


https://en.bitcoin.it/wiki/Mining_software

cgminer
+++++++

https://github.com/ckolivas/cgminer

.. code-block:: bash
$ sudo apt-get install cgminer
$ cgminer --userpass omidraha.worker1:anything --url stratum+tcp://jp.stratum.slushpool.com:3333
bfgminer
++++++++

http://bfgminer.org/

https://linuxhint.com/bfgminer-ubuntu/

https://bitcointalk.org/?topic=877081

.. code-block:: bash
$ sudo apt-get install bfgminer
$ bfgminer -o stratum+tcp://jp.stratum.slushpool.com:3333 -u omidraha.worker1 -p anything
poclbm
++++++


https://github.com/m0mchil/poclbm

.. code-block:: bash
$ git clone https://github.com/m0mchil/poclbm
$ cd poclbm
$ poclbm.py omidraha.worker1:anything@jp.stratum.slushpool.com:3333
MultiMiner
++++++++++

https://github.com/nwoolls/MultiMiner

https://github.com/nwoolls/MultiMiner/wiki/Installation


Pool
----

https://en.bitcoin.it/wiki/Comparison_of_mining_pools

slushpool
+++++++++

https://slushpool.com/help/get-started/getting_started

https://slushpool.com/help/get-started/advanced_mining

https://slushpool.com/help/get-started/mining_beginners
53 changes: 53 additions & 0 deletions src/linux/gpu.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
GPU
===


How to measure GPU usage?
-------------------------

https://askubuntu.com/questions/387594/how-to-measure-gpu-usage


nvidia-smi
++++++++++

https://developer.nvidia.com/nvidia-system-management-interface

.. code-block:: bash
$ watch nvidia-smi
$ nvidia-smi --loop-ms=1000
gpustat
+++++++

https://github.com/wookayin/gpustat

.. code-block:: bash
$ pip install gpustat
$ gpustat
$ gpustat -cp
$ gpustat -cpi
$ watch gpustat
NOTE: This works with NVIDIA Graphics Devices only



glances
+++++++


https://github.com/nicolargo/glances


.. code-block:: bash
$ pip install glances
$ pip install glances[gpu]
1 change: 1 addition & 0 deletions src/linux/linux.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Contents:
hard
memory
cpu
gpu
ldap
centos
debian
Expand Down
9 changes: 0 additions & 9 deletions src/notes/bookmarks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,3 @@ Robtex Swiss Army Knife Internet Tool

https://www.robtex.com/


Others
======

http://idea.lanyus.com

http://114.215.133.70:41017

https://m.do.co/c/be94ebcce415

0 comments on commit d001a01

Please sign in to comment.