我正在跟着一个教程学习如何使用 Linux。我用命令创建了一个磁盘文件fallocate -l 1G disk1.img
,现在我想添加一个循环设备。但是当我losetup -f --show disk1.img
按照教程中描述的方式运行时,它出现错误:
losetup: cannot find an unused loop device
阅读 losetup 的手册页,其中指出-f --show
应该:
Find the first unused loop device. If a file argument is present, use this device. Otherwise, print its name
这是否意味着我无法再添加循环设备?