LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > MEPIS
User Name
Password
MEPIS This forum is for the discussion of MEPIS Linux.

Notices


Reply
  Search this Thread
Old 05-18-2007, 02:18 AM   #1
Steel_J
Member
 
Registered: Oct 2004
Location: Montreal, Canada
Distribution: Linux Mint 21.3 Cinnamon
Posts: 359
Blog Entries: 1

Rep: Reputation: 31
Ati x1950 fglrx drivers working


Finally, after many days of research on how to install Ati proprietary drivers on Mepis 6.5 with 3D and dual-monitor enabled and my Radeon x1950Pro I have come to a successful install and i will share my method below.

My system specs are below.

I read a lot of documentation and tried many guides on Ubuntu/Mepis forums with no or limited results until I found a guide on a french Ubuntu forum that guided me to success.

I had to modify the guide to my needs since it was aimed at installing on Ubunto 7.04 Feity Fawn. Since Mepis 6.5 is based in part on Ubuntu 6.06 the core parts of the guide were adequate.

If you follow every step to the letter eveything should work right away, and fast. (Make a backup of your xorg.conf before you do this !!!!) Make sure your monitor(s) is setup or detected properly in xorg.conf

So here it is customized, adapted and translated to english:

1)Go here and download latest ati drivers: http://ati.amd.com/support/drivers/l...ux-radeon.html

In our present case these are:
Quote:
ati-driver-installer-8.36.5-x86.x86_64.run
2) If you tried installing previous versions of fglrx Use synaptics search function and remove everything with "fglrx" in its name before we start.

3)Open a console

su to root

cd /where/your/drivers/are/now

enter the following command followed with enter each time

Code:
apt-get update && apt-get upgrade
Code:
apt-get install module-assistant build-essential
Code:
apt-get install fakeroot dh-make debconf libstdc++5 gcc-3.3-base linux-headers-$(uname -r)
Code:
chmod +x ati-driver-installer-8.36.5-x86.x86_64.run
Code:
ln -sf bash /bin/sh
Code:
./ati-driver-installer-8.36.5-x86.x86_64.run --buildpkg Ubuntu/feisty
Code:
ln -sf /bin/bash /bin/sh
Code:
dpkg -i xorg-driver-fglrx_8.36.5-1_i386.deb
Code:
dpkg -i fglrx-kernel-source_8.36.5-1_i386.deb
Code:
dpkg -i fglrx-amdcccle_8.36.5-1_i386.deb
Code:
dpkg -i xorg-driver-fglrx-dev_8.36.5-1_i386.deb
Code:
rm /usr/src/fglrx-kernel*.deb
Code:
cd /usr/src
Code:
m-a update
Code:
m-a prepare
Code:
m-a build fglrx
Code:
m-a install fglrx
Here is a one liner you can use that does everything above in one shot:

Code:
wget https://a248.e.akamai.net/f/674/9206/0/www2.ati.com/drivers/linux/ati-driver-installer-8.36.5-x86.x86_64.run && apt-get update && apt-get upgrade &&  apt-get install module-assistant build-essential && apt-get install fakeroot dh-make debconf libstdc++5 gcc-3.3-base linux-headers-$(uname -r) && chmod +x ati-driver-installer-8.36.5-x86.x86_64.run && ln -sf bash /bin/sh && ./ati-driver-installer-8.36.5-x86.x86_64.run --buildpkg Ubuntu/feisty && ln -sf /bin/bash /bin/sh && dpkg -i xorg-driver-fglrx_8.36.5-1_i386.deb && dpkg -i fglrx-kernel-source_8.36.5-1_i386.deb && dpkg -i fglrx-amdcccle_8.36.5-1_i386.deb && dpkg -i fglrx-amdcccle_8.36.5-1_i386.deb && dpkg -i xorg-driver-fglrx-dev_8.36.5-1_i386.deb && rm /usr/src/fglrx-kernel*.deb && cd /usr/src && m-a update && m-a prepare && m-a build fglrx && m-a install fglrx && kwrite /etc/X11/xorg.conf
4)Reboot PC (Will probalby be command line logon with no GUI (X))

Login to your user and then su to root and enter:

Code:
aticonfig --initial
or in my personal case

Code:
aticonfig --dtop=horizontal --overlay-on=1 --force-monitor=crt1,crt2
I noticed on some of my tests that sometimes the xorg.conf files dissapears during this process. Seems like a bug. In such a case restore your backup and repeat the aticonfig routine.

type
Code:
reboot
5)When you are rebooted you will have a working gui but no 3D acceleration yet. So open a console and su to root

Code:
kwrite /etc/X11/xorg.conf
Add:

Code:
Section "Extensions"
  Option "Composite" "Disable"
EndSection
To the end of your xorg.conf

CTRL-ALT BACKSPACE or Reboot

Test in console as root and you should have 3D

fglrxinfo

Quote:
root@1[jeffy]# fglrxinfo
display: :0.0 screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: Radeon X1950 Series
OpenGL version string: 2.0.6458 (8.36.5)
You can also run:

Quote:
glxinfo
and
glxgears -printfps
Enjoy!!!



Troubleshooting:

If for some reason you get stuck on a command line login because the install did not work you can revert to vesa drivers like so (as root):

Code:
dpkg-reconfigure xserver-xorg
and selecting the "ati" driver, or simply restoring the previous /etc/X11/xorg.conf file, if you made a backup. (
Code:
cd /etc/X11
and
Code:
 cp xorg.bak xorg.conf
as root)

and reinstall the mesa driver:

Code:
apt-get install --reinstall libgl1-mesa

Last edited by Steel_J; 05-18-2007 at 05:25 PM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Help cant install ati-fglrx drivers adamzty Linux - Newbie 3 04-09-2007 12:04 AM
ATI fglrx drivers suddenly stop working NosLycn Debian 1 08-10-2006 07:28 PM
Slackware 10.2 and fglrx (ATI Drivers) cythrawll Slackware 7 10-18-2005 05:44 PM
(FC3) ATI FGLRX Drivers work for months,FC3 update, stop working genixpro Linux - Hardware 2 04-23-2005 09:01 PM
ATI fglrx drivers being slow ben77 Linux - Hardware 2 10-01-2004 03:08 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > MEPIS

All times are GMT -5. The time now is 06:55 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration