(Mining)- 手機挖 Monero 的方法
(Mining)- 手機挖 Monero 的方法
1. 首先,註冊一個門羅幣的錢包地址
2. 然後選擇一個礦池 ( 在這選擇的是 SupportXMR )
3. 上網下載挖礦工具 XMRig 的 linux 庫文件,把這些庫文件打包到 android app 里,在 Android app 利用 ProcessBuilder方式以 shell 的方式去運行這些庫文件,就可以把手機模擬成一台linux電腦來挖礦
4. app 打包後安裝到手機上,點擊 start 按鈕,就會調用下面這段代碼,在 android 里用 shell 的方式運行挖礦工具xmrig,開始挖礦 ( 實際是在運行加密算法,找出節點連接的哈希值 )
5. 關鍵代碼如下:
Key code: // run xmrig using the config String[] args = {"./xmrig"}; ProcessBuilder pb = new ProcessBuilder(args); // in our directory pb.directory(getApplicationContext().getFilesDir()); // with the directory as ld path so xmrig finds the libs pb.environment().put("LD_LIBRARY_PATH", privatePath); // in case of errors, read them pb.redirectErrorStream(); accepted = 0; // run it! process = pb.start(); // start processing xmrig's output outputHandler = new MiningService.OutputReaderThread(process.getInputStream()); outputHandler.start();
結論:
站長手機算力約 300 H/s,這個算力與一台電腦的水平差一些
沒仔細算收益,我想就算挖了,也差不多 3 元 / Day,所以只能是玩玩
最重要的是,手機上有很多重要資料和隱私,非常不建議挖礦
免責聲明:
1.本影像檔案皆從網上搜集轉載,不承擔任何技術及版權問題。
2.如有下載連結僅供寬頻測試研究用途,請下載後在24小時內刪除,請勿用於商業。
3.若侵犯了您的合法權益,請來信通知我們,我們會及時刪除,給您帶來的不便,深表歉意。