我正在尝试在 Centos 8 上的容器环境(podman)中填充磁盘映像。我最初遇到了从容器访问循环设备的问题,直到找到我需要以 root 身份运行 podman 的 SO 和其他源和与--privileged
选项。
虽然这确实解决了我的问题,但我注意到在重新启动主机后,我第一次尝试在容器中设置循环设备会失败(failed to set up loop device: No such file or directory
),但在退出并重新启动容器后它会成功(/dev/loop0)。如果由于某种原因我需要在容器中设置第二个循环设备(/dev/loop1)(在第一个工作之后),它也会失败,直到我退出并重新启动容器。
进一步试验,我发现如果我运行losetup --find --show <file created with dd>
足够多的时间来附加我需要的最大数量的循环设备,然后用 分离所有这些losetup -D
,我可以完全避免错误,我可以完全避免容器中的循环设备错误。
我怀疑我遗漏了一些明显的关于 losttup 在主机上所做的事情,它显然无法完全在容器内完成,或者更具体地说,这可能是 Centos+podman+losetup 问题。关于发生了什么以及为什么我必须在重新启动后预先附加/分离循环设备以避免容器内部出现问题的任何见解?
在 Centos 8 系统上重现的步骤(在重新启动后附加/分离后):
$ dd if=/dev/zero of=file bs=1024k count=10
10+0 records in
10+0 records out
10485760 bytes (10 MB, 10 MiB) copied, 0.00826706 s, 1.3 GB/s
$ cp file 1.img
$ cp file 2.img
$ cp file 3.img
$ cp file 4.img
$ sudo podman run -it --privileged --rm -v .:/images centos:8 bash
[root@2da5317bde3e /]# cd images
[root@2da5317bde3e images]# ls
1.img 2.img 3.img 4.img file
[root@2da5317bde3e images]# losetup --find --show 1.img
/dev/loop0
[root@2da5317bde3e images]# losetup --find --show 2.img
losetup: 2.img: failed to set up loop device: No such file or directory
[root@2da5317bde3e images]# losetup -D
[root@2da5317bde3e images]# exit
exit
$ sudo podman run -it --privileged --rm -v .:/images centos:8 bash
[root@f9e41a21aea4 /]# cd images
[root@f9e41a21aea4 images]# losetup --find --show 1.img
/dev/loop0
[root@f9e41a21aea4 images]# losetup --find --show 2.img
/dev/loop1
[root@f9e41a21aea4 images]# losetup --find --show 3.img
losetup: 3.img: failed to set up loop device: No such file or directory
[root@f9e41a21aea4 /]# losetup -D
[root@f9e41a21aea4 images]# exit
exit
$ sudo podman run -it --privileged --rm -v .:/images centos:8 bash
[root@c93cb71b838a /]# cd images
[root@c93cb71b838a images]# losetup --find --show 1.img
/dev/loop0
[root@c93cb71b838a images]# losetup --find --show 2.img
/dev/loop1
[root@c93cb71b838a images]# losetup --find --show 3.img
/dev/loop2
[root@c93cb71b838a images]# losetup --find --show 4.img
losetup: 4.img: failed to set up loop device: No such file or directory