Page 1 of 1

xorg.conf in MX23

Posted: Fri Sep 15, 2023 11:15 am
by M270
Desktop: Xfce v: 4.18.1 tk: Gtk v: 3.24.36 info: xfce4-panel wm: xfwm v: 4.18.0 vt: 7
dm: LightDM v: 1.26.0 Distro: MX-23_386 Libretto July 31 2023 base: Debian GNU/Linux 12
(bookworm)
Need to be able to access xorg.conf file to switch on/off Backing store. Can't find it and help would be greatly appreciated :-)

Re: xorg.conf in MX23

Posted: Fri Sep 15, 2023 11:23 am
by CharlesV
Welcome in!

Please post your QSI. ( MX Menu, Quick System Info, Copy for Forum, Paste here )

Re: xorg.conf in MX23

Posted: Fri Sep 15, 2023 11:37 am
by dolphin_oracle
I don't know what you are doing, but you'll have to create one. by default MX does not use a xorg.conf file.

Re: xorg.conf in MX23  [Solved]

Posted: Fri Sep 15, 2023 1:15 pm
by BitterTruth
Is this to do with zram i.e. are you trying to make backing storage for zram or zswap? If so try this:

https://www.kernel.org/doc/html/latest/ ... #writeback

EDIT: Most likely you are trying to create an X-server backing store so that you can access the x-server over the network and need a backing store to reduce the graphical delay.

In that case, create this file

sudo nano /etc/X11/xorg.conf.d/10-backing-store.conf

with contents:

Code: Select all

Section "Device"
  Option "BackingStore" "on"
EndSection
Method 2:
I think backing store is on by default so you might be able to just past the -bs argument during x startup, which disables backing store support on all screens according to:
https://www.x.org/archive/X11R7.5/doc/m ... ver.1.html

Re: xorg.conf in MX23

Posted: Sat Sep 16, 2023 11:17 am
by M270
Guess it turned out to be more more of an Xorg question than MX linux issue. BItterTruth pointed me in the right direction and I now have the tools to deal with the BackingStore graphics option.
Thanks!