跳到主要內容

門羅網路 (Monero Network) 將在 4/6 更新,更改 PoW 防止 ASIC 礦機入侵



自從之前比特大陸 (Bitmain) 公布了最新的 CryptoNight ASIC 礦機造成 CryptoNight 系貨幣 (XMR、ETN...等) 一片譁然,主要是會嚴重傷害這個算法的去中心化理念和對貨幣發行的公平性,更會造成挖礦難度大爆炸,普通 CPU、顯卡礦工將幾乎無法從中獲利就如現在比特幣 (Bitcoin) 的挖礦生態一般。當然 Monero 團隊對於 ASIC 礦機的立場也一向都很強硬,礦機釋出的消息才沒多久馬上就決定了將在 4/6 特別針對 ASIC 更新整體網路,會更改 PoW 的機制來遏止特殊訂製的挖礦設備。


(Bitmain 新開發的 CryptoNight 礦機)


Monero v0.12.0.0

啟用日期 : 2018/4/6


本次更新主要調整 :
  • PoW 機制改變,防止 ASICs
  • 傳輸限制最小 Mixin 6,小於會被 Monero 網路拒絕



那不論是礦池、挖礦程式、CLI/GUI 錢包都會需要手動更新,官方也提供各個項目的操作指示,簡單來說只要你是存在 MyMonero 網頁錢包、紙錢包或各交易所都不需要做任何改變,只有個人錢包會需要手動因應這次更新。


官方更新指南 :


How do I upgrade?

First and foremost, we encourage users to check the integrity of the binaries and verify that they were signed by Fluffypony's GPG key. A guide that walks you through this process can be found here for Windows and here for Linux and Mac OS X.
CLI: // Windows 32-bit, Linux 32-bit, ARMv7, ARMv8, and FreeBSD binaries are forthcoming
If you are using the CLI you ought to perform the following steps:
  1. Download the new binaries from the official website or Github.
  2. Extract the new binaries to a new directory of your liking.
  3. Copy over the wallet files from the old directory (the one that contains the v0.11.0.0 or v0.11.1.0 binaries).
Note that a blockchain resync is not needed. Thus, if you open monerod-v.0.12.0.0, it will simply pick up where it left off.
GUI: // GUI Binaries are forthcoming
If you are using the GUI you ought to perform the following steps:
  1. Download the new binaries from the official website or Github.
  2. Extract the new binaries to a new directory of your liking.
  3. Open monero-wallet-gui^1. It should automatically load your "old" wallet and you should be set for the upcoming scheduled network upgrade.
(1) On Linux you ought to start the GUI with the start-gui.sh script, i.e., ./start-gui.sh.
Paper wallet:
You don't have to do anything. However, if you want to restore a wallet after the scheduled network upgrade, you need to use the new binaries.
MyMonero:
You don't have to do anything, as MyMonero will be properly upgraded in advance of the scheduled network upgrade.
Mobile wallets:
Its presumed that the third-party mobile wallets (Monerujo, Cake, and Xwallet) will release a new version in advance of the scheduled network upgrade such that the user is sufficiently prepared. Basically, their new version has to use ring size 7 as minimum default, otherwise users will get their transactions rejected.
Solo mining:
This process is similar to the CLI upgrade process. Thus, see aforementioned CLI steps.
Pool mining:
Your pool operator should upgrade to the new version. In addition, you should update your mining software to the latest version (the one that includes code to accommodate the PoW tweak).



同時 Monero 團隊也呼籲整體社群響應更新維持網路完整,也已經接洽交易所配合此次更新以防止 ASIC 礦機的負面影響。那同是 CryptoNight 算法的 Electroneum (ETN) 在先前直播也已經表示會跟進 Monero 之後的改版 (來源),所以應該不需要擔心會難度暴升,這方面就靜待開發團隊消息了。


留言



這個網誌中的熱門文章

Linux (Ubuntu) 查詢硬碟容量、剩餘大小指令

在 Ubuntu Desktop 版本或有安裝 GUI 像 Xfce 的 Server 版本當然可以直接從圖形介面查看硬碟容量和已經使用的大小, 但如果是在純 CLI 版本或使用 SSH 連線時呢?那就需要用到指令了。 顯示硬碟容量、已使用、可用大小。 df -h 查詢資料夾所占硬碟的大小。 du -h 查詢檔案大小 ls -l

吃光硬碟讀寫的大怪獸 - Superfetch 是什麼?可以關嗎?

Superfetch 是 Windows 內建的硬碟快取功能,它會預先將檔案讀取起來到 Ram 裡方便稍後做使用,所以常常在工作管理員內都可以看到 Superfetch 往往占掉了不少的硬碟使用量,那這樣的情形是好的嗎?其實理論上並不會有太大影響,畢竟 Superfetch 只是將等會要讀取的內容先預置在 Ram 中,如果不趁硬碟負載小的時候優先讀取,之後反而可能忙不過來呢。當然如果你是使用 SSD 的話可能會為使用壽命擔心, 高頻率的讀取可能加速固態硬碟老化,那在讀取速度原本就很快的 SSD 當然就相對的沒有必要開啟 Superfetch 了。 Superfetch 在電腦待機時吃掉大部分硬碟使用量是很常有的事。 要關閉也很簡單, Win+R > services.msc 打開「服務」,找到 Superfetch。 右鍵 > 內容,將它更改為「 已停用 」後確定即可。

TLS / SSL 金鑰轉檔,「.crt / .key」如何轉成「.pem」?( OpenSSL 教學)

不管是哪個 Certificate Authority (CA) 發的憑證多半金鑰檔都是給「.crt / .key」格式的檔案,像是「ca_bundle.crt」、「 certificate.crt」和「.private.key」這種檔案, 但是在實際使用 (Nginx、Apache...等伺服器) 卻會需要的是「.pem」檔 ,那要怎麼轉換呢?其實可以直接使用 OpenSSL 這個軟體和幾行指令來達成。 OpenSSL 官方網站 :  https://www.openssl.org 下載頁面 :  https://www.openssl.org/source sudo apt-get install openssl 以 Linux (Ubuntu / Debian ...等) 為例,可以直接使用 apt-get 指令下載安裝 OpenSSL,如果是其他系統可以參考官方網站的說明。 openssl rsa -in private.key -text > private.pem openssl x509 -inform PEM -in certificate.crt > certificate.pem openssl x509 -inform PEM -in ca_bundle.crt > ca_bundle.pem 以前述所提到的「ca_bundle.crt」、「 certificate.crt」和「.private.key」三個檔案為例,就可以用上方的指令完成轉檔,其實同副檔名的轉檔指令都相同,所以兩個「.crt」的指令其實是重複的,也要記得套換成自己的檔案名稱。 如果需要申請免費的 SSL 憑證也可以參考之前介紹過的 SSL For Free ,它是使用「Let's Encrypt」核發的憑證,以及如果覺得申請憑證和定期更新太麻煩,也可以考慮自動化的 Caddy Server 能自動幫網站升級 HTTPS。