Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux? |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
12-20-2005, 06:01 PM
|
#1
|
Member
Registered: Aug 2003
Location: Somewhere south of sanity...
Distribution: Mandrake 9.1
Posts: 550
Rep:
|
ATI drivers for old ATI Rage LT Pro card?
Ive got an old Compaq desktop that Im trying to set up to be a network share and server. Ive got Ubuntu on here. Im trying to find the driver for the video card to get rid of the Mesa acceleration because it sucks. So, Ive tried all of the drivers from the ATI site, but none of them work, they all say illegal instruction after inputing the mouse information, which probably means they arent the right driver. A little research pointed me towards the DRI project here:
http://dri.freedesktop.org/wiki/Building
So, Ive decided that I need to compile X.org and a bunch of other of stuff. The key is, whenever I enter the CVS commands in the terminal, it tells me that the command for cvs isnt found? A little help please?
|
|
|
12-21-2005, 01:35 PM
|
#2
|
Member
Registered: Sep 2004
Location: Barcelona
Distribution: Debian, FreeBSD, Gentoo
Posts: 586
Rep:
|
Quote:
Originally Posted by Kramer
Ive got an old Compaq desktop that Im trying to set up to be a network share and server. Ive got Ubuntu on here. Im trying to find the driver for the video card to get rid of the Mesa acceleration because it sucks. So, Ive tried all of the drivers from the ATI site, but none of them work, they all say illegal instruction after inputing the mouse information, which probably means they arent the right driver. A little research pointed me towards the DRI project here:
http://dri.freedesktop.org/wiki/Building
So, Ive decided that I need to compile X.org and a bunch of other of stuff. The key is, whenever I enter the CVS commands in the terminal, it tells me that the command for cvs isnt found? A little help please?
|
install cvs, altough you probably already have a version of x.org all you have to do is get the right config file set up. It should be /etc/X11/xorg.conf.
|
|
|
12-21-2005, 11:09 PM
|
#3
|
Member
Registered: Aug 2003
Location: Somewhere south of sanity...
Distribution: Mandrake 9.1
Posts: 550
Original Poster
Rep:
|
Quote:
Originally Posted by bobbens
install cvs, altough you probably already have a version of x.org all you have to do is get the right config file set up. It should be /etc/X11/xorg.conf.
|
Yep, I know that, but I dont have the ATI drivers, because I cant get any of them to install. The link I provided is talking about rebuilding X from cvs, and I can do anything with CVS from the console. I cant just change my xorg.conf if I dont have the driver for the card.
|
|
|
12-22-2005, 12:22 AM
|
#4
|
Member
Registered: Sep 2004
Location: Barcelona
Distribution: Debian, FreeBSD, Gentoo
Posts: 586
Rep:
|
Quote:
Originally Posted by Kramer
Yep, I know that, but I dont have the ATI drivers, because I cant get any of them to install. The link I provided is talking about rebuilding X from cvs, and I can do anything with CVS from the console. I cant just change my xorg.conf if I dont have the driver for the card.
|
wierd, in debian you have all those dri drivers and just have to edit the xorg.conf and change it from vesa to the right module or run a little wizard that does the xorg.conf based on some parameters you input. If it says CVS command it means you must not have it installed, just install it and it should work. You could also try to find a snapshot as a tarball or gzip and use that.
|
|
|
12-22-2005, 08:46 AM
|
#5
|
Member
Registered: Aug 2003
Location: Somewhere south of sanity...
Distribution: Mandrake 9.1
Posts: 550
Original Poster
Rep:
|
Quote:
Originally Posted by bobbens
wierd, in debian you have all those dri drivers and just have to edit the xorg.conf and change it from vesa to the right module or run a little wizard that does the xorg.conf based on some parameters you input. If it says CVS command it means you must not have it installed, just install it and it should work. You could also try to find a snapshot as a tarball or gzip and use that.
|
Ok, Im new to this Ubuntu thing (or Debian, because thats what its based on), so how do I go about finding which driver it uses, or running the wizard? How do I install the CVS too? Im fairly used to Mandrake, so this is definitely a learning experience. I feel like a n00b again
|
|
|
12-22-2005, 09:21 AM
|
#6
|
Member
Registered: Sep 2004
Location: Barcelona
Distribution: Debian, FreeBSD, Gentoo
Posts: 586
Rep:
|
Quote:
Originally Posted by Kramer
Ok, Im new to this Ubuntu thing (or Debian, because thats what its based on), so how do I go about finding which driver it uses, or running the wizard? How do I install the CVS too? Im fairly used to Mandrake, so this is definitely a learning experience. I feel like a n00b again
|
Code:
apt-get install cvs
should install cvs for you. You might want to read up on some apt guides and such to familiarize yourself with apt, since debian and most debian based distributions abuse it alot. THe best way to get X working is to run
Code:
dpkg-reconfigure xserver-xorg
(or xserver-xfree86 depending on what ubuntu provides). Altough you can manually edit it with any editor you enjoy at /etc/X11/xorg.conf or /etc/X11/XF86Config-4 again depending on version.
|
|
|
12-22-2005, 09:42 AM
|
#7
|
Member
Registered: Aug 2003
Location: Somewhere south of sanity...
Distribution: Mandrake 9.1
Posts: 550
Original Poster
Rep:
|
Ok, Ill start googling some guides on apt. X is already running, I just want to get the acceleration enabled so everything isnt so choppy. Do I still need to do the x-server-xorg reconfigure? Im not really sure what driver this uses, but from what Ive read, its the Mach64 driver. This card is ancient.
|
|
|
12-22-2005, 09:55 AM
|
#8
|
Member
Registered: Sep 2004
Location: Barcelona
Distribution: Debian, FreeBSD, Gentoo
Posts: 586
Rep:
|
Quote:
Originally Posted by Kramer
Ok, Ill start googling some guides on apt. X is already running, I just want to get the acceleration enabled so everything isnt so choppy. Do I still need to do the x-server-xorg reconfigure? Im not really sure what driver this uses, but from what Ive read, its the Mach64 driver. This card is ancient.
|
i havent worked much in x, but try googling www.google.com/linux for some string like "debian xserver config xorg.conf" alot of guides.
|
|
|
All times are GMT -5. The time now is 03:43 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|