AEON 是使用CryptoNight-Lite算法的虛擬貨幣,安全、隱密且無法追蹤。
AEON is a virtual currency using the CryptoNight-Lite algorithm, safe, secret and untraceable.
如果有冗餘的CPU處理效能,挖掘AEON是好選擇。
Excavation of AEON is a good option if redundant CPUs are effective.
若你從未接觸挖礦,無需擔心。本文將編寫:
If you have never been involved in mining, you have nothing to worry about.
- 創建和使用本地錢包
- Ubuntu、Debian編譯安裝礦機 – XMRig
本人並非專業礦工,不保證以下內容均為正確,因本文造成任何損失敬請自負。
I am not a professional miner, and I do not guarantee that all of the following is correct, because I am proud of any of the damages caused here.
建議CPU規格:
It is suggested that the CPU rule:
- 四核心 – 非雙核四線
- AES-NI – 非常重要 對算力影響極大
- 每顆核心能分配2MB Cache; 四核心CPU需8MB Cache
注意請不要在VPS挖礦;
長時間佔用CPU效能不但影響其他使用者,更會被因濫用資源/違反TOS停機。
Please do not dig mines in VPS;
long-term CPU efficiency affects not only other users, but is also suspended for misuse of resources/violation of TOS.
虛擬幣錢包可分為本地錢包及交易所錢包,以下將會使用本地錢包:
引用 – 架設Monero獨立節點教學:
Virtual currency wallets can be divided into local wallets and exchange wallets, using local wallets & #8211; :
錢包的運作需要依賴區塊鏈同步程式將區塊鏈的資料經由點對點(P2P)的方式下載到電腦上,再經由錢包工具程式掃描在區塊鏈中屬於自己的可用餘額;而每當你需要發送交易時,則是透過錢包工具程式利用私鑰簽署完交易之後,再經由區塊鏈同步程式透過P2P的方式將交易廣播到網路上。
The operation of the wallet requires that the chain data be downloaded to the computer by P2P and scanned by the wallet tool program for its own available balance in the chain; each time you need to send a transaction, it is through the wallet tool program that you sign a transaction using a private key, and then the chain syncording program disseminates the transaction to the Internet via P2P.
交易所錢包的優缺點:
The advantage of the exchange wallet:
- 方便,可直接在網頁操作/交易。
- 毋需安裝下載額外軟體
- 有跑路/黑客盜幣風險
- 費用高
- 部份礦池對交易所錢包的最低支付額設定得較高
本地錢包的優缺點:
The advantages of local wallets:
- 安全,沒有交易所的跑路和盜幣風險,可安心存放大量虛擬幣。
- 礦池的最低支付額較低
- 不方便,每次打開都需要區塊鏈同步
- 目前沒有帶GUI界面的官方AEON錢包
AEON Github:https://github.com/aeonix/aeon/releases
解壓後有兩個文件「aeond.exe」和「simplewallet.exe」
「aeond.exe」的用途是建立本地節點
「simplewallet.exe」是錢包本體
br/> "aeond.exe" for the purpose of creating local nodes
"simplewallet.exe" is the wallet body
錢包需要連接「節點」來獲得區塊鏈訊息。
我們可以連接線上節點或建立本地節點,由於本地節點需要佔用大量RAM和硬盤空間,以下將使用線上節點:
The wallet needs to connect nodes to get a chain message.
We can connect nodes on the line or create local nodes, as local nodes require significant RAM and hard disk space, using the following node on the line:
同目錄建立run.bat,內容如下:
Create run.bat in the directory, as follows:
simplewallet.exe --daemon-address block.chinaenter.cn:11181 #中國節點
simplewallet.exe --daemon-address phx-1.snipanet.com:11181 #美國節點
創建你的第一個AEON錢包:
雙擊運行run.bat;
輸入錢包名字,以下將示範「Tester」:
Double-click runrun.bat;
enter the name of the wallet, which will be illustrated by "Tester" as follows:
並輸入新密碼。
and enter the new password.
新錢包現在已經生成,請仔細閱讀綠色訊息。並把金鑰和種子密碼妥善保存,當錢包文件丟失或忘記密碼時,可使用種子密碼恢復。
br/> new wallets are now generated to read green messages carefully.
現在輸入「refresh」同步區塊鏈,首次同步需時約10-30分鐘。
Now enter the "refresh" synchronisation chain for about 10-30 minutes.
可輸help查看更多指令。
Could not close temporary folder: %s
輸入save及exit退出錢包:
Enter save and exit to exit the wallet:
下載XMRig:
Github: https://github.com/xmrig/xmrig
Download XMRig:
Github: https://github.com/xmrig/xmrig
apt update apt install git screen git clone https://github.com/xmrig/xmrig
由於原版XMRig會強制捐贈1%算力給作者,以下將設置捐贈量=0
Since the original XMRig will force a 1% contribution to the author, the following will set the contribution = 0
nano xmrig/src/donate.h 把 constexpr const int kDonateLevel=0;
nano xmrig/src/Options.cpp case 1003: if (arg < 0 || arg > 99) { (Nano可以使用CTRL+w搜尋)
開始編譯安裝:
Ubuntu16/Debian9:
Start building installation:
Ubuntu16/Debian9:
apt install git build-essential cmake libuv1-dev libmicrohttpd-dev
cd xmrig mkdir build cd build cmake .. make
Debian8:
apt install git build-essential cmake automake libtool curl libmicrohttpd-dev
curl -sSL https://github.com/libuv/libuv/archive/v1.8.0.tar.gz | tar zxfv - -C /usr/local/src cd /usr/local/src/libuv-1.8.0 sh autogen.sh http://npchk.info/linux-aeon-mining/configure make make install rm -rf /usr/local/src/libuv-1.8.0 cd ~/xmrig ldconfig mkdir build cd build cmake -DWITH_HTTPD=OFF -DUV_LIBRARY=/usr/local/lib/libuv.so .. make
Ubuntu14:
apt install git build-essential automake libtool curl libmicrohttpd-dev
curl -L http://www.cmake.org/files/v3.4/cmake-3.4.1.tar.gz | tar -xvzf - -C /tmp/ cd /tmp/cmake-3.4.1/ http://npchk.info/linux-aeon-mining/configure make make install rm -rf /tmp/cmake-3.4.1/ cd curl -sSL https://github.com/libuv/libuv/archive/v1.8.0.tar.gz | tar zxfv - -C /usr/local/src cd /usr/local/src/libuv-1.8.0 sh autogen.sh http://npchk.info/linux-aeon-mining/configure make make install rm -rf /usr/local/src/libuv-1.8.0 cd ~/xmrig ldconfig mkdir build cd build cmake -DWITH_HTTPD=OFF -DUV_LIBRARY=/usr/local/lib/libuv.so .. make
設置HUGE PAGES:
Setup HUGE PAGES:
sysctl -w vm.nr_hugepages=128
寫入/etc/security/limits.conf並生效
Write/etc/security/mitts.conf and enter into force
nano /etc/security/limits.conf
* soft memlock 262144 * hard memlock 262144
ulimit -l
礦池列表:http://aeonpools.net
建議選擇地點較近的礦池。
需注意礦池手續費最低支付額
List of mines: http://aeonpools.net
suggests the location of the nearest mine.
推薦:
AEON Pool (com) https://aeon-pool.com/ – Aeon最大礦池
China Enter http://aeon.chinaenter.cn/ – 中國礦池 阿里雲多線
Recommended:
AEON Pool (com) https://aeon-pool.com/ & #8211; Aeon's largest mineral pool
China Enter http://aeon.chinaenter.cn/ & #8211; China's mineral pond Ali Yun multiline
建立配置文件config.json:
Create profileconfig.json:
nano config.json
{ "algo": "cryptonight-lite", // cryptonight (default) or cryptonight-lite "av": 0, // algorithm variation, 0 auto select "background": false, // true to run the miner in the background "colors": true, // false to disable colored output "cpu-affinity": null, // set process affinity to CPU core(s), mask "0x3" for cores 0 and 1 "cpu-priority": null, // set process priority (0 idle, 2 normal to 5 highest) "donate-level": 0, // donate level, mininum 1% "log-file": null, // log all output to a file, example: "c:/some/path/xmrig.log" "max-cpu-usage": 75, // maximum CPU usage for automatic mode, usually limiting factor is CPU cache not this option. "print-time": 60, // print hashrate report every N seconds "retries": 5, // number of times to retry before switch to backup server "retry-pause": 5, // time to pause between retries "safe": false, // true to safe adjust threads and av settings for current CPU "threads": null, // number of miner threads "pools": [ { "url": "礦池地址:端口", // URL of mining server "user": "錢包地址", // username for mining server "pass": "Email或x", // password for mining server "keepalive": true, // send keepalived for prevent timeout (need pool support) "nicehash": false // enable nicehash/xmrig-proxy support } ], "api": { "port": 0, // port for the miner API https://github.com/xmrig/xmrig/wiki/API "access-token": null, // access token for API "worker-id": null // custom worker-id for API } }
儲存輸入指令開始挖礦:
Save input instructions to start mining:
screen -S aeon cd ~/xmrig/build http://npchk.info/linux-aeon-mining/xmrig
1000H/s算力=約0.12枚AEON/天 – https://aeon-pool.com/
幣值查詢:https://coinmarketcap.com/currencies/aeon/
1000H/s Calculator = about 0.12 AEON/day & #8211; https://aeon-pol.com/
Currency Query: https://coinmarkcap.com/currences/aeon/
E3 1220v5=860H/s
E3 1230v6=980H/s
N2800=15H/s
C2750=180H/s
L3426=80H/s
i3 540=100H/s
i5 2500=680H/s
i7 4790=1080H/s
i7 6700=1020H/s
AEON可透過Bittrex和HitBTC兌換成BTC/出售
AEON can switch to BTC/sale via Bittrex and HitBTC
礦池支付後錢包需輸入refresh刷新區塊鏈,退出前請務必save和使用exit。
When the pit is paid, the wallet is entered into the redresh swipe chain and is required to save and use the exit before leaving.
注册有任何问题请添加 微信:MVIP619 拉你进入群
打开微信扫一扫
添加客服
进入交流群
发表评论