<DIV>open a terminal login as root and do as follow:<BR>1.mkdir -p /mnt/iso</DIV>
<DIV>/*<BR>mkdir a directory /mnt/iso<BR>*/</DIV>
<DIV>2.cp xxx.iso /</DIV>
<DIV>/*<BR>copy the iso image to / ,xxx.iso means the path of the iso image<BR>*/</DIV>
<DIV>3.cd / && mount -o loop -t iso9660 xxx.iso /mnt/iso </DIV>
<DIV>/*<BR>cd / ,and the mount the iso image to /mnt/iso ,xxx.iso means the path of ubuntu's iso image<BR>*/</DIV>
<DIV>3.cd /mnt/iso/casper && cp vmlinuz initrd.lz /</DIV>
<DIV>/*<BR>cd /mnt/iso/casper and copy the linux kernel and initd file to /<BR>*/</DIV>
<DIV>4.modify the grub configure file ,gedit /boot/grub/menu.lst or vi /boot/grub/menu.lst<BR>append the follow text to end of the file</DIV>
<DIV>title install Ubuntu<BR>find --set-root /xxx.iso<BR>kernel vmlinuz boot=casper iso-scan/filename=/xxx.iso ro quiet splash<BR>initrd initrd.lz<BR></DIV>
<DIV>Hope it can help you !</DIV>