From 7cce6982819d123e1d77dc13daf49d9c26e1f0e7 Mon Sep 17 00:00:00 2001 From: lxh2875931338 Date: Sat, 25 Jul 2026 00:02:28 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=E9=83=A8=E5=88=86=E5=AE=89?= =?UTF-8?q?=E8=A3=85=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install_binary.md | 86 ----------------------------------------------- 1 file changed, 86 deletions(-) diff --git a/install_binary.md b/install_binary.md index 5c4baf9..264f6d9 100644 --- a/install_binary.md +++ b/install_binary.md @@ -1,89 +1,3 @@ -文件:INSTALL_BINARY.md - -```markdown -# 📦 二进制安装指南 - -> 直接下载编译好的二进制文件,开箱即用,无需 Docker、无需 Go 环境。 - ---- - -## 一、下载 - -从 [Releases](https://git.whitetop.xyz/lxh2875931338/frpc-console/releases) 页面下载对应平台的二进制文件: - -| 平台 | 文件名 | -|---|---| -| Linux x86-64 | `frpc-console-linux-amd64.tar.gz` | -| Linux ARM64 | `frpc-console-linux-arm64.tar.gz` | -| Windows x86-64 | `frpc-console-windows-amd64.zip` | - ---- - -## 二、Linux 部署 - -### 1. 解压并放好 - -```bash -# 解压 -tar -xzf frpc-console-linux-amd64.tar.gz - -# 移动到系统目录(可选) -sudo mv frpc-console-linux-amd64 /usr/local/bin/frpc-console -sudo chmod +x /usr/local/bin/frpc-console -``` - -2. 直接运行 - -```bash -# 前台运行,方便查看日志 -./frpc-console - -# 或指定端口 -./frpc-console -p 9300 -``` - -3. 注册为 systemd 服务(推荐,开机自启) - -创建服务文件: - -```bash -sudo nano /etc/systemd/system/frpc-console.service -``` - -写入以下内容: - -```ini -[Unit] -Description=frpc-console -After=network.target - -[Service] -Type=simple -User=root -WorkingDirectory=/opt/frpc-console -ExecStart=/usr/local/bin/frpc-console -Restart=always -RestartSec=10 - -[Install] -WantedBy=multi-user.target -``` - -启动并启用: - -```bash -sudo systemctl daemon-reload -sudo systemctl enable frpc-console -sudo systemctl start frpc-console -sudo systemctl status frpc-console -``` - ---- - -好,帮你补全字标和格式,直接复制就能用: - ---- - ## 📦 二进制安装指南 > 直接下载编译好的二进制文件,开箱即用,无需 Docker、无需 Go 环境。