tailscale学习笔记

1、tailscale彻底卸载

# 关闭Tailscale服务
tailscale down
# 从基于Debian的发行版(如Ubuntu)中卸载Tailscale
sudo apt-get remove tailscale
# 从基于Fedora的发行版中卸载Tailscale
sudo dnf remove tailscale
# 从基于Arch的发行版(如Manjaro)中卸载Tailscale
sudo pacman -Rns tailscale
# 在整个文件系统中搜索名为“tailscale”的文件或目录,并将其删除。这个命令将彻底删除所有与Tailscale相关的文件。
find / -name "*tailscale*" -exec rm -rf {} \;
# 重启系统,使更改生效
reboot
# 将DNS解析服务器设置为Google的公共DNS服务器(8.8.8.8),然后将该更改写入/etc/resolv.conf文件。/dev/null表示不显示输出。
echo "nameserver 8.8.8.8" | sudo tee /etc/resolv.conf > /dev/null
# 在系统中卸载 tailscale-archive-keyring 软件包,并在执行过程中自动确认所有提示
apt remove tailscale-archive-keyring -y