我想使用newfs文件系统创建一个可挂载的映像,该系统可以使用newfs文件系统挂载。我怎么能这样做?
我尝试使用命令
创建图像dd if=localfiles.tar.gz of=/root/upload/test.img
但我无法创建newfs文件系统。我怎么能这样做?
答案 0 :(得分:2)
有些事情:
$ dd if=/dev/zero bs=8M count=<depends on the size of the fs you need> of=/root/upload/test.img
$ mkfs.newfs /root/upload/test.img
# mount -o loop /root/upload/test.img /mnt
$ cd /mnt
$ tar xzf /path/to/localfiles.tar.gz
$ cd
# umount /mnt