Debian E:无法找到软件包

Debian E:无法找到软件包

我正在尝试安装lxdmdebian 软件包(喘息)。运行apt-get update不会产生任何错误,我的sources.list文件如下:

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

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

deb http://ftp.us.debian.org/debian wheezy-updates
deb-src http://ftp.us.debian.org/debian/

答案1

lxdm在 Debian 中是不稳定的,但在 Wheezy 中不是。不过,您也许可以向后移植它。

apt-cache policy lxdm
lxdm:
  Installed: (none)
  Candidate: 0.5.0-3
  Version table:
     0.5.0-3 0
         50 http://httpredir.debian.org/debian/ unstable/main amd64 Packages

构建依赖lxdm如下:

apt-cache showsrc lxdm
...
Build-Depends: debhelper (>= 9), intltool, iso-codes, libck-connector-dev, libgtk2.0-dev, libpam0g-dev, libx11-dev, libxmu-dev, pkg-config, dh-systemd, po-debconf

这些都在 Debian wheezy 中,除了dh-systemd,它位于 wheezy-backports 中。尝试输入以查看可用的版本:

apt-cache policy debhelper intltool iso-codes libck-connector-dev libgtk2.0-dev libpam0g-dev libx11-dev libxmu-dev pkg-config dh-systemd po-debconf

相关内容