如何启用源代码存储库?


Answers:



5

您可以通过取消注释(删除#的)deb-src资源库来启用源代码资源库/etc/apt/sources.list

sed -i '/deb-src/s/^# //' /etc/apt/sources.list && apt update

如果要禁用源代码存储库,可以对其进行注释

sed -i '/deb-src/s/^/# /' /etc/apt/sources.list && apt update

4

默认的归档存储库已启用源归档以及二进制文件。同样,添加任何PPA sudo add-apt-repository ppa:user/archive都应同时启用源归档和二进制归档。

要进行验证,您可以检入/etc/apt/sources.list文件,然后在中的文件中/etc/apt/sources.list.d/,以确保deb-src每个deb存档行的行都在其中。另外,在Software Sources属性对话框中,您可以检查Source code选项Ubuntu Software卡上的选项是否已选中,并且在选项卡下的其他来源列表中,是否有相应的Source条目。BinariesOther Software

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.