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

推荐订阅源

N
News | PayPal Newsroom
Security Archives - TechRepublic
Security Archives - TechRepublic
Hacker News: Ask HN
Hacker News: Ask HN
H
Hacker News: Front Page
Apple Machine Learning Research
Apple Machine Learning Research
TaoSecurity Blog
TaoSecurity Blog
Help Net Security
Help Net Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
人人都是产品经理
人人都是产品经理
博客园 - 三生石上(FineUI控件)
Security Latest
Security Latest
Cloudbric
Cloudbric
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Know Your Adversary
Know Your Adversary
A
Arctic Wolf
L
LangChain Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
The GitHub Blog
The GitHub Blog
P
Proofpoint News Feed
W
WeLiveSecurity
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
M
MIT News - Artificial intelligence
Google DeepMind News
Google DeepMind News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
小众软件
小众软件
NISL@THU
NISL@THU
云风的 BLOG
云风的 BLOG
P
Privacy & Cybersecurity Law Blog
S
Security @ Cisco Blogs
博客园 - 【当耐特】
I
InfoQ
Vercel News
Vercel News
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
P
Proofpoint News Feed
O
OpenAI News
Google DeepMind News
Google DeepMind News
N
News and Events Feed by Topic
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
K
Kaspersky official blog
T
Threat Research - Cisco Blogs
量子位
宝玉的分享
宝玉的分享

雾非雾 - hosts

暂无文章

群晖相关资料备用
花非花 · 2022-10-13 · via 雾非雾 - hosts

首先记录几个第三方套件源地址:
群晖第三方套件源
矿神的套件源
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”保存退出