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

推荐订阅源

C
Check Point Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
月光博客
月光博客
博客园 - 司徒正美
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
量子位
Recent Announcements
Recent Announcements
V
V2EX
P
Proofpoint News Feed
小众软件
小众软件
云风的 BLOG
云风的 BLOG
腾讯CDC
宝玉的分享
宝玉的分享
Microsoft Azure Blog
Microsoft Azure Blog
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
B
Blog
博客园_首页
GbyAI
GbyAI
博客园 - Franky

Arch Linux Forums

Avidemux crashes without strace / Applications & Desktop Environments how to apply patches with non-linux linends / Newbie Corner Replicating CachyOS on vanilla Arch (or at least getting close) / Arch Discussion What's arch linux GUI package manager ? / Newbie Corner Hibernation failing due to insufficient memory / System Administration profiledef.sh editting question / Installation trying to script kde plasma wallpaper settings / Programming & Scripting Looking for new Audacious package maintainer / Creating & Modifying Packages issues installing arch with LUKS2 encryption / Newbie Corner QEMU PXE booting does not work with OVMF.4m.fd / Applications & Desktop Environments Wired lan regular disconnect / Newbie Corner Need Help setting up ARCH in my G16 G634JZR iwlwifi started failing consistently, trying to determine root cause Windows randomly jumping between monitors after GNOME 50 update No display via DP or HDMI after boot. / Kernel & Hardware how to change acpi platform_profile? / Newbie Corner Linux denied all kernel modules which not loaded right now Use iPhone as Webcam for Arch Linux Video Output Failure on nvidia-580xx-dkms on TTY --> Desktop switch (Page 2) / Kernel & Hardware I was going to rant ..WINE32 Sabotage compliments of Arvind Krishna / Arch Discussion [SOLVED] LUKS drive auto unlocked by TPM when expected not to / Networking, Server, and Protection Hibernate/suspend from X = dark panel; from TTY = works (ASUS G14, hyb (Page 2) / Laptop Issues Headphone jack noise/buzz / Newbie Corner segmentation fault in cc1plus when building CLK / AUR Issues, Discussion & PKGBUILD Requests Console alternative to meld / GNU/Linux Discussion Problem with paru git clone / Newbie Corner XKB questions / Applications & Desktop Environments gnome-keyring-daemon is not working correctly / Applications & Desktop Environments [SOLVED] Steam opens and immediately closes constantly / Newbie Corner Firefox rounded edges on Sway / Applications & Desktop Environments
ExpressVPN and DNS / resolv.conf / Networking, Server, an...
fractal_soun · 2026-06-21 · via Arch Linux Forums

I had been running ExpressVPN on my system for some time. Initially installed the CLI tool, then later switched to the GUI version (using the installer provided by ExpressVPN). I'd recently been having some problems with it, where upon booting up my system, it would take ages to connect to a server, often requiring me to go through a cycle of stopping / disabling / enabling / starting the expressvpn service in order to get a connection.

I was kind of getting fed up with it and wanted to explore other providers. So I removed it (rm -rf /opt/expressvpn), and removed the service. However, I think there must have been some leftover remnants somewhere, because now I am getting the weird thing that, while normal websites load fine, the expressvpn page itself (which I need to access to cancel my subscription) does not load.

Doing some searching around, it seems like it could be a DNS server issue. Currently, I have

/etc/resolv.conf
nameserver 10.250.0.10
nameserver 10.250.0.28

I tried changing it manually to the Cloudfare values

/etc/resolv.conf
nameserver 1.1.1.1
nameserver 1.0.0.1

and creating the file

/etc/NetworkManager/conf.d/dns.conf:
[main]
dns=none

to prevent NetworkManager from touching it, but still haven't been able to find a solution.

Trying dig just times out

dig expressvpn.com
;; communications error to 10.250.0.10#53: timed out
;; communications error to 10.250.0.10#53: timed out
;; communications error to 10.250.0.10#53: timed out
;; communications error to 10.250.0.28#53: timed out

; <<>> DiG 9.20.24 <<>> expressvpn.com
;; global options: +cmd
;; no servers could be reached

(and similar results with the cloudfare settings)

Any assistance in troubleshooting this would be greatly appreciated.