LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-29-2016, 09:15 PM   #1
BarryScott
LQ Newbie
 
Registered: Jan 2016
Posts: 5

Rep: Reputation: Disabled
Install Matrox G450 Video Card in Debian Wheezy?


I recently installed a PCI Matrox G450 Video Card on a computer using an AMD64 processor running Debian Wheezy and the computer displays a black screen when a VGA monitor is plugged into the card.

Running LSPCI shows,
03:00.0 VGA compatible controller: Matrox Electronics Systems Ltd. MGA G400/G450 (rev 85)

So I'm assuming a video driver needs to be installed. Therefore I downloaded the Linux version video driver from Matrox. The file downloaded was, Matrox_driver-x86_32-4.4.0.tar.gz

Now I'm stuck. Does anyone know the remaining procedure from this point to install a Matrox G450 Video Card in Debian Wheezy?...would really appreciate any help/advice anyone can offer. Thank you

Last edited by BarryScott; 01-29-2016 at 09:25 PM. Reason: Shorten title
 
Old 01-29-2016, 09:24 PM   #2
Timothy Miller
Moderator
 
Registered: Feb 2003
Location: Arizona, USA
Distribution: Debian, EndeavourOS, OpenSUSE, KDE Neon
Posts: 4,005
Blog Entries: 26

Rep: Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521
Should be supported out of the box from what I read. Should use kernel module mga. Check if it's loaded
Code:
lsmod | grep mga
.

Do you have an xserver installed?
 
Old 01-29-2016, 09:34 PM   #3
BarryScott
LQ Newbie
 
Registered: Jan 2016
Posts: 5

Original Poster
Rep: Reputation: Disabled
I typed.... lsmod | grep mga
Then hit enter and nothing showed on the screen. Terminal just reset and was ready for the next command.

I'm not sure how to check if xserver installed? Do you know the command to check it?
 
Old 01-29-2016, 10:12 PM   #4
Timothy Miller
Moderator
 
Registered: Feb 2003
Location: Arizona, USA
Distribution: Debian, EndeavourOS, OpenSUSE, KDE Neon
Posts: 4,005
Blog Entries: 26

Rep: Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521
Are you logged in?
 
Old 01-30-2016, 09:24 AM   #5
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Hi Barry...

Welcome to the forum

It might be easier just to post the entire results of...

Code:
lsmod
Could you also post the results of this command...

Code:
lspci -nnk | grep VGA -A 12
Regards...
 
Old 01-30-2016, 02:07 PM   #6
BarryScott
LQ Newbie
 
Registered: Jan 2016
Posts: 5

Original Poster
Rep: Reputation: Disabled
Per your request listed below is the output of the command. Since My last post I've learned a few more things that may be of help in better understanding and solving the root cause of this problem.

1) Using the Matrox G450 PCI video card in an EMachines Model T6410 with an AMD64 processor running Debian Wheezy, upon startup the monitor stays black and does not ever see a signal. Unfortunately this is the computer I'd like to use the Matrox card on and thus the reason for this post. I'm wondering if the Matrox card is incompatible with the computer mother board chip set.

2) When using the same Matrox G450 PCI video card in a Dell Pentium Computer running Debian Wheezy, the card worked fine from startup. No issues.


3) Note a Nvidia PCI video Card in the EMachines computer works fine; however, it may be causing glitches. when I use the LinuxCNC program to drive my CNC Router the Linuxcnc program randomly crashes with no apparent consistency in the crash dump information provided. In reading through numerous forums on this issue there were many references to Nvidia cards causing random crashes, so that's why I decided to try using a Matrox video card as a first approach to solve this issue. Another approach maybe to use the VESA driver for the Nvidia card, but I'm not sure how to install it and "tell' the computer to use it instead of the Nvidia driver.


Any light anyone could shed on this would be really appreciated. Thank you!


barry@BarrysCnC:~$ lspci -nnk | grep VGA -A 12
01:05.0 VGA compatible controller [0300]: Advanced Micro Devices [AMD] nee ATI RS480 [Radeon Xpress 200G Series] [1002:5954]
Subsystem: Micro-Star International Co., Ltd. Device [1462:7141]
Kernel driver in use: radeon
02:00.0 PCI bridge [0604]: Hint Corp HB6 Universal PCI-PCI bridge (non-transparent mode) [3388:0021] (rev 15)
02:02.0 Ethernet controller [0200]: Atheros Communications Inc. AR5212/AR5213 Wireless Network Adapter [168c:0013] (rev 01)
Subsystem: D-Link System Inc AirPlus DWL-G520 Wireless PCI Adapter (rev. B) [1186:3a13]
Kernel driver in use: ath5k
02:03.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ [10ec:8139] (rev 10)
Subsystem: Micro-Star International Co., Ltd. Device [1462:145c]
Kernel driver in use: 8139too
02:04.0 FireWire (IEEE 1394) [0c00]: VIA Technologies, Inc. VT6306/7/8 [Fire II(M)] IEEE 1394 OHCI Controller [1106:3044] (rev 80)
Subsystem: Micro-Star International Co., Ltd. Device [1462:145d]
Kernel driver in use: firewire_ohci


03:00.0 VGA compatible controller [0300]: Matrox Electronics Systems Ltd. MGA G400/G450 [102b:0525] (rev 85)


Subsystem: IBM Device [1014:0233]
Kernel driver in use: agpgart-amd64
barry@BarrysCnC:~$

Last edited by BarryScott; 01-30-2016 at 02:09 PM. Reason: Added info.
 
