你提到的 fetchdebian 可能是指以下几种情况之一,我分别说明一下:
Debian 里常用的是 fetch 或 ftp / wget / curl 来下载文件。
fetch 来自 libfetch 或 ftp)sudo apt update
sudo apt install ftp
使用:
ftp example.com
通常是用 wget 或 curl
wget https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-12.5.0-amd64-netinst.iso
或
curl -O https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-12.5.0-amd64-netinst.iso
目前 Debian 官方仓库中并没有叫 fetchdebian 的包。
你可以先确认:
apt search fetchdebian
如果没有结果,可能是:
debootstrap / apt-get)sudo apt update
sudo apt install 包名
cat /etc/apt/sources.list
sudo apt install debootstrap
sudo debootstrap stable ./debian-root http://deb.debian.org/debian
你可以告诉我:
我可以给你 精确命令。