切换主题
📦 软件安装指南
📥 下载安装包
shell
# Windows 64位下载地址
https://software.wueasy.com/operation-log/latest/operation_log_win_64.zip
shell
# Linux系统(Intel/AMD处理器)
https://software.wueasy.com/operation-log/latest/operation_log_linux_amd64.tar.gz
# Linux系统(飞腾/鲲鹏等ARM处理器)
https://software.wueasy.com/operation-log/latest/operation_log_linux_arm64.tar.gz
shell
# Mac系统(M1/M2/M3芯片)
https://software.wueasy.com/operation-log/latest/operation_log_mac_arm64.tar.gz
# Mac系统(Intel处理器)
https://software.wueasy.com/operation-log/latest/operation_log_mac_amd64.tar.gz
如何选择正确的版本?
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版本
🛠️ 命令使用指南
软件管理命令
命令 | 说明 | 示例 |
---|---|---|
install | 安装服务 | ./operation_log_linux_amd64 install |
uninstall | 卸载服务 | ./operation_log_linux_amd64 uninstall |
start | 启动服务 | ./operation_log_linux_amd64 start |
restart | 重启服务 | ./operation_log_linux_amd64 restart |
stop | 停止服务 | ./operation_log_linux_amd64 stop |
系统服务管理
提示
以下命令使用systemd管理服务,更加规范和可靠
命令 | 说明 |
---|---|
systemctl enable operation-log.service | 设置开机自启动 |
systemctl disable operation-log.service | 取消开机自启动 |
systemctl start operation-log.service | 启动服务 |
systemctl stop operation-log.service | 停止服务 |
systemctl restart operation-log.service | 重启服务 |
systemctl status operation-log.service | 查看服务状态 |