古文書が出てきたので、メモしておく。
日付が2004年だった。そのあたりでは、16MBくらいのCFが一般的だったのかなぁ。
いまだと64MBとか128MBのCFを探すほうが大変だったりするけど。
% cd 適当なディレクトリ % /bin/dd if=/dev/zero of=image/my_userland.img bs=16777216 count=1 % /sbin/mke2fs image/my_userland.img
% su root # mkdir /mnt/img # /bin/mount -o loop image/my_userland.img /mnt/img # cd ユーザランド # tar cf - . | (cd /mnt/img; tar xf -) # umount /mnt/img