Difference between revisions of "Installing Ubuntu on a ThinkPad T21"

From ThinkWiki
Jump to: navigation, search
Line 1: Line 1:
'''Ubuntu 6.06 Desktop'''
+
'''Ubuntu 6.10 Desktop'''
  
The Ubuntu 6.06 Desktop CD is both a Live CD and a installation CD.  You can boot directly from the CD and it will run Ubuntu in live mode in X Windows so you can play with it.  Your hard drive will not be changed at all in this mode.  You can then choose to install it to your hard dirve by clicking the install icon on your desktop. After going through 5-6 screens and 15 minutes later, you are done.
+
To install, we have to use the "alternate install" CD because X freezes on boot.
 +
Note: Safe boot won't work.
  
Well, things are always more difficult than I thought.  My Thinkpad froze a few times during installation, when it tries to boot into X windows. Later I found out that Ubuntu 6.06 Desktop has trouble with the S3 Savage video hardware on my thinkpad. The only solution at the install stage is to keep rebooting from the CD. I tried to boot 5-6 times, and finally got though.
+
Once it is installed and reboots,
 +
press ESC to get to the grub menu,
 +
'e' to edit the menu entry,
 +
then DOWN to get to the "kernel ..." line.
 +
Press 'e' to edit the kernel boot entry,
 +
then type "init=/bin/sh", ENTER.
 +
Press 'b' to boot the modified entry.
 +
This should get you in single-user mode.
  
I did the following to get things working.
+
Type  (without the # signs)
 +
        # mount -o remount,rw /
 +
        # cd /etc/init.d
 +
        # mv gdm gdm.old
 +
        # mv x11-common x11-common.old
  
1) Make sure that the ethernet port on your Thinkpad T21 is connected to the internet. My Thinkpad froze again halfway through copying files to the hard drive.  I guess it was trying to find some files on the internet, so I plugged in the ethernet cable and reinstalled the OS.  My guess was right, and the second installation went through smoothly.
+
To prevent X from booting the next time around.
 +
Press CTRL-ALT-DEL to reboot the computer.
  
{{NOTE|With Ubuntu 6.10 (Edgy Eft) I only had to set "DefaultDepth 24" in xorg.conf as stated below. I did not need any custom kernel boot options nor did I need the BusType+DmaMode settings in xorg.conf}}
+
Let Ubuntu boot normally.
 +
Don't edit the entry.
  
After installation. Ubuntu will often freeze when it tries to boot into X windows.  My Thinkpad T21 kept getting stuck on a blank screen with "_" on the upper left corner. Here is a solution that worked for me:
+
You should get a login prompt in a text-terminal.
 +
Login with your username and password, then type (don't type the $ sign)
 +
        $ sudo vi /etc/X11/xorg.conf
  
1)  Choose Safe Boot instead of Normal Boot.  It is the second line on the boot menu.
+
Once in vi, type in order
  
2)  Click Applications > Accessories > Terminal
+
        /DefaultDepth
 +
        ENTER
 +
        :s/16/24
 +
        ENTER
 +
        ESC
 +
        ZZ
  
3)  Type:  Sudo -H -s      (This command gives you power to modify the xorg.conf file later.)
+
Once this is done, try starting X manually
  
4)  Type:  gedit /etc/X11/xorg.conf  (Make sure that the "X" in "X11" is capital X, and the "11" is number "eleven" not lowercase "LL".)
+
        $ X
  
5)  Add the following two lines into the "Device" section of your xorg.conf.
+
Which should get you a X screen.
 +
No window manager will be running,
 +
so you can't do much but exit by pressing CTRL-ALT-BACKSPACE.
  
Option "BusType" "PCI"
+
Once X is known to work,
Option "DmaMode" "None"
+
you can enable gdm and X again by undoing to first steps:
  
6)  Save the file. Done!  Your Thinkpad won't freeze anymore when booting into X Windows.
+
        $ cd /etc/init.d
 +
        $ sudo mv gdm.old gdm
 +
        $ sudo mv x11-common.old x11-common
  
The X tip also applies to the {{T20}}, and probably the {{T22}} and {{T23}} as well.
+
Then reboot the computer
  
paulistano says:
+
        $ sudo reboot
  
I had a black screen problem on starting ubuntu and resolved it with changing
+
You should then be greeted by the usual gdm login prompt.
  
"DefaultDepth 16" to "DefaultDepth 24" in the xorg.conf
 
  
 
Crapulon says:
 
Crapulon says:

Revision as of 08:42, 18 January 2007

Ubuntu 6.10 Desktop

To install, we have to use the "alternate install" CD because X freezes on boot. Note: Safe boot won't work.

Once it is installed and reboots, press ESC to get to the grub menu, 'e' to edit the menu entry, then DOWN to get to the "kernel ..." line. Press 'e' to edit the kernel boot entry, then type "init=/bin/sh", ENTER. Press 'b' to boot the modified entry. This should get you in single-user mode.

Type (without the # signs)

       # mount -o remount,rw /
       # cd /etc/init.d
       # mv gdm gdm.old
       # mv x11-common x11-common.old

To prevent X from booting the next time around. Press CTRL-ALT-DEL to reboot the computer.

Let Ubuntu boot normally. Don't edit the entry.

You should get a login prompt in a text-terminal. Login with your username and password, then type (don't type the $ sign)

       $ sudo vi /etc/X11/xorg.conf

Once in vi, type in order

       /DefaultDepth
       ENTER
       :s/16/24
       ENTER
       ESC
       ZZ

Once this is done, try starting X manually

       $ X

Which should get you a X screen. No window manager will be running, so you can't do much but exit by pressing CTRL-ALT-BACKSPACE.

Once X is known to work, you can enable gdm and X again by undoing to first steps:

       $ cd /etc/init.d
       $ sudo mv gdm.old gdm
       $ sudo mv x11-common.old x11-common

Then reboot the computer

       $ sudo reboot

You should then be greeted by the usual gdm login prompt.


Crapulon says:

I also found it is a good idea to have "acpi=off apm=on" as GRUB kernel options. Without this Ubuntu could not recognise the Ethernet port or internal modem. Edit the GRUB menu.lst file so that update-grub automagically adds these options. To do this:

1) Type: sudo vim /boot/grub/menu.lst

2) Find the section titled ## Start Default Options ##, then add the two new options to the line that begins with "# kopt=" eg. in my menu.lst file the new line (line 66) reads:

   # kopt=root/dev/hda1 ro acpi=off apm=on

3) Write the changes and exit vim.

4) Now use update-grub to rewrite the boot options

   Type: sudo update-grub

Reboot, and check that all is well.