网上有没有预建的 QEMU Ubuntu 映像(32 位)?

网上有没有预建的 QEMU Ubuntu 映像(32 位)?

我正在使用 QEMU。在这里我找到了一些预构建的操作系统映像:

http://docs.openstack.org/trunk/openstack-compute/admin/content/starting-images.html

但是它们都是为 64 位系统设计的,而我的系统是 32 位的。有人知道网上是否有 32 位预建映像吗?

所以我可以直接使用它们而不需要费心安装。

谢谢。

答案1

该答案包含以下设置的详细步骤:

  • 云镜像 amd64 和 arm64
  • debootstrap amd64 和 arm64
  • 桌面图像 amd64

所有内容都在针对 18.04 客户机的 Ubuntu 18.04 主机上进行了测试。

云镜像 amd64

Ubuntu 云镜像是预安装的镜像,允许您直接启动,而无需进行通常的桌面系统安装。另请参阅:https://serverfault.com/questions/438611/what-are-ubuntu-cloud-images

#!/usr/bin/env bash

sudo apt-get install cloud-image-utils qemu

# This is already in qcow2 format.
img=ubuntu-18.04-server-cloudimg-amd64.img
if [ ! -f "$img" ]; then
  wget "https://cloud-images.ubuntu.com/releases/18.04/release/${img}"

  # sparse resize: does not use any extra space, just allows the resize to happen later on.
  # https://superuser.com/questions/1022019/how-to-increase-size-of-an-ubuntu-cloud-image
  qemu-img resize "$img" +128G
fi

user_data=user-data.img
if [ ! -f "$user_data" ]; then
  # For the password.
  # https://stackoverflow.com/questions/29137679/login-credentials-of-ubuntu-cloud-server-image/53373376#53373376
  # https://serverfault.com/questions/920117/how-do-i-set-a-password-on-an-ubuntu-cloud-image/940686#940686
  # https://askubuntu.com/questions/507345/how-to-set-a-password-for-ubuntu-cloud-images-ie-not-use-ssh/1094189#1094189
  cat >user-data <<EOF
#cloud-config
password: asdfqwer
chpasswd: { expire: False }
ssh_pwauth: True
EOF
  cloud-localds "$user_data" user-data
fi

qemu-system-x86_64 \
  -drive "file=${img},format=qcow2" \
  -drive "file=${user_data},format=raw" \
  -device rtl8139,netdev=net0 \
  -enable-kvm \
  -m 2G \
  -netdev user,id=net0 \
  -serial mon:stdio \
  -smp 2 \
  -vga virtio \
;

GitHub 上游

QEMU 启动后,您可能需要按 Enter 键才能显示启动菜单。Ubuntu从那里进行选择。

然后,boot 的开头是这样的:

error: no such device: root.

Press any key to continue...

但即使您不按任何键,启动也会在短暂超时后继续。请为该错误报告点赞:https://bugs.launchpad.net/cloud-images/+bug/1726476

启动完成后,使用以下命令登录:

  • 用户名:ubuntu
  • 密码:asdfqwer

互联网正常运行。

云镜像 arm64

TODO:我注意到使用它时有时会出现一个错误:https://bugs.launchpad.net/cloud-images/+bug/1818197

与 amd64 非常相似,但我们需要一些 UEFI 黑魔法才能启动它。

sudo apt-get install cloud-image-utils qemu-system-arm qemu-efi

# Get the image.
img=ubuntu-18.04-server-cloudimg-arm64.img
if [ ! -f "$img" ]; then
  wget "https://cloud-images.ubuntu.com/releases/18.04/release/${img}"
  qemu-img resize "$img" +128G
fi

# For the password.
user_data=user-data.img
if [ ! -f "$user_data" ]; then
  cat >user-data <<EOF
#cloud-config
password: asdfqwer
chpasswd: { expire: False }
ssh_pwauth: True
EOF
  cloud-localds "$user_data" user-data

  # Use the EFI magic. Picked up from:
  # https://wiki.ubuntu.com/ARM64/QEMU
  dd if=/dev/zero of=flash0.img bs=1M count=64
  dd if=/usr/share/qemu-efi/QEMU_EFI.fd of=flash0.img conv=notrunc
  dd if=/dev/zero of=flash1.img bs=1M count=64
fi

qemu-system-aarch64 \
  -M virt \
  -cpu cortex-a57 \
  -device rtl8139,netdev=net0 \
  -m 4096 \
  -netdev user,id=net0 \
  -nographic \
  -smp 4 \
  -drive "if=none,file=${img},id=hd0" \
  -device virtio-blk-device,drive=hd0 \
  -drive "file=${user_data},format=raw" \
  -pflash flash0.img \
  -pflash flash1.img \
;

GitHub 上游

debootstrapamd64

