Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从目录的内容创建一个图像(比如“/home/sid/folder/”)。然后我想使用 /dev/loop0,将其格式化为 ext3 格式。最后将我刚刚创建的图像与 loop0 关联并挂载它。我该怎么做呢?
创建所需大小的图像文件:
dd if=/dev/zero of=./your.img bz=1M count=<number of megabytes you want>
格式化
mkfs.ext3 ./your.img
(在运行之前重新检查该命令,阅读打印出来的内容。)
安装它:
mount -o loop ./your.img /some/mount/point
你完成了。在将映像文件复制/发送到任何地方之前,请不要忘记卸载。