Introduction
This page describes how to install ISO images of Ubuntu 7.10 as Virtual Hard Drives for Microsoft Virtual PC 2007.
Ubuntu 7.10 Desktop Configuration
- Create and start a Virtual Machine
- Capture the relevant ISO Image
- Use F6 to access Other Options
- Remove "splash" and add "i8042.noloop clock=pit vga=791"
- After the system is booted, select install and configure according to your preferences
- If a message "Cannot access security updates" appears, just continue
- Once finished, restart the system (note: you may have to use a VPC Reset)
- Hit ESC at the Grub screen and select Recovery Mode
- Issue the following commands: 9.1. Configure Xserver
sudo dpkg-reconfigure xserver-xorg
- X server driver: VESA
- Video modes: 800x600 and 1024x768 only
- Color depth: 16
sudo nano /boot/grub/menu.lst
- Add: i8042.noloop clock=pit vga=791
sudo nano /etc/modules
- Add: tulip
- Add: snd-sb16
sudo nano /etc/usplash.conf
- Amend: xres=1280 to xres=1024
- Amend: yres=1024 to yres=768
sudo update-initramfs -u -k `uname -r`
- Reboot
- Sign on using your username and password
- Go to System | Preferences | Power Management and set the Display to sleep "Never"
- Go to System | Preferences | Screensaver Preferences and uncheck "Activate Screensaver when computer is idle"
- Go to System | Administration | Network and select Wired Network then click Properties
- Uncheck "Enable roaming mode"
- Select Automatic configuration (DHCP) and click OK
- Check the box next to Wired connection and close
Reboot and confirm that your network is working, you can hear sounds, and the screen is displayed correctly.
Ubuntu 7.10 Server Configuration
- Start VPC
- Capture ISO Image
- Reset if required
- Set server name
- System Clock is NOT set to UTC
- Set up user details
- Software selection: LAMP server, OpenSSH server
- Set MySQL Root Password
- Reboot
- Sign on
- Test the Installation 11.1. Linux
lsb_release -a
apache2 -v
mysql -V
php --version
- Shutdown Server
sudo shutdown -P now
Issue with Network Configuration
Sometimes after the initial reboot, especially if you are using a differencing hard drive where the base is read only, the Ethernet adapter is no longer recognised.
- Edit network details
sudo /etc/network/interfaces
- Amend eth0 to eth1
- Restart networking
sudo /etc/init.d/networking restart
This should fix it.