它不是预制图像,但会下载所有预构建的包,因此速度也很快,而且更易于配置和实用。

#!/usr/bin/env bash

set -eux

debootstrap_dir=debootstrap
root_filesystem=debootstrap.ext2.qcow2

sudo apt-get install \
  debootstrap \
  libguestfs-tools \
  qemu-system-x86 \
;

if [ ! -d "$debootstrap_dir" ]; then
  # Create debootstrap directory.
  # - linux-image-generic: downloads the kernel image we will use under /boot
  # - network-manager: automatically starts the network at boot for us
  sudo debootstrap \
    --include linux-image-generic \
    bionic \
    "$debootstrap_dir" \
    http://archive.ubuntu.com/ubuntu \
  ;
  sudo rm -f "$root_filesystem"
fi

linux_image="$(printf "${debootstrap_dir}/boot/vmlinuz-"*)"

if [ ! -f "$root_filesystem" ]; then
  # Set root password.
  echo 'root:root' | sudo chroot "$debootstrap_dir" chpasswd

  # Remount root filesystem as rw.
  cat << EOF | sudo tee "${debootstrap_dir}/etc/fstab"
/dev/sda / ext4 errors=remount-ro,acl 0 1
EOF

  # Automaticaly start networking.
  # Otherwise network commands fail with:
  #     Temporary failure in name resolution
  # https://askubuntu.com/questions/1045278/ubuntu-server-18-04-temporary-failure-in-name-resolution/1080902#1080902
  cat << EOF | sudo tee "$debootstrap_dir/etc/systemd/system/dhclient.service"
[Unit]
Description=DHCP Client
Documentation=man:dhclient(8)
Wants=network.target
Before=network.target
[Service]
Type=forking
PIDFile=/var/run/dhclient.pid
ExecStart=/sbin/dhclient -4 -q
[Install]
WantedBy=multi-user.target
EOF
  sudo ln -sf "$debootstrap_dir/etc/systemd/system/dhclient.service" \
    "${debootstrap_dir}/etc/systemd/system/multi-user.target.wants/dhclient.service"

  # Why Ubuntu, why.
  # https://bugs.launchpad.net/ubuntu/+source/linux/+bug/759725
  sudo chmod +r "${linux_image}"

  # Generate image file from debootstrap directory.
  # Leave 1Gb extra empty space in the image.
  sudo virt-make-fs \
    --format qcow2 \
    --size +1G \
    --type ext2 \
    "$debootstrap_dir" \
    "$root_filesystem" \
  ;
  sudo chmod 666 "$root_filesystem"
fi

qemu-system-x86_64 \
  -append 'console=ttyS0 root=/dev/sda' \
  -drive "file=${root_filesystem},format=qcow2" \
  -enable-kvm \
  -serial mon:stdio \
  -m 2G \
  -kernel "${linux_image}" \
  -device rtl8139,netdev=net0 \
  -netdev user,id=net0 \
;

GitHub 上游

启动时没有任何 systemd 错误或警告。

现在从终端使用root/登录root,然后使用以下命令检查互联网是否正常工作:

printf 'GET / HTTP/1.1\r\nHost: example.com\r\n\r\n' | nc example.com 80
apt-get update
apt-get install hello
hello

我们使用nc如下说明https://stackoverflow.com/questions/32341518/how-to-make-an-http-get-request-manually-with-netcat/52662497#52662497因为:

类似的 Debian 版本:https://unix.stackexchange.com/questions/275429/creating-bootable-debian-image-with-debootstrap/473256#473256

构建你自己的内核

因为我们在这里:

git clone git://kernel.ubuntu.com/ubuntu/ubuntu-bionic.git
cd ubuntu-bionic
# Tag matches the working kernel that debootstrap downloaded for us.
git checkout Ubuntu-4.15.0-20.21
fakeroot debian/rules clean
debian/rules updateconfigs
fakeroot debian/rules build-generic
linux_image="$(pwd)/debian/build/build-generic/arch/x86_64/boot/bzImage"

这产生了完全相同的配置,并且我相信使用了与debootstrap下载的打包 Ubuntu 完全相同的源代码,如下所述:我可以在哪里获得 11.04 内核 .config 文件?

然后我用以下方法修补它:

diff --git a/init/main.c b/init/main.c
index b8b121c17ff1..542229349efc 100644
--- a/init/main.c
+++ b/init/main.c
@@ -516,6 +516,8 @@ asmlinkage __visible void __init start_kernel(void)
        char *command_line;
        char *after_dashes;

+ pr_info("I'VE HACKED THE LINUX KERNEL!!!");
+
        set_task_stack_end_magic(&init_task);
        smp_setup_processor_id();
        debug_objects_early_init();

并重建:

fakeroot debian/rules build-generic

