LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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-28-2010, 01:37 PM   #1
The Dark Sagan
LQ Newbie
 
Registered: Sep 2008
Posts: 7

Rep: Reputation: 0
Question Fedora 12 second display issues.


Well, I tried installing the ATI driver for my specific card and after I did, I couldn't get a GUI, just console.

So I went and uninstalled the driver but now, my dual screen setup is disabled. I try to reactivate it through the desktop display manager but I get "The selected configuration for displays could not be applied. Could not set the configuration for CRTC64" error.

Anyone know how I can get the display configuration of when I first installed? That seem to work fine for dual displays.
 
Old 01-28-2010, 02:05 PM   #2
Runge_Kutta
Member
 
Registered: Jul 2006
Location: H-town, TX
Distribution: SuSE10.1, Ubuntu 9.10, RHEL-4-WS, Fedora Core 6, CentOS 5.x, Fedora 13
Posts: 35

Rep: Reputation: 16
since you can get to a terminal still ... log on as root, go to folder /etc/X11 and see if you see anything that looks like xorg.conf with ".backup_fromATI" attached at the end or anything like that. If so, replace what you have with the backup after backing up xorg.conf file that doesn't work. If you don't have a backup, then rename the one you have and restart - forcing the system to create a new one on restart (as if a new boot).

So, if a backup:

mv xorg.conf xorg.conf.backup.nowork
mv xorg.conf.backup_fromATI xorg.conf

shutdown -r now

No backup:

mv xorg.conf xorg.conf.backup.nowork

shutdown -r now

Let us know what happens . . .
 
Old 01-28-2010, 02:16 PM   #3
The Dark Sagan
LQ Newbie
 
Registered: Sep 2008
Posts: 7

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Runge_Kutta View Post
since you can get to a terminal still ... log on as root, go to folder /etc/X11 and see if you see anything that looks like xorg.conf with ".backup_fromATI" attached at the end or anything like that. If so, replace what you have with the backup after backing up xorg.conf file that doesn't work. If you don't have a backup, then rename the one you have and restart - forcing the system to create a new one on restart (as if a new boot).

So, if a backup:

mv xorg.conf xorg.conf.backup.nowork
mv xorg.conf.backup_fromATI xorg.conf

shutdown -r now

No backup:

mv xorg.conf xorg.conf.backup.nowork

shutdown -r now

Let us know what happens . . .
See that's the funny thing. I don't think Fedora 12 uses an xorg.conf file.

I might be mistaken though. I think I read that a couple times looking for a solution on the net.
 
Old 01-28-2010, 03:01 PM   #4
Runge_Kutta
Member
 
Registered: Jul 2006
Location: H-town, TX
Distribution: SuSE10.1, Ubuntu 9.10, RHEL-4-WS, Fedora Core 6, CentOS 5.x, Fedora 13
Posts: 35

Rep: Reputation: 16
alright, use my doctored up xorg.conf from one of my fedora boxes below (copy and paste, however you can). Fedora will use an existing xorg.conf if there is one in place (in same folder I mentioned above). Hopefully, you'll be able to get some graphics back.

Code:
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder58)  Fri Aug 14 18:33:37 PDT 2009

# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings:  version 1.0  (buildmeister@builder58)  Fri Aug 14 18:34:43 PDT 2009

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
    FontPath        "/usr/share/fonts/default/Type1"
EndSection

Section "ServerFlags"

#    Option	   "AIGLX" "on"
#    Option	   "GLX_EXT_texture_from_pixmap" "1"
#    Option         "RenderAccel" "true"
#    Option         "XAANoOffscreenPixmaps"
#    Option         "AllowGLXWithComposite" "true"
#    Option         "AddARGBGLXVisuals" "true"
#    Option         "DisableGLXRootClipping" "true"
#    Option         "Xinerama" "0"
EndSection

#Section "Module"
#	Load	"dbe"
#        Load	"extmod"
#        Load	"freetype"
#        Load	"glx"
#EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/input/mice"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"

    # generated from data in "/etc/sysconfig/keyboard"
    Identifier     "Keyboard0"
    Driver         "kbd"
    Option         "XkbLayout" "us"
    Option         "XkbModel" "pc105"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "SCN GL-1920B"
    HorizSync       30.0 - 81.0
    VertRefresh     40.0 - 76.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
#    Driver         "nvidia"
#    VendorName     "NVIDIA Corporation"
#    BoardName      "Quadro NVS 285"
    Driver          "vesa"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection "Display"
        Viewport   0 0
        Depth     16
        Modes    "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
        Modes    "800x600" "640x480"
    EndSubSection
#    Option         "TwinView" "1"
#    Option         "metamodes" "DFP-0: 1280x1024_60 +0+0, DFP-1: 1280x1024_60 +1280+0"
#    Option         "AddARGBGLXVisuals" "true"
#    Option	   "TripleBuffer" "true"
#    SubSection     "Display"
#        Depth       24
#    EndSubSection
EndSection

Section "Extensions"
    Option         "Composite" "enable"
EndSection
 
Old 01-28-2010, 06:57 PM   #5
The Dark Sagan
LQ Newbie
 
Registered: Sep 2008
Posts: 7

Original Poster
Rep: Reputation: 0
I'm sorry. I guess I didn't fully explain.

I have a single display (GUI) up and running.

I'm trying to get both displays going again.

The desktop display manager doesn't seem to wanna cooperate and gives me the The selected configuration for displays could not be applied. Could not set the configuration for CRTC64" error.
 
Old 01-28-2010, 08:50 PM   #6
The Dark Sagan
LQ Newbie
 
Registered: Sep 2008
Posts: 7

Original Poster
Rep: Reputation: 0
OK, figured it out.

Apparently, the ATI Driver obliterates some critical files that come with the OS needed for proper operation.

Doing a yum reinstall on the org-x11-*, mesa-* and lib* packages returned the dual screen setup back to normal.
 
  


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
fedora 8 video/display/install issues sniperhunter Fedora 3 06-01-2008 12:48 AM
Display issues after installing Fedora jd5646 Fedora 2 09-04-2006 09:01 AM
Dell D610 Docking Station + Fedora 4 Display Issues dissectional Linux - Hardware 1 05-15-2006 02:53 AM
Crazy display issues Fedora v3 adoti Fedora 8 03-29-2005 07:40 AM
Display Issues eflinton Linux - General 3 05-15-2002 06:52 PM

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

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