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 - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 10-08-2013, 06:52 AM   #31
cascade9
Senior Member
 
Registered: Mar 2011
Location: Brisneyland
Distribution: Debian, aptosid
Posts: 3,753

Rep: Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935

How did you generate/create that xorg.conf file?

If you are using GDM with debian, the correct comamnd (as 'root') should be-

invoke-rc.d gdm3 stop

https://wiki.debian.org/GDM

Last edited by cascade9; 10-08-2013 at 06:58 AM.
 
Old 10-08-2013, 07:07 AM   #32
Ac1d
Member
 
Registered: Oct 2013
Posts: 39

Original Poster
Rep: Reputation: Disabled
Awesome! That command worked perfectly for start/stopping gdm3.
I believe that I used:

Code:
# Xorg -configure
to generate my xorg.conf
 
Old 10-08-2013, 08:36 AM   #33
Ac1d
Member
 
Registered: Oct 2013
Posts: 39

Original Poster
Rep: Reputation: Disabled
Code:
Section "ServerLayout"
	Identifier     "aticonfig Layout"
	Screen      0  "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Module"
EndSection











Section "Monitor"
	Identifier   "0-DFP1"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
	Option	    "PreferredMode" "1920x1080"
	Option	    "TargetRefresh" "60"
	Option	    "Position" "1920 0"
	Option	    "Rotate" "left"
	Option	    "Disable" "false"
EndSection

Section "Monitor"
	Identifier   "0-DFP2"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
	Option	    "PreferredMode" "1920x1080"
	Option	    "TargetRefresh" "60"
	Option	    "Position" "0 0"
	Option	    "Rotate" "normal"
	Option	    "Disable" "false"
EndSection

Section "Monitor"
	Identifier   "0-DFP4"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
	Option	    "TargetRefresh" "60"
	Option	    "Position" "3000 0"
	Option	    "Rotate" "normal"
	Option	    "Disable" "false"
EndSection

















Section "Device"
	Identifier  "aticonfig-Device[0]-0"
	Driver      "fglrx"
	Option	    "Monitor-DFP1" "0-DFP1"
	BusID       "PCI:1:0:0"
EndSection

Section "Device"
	Identifier  "amdcccle-Device[1]-1"
	Driver      "fglrx"
	Option	    "Monitor-DFP4" "0-DFP4"
	BusID       "PCI:1:0:0"
	Screen      1
EndSection

Section "Device"
	Identifier  "amdcccle-Device[1]-2"
	Driver      "fglrx"
	Option	    "Monitor-DFP2" "0-DFP2"
	BusID       "PCI:1:0:0"
	Screen      2
EndSection
















Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "aticonfig-Device[0]-0"
	DefaultDepth     24
	SubSection "Display"
		Virtual   4920 1920
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "amdcccle-Screen[1]-1"
	Device     "amdcccle-Device[1]-1"
	DefaultDepth     24
	SubSection "Display"
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "amdcccle-Screen[1]-2"
	Device     "amdcccle-Device[1]-2"
	DefaultDepth     24
	SubSection "Display"
		Depth     24
	EndSubSection
EndSection

current xorg.conf as it sits, still dazed and confused about getting this third monitor working.............I've already lost countless hours of sleep, and god knows how much money on this thing. Every day that passes I'm getting hammered by this shit not working. I'm done for the day. Hopefully some good news may come when I wake.
 
Old 10-09-2013, 01:53 AM   #34
cascade9
Senior Member
 
Registered: Mar 2011
Location: Brisneyland
Distribution: Debian, aptosid
Posts: 3,753

Rep: Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935
I think your doing things the hard way. I'd be trying to get the 2nd card fully detected and working before trying to setup more monitors. Leave things like rotation and disable power mangement out until you've got a better handle on it all.

I'd start off by fixing your "Device" section....you've got 3 devices listed, 3 different 'amdcccle-Device' and all the bus IDs are PCI:1:0:0 (one card should be a different busID, you can find it with 'lspci').

Looking at your /var/log/Xorg.0.log (etc) might be helpful as well.

*edit- did you try (as root) aticonfig --adapter=all --initial

Last edited by cascade9; 10-09-2013 at 03:31 AM.
 
Old 10-09-2013, 07:57 PM   #35
Ac1d
Member
 
Registered: Oct 2013
Posts: 39

Original Poster
Rep: Reputation: Disabled
Alright I ran the above mentioned code:
Code:
aticonfig -adapter=all --initial
First time around nothing, after running it a few times and a few restarts it started working. Can't really do anything at the moment due to having the duplicate date/time & user name on the black bar.


Click image for larger version

Name:	IMG_20131009_173139798.jpg
Views:	32
Size:	225.5 KB
ID:	13679
 
Old 10-09-2013, 08:12 PM   #36
Ac1d
Member
 
Registered: Oct 2013
Posts: 39

Original Poster
Rep: Reputation: Disabled
My primary is getting progressively smaller after each reboot.


This is how she sits as of now.

Click image for larger version

Name:	IMG_20131009_180956170.jpg
Views:	33
Size:	248.5 KB
ID:	13680


Oddly enough I have no 5th monitor, device and/or screen in my xorg.conf

Last edited by Ac1d; 10-09-2013 at 08:21 PM.
 
Old 10-10-2013, 01:52 AM   #37
Ac1d
Member
 
