apt-get:使用替代来源.list

apt-get:使用替代来源.list

在我的/etc/apt/sources.list我有:

deb http://http.debian.net/debian wheezy main
deb-src http://http.debian.net/debian wheezy main

现在我需要从 (测试) 获取包的源代码。调用时jessie如何指定不同的值?sources.listapt-get source

apt-get source package-name

附言:我不想修改/etc/apt/sources.list,或者我想以apt-get无法修改系统范围源列表的用户身份运行。

答案1

您可以通过设置配置设置来实现此目的Dir::Etc::sourcelist

apt -o "Dir::Etc::sourcelist=/path/to/your/sources.list" source package-name

相关内容