Using Linux OS install Ubuntu 7.10 for you system
Partitioning Use fdisk to partition your hard disk. # fdisk /dev/sda Remember to set the root partition bootable! For the rest of this instruction we assume the following partition layout. /dev/sda1 (83 Linux) - for /, /dev/sda2 (82 Linux swap) - as swap Creating File Systems Below is how we get our / populated with ext3. # mkfs.ext3 /dev/sda1 And the same for our swap partition. # mkswap /dev/sda2 Getting Debootstrap Debootstrap is a collection of scripts that we will use in the next step to set up a base system. Make sure that binutils is installed on your system. # wget debootstrap_1.0.7~gutsy1_all.deb # dpkg -i debootstrap_1.0.7~gutsy1_all.deb Please change list os frame ARCH for debootstrap command: alpha, arm, hppa, i386, ia64, m68k, mips, mipsel, powerpc, s390,or sparc。 # debootstrap --arch i386 gutsy /ubuntu http://tw.archive.ubuntulinux.org/ubuntu Installing the Base System # cd /ubuntu # cp -r * /media/disk/ Installing GRUB for your Hard Disk MBR The ...