并且它在启动过程中打印了我的消息:

I'VE HACKED THE LINUX KERNEL!!!

但是重建速度不是很快,所以也许有更好的命令?我只是等着它说:

Kernel: arch/x86/boot/bzImage is ready  (#3)

然后继续奔跑。

解引导 arm64

该过程与 amd64 过程类似,但有以下区别:

1)

我们必须进行两个阶段debootstrap

  • 首先--foreign下载软件包
  • 然后我们将 QEMU 静态安装到chroot
  • --second-stage然后我们使用 QEMU 用户模式模拟进行软件包安装+binfmt_misc

也可以看看:debootstrap --second-stage 有什么用处

  1. 默认内核启动最终失败,并显示:

    [ 0.773665] 请附加正确的“root=”启动选项;以下是可用的分区:[ 0.774033] 内核崩溃 - 未同步:VFS:无法在未知块(0,0)上挂载根文件系统

空的分区列表表明磁盘驱动程序存在严重错误,经过一番尝试后,缺少的选项是:

CONFIG_VIRTIO_BLK=y

我认为当我使用 ISO 时它会起作用,因为模块必须从 initrd 加载。

-drive if=我尝试使用其他磁盘类型,但 virtio 是when的唯一有效值-M virt,它是目前更为合理的机器类型。

因此,我们必须重新编译我们自己的内核并启用该选项,如下所述:当交叉编译内核时,当我只想修改一个文件时,如何才能阻止它每次都从清理状态进行?

Ubuntu 开发人员应该y默认启用此配置!它非常有用!

TODO:网络不通,错误信息为:

root@ciro-p51:~# systemctl status dhclient.service
root@ciro-p51:~# cat f
● dhclient.service - DHCP Client
   Loaded: loaded (/etc/systemd/system/dhclient.service; enabled; vendor preset: enabled)
   Active: failed (Result: protocol) since Sun 2018-01-28 15:58:42 UTC; 2min 2s ago
     Docs: man:dhclient(8)
  Process: 171 ExecStart=/sbin/dhclient -4 -q (code=exited, status=0/SUCCESS)

Jan 28 15:58:40 ciro-p51 systemd[1]: Starting DHCP Client...
Jan 28 15:58:42 ciro-p51 dhclient[171]: No broadcast interfaces found - exiting.
Jan 28 15:58:42 ciro-p51 systemd[1]: dhclient.service: Can't open PID file /var/run/dhclient.pid (yet?) after start: No such file or directory
Jan 28 15:58:42 ciro-p51 systemd[1]: dhclient.service: Failed with result 'protocol'.
Jan 28 15:58:42 ciro-p51 systemd[1]: Failed to start DHCP Client.

以下是全自动脚本:

#!/usr/bin/env bash

# https://askubuntu.com/questions/281763/is-there-any-prebuilt-qemu-ubuntu-image32bit-online/1081171#1081171

set -eux

debootstrap_dir=debootstrap
root_filesystem=debootstrap.ext2.qcow2

sudo apt-get install \
  gcc-aarch64-linux-gnu \
  debootstrap \
  libguestfs-tools \
  qemu-system-aarch64 \
  qemu-user-static \
;

if [ ! -d "$debootstrap_dir" ]; then
  sudo debootstrap \
    --arch arm64 \
    --foreign \
    bionic \
    "$debootstrap_dir" \
    http://ports.ubuntu.com/ubuntu-ports \
  ;
  sudo mkdir -p "${debootstrap_dir}/usr/bin"
  sudo cp "$(which qemu-aarch64-static)" "${debootstrap_dir}/usr/bin"
  sudo chroot "$debootstrap_dir" /debootstrap/debootstrap --second-stage
  sudo rm -f "$root_filesystem"
fi

linux_image="$(printf "${debootstrap_dir}/boot/vmlinuz-"*)"

if [ ! -f "$root_filesystem" ]; then
  # Set root password.
  echo 'root:root' | sudo chroot "$debootstrap_dir" chpasswd

  # Remount root filesystem as rw.
  cat << EOF | sudo tee "${debootstrap_dir}/etc/fstab"
/dev/sda / ext4 errors=remount-ro,acl 0 1
EOF

  # Automaticaly start networking.
  # Otherwise network commands fail with:
  #     Temporary failure in name resolution
  # https://askubuntu.com/questions/1045278/ubuntu-server-18-04-temporary-failure-in-name-resolution/1080902#1080902
  cat << EOF | sudo tee "${debootstrap_dir}/etc/systemd/system/dhclient.service"
[Unit]
Description=DHCP Client
Documentation=man:dhclient(8)
Wants=network.target
Before=network.target

[Service]
Type=forking
PIDFile=/var/run/dhclient.pid
ExecStart=/sbin/dhclient -4 -q

