Questions tagged «apt»

Advanced Packaging Tool(APT)是Debian的软件包管理系统,以及用于操纵该系统的一组工具。

2
最近安装的apt软件包列表
我只花了一个小时就试图解决依赖关系,以freeCAD从他们稍稍过时的Wiki构建。 有没有办法使用apt-getor 获得我在过去一小时或一天中安装的软件包aptitude? 我的第一次尝试是,ls -t /var/apt/cache/archive但列出的包裹中有奇怪的日期。例如,“我确定现在已安装”一个python2.7-dev列为“ 2014年3月17日”。今天列出的唯一一件事是我今天上午进行的一些安全更新。从2006年开始,那里有一些目录。很久以前我还没有安装。 我也不能使用命令行历史记录,因为我混合使用了apt-get install和aptitude。我也有几个航站楼,一段时间后历史变得一团糟。 编辑: @jmonrio指出了一个很好的答案,但是当我只安装了少数几个时,这给了我很多软件包。它与我要求安装的东西和依赖项链的一部分没有区别。 我是否有希望获得该历史记录的最低安装线?即没有自动包含的。

2
无法在Windows上的Ubuntu中安装linux-libc-dev
我正在尝试使用Windows子系统Linux(ubuntu)中的apt-get安装linux-libc-dev,但是我收到一个错误,我似乎无法解决它: dpkg: error processing archive /var/cache/apt/archives/linux-libc-dev_3.13.0-126.175_amd64.deb (--unpack): unable to install new version of `/usr/include/linux/netfilter/xt_DSCP.h': File exists Errors were encountered while processing: /var/cache/apt/archives/linux-libc-dev_3.13.0-126.175_amd64.deb E: Sub-process /usr/bin/dpkg returned an error code (1) 但是当我在/ usr / include /中列出文件时,linux目录甚至都不存在。 可能是什么导致了这个?当目录没有时,文件如何存在? 谢谢。

2
将Microsoft ODBC驱动程序安装到Debian
所以,我的apt-get install返回E: Unable to locate package msodbcsql(错误代码100)。我正在尝试使用我的系统访问SQL Server数据库,因此我按照Microsoft的说明安装他们的Linux驱动程序。 我已经尝试指定软件包版本:apt-get install -y msodbcsql17并使用Debian 8和9的软件包。我试图确认系统版本,因为我实际上正在构建一个Docker容器Debian:stretch-slim -> Python:3.6-slim,而我倾向于使用Debian 8,因为其他图像中的版本号是明确的9。 尝试安装软件包有什么选择?其他排除方法或步骤? 提前谢谢了。我是Linux新手,所以任何指针都非常感谢! 编辑 根据bash:cat /etc/debian_version我的版本实际上是9.5。

3
在Ubuntu上安装cURL
我试图使用该命令在我的ubuntu服务器上安装cURL sudo apt-get install php5-curl 但是我得到以下错误 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created …

1
我可以在哪里找到旧版Ubuntu的存储库[复制]
这个问题在这里已有答案: 我在哪里可以获得旧Ubuntu版本的存储库? 2个答案 我正在使用raring,只是注意到我无法再安装软件包(404)。我检查了几个存储库,raring不存在。原来它已经EOL了,在不到10个月的时候,似乎有点苛刻。 有什么方法可以避免整个重新安装?我真的不想完全重新设置桌面等等。如果不再维护存储库并不重要,我只想抓住几个包。没有大量的东西破碎,我可以做一个dist-upgrade吗? 我刚刚六个月前从Debian转了过来,我很震惊他们希望我升级。为什么某些版本没有预定的EOL日期?(参考https://wiki.ubuntu.com/Releases) 对于关闭这篇文章的人来说,这个问题是时间相关的,一个超过3年的答案并不一定有帮助。在该帖子中链接的文章都是404或过时的。
2 ubuntu  apt 

1
如何使用SSH“动态转发”(-D)在VPN后面的盒子上适当地获取更新/安装?可能吗?
我在VPN后面被监禁了一个ubuntu服务器盒。网关以某种方式修补了证书,因此我所有的https连接都显示为“失败” $ curl https://www.google.com curl: (60) SSL certificate problem: self signed certificate in certificate chain More details here: http://curl.haxx.se/docs/sslcerts.html 我的ca证书已更新。那不是问题。 我需要设置一个可以处理https的临时代理来更新该框。 我试图做一个ssh -D 8080 user@my_home_pc隧道。Netstat报告端口打开: $ netstat -ntl Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 0.0.0.0:993 0.0.0.0:* LISTEN tcp 0 0 …
2 ubuntu  ssh  proxy  apt 

1
在Debian上使用非默认golang软件包安装的Go
我正在尝试安装go 1.8。 除golang-1.7之外的任何东西的apt软件包均不起作用。Golang-1.7可以正确安装,而golang-1.8则不能。回购中的包装是否错误/不完整? Debian声称使用golang-1.8:“此软件包是一个元软件包,安装后将保证已安装(大部分)完整的Go开发环境。” https://packages.debian.org/stretch/golang-1.8 但这显然不是事实。 # apt install golang-1.8 golang-1.8-go Reading package lists... Done Building dependency tree Reading state information... Done golang-1.8 is already the newest version (1.8.1-1). golang-1.8-go is already the newest version (1.8.1-1). 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. # go …

1
Apt install vs apt-get install。他们做同样的工作吗?
如果我想在ubuntu Xenial上安装git(只是一个例子),我就这么做 apt-get install git。但另一种选择可能是 apt install git 。 看完之后 岗位 我理解两者之间的区别 apt 和 apt-get。 但我的问题是,如果我使用一个或另一个他们做同样的任务?我的意思是,他们是否使用相同的存储库来安装相同的git?
1 apt-get  apt 

1
apt更新出错:无法连接到ftp.it.debian.org:http:
我有Debian Wheezy和内核3.2.0-3-amd64。 突然间,从今天早上起(我是意大利人),通过正确更新系统是不可能的 apt-get update。 系统挂在后端镜像上 deb http://ftp.it.debian.org/debian wheezy-backports main,但直到昨天一切顺利! 有什么建议可以解决问题吗?
1 linux  debian  ftp  apt 

0
如何解决gnuplot的未满足的依赖关系?
我在ubuntu 17.10机器上 sudo apt upgrade 给我以下错误: Reading package lists... Done Building dependency tree Reading state information... Done You might want to run 'apt --fix-broken install' to correct these. The following packages have unmet dependencies: gnuplot-x11 : Depends: gnuplot-data (= 5.0.7+dfsg1-1) but 4.6.6-3 is installed E: Unmet dependencies. Try 'apt --fix-broken …

0
无法纠正问题,您已经破坏了包裹
我有一个正在生产的Ubuntu 16.04服务器,我想安装node它npm。所以我跑了这个: sudo apt install nodejs nodejs-legacy npm 所述的NodeJS遗留包仅意在对要求节点二进制是/ usr / bin中/节点(如在Debian中提供不在/ USR /斌/的NodeJS)遗留Node.js的代码符号链接。我发现我需要它做node和npmUbuntu上正常工作。 我在新的Ubuntu 16.04服务器上运行了多次apt install命令,但在这个生产服务器上我收到以下错误: $ sudo apt install nodejs nodejs-legacy npm [sudo] password for kramer65: Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you …


1
为什么我不能安装rust-doc?
我刚刚成功安装了rustc,然后看到apt建议我也得到了rust-doc。 $ sudo apt install rust-doc Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created …
1 linux-mint  apt 

0
如何知道deb-src repo中是否有更新的软件包?
我deb-src在/etc/apt/sources.list文件中添加了一行,并使用来从该仓库中构建一些软件包apt-get source -b $package_name。 现在,我怎么知道仓库中是否有较新的版本,deb-src以便可以将安装的软件包升级到该最新版本?
1 debian  apt 

1
在使用APT查找基本软件包?
这已经困扰了我一段时间了。例如,如果我想安装xfce桌面环境,则可以使用apt-cache search xfce-但这给了我500个结果,而我所需要的只是基本软件包,而不是桌面本身的辅助软件包。我如何有效地找到东西的基本包装?

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.