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

推荐订阅源

cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
C
CERT Recently Published Vulnerability Notes
C
Cybersecurity and Infrastructure Security Agency CISA
P
Proofpoint News Feed
Security Latest
Security Latest
P
Privacy International News Feed
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
AI
AI
Cisco Talos Blog
Cisco Talos Blog
K
Kaspersky official blog
S
Secure Thoughts
PCI Perspectives
PCI Perspectives
Simon Willison's Weblog
Simon Willison's Weblog
D
DataBreaches.Net
GbyAI
GbyAI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
罗磊的独立博客
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
IT之家
IT之家
V
V2EX
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tenable Blog
T
Threat Research - Cisco Blogs
T
Troy Hunt's Blog
V2EX - 技术
V2EX - 技术
S
Security @ Cisco Blogs
Security Archives - TechRepublic
Security Archives - TechRepublic
Project Zero
Project Zero
The GitHub Blog
The GitHub Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
L
Lohrmann on Cybersecurity
F
Full Disclosure
H
Help Net Security
博客园 - Franky
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
Engineering at Meta
Engineering at Meta
A
Arctic Wolf
O
OpenAI News
S
Securelist

雾非雾 - 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”保存退出