"Itamar Reis Peixoto" <[EMAIL PROTECTED]> writes:

> anyone know a web-page to download UBUNTU 6.06 root filesystem 
>
> or a good how to to create image.

You can use the debootstrap method with UBUNTU.

Something like:

   mkdir myubuntu
   debootstrap breezy myubuntu
   dd if=/dev/zero of=./myubuntufs bs=100M count=4
   mkfs.ext3 ./myubuntufs
   mkdir myubuntufs_mnt
   mount -t ext3 -o loop myubuntufs myubuntufs_mnt
   rsync -a myubuntu/* myubuntufs_mnt
   umount myubuntufs_mnt 

   mv myubuntufs my_uml_filesystem


-- 
Nic Ferrier
http://www.tapsellferrier.co.uk   for all your tapsell ferrier needs

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
User-mode-linux-user mailing list
User-mode-linux-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-user

Reply via email to