in reply to Virtual Disk for Perl
So you can do whatever you want with it, encrypt it, etc.system ('dd','if=/dev/zero','of=image.raw','bs=1024k',"count=$count"); system ('/sbin/mke2fs','-F','-b 2048','image.raw'); system ('mount','-text2','-oloop','image.raw',"$mntloc");
|
|---|