惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
D
Darknet – Hacking Tools, Hacker News & Cyber Security
S
Schneier on Security
The Last Watchdog
The Last Watchdog
Cyberwarzone
Cyberwarzone
S
Securelist
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
C
Cyber Attacks, Cyber Crime and Cyber Security
L
Lohrmann on Cybersecurity
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
The Cloudflare Blog
V
V2EX
博客园_首页
博客园 - 聂微东
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
G
GRAHAM CLULEY
T
Tenable Blog
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
L
LINUX DO - 最新话题
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
SecWiki News
SecWiki News
博客园 - 三生石上(FineUI控件)
S
Secure Thoughts
N
News | PayPal Newsroom
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
T
Troy Hunt's Blog
博客园 - 【当耐特】
Forbes - Security
Forbes - Security
H
Hacker News: Front Page
A
About on SuperTechFans
B
Blog RSS Feed
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
罗磊的独立博客
D
DataBreaches.Net
P
Privacy & Cybersecurity Law Blog
Schneier on Security
Schneier on Security
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Google DeepMind News
Google DeepMind News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
D
Docker
P
Proofpoint News Feed

雾非雾 - Emby

EMBY 安卓版
群晖相关资料备用
花非花 · 2022-10-13 · via 雾非雾 - Emby

首先记录几个第三方套件源地址:
群晖第三方套件源
矿神的套件源
DSM6

https://spk.imnks.com/

DSM7

https://spk7.imnks.com/

云梦

https://spk.520810.xyz:666/

这个不常用

http://packages.synocommunity.com

Docker 镜像加速可以用阿里云的,这个教程太多,随便百度。


群晖官方的下载地址,包含固件和套件以及 APP 等应用
https://archive.synology.cn/download


有关 frp 的一些技巧(群晖通过 Docker 安装配置很简单,主要是 CentOS 的服务器配置)
使用 systemd
这个示例将会演示在 Linux 系统下使用 systemd 控制 frps 及配置开机自启。
在 Linux 系统下,使用systemd 可以方便地控制 frp 服务端 frps 的启动和停止、配置后台运行和开启自启。

要使用 systemd 来控制 frps,需要先安装 systemd,然后在 /etc/systemd/system 目录下创建一个 frps.service 文件。

如Linux服务端上没有安装 systemd,可以使用 yum 或 apt 等命令安装 systemd。

# yum
yum install systemd
# apt
apt install systemd

使用文本编辑器,如 vim 创建并编辑 frps.service 文件。

$ vim /etc/systemd/system/frps.service

写入内容

[Unit]
# 服务名称,可自定义
Description = frp server
After = network.target syslog.target
Wants = network.target

[Service]
Type = simple
# 启动frps的命令,需修改为您的frps的安装路径
ExecStart = /path/to/frps -c /path/to/frps.ini

[Install]
WantedBy = multi-user.target
使用 systemd 命令,管理 frps。

可能会用到的命令

# 启动frp
systemctl start frps
# 停止frp
systemctl stop frps
# 重启frp
systemctl restart frps
# 查看frp状态
systemctl status frps
配置 frps 开机自启。
systemctl enable frps

对于使用 Emby 或者 Jellyfin 之类影音服务的,修改 hosts
SSH 切换 root 帐号

vi /etc/hosts

按键盘上 i 键编辑,添加下面的内容

52.84.18.87    api.themoviedb.org
52.84.18.75    api.themoviedb.org
52.84.18.58    api.themoviedb.org
52.84.18.78    api.themoviedb.org
84.17.46.53    image.tmdb.org
52.84.125.81    api.tmdb.org
52.84.125.44    api.tmdb.org
52.84.125.74    api.tmdb.org
52.84.125.73    api.tmdb.org
54.68.224.42    aip.thetvdb.com
52.12.255.201    aip.thetvdb.com
35.167.171.52    aip.thetvdb.com
52.84.125.129    www.themoviedb.org
52.84.125.33    www.themoviedb.org
52.84.125.16    www.themoviedb.org
52.84.125.124    www.themoviedb.org

编辑完成后按键盘 Esc 键,输入“:wq”保存退出