Depends on what games you're trying to play;if you trying to play the Sports games like Tuxracer,the usual culprit is 3D isnt enabled.
Here's a quick guide to text editing using vi:[list=1][*]Open a terminal(the screen/shell icon in the bottom panel)[*]Type
su - and then the root password[*]Now type
vi /etc/inittab[*]Once the file appears(it looks like the code below) hit the
i key to enter "insert" mode.[*]Using the arrow keys move up or down to the line that says
id:3:initdefault:[*]Move the curser over the
3 and hit the "del" key and put a
5 in it's place.[*] hit the
esc key to return to "command" mode.[/list=1]Now type
ZZ(they're capital z's) and that should do it.You should be back to the #prompt now.Type
exit and close the terminal,reboot to see if it works.
Code:
inittab This file describes how the INIT process should set up
# the system in a certain run-level.
#
# Author: Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
# Modified for RHS Linux by Marc Ewing and Donnie Barnes
#
# Default runlevel. The runlevels used by Mandrake Linux are:
# 0 - halt (Do NOT set initdefault to this)
# 1 - Single user mode
# 2 - Multiuser, without NFS (The same as 3, if you do not have networking)
# 3 - Full multiuser mode
# 4 - unused
# 5 - X11
# 6 - reboot (Do NOT set initdefault to this)
#
id:5:initdefault:
This last line is the one you need to change.
Good luck
lynch