Minimal X

According to:-


to get xorg up and running I only need to install xorg and a graphics driver.

It also says:-
The current user must be a member of the video group.

I have never done this and am wondering what I'm missing out on.

In the process of trying to track down a problem with LXDE, I've been looking through /var/log/Xorg.0.log and see the following:

(II) LoadModule: "intel"
(WW) Warning, couldn't open module intel
also

(II) LoadModule: "scfb"
(II) Loading /usr/local/lib/xorg/modules/drivers/scfb_drv.so
(II) Module scfb: vendor="X.Org Foundation"
compiled for 1.21.1.7, module version = 0.0.5
ABI class: X.Org Video Driver, version 25.2

In the FreeBSD guide it mentions SCFB and I'm wondering if I am using this rather than graphics/drm-kmod (i915kms).

When exiting xorg a msgs says

WARNING: Kernel has no file descriptor comparison support: No such file or directory.
ck--launch-session((2385): error connecting to ConsoleKit

I'm amazed that I have managed to run xorg with all these warning/errors for so many years, but maybe some of these things need sortng out.
 
hi mate, on my old macbook air which use intel i have the following packages installed

Code:
sudo pkg install libva-intel-driver libva-utils drm-515-kmod

i use wayland and wayfire which is actually really lightweight


you also need to edit /etc/rc.conf and add the i915kms module to the kld list

Code:
sudo sysrc kld_list+="i915kms"

or manually edit the config file

Code:
sudo vi /etc/rc.conf

then add the code below to /etc/rc.conf

Code:
kld_list="i915kms"

add yourself to the video group,
replace username with your username

Code:
sudo pw groupmod video -m username

 
The current user must be a member of the video group.

I have never done this and am wondering what I'm missing out on.
Non-root users must be in the video group to access DRM devices. Unless you are root, X11 will be missing out on rendering to your screen.
In the process of trying to track down a problem with LXDE, I've been looking through /var/log/Xorg.0.log and see the following:
(II) LoadModule: "intel"
(WW) Warning, couldn't open module intel
This sounds like the X.Org Intel display driver is missing, try installing it with:
pkg install xf86-video-intel
 
Forgot to mention, as what NapoleonWils0n said, you might not have the i915 driver loaded. Add it to your rc file (this is a command):
sysrc kld_list+="i915kms"
then reboot your computer, or load it manually:
kldload i915kms

Also didn't mention how to add a user to the video group, but they also described how to do that.
 
Non-root users must be in the video group to access DRM devices. Unless you are root, X11 will be missing out on rendering to your screen.

This sounds like the X.Org Intel display driver is missing, try installing it with:
pkg install xf86-video-intel
Thanks. The error msg has now disappeared from the xorg.log although I'm not sure that anything has actually changed.

Should I notice anything?
 
Code:
[ 31432.564]
X.Org X Server 1.21.1.9
X Protocol Version 11, Revision 0
[ 31432.564] Current Operating System: FreeBSD X61 14.0-RELEASE FreeBSD 14.0-RELEASE #0 releng/14.0-n265380-f9716eee8ab4: Fri Nov 10 05:57:23 UTC 2023     root@releng1.nyi.freebsd.org:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64
[ 31432.564] 
[ 31432.564] Current version of pixman: 0.42.2
[ 31432.564]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[ 31432.564] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 31432.565] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Jan  7 16:53:49 2024
[ 31432.565] (==) Using system config directory "/usr/local/share/X11/xorg.conf.d"
[ 31432.565] (==) No Layout section.  Using the first Screen section.
[ 31432.565] (==) No screen section available. Using defaults.
[ 31432.565] (**) |-->Screen "Default Screen Section" (0)
[ 31432.565] (**) |   |-->Monitor "<default monitor>"
[ 31432.566] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
[ 31432.566] (==) Automatically adding devices
[ 31432.566] (==) Automatically enabling devices
[ 31432.566] (==) Automatically adding GPU devices
[ 31432.566] (==) Automatically binding GPU devices
[ 31432.566] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 31432.566] (==) FontPath set to:
    /usr/local/share/fonts/misc/,
    /usr/local/share/fonts/TTF/,
    /usr/local/share/fonts/OTF/,
    /usr/local/share/fonts/Type1/,
    /usr/local/share/fonts/100dpi/,
    /usr/local/share/fonts/75dpi/,
    catalogue:/usr/local/etc/X11/fontpath.d
