使用newfs文件系统创建可安装的映像

时间:2012-02-06 07:36:54

标签: linux image filesystems mount mount-point

我想使用newfs文件系统创建一个可挂载的映像,该系统可以使用newfs文件系统挂载。我怎么能这样做?

我尝试使用命令

创建图像
dd if=localfiles.tar.gz of=/root/upload/test.img

但我无法创建newfs文件系统。我怎么能这样做?

1 个答案:

答案 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