[Install]
WantedBy=multi-user.target
EOF
  sudo ln -sf "${debootstrap_dir}/etc/systemd/system/dhclient.service" \
    "${debootstrap_dir}/etc/systemd/system/multi-user.target.wants/dhclient.service"

  # Why Ubuntu, why.
  # https://bugs.launchpad.net/ubuntu/+source/linux/+bug/759725
  sudo chmod +r "${linux_image}"

  # Generate image file from debootstrap directory.
  # Leave 1Gb extra empty space in the image.
  sudo virt-make-fs \
    --format qcow2 \
    --size +1G \
    --type ext2 \
    "$debootstrap_dir" \
    "$root_filesystem" \
  ;
  sudo chmod 666 "$root_filesystem"
fi

# Build the Linux kernel.
linux_image="$(pwd)/linux/debian/build/build-generic/arch/arm64/boot/Image"
if [ ! -f "$linux_image" ]; then
  git clone --branch Ubuntu-4.15.0-20.21 --depth 1 git://kernel.ubuntu.com/ubuntu/ubuntu-bionic.git linux
  cd linux
patch -p1 << EOF
diff --git a/debian.master/config/config.common.ubuntu b/debian.master/config/config.common.ubuntu
index 5ff32cb997e9..8a190d3a0299 100644
--- a/debian.master/config/config.common.ubuntu
+++ b/debian.master/config/config.common.ubuntu
@@ -10153,7 +10153,7 @@ CONFIG_VIDEO_ZORAN_ZR36060=m
 CONFIG_VIPERBOARD_ADC=m
 CONFIG_VIRTIO=y
 CONFIG_VIRTIO_BALLOON=y
-CONFIG_VIRTIO_BLK=m
+CONFIG_VIRTIO_BLK=y
 CONFIG_VIRTIO_BLK_SCSI=y
 CONFIG_VIRTIO_CONSOLE=y
 CONFIG_VIRTIO_INPUT=m
EOF
  export ARCH=arm64
  export $(dpkg-architecture -aarm64)
  export CROSS_COMPILE=aarch64-linux-gnu-
  fakeroot debian/rules clean
  debian/rules updateconfigs
  fakeroot debian/rules DEB_BUILD_OPTIONS=parallel=`nproc` build-generic
  cd -
fi

qemu-system-aarch64 \
  -append 'console=ttyAMA0 root=/dev/vda rootfstype=ext2' \
  -device rtl8139,netdev=net0 \
  -drive "file=${root_filesystem},format=qcow2" \
  -kernel "${linux_image}" \
  -m 2G \
  -netdev user,id=net0 \
  -serial mon:stdio \
  -M virt,highmem=off \
  -cpu cortex-a57 \
  -nographic \
;

GitHub 上游

桌面图像

看:如何在 QEMU 上运行 Ubuntu 桌面?

它确实需要手动完成安装程序,但它是您可以做的最稳定的事情,并且如果您只是想不时运行用于交互式使用的虚拟机,那就完全没问题。

对于 aarch64,我还没有让桌面运行,也许需要留意:如何在 QEMU 中运行 Ubuntu 16.04 ARM?

Debian aarch64

https://gist.github.com/philipz/04a9a165f8ce561f7ddd并更改sudo mount /dev/nbd0p2nbd0p1

答案2

通过谷歌快速搜索,我们发现了以下内容(我还没试过)

另外,您可以使用虚拟机生成器(此处称为ubuntu-vmbuilder)快速创建 Ubuntu 映像到 KVM、VirtualBox 等。

作为最后的手段,您可以使用qemu-img命令将 VirtualBox/VMware 中的磁盘映像转换为更适合 QEMU/KVM 的格式(这可能不需要:我认为 QEMU/KVM 可以与其他映像类型(如 vdi 或 vmdk)一起使用)。

$ qemu-img convert -f [vdi|vmdk|...] -O qcow2 OriginalImage NewImage

笔记:如果您使用的是 32 位操作系统,则无法使用 KVM 运行 64 位虚拟机。但 QEMU 是一个模拟器,因此它应该允许您在 32 位操作系统上运行 64 位虚拟机。但性能开销可能会很大!

答案3

參閱http://cloud-images.ubuntu.com/其中包含可与 qemu/kvm 一起使用的云图像。

答案4

https://www.turnkeylinux.org/已经存在很久了。他们有一个庞大的目录可供下载,预制的“设备”如各种格式的图像(ova、iso、vdmk、openstack、xen)。他们甚至可以在 AWS 中为您启动图像。

当我想开始探索特定的堆栈或需要解决某个问题时,我经常会下载它们的图像之一,将其转换为 cow2 并使用它。

您还可以从https://app.vagrantup.com/boxes/search或者https://virtualboxes.org/images/并对其进行转换。

相关内容