Repository

來源列表中的 IPs insead URL

  • December 20, 2020

source.list 中的儲存庫是否可以使用 IP 而不是 URL?

(如何)

您可以在 sources.list 中使用 IP 而不是 url。

這是一個範例:要轉換deb http://deb.debian.org/debian buster main,您需要獲取 url 的 ip,但在這種情況下它是一個重定向器!. 要轉換的正確 URL 是debian 鏡像的 url,例如:ftp2.de.debian.org/debian/

nslookup ftp2.de.debian.org

使用dig, nslookup… 獲取 IP 地址

樣本輸出:

...

Non-authoritative answer:
ftp2.de.debian.org      canonical name = ftp.halifax.rwth-aachen.de.
Name:   ftp.halifax.rwth-aachen.de
Address: 137.226.34.46
Name:   ftp.halifax.rwth-aachen.de
Address: 2a00:8a60:e012:a00::21

然後編輯您/etc/apt/sources.list的如下:

deb http://137.226.34.46/debian buster main

debian 安全儲存庫:

deb http://20.49.228.237/debian-security/ buster/updates main

引用自:https://unix.stackexchange.com/questions/625345