Changeset 147b566 for x/installing


Ignore:
Timestamp:
06/02/2022 12:40:58 AM (2 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
11.2, 11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/llvm18, xry111/soup3, xry111/xf86-video-removal
Children:
d521cc0
Parents:
c156674
Message:

Explain some Xorg.0.log error/warning messages.

Added explainations for:

(WW) Open ACPI failed (/var/run/acpid.socket)
(WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
(EE) AIGLX error: dlopen of /opt/xorg/lib/dri/i965_dri.so failed
(EE) AIGLX error: unable to load driver i965

File:
1 edited

Legend:

Unmodified
Added
Removed
  • x/installing/xorg-config.xml

    rc156674 r147b566  
    218218  </sect2>
    219219
     220  <sect2 role="configuration" id="xorg-debug" xreflabel="Debugging Xorg">
     221    <title>Debugging Xorg</title>
     222
     223    <para>
     224      When starting xorg, there are a couple of ways to check what any
     225      issues you may have.  If the system comes up, you can see what driver
     226      is being used by running <command>xdriinfo</command>. If there are
     227      issues or you just want to check, look at <filename>Xorg.0.log</filename>.
     228    </para>
     229
     230    <para>
     231      The location of <filename>Xorg.0.log</filename> depends on how Xorg is
     232      installed.  If the instructions in the book are followed closely and
     233      Xorg is started from the comand line, it wil be located in the
     234      <filename class="directory">$HOME/.local/share/xorg/</filename> directory.
     235      If Xorg is started by a display manager (e.g. <xref linkend='lightdm'/>,
     236      <xref linkend='lxdm'/>, or <xref linkend='gdm'/>) or if
     237      <filename>$$XORG/PREFIX/libexec/Xorg</filename> has the suid bit set,
     238      it will be located in the <filename class="directory">/var/log/</filename>
     239      directory.
     240    </para>
     241
     242    <bridgehead renderas="sect3">Xorg.0.log Issues</bridgehead>
     243
     244    <para>
     245      When you look at Xorg.0.log, check for entries like (EE) or (WW).
     246      Below are some common entries:
     247    </para>
     248
     249    <bridgehead renderas="sect5">(WW) Open ACPI failed (/var/run/acpid.socket)</bridgehead>
     250
     251    <para>
     252      This warning is becasue <xref linkend='acpid'/> is not installed. If you
     253      are not on a laptop, it can be safely ignored. On a laptop, install
     254      <xref linkend='acpid'/> to enable actions like recognizing when the lid is
     255      closed.
     256    </para>
     257
     258    <bridgehead renderas="sect5">(WW) VGA arbiter: cannot open kernel arbiter, no multi-card support</bridgehead>
     259
     260    <para>
     261      This warning is displayed when a regular user starts Xorg.  The library
     262      <filename>libpciaccess.so</filename> issues this warning when it
     263      tries to open <filename>/dev/vga_arbiter</filename>.  If there is only
     264      one video card in the system, it can safely be ignored. If desired, the
     265      permissions of this device can be changed by adding a udev rule and
     266      adding the local user to the video group. As the &root; user:
     267    </para>
     268
     269<screen role="root"><userinput>cat > /etc/udev/rules.d/99-vga-arbiter.rules &lt;&lt; EOF
     270# /etc/udev/rules.d/99-vga-arbiter.rules: Set vga_arbiter group/mode
     271
     272ACTION=="add", KERNEL=="vga_arbiter", GROUP="video" MODE="0660"
     273EOF
     274
     275usermmod -G video &lt;user running xorg&gt;</userinput></screen>
     276
     277    <bridgehead renderas="sect5">(EE) AIGLX error: dlopen of /opt/xorg/lib/dri/i965_dri.so failed</bridgehead>
     278
     279  <para>
     280    This error, accompanied by (EE) AIGLX error: unable to load driver i965, occurs
     281    in some systems with Intel based graphics devices.  It is caused by a mismatch
     282    between the current <xref linkend='xorg-server'/> and <xref linkend='mesa'/>. Xorg
     283    no longer uses the i965 driver and uses the crocus or isis mesa drivers as
     284    indicated by the <command>xdpiinfo</command> command.  It can safely be ignored.
     285  </para>
     286
     287  <para>
     288    If desired, this warning can be removed by commenting out lines
     289    330-331 and 337-338 (LogMessage) of
     290    <filename>glx/glxdricommon.c</filename> in the <xref linkend='xorg-server'/>
     291    package.
     292  </para>
     293
     294  </sect2>
     295
    220296  <sect2 role="configuration" id="hybrid-graphics" xreflabel="Hybrid Graphics">
    221297    <title>Hybrid Graphics</title>
Note: See TracChangeset for help on using the changeset viewer.