FetchDebian的下载路径可通过配置文件(全局/用户级)或命令行参数两种方式设置,具体操作如下:
FetchDebian的配置文件分为全局配置(影响所有用户)和用户级配置(仅影响当前用户),配置项为output(部分版本也使用download_path)。
/etc/fetchdebian.conf(需root权限修改);~/.fetchdebian.conf(用户主目录下,无需root权限)。sudo nano /etc/fetchdebian.conf或nano ~/.fetchdebian.conf)。在配置文件中添加或修改以下选项(以output为例,部分版本可能使用download_path):
[global] # 部分版本需指定section
output = /path/to/your/download/directory # 替换为你的目标路径(如/var/cache/fetchdebian)
注意:
mkdir -p /path/to/directory创建);chmod +w /path/to/directory添加权限)。Ctrl+O→回车→Ctrl+X退出nano);fetchdebian update或fetchdebian download <version>),检查目标路径是否生成下载文件。若需临时更改下载路径,可在运行FetchDebian命令时使用-d(或--directory)参数,直接指定目标目录:
fetchdebian -d /path/to/your/download/directory <command> # <command>为具体操作(如update、download)
示例:
/home/user/debian_iso目录:fetchdebian -d /home/user/debian_iso download bullseye amd64
/tmp/fetchdebian_cache目录:fetchdebian -d /tmp/fetchdebian_cache update
注意:命令行参数的优先级高于配置文件,会临时覆盖配置文件中的设置。
mkdir -p /path/to/directory);chmod +w /path/to/directory添加写权限,或以root身份运行命令(sudo fetchdebian ...);~/.fetchdebian.conf),或是否有其他配置项覆盖了output设置。