That's a neat trick, objuan! Unfortunately it doesn't work with all Dell PC's, it didn't work for me, anyway.
The OP may need to do it the old fashion way. First identify the components, and then find the drivers. We'll start with the graphics driver.
Fedora (and Linux in general) has an open source driver that should work for the QUADRO cards. It is simply called nv. If you can, go in the menu and run the Display program, or start it from a terminal:
Code:
/usr/bin/system-config-display
Under the Hardware tab, select Video Card-->Configure. Scroll down to the nv driver. select it and close the program. You now need to reload the graphics driver. There are several ways to do this, but for a newbie the easiest way is to just reboot.
If this doesn't work, or if you don't have the desktop loading, you will need to manually edit the graphics driver configuration file.
To get a terminal screen, press these keys together: Ctrl+Alt+F1. Login as root, then you will use the vi text editor to edit the file /etc/X11/xorg.conf:
Code:
vi /etc/X11/xorg.conf
The X in X11 is a capitol letter. Use the down arrow key to scroll down until you find where the driver is listed. It may look something like this:
Code:
Section "Device"
Identifier "Videocard0"
Driver "vga"
EndSection
It may not list "vga" as the driver, I just used that as an example. To change this to "nv", with the quotes, navigate to the driver listed, and put the cursor under the driver name ("vga"). Now hit the x key to delete a letter, do this for the entire driver listed. To enter the new driver, hit the i key (i = insert). Type in "nv", then hit the Escape key to exit the insert mode. Now save and exit by using Shift+ ZZ (hit Z twice while holding down the shift key).
Once you have this up and running, I highly recommend installing the nVidia Linux drver from the nVidia web site, but that is for another time.
EDIT IMPORTANT!: You really should make a backup copy of the xorg.conf file first, before changing anything. To do this enter this command, as root:
Code:
cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bak