First we need to verify that the repository was correctly added and the packages installed. (You will want to print these instructions.)
Boot the system. On the boot menu there is a data entry bar below, type the number “3” (without quotes). The system will boot and you will be dropped to a command line login prompt. Login as root. Now do this:
zypper info Mesa
You should see this:
Repository: Xorg-11.0
Name: Mesa
Version: 7.2-1.3
Arch: x86_64
Vendor: openSUSE Build Service
Installed: Yes
Status: up-to-date
If instead you see the following, it means the newer version was not installed.
Repository: Xorg-11.0
Name: Mesa
Version: 7.2-1.3
Arch: x86_64
Vendor: openSUSE Build Service
Installed: Yes
Status: out-of-date (version 7.0.3-35.1 installed)
Also note the Repository name; it should be “Xorg-11.0”. If it is not, it means that the repository was not added.
Do the same checks with the driver package, thus:
zypper info xorg-x11-driver-video
You should see the same Xorg repository with the version 7.4-8.1 and with Status up-to-date. If it says out-of-date, it was not installed.
If you need to add the repository, do that this way:
zypper addrepo http://download.opensuse.org/repositories/X11:/XOrg/openSUSE_11.0/ xorg
Be sure not to leave off that “xorg” at the end, with a space between it and the preceding slash. You can verify the repository was added thus:
zypper repos
It should show in the list. If the packages need to be added, do this:
zypper install -f -n xorg-x11-driver-video
zypper install -f -n Mesa
Now reverify the packages are installed with the zypper info commands above. The newer versions from Xorg must be installed. Now do:
sax2 -r -m 0=intel
That is a zero, not an “o”. You may be taken into the graphics card configuration utility, but probably not yet. If so, configure, close, and reboot. Or if not, just reboot thus:
shutdown -r now
Hopefully you are now in the graphical display. If you are not, reboot into the command line again (number “3” above) and at the prompt, do:
more /etc/X11/xorg.conf
Scroll down to the device section. On the “driver” line it should show “intel”. It it does not, repeat the “sax2 -r -m 0=intel” command from above. If it does show, then just do:
sax2
And see if the configuration gui comes up.
Report back results.