From fd9db694f1c4d8ecc7741797de6a945cd92ad134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=B3=BB=E7=B5=B1=E7=AE=A1=E7=90=86=E5=93=A1?= Date: Fri, 6 Mar 2026 06:07:59 +0000 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=20=E5=A5=97=E4=BB=B6?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=A8=AD=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...%B6%E6%9B%B4%E6%96%B0%E8%A8%AD%E5%AE%9A.md | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 %E5%A5%97%E4%BB%B6%E6%9B%B4%E6%96%B0%E8%A8%AD%E5%AE%9A.md diff --git a/%E5%A5%97%E4%BB%B6%E6%9B%B4%E6%96%B0%E8%A8%AD%E5%AE%9A.md b/%E5%A5%97%E4%BB%B6%E6%9B%B4%E6%96%B0%E8%A8%AD%E5%AE%9A.md new file mode 100644 index 0000000..ac33474 --- /dev/null +++ b/%E5%A5%97%E4%BB%B6%E6%9B%B4%E6%96%B0%E8%A8%AD%E5%AE%9A.md @@ -0,0 +1,31 @@ +# 更換 Debian 官方套件鏡像 + +```bash +nano /etc/apt/sources.list +``` + +內容如下 + +``` +deb http://ftp.tw.debian.org/debian bookworm main contrib non-free non-free-firmware +deb http://ftp.tw.debian.org/debian bookworm-updates main contrib non-free non-free-firmware +deb http://security.debian.org/ bookworm-security main contrib non-free non-free-firmware +``` + +# Proxmox VE 官方套件來源 + +```bash +rm /etc/apt/sources.list.d/* && nano /etc/apt/sources.list.d/pve-no-subscription.list +``` + +內容如下 + +``` +deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription +``` + +# 清除快取、更新套件清單 + +```bash +apt clean && apt update +``` \ No newline at end of file