Registered: Oct 2013
Posts: 39

Original Poster
Rep: Reputation: Disabled
So I've made a slight error in judgment. A few restarts later I realized I no longer have a primary display. It's completely disappeared, only left with an:

Oops something wrong happened.

The last time my primary display was usable it looked like:

Click image for larger version

Name:	IMG_20131009_180956170.jpg
Views:	31
Size:	248.5 KB
ID:	13684
 
Old 10-10-2013, 06:20 AM   #38
cascade9
Senior Member
 
Registered: Mar 2011
Location: Brisneyland
Distribution: Debian, aptosid
Posts: 3,753

Rep: Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935
Sceenshots arent going to help much.

Posting your current xorg.conf is a better idea.
 
Old 10-10-2013, 06:21 AM   #39
Ac1d
Member
 
Registered: Oct 2013
Posts: 39

Original Poster
Rep: Reputation: Disabled
Thats going to be tricky... I can't open anything currently.
 
Old 10-10-2013, 06:30 AM   #40
Ac1d
Member
 
Registered: Oct 2013
Posts: 39

Original Poster
Rep: Reputation: Disabled
Click image for larger version

Name:	IMG_20131010_042237636.jpg
Views:	29
Size:	242.8 KB
ID:	13685
Click image for larger version

Name:	IMG_20131010_042301987.jpg
Views:	28
Size:	238.0 KB
ID:	13686
Click image for larger version

Name:	IMG_20131010_042313036.jpg
Views:	29
Size:	235.9 KB
ID:	13687
 
Old 10-10-2013, 06:32 AM   #41
Ac1d
Member
 
Registered: Oct 2013
Posts: 39

Original Poster
Rep: Reputation: Disabled
Click image for larger version

Name:	IMG_20131010_042324675.jpg
Views:	38
Size:	235.5 KB
ID:	13688
Click image for larger version

Name:	IMG_20131010_042330265.jpg
Views:	32
Size:	246.2 KB
ID:	13689
Click image for larger version

Name:	IMG_20131010_042339108.jpg
Views:	41
Size:	256.8 KB
ID:	13690
 
Old 10-10-2013, 06:34 AM   #42
Ac1d
Member
 
Registered: Oct 2013
Posts: 39

Original Poster
Rep: Reputation: Disabled
Click image for larger version

Name:	IMG_20131010_042347730.jpg
Views:	36
Size:	223.1 KB
ID:	13691


Where there's a will there's a way I suppose, sorry for the quality. The last one is a quasi duplicate.
 
Old 10-11-2013, 03:29 AM   #43
cascade9
Senior Member
 
Registered: Mar 2011
Location: Brisneyland
Distribution: Debian, aptosid
Posts: 3,753

Rep: Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935Reputation: 935
Wow, you're got more patience than I do Ac1d. Nice persistence

Seems to be the same xorg.conf as before running aticonfig -adapter=all --initial.

I've got this feeling that either the xorg.conf isnt being used by the driver (yes, that can happen). I dont know about forcing it with that xorg.conf either, it just seems wrong in places.

Maybe try deleting the xorg.conf, and/or running aticonfig -adapter=all --initial again.

I really should dig around a bit more.....I have this idea that just like you can run nVidia-settings (the nvidia control panel) as 'root' then save an xorg.conf from there you can also do that with the catalyst control center....I'll have to wait a few hours at least as the only system with an AMD/ATI card here is currently being used by my housemate.

If that fails, or doesnt work, I can try to write up a bit better xorg.conf file.
 
Old 10-11-2013, 08:35 AM   #44
Ac1d
Member
 
Registered: Oct 2013
Posts: 39

Original Poster
Rep: Reputation: Disabled
What's really odd is that the 5th monitor is working just fine. Yet it's not even listed in the device, monitor, or screen section. I will admit that it's running in clone mode so I'm not really sure if that counts.

Guess I really don't have a choice on the patience part. I refuse to use windows anymore for my primary computer. It does suck not being able to focus on what I'm supposed to be doing at the moment. If I don't sit down and take the time to learn this, it's never going to happen.

Last edited by Ac1d; 10-11-2013 at 08:41 AM.
 
Old 10-11-2013, 09:11 AM   #45
Ac1d
Member
 
Registered: Oct 2013
Posts: 39

Original Poster
Rep: Reputation: Disabled
Interesting, just removed my xorg.conf. thought I would have a look afterwards....


Click image for larger version

Name:	IMG_20131011_070848413.jpg
Views:	32
Size:	263.2 KB
ID:	13705

All those xorg files.....
 
  


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
LXer: The AMD Catalyst 13.6 proprietary video driver will support the latest AMD APUs — and I really LXer Syndicated Linux News 0 07-10-2013 01:20 PM
Installation Hangs AMD 4800+ AMD Northbridge 690 d.kumar Linux - Hardware 6 10-25-2008 11:45 AM
openSuse 10.2, AMD x86_64, NDAS installation with Ximeta driver failed EichbaumExport Linux - Hardware 0 05-21-2007 03:09 PM
LXer: AMD 8.36.5 Display Driver LXer Syndicated Linux News 0 04-18-2007 09:31 PM
Ati Xpress with AMD 64 driver Alinuxnoob Linux - General 1 06-09-2005 11:02 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

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