Old 01-30-2016, 04:35 PM   #7
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
your last post confused me, because suddenly there's no matrox card, and you seem to be talking about a different machine?
you are the boss of your own thread, it's your job to keep it clean, easily understandable, informative.

about your original post, a few thoughts:
  • wheezy is oldstable, and more or less obsolete. i hope you know that.
  • installing new software (and that's what a driver is) requires you to first update and upgrade the system. have you done that beforehand?
  • matrox card seems to be very, very old. judging from a few other threads i've seen around, i think you could spare yourself some bother and just buy a cheap, low-end, but still much better gpu
 
Old 01-30-2016, 06:40 PM   #8
Timothy Miller
Moderator
 
Registered: Feb 2003
Location: Arizona, USA
Distribution: Debian, EndeavourOS, OpenSUSE, KDE Neon
Posts: 4,005
Blog Entries: 26

Rep: Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521
Realistically given that you're not getting 3d acceleration worth anything from the Matrox, any reason you don't just use that onboard graphics (xpress 200/rs480) that it sees instead? Obviously I can think of several reasons, but if whatever you want to do would work with it, then it would probably be far easier to get it working. I do believe that should be supported in the 3.2 kernel rather well.

Also, that MAY be why it's not liking the Matrox. Is there anything in the BIOS to turn off the embedded graphics when it detects an external card?

Last edited by Timothy Miller; 01-30-2016 at 06:42 PM.
 
Old 01-30-2016, 08:34 PM   #9
BarryScott
LQ Newbie
 
Registered: Jan 2016
Posts: 5

Original Poster
Rep: Reputation: Disabled
I appreciate your replies. To answer your questions..

1) I use Linux Wheezy because I believe newer Linux based software will not run the LinuxCNC program. I use LinuxCNC to control all my CNC Machines. Please let me know if I'm wrong about this.

2) It's reported that LinuxCNC sometimes randomly crashes using mother-board embedded graphics and Nvidia cards and that's happening to me. LinuxCNC Q&A forums recommend using a Matrox G450 graphics card to solve this problem that's why I'm trying a Matrox card.

3) I am using the latest bios update on the Emachines T6410 AMD64. The bios only allows you to select the order in which to recognize graphics cards. The bios is set to recognize and use an installed PCI Graphics card before the motherboard embedded graphics. However, bios is not recognizing the Matrox PCI card so instead uses the embedded graphics.

4) LinuxCNC is not graphics intensive so 3D is not needed. You mentioned getting a different low cost graphics card. Nvidia is not a option due to reported compatibility issues with LinuxCNC. Do you have a recommendation?

Thank you.
 
Old 01-31-2016, 07:08 AM   #10
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
do you know how to regularly update & upgrade your debian system?
are you doing it?

it just might have some bearing on the original problem.

although i still don't see how you could get any benefit from such an ancient gpu.

Quote:
Originally Posted by BarryScott View Post
4) LinuxCNC is not graphics intensive so 3D is not needed. You mentioned getting a different low cost graphics card. Nvidia is not a option due to reported compatibility issues with LinuxCNC. Do you have a recommendation?
why don't you just use onboard graphics then? no hassle, problem solved.
 
Old 01-31-2016, 09:12 AM   #11
Timothy Miller
Moderator
 
Registered: Feb 2003
Location: Arizona, USA
Distribution: Debian, EndeavourOS, OpenSUSE, KDE Neon
Posts: 4,005
Blog Entries: 26

Rep: Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521
Quote:
Originally Posted by ondoho View Post
do you know how to regularly update & upgrade your debian system?
are you doing it?

it just might have some bearing on the original problem.

although i still don't see how you could get any benefit from such an ancient gpu.


why don't you just use onboard graphics then? no hassle, problem solved.
He actually already answered that in the reply to me:

2) It's reported that LinuxCNC sometimes randomly crashes using mother-board embedded graphics and Nvidia cards and that's happening to me. LinuxCNC Q&A forums recommend using a Matrox G450 graphics card to solve this problem that's why I'm trying a Matrox card.
 
Old 01-31-2016, 09:36 AM   #12
floppy_stuttgart
Senior Member
 
Registered: Nov 2010
Location: EU mainland
Distribution: Debian like
Posts: 1,153
Blog Entries: 5

Rep: Reputation: 107Reputation: 107
The pc has 2x graphic card.
a) Can you take away the Radeon from the PC? (probably not? onboard.. ?)
or
b) blacklist the radeon driver? https://wiki.debian.org/KernelModuleBlacklisting
 
Old 01-31-2016, 05:17 PM   #13
BarryScott
LQ Newbie
 
Registered: Jan 2016
Posts: 5

Original Poster
Rep: Reputation: Disabled
Debian Wheezy is up to date.

I've tried about everything this weekend and finally decided that it must be a hardware compatibility issue. I read today in a forum in a brief note that the Matrox G450 would not work with an AMD64 processor. I'm thinking that that's probably factual given everything I've tried to make it work. So I'll either move on to another computer or try the VESA drivers with a NVidia Card on the AMD64 machine. If I run into issues doing this I'll post another thread.

Again thanks to all for helping and doing your best! This one was a tough one to solve.
 
  


Reply



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
Matrox G450 and DRI Error Ogi Linux - Hardware 8 12-07-2006 09:58 AM
matrox G450 won't configure talmage Linux - Hardware 0 05-09-2006 09:59 AM
Installation of Matrox G450 REMPLUS Linux - Hardware 0 11-11-2005 10:10 AM
Matrox G450 for Linux hanserr Linux - Hardware 1 12-30-2003 11:13 AM
Matrox G450 help Neomaster Linux - Hardware 2 07-26-2003 08:15 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 08:11 AM.

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