This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install ia32-libs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ~/; mkdir catalyst11.9; cd catalyst11.9/ | |
wget http://www2.ati.com/drivers/linux/ati-driver-installer-11-9-x86.x86_64.run |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sh ./ati-driver-installer-11-9-x86.x86_64.run --buildpkg Ubuntu/oneiric | |
sudo dpkg -i fglrx*.deb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Section "ServerLayout" | |
Identifier "amdcccle Layout" | |
Screen 0 "aticonfig-Screen[0]-0" 0 0 | |
EndSection | |
Section "Monitor" | |
Identifier "0-DFP2" | |
Option "VendorName" "ATI Proprietary Driver" | |
Option "ModelName" "Generic Autodetecting Monitor" | |
Option "DPMS" "true" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo aticonfig --initial -f |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir /run /run/lock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mv /var/run /run | |
mv /var/lock /run/lock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rmdir /var/run /var/lock | |
ln -s /run /var/run | |
ln -s /run/lock /var/lock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var userAgent = navigator.userAgent.toLowerCase(); | |
jQuery.browser.chrome = /chrome/.test(navigator.userAgent.toLowerCase()); | |
// Is this a version of Chrome ? | |
if(jQuery.browser.chrome){ | |
userAgent = userAgent.substring(userAgent.indexOf('chrome/') +7); | |
userAgent = userAgent.substring(0,userAgent.indexOf('.')); | |
jQuery.browser.version = userAgent; | |
// If it's chrome then jQuery think it's safari so we have to tell it it isn't | |
jQuery.browser.safari = false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="top">Hello, I'm the top-gun!</div> | |
<div id="bottom">Hello, I'm the bottom end :(</div> |