Cabrillo College

Software used

You may use Operating System CD's or ISO image files of the Operating System CD's. When you configure the Virtual Machine's CD you can specify the physical CD drive of the host or browse to an ISO image of the CD on the host.

Step 1 - Make a new Virtual Machine

Create new VM

Run VMware Server

Step 2 - Install Windows XP Pro SP2

Select Windows CD (physical or ISO)

Install Windows on VM

Step 3 - Change CDs

Select Ubuntu CD (physical or ISO)

Insert Ubuntu CD

Step 3 - Change the VM boot sequence order

Read the next steps before doing them!

VM BIOS bootup

Don't dawdle -- press F2 fast before this screen disapears to change BIOS settings

VM BIOS Boot Sequence

Change the boot sequence so the CD-ROM drive is checked before the hard drive for a bootable Operating System. It should looked like the screen shot above after you move the CD-ROM up.

Step 4 - Install Ubuntu

Do default Ubuntu installation

Choose language

Press Enter

Decide on running from CD or installing

Choose Install Ubuntu, press Enter

Introduction

Click on Forward

Time zone

Use Los Angeles for Pacific Time Zone, click on Forward

Keyboard

Click on Forward

Partition resizing

Resize the Windows and Linux partitions

User configuration

Enter user information and password, click on Forward

Migrate users from Windows

Click on Forward

Summary

Click on Install to begin copying files

Copying files

Get coffee

Finished

Ubuntu has finished copying all the files

>

Step 5 - Remove CD and startup Ubuntu

Disconnect CD

When Ubuntu prompts to remove the CD then right click on the little CD icon and select disconnect

GRUB menu

Congratulations - Ubuntu is installed and ready to go

Dual-boot Configuration Summary

root@billnus:/boot/grub# fdisk -l

Disk /dev/sda: 10.7 GB, 10737418240 bytes
255 heads, 63 sectors/track, 1305 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x9f299f29

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1         651     5229126    7  HPFS/NTFS
/dev/sda2             652        1305     5253255    5  Extended
/dev/sda5             652        1270     4972086   83  Linux
/dev/sda6            1271        1305      281106   82  Linux swap / Solaris
root@billnus:/boot/grub#

root@billnus:/boot/grub# mount
/dev/sda5 on / type ext3 (rw,relatime,errors=remount-ro)
proc on /proc type proc (rw,noexec,nosuid,nodev)
/sys on /sys type sysfs (rw,noexec,nosuid,nodev)
varrun on /var/run type tmpfs (rw,noexec,nosuid,nodev,mode=0755)
varlock on /var/lock type tmpfs (rw,noexec,nosuid,nodev,mode=1777)
udev on /dev type tmpfs (rw,mode=0755)
devshm on /dev/shm type tmpfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
lrm on /lib/modules/2.6.24-16-generic/volatile type tmpfs (rw)
securityfs on /sys/kernel/security type securityfs (rw)
gvfs-fuse-daemon on /home/rsimms/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,user=rsimms)
root@billnus:/boot/grub#

root@billnus:/boot/grub# cat menu.lst
# menu.lst - See: grub(8), info grub, update-grub(8)
#            grub-install(8), grub-floppy(8),
#            grub-md5-crypt, /usr/share/doc/grub
#            and /usr/share/doc/grub-doc/.
   .
   .
   .

< snipped >

   .
   .
   .   


## ## End Default Options ##

title           Ubuntu 8.04, kernel 2.6.24-16-generic
root            (hd0,4)
kernel          /boot/vmlinuz-2.6.24-16-generic root=UUID=ba87a0c7-8129-41ac-abc6-ceedfeb7ce2f ro quiet splash
initrd          /boot/initrd.img-2.6.24-16-generic
quiet

title           Ubuntu 8.04, kernel 2.6.24-16-generic (recovery mode)
root            (hd0,4)
kernel          /boot/vmlinuz-2.6.24-16-generic root=UUID=ba87a0c7-8129-41ac-abc6-ceedfeb7ce2f ro single
initrd          /boot/initrd.img-2.6.24-16-generic

title           Ubuntu 8.04, memtest86+
root            (hd0,4)
kernel          /boot/memtest86+.bin
quiet

### END DEBIAN AUTOMAGIC KERNELS LIST

# This is a divider, added to separate the menu items below from the Debian
# ones.
title           Other operating systems:
root


# This entry automatically added by the Debian installer for a non-linux OS
# on /dev/sda1
title           Microsoft Windows XP Professional
root            (hd0,0)
savedefault
makeactive
chainloader     +1

root@billnus:/boot/grub#