[ 31432.566] (==) ModulePath set to "/usr/local/lib/xorg/modules"
[ 31432.566] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 31432.566] (II) Module ABI versions:
[ 31432.566]     X.Org ANSI C Emulation: 0.4
[ 31432.566]     X.Org Video Driver: 25.2
[ 31432.566]     X.Org XInput driver : 24.4
[ 31432.566]     X.Org Server Extension : 10.0
[ 31432.570] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 31432.570] (II) Platform probe for /dev/dri/card0
[ 31432.590] (--) PCI:*(0@0:2:0) 8086:2a02:17aa:20b5 rev 12, Mem @ 0xf8100000/1048576, 0xe0000000/268435456, I/O @ 0x00001800/8, BIOS @ 0x????????/65536
[ 31432.590] (--) PCI: (0@0:2:1) 8086:2a03:17aa:20b5 rev 12, Mem @ 0xf8200000/1048576
[ 31432.590] (II) LoadModule: "glx"
[ 31432.590] (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so
[ 31432.591] (II) Module glx: vendor="X.Org Foundation"
[ 31432.591]     compiled for 1.21.1.9, module version = 1.0.0
[ 31432.591]     ABI class: X.Org Server Extension, version 10.0
[ 31432.592] (==) Matched intel as autoconfigured driver 0
[ 31432.592] (==) Matched modesetting as autoconfigured driver 1
[ 31432.592] (==) Matched scfb as autoconfigured driver 2
[ 31432.592] (==) Matched vesa as autoconfigured driver 3
[ 31432.592] (==) Assigned the driver to the xf86ConfigLayout
[ 31432.592] (II) LoadModule: "intel"
[ 31432.592] (II) Loading /usr/local/lib/xorg/modules/drivers/intel_drv.so
[ 31432.592] (II) Module intel: vendor="X.Org Foundation"
[ 31432.592]     compiled for 1.21.1.9, module version = 2.99.917
[ 31432.592]     Module class: X.Org Video Driver
[ 31432.592]     ABI class: X.Org Video Driver, version 25.2
[ 31432.592] (II) LoadModule: "modesetting"
[ 31432.592] (II) Loading /usr/local/lib/xorg/modules/drivers/modesetting_drv.so
[ 31432.593] (II) Module modesetting: vendor="X.Org Foundation"
[ 31432.593]     compiled for 1.21.1.9, module version = 1.21.1
[ 31432.593]     Module class: X.Org Video Driver
[ 31432.593]     ABI class: X.Org Video Driver, version 25.2
[ 31432.593] (II) LoadModule: "scfb"
[ 31432.593] (II) Loading /usr/local/lib/xorg/modules/drivers/scfb_drv.so
[ 31432.593] (II) Module scfb: vendor="X.Org Foundation"
[ 31432.593]     compiled for 1.21.1.9, module version = 0.0.5
[ 31432.593]     ABI class: X.Org Video Driver, version 25.2
[ 31432.593] (II) LoadModule: "vesa"
[ 31432.593] (II) Loading /usr/local/lib/xorg/modules/drivers/vesa_drv.so
[ 31432.594] (II) Module vesa: vendor="X.Org Foundation"
[ 31432.594]     compiled for 1.21.1.9, module version = 2.5.0
[ 31432.594]     Module class: X.Org Video Driver
[ 31432.594]     ABI class: X.Org Video Driver, version 25.2
[ 31432.594] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[ 31432.594] (II) intel: Driver for Intel(R) HD Graphics
[ 31432.594] (II) intel: Driver for Intel(R) Iris(TM) Graphics
[ 31432.594] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics
[ 31432.594] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[ 31432.594] (II) scfb: driver for wsdisplay framebuffer: scfb
[ 31432.594] (II) VESA: driver for VESA chipsets: vesa
[ 31432.594] (--) Using syscons driver with X support (version 2.0)
[ 31432.594] (--) using VT number 9

[ 31432.613] (WW) Falling back to old probe method for modesetting
[ 31432.613] (WW) Falling back to old probe method for scfb
[ 31432.613] scfb trace: probe start
[ 31432.613] scfb trace: probe done
[ 31432.613] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[ 31432.613] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
[ 31432.613] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[ 31432.613] (==) intel(0): RGB weight 888
[ 31432.613] (==) intel(0): Default visual is TrueColor
[ 31432.613] (--) intel(0): Integrated Graphics Chipset: Intel(R) 965GM
[ 31432.613] (**) intel(0): Relaxed fencing enabled
[ 31432.613] (**) intel(0): Wait on SwapBuffers? enabled
[ 31432.613] (**) intel(0): Triple buffering? enabled
[ 31432.613] (**) intel(0): Framebuffer tiled
[ 31432.613] (**) intel(0): Pixmaps tiled
[ 31432.613] (**) intel(0): 3D buffers tiled
[ 31432.613] (**) intel(0): SwapBuffers wait enabled
[ 31432.613] (==) intel(0): video overlay key set to 0x101fe
[ 31432.613] (II) intel(0): Output LVDS-1 has no monitor section
[ 31432.624] (II) intel(0): Output VGA-1 has no monitor section
[ 31432.624] (II) intel(0): EDID for output LVDS-1
[ 31432.624] (II) intel(0): Manufacturer: LEN  Model: 4000  Serial#: 0
[ 31432.624] (II) intel(0): Year: 2005  Week: 0
[ 31432.624] (II) intel(0): EDID Version: 1.3
[ 31432.624] (II) intel(0): Digital Display Input
[ 31432.624] (II) intel(0): Max Image Size [cm]: horiz.: 25  vert.: 18
[ 31432.624] (II) intel(0): Gamma: 2.20
[ 31432.624] (II) intel(0): DPMS capabilities: StandBy Suspend Off
[ 31432.624] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[ 31432.624] (II) intel(0): First detailed timing is preferred mode
[ 31432.624] (II) intel(0): redX: 0.569 redY: 0.342   greenX: 0.312 greenY: 0.544
[ 31432.624] (II) intel(0): blueX: 0.149 blueY: 0.132   whiteX: 0.313 whiteY: 0.329
[ 31432.624] (II) intel(0): Supported established timings:
[ 31432.624] (II) intel(0): 640x480@60Hz
[ 31432.624] (II) intel(0): 800x600@60Hz
[ 31432.624] (II) intel(0): 1024x768@60Hz
[ 31432.624] (II) intel(0): Manufacturer's mask: 0
[ 31432.624] (II) intel(0): Supported detailed timing:
[ 31432.624] (II) intel(0): clock: 54.2 MHz   Image Size:  246 x 185 mm
[ 31432.624] (II) intel(0): h_active: 1024  h_sync: 1048  h_sync_end 1184 h_blank_end 1344 h_border: 0
[ 31432.624] (II) intel(0): v_active: 768  v_sync: 771  v_sync_end 777 v_blanking: 806 v_border: 0
[ 31432.624] (II) intel(0): Supported detailed timing:
[ 31432.624] (II) intel(0): clock: 43.3 MHz   Image Size:  246 x 185 mm
[ 31432.624] (II) intel(0): h_active: 1024  h_sync: 1048  h_sync_end 1184 h_blank_end 1344 h_border: 0
[ 31432.624] (II) intel(0): v_active: 768  v_sync: 771  v_sync_end 777 v_blanking: 806 v_border: 0
[ 31432.624] (II) intel(0): Unknown vendor-specific block f
[ 31432.624] (II) intel(0):  LTN121XJ-L07
[ 31432.624] (II) intel(0): EDID (in hex):
[ 31432.624] (II) intel(0):     00ffffffffffff0030ae004000000000
[ 31432.624] (II) intel(0):     000f010380191278eaed7591574f8b26
[ 31432.624] (II) intel(0):     21505421080001010101010101010101
[ 31432.624] (II) intel(0):     01010101010128150040410026301888
[ 31432.624] (II) intel(0):     3600f6b900000018ed10004041002630
[ 31432.624] (II) intel(0):     18883600f6b9000000180000000f0061
[ 31432.624] (II) intel(0):     43326143280f01004ca3584a000000fe
[ 31432.624] (II) intel(0):     004c544e313231584a2d4c30370a0000
[ 31432.624] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "320x180" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "320x180" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "360x202" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "360x202" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "432x243" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "432x243" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "480x270" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "480x270" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "512x288" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "512x288" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "640x360" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "640x360" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "684x384" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "684x384" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "800x450" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "800x450" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "960x540" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "960x540" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "1024x576" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "1024x576" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "640x400" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "640x400" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "700x450" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "700x450" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "840x525" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "840x525" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "960x600" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Not using default mode "960x600" (doublescan mode not supported)
[ 31432.624] (II) intel(0): Printing probed modes for output LVDS-1
[ 31432.624] (II) intel(0): Modeline "1024x768"x50.0   54.16  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (40.3 kHz eP)
[ 31432.624] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[ 31432.624] (II) intel(0): Modeline "1024x768"x40.0   43.33  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (32.2 kHz e)
[ 31432.624] (II) intel(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[ 31432.624] (II) intel(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[ 31432.624] (II) intel(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[ 31432.624] (II) intel(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[ 31432.624] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[ 31432.624] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[ 31432.624] (II) intel(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[ 31432.624] (II) intel(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[ 31432.624] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[ 31432.624] (II) intel(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[ 31432.624] (II) intel(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[ 31432.624] (II) intel(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[ 31432.624] (II) intel(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[ 31432.635] (II) intel(0): EDID for output VGA-1
[ 31432.635] (II) intel(0): Output LVDS-1 connected
[ 31432.635] (II) intel(0): Output VGA-1 disconnected
[ 31432.635] (II) intel(0): Using exact sizes for initial modes
[ 31432.635] (II) intel(0): Output LVDS-1 using initial mode 1024x768 +0+0
[ 31432.635] (II) intel(0): Kernel page flipping support detected, enabling
[ 31432.635] (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
[ 31432.635] (==) intel(0): DPI set to (96, 96)
[ 31432.635] (II) Loading sub module "fb"
[ 31432.635] (II) LoadModule: "fb"
[ 31432.635] (II) Module "fb" already built-in
[ 31432.635] (II) Loading sub module "dri2"
[ 31432.635] (II) LoadModule: "dri2"
[ 31432.635] (II) Module "dri2" already built-in
[ 31432.635] (II) UnloadModule: "modesetting"
[ 31432.635] (II) Unloading modesetting
[ 31432.635] (II) UnloadModule: "scfb"
[ 31432.635] (II) Unloading scfb
[ 31432.635] (II) UnloadModule: "vesa"
[ 31432.635] (II) Unloading vesa
[ 31432.635] (II) intel(0): Allocated new frame buffer 1024x768 stride 4096, tiled
[ 31432.663] (II) UXA(0): Driver registered support for the following operations:
[ 31432.663] (II)         solid
[ 31432.663] (II)         copy
[ 31432.663] (II)         composite (RENDER acceleration)
[ 31432.663] (II)         put_image
[ 31432.663] (II)         get_image
[ 31432.663] (II) intel(0): [DRI2] Setup complete
[ 31432.663] (II) intel(0): [DRI2]   DRI driver: crocus
[ 31432.663] (II) intel(0): [DRI2]   VDPAU driver: va_gl
[ 31432.663] (==) intel(0): Backing store enabled
[ 31432.663] (==) intel(0): Silken mouse enabled
[ 31432.663] (II) intel(0): Initializing HW Cursor
[ 31432.663] (==) intel(0): DPMS enabled
[ 31432.663] (==) intel(0): Intel XvMC decoder enabled
[ 31432.663] (II) intel(0): Set up textured video
[ 31432.663] (II) intel(0): Set up overlay video
[ 31432.663] (II) intel(0): [XvMC] i965_xvmc driver initialized.
[ 31432.663] (II) intel(0): DRI2: Enabled
[ 31432.663] (II) intel(0): DRI3: Disabled
[ 31432.663] (==) intel(0): hotplug detection: "enabled"
[ 31432.690] (II) Initializing extension Generic Event Extension
[ 31432.690] (II) Initializing extension SHAPE
[ 31432.690] (II) Initializing extension MIT-SHM
[ 31432.691] (II) Initializing extension XInputExtension
[ 31432.691] (II) Initializing extension XTEST
[ 31432.692] (II) Initializing extension BIG-REQUESTS
[ 31432.692] (II) Initializing extension SYNC
[ 31432.693] (II) Initializing extension XKEYBOARD
[ 31432.693] (II) Initializing extension XC-MISC
[ 31432.693] (II) Initializing extension SECURITY
[ 31432.694] (II) Initializing extension XFIXES
[ 31432.694] (II) Initializing extension RENDER
[ 31432.695] (II) Initializing extension RANDR
[ 31432.696] (II) Initializing extension COMPOSITE
[ 31432.696] (II) Initializing extension DAMAGE
[ 31432.696] (II) Initializing extension MIT-SCREEN-SAVER
[ 31432.697] (II) Initializing extension DOUBLE-BUFFER
[ 31432.697] (II) Initializing extension RECORD
[ 31432.698] (II) Initializing extension DPMS
[ 31432.698] (II) Initializing extension Present
[ 31432.699] (II) Initializing extension DRI3
[ 31432.699] (II) Initializing extension X-Resource
[ 31432.699] (II) Initializing extension XVideo
[ 31432.699] (II) Initializing extension XVideo-MotionCompensation
[ 31432.700] (II) Initializing extension GLX
[ 31432.796] (II) AIGLX: Loaded and initialized crocus
[ 31432.796] (II) GLX: Initialized DRI2 GL provider for screen 0
[ 31432.796] (II) Initializing extension XFree86-VidModeExtension
[ 31432.796] (II) Initializing extension XFree86-DGA
[ 31432.797] (II) Initializing extension XFree86-DRI
[ 31432.797] (II) Initializing extension DRI2
[ 31432.797] (II) intel(0): Setting screen physical size to 270 x 203
[ 31432.968] (II) config/udev: Adding input device System keyboard multiplexer (/dev/input/event0)
[ 31432.968] (**) System keyboard multiplexer: Applying InputClass "Evdev keyboard"
[ 31432.968] (**) System keyboard multiplexer: Applying InputClass "libinput keyboard catchall"
[ 31432.968] (II) LoadModule: "libinput"
[ 31432.968] (II) Loading /usr/local/lib/xorg/modules/input/libinput_drv.so
[ 31432.972] (II) Module libinput: vendor="X.Org Foundation"
[ 31432.972]     compiled for 1.21.1.9, module version = 1.3.0
[ 31432.972]     Module class: X.Org XInput Driver
[ 31432.972]     ABI class: X.Org XInput driver, version 24.4
[ 31432.972] (II) Using input driver 'libinput' for 'System keyboard multiplexer'
[ 31432.972] (**) System keyboard multiplexer: always reports core events
[ 31432.972] (**) Option "Device" "/dev/input/event0"
[ 31432.979] (II) event0  - System keyboard multiplexer: is tagged by udev as: Keyboard
[ 31432.980] (II) event0  - System keyboard multiplexer: device is a keyboard
[ 31432.982] (II) event0  - System keyboard multiplexer: device removed
[ 31432.982] (**) Option "config_info" "udev:/dev/input/event0"
[ 31432.982] (II) XINPUT: Adding extended input device "System keyboard multiplexer" (type: KEYBOARD, id 6)
[ 31432.982] (**) Option "xkb_rules" "evdev"
[ 31433.051] (II) event0  - System keyboard multiplexer: is tagged by udev as: Keyboard
[ 31433.052] (II) event0  - System keyboard multiplexer: device is a keyboard
[ 31433.054] (II) config/udev: Adding input device System mouse (/dev/input/event1)
[ 31433.054] (**) System mouse: Applying InputClass "libinput pointer catchall"
[ 31433.054] (II) Using input driver 'libinput' for 'System mouse'
[ 31433.054] (**) System mouse: always reports core events
[ 31433.054] (**) Option "Device" "/dev/input/event1"
[ 31433.057] (II) event1  - System mouse: is tagged by udev as: Mouse
[ 31433.059] (II) event1  - System mouse: device is a pointer
[ 31433.060] (II) event1  - System mouse: device removed
[ 31433.061] (II) libinput: System mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 31433.061] (II) libinput: System mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 31433.061] (II) libinput: System mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 31433.061] (**) Option "config_info" "udev:/dev/input/event1"
[ 31433.061] (II) XINPUT: Adding extended input device "System mouse" (type: MOUSE, id 7)
[ 31433.061] (**) Option "AccelerationScheme" "none"
[ 31433.061] (**) System mouse: (accel) selected scheme none/0
[ 31433.061] (**) System mouse: (accel) acceleration factor: 2.000
[ 31433.061] (**) System mouse: (accel) acceleration threshold: 4
[ 31433.064] (II) event1  - System mouse: is tagged by udev as: Mouse
[ 31433.065] (II) event1  - System mouse: device is a pointer
[ 31433.067] (II) config/udev: Adding input device Control Method Lid Switch (/dev/input/event2)
[ 31433.067] (II) No input driver specified, ignoring this device.
[ 31433.067] (II) This device may have been added with another device file.
[ 31433.067] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
[ 31433.067] (**) Sleep Button: Applying InputClass "Evdev keyboard"
[ 31433.067] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[ 31433.067] (II) Using input driver 'libinput' for 'Sleep Button'
[ 31433.067] (**) Sleep Button: always reports core events
[ 31433.067] (**) Option "Device" "/dev/input/event3"
[ 31433.070] (II) event3  - Sleep Button: is tagged by udev as: Keyboard
[ 31433.071] (II) event3  - Sleep Button: device is a keyboard
[ 31433.073] (II) event3  - Sleep Button: device removed
[ 31433.073] (**) Option "config_info" "udev:/dev/input/event3"
[ 31433.073] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
[ 31433.073] (**) Option "xkb_rules" "evdev"
[ 31433.076] (II) event3  - Sleep Button: is tagged by udev as: Keyboard
[ 31433.076] (II) event3  - Sleep Button: device is a keyboard
[ 31433.078] (II) config/udev: Adding input device AT keyboard (/dev/input/event4)
[ 31433.078] (**) AT keyboard: Applying InputClass "Evdev keyboard"
[ 31433.078] (**) AT keyboard: Applying InputClass "libinput keyboard catchall"
[ 31433.078] (II) Using input driver 'libinput' for 'AT keyboard'
[ 31433.078] (**) AT keyboard: always reports core events
[ 31433.078] (**) Option "Device" "/dev/input/event4"
[ 31433.081] (II) event4  - AT keyboard: is tagged by udev as: Keyboard
[ 31433.082] (II) event4  - AT keyboard: device is a keyboard
[ 31433.087] (II) event4  - AT keyboard: device removed
[ 31433.087] (**) Option "config_info" "udev:/dev/input/event4"
[ 31433.087] (II) XINPUT: Adding extended input device "AT keyboard" (type: KEYBOARD, id 9)
[ 31433.087] (**) Option "xkb_rules" "evdev"
[ 31433.090] (II) event4  - AT keyboard: is tagged by udev as: Keyboard
[ 31433.091] (II) event4  - AT keyboard: device is a keyboard
[ 31433.096] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event5)
[ 31433.096] (**) TPPS/2 IBM TrackPoint: Applying InputClass "libinput pointer catchall"
[ 31433.096] (II) Using input driver 'libinput' for 'TPPS/2 IBM TrackPoint'
[ 31433.096] (**) TPPS/2 IBM TrackPoint: always reports core events
[ 31433.096] (**) Option "Device" "/dev/input/event5"
[ 31433.098] (II) event5  - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse
[ 31433.102] (II) event5  - TPPS/2 IBM TrackPoint: device is a pointer
[ 31433.108] (II) event5  - TPPS/2 IBM TrackPoint: device removed
[ 31433.108] (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 31433.108] (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 31433.108] (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 31433.108] (**) Option "config_info" "udev:/dev/input/event5"
[ 31433.108] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 10)
[ 31433.108] (**) Option "AccelerationScheme" "none"
[ 31433.108] (**) TPPS/2 IBM TrackPoint: (accel) selected scheme none/0
[ 31433.108] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
[ 31433.108] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
[ 31433.111] (II) event5  - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse
[ 31433.114] (II) event5  - TPPS/2 IBM TrackPoint: device is a pointer
 
The Intel driver is loading, and I don't see any errors. It says nothing about exiting, so the X process the log is from is probably still running. Try rebooting and run startx, you should be greeted by FreeBSD's default X window manager (I don't know what it's called).
 
The Intel driver is loading, and I don't see any errors. It says nothing about exiting, so the X process the log is from is probably still running. Try rebooting and run startx, you should be greeted by FreeBSD's default X window manager (I don't know what it's called).
Sorry, startx won't do that if you changed your .xinitrc, which if you did, I would recommend moving to .xinitrc.old or something similar while you're testing.
 
Back
Top