-------------------------------- Compile TVMM (Platform: Linux/AMD64) -------------------------------- > cd tvmm/ > make -------------------------------- Install SimNow -------------------------------- -------------------------------- Create a disk image -------------------------------- [1] Create a blank disk image > disktool [2] Create a partition table > fdisk min.hdd > x > h > 16 > s > 63 > c > 1024 > r > n > p > 1 > default > default > a > 1 > w [3] Calculate a offset > fdisk -l -u min.hdd [4] Setup the loopback device (with root privilege) > losetup -o `expr 63 \* 512` /dev/loop3 min.hdd [5] Format the disk (with root privilege) > mke2fs -j /dev/loop3 [6] Mount the disk (with root privilege) > mount /dev/loop3 /mnt [7] Install TVMM (with root privilege) > cp ~/tvmm/kernel /mnt/boot/ [8] Unmount and delete loopback device (with root privilege) > umont /mnt > losetup -d /dev/loop3 [9] Install a bootloader > grub --no-floppy > device (hd0) min.hdd > geometry (hd0) 1024 16 63 > root (hd0,0) > setup (hd0) [10] Edit GRUB menu.lst