利用老旧笔记本

家里有一打老旧的笔记本, 老奔腾, i3 m390 那种. 单放着可惜, 但拿来用也干不了啥. 两三百买个盒子插电视上看爱奇艺都比这个来的舒服. 前几天突然想到, 为什么不拿它来刷 PT + 做影音服务器呢? 低功耗, 低噪音, 还有显卡可以硬件加速解码. 电费也比一台 VPS 便宜. 还带个电池, 市电停了也能撑一会.

Pterodactyl 后端使用自定义 DNS 服务器

前言

Pterodactyl 面板的后端从用 JavaScript 写的 daemon 改为了用 Go 写的 daemon. 这个变更是极好的, 这样运行的时候就不需要依赖 NodeJS 了. 但是 wings 将 Cloudflare 的 1.1.1.11.0.0.1 作为了其默认 DNS. 在此之前是 Google DNS. 但是在我所使用的机房中, Cloudflare DNS 是不通的. 这导致了在游戏内与验证服务器沟通的问题.

感谢 @yfsama 帮我解决了这个问题.

Workaround

编辑 wings 的配置文件 /etc/pterodactyl/config.yml, 在 docker 的 network 下加入

dns:
- 114.114.114.114
- 223.5.5.5

即可. 整个 docker 部分的配置应该看起来是这样的.

docker:
  network:
    interface: 172.18.0.1
    dns:
    - 114.114.114.114
    - 223.5.5.5
    name: pterodactyl_nw
    ispn: false
    driver: bridge
    network_mode: pterodactyl_nw
    is_internal: false
    enable_icc: true
    interfaces:
      v4:
	subnet: 172.18.0.0/16
        gateway: 172.18.0.1
      v6:
	subnet: fdba:17c8:6c94::/64
        gateway: fdba:17c8:6c94::1011
  domainname: ""
  registries: {}
  tmpfs_size: 100

后记

我还在等 yf 阿姨的自研面板

在 CentOS7 上安装影音中心 Jellyfin

前言

最近买了台储存型 VPS 来刷 PT. 有的时候还想看些片子,因为没开各家流媒体服务商的会员,所以我一般都是把资源下到移动硬盘里。但是走到哪都拿个移动硬盘也不现实。所以就萌生了在那台储存型 VPS 上搭个影音中心的想法。为了最好的体验,这个影音中心应该建在局域网内。但是我因为缺少相关的设备,就放在公网了。

阅读全文→

解决 Pterodactyl 判断 OS 错误的问题。

今天在新装一台翼龙的时候,遇到了无法判断系统的错误。如下所示。

03:40:50.633Z FATAL wings: A fatal error caused the daemon to abort the startup. (additional={})
    Error: Unable to create a pterodactyl user and group, unknown operating system.
        at /srv/daemon/src/index.js:200:34
        at nextTask (/srv/daemon/node_modules/[email protected]@async/dist/async.js:5324:14)
        at next (/srv/daemon/node_modules/[email protected]@async/dist/async.js:5331:9)
        at /srv/daemon/node_modules/[email protected]@async/dist/async.js:969:16
        at /srv/daemon/src/index.js:176:21
        at /srv/daemon/node_modules/[email protected]@getos/index.js:95:16
        at wrapper (/srv/daemon/node_modules/[email protected]@async/dist/async.js:268:20)
        at iteratorCallback (/srv/daemon/node_modules/[email protected]@async/dist/async.js:495:17)
        at /srv/daemon/node_modules/[email protected]@async/dist/async.js:321:20
        at /srv/daemon/node_modules/[email protected]@getos/index.js:87:20
阅读全文→

VMHaus Twitter 账号被黑 - Explained.

VMHaus 是一家成立于 2017 年冬的 IDC,主营廉价的 UK / US / NL 主机。在约为三年的运营时间里,公司被几经转手。目前由 Mythic Beasts 运营。其 twitter 账户在 5 月 27 日晚被非法使用,号称免费发放 VMHaus 的 Bonsia 控制面板源码和数据库备份。

VMHaus twitter 被黑是什么意思?VMHaus twitter 被黑是什么梗?VMHaus twitter 被黑是谁?这个梗又是从何而来?为什么一瞬间就有好多人使用这个梗?为什么大家都在VMHaus twitter 被黑?相信不少同学都很想了解这个梗,下面就让小编来为大家介绍一下VMHaus twitter 被黑梗的详细内容。

注:本文的信息来源包含公众人士,VMHaus 创始人, Mythic Beasts 并加以本人的个人见解。

阅读全文→