OKEx欧易最新域名,持续更新最新地址

RTM挖矿指南,怎么挖RTM币

1,546次阅读
没有评论

2、全球最大交易所币安

国区邀请链接:https://accounts.suitechsui.online/zh-CN/register?ref=16003031 支持86手机号码,网页直接注册。

目前不清退的交易所推荐:

1、全球第二大交易所OKX欧意

国区邀请链接: https://www.dqvzgdmisn.com/zh-hans/join/1837888   币种多,交易量大!

国际邀请链接:https://www.okx.com/join/1837888 注册简单,交易不需要实名,新用户能开合约,币种多,交易量大!

2、老牌交易所比特儿现改名叫芝麻开门 :https://www.gate.ac/signup/XgRDAQ8?ref_type=103  注册成功之后务必在网页端完成 手机号码绑定,大陆号码输入+086即可 ,实名认证。推荐在APP端实名认证初级+高级更方便上传。网页端也可以实名认证。

全球最大交易所币安,国区邀请链接:https://accounts.binance.com/zh-CN/register?ref=16003031  币安注册不了IP地址用香港,居住地选香港,认证照旧,邮箱推荐如gmail、outlook。支持币种多,交易安全!

买好币上KuCoinhttps://www.kucoin.com/r/af/1f7w3  CoinMarketCap前五的交易所,注册友好操简单快捷!

Raptoreum 挖矿指南

介绍

在此页面上,您将找到当前可用的用于挖掘 Raptoreum 的所有相关信息、指南和存储库链接。

尚不支持 GPU 挖掘。可以使用 Solo/Pool CPU 挖掘。

如果您遇到任何问题并需要帮助,请加入我们的官方 Discord 以获得支持。

另请注意,随着新矿工的开发,本文档可能会发生变化。一旦有新的优化矿工可用,我们将尝试始终相应地更新文档。

GhostRider算法挖掘首先在开源cpuminer-opt挖掘软件中实现。

原始 BitcoinTalk 线程: https ://bitcointalk.org/index.php ?topic= 1326803.0(这是一个锁定线程)

当前 BitcoinTalk 主题: https ://bitcointalk.org/index.php ?topic= 5226770.0(这是活跃的论坛主题)

自从第一个矿工推出以来,我们有几个分叉和多人为 GR 算法开发矿工。

在我们开始编译之前的一些重要注意事项

如何使用钱包单独挖矿

注意: Raptoreums 网络困难使得很难用钱包单独挖掘一个区块。如果您想要可靠且定期的支出,建议使用矿池挖矿。

— 在此处下载钱包:https : //raptoreum.com/latest

— 打开并同步,第一次启动时可能需要一个小时或更长时间

— 完成后,转到“帮助”>“调试窗口”>“控制台”并键入“setgenerate true 2”。该数字是您希望它使用的内核数(不是线程数)。它会开始挖矿,你会知道什么时候碰到一个块,因为你的余额会发生变化。

RTM挖矿指南,怎么挖RTM币

-=编译矿工=-

请注意,本教程适用于上述链接中的1.1.0b矿工。另请注意,最新版本具有预编译的矿工,可以为基于 Windows 和 Linux 的操作系统下载。预编译版本可用于1.1.0b版本。

以下是您应该考虑使用 WSL 编译自己的矿机的一些优点/理由

  • 您从源代码构建代码,而不是使用具有潜在感染病毒风险的预构建二进制文件。(同一个仓库中的可执行文件是安全的)
  • 您构建的矿工将针对您的 CPU 指令集构建,它支持并且应该更快。
  • 使用 WSL 构建您自己的矿工将为您省去防病毒标记矿工的问题,并且您无需进行文件夹排除。

使用 WSL(适用于 Linux 的 Windows 子系统)和/或Ubuntu 20.04 LTS进行编译

  • 请注意,必须在 BIOS 设置中启用虚拟化。
  • WSL 设置的详细信息:https : //docs.microsoft.com/en-us/windows/wsl/install-win10#manual-installation-steps
  • WSL 内核包更新:https : //wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi(您需要将 WSL 设置为默认版本 2)
    #This enables WSL.
    dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
    #This enables Virtual Machine Platform
    dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
    #Restart Your System.
    
    #You will need to download WSL2 kernel update package from the link mentioned above. 
    
    #Set WSL 2 as the default version (note that windows 10 is required for this to work)
    wsl --set-default-version 2
  • 打开 Microsoft Store 下载并安装 Ubuntu 20.04(您可以选择其他基于 Linux 的操作系统)
  • 您应该有一个 CLI 界面,您可以在其中为您的 ubuntu 实例设置用户名和密码。
  • 更新您的 Ubuntu 并安装所需的工具来构建您自己的二进制文件:
    #Update and Upgrade ubuntu:
    sudo apt get update
    sudo apt get upgrade
    #Download build essentials:
    sudo apt-get install build-essential libssl-dev libcurl4-openssl-dev libjansson-dev libgmp-dev automake zlib1g-dev git
    #Clone the repository:
    git clone https://github.com/WyvernTKC/cpuminer-gr-avx2.git
    #Enter the folder
    cd cpuminer-gr-avx2
    #run the autogen script
    ./autogen.sh
    #Configure to build for native
    CFLAGS="-O3 -march=native -Wall -mtune=native" ./configure --with-curl
    #Build
    make
    #now if everything went fine, you should take a look in the folder with "ls" command and you should have a "cpuminer" executable.
    
    #to make life easier you should create a start script: 
    nano start.sh
    #copy this and change pool address and your wallet address. 
    ./cpuminer -a gr -o stratum+tcp://pool_address_goes_here  -u your_wallet_address_goes_here.Worker_name -p x
    #CTRL+X to Save
    #Y to approve
    #Enter to write and close 
    
    #give execution rights to your script:
    chmod +x start.sh
    #execute your script and happy mining:
    sudo ./start.sh

