意外删除了 /etc/apt/apt.conf.d

意外删除了 /etc/apt/apt.conf.d

我意外删除了 apt.conf.d 文件夹并且无法安装(使用 apt-get)任何东西。

当我尝试在 apt 文件夹中找到 时apt.conf.d,它不再存在,只能sources.list找到 。因此,这意味着apt.conf.d不是文件夹中唯一缺少的东西。

主要问题是: 我如何重新创建/恢复/检索整个 apt 文件夹?

额外的:

在终端中使用 apt-get 时,我总是收到错误:

W: Unable to read /etc/apt/apt.conf.d/ - DirectoryExists (2: No such file or directory)
W: Unable to read /etc/apt/preferences.d/ - DirectoryExists (2: No such file or directory)

我正在使用 Ubuntu 12.04。

它不在垃圾箱里,因为我通过终端使用了 root 访问权限(因此不幸的是,它被永久删除了)。

编辑: 文件apt.conf.d夹已重新创建,但是 怎么办?我应该重新创建哪种类型的文件?(和preferences.d的默认内容是什么?)preferences.dapt.conf.d

答案1

根据错误 578446在 Debian 上,当您使用 命令行 更改发行版时也会发生这种情况chdist。并且它还指出重新创建目录就足够了。

答案2

touch apt.conf

进而

sudo vi apt.conf

接下来添加代理,

编辑文件并确保格式如下:

Acquire::http::proxy "proxy:port-number/";

相关内容