linux下如何使用aptitude获取源码包?

发布于 2024-10-18 03:17:38 字数 318 浏览 1 评论 0原文

我可以使用 apt-get source 获取源包,但是有没有办法使用 aptitude 来做到这一点? 我还使用 aptitude 下载了 python2.6 的 .deb 包,然后使用 ar 解压缩。

aptitude download python2.6
ar xv python2.6_2.6.5-1ubuntu6_i386.deb

我还使用 apt-get 下载了 python 源码

sudo apt-get source python2.6

两次下载的内容不同。为什么 ?

I can get source packages using apt-get source , but there a way to do this using aptitude ?
Also I downloaded the .deb package for python2.6 using aptitude and then unzipped it using ar.

aptitude download python2.6
ar xv python2.6_2.6.5-1ubuntu6_i386.deb

I also downloaded the python source using apt-get

sudo apt-get source python2.6

The contents of both the downloads are different. Why ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

夜未央樱花落 2024-10-25 03:17:38

aptitude download python2.6 检索 python2.6 的二进制包。

apt-get source python2.6 检索生成二进制包 python2.6source 包。

源下载将包括原始源 tarball、debian diff 和签名的证书文件。

aptitude download python2.6 retrieves the binary package for python2.6.

apt-get source python2.6 retrieves the source package that generates the binary package python2.6.

Source downloads will include the original source tarball, the debian diff and the signed certificate file.

寂寞清仓 2024-10-25 03:17:38

apt-get source packagename

apt-get source 不与软件包系统交互,因此在这种情况下混合 apt-get 和 aptitude 就可以了。

您也不必成为 root 即可使用 apt-get source。

apt-get source packagename

apt-get source does not interact with the package system so mixing apt-get and aptitude is fine in this case.

You also do not have to be root to use apt-get source.

吃不饱 2024-10-25 03:17:38

.deb包是binary包,即源码包编译的结果。如果您执行aptitude install,就会安装它。

aptitude似乎不能下载源码包。

The .deb package is the binary package, that is, the results of compiling the source package. It is the thing that would be installed if you did aptitude install <package>.

It does not appear that aptitude can download source packages.

青萝楚歌 2024-10-25 03:17:38

您好,您可以轻松地从中找到它们,它已从大多数地方(包括 ubuntu 档案)中删除
下载 Python 2.6_2.6XXX

Hi you may easily find them from ,Its removed from most of the places including ubuntu archives
Download Python 2.6_2.6XXX

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文