-=矿池挖矿的矿工使用/参数=-

使用–help在可用平台上运行矿工将为您提供可以使用的可用参数/选项。可以在上述存储库中源代码旁边的自述文件中找到有关使用示例的其他信息。

初学者的提示/注意事项:

  • 如果您下载预先构建的矿工二进制文件,您将看到有多个可执行文件。每个可执行文件可以使用不同的指令集挖掘相同的算法。
  • 您可以检查您的处理器制造商页面以查看您的 CPU 支持哪些指令集并使用该可执行文件进行挖掘。
  • 测试所有可执行文件以查看哪个矿工授予您最高的哈希率(请注意,这需要几分钟才能使您的哈希率稳定并且哈希率可能会波动)。

基本用法示例:

# This is the most basic setup that will get your miner up in running. 
cpuminer-zen.exe -a gr -o stratum+tcp://pool_address_goes_here  -u your_wallet_address_goes_here.Worker_name  #windows
./cpuminer -a gr -o stratum+tcp://pool_address_goes_here  -u your_wallet_address_goes_here.Worker_name  #linux
# -a Specifies the algorithm, -o specifies the pool connection, -u specifies your wallet. 

基准和调优教程:

这适用于那些不想编译自己的版本并使用预编译的可执行文件来测试哪个版本为他们产生最高哈希率的人。

#this first part shows how to use the benchmark
#on ubuntu:
sudo ./cpuminer_name -a gr --benchmark #wait 30 seconds or more to get an avg result / thread (use CTRL+C to cancel)
#on windows start a command line with administrator rights and navigate to the folder with your executable files.
cpuminer_name -a gr --benchmark #wait 30 seconds or more to get an avg result / thread (use CTRL+C to cancel)

#this second part shows how to use the tuning tool. (note that you should be using tuning method together with --benchmark instead of tuning the miner during mining on a pool to avoid fluctuation in hash rate and get more accurate results.)
#note that it should take about 30 minutes to finish the tuning process. (if using the --benchmark it will stop automatically)
#on ubuntu:
./cpuminer_name -a gr --benchmark --tune
./cpuminer-INST -o stratum+tcp://pool_address_goes_here  -u your_wallet_address_goes_here.Worker_name --tune-config tune_config
#on windows start a command line with administrator rights and navigate to the folder with your executable files
cpuminer_name -a gr --benchmark --tune
cpuminer_name -a gr -o stratum+tcp://pool_address_goes_here  -u your_wallet_address_goes_here.Worker_name --tune-config tune_config


可用的 Raptoreum 矿池

https://miningpoolstats.stream/raptoreum

目前不清退的交易所推荐:

1、全球第二大交易所OKX欧意

国区邀请链接: https://www.dqvzgdmisn.com/zh-hans/join/1837888   币种多,交易量大!

国际邀请链接:https://www.okx.com/join/1837888 注册简单,交易不需要实名,新用户能开合约,币种多,交易量大!

2、老牌交易所比特儿现改名叫芝麻开门 :https://www.gate.ac/signup/XgRDAQ8?ref_type=103  注册成功之后务必在网页端完成 手机号码绑定,大陆号码输入+086即可 ,实名认证。推荐在APP端实名认证初级+高级更方便上传。网页端也可以实名认证。

全球最大交易所币安,国区邀请链接:https://accounts.binance.com/zh-CN/register?ref=16003031  币安注册不了IP地址用香港,居住地选香港,认证照旧,邮箱推荐如gmail、outlook。支持币种多,交易安全!

买好币上KuCoinhttps://www.kucoin.com/r/af/1f7w3  CoinMarketCap前五的交易所,注册友好操简单快捷!

火必所有用户现在可用了,但是要重新注册账号火币https://www.huobi.com

2、全球最大交易所币安

国区邀请链接:https://accounts.suitechsui.online/zh-CN/register?ref=16003031 支持86手机号码,网页直接注册。

正文完
 0
rtmbi
版权声明:本站原创文章,由 rtmbi 于2021-11-15发表,共计6120字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)