<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Asfik</id>
	<title>ThinkWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Asfik"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Asfik"/>
	<updated>2026-04-15T20:27:08Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_on_a_ThinkPad_T21&amp;diff=35218</id>
		<title>Installing Ubuntu on a ThinkPad T21</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_on_a_ThinkPad_T21&amp;diff=35218"/>
		<updated>2007-12-18T00:19:31Z</updated>

		<summary type="html">&lt;p&gt;Asfik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Ubuntu 7.10 Gutsy Gibbon ==&lt;br /&gt;
&lt;br /&gt;
The upgrade from {{Ubuntu 7.04}} to {{Ubuntu 7.10}} also goes smoothly. &lt;br /&gt;
&lt;br /&gt;
== Ubuntu 7.04 Feisty Fawn ==&lt;br /&gt;
&lt;br /&gt;
The upgrade from {{Ubuntu 6.10}} to {{Ubuntu 7.04}} goes smoothly. &lt;br /&gt;
&lt;br /&gt;
You may need the [[:Installing Ubuntu on a ThinkPad T20#Fixing Sound-After-Suspend|Sound-After-Suspend]] fix that the {{T20}} also uses. (please first look at [[:Talk:Installing_Ubuntu_on_a_ThinkPad_T21|discussion]] for hints about this point)&lt;br /&gt;
&lt;br /&gt;
== Ubuntu 6.10 Desktop ==&lt;br /&gt;
&lt;br /&gt;
To install {{Ubuntu 6.10}}, we have to use the &amp;quot;alternate install&amp;quot; CD because X freezes on boot.&lt;br /&gt;
Note: Safe boot won't work.&lt;br /&gt;
&lt;br /&gt;
Once it is installed and reboots,&lt;br /&gt;
press ESC to get to the grub menu,&lt;br /&gt;
'e' to edit the menu entry,&lt;br /&gt;
then DOWN to get to the &amp;quot;kernel ...&amp;quot; line.&lt;br /&gt;
Press 'e' to edit the kernel boot entry,&lt;br /&gt;
then type &amp;quot;init=/bin/sh&amp;quot;, ENTER.&lt;br /&gt;
Press 'b' to boot the modified entry.&lt;br /&gt;
This should get you in single-user mode.&lt;br /&gt;
&lt;br /&gt;
Type  (without the # signs)&lt;br /&gt;
        # mount -o remount,rw /&lt;br /&gt;
        # cd /etc/init.d&lt;br /&gt;
        # mv gdm gdm.old&lt;br /&gt;
        # mv x11-common x11-common.old&lt;br /&gt;
&lt;br /&gt;
To prevent X from booting the next time around.&lt;br /&gt;
Press CTRL-ALT-DEL to reboot the computer.&lt;br /&gt;
&lt;br /&gt;
Let Ubuntu boot normally.&lt;br /&gt;
Don't edit the entry.&lt;br /&gt;
&lt;br /&gt;
You should get a login prompt in a text-terminal.&lt;br /&gt;
Login with your username and password, then type (don't type the $ sign)&lt;br /&gt;
        $ sudo vi /etc/X11/xorg.conf&lt;br /&gt;
&lt;br /&gt;
Once in vi, type in order&lt;br /&gt;
&lt;br /&gt;
        /DefaultDepth&lt;br /&gt;
        ENTER&lt;br /&gt;
        :s/16/24&lt;br /&gt;
        ENTER&lt;br /&gt;
        ESC&lt;br /&gt;
        ZZ&lt;br /&gt;
&lt;br /&gt;
Once this is done, try starting X manually&lt;br /&gt;
&lt;br /&gt;
        $ X&lt;br /&gt;
&lt;br /&gt;
Which should get you a X screen.&lt;br /&gt;
No window manager will be running,&lt;br /&gt;
so you can't do much but exit by pressing CTRL-ALT-BACKSPACE.&lt;br /&gt;
&lt;br /&gt;
Once X is known to work,&lt;br /&gt;
you can enable gdm and X again by undoing to first steps:&lt;br /&gt;
&lt;br /&gt;
        $ cd /etc/init.d&lt;br /&gt;
        $ sudo mv gdm.old gdm&lt;br /&gt;
        $ sudo mv x11-common.old x11-common&lt;br /&gt;
&lt;br /&gt;
Then reboot the computer&lt;br /&gt;
&lt;br /&gt;
        $ sudo reboot&lt;br /&gt;
&lt;br /&gt;
You should then be greeted by the usual gdm login prompt.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Crapulon says:&lt;br /&gt;
&lt;br /&gt;
I also found it is a good idea to have &amp;quot;acpi=off apm=on&amp;quot; as GRUB kernel options.&lt;br /&gt;
Without this Ubuntu could not recognise the Ethernet port or internal modem.&lt;br /&gt;
Edit the GRUB menu.lst file so that update-grub automagically adds these options.&lt;br /&gt;
To do this:&lt;br /&gt;
&lt;br /&gt;
1)  Type: sudo vim /boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
2)  Find the section titled ## Start Default Options ##, then add the two new options to the line that begins with &amp;quot;# kopt=&amp;quot; eg. in my menu.lst file the new line (line 66) reads:&lt;br /&gt;
&lt;br /&gt;
    # kopt=root/dev/hda1 ro acpi=off apm=on&lt;br /&gt;
&lt;br /&gt;
3)  Write the changes and exit vim.&lt;br /&gt;
&lt;br /&gt;
4)  Once the file has been re-saved, you can re-install the bootloader. The command for that is:&lt;br /&gt;
&lt;br /&gt;
 sudo grub-install /dev/hda&lt;br /&gt;
&lt;br /&gt;
'''NOTE''': This assumes your hard drive is at /dev/hda. Use &amp;quot;df&amp;quot; to see your hard drive names if you are not sure. &lt;br /&gt;
This operation can  potentially make your computer unbootable if there are mistakes, so be careful! (Of course, even if the hard drive became unbootable, you could most likely boot off a CD and fix it. )&lt;br /&gt;
&lt;br /&gt;
Reboot, and check that all is well.&lt;/div&gt;</summary>
		<author><name>Asfik</name></author>
		
	</entry>
</feed>