LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
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


Reply
  Search this Thread
Old 07-01-2014, 03:21 PM   #1
UltrasonicMadness
Member
 
Registered: Jul 2013
Location: European Union
Distribution: Fedora 20 Xfce Spin
Posts: 43

Rep: Reputation: Disabled
Question Profound performance issues when using multiple graphics cards


My old graphics card (an NVIDIA GeForce 8500 GT) packed in a few months ago (showed multicoloured stripes on the bios screen and X refused to start) and I have since disposed of it. I am currently using a spare NVIDIA Quadro, which lspci calls this:

Code:
01:00.0 VGA compatible controller: NVIDIA Corporation NV44 [Quadro NVS 285] (rev a1)
It technically works, but Steam refuses to run any games and one of the monitors' refresh rates cannot be set to something that doesn't look blurry without reducing the resolution to something that is either very small or doesn't match the monitor's aspect ratio.

I have tried multiple cards which claim to work for games, including the NVIDIA GeForce GT 630, AMD Radeon R7 240 and multiple others and when trying to boot with any of them, Fedora will load as normal, but as soon as X starts, the computer slows to a near halt, moving the mouse pointer at 1 fps and barely being able to run Firefox. I can't even run the terminal or CTRL+ALT+F2 to run lspci as it still performs very sluggishly.

The same effect is observed when trying boot discs of Fedora 20 Xfce edition and Debian 7 and affects every version of the kernel it is attempted with.

Does anyone know how I could remedy this issue (i.e. have a card that both allows X to load, and allows video games to function).

Best regards, and thanks for any help,
UltrasonicMadness
 
Old 07-01-2014, 03:28 PM   #2
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Have you tried installing the NVIDIA proprietary drivers? My GT 640 runs fine with the NVIDIA proprietary drivers from the Debian repository as did my old 9800 GTX (based upon the 8800).
 
Old 07-01-2014, 03:52 PM   #3
UltrasonicMadness
Member
 
Registered: Jul 2013
Location: European Union
Distribution: Fedora 20 Xfce Spin
Posts: 43

Original Poster
Rep: Reputation: Disabled
I have tried installing drivers but the computer runs so slowly that it cannot be done. My last card and the Quadro do not need drivers.
 
Old 07-01-2014, 04:02 PM   #4
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
That your computer runs so slowly indicates that the system falls back to software rendering, putting severe load on your CPU.
I recommend to start the system without a GUI running and install the appropriate driver from the commandline.
 
Old 07-01-2014, 04:14 PM   #5
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
As TobiSGD says, then you should install them from the command line. You can press Ctrl+Alt+F1 then log in as root and stop your display manager with something like "service gdm3 stop" or "service kdm stop" and follow the instructions here:
https://wiki.debian.org/NvidiaGraphicsDrivers
 
Old 07-01-2014, 04:15 PM   #6
UltrasonicMadness
Member
 
Registered: Jul 2013
Location: European Union
Distribution: Fedora 20 Xfce Spin
Posts: 43

Original Poster
Rep: Reputation: Disabled
How would I go about starting it without a GUI?

(without loading X at all)

Last edited by UltrasonicMadness; 07-01-2014 at 04:35 PM. Reason: Clarification
 
Old 07-01-2014, 04:36 PM   #7
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
When starting your system and the bootloader appears (on Fedora I would guess it is Grub 2) add this to the kernel commandline:
Code:
systemd.unit=multi-user.target
 
Old 07-02-2014, 01:40 PM   #8
UltrasonicMadness
Member
 
Registered: Jul 2013
Location: European Union
Distribution: Fedora 20 Xfce Spin
Posts: 43

Original Poster
Rep: Reputation: Disabled
I have tried entering your command into GRUB, both by entering the command into the command line (pressing c) and then starting the latest kernel (3.14.9-200.fc20.i686).

I also tried entering edit mode (pressing e) and adding your command as the first line (attempted with both rescue mode and the latest kernel) and the message "Booting a command list" comes up along with the graphical boot screen followed by the graphical login screen.
 
Old 07-02-2014, 05:51 PM   #9
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
You have to add the command to the end of the kernel commandline, the one that starts with the linux command. For example, on a Debian system it looks like this:
Code:
linux	/boot/vmlinuz-3.2.0-4-686-pae root=UUID=e0ce1068-7dc4-447d-822b-a8540e710d7e ro  quiet
This will of course look a bit different on a Fedora system, but you should be able to determine to which line you have to add the command.
 
Old 07-21-2014, 02:44 PM   #10
UltrasonicMadness
Member
 
Registered: Jul 2013
Location: European Union
Distribution: Fedora 20 Xfce Spin
Posts: 43

Original Poster
Rep: Reputation: Disabled
My most humble apologies for having taken this long to have tried and tested this. I have been quite busy recently.

Anyway, I followed the instructions here in order to install the driver, in conjunction with disabling the GUI while doing so.

The install process seemed to go well, as the installer showed no errors. I rebooted the computer into the GUI and found that the problem is still very much there, with delayed mouse movement and quite a delay between pressing a key and the OS recognising this input. I was able to log in and see that AMD Catalyst had installed (in the Settings submenu).

As it turned out I am using kernel version 3.15, and I don't have any spare 3.14 or earlier kernels to boot with. What would you recommend doing at this point (like a way to use yum to get an old kernel, or an open source driver (akin to nouveau))?

Best regards
UltrasonicMadness
 
Old 07-27-2014, 06:09 PM   #11
UltrasonicMadness
Member
 
Registered: Jul 2013
Location: European Union
Distribution: Fedora 20 Xfce Spin
Posts: 43

Original Poster
Rep: Reputation: Disabled
Update: Got another GeForce 8500 GT from Ebay and it works fine. Thank you for the help!
 
  


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
Various xorg.conf examples for using (multiple) cards + (multiple) monitors GrapefruiTgirl Linux - Hardware 7 10-13-2022 02:04 PM
Supported Graphics cards and lan cards for rhel 6 priyankgupta1984 Linux - Desktop 3 11-15-2011 09:59 AM
xorg.conf multiple graphics cards abourke Linux - Newbie 1 07-24-2011 07:51 PM
LXer: Xi Graphics, Inc. Releases Graphics Drivers for ATI FireMV Cards LXer Syndicated Linux News 0 09-27-2006 09:54 PM
Quick Confirmation about Multiple Graphics Cards joeyjwc Linux - Hardware 11 10-17-2005 06:58 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 11:15 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