ARM64 专用安装指南
🎬 Emby Server 媒体服务器
在 ARM64 设备上搭建您的私人媒体中心
1
📥 下载 Emby Server
Bash
# 下载 Emby Server for ARM64 (Ubuntu/Debian)
sudo curl -LO https://github.com/MediaBrowser/Emby.Releases/releases/download/4.8.5.0/emby-server-deb_4.8.5.0_arm64.deb
🔄
版本更新提示访问 GitHub Releases 查看最新版本号,替换命令中的 4.8.5.0
2
⚙️ 安装 .deb 包
sudo dpkg -i emby-server-deb_4.8.5.0_arm64.deb
⚠️
依赖问题解决方案如果安装过程中提示依赖问题,运行以下命令:
sudo apt install -f -y
3
🚀 启动并启用服务
sudo systemctl enable --now emby-server
💡 命令说明
enable:设置开机自启--now:立即启动服务
🔧 服务管理
- 重启:
sudo systemctl restart emby-server - 停止:
sudo systemctl stop emby-server
4
✅ 验证服务状态
systemctl status emby-server
✓
成功运行标志当看到 Active: active (running) 表示服务已正常运行
5
🌐 访问 Web 界面
http://<你的服务器IP>:8096
📍 获取服务器IP
- 终端运行:
ip addr show - 查找类似
192.168.x.x的地址 - 通常为
eth0或wlan0接口
🔒 防火墙设置
如果无法访问,确保开放端口:
宝塔面板开放 8096端口


