DNS Override in DHCP Mode

原因是 Vultr DNS 會不定期爛掉,一個新的 instance 預設是 DHCP。發 Ticket 去問客服,他會教你如何採用固定 IP 配置。 不過如果不想跟客服周旋,可以自己 Override DNS 設定。

$ cat /etc/network/interfaces # 確認 interface
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

#source /etc/network/interfaces.d/*

auto lo
iface lo inet loopback

allow-hotplug ens3
iface ens3 inet dhcp
iface ens3 inet6 auto
$ vi /etc/dhcp/dhclient.conf # 修改 DHCP 設定
interface "ens3" {
    supersede domain-name-servers 1.1.1.1, 1.0.0.1;
}
$ reboot && cat /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 2001:19f0:300:1704::6
nameserver 1.1.1.1
nameserver 1.0.0.1

Miniflux 自建 RSS 閱讀器服務

在 Google Reader 收攤後,我後來嘗試了不少的 RSS 閱讀器服務,FeedlyFlipboardFeedspot。嚴格來說 Flipboard 不算是 RSS 閱讀器,比較像是社群內容雜誌,但不可否認的它是個好 APP,以前甚至為了 Flipboard 買 iPad。Feedspot 感覺介面很像 Google Reader,又有計劃推出 iOS APP,中間有推出終生 Gold 方案,我也購買了。Gold 只差在通知,可以自訂時間區間而已,真的蠻雞肋的,有些 Bug 回報,官方似乎沒在維護,iOS APP. 也難產,讓我一直有想出走的想法,爾後又接觸到 Tiny Tiny RSS、FreshRSSMiniflux

Read more  ↩︎