<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://dev1galaxy.org/extern.php?action=feed&amp;tid=1498&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / [SOLVED] XFCE (Really Xorg) Max Resolution Problem]]></title>
		<link>http://dev1galaxy.org/viewtopic.php?id=1498</link>
		<description><![CDATA[The most recent posts in [SOLVED] XFCE (Really Xorg) Max Resolution Problem.]]></description>
		<lastBuildDate>Sun, 17 Sep 2017 16:45:10 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [SOLVED] XFCE (Really Xorg) Max Resolution Problem]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=5071#p5071</link>
			<description><![CDATA[<p>Ahh ... very tricky. &quot;Edit post&quot;, eh. Thanks for the hand holding.</p>]]></description>
			<author><![CDATA[dummy@example.com (bbatten)]]></author>
			<pubDate>Sun, 17 Sep 2017 16:45:10 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=5071#p5071</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] XFCE (Really Xorg) Max Resolution Problem]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=5070#p5070</link>
			<description><![CDATA[<div class="quotebox"><cite>bbatten wrote:</cite><blockquote><div><p>Thanks for the reply. How do I do that?</p></div></blockquote></div><p>Lower RH corner of the read screen has these options.&#160; As a user you might not have a delete option:</p><p><strong>Report&#160; &#160; Delete&#160; &#160; Edit&#160; &#160; Quote </strong></p><p>Go to the first post in this thread and click on edit.&#160; You&#039;ll have to be logged in, of course.</p><p>I&#039;ll take care of it this time.</p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Sat, 16 Sep 2017 20:20:42 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=5070#p5070</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] XFCE (Really Xorg) Max Resolution Problem]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=5069#p5069</link>
			<description><![CDATA[<p>Thanks for the reply. How do I do that?</p>]]></description>
			<author><![CDATA[dummy@example.com (bbatten)]]></author>
			<pubDate>Sat, 16 Sep 2017 20:06:49 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=5069#p5069</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] XFCE (Really Xorg) Max Resolution Problem]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=5068#p5068</link>
			<description><![CDATA[<p>Just edit the title of the first post.</p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Sat, 16 Sep 2017 18:28:11 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=5068#p5068</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] XFCE (Really Xorg) Max Resolution Problem]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=5067#p5067</link>
			<description><![CDATA[<p>Success has crowned my feeble efforts. This is an Xorg problem, not an XFCE one. I suspect that if you install the kernel package provided by Devuan on a system with older Radeon equipment, things will set up just fine. I think my problem is an effect of brewing my own kernels.</p><p>The culprit, <a href="https://www.x.org/wiki/radeon/" rel="nofollow">radeon latest news</a>, says<br />&quot;29 Jun 2012: 6.14.6: Few bugfixes, final release with UMS support (future releases will support only KMS)&quot;.</p><p>This explains why so many forum threads delt with blank screen issues with Radeon hardware for so long. When I upgraded from Debian Wheezy to Devuan Jessie, my xserver-xorg-video-{ati,radeon} packages went from 1:6.14.4-8 to 1:7.5.0-1. Since my elderly RS780L-based Radeon 3000 does not properly provide EDID information, the best resolution I could get was 1280x1024. It would have been nice if &quot;legacy&quot; UMS support had been left in.</p><p>I eventually determined that I needed to enable access to one of the kernel-provided canned EDID&#039;s, which in turn required</p><ul><li><p>compiling the radeon kernel module</p></li><li><p>ensuring the radeon module does mode setting. This appears to be the driver default. Also is set in /etc/modprobe.d/radeon-kms.conf by the xserver-xorg-video-radeon package.</p></li><li><p>ensuring the radeonfb module is not loaded. Either leave CONFIG_FB_RADEON unset or blacklist it. Looks like the udev package adds this to /etc/modprobe.d/fbdev-blacklist.conf.</p></li><li><p>compiling the drm_kms_helper kernel module</p></li><li><p>changing the framebuffer console fbcon from being a module to being compiled as part of the kernel. Until I did this, the result was always a blank screen on boot.</p></li><li><p>adding the string &quot;drm_kms_helper.edid_firmware=edid/1920x1080.bin&quot; to the kernel command line.</p></li></ul><p>The result is that I see all console data prior to the start of X. I can log in to any virtual console and do a startx if desired. All other consoles continue to display in text mode until I do a startx.</p><p>Here are the CONFIG changes I needed. Additional changes result from some of these choices:<br /><strong></p><div class="codebox"><pre><code>CONFIG_DRM_LOAD_EDID_FIRMWARE=y
CONFIG_FIRMWARE_EDID=y
&gt; CONFIG_DRM_AMDGPU=m
&gt; CONFIG_DRM_RADEON=m
&gt; CONFIG_DRM_AMD_ACP=y
&gt; CONFIG_FB=y
&gt; CONFIG_FB_RADEON=m
&gt; CONFIG_FB_RADEON_I2C=y
&gt; CONFIG_FB_RADEON_BACKLIGHT=y
&gt; CONFIG_BACKLIGHT_CLASS_DEVICE=y
&gt; CONFIG_FRAMEBUFFER_CONSOLE=y
&gt; CONFIG_INTERVAL_TREE=y
&gt; CONFIG_FONT_SUPPORT=y</code></pre></div><p></strong></p><p>How do I mark a topic as solved?</p>]]></description>
			<author><![CDATA[dummy@example.com (bbatten)]]></author>
			<pubDate>Sat, 16 Sep 2017 18:01:42 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=5067#p5067</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] XFCE (Really Xorg) Max Resolution Problem]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=5034#p5034</link>
			<description><![CDATA[<p>Thanks. I&#039;ve got a lot of old content that I need to convert and restore. <img src="http://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (demifiend)]]></author>
			<pubDate>Wed, 13 Sep 2017 15:08:20 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=5034#p5034</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] XFCE (Really Xorg) Max Resolution Problem]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=5029#p5029</link>
			<description><![CDATA[<div class="quotebox"><cite>demifiend wrote:</cite><blockquote><div><p>(edited by MiyoLinux)</p></div></blockquote></div><p>Just wanted to say that I&#039;ve enjoyed perusing your website. <img src="http://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (MiyoLinux)]]></author>
			<pubDate>Wed, 13 Sep 2017 03:36:50 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=5029#p5029</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] XFCE (Really Xorg) Max Resolution Problem]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=5026#p5026</link>
			<description><![CDATA[<p>Hi. I know nobody has replied to your post in over a month, but were you able to fix this on your own? If not, which driver are you using? Are you using the FOSS driver for ATI/AMD cards, or the proprietary one?</p><p>What happens if you shut down SLIM and run </p><div class="codebox"><pre><code>sudo X -configure</code></pre></div><p>? Can you edit the resulting xorg.conf file, set the resolution to 1920x1080, and start up an X session using the </p><div class="codebox"><pre><code>startx</code></pre></div><p> command?</p>]]></description>
			<author><![CDATA[dummy@example.com (demifiend)]]></author>
			<pubDate>Wed, 13 Sep 2017 01:12:03 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=5026#p5026</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] XFCE (Really Xorg) Max Resolution Problem]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=4225#p4225</link>
			<description><![CDATA[<p>I&#039;m beginning to think this may be more of an installation than a desktop problem (see <a href="http://dev1galaxy.org/viewtopic.php?id=1107" rel="nofollow">Post Install Config Problems</a>).<br />Since my window manager (fvwm) and desktop (xfce4) both depend on the X server, I restored my wheezy disk image and tried to install just Devuan xorg with the idea of finding the minimum error causing configuration. Doing just that still pulls in a boatload of packages, but nevertheless seemed to be as minimal as I could get.</p><p>I did the install as root using a virtual terminal. The install seemed to go OK, but trying to use either the desktop or just fvwm, I ended up still being stuck with a max 1280x1024 resolution. Trying to do &quot;X -configure&quot; per PeteGozz&#039;s suggestion resulted in X segfaulting:<strong></p><div class="codebox"><pre><code>...
EE) Backtrace:
(EE) 0: X (xorg_backtrace+0x56) [0xc25a9b3e06]
(EE) 1: X (0xc25a7fd000+0x1bafe9) [0xc25a9b7fe9]
(EE) 2: /lib/x86_64-linux-gnu/libc.so.6 (0x7f65f6350000+0x350e0) [0x7f65f63850e0]
...</code></pre></div><p></strong>Here&#039;s the full output:<br /><strong></p><div class="codebox"><pre class="vscroll"><code>bash(root)# X -configure
_XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
_XSERVTransOpen: transport open failed for inet6/Pentium90:0
_XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6

X.Org X Server 1.16.4
Release Date: 2014-12-20
X Protocol Version 11, Revision 0
Build Operating System: Linux 4.9.0-3-amd64 x86_64 Debian
Current Operating System: Linux Pentium90 4.12.3 #5 SMP Sun Jul 23 14:40:26 PDT 2017 x86_64and line: BOOT_IMAGE=4.12 ro root=805 resume=/dev/sda2 console=tty8 rootfstype=ext4 July 2017  01:40:19PM
xorg-server 2:1.16.4-1+deb8u1+b1 (http://www.debian.org/support) 
Current version of pixman: 0.32.6
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: &quot;/var/log/Xorg.0.log&quot;, Time: Sun Aug  6 12:08:01 2017
List of video drivers:
        nouveau
        tdfx
	ati
        neomagic
        intel
        sisusb
        vesa
        fbdev
        modesetting
(++) Using config file: &quot;/root/xorg.conf.new&quot;
(==) Using system config directory &quot;/usr/share/X11/xorg.conf.d&quot;
        intel
        sisusb
        vesa
        fbdev
        modesetting
(++) Using config file: &quot;/root/xorg.conf.new&quot;
(==) Using system config directory &quot;/usr/share/X11/xorg.conf.d&quot;
(II) [KMS] drm report modesetting isn&#039;t supported.
(EE) 
(EE) Backtrace:
(EE) 0: X (xorg_backtrace+0x56) [0xc25a9b3e06]
(EE) 1: X (0xc25a7fd000+0x1bafe9) [0xc25a9b7fe9]
(EE) 2: /lib/x86_64-linux-gnu/libc.so.6 (0x7f65f6350000+0x350e0) [0x7f65f63850e0]
(EE) 
(EE) Segmentation fault at address 0x0
(EE) 
Fatal server error:
(EE) Caught signal 11 (Segmentation fault). Server aborting
(EE) 
(EE) 
Please consult the The X.Org Foundation support 
         at http://wiki.x.org
 for help. 
(EE) Please also check the log file at &quot;/var/log/Xorg.0.log&quot; for additional information.
(EE) 
(EE) Server terminated with error (1). Closing log file.
Aborted
bash(root)#</code></pre></div><p></strong>~root/xorg.conf.new exists, but is basically garbage. /var/log/Xorg.0.log basically reproduces the information already shown.</p><p>As far as I can tell from my script output, libc6 does get pulled in as a dependency of Xorg. But possibly because of disturbances in the force caused by GUI interaction(s) contained therein, I don&#039;t see <em>exactly</em> libc6:amd64 among the various libc6 flavors getting installed.</p><p>[rant]It&#039;s a little hard to tell what the contents of Devuan packages are supposed to be. You have a package browsing facility, but it doesn&#039;t seem to have the capability to see what files are contained therein a la Debian and Ubuntu. I basically look at Debian Jessie packages and SWAG it from there.[/rant]</p><p>As previously posted, xrandr and read-edid fail as described therein. I think those failures are effects of the basic xorg problem on my system.</p><p>Again, thanks for any assistance anyone can provide,</p>]]></description>
			<author><![CDATA[dummy@example.com (bbatten)]]></author>
			<pubDate>Sun, 06 Aug 2017 22:48:03 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=4225#p4225</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] XFCE (Really Xorg) Max Resolution Problem]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=4064#p4064</link>
			<description><![CDATA[<p>Thanks for the well researched report !</p><p>As golinux suggests perhaps trying to set the resolution in xorg.conf (or one of the .d/files )<br />May help. If it does ? Bingo!<br />I saw those logs popped a few clues around kernel modules and possibly udev.</p><p>The video driver appears to be getting &quot;bad parameters&quot; from earlier tools.<br />(but yeah you knew that)<br />Its notable though that the screen resolution tools can not see or set the correct known good resolution...</p><p>So _*maybe*_ its a driver thing or even a kernel module:<br />(less likely but simpler to fix)</p><div class="codebox"><pre><code>grep KMS /boot/config-$(uname -r)</code></pre></div><p>If hand loading (insmod&#160; modprobe) those and <br />startx &gt;&gt; xfce-resolution thing now allows access to the modes <br />then add the&#160; appropriate modules to /etc/modules</p><p>Its not likely but this is video driver world there are plenty of weird dragons about.</p><p>So when neither of those above work:<br />Its time to look: <br />&#160; &#160; &#160; &#160; harder at the actual driver itself.<br />&#160; &#160; &#160; &#160; at what (assumptions) udev maybe throwing in the way.</p><p>As a benchmark or simple comparison <em>force the vesa driver</em><br />((and see/compare how everything behaves <br /> (at least you can then eliminate the xorg-video-foo driver))</p><p>man xorg says: (lots and lots)<br />But this may help.</p><div class="codebox"><pre><code>xorg -configure</code></pre></div><p>&#160; (see roots home)</p><p>I guess what I&#039;m saying is try going the other way down the tool chain given you have reached higher levels of abstraction than the tools can use.<br />At this point, after a couple of days, <em>I normally notice the auto button on the monitor</em> and the reset the thing, which makes me feel a little better.</p>]]></description>
			<author><![CDATA[dummy@example.com (PeteGozz)]]></author>
			<pubDate>Sat, 29 Jul 2017 02:06:36 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=4064#p4064</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] XFCE (Really Xorg) Max Resolution Problem]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=4053#p4053</link>
			<description><![CDATA[<p>Do you login with slim?&#160; Maybe try lightdm?&#160; Or possibly set the resolution in xorg.conf?&#160; I haven&#039;t had to do any of that in years but can remember when it was necessary.</p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Fri, 28 Jul 2017 21:47:31 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=4053#p4053</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] XFCE (Really Xorg) Max Resolution Problem]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=4052#p4052</link>
			<description><![CDATA[<p>Hi,</p><p>I upgraded my Wheezy installation to Devuan Jessie using the instructions at</p><p><a href="https://lists.dyne.org/lurker/message/20170525.180739.f86cd310.en.html" rel="nofollow">https://lists.dyne.org/lurker/message/2 … 10.en.html</a></p><p>I now have a largely functional Devuan configuration except that xfce4 does not allow me to specify a screen resolution finer than 1280x1024, even though my monitor has 1920x1080 capability, and works fine with Wheezy.</p><div class="quotebox"><blockquote><div><p>Mobo:&#160; &#160; Asus M5A78L-M LX<br />Graphics:AMD/ATI RS780L Radeon HD 3000 VGA controller<br />Monitor:&#160; &#160; AOC 2243W</p></div></blockquote></div><p>My Wheezy configuration is mostly standard with the exceptions that I download kernels from kernel.org and build from source. Kernels are the same on both Devuan Jessie and Wheezy configurations, and I currently use either 4.9.39 or 4.12.3.</p><p>Network-manager is not installed. I use a custom network configuration and wicd instead. My boot manager is lilo. Grub is not installed.</p><p>I use a shell login with .bash_profile modified to call the startx script which brings up my desktop.</p><p>When I logged into my upgraded xfce4 desktop, I found that it was set at 1280x1024. Running &quot;xfce4-display-settings&quot; from a terminal window did not allow me to increase the resolution above 1280x1024, even though the former &quot;Default&quot; Resolution continued to show as 1920x1280 in displays.xml.</p><p>Attempting &quot;xrandr&quot; also failed as follows:<br /><strong></p><div class="codebox"><pre><code>[1] bryan: xrandr
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 640 x 400, current 1280 x 1024, maximum 1280 x 1024
default connected 1280x1024+0+0 0mm x 0mm
   1280x1024      0.00* 
   1024x768       0.00  
   800x600        0.00  
   640x480        0.00  
   720x400        0.00  
[2] bryan: xrandr -s 1920x1080
Size 1920x1080 not found in available modes
[3] bryan: xfce4-display-settings
[4] bryan: #only showed 1280x1024 max.
[4] bryan: exit</code></pre></div><p></strong></p><p>Running xrandr in Wheezy works as expected:<br /><strong></p><div class="codebox"><pre><code>[42] bryan: xrandr
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 1920 x 1920
VGA-0 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 477mm x 268mm
   1920x1080      60.0*+   60.0  
   1680x1050      60.0  
   1280x1024      75.0     60.0  
   1440x900       59.9  
   1280x960       60.0  
   1024x768       75.0     70.1     60.0  
   832x624        74.6  
   800x600        72.2     75.0     60.3     56.2  
   640x480        75.0     72.8     66.7     59.9  
   720x400        70.1  
HDMI-0 disconnected (normal left inverted right x axis y axis)
[43] bryan:</code></pre></div><p></strong></p><p>Running xfce4-display-settings from the command line under Wheezy brings up a GUI box displaying resolution as 1920x1080, with a set of smaller values available from the drop down menu.</p><p>Log files are a little confusing. Under Wheezy, log data from the startx script has messages with the word FATAL in them, while the Devuan startx output does not. I have the expected resolution under Wheezy, but not under Devuan Jessie.</p><p>The .xsession-errors file for Devuan has this message:<br /><strong></p><div class="codebox"><pre><code>Unable to launch &quot;xfce4-settings-helper&quot; ...</code></pre></div><p></strong>even though xfce4-settings helper is not part of xfce4 4.10, and does not appear in the Wheezy version of the file.</p><p>Xorg log files show Wheezy has several EE messages even though the actual desktop works as expected. However, the Xorg log file for Devuan has this line:<strong></p><div class="codebox"><pre><code>(EE) systemd-logind: failed to get session: The name org.freedesktop.login1 was not provided by any .service files</code></pre></div><p></strong></p><p>Also under Wheezy, version 2.0.0-3.1 of the read-edid package shows Mode 1920x1080 is available. Under Devuan read-edid ver. 3.0.1-2, there are a set of lines of the form:</p><p><strong></p><div class="codebox"><pre><code>	#Not giving standard mode: 1280x960, 60Hz
	#Not giving standard mode: 1280x1024, 60Hz
	#Not giving standard mode: 1440x900, 60Hz
	#Not giving standard mode: 1680x1050, 60Hz
	#Not giving standard mode: 1920x1080, 60Hz</code></pre></div><p></strong></p><p>I&#039;ve provided links to eight log files:<br /><a href="https://pastebin.com/vFnqsSWa" rel="nofollow">xsession-errors.devuan</a> .xsession-errors from the last time I tried Devuan.<br /><a href="https://pastebin.com/MdRfQGss" rel="nofollow">xsession-errors.wheezy</a> .xsession-errors from my current Wheezy session.<br /><a href="https://pastebin.com/avS006y7" rel="nofollow">Xorg.3.log.devuan</a>&#160; &#160; &#160; &#160; &#160;from /var/log Devuan Jessie<br /><a href="https://pastebin.com/qUnDEzNj" rel="nofollow">Xorg.3.log.wheezy</a>&#160; &#160; &#160; &#160; from /var/log Debian Wheezy<br /><a href="https://pastebin.com/Y6VahfG1" rel="nofollow">startx3.log.devuan</a>&#160; &#160; &#160; &#160; from redirected output of startx script Devuan<br /><a href="https://pastebin.com/fwn4cwYB" rel="nofollow">startx3.log.wheezy</a>&#160; &#160; &#160; &#160; from redirected output of startx script Wheezy<br /><a href="https://pastebin.com/C6m8DeKf" rel="nofollow">readedid.devuan</a>&#160; &#160; &#160; &#160; &#160; &#160;redirected output get-edid|parse-edid Devuan<br /><a href="https://pastebin.com/yGeLhUm5" rel="nofollow">readedid.wheezy</a>&#160; &#160; &#160; &#160; &#160; &#160;redirected output get-edid|parse-edid Wheezy</p><p>This problem has me stumped. So if any brave soul has the temerity to plough through this stuff, any assistence will be greatly appreciated.</p><p>Thanks,</p>]]></description>
			<author><![CDATA[dummy@example.com (bbatten)]]></author>
			<pubDate>Fri, 28 Jul 2017 20:14:58 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=4052#p4052</guid>
		</item>
	</channel>
</rss>
