nerdexam
CompTIA

LX0-104 · Question #239

Which of the following lines from /etc/X11/xorg.conf indicates that fonts can be found on a font server?

The correct answer is C. FontPath "unix/:7100". In an xorg.conf file, a line starting with FontPath followed by "unix/:7100" indicates that fonts should be obtained from a local font server listening on port 7100.

User Interfaces and Desktops

Question

Which of the following lines from /etc/X11/xorg.conf indicates that fonts can be found on a font server?

Options

  • AFontPath= server
  • BFonts "unix/:7100"
  • CFontPath "unix/:7100"
  • DFonts= server
  • EFontserver = "servername"

How the community answered

(24 responses)
  • C
    92% (22)
  • D
    4% (1)
  • E
    4% (1)

Why each option

In an `xorg.conf` file, a line starting with `FontPath` followed by `"unix/:7100"` indicates that fonts should be obtained from a local font server listening on port 7100.

AFontPath= server

`FontPath= server` is not a valid syntax; it requires a specific path or server address format.

BFonts "unix/:7100"

`Fonts` is not the correct directive to specify font server locations; `FontPath` is used for that purpose.

CFontPath "unix/:7100"Correct

The `FontPath` directive in `xorg.conf` specifies where the X server should look for fonts. `"unix/:7100"` is a common syntax to indicate a local font server (often `xfs` or `fontconfig`) listening on port 7100.

DFonts= server

`Fonts= server` is not a valid directive or syntax for indicating a font server in `xorg.conf`.

EFontserver = "servername"

`Fontserver` is not the correct directive; `FontPath` is the standard directive for specifying font locations, including servers.

Concept tested: X.org font configuration

Source: https://manpages.ubuntu.com/manpages/jammy/man5/xorg.conf.5.html

Topics

#Xorg configuration#font server#graphical interface

Community Discussion

No community discussion yet for this question.

Full LX0-104 Practice