• xmr monero miner


    https://github.com/fireice-uk/xmr-stak-cpu

    xmr-stak-cpu安装

    xmr-stak-cpu是一个用于cpu计算的开源软件,下面记录在ubuntu17.04下的安装过程

    sudo apt-get -y install git
    git clone https://github.com/fireice-uk/xmr-stak-cpu.git
    sudo apt-get -y install libmicrohttpd-dev libssl-dev cmake build-essential
    cd xmr-stak-cpu/

    此时可以选择捐赠作者的比例
    编辑donate-level.h

    更改完成后,执行编译和安装

    xmr-stak-cpu使用

    编辑 xmr-stak-cpu/bin/config.txt

    cat /proc/cpuinfo | grep processor 查看总线程数n

    cpu_threads_conf 改成以下内容,threads 数量大约为cpu 总线程数的2/3,
    以我使用的E5-2665 为例,共16线程,使用10线程时效率最高。

    "cpu_threads_conf" :
    [
       { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 0 },
       { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 1 },
       { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 2 },
       { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 3 },
       { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 4 },
       { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 5 },
       { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 6 },
       { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 7 },
       { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 8 },
       { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 9 },
    ],

    如果使用nicehash , 建议设置"nicehash_nonce" : true,

    更改地址等信息(nicehash 为例)

    "pool_address" : "cryptonight.hk.nicehash.com:3355",
    "wallet_address" : "your-bitcoin-wallet-address.any-name-you-like",
    "pool_password" : "x",

    这时,在xmr-stak-cpu/bin 文件夹下执行./xmr-stak-cpu 已经可以开始计算
    h 键显示速率(初始几秒可能为0,不要着急)

    MEMORY ALLOC FAILED: mmap failed

    可能显示MEMORY ALLOC FAILED: mmap failed
    这一问题其实不需要解决,因为在笔者的机器上实测没有影响,但是下面还是提供解决方案。
    解决方案:

    sudo sysctl -w vm.nr_hugepages=128

    另外,在/etc/security/limits.conf 中添加

    * soft memlock 262144
    * hard memlock 262144

    exit 后重新登录

    后台运行

    一切就位,让程序后台运行

    nohup ./xmr-stak-cpu &

    然后ctrl c 退出

    运行top 命令可以看到

    xmr-stak-cpu 安装及使用

  • 相关阅读:
    升级山狮系统后的几个问题
    Linux vim编辑命令总结
    css中float left与float right的使用说明
    如何利用MAMP架站 在Mac上架設WordPress
    解决mysql“Access denied for user 'root'@'localhost'”
    smarty strftime() error
    mac版本dreamweaver如何修改JS文件的编码
    例子:Read content from file to Arraylist
    MongoDB01 Introduction 介绍
    Login failed for user 'sa' because the account is currently locked out. The system administrator can unlock it.
  • 原文地址:https://www.cnblogs.com/welhzh/p/7824776.html
Copyright © 2020-2023  润新知