From 0bc9f3cfc44fe55c711d4fbd20ffb116b6621c31 Mon Sep 17 00:00:00 2001 From: smeb y <48400087+a3165458@users.noreply.github.com> Date: Sun, 28 Apr 2024 10:06:17 +0800 Subject: [PATCH] Update Nimble.sh --- Nimble.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Nimble.sh b/Nimble.sh index 1f08652..dc7f9cf 100644 --- a/Nimble.sh +++ b/Nimble.sh @@ -72,15 +72,29 @@ function install_node() { echo "安装完成,请输入命令 'screen -r nim' 查看运行状态。/Installation complete, enter 'screen -r nim' to view the running status." } +# 查看节点日志 +function lonely_start() { + read -p "请输入挖矿钱包地址: Please enter your mining wallet address: " wallet_addr + export wallet_addr + cd $HOME/nimble/nimble-miner-public + source ./nimenv_localminers/bin/activate + screen -dmS nim bash -c "make run addr=$wallet_addr" + + echo "独立启动,请输入命令 'screen -r nim' 查看运行状态。/Installation complete, enter 'screen -r nim' to view the running status." +} + + # 主菜单 function main_menu() { clear echo "请选择要执行的操作: /Please select an operation to execute:" echo "1. 安装常规节点 /Install a regular node" + echo "2. 独立启动挖矿节点 /Install a regular node" read -p "请输入选项(1): Please enter your choice (1): " OPTION case $OPTION in 1) install_node ;; + 2) lonely_start ;; *) echo "无效选项。/Invalid option." ;; esac }