我想下载Debian的所有DVD映像,并在我的USB硬盘中创建一个本地镜像,以便安装在虚拟机中等。因此,我开始在网上阅读,并了解到下载各种DVD光盘图像的Debian拼图工具是一个很好的选择。我读过https://www.debian.org/CD/jigdo-cd/原版的jigdo http://atterer.org/jigdo/开发者,现在他在他的网站上提到了jigdo https://www.einval.com/~steve/software/jigdo/的开发人员。
如果您是Linux用户,那么Jigdo也可以用于Debian、Ubuntu和其他各种Linux发行版中的正常包安装。这通常是得到东西的最好方法。如果这不是你的选择(例如,你需要一个更新的版本),那么它应该很容易从源代码构建--参见下面。
当前版本的jigdo https://git.einval.com/cgi-bin/gitweb.cgi?p=jigdo.git;a=summary i无法理解如何在我的Debian虚拟机上下载和安装它。我试着做一个
debian@debian:~$ sudo apt-get install debian
[sudo] password for debian:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package debian
debian@debian:~$ sudo apt-get install jigdo
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package jigdo is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'jigdo' has no installation candidate
debian@debian:~$ sudo apt-get install jigdo-lite
[sudo] password for debian:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package jigdo-lite
debian@debian:~$ 我错过了什么?我无法从上面的页面中了解如何在Debian上下载和安装jigdo工具。我该怎么做/rather问题是我该怎么做?洪流在我的国家被封锁了,所以如果其他方式下载所有Debian图片呢?
发布于 2019-11-27 14:14:03
在包列表中搜索“拼图”找到拼图文件,所以您应该能够使用sudo apt-get install jigdo-file或sudo apt install jigdo-file。
请注意: Debian文档现在建议使用apt作为在dpkg或apt-get上安装软件包的主要前端。
用dpkg操作包说:
应该把dpkg看作是一个系统工具(后端),apt是一个更接近用户的工具,这克服了前者的局限性。这些工具一起工作,每个工具都有其特殊性,适合于特定的任务。
APT是一个庞大的项目,其最初的计划包括一个图形界面。它基于一个包含核心应用程序的库,apt-get是在项目中开发的第一个前端命令行。apt是APT提供的第二个基于命令行的前端,它克服了apt的一些设计错误。
https://unix.stackexchange.com/questions/554427
复制相似问题