Install!
Assuming you booted into the live desktop properly, starting the install process is as simple as double-clicking the Install icon on the desktop. The install program will prompt you for your language, location, and keyboard layout before you get to the hard-disk partitioning section.
Choose the manual option when it comes time to partition your hard drive.
Partitioning your hard disk is the only step of the install process that has the potential to do serious harm. If you install to the wrong partition, you could accidentally nuke your Windows drive and all of its contents (that’s why we recommend running a full backup before you start the install process). The safest way to install is to add a new hard drive or just create free space on the disk—however, that’s not always an option. If you want to resize your existing partition, select the Manual option. Select the partition you want to resize and click Edit Partition. Then input the new size for the partition in megabytes (leave the other settings alone) and press OK. Next, you’ll need to create a swap partition. Highlight the newly created free space, click New Partition, set the size to 2,000MB, and choose Swap. Click your free space once again, then New Partition, and change the mount point to /. Leave the other settings alone and press Next.
If you choose to resize an existing NTFS partition, make sure you give your Linux install enough room. We used 120GB.
Now you’ll be prompted to import data from your Windows partition. The Ubuntu installer will pull your Gaim settings, Firefox bookmarks, music, photos, and documents over from your Windows install if you select these options. I had mixed results with this tool in the early build of Feisty—it crashed the installer on a few Vista machines we tested—but your mileage may vary. After you import files, you’ll be prompted to create a user account. You’re almost done!
The final step is to confirm your installer’s settings and press Install to finish the process. You’ll need to wait 20–40 minutes while the install completes and then finish by rebooting your PC and selecting the Ubuntu entry from the boot manager that was installed.
Using the Alternate Installer
If your machine won’t boot from the graphical install CD, either because you have a new videocard that’s not properly supported (GeForce 8800 series or newer) or you have an older unsupported chipset (notably the i915 integrated graphics), you’ll need to use the nongraphical installer, which is called the alternate installer, for your architecture. Download the correct alternate CD for your CPU (again from Ubuntu’s download page) and follow the prompts.
Connect to the Network
Getting your machine on the network is simple with Ubuntu, whether you use a wired connection or Wi-Fi. When you first boot, the only icon in your system tray at the top of the screen should be for networking. Simply click it, enter your SSID and WPA or WEP key (if necessary), and you’ll be on the network.
Finding and Installing Software
There are two ways to install programs on your new Ubuntu machine. The simplest is to use the Add/Remove panel, which lets you see all the software available to you from Ubuntu software repositories on the Internet. Most apps include a useful description, so if you search for Photo Manager, you’re sure to find some worthy candidates.
Sometimes you’ll need to fire up the more powerful Synaptic Package Manager, which you’ll find in System > Administration. After entering your password, click the Reload button to make sure the list of available apps is up to date. Synaptic provides a powerful search and easy filters that will help you find all the details of the applications installed on your system. You can see what apps are installed and which have updates available. If you want to update a single program to the latest available version, Synaptic is the easiest way to do that—just search for the software package, right-click it, and select “Mark for upgrade.”
You’ll occasionally need to add a new repository to your Linux install. A repository is just a server that contains software that’s configured and ready to run on your machine. If you want to install apps that aren’t included by default with Ubuntu, you’ll need to enable other respositories. To add a respository, you’ll need its apt line, which gives the software manager all the info it needs to access the repository (we’ll include some throughout this article). Open Synaptic and click Settings > Repositories. Go to the Third-Party tab and click Add; then type the apt line, exactly as it appears, in the window. Click Add Source, then click Close.
3D-Accelerated Videocard Drivers
There’s a lot of controversy surrounding the use of closed-source drivers for graphics hardware, but they’re the only option for 3D acceleration in Linux right now. The procedure for Nvidia and ATI hardware is a little different.
Install Nvidia GPU Drivers
Installing Nvidia’s closed-source 3D-accelerated drivers is easy with Feisty. Go to System > Administration > Synaptic Package Manager and search for the nvidia-glx package. Right-click the selection and select “Mark for installation.” You’ll be prompted with a list of dependencies, which you’ll need to approve for the application to work. Click Apply to download and install the app. Then open a new terminal (Applications > Accessories > Terminal) and run this command: sudo nvidia-xconfig –add-argb-glx-visuals; follow the prompts and reboot.
Install ATI GPU Drivers
Installing ATI drivers is a little more complex. First, you’ll need to disable the Composite option in your xorg.conf. Open a terminal and type sudo gedit /etc/X11/xorg.conf. In the gedit window, scroll to the section labeled Extensions and change the Option “Composite” line from “Enabled” to “Disabled”. Then in your already opened terminal window, type the following six commands:
sudo apt-get update
sudo apt-get install linux-restricted-modules-$(uname –r)
sudo apt-get install xorg-driver-fglrx
sudo depmod –a
sudo aticonfig –initial
sudo aticonfig –overlay-type=Xv
You’ll need to reboot your system to enable the driver.