0

newfsファイルシステムでマウントできるマウント可能なイメージをnewfsファイルシステムで作成したいです。どうやってやるの?

コマンドでイメージを作成しようとしました

dd if=localfiles.tar.gz of=/root/upload/test.img

しかし、newfs ファイル システムを作成できませんでした。どうやってやるの?

4

1 に答える 1

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
于 2012-02-06T08:06:22.803 に答える