📦 软件安装指南
🔄 安装流程图
📥 下载安装包
系统要求
- 仅支持64位操作系统
- 建议系统内存 ≥ 4GB
- 建议磁盘空间 ≥ 20GB
下载地址
shell
# Windows 64位下载地址
https://software.wueasy.com/file/latest/file_win_64.zip
1
2
2
shell
# Linux系统(Intel/AMD处理器)
https://software.wueasy.com/file/latest/file_linux_amd64.zip
# Linux系统(飞腾/鲲鹏等ARM处理器)
https://software.wueasy.com/file/latest/file_linux_arm64.zip
1
2
3
4
5
2
3
4
5
shell
# Mac系统(M1/M2/M3芯片)
https://software.wueasy.com/file/latest/file_mac_arm64.zip
# Mac系统(Intel处理器)
https://software.wueasy.com/file/latest/file_mac_amd64.zip
1
2
3
4
5
2
3
4
5
如何选择正确的版本?
Windows系统:直接使用Windows 64位版本
AMD64架构(x86_64):
- Linux系统:使用 Linux AMD64版本
- Mac系统:使用 Mac AMD64版本
- 适用于:Intel或AMD处理器
ARM64架构(aarch64):
- Linux系统:使用 Linux ARM64版本(飞腾/鲲鹏等)
- Mac系统:使用 Mac ARM64版本(M1/M2/M3芯片)
可以通过以下命令查看系统架构:
bash
# Linux/Mac系统
uname -m
# 输出说明:
# x86_64: 选择AMD64版本
# aarch64/arm64: 选择ARM64版本
1
2
3
4
5
6
2
3
4
5
6
🛠️ 命令说明
软件管理命令
命令 | 说明 | 适用系统 |
---|---|---|
./file_linux_amd64 install | 安装软件到系统 | Linux |
./file_linux_amd64 uninstall | 从系统卸载软件 | Linux |
./file_linux_amd64 start | 启动服务 | Linux |
./file_linux_amd64 restart | 重启服务 | Linux |
./file_linux_amd64 stop | 停止服务 | Linux |
提示
Windows系统请使用 file_win_64.exe
替换上述命令中的 file_linux_amd64
系统服务命令
通过系统服务方式管理应用
命令 | 说明 |
---|---|
systemctl enable file.service | 设置开机自启动 |
systemctl disable file.service | 关闭开机自启动 |
systemctl start file.service | 启动服务 |
systemctl stop file.service | 停止服务 |
systemctl restart file.service | 重启服务 |
systemctl status file.service | 查看服务状态 |
注意
系统服务命令仅适用于 Linux 系统