Debian 中的软件包在哪里?

Debian 中的软件包在哪里?

我来自 Ubuntu,最近开始使用 Debian。

到目前为止,我尝试使用以下方式安装:

apt-get install gedit

还有 emacs、python 3、mozilla、wicd 和许多其他非常常见的软件包。

他们在哪里?

答案1

您可能在没有网络连接的情况下从 CD-ROM 安装了 Debian。Debian 无法验证存储库,因此将其注释掉。这些是 /etc/apt/sources.list 文件中开头带有 # 的行。

您可能还有一行 CD-ROM 存储库,看起来像“deb cdrom:[Debian GNU/Linux...' 在这行中,您可以在开头放一个 #,除非您手头有装有软件包的 CD(您可能没有,因为您在问如何找到它们)。

因此,要解决您的问题,只需以 root 身份打开 /etc/apt/sources.list 并取消注释以“# deb http...”开头的行(不必删除所有 #,因为有些只是注释)。

现在您将能够像在 Ubuntu 中一样使用 apt-get 进行安装。

答案2

将以下部分或全部行添加到文件 /etc/apt/sources.list 中:

  deb http://ftp.us.debian.org/debian/ wheezy main contrib non-free
  deb-src http://ftp.us.debian.org/debian/ wheezy main contrib non-free

  deb http://security.debian.org/ wheezy/updates main contrib non-free
  deb-src http://security.debian.org/ wheezy/updates main contrib non-free

  # wheezy-updates, previously known as 'volatile'
  deb http://ftp.us.debian.org/debian/ wheezy-updates main contrib non-free
  deb http://ftp.us.debian.org/debian/ wheezy-proposed-updates contrib non-free main
  deb http://ftp.debian.org/debian/ wheezy-backports main
  deb-src http://ftp.us.debian.org/debian/ wheezy-updates main contrib non-free
  deb http://ftp.us.debian.org/debian/ jessie main contrib non-free
  #deb-src http://ftp.us.debian.org/debian/ jessie main contrib non-free
  #deb http://ftp.us.debian.org/debian/ sid main contrib non-free
  #deb-src http://ftp.us.debian.org/debian/ sid main contrib non-free

相关内容