Solved doesn't start

On a laptop intel atom i386 with FreeBSD 10.3, I installed the widows manager of XFCE4, lightweight desktop, I compiled the port cd / usr / ports / x11-wm / xfce4, the compilation is well past, also I installed slim, I would like XFCE4 to automatically unmount, I applied the following command:

% echo "exec /usr/local/bin/startxfce4 --with-ck-launch" > ~/.xinitrc
% echo "#!/bin/sh" > ~/.xsession /* error file not found
% echo "exec /usr/local/bin/startxfce4 --with-ck-launch" >> ~/.xsession
% chmod +x ~/.xsession
==============================================
here the output of startx as a root user
Code:
root@sta-iris:~ # startx
xauth:  file /root/.serverauth.882 does not exist
xauth: (argv):1:  bad display name "sta-iris:0" in "list" command
xauth: (stdin):1:  bad display name "sta-iris:0" in "add" command


X.Org X Server 1.18.4
Release Date: 2016-07-19
X Protocol Version 11, Revision 0
Build Operating System: FreeBSD 10.3-RELEASE i386
Current Operating System: FreeBSD sta-iris 10.3-RELEASE FreeBSD 10.3-RELEASE #0 r297264: Fri Mar 25 03:51:29 UTC 2016     root@releng1.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386
Build Date: 15 August 2017  06:47:50PM
Current version of pixman: 0.34.0
   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: "/var/log/Xorg.0.log", Time: Thu Aug 17 21:51:03 2017
(==) Using default built-in configuration (39 lines)
scfb trace: probe start
scfb trace: probe done
scfb: PreInit 0
scfb: PreInit done
scfb: ScfbScreenInit 0
   bitsPerPixel=4, depth=4, defaultVisual=StaticColor
   mask: 0,0,0, offset: 0,0,0
mmap returns: addr 0x28253000 len 0x1000, fd 5, off 0
scfb: ScfbSave 0
scfb: ScfbSave done
scfb: LoadPalette 0
scfb: ScfbScreenInit done
scfb: SaveScreen 0
scfb: SaveScreen done
/root/.xinitrc: /usr/X11R6/bin/startxfce4: not found
xinit: connection to X server lost

waiting for X server to shut down scfb: ScfbCloseScreen 0
scfb: ScfbRestore 0
scfb: ScfbRestore done
scfb: ScfbCloseScreen done
(II) Server terminated successfully (0). Closing log file.

xauth: (argv):1:  bad display name "sta-iris:0" in "remove" command
root@sta-iris:~ #

Regards
Philippe
 
/root/.xinitrc: /usr/X11R6/bin/startxfce4: not found

Do:
Code:
# nano /home/username/.xinitrc

And put:
Code:
exec startxfce4

save/exit your editor

$ startx <press Enter>
 
hi macondo,
after your recommandations this is my output :
Code:
$ startx
xauth:  file /home/phipo/.serverauth.923 does not exist
xauth: (argv):1:  bad display name "sta-iris:0" in "list" command
xauth: (stdin):1:  bad display name "sta-iris:0" in "add" command


X.Org X Server 1.18.4
Release Date: 2016-07-19
X Protocol Version 11, Revision 0
Build Operating System: FreeBSD 10.3-RELEASE i386
Current Operating System: FreeBSD sta-iris 10.3-RELEASE FreeBSD 10.3-RELEASE #0 r297264: Fri Mar 25 03:51:29 UTC 2016     root@releng1.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386
Build Date: 15 August 2017  06:47:50PM
Current version of pixman: 0.34.0
   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: "/var/log/Xorg.0.log", Time: Thu Aug 17 22:59:13 2017
(==) Using default built-in configuration (39 lines)
scfb trace: probe start
scfb trace: probe done
scfb: PreInit 0
scfb: PreInit done
scfb: ScfbScreenInit 0
   bitsPerPixel=4, depth=4, defaultVisual=StaticColor
   mask: 0,0,0, offset: 0,0,0
mmap returns: addr 0x2825c000 len 0x1000, fd 5, off 0
scfb: ScfbSave 0
scfb: ScfbSave done
scfb: LoadPalette 0
scfb: ScfbScreenInit done
scfb: SaveScreen 0
scfb: SaveScreen done
/usr/local/bin/startxfce4: X server already running on display :0
process 945: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
See the manual page for dbus-uuidgen to correct this issue.
  D-Bus not built with -rdynamic so unable to print a backtrace
Abort trap (core dumped)
xinit: connection to X server lost

waiting for X server to shut down scfb: ScfbCloseScreen 0
scfb: ScfbRestore 0
scfb: ScfbRestore done
scfb: ScfbCloseScreen done
(II) Server terminated successfully (0). Closing log file.

xauth: (argv):1:  bad display name "sta-iris:0" in "remove" command
$
 
Your missing dbus which is needed on first startup of Xfce4.
Either run the service manually like this:
service dbus onestart

Or add it dbus_enable="YES" to your /etc/rc.conf

Code:
D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
See the manual page for dbus-uuidgen to correct this issue.
  D-Bus not built with -rdynamic so unable to print a backtrace
 
hi macondo,
after your recommandations this is my output :
Code:
process 945: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
See the manual page for dbus-uuidgen to correct this issue.
  D-Bus not built with -rdynamic so unable to print a backtrace

Try running this command:

dbus-uuidgen --ensure

That will create /var/lib/dbus/machine-id.
 
Buddy, I might be the wrong guy to advice you being myself a newbie. But OTOH, I have never had such problems installing this OS.
I have an old desktop with a Celeron, the first time, I installed 10.3 i386 - I used this video, no problems, followed it to the letter, literally KISS it. Later, I tried version 11 and then upgraded to 11.1, again no problems.

How-to Install freeBSD 10.3 plus XFCE desktop and basic applications
[link]

Before doing this, because I have an old box which has seen a lot of action, I wiped the hd, (3-4 hours) to eliminate meta-data from before, did it at night, with Grml live cd (left it running all night while sleeping), downloaded the short version (250 mb) burned it to a cd.

www.grml.org

Code:
# shred -fuvz /dev/sda

hda or sda according to what you got.

It wipes the entire hd 3 times and in the 4th round it fills it out with zeros. After you finish, reboot, pull the grml cd out, introduce the Freebsd one and press Enter, and bob's your uncle.

Follow the video, I memorized the video. Must have watched it 10 times :) It is really simple if you take no shortcuts.
 
hi,
i have adding dbus_enable="YES" to your /etc/rc.conf, i dont want to use FreeBSD 11 because is not supported here.
10.3 are avaible !

this is my output with regular user phipo
Code:
$ startx
xauth:  file /home/phipo/.serverauth.880 does not exist
xauth: (argv):1:  bad display name "sta-iris:0" in "list" command
xauth: (stdin):1:  bad display name "sta-iris:0" in "add" command


X.Org X Server 1.18.4
Release Date: 2016-07-19
X Protocol Version 11, Revision 0
Build Operating System: FreeBSD 10.3-RELEASE i386
Current Operating System: FreeBSD sta-iris 10.3-RELEASE FreeBSD 10.3-RELEASE #0 r297264: Fri Mar 25 03:51:29 UTC 2016     root@releng1.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386
Build Date: 15 August 2017  06:47:50PM
Current version of pixman: 0.34.0
   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: "/var/log/Xorg.0.log", Time: Thu Aug 17 23:58:12 2017
(==) Using default built-in configuration (39 lines)
scfb trace: probe start
scfb trace: probe done
scfb: PreInit 0
scfb: PreInit done
scfb: ScfbScreenInit 0
   bitsPerPixel=4, depth=4, defaultVisual=StaticColor
   mask: 0,0,0, offset: 0,0,0
mmap returns: addr 0x2825c000 len 0x1000, fd 5, off 0
scfb: ScfbSave 0
scfb: ScfbSave done
scfb: LoadPalette 0
scfb: ScfbScreenInit done
scfb: SaveScreen 0
scfb: SaveScreen done
/usr/local/bin/startxfce4: X server already running on display :0
xfce4-session: No GPG agent found

(xfce4-session:902): xfce4-session-WARNING **: xfsm_manager_load_session: Something wrong with /home/phipo/.cache/sessions/xfce4-session-sta-iris:0, Does it exist? Permissions issue?

(xfwm4:913): xfwm4-WARNING **: The display does not support the XRender extension.

(xfwm4:913): xfwm4-WARNING **: The display does not support the XComposite extension.

(xfwm4:913): xfwm4-WARNING **: Compositing manager disabled.
The program 'xfce4-panel' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadValue (integer parameter out of range for operation)'.
  (Details: serial 472 error_code 2 request_code 91 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)
The program 'xfce4-panel' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadValue (integer parameter out of range for operation)'.
  (Details: serial 458 error_code 2 request_code 91 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)
The program 'xfce4-panel' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadValue (integer parameter out of range for operation)'.
  (Details: serial 458 error_code 2 request_code 91 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

(xfsettingsd:923): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.vfs.HalVolumeMonitor is not supported
The program 'xfce4-panel' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadValue (integer parameter out of range for operation)'.
  (Details: serial 458 error_code 2 request_code 91 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)
DBG[workspaces.c:456] xfce_workspaces_helper_wait_for_window_manager_destroyed(): found window manager after 1 tries

(xfsettingsd:923): xfsettingsd-WARNING **: Failed to get the _NET_NUMBER_OF_DESKTOPS property.
The program 'xfce4-panel' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadValue (integer parameter out of range for operation)'.
  (Details: serial 458 error_code 2 request_code 91 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)
The program 'xfce4-panel' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadValue (integer parameter out of range for operation)'.
  (Details: serial 458 error_code 2 request_code 91 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

(xfwm4:913): xfwm4-WARNING **: Cannot find visual format on screen 0

(xfwm4:913): xfwm4-WARNING **: Cannot get window attributes for window (0xc00003)

(xfwm4:913): xfwm4-WARNING **: Cannot get window attributes for window (0xc00003)

(xfwm4:913): xfwm4-WARNING **: Cannot get window attributes for window (0xc00003)

(xfwm4:913): xfwm4-WARNING **: Cannot get window attributes for window (0xc00003)

(xfwm4:913): xfwm4-WARNING **: Cannot get window attributes for window (0xc00003)

(xfwm4:913): xfwm4-WARNING **: Cannot get window attributes for window (0x1600003)

(xfdesktop:921): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.vfs.HalVolumeMonitor is not supported

(xfdesktop:921): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.vfs.GPhoto2VolumeMonitor is not supported

** (xfdesktop:921): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed

** (xfdesktop:921): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed

** (xfdesktop:921): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed
The program 'xfdesktop' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadValue (integer parameter out of range for operation)'.
  (Details: serial 539 error_code 2 request_code 91 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

(xfdesktop:960): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.vfs.HalVolumeMonitor is not supported

(xfdesktop:960): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.vfs.GPhoto2VolumeMonitor is not supported

** (xfdesktop:960): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed

** (xfdesktop:960): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed

** (xfdesktop:960): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed
The program 'xfdesktop' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadValue (integer parameter out of range for operation)'.
  (Details: serial 513 error_code 2 request_code 91 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

(xfdesktop:961): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.vfs.HalVolumeMonitor is not supported

(xfdesktop:961): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.vfs.GPhoto2VolumeMonitor is not supported

** (xfdesktop:961): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed

** (xfdesktop:961): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed

** (xfdesktop:961): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed
The program 'xfdesktop' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadValue (integer parameter out of range for operation)'.
  (Details: serial 513 error_code 2 request_code 91 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

(xfdesktop:962): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.vfs.HalVolumeMonitor is not supported

(xfdesktop:962): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.vfs.GPhoto2VolumeMonitor is not supported

** (xfdesktop:962): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed

** (xfdesktop:962): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed

** (xfdesktop:962): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed
The program 'xfdesktop' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadValue (integer parameter out of range for operation)'.
  (Details: serial 513 error_code 2 request_code 91 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

(xfdesktop:963): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.vfs.HalVolumeMonitor is not supported

(xfdesktop:963): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.vfs.GPhoto2VolumeMonitor is not supported

** (xfdesktop:963): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed

** (xfdesktop:963): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed

** (xfdesktop:963): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed
The program 'xfdesktop' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadValue (integer parameter out of range for operation)'.
  (Details: serial 513 error_code 2 request_code 91 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

(xfdesktop:964): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.vfs.HalVolumeMonitor is not supported

(xfdesktop:964): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.vfs.GPhoto2VolumeMonitor is not supported

** (xfdesktop:964): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed

** (xfdesktop:964): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed

** (xfdesktop:964): CRITICAL **: xfdesktop_grid_is_free_position: assertion 'icon_view->priv->grid_layout != NULL' failed
The program 'xfdesktop' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadValue (integer parameter out of range for operation)'.
  (Details: serial 513 error_code 2 request_code 91 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)
^Cxinit: connection to X server lost

waiting for X server to shut down xfwm4: Fatal IO error 35 (Resource temporarily unavailable) on X server :0.0.
xfsettingsd: Fatal IO error 35 (Resource temporarily unavailable) on X server :0.0.
scfb: ScfbCloseScreen 0
scfb: ScfbRestore 0
scfb: ScfbRestore done
scfb: ScfbCloseScreen done
(II) Server terminated successfully (0). Closing log file.

xinit: unexpected signal 2
xauth: (argv):1:  bad display name "sta-iris:0" in "remove" command
$
 
Have you tried doing what I suggested? It tells you what to do right here:

D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
See the manual page for dbus-uuidgen to correct this issue.
 
here
vi /var/log/Xorg.0.log

root@sta-iris:/ # vi /var/log/Xorg.0.log

[ 59.137]
X.Org X Server 1.18.4
org:/usr/obj/usr/src/sys/GENERIC i386
[ 59.138] Build Date: 15 August 2017 06:47:50PM
[ 59.138]
[ 59.138] Current version of pixman: 0.34.0
[ 59.138] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 59.138] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 59.139] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Aug 17 23:58:12 201
7
[ 59.226] (II) Loader magic: 0x8233664
[ 59.226] (II) Module ABI versions:
[ 59.226] X.Org ANSI C Emulation: 0.4
[ 59.226] X.Org Video Driver: 20.0
[ 59.226] X.Org XInput driver : 22.1
[ 59.226] X.Org Server Extension : 9.0
[ 59.227] (--) PCI:*(0:0:2:0) 8086:27ae:1025:022f rev 3, Mem @ 0x58280000/524
288, 0x40000000/268435456, 0x58300000/262144, I/O @ 0x000060f0/8, BIOS @ 0x?????
???/65536
[ 59.227] (--) PCI: (0:0:2:1) 8086:27a6:1025:022f rev 3, Mem @ 0x58200000/524
288
[ 59.227] (==) Using default built-in configuration (39 lines)
[ 59.227] (==) --- Start of built-in configuration ---
[ 59.228] Section "Device"
[ 59.228] Identifier "Builtin Default intel Device 0"
[ 59.228] Driver "intel"
[ 59.228] EndSection
[ 59.228] Section "Screen"
[ 59.228] Identifier "Builtin Default intel Screen 0"
[ 59.228] Device "Builtin Default intel Device 0"
[ 59.228] EndSection
[ 59.228] Section "Device"
[ 59.228] Identifier "Builtin Default modesetting Device 0"
[ 59.228] Driver "modesetting"
[ 59.228] EndSection
[ 59.228] Section "Screen"
[ 59.228] Identifier "Builtin Default modesetting Screen 0"
[ 59.228] Device "Builtin Default modesetting Device 0"
[ 59.228] EndSection
[ 59.228] Section "Device"
[ 59.228] Identifier "Builtin Default scfb Device 0"
[ 59.228] Driver "scfb"
[ 59.228] EndSection
[ 59.228] Section "Screen"
[ 59.228] Identifier "Builtin Default scfb Screen 0"
[ 59.228] Section "Device"
[ 59.229] Identifier "Builtin Default vesa Device 0"
[ 59.229] Driver "vesa"
[ 59.229] EndSection
[ 59.229] Device "Builtin Default vesa Device 0"
[ 59.229] EndSection
[ 59.229] Section "ServerLayout"
[ 59.229] Identifier "Builtin Default Layout"
[ 59.229] Screen "Builtin Default scfb Screen 0"
[ 59.229] Screen "Builtin Default vesa Screen 0"
[ 59.229] EndSection
[ 59.229] (==) --- End of built-in configuration ---
[ 59.229] (**) | |-->Monitor "<default monitor>"
[ 59.230] (**) | |-->Device "Builtin Default intel Device 0"
[ 59.230] (==) No monitor specified for screen "Builtin Default intel Screen
0".
Using a default monitor configuration.
[ 59.230] (**) |-->Screen "Builtin Default modesetting Screen 0" (1)
[ 59.230] (**) | |-->Monitor "<default monitor>"
[ 59.231] (**) | |-->Device "Builtin Default modesetting Device 0"
[ 59.231] (==) No monitor specified for screen "Builtin Default modesetting S
creen 0".
Using a default monitor configuration.
[ 59.231] (**) |-->Screen "Builtin Default scfb Screen 0" (2)
[ 59.231] (**) | |-->Monitor "<default monitor>"
[ 59.232] (**) |-->Screen "Builtin Default vesa Screen 0" (3)
[ 59.232] (**) | |-->Monitor "<default monitor>"
[ 59.232] (**) | |-->Device "Builtin Default vesa Device 0"
[ 59.232] (==) No monitor specified for screen "Builtin Default vesa Screen 0
".
Using a default monitor configuration.
[ 59.232] (==) Automatically adding devices
[ 59.232] (==) Automatically enabling devices
[ 59.232] (==) Not automatically adding GPU devices
[ 59.248] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 59.383] (==) FontPath set to:
/usr/local/share/fonts/misc/,
/usr/local/share/fonts/TTF/,
/usr/local/share/fonts/75dpi/
[ 59.383] (==) ModulePath set to "/usr/local/lib/xorg/modules"
[ 59.383] (II) The server relies on devd to provide the list of input devices
.
If no devices become available, reconfigure devd or disable AutoAddDevic
es.
[ 59.383] (II) LoadModule: "glx"
[ 59.415] (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so
[ 59.529] (II) Module glx: vendor="X.Org Foundation"
[ 59.529] compiled for 1.18.4, module version = 1.0.0
[ 59.541] (WW) Warning, couldn't open module intel
[ 59.541] (II) UnloadModule: "intel"
[ 59.541] (II) Unloading intel
[ 59.542] (EE) Failed to load module "intel" (module does not exist, 0)
[ 59.542] (II) LoadModule: "modesetting"
[ 59.542] (II) Loading /usr/local/lib/xorg/modules/drivers/modesetting_drv.so
[ 59.549] (EE) Failed to load /usr/local/lib/xorg/modules/drivers/modesetting
_drv.so: /usr/local/lib/xorg/modules/drivers/modesetting_drv.so: Undefined symbo
l "shadowUpdatePacked"
[ 59.549] (II) UnloadModule: "modesetting"
[ 59.549] (II) Unloading modesetting
[ 59.549] (EE) Failed to load module "modesetting" (loader failed, 7)
[ 59.549] (II) LoadModule: "scfb"
[ 59.549] (II) Loading /usr/local/lib/xorg/modules/drivers/scfb_drv.so
[ 59.556] (II) Module scfb: vendor="X.Org Foundation"
[ 59.556] compiled for 1.18.4, module version = 0.0.4
[ 59.556] ABI class: X.Org Video Driver, version 20.0
[ 59.556] (II) LoadModule: "vesa"
[ 59.556] (II) Loading /usr/local/lib/xorg/modules/drivers/vesa_drv.so
[ 59.560] (EE) Failed to load /usr/local/lib/xorg/modules/drivers/vesa_drv.so
: /usr/local/lib/xorg/modules/drivers/vesa_drv.so: Undefined symbol "shadowUpdat
ePacked"
[ 59.560] (II) UnloadModule: "vesa"
[ 59.560] (II) Unloading vesa
[ 59.560] (EE) Failed to load module "vesa" (loader failed, 7)
[ 59.560] (II) scfb: driver for wsdisplay framebuffer: scfb
[ 59.561] (--) Using syscons driver with X support (version 2.0)
[ 59.561] (--) using VT number 9

[ 59.571] (WW) Falling back to old probe method for scfb
[ 59.572] scfb trace: probe start
[ 59.572] (II) scfb(0): using default device
[ 59.572] scfb trace: probe done
[ 59.572] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[ 59.572] scfb: PreInit 0
[ 59.572] (II) scfb(0): Using: depth (4), width (80), height (25)
[ 59.572] (II) scfb(0): Creating default Display subsection in Screen section
"Builtin Default scfb Screen 0" for depth/fbbpp 4/4
[ 59.572] (==) scfb(0): Depth 4, (==) framebuffer bpp 4
[ 59.572] (==) scfb(0): Default visual is StaticColor
[ 59.572] (==) scfb(0): Using gamma correction (1.0, 1.0, 1.0)
[ 59.572] (II) scfb(0): Vidmem: 1k
[ 59.573] (==) scfb(0): DPI set to (96, 96)
[ 59.573] (II) Loading sub module "fb"
[ 59.573] (II) LoadModule: "fb"
[ 59.573] (II) Loading /usr/local/lib/xorg/modules/libfb.so
[ 59.576] (II) Module fb: vendor="X.Org Foundation"
[ 59.576] compiled for 1.18.4, module version = 1.0.0
[ 59.576] ABI class: X.Org ANSI C Emulation, version 0.4
[ 59.576] scfb: PreInit done
[ 59.576] scfb: ScfbScreenInit 0
[ 59.576] bitsPerPixel=4, depth=4, defaultVisual=StaticColor
mask: 0,0,0, offset: 0,0,0
[ 59.576] mmap returns: addr 0x2825c000 len 0x1000, fd 5, off 0
[ 59.608] (==) scfb(0): Backing store enabled
[ 59.622] scfb: LoadPalette 0
[ 59.622] scfb: ScfbScreenInit done
[ 59.624] (==) RandR enabled
[ 60.554] (II) config/devd: probing input devices...
[ 60.554] (II) config/devd: adding input device (null) (/dev/kbdmux)
[ 60.554] (II) LoadModule: "kbd"
[ 60.555] (II) Loading /usr/local/lib/xorg/modules/input/kbd_drv.so
[ 60.563] (II) Module kbd: vendor="X.Org Foundation"
[ 60.564] compiled for 1.18.4, module version = 1.9.0
[ 60.564] Module class: X.Org XInput Driver
[ 60.564] ABI class: X.Org XInput driver, version 22.1
[ 60.564] (II) Using input driver 'kbd' for 'kbdmux'
[ 60.564] (**) kbdmux: always reports core events
[ 60.564] (**) kbdmux: always reports core events
[ 60.564] (**) Option "Protocol" "standard"
[ 60.564] (**) Option "XkbRules" "base"
[ 60.564] (**) Option "config_info" "devd:kbdmux"
[ 60.565] (II) XINPUT: Adding extended input device "kbdmux" (type: KEYBOARD,
id 6)
[ 60.582] (II) config/devd: kbdmux is enabled, ignoring device atkbd0
[ 60.583] (II) config/devd: adding input device (null) (/dev/sysmouse)
[ 60.583] (II) LoadModule: "mouse"
[ 60.584] (II) Loading /usr/local/lib/xorg/modules/input/mouse_drv.so
[ 60.606] (II) Module mouse: vendor="X.Org Foundation"
[ 60.606] compiled for 1.18.4, module version = 1.9.2
[ 60.606] Module class: X.Org XInput Driver
[ 60.606] ABI class: X.Org XInput driver, version 22.1
[ 60.606] (II) Using input driver 'mouse' for 'sysmouse'
[ 60.607] (**) sysmouse: always reports core events
[ 60.607] (**) Option "Device" "/dev/sysmouse"
[ 60.607] (==) sysmouse: Protocol: "Auto"
[ 60.607] (**) sysmouse: always reports core events
[ 60.607] (==) sysmouse: Emulate3Buttons, Emulate3Timeout: 50
[ 60.607] (**) Option "config_info" "devd:sysmouse"
[ 60.607] (II) XINPUT: Adding extended input device "sysmouse" (type: MOUSE,
id 7)
[ 60.608] (**) sysmouse: (accel) keeping acceleration scheme 1
[ 60.608] (**) sysmouse: (accel) acceleration profile 0
[ 60.608] (**) sysmouse: (accel) acceleration factor: 2.000
[ 60.608] (**) sysmouse: (accel) acceleration threshold: 4
[ 60.608] (II) sysmouse: SetupAuto: hw.iftype is 4, hw.model is 0
[ 60.608] (II) sysmouse: SetupAuto: protocol is SysMouse
[ 60.608] (II) config/devd: device /dev/ums0 already opened
[ 60.685] (II) config/devd: adding input device Mouse (/dev/psm0)
[ 60.686] (II) Using input driver 'mouse' for 'Mouse'
[ 60.686] (**) Mouse: always reports core events
[ 60.686] (**) Option "Device" "/dev/psm0"
[ 60.686] (==) Mouse: Protocol: "Auto"
[ 60.686] (**) Mouse: always reports core events
[ 60.763] (==) Mouse: Emulate3Buttons, Emulate3Timeout: 50
[ 60.764] (**) Mouse: ZAxisMapping: buttons 4 and 5
[ 60.764] (**) Mouse: Buttons: 5
[ 60.764] (**) Option "config_info" "devd:psm0"
[ 60.764] (II) XINPUT: Adding extended input device "Mouse" (type: MOUSE, id
8)
[ 60.764] (**) Mouse: (accel) keeping acceleration scheme 1
[ 60.764] (**) Mouse: (accel) acceleration profile 0
[ 60.764] (**) Mouse: (accel) acceleration factor: 2.000
[ 60.764] (**) Mouse: (accel) acceleration threshold: 4
[ 60.792] (II) Mouse: SetupAuto: hw.iftype is 3, hw.model is 0
[ 60.792] (II) Mouse: SetupAuto: protocol is PS/2
[ 61.250] (II) Mouse: ps2EnableDataReporting: succeeded
[ 61.280] scfb: SaveScreen 0
[ 61.280] scfb: SaveScreen done
[ 91.881] (II) config/devd: terminating backend...
[ 91.882] (II) UnloadModule: "mouse"
[ 91.882] (II) UnloadModule: "mouse"
[ 91.882] (II) UnloadModule: "kbd"
[ 91.883] scfb: ScfbCloseScreen 0
[ 91.883] scfb: ScfbRestore 0
[ 91.883] scfb: ScfbRestore done
[ 91.883] scfb: ScfbCloseScreen done
[ 91.901] (II) Server terminated successfully (0). Closing log file.
 
philo: you have to put dbus_enable, hald_enable, slim or whatever DM_enable in your /etc/rc.conf.
All this, is in the video. Do yourself a favor and watch the video. :)

XFCE4 is no window manager, and it is not light for your hardware, is uses ~90 MB RAM - your hardware is pretty light, how much RAM, 1 GB?
you are having problems with it:

"The program 'xfce4-panel' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadValue (integer parameter out of range for operation)'.
(Details: serial 472 error_code 2 request_code 91 minor_code 0)
(Note to programmers: normally, X errors are reported asynchronously;
that is, you will receive the error a while after causing it."

Get out of Dodge, and install something lite, like IceWM, JWM, or Fluxbox.

Sometimes, the longest way ends up being the shortest.
 
When I look at your first post I do not make an .xinitrc file for Xfce4. Xfce4 will start without .xinitrc. Simply use startxfce4.

I wonder if policy-kit is messing you up. Look at the script file /usr/local/bin/startxfce. It starts ck-launch. So maybe you are double loading it.

I would delete .xinitrc and use only startxfce if that is what desktop you are using.

Good News philo_neo FreeBSD 11 is now supported here. Has been since October 2016.
 
I am trying to configure two system, I am on the distribution 10.3 or I have just been told that the 11 is support so I will switch everything to version 11.1
 
Hello, I switch to FreeBSD version 11.1, then I compiled xfce4, but I have errors!
Here is the main output:

Code:
$ startx
xauth:  file /home/phipo/.serverauth.869 does not exist
xauth: (argv):1:  bad display name "sta-iris:0" in "list" command
xauth: (stdin):1:  bad display name "sta-iris:0" in "add" command


X.Org X Server 1.18.4
Release Date: 2016-07-19
X Protocol Version 11, Revision 0
Build Operating System: FreeBSD 11.1-RELEASE i386
Current Operating System: FreeBSD sta-iris 11.1-RELEASE FreeBSD 11.1-RELEASE #0 r321309: Fri Jul 21 04:10:47 UTC 2017     root@releng2.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386
Build Date: 19 August 2017  07:55:28PM
Current version of pixman: 0.34.0
   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: "/var/log/Xorg.0.log", Time: Thu Aug 24 18:31:59 2017
(==) Using default built-in configuration (39 lines)
scfb trace: probe start
scfb trace: probe done
failed to set mtrr: Invalid argument
/home/phipo/.xinitrc: /usr/X11R6/bin/startxfce4: not found
xinit: connection to X server lost

waiting for X server to shut down failed to unset mtrr: No such file or directory
(II) Server terminated successfully (0). Closing log file.

xauth: (argv):1:  bad display name "sta-iris:0" in "remove" command
$ su
Password:
root@sta-iris:/usr/home/phipo #
the /var/log/Xorg.0.log file
Code:
root@sta-iris:/usr/home/phipo #  vi /var/log/Xorg.0.log
[   106.207]
X.Org X Server 1.18.4
org:/usr/obj/usr/src/sys/GENERIC i386
[   106.208] Build Date: 19 August 2017  07:55:28PM
[   106.208]
[   106.208] Current version of pixman: 0.34.0
[   106.208]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[   106.208] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   106.209] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Aug 24 18:31:59 201
7
[   106.210] (II) Loader magic: 0x8213b20
[   106.210] (II) Module ABI versions:
[   106.210]    X.Org ANSI C Emulation: 0.4
[   106.210]    X.Org Video Driver: 20.0
[   106.210]    X.Org XInput driver : 22.1
[   106.210]    X.Org Server Extension : 9.0
[   106.210] (--) PCI:*(0:0:2:0) 8086:27ae:1025:022f rev 3, Mem @ 0x58280000/524
288, 0x40000000/268435456, 0x58300000/262144, I/O @ 0x000060f0/8, BIOS @ 0x?????
???/65536
[   106.211] (--) PCI: (0:0:2:1) 8086:27a6:1025:022f rev 3, Mem @ 0x58200000/524
288
[   106.211] (==) Using default built-in configuration (39 lines)
[   106.211] (==) --- Start of built-in configuration ---
[   106.211]    Section "Device"
[   106.211]            Identifier      "Builtin Default intel Device 0"
[   106.211]            Driver  "intel"
[   106.211]    EndSection
[   106.211]    Section "Screen"
[   106.211]            Identifier      "Builtin Default intel Screen 0"
[   106.211]            Device  "Builtin Default intel Device 0"
[   106.211]    EndSection
[   106.211]    Section "Device"
[   106.211]            Identifier      "Builtin Default modesetting Device 0"
[   106.211]            Driver  "modesetting"
[   106.211]    EndSection
[   106.211]    Section "Screen"
[   106.211]            Identifier      "Builtin Default modesetting Screen 0"
[   106.211]            Device  "Builtin Default modesetting Device 0"
[   106.212]    EndSection
[   106.212]    Section "Device"
[   106.212]            Identifier      "Builtin Default scfb Device 0"
[   106.212]            Driver  "scfb"
[   106.212]    EndSection
[   106.212]    Section "Screen"
[   106.212]            Identifier      "Builtin Default scfb Screen 0"
[   106.212]    Section "Device"
[   106.212]            Identifier      "Builtin Default vesa Device 0"
[   106.212]            Driver  "vesa"
[   106.212]    EndSection
[   106.212]            Device  "Builtin Default vesa Device 0"
[   106.212]    EndSection
[   106.212]    Section "ServerLayout"
[   106.212]            Identifier      "Builtin Default Layout"
[   106.212]            Screen  "Builtin Default scfb Screen 0"
[   106.212]            Screen  "Builtin Default vesa Screen 0"
[   106.212]    EndSection
[   106.212] (==) --- End of built-in configuration ---
[   106.213] (**) |   |-->Monitor "<default monitor>"
[   106.213] (**) |   |-->Device "Builtin Default intel Device 0"
[   106.213] (==) No monitor specified for screen "Builtin Default intel Screen
0".
        Using a default monitor configuration.
[   106.213] (**) |-->Screen "Builtin Default modesetting Screen 0" (1)
[   106.213] (**) |   |-->Monitor "<default monitor>"
[   106.214] (**) |   |-->Device "Builtin Default modesetting Device 0"
[   106.214] (==) No monitor specified for screen "Builtin Default modesetting S
creen 0".
        Using a default monitor configuration.
[   106.214] (**) |-->Screen "Builtin Default scfb Screen 0" (2)
[   106.214] (**) |   |-->Monitor "<default monitor>"
[   106.214] (**) |-->Screen "Builtin Default vesa Screen 0" (3)
[   106.214] (**) |   |-->Monitor "<default monitor>"
[   106.215] (**) |   |-->Device "Builtin Default vesa Device 0"
[   106.215] (==) No monitor specified for screen "Builtin Default vesa Screen 0
".
        Using a default monitor configuration.
[   106.215] (==) Automatically adding devices
[   106.215] (==) Automatically enabling devices
[   106.215] (==) Not automatically adding GPU devices
[   106.215] (==) Max clients allowed: 256, resource mask: 0x1fffff
[   106.215] (==) 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/
[   106.215] (==) ModulePath set to "/usr/local/lib/xorg/modules"
[   106.215] (II) The server relies on devd to provide the list of input devices
.
        If no devices become available, reconfigure devd or disable AutoAddDevic
es.
[   106.215] (II) LoadModule: "glx"
[   106.216] (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so
[   106.221] (II) Module glx: vendor="X.Org Foundation"
[   106.221]    compiled for 1.18.4, module version = 1.0.0
[   106.221]    ABI class: X.Org Server Extension, version 9.0
[   106.221] (==) AIGLX enabled
[   106.221] (II) LoadModule: "intel"
[   106.223] (WW) Warning, couldn't open module intel
[   106.223] (II) UnloadModule: "intel"
[   106.223] (II) Unloading intel
[   106.223] (EE) Failed to load module "intel" (module does not exist, 0)
[   106.223] (II) LoadModule: "modesetting"
[   106.223] (II) Loading /usr/local/lib/xorg/modules/drivers/modesetting_drv.so
[   106.223] (II) Module modesetting: vendor="X.Org Foundation"
[   106.223]    compiled for 1.18.4, module version = 1.18.4
[   106.223]    Module class: X.Org Video Driver
[   106.223]    ABI class: X.Org Video Driver, version 20.0
[   106.224] (II) LoadModule: "scfb"
[   106.224] (II) Loading /usr/local/lib/xorg/modules/drivers/scfb_drv.so
[   106.224] (II) Module scfb: vendor="X.Org Foundation"
[   106.224]    compiled for 1.18.4, module version = 0.0.4
[   106.224]    ABI class: X.Org Video Driver, version 20.0
[   106.224] (II) LoadModule: "vesa"
[   106.224] (II) Loading /usr/local/lib/xorg/modules/drivers/vesa_drv.so
[   106.225] (II) Module vesa: vendor="X.Org Foundation"
[   106.225]    compiled for 1.18.4, module version = 2.3.4
[   106.225]    Module class: X.Org Video Driver
[   106.225]    ABI class: X.Org Video Driver, version 20.0
[   106.225] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[   106.225] (II) scfb: driver for wsdisplay framebuffer: scfb
[   106.225] (II) VESA: driver for VESA chipsets: vesa
[   106.225] (--) Using syscons driver with X support (version 2.0)
[   106.225] (--) using VT number 9

[   106.256] (EE) open /dev/dri/card0: No such file or directory
[   106.256] (WW) Falling back to old probe method for modesetting
[   106.256] (EE) open /dev/dri/card0: No such file or directory
[   106.256] (WW) Falling back to old probe method for scfb
[   106.256] scfb trace: probe start
[   106.257] (EE) Screen 0 deleted because of no matching config section.
[   106.257] (II) UnloadModule: "modesetting"
[   106.257] (II) Loading /usr/local/lib/xorg/modules/libvbe.so
[   106.258] (II) Module vbe: vendor="X.Org Foundation"
[   106.258]    compiled for 1.18.4, module version = 1.1.0
[   106.258]    ABI class: X.Org Video Driver, version 20.0
[   106.258] (II) Loading sub module "int10"
[   106.258] (II) LoadModule: "int10"
[   106.258] (II) Loading /usr/local/lib/xorg/modules/libint10.so
[   106.259] (II) Module int10: vendor="X.Org Foundation"
[   106.259]    compiled for 1.18.4, module version = 1.0.0
[   106.259]    ABI class: X.Org Video Driver, version 20.0
[   106.259] (II) VESA(0): initializing int10
[   106.264] (II) VESA(0): Bad V_BIOS checksum
[   106.264] (II) VESA(0): Primary V_BIOS segment is: 0xc000
[   106.264] (II) VESA(0): VESA BIOS detected
[   106.264] (II) VESA(0): VESA VBE Version 3.0
[   106.264] (II) VESA(0): VESA VBE Total Mem: 7872 kB
[   106.264] (II) VESA(0): VESA VBE OEM: Intel(r) 82945GM Chipset Family Graphic
s Chip Accelerated VGA BIOS
[   106.264] (II) VESA(0): VESA VBE OEM Software Rev: 1.0
[   106.265] (II) VESA(0): VESA VBE OEM Vendor: Intel Corporation
[   106.265] (II) VESA(0): VESA VBE OEM Product: Intel(r) 82945GM Chipset Family
 Graphics Controller
[   106.265] (II) VESA(0): VESA VBE OEM Product Rev: Hardware Version 0.0
[   106.289] (II) VESA(0): Creating default Display subsection in Screen section
[   106.289] (==) VESA(0): RGB weight 888
[   106.289] (==) VESA(0): Default visual is TrueColor
[   106.289] (==) VESA(0): Using gamma correction (1.0, 1.0, 1.0)
[   106.291] (II) VESA(0): VESA VBE DDC Level 2
[   106.291] (II) VESA(0): VESA VBE DDC transfer in appr. 1 sec.
[   106.303] (II) VESA(0): VESA VBE DDC read successfully
[   106.304] (II) VESA(0): Manufacturer: AUO  Model: 30d2  Serial#: 0
[   106.304] (II) VESA(0): Year: 2008  Week: 1
[   106.304] (II) VESA(0): EDID Version: 1.3
[   106.304] (II) VESA(0): Digital Display Input
[   106.304] (II) VESA(0): Max Image Size [cm]: horiz.: 22  vert.: 13
[   106.304] (II) VESA(0): Gamma: 2.20
[   106.304] (II) VESA(0): No DPMS capabilities specified
[   106.304] (II) VESA(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[   106.304] (II) VESA(0): First detailed timing is preferred mode
[   106.304] (II) VESA(0): redX: 0.588 redY: 0.351   greenX: 0.342 greenY: 0.567
[   106.304] (II) VESA(0): blueX: 0.158 blueY: 0.123   whiteX: 0.313 whiteY: 0.3
[   106.304] (II) VESA(0): Supported detailed timing:
[   106.304] (II) VESA(0): clock: 52.0 MHz   Image Size:  223 x 125 mm
[   106.304] (II) VESA(0): h_active: 1024  h_sync: 1048  h_sync_end 1184 h_blank
_end 1344 h_border: 0
[   106.304] (II) VESA(0): v_active: 600  v_sync: 603  v_sync_end 604 v_blanking
: 644 v_border: 0
[   106.304] (II) VESA(0): Unknown vendor-specific block f
[   106.304] (II) VESA(0):  AUO
[   106.304] (II) VESA(0):  B101AW03 V0
[   106.304] (II) VESA(0): EDID (in hex):
[   106.304] (II) VESA(0):      00ffffffffffff0006afd23000000000
[   106.304] (II) VESA(0):      0112010380160d780ab9a59659579128
[   106.305] (II) VESA(0):      1f505400000001010101010101010101
[   106.305] (II) VESA(0):      0101010101015014004041582c201888
[   106.305] (II) VESA(0):      3100df7d000000180000000f00000000
[   106.305] (II) VESA(0):      00000000000000000020000000fe0041
[   106.305] (II) VESA(0):      554f0a202020202020202020000000fe
[   106.305] (II) VESA(0):      004231303141573033205630200a003c
[   106.305] (II) VESA(0): EDID vendor "AUO", prod id 12498
[   106.305] (II) VESA(0): Printing DDC gathered Modelines:
[   106.305] (II) VESA(0): Modeline "1024x600"x0.0   52.00  1024 1048 1184 1344
 600 603 604 644 -hsync -vsync (38.7 kHz eP)
[   106.305] (II) VESA(0): Searching for matching VESA mode(s):
[   106.305] Mode: 160 (0x0)
[   106.305]    ModeAttributes: 0x0
[   106.305]    WinAAttributes: 0x0
[   106.306]    WinBAttributes: 0x0
[   106.306]    WinGranularity: 0
[   106.306]    WinSize: 0
[   106.306]    WinASegment: 0x0
[   106.306]    WinBSegment: 0x0
[   106.306]    WinFuncPtr: 0x0
[   106.306]    BytesPerScanline: 0
[   106.306]    XResolution: 0
[   106.306]    YResolution: 0
[   106.306]    XCharSize: 0
[   106.306]    YCharSize: 0
[   106.306]    NumberOfPlanes: 0
[   106.306]    BitsPerPixel: 0
[   106.306]    NumberOfBanks: 0
[   106.306]    MemoryModel: 0
[   106.306]    BankSize: 0
[   106.306]    NumberOfImages: 0
[   106.306]    RedMaskSize: 0
[   106.306]    RedFieldPosition: 0
[   106.306]    GreenMaskSize: 0
[   106.306]    GreenFieldPosition: 0
[   106.306]    BlueMaskSize: 0
[   106.306]    BlueFieldPosition: 0
[   106.306]    RsvdMaskSize: 0
[   106.306]    RsvdFieldPosition: 0
[   106.306]    DirectColorModeInfo: 0
[   106.306]    PhysBasePtr: 0x0
[   106.306]    LinBytesPerScanLine: 0
[   106.306]    BnkNumberOfImagePages: 0
[   106.306]    LinNumberOfImagePages: 0
[   106.306]    LinRedMaskSize: 0
[   106.306]    LinRedFieldPosition: 0
[   106.307]    LinGreenMaskSize: 0
[   106.307]    LinGreenFieldPosition: 0
[   106.307]    LinBlueMaskSize: 0
[   106.307]    LinBlueFieldPosition: 0
[   106.307]    LinRsvdMaskSize: 0
[   106.307]    LinRsvdFieldPosition: 0
[   106.307]    MaxPixelClock: 0
[   106.307] Mode: 161 (0x0)
[   106.307]    ModeAttributes: 0x0
[   106.307]    WinAAttributes: 0x0
[   106.307]    WinBAttributes: 0x0
[   106.307]    WinGranularity: 0
[   106.307]    WinSize: 0
[   106.307]    WinASegment: 0x0
[   106.307]    WinBSegment: 0x0
[   106.307]    WinFuncPtr: 0x0
[   106.307]    BytesPerScanline: 0
[   106.307]    XResolution: 0
[   106.307]    YResolution: 0
[   106.308]    XCharSize: 0
[   106.308]    YCharSize: 0
[   106.308]    NumberOfPlanes: 0
[   106.308]    BitsPerPixel: 0
[   106.308]    NumberOfBanks: 0
[   106.308]    MemoryModel: 0
[   106.308]    BankSize: 0
[   106.308]    NumberOfImages: 0
[   106.308]    RedMaskSize: 0
[   106.308]    RedFieldPosition: 0
[   106.308]    GreenMaskSize: 0
[   106.308]    GreenFieldPosition: 0
[   106.308]    BlueMaskSize: 0
[   106.308]    BlueFieldPosition: 0
[   106.308]    RsvdMaskSize: 0
[   106.308]    RsvdFieldPosition: 0
[   106.308]    DirectColorModeInfo: 0
[   106.308]    PhysBasePtr: 0x0
[   106.308]    LinBytesPerScanLine: 0
[   106.308]    BnkNumberOfImagePages: 0
[   106.308]    LinNumberOfImagePages: 0
[   106.308]    LinRedMaskSize: 0
[   106.308]    LinRedFieldPosition: 0
[   106.308]    LinGreenMaskSize: 0
[   106.308]    LinGreenFieldPosition: 0
[   106.308]    LinBlueMaskSize: 0
[   106.308]    LinBlueFieldPosition: 0
[   106.308]    LinRsvdMaskSize: 0
[   106.308]    LinRsvdFieldPosition: 0
[   106.308]    MaxPixelClock: 0
[   106.309] Mode: 162 (0x0)
[   106.309]    ModeAttributes: 0x0
[   106.309]    WinAAttributes: 0x0
[   106.309]    WinBAttributes: 0x0
[   106.309]    WinGranularity: 0
[   106.309]    WinSize: 0
[   106.309]    WinASegment: 0x0
[   106.309]    WinBSegment: 0x0
[   106.309]    WinFuncPtr: 0x0
[   106.309]    BytesPerScanline: 0
[   106.309]    XResolution: 0
[   106.309]    YResolution: 0
[   106.309]    XCharSize: 0
[   106.309]    YCharSize: 0
[   106.309]    NumberOfPlanes: 0
[   106.309]    BitsPerPixel: 0
[   106.309]    NumberOfBanks: 0
[   106.309]    MemoryModel: 0
[   106.309]    BankSize: 0
[   106.309]    NumberOfImages: 0
[   106.309]    RedMaskSize: 0
[   106.309]    RedFieldPosition: 0
[   107.233] (II) Using input driver 'mouse' for 'Mouse'
[   107.233] (**) Mouse: always reports core events
[   107.234] (**) Option "Device" "/dev/psm0"
[   107.234] (==) Mouse: Protocol: "Auto"
[   107.234] (**) Mouse: always reports core events
[   107.313] (==) Mouse: Emulate3Buttons, Emulate3Timeout: 50
[   107.313] (**) Mouse: ZAxisMapping: buttons 4 and 5
[   107.313] (**) Mouse: Buttons: 5
[   107.313] (**) Option "config_info" "devd:psm0"
[   107.314] (II) XINPUT: Adding extended input device "Mouse" (type: MOUSE, id
8)
[   107.314] (**) Mouse: (accel) keeping acceleration scheme 1
[   107.314] (**) Mouse: (accel) acceleration profile 0
[   107.314] (**) Mouse: (accel) acceleration factor: 2.000
[   107.314] (**) Mouse: (accel) acceleration threshold: 4
[   107.343] (II) Mouse: SetupAuto: hw.iftype is 3, hw.model is 0
[   107.343] (II) Mouse: SetupAuto: protocol is PS/2
[   107.802] (II) Mouse: ps2EnableDataReporting: succeeded
[   107.883] (II) config/devd: terminating backend...
[   107.884] (II) UnloadModule: "mouse"
[   107.884] (II) UnloadModule: "mouse"
[   107.884] (II) UnloadModule: "kbd"
[   107.973] (II) Server terminated successfully (0). Closing log file.
 
Back
Top