UPDATE: xorg-edgers is also applicable for those with AMD and nVidia graphics. intel-sna, of course, isn't.
UPDATE 2: SNA is enabled by default now, so the SNA step below can be omitted.
Linux graphics are in constant flux. Two package archives in Launchpad contain updated versions of the X.Org stack and popular graphics drivers. These have been known to improve graphics performance and also provide for proper operation of effects in KWin.
It's a fairly easy process to try this yourself. And with the proper precautions, you can uninstall these packages and return to your original X.Org and graphics drivers if these updates should ever cause problems. Be sure to follow all of the steps below. You will be working at a command line, so open a Konsole window and let's get started.
First, install the package ppa-purge:
Read the PPA description which contains relevant, current, important notices on using the PPA at xorg crack pushers > xorg-edgers fresh X crack
Next, add the xorg-edgers repository:
If you have Intel graphics, I'd recommend trying the Sandy Bridge New Acceleration driver, which is in the intel-sna repository: {EDIT: skip this if you're installing a driver dated on or after 29 June 2012, as since that date SNA is enabled by default.}
Then, update and upgrade:
This will bring in newer versions of X Server, Mesa, and ATI/nVidia/Intel drivers. These have greatly improved effects for me, and I've encountered no problems.
But if they don't work for you, you can easily return to your prior state:
UPDATE 2: SNA is enabled by default now, so the SNA step below can be omitted.
Linux graphics are in constant flux. Two package archives in Launchpad contain updated versions of the X.Org stack and popular graphics drivers. These have been known to improve graphics performance and also provide for proper operation of effects in KWin.
It's a fairly easy process to try this yourself. And with the proper precautions, you can uninstall these packages and return to your original X.Org and graphics drivers if these updates should ever cause problems. Be sure to follow all of the steps below. You will be working at a command line, so open a Konsole window and let's get started.
First, install the package ppa-purge:
Code:
sudo apt-get install ppa-purge
Next, add the xorg-edgers repository:
Code:
sudo add-apt-repository ppa:xorg-edgers/ppa
Code:
sudo add-apt-repository ppa:sarvatt/intel-sna
Code:
sudo apt-get update && sudo apt-get dist-upgrade
But if they don't work for you, you can easily return to your prior state:
Code:
sudo ppa-purge ppa:sarvatt/intel-sna sudo ppa-purge ppa:xorg-edgers/ppa sudo apt-get update && sudo apt-get dist-upgrade
Comment