Saliya's Blogs

Mostly technical stuff with some interesting moments of life

No comments
Kandy Trip

I was searching for this photo yesterday because this was the best trip that I went with my good old buddies. This was right after our A/L exams in 2003.

From left to right:
me (Saliya), Heshan, Chathura, Sanjaya, Samitha

No comments :

Post a Comment

Installing ATI X1300 Raedon Mobility Display Driver in Ubuntu Edgy(6.10)

4 comments
I was able to configure my graphics card (ATI X1300 Raedon Mobility) on my Dell Inspiron E1505 laptop from this nice link. However, I was bugged with the error "Xlib: extension "XFree86-DRI" missing on display ":0.0".". Then I found out that deactivating the composite extension in /etc/X11/xorg.conf would do the job.

Here's what I did from the beginning:
sudo apt-get update
sudo apt-get install xorg-driver-fglrx
sudo apt-get install linux-restricted-modules-2.6.17-10-generic
sudo depmod -a
sudo aticonfig --initial
sudo aticonfig --overlay-type=Xv

Now edit the /etc/X11/xorg.conf to include following three lines

Section "Extensions"
Option "Composite" "0"
EndSection

Note: You need to have root privileges to edit this file. So use the command sudo vim /etc/X11/xorg.conf

Then add the following line to /etc/modules

fglrx

Note: You need to have root privileges to edit this file. So use the command sudo vim /etc/modules

Finally press ALT+CTRL+Backspace to restart XServer

Type fglrxinfo in a terminal to verify your installation. You should see something like this

display: :0.0 screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: ATI Mobility Radeon X1300 Generic
OpenGL version string: 2.0.6011 (8.28.8)

Now it's DONE :)






4 comments :

Post a Comment