我正在尝试使用live构建Ubuntu映像:
lb config --mode ubuntu --distribution precise --debian-installer true --debian-installer true --debian-installer-gui true我得到以下错误:
Reading state information...
Package busybox 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
However the following packages replace it:
busybox-static:i386 busybox-static
E: Package 'busybox' has no installation candidate
P: Begin unmounting filesystems...发布于 2014-01-09 03:37:43
live默认为在构建其色度时仅使用“主”组件。对于Debian来说,这很好,因为安装基本系统所需的所有软件包都在main中。不幸的是,Ubuntu将busybox放入“宇宙”中,因此您需要将--archive-areas "main universe"和可能的--parent-archive-areas "main universe"添加到lb配置调用中才能找到它。
发布于 2013-11-20 20:21:10
如上面提到的,安装这两个用于构建。只需打开终端并键入
sudo apt-get install busybox-static:i386 busybox-statichttps://askubuntu.com/questions/380035
复制相似问题