How do you configure X without xorg.conf files?

I have a Vaio laptop PCG-9RFL. In graphical mode the screen size is not fully utilized such that I have black blank space on the screen edges. All of the instructions say to update or edit /etc/X11/xorg.conf as in the case of fonts as seen in this page: https://www.freebsd.org/doc/handbook/x-fonts.html. There is no file to edit in my case. Using the X -configure is outdated according to this page: https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.html. I have not used FreeBSD in years. Last time I did using the command X- configure was how I remembered adjusting graphics. Do I just need to generate a xorg.conf.new and put it in place after I edit it? Or is there another way to do this now? The Handbook says to use /usr/local/etc/X11/xorg.conf.d/ now, but my directory is empty. This all amounts to bad graphics and fonts.
 
If autoconfiguration of Xorg is not sufficient, it's perfectly legal to use custom config files in /usr/local/etc/X11/xorg.conf.d/.

but my directory is empty
You have to create the files there by hand. Name is arbitrary, extension has to be '.conf'.

I have one for the video driver and one for the font paths.
Code:
$ ls /usr/local/etc/X11/xorg.conf.d/
driver.conf fonts.conf

Use minimal files and configure only the stuff you really need.
My driver file for example looks like this:
Code:
$ cat /usr/local/etc/X11/xorg.conf.d/driver.conf
Section "Device"
  Identifier "Intel Graphics"
  Driver     "intel"
EndSection

Edit: Yes, i know. One should use the modesetting driver instead of intel, but i have redrawing problems using the former.
 
The Handbook says to use /usr/local/etc/X11/xorg.conf.d/ now, but my directory is empty.
You already got the answer, I want to add a the following:

A directory named *.d below /etc or /usr/local/etc is always meant for locally (site-local) created configuration or script fragments that are automatically combined by reading and concatenating (or executing) all files in that directory. So it's pretty common that you create new files in such directories.
 
That advice helped a bit. The first thing that I learned was that I was using the wrong driver. Always good to identify your video card correctly. When I edit /etc/rc.conf with the line
Code:
kld_list="/boot/modules/radeonkms.ko"
, my screen dramatically improves to use the full screen. However, I lose mouse functionality when I enter X for some odd reason. I created a /usr/local/etc/X11/xorg.conf.d/mouse0-buttons.conf that looks like this:
Code:
Section "InputDevice"
    Identifier    "Mouse0"
    Driver        "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/sysmouse"
    Option        "ZAxisMapping" "4 5 6 7"
    # Option    "Buttons" "7"
EndSection
However, this did not seem to work. Do not know why the video driver affects the mouse. Thanks in advance for the advice and help as always.
 
That was good to know, but it did not work. I have a file /usr/local/etc/X11/xorg.conf.d/driver-radeon.conf that reads:
Code:
Section "Device"
    Identifier    "Card0"
    Driver        "radeon"
EndSection
I also created another /usr/local/etc/X11/xorg.conf.d/touchpad0 that reads:
Code:
Section "InputDevice"
    Identifier    "Touchpad0"
    Driver        "synaptics"
    Option        "Protocol" "psm"
    Option        "Device" "/dev/psm0"
EndSection
Could it be that the touchpad and mouse are conflicting? My laptop is very old, so it has an actual physical switch to turn off the touchpad which I love and use. However, it does not seem to help in this case. When I enter X my mouse does work now even with the radeon driver, but it I can't see the cursor. The buttons are all messed up as well such that I have to hold down the right click button and release it to activate anything. I am not even sure what the left click is actually doing.
I noticed that whether I comment out
Code:
moused_enable="YES"
from /etc/rc.conf or leave it in does not seem to change the results either which way. Maybe it is that I have configured the buttons incorrectly somehow? This does not explain why I can't see the cursor though. It is only a very old Microsoft mouse with wheel and two buttons that was stashed away and barely ever used for years. When I remove the radeon driver from /etc/rc.conf and uncomment out
Code:
moused_enable="YES"
,
Code:
gdm_enable="YES"
, and
Code:
gnome_enable="YES"
the mouse works, but the screen returns to its original issue of not being fully utilized with black blank sections on both sides. The startx is linked to Windowmaker still though, so I am switching between different windows management.
Thanks as always for the help, and on a side note I like your Buckminster Fuller quote. :)
 
After more fiddling today, I commented out the driver files in /usr/local/etc/X11/xorg.conf.d/ and /etc/rc.conf . Now I have no option but full screen even without the drivers when I enter X. I don't understand how that happened. I thought the behavior was tied to the drivers.
 
However, I lose mouse functionality when I enter X for some odd reason. I created a /usr/local/etc/X11/xorg.conf.d/mouse0-buttons.conf that looks like this:
Code:
Section "InputDevice"
    Identifier    "Mouse0"
    Driver        "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/sysmouse"
    Option        "ZAxisMapping" "4 5 6 7"
    # Option    "Buttons" "7"
EndSection
You should not be using InputDevice sections at all. From xorg.conf(5):
Code:
INPUTDEVICE SECTION
       The config file may have multiple InputDevice sections.  Recent X
       servers employ HAL or udev backends for input device enumeration and
       input hotplugging. It is usually not necessary to provide InputDevice
       sections in the xorg.conf if hotplugging is in use (i.e. AutoAddDevices
       is enabled). If hotplugging is enabled, InputDevice sections using the
       mouse, kbd and vmmouse driver will be ignored.
You should remove that section/file and first try without any additional configuration whether your mouse works as intended. Then if there really is something you'd like to configure, use an InputClass section instead, like so:
Code:
Section "InputClass"
    Identifier "My Mouse Settings"
    MatchIsPointer "yes"
    Option "<name>" "<value>"
    ...
EndSection
Make sure your InputClass section does not specify a Driver as that should be picked automatically and due to the recent switch to libinput/udev the mouse driver should no longer be used. InputClass sections can match multiple devices. Above example matches all pointing devices. If you need to further restrict the set of devices your InputClass section applies to, you can do so by using additional MatchXXX directives (see xorg.conf(5) for details). Also check your xorg log file (usually /var/log/Xorg.0.log) for any potential problems.
 
I tried your suggestion which did not seem to work. I visited a great deal of sites yesterday, so there were a lot of changes that I believe complicates this issue.
I tried adding Option "AutoAddDevices" "Off" to ServerFlags as suggested from this site http://www.wonkity.com/~wblock/docs/html/aei.html.
I also tried editing /etc/rc.conf with
Code:
 moused_enable="NO"
and
Code:
 moused_nondefault_enable="NO"
.
I think the problem is that I used the command pciconf -lv , I get this result:
Code:
    vendor    = 'Advanced Micro Devices, Inc. [AMD/ATI]'
    device    = 'RS200M [Radeon IGP 330M/340M/345M/350M]'
    class    = display
    subclass= VGA
This lead me to include the driver in /etc/rc.conf listed above as well as include a file in
/usr/local/etc/X11/xorg.conf.d/driver-radeon.conf :
Code:
 Section "Device"
    Identifier    "Card0"
    Driver        "radeon"
    BusID        "PCI:1:5:0" (On a side note, I can comment this line out or put it in either which way without change.)
EndSection
This was suggestion in https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.html which also noted that while automatic configuration should be attempted first, add files if that fails.
I noticed that everything works except I return to the original problem of not utilizing the full screen,
if I add a file /usr/local/etc/X11/xorg.conf.d/device.conf with this code:
Code:
 Section "Device"
    Identifier    "Card0"
    Driver        "vesa"
    BusID        "PCI:1:5:0"
EndSection
I now think that even though I have an AMD Radeon chip, the vesa driver must be key. I wonder if there is some way to just use the vesa driver
and get full screen and resolution from that driver? Or work along side the radeon driver somehow? If I add the vesa device file that I have to add other files as well. I just have not found the one that gives me full screen and mouse yet.
 
I just wanted to post an update. I am posting this message on my old laptop. I do not have full screen, but it is functional. I even just configured my firewall, and I installed some programming languages. This is why I love FreeBSD. FreeBSD allowed me to salvage a very old laptop as well as serving as a wonderful learning experience. Thank you, FreeBSD! :D
 
I tried adding Option "AutoAddDevices" "Off" to ServerFlags as suggested from this site http://www.wonkity.com/~wblock/docs/html/aei.html.
Please don't do that. That document is dated 2011, a lot of time has passed since then and also some versions of x.org.

I also tried editing /etc/rc.conf with
Code:
 moused_enable="NO"
and
Code:
 moused_nondefault_enable="NO"
.
It seems you are fighting at least two different problems all at once. Take it step by step. The mouse not working is one thing, the graphics driver another.
If moused is running (for USB mice the system should automatically start it independent of moused_enable) your mouse should work on the console. So first step is to check whether moused is actually running and if the mouse works on the console. To find out why something is not working in X.org you really need to check your log file to see which devices are detected and if there are any problems.
 
I cut out the large section of monitor settings. This is the result of:
Code:
 cat /var/log/Xorg.0.org
Code:
[  6058.387] 
X.Org X Server 1.18.4
Release Date: 2016-07-19
[  6058.387] X Protocol Version 11, Revision 0
[  6058.388] Build Operating System: FreeBSD 12.1-RELEASE-p2 i386 
[  6058.388] Current Operating System: FreeBSD gold.colorful.org 12.1-RELEASE-p3 FreeBSD 12.1-RELEASE-p3 GENERIC i386
[  6058.388] Build Date: 03 March 2020  09:20:17AM
[  6058.388]  
[  6058.388] Current version of pixman: 0.38.4
[  6058.388]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[  6058.388] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  6058.388] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Mar 27 08:20:39 2020
[  6058.547] (==) Using config directory: "/usr/local/etc/X11/xorg.conf.d"
[  6058.547] (==) Using system config directory "/usr/local/share/X11/xorg.conf.d"
[  6058.597] (==) No Layout section.  Using the first Screen section.
[  6058.597] (==) No screen section available. Using defaults.
[  6058.597] (**) |-->Screen "Default Screen Section" (0)
[  6058.597] (**) |   |-->Monitor "<default monitor>"
[  6058.620] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
[  6058.620] (**) |   |-->Device "Card0"
[  6058.620] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
[  6058.620] (==) Automatically adding devices
[  6058.620] (==) Automatically enabling devices
[  6058.620] (==) Not automatically adding GPU devices
[  6058.634] (==) Max clients allowed: 256, resource mask: 0x1fffff
[  6058.940] (**) 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/,
    /usr/local/share/fonts/webfonts,
    /usr/local/share/fonts/anonymous-pro,
    /usr/local/share/fonts/urwfonts,
    /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
[  6058.940] (**) ModulePath set to "/usr/local/lib/xorg/modules"
[  6058.940] (II) The server relies on devd to provide the list of input devices.
    If no devices become available, reconfigure devd or disable AutoAddDevices.
[  6058.940] (II) Loader magic: 0x5da010
[  6058.941] (II) Module ABI versions:
[  6058.941]     X.Org ANSI C Emulation: 0.4
[  6058.941]     X.Org Video Driver: 20.0
[  6058.941]     X.Org XInput driver : 22.1
[  6058.941]     X.Org Server Extension : 9.0
[  6058.942] (--) PCI:*(0:1:5:0) 1002:4337:104d:8175 rev 0, Mem @ 0xf0000000/134217728, 0xe0300000/65536, I/O @ 0x0000a000/256, BIOS @ 0x????????/65536
[  6058.942] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[  6058.942] (II) LoadModule: "glx"
[  6058.978] (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so
[  6059.171] (II) Module glx: vendor="X.Org Foundation"
[  6059.171]     compiled for 1.18.4, module version = 1.0.0
[  6059.171]     ABI class: X.Org Server Extension, version 9.0
[  6059.171] (==) AIGLX enabled
[  6059.176] (II) LoadModule: "vesa"
[  6059.177] (II) Loading /usr/local/lib/xorg/modules/drivers/vesa_drv.so
[  6059.186] (II) Module vesa: vendor="X.Org Foundation"
[  6059.186]     compiled for 1.18.4, module version = 2.4.0
[  6059.187]     Module class: X.Org Video Driver
[  6059.187]     ABI class: X.Org Video Driver, version 20.0
[  6059.187] (II) VESA: driver for VESA chipsets: vesa
[  6059.187] (--) Using syscons driver with X support (version 2.0)
[  6059.187] (--) using VT number 9
[  6059.215] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[  6059.215] (II) Loading sub module "vbe"
[  6059.215] (II) LoadModule: "vbe"
[  6059.215] (II) Loading /usr/local/lib/xorg/modules/libvbe.so
[  6059.220] (II) Module vbe: vendor="X.Org Foundation"
[  6059.220]     compiled for 1.18.4, module version = 1.1.0
[  6059.220]     ABI class: X.Org Video Driver, version 20.0
[  6059.221] (II) Loading sub module "int10"
[  6059.221] (II) LoadModule: "int10"
[  6059.221] (II) Loading /usr/local/lib/xorg/modules/libint10.so
[  6059.226] (II) Module int10: vendor="X.Org Foundation"
[  6059.226]     compiled for 1.18.4, module version = 1.0.0
[  6059.226]     ABI class: X.Org Video Driver, version 20.0
[  6059.226] (II) VESA(0): initializing int10
[  6059.227] (II) VESA(0): Primary V_BIOS segment is: 0xc000
[  6059.232] (II) VESA(0): VESA BIOS detected
[  6059.232] (II) VESA(0): VESA VBE Version 2.0
[  6059.232] (II) VESA(0): VESA VBE Total Mem: 65472 kB
[  6059.232] (II) VESA(0): VESA VBE OEM: RADEON IGP 340M 
[  6059.232] (II) VESA(0): VESA VBE OEM Software Rev: 1.0
[  6059.232] (II) VESA(0): VESA VBE OEM Vendor: ATI Technologies Inc.
[  6059.233] (II) VESA(0): VESA VBE OEM Product: MS2 
[  6059.233] (II) VESA(0): VESA VBE OEM Product Rev: 01.00
[  6059.353] (II) VESA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
[  6059.353] (==) VESA(0): Depth 24, (--) framebuffer bpp 32
[  6059.353] (==) VESA(0): RGB weight 888
[  6059.353] (==) VESA(0): Default visual is TrueColor
[  6059.353] (==) VESA(0): Using gamma correction (1.0, 1.0, 1.0)
[  6059.354] (II) Loading sub module "ddc"
[  6059.354] (II) LoadModule: "ddc"
[  6059.354] (II) Module "ddc" already built-in
[  6059.354] (II) VESA(0): VESA VBE DDC supported
[  6059.354] (II) VESA(0): VESA VBE DDC Level none
[  6059.354] (II) VESA(0): VESA VBE DDC transfer in appr. 2 sec.
[  6059.354] (II) VESA(0): VESA VBE DDC read failed
[  6059.355] (II) VESA(0): VESA VBE PanelID read successfully
[  6059.355] (II) VESA(0): PanelID returned panel resolution 1280x800
[  6059.355] (II) VESA(0): Searching for matching VESA mode(s):
[  6059.511] 
[  6059.511] (II) VESA(0): Total Memory: 1023 64KB banks (65472kB)
[  6059.511] (II) VESA(0): <default monitor>: Using hsync range of 29.37-49.31 kHz
[  6059.511] (II) VESA(0): <default monitor>: Using vrefresh range of 56.00-59.91 Hz
[  6059.511] (WW) VESA(0): Unable to estimate virtual size
[  6059.511] (II) VESA(0): Not using built-in mode "1024x768" (no mode of this name)
[  6059.511] (II) VESA(0): Not using built-in mode "800x600" (no mode of this name)
[  6059.511] (II) VESA(0): Not using built-in mode "640x480" (no mode of this name)
[  6059.511] (II) VESA(0): Not using built-in mode "640x400" (no mode of this name)
[  6059.511] (II) VESA(0): Not using built-in mode "640x350" (no mode of this name)
[  6059.511] (II) VESA(0): Not using built-in mode "512x384" (no mode of this name)
[  6059.511] (II) VESA(0): Not using built-in mode "400x300" (no mode of this name)
[  6059.511] (II) VESA(0): Not using built-in mode "320x240" (no mode of this name)
[  6059.511] (II) VESA(0): Not using built-in mode "320x200" (no mode of this name)
[  6059.511] (WW) VESA(0): No valid modes left. Trying less strict filter...
[  6059.511] (II) VESA(0): <default monitor>: Using hsync range of 29.37-49.31 kHz
[  6059.511] (II) VESA(0): <default monitor>: Using vrefresh range of 56.00-59.91 Hz
[  6059.511] (WW) VESA(0): Unable to estimate virtual size
[  6059.511] (II) VESA(0): Not using built-in mode "640x400" (hsync out of range)
[  6059.511] (II) VESA(0): Not using built-in mode "640x350" (hsync out of range)
[  6059.511] (II) VESA(0): Not using built-in mode "512x384" (hsync out of range)
[  6059.511] (II) VESA(0): Not using built-in mode "400x300" (illegal horizontal timings)
[  6059.511] (II) VESA(0): Not using built-in mode "320x240" (illegal horizontal timings)
[  6059.511] (II) VESA(0): Not using built-in mode "320x200" (illegal horizontal timings)
[  6059.511] (--) VESA(0): Virtual size is 1024x768 (pitch 1024)
[  6059.511] (**) VESA(0): *Built-in mode "1024x768"
[  6059.511] (**) VESA(0): *Built-in mode "800x600"
[  6059.512] (**) VESA(0): *Built-in mode "640x480"
[  6059.512] (==) VESA(0): DPI set to (96, 96)
[  6059.512] (**) VESA(0): Using "Shadow Framebuffer"
[  6059.512] (II) Loading sub module "shadow"
[  6059.512] (II) LoadModule: "shadow"
[  6059.512] (II) Loading /usr/local/lib/xorg/modules/libshadow.so
[  6059.513] (II) Module shadow: vendor="X.Org Foundation"
[  6059.513]     compiled for 1.18.4, module version = 1.1.0
[  6059.513]     ABI class: X.Org ANSI C Emulation, version 0.4
[  6059.513] (II) Loading sub module "fb"
[  6059.513] (II) LoadModule: "fb"
[  6059.514] (II) Loading /usr/local/lib/xorg/modules/libfb.so
[  6059.553] (II) Module fb: vendor="X.Org Foundation"
[  6059.553]     compiled for 1.18.4, module version = 1.0.0
[  6059.553]     ABI class: X.Org ANSI C Emulation, version 0.4
[  6059.554] (==) Depth 24 pixmap format is 32 bpp
[  6059.554] (II) Loading sub module "int10"
[  6059.554] (II) LoadModule: "int10"
[  6059.554] (II) Loading /usr/local/lib/xorg/modules/libint10.so
[  6059.554] (II) Module int10: vendor="X.Org Foundation"
[  6059.554]     compiled for 1.18.4, module version = 1.0.0
[  6059.554]     ABI class: X.Org Video Driver, version 20.0
[  6059.554] (II) VESA(0): initializing int10
[  6059.555] (II) VESA(0): Primary V_BIOS segment is: 0xc000
[  6059.555] (II) VESA(0): VESA BIOS detected
[  6059.555] (II) VESA(0): VESA VBE Version 2.0
[  6059.555] (II) VESA(0): VESA VBE Total Mem: 65472 kB
[  6059.555] (II) VESA(0): VESA VBE OEM: RADEON IGP 340M 
[  6059.555] (II) VESA(0): VESA VBE OEM Software Rev: 1.0
[  6059.555] (II) VESA(0): VESA VBE OEM Vendor: ATI Technologies Inc.
[  6059.555] (II) VESA(0): VESA VBE OEM Product: MS2 
[  6059.555] (II) VESA(0): VESA VBE OEM Product Rev: 01.00
[  6059.556] (II) VESA(0): virtual address = 0x21400000, VGAbase = 0x213bb000
    physical address = 0xf0000000, size = 67043328
[  6059.561] (II) VESA(0): Setting up VESA Mode 0x123 (1024x768)
[  6059.613] (==) VESA(0): Default visual is TrueColor
[  6059.650] (==) VESA(0): Backing store enabled
[  6059.662] (==) VESA(0): DPMS enabled
[  6059.664] (==) RandR enabled
[  6059.696] (II) AIGLX: Screen 0 is not DRI2 capable
[  6059.696] (EE) AIGLX: reverting to software rendering
[  6063.399] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[  6063.401] (II) AIGLX: Loaded and initialized swrast
[  6063.401] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[  6064.358] (II) config/devd: probing input devices...
[  6064.358] (II) config/devd: adding input device (null) (/dev/kbdmux)
[  6064.358] (II) LoadModule: "kbd"
[  6064.400] (II) Loading /usr/local/lib/xorg/modules/input/kbd_drv.so
[  6064.405] (II) Module kbd: vendor="X.Org Foundation"
[  6064.405]     compiled for 1.18.4, module version = 1.9.0
[  6064.405]     Module class: X.Org XInput Driver
[  6064.405]     ABI class: X.Org XInput driver, version 22.1
[  6064.405] (II) Using input driver 'kbd' for 'kbdmux'
[  6064.405] (**) kbdmux: always reports core events
[  6064.405] (**) kbdmux: always reports core events
[  6064.405] (**) Option "Protocol" "standard"
[  6064.405] (**) Option "XkbRules" "base"
[  6064.405] (**) Option "XkbModel" "pc105"
[  6064.406] (**) Option "XkbLayout" "us"
[  6064.406] (**) Option "config_info" "devd:kbdmux"
[  6064.406] (II) XINPUT: Adding extended input device "kbdmux" (type: KEYBOARD, id 6)
[  6064.445] (II) config/devd: kbdmux is enabled, ignoring device atkbd0
[  6064.445] (II) config/devd: adding input device (null) (/dev/sysmouse)
[  6064.446] (II) LoadModule: "mouse"
[  6064.446] (II) Loading /usr/local/lib/xorg/modules/input/mouse_drv.so
[  6064.460] (II) Module mouse: vendor="X.Org Foundation"
[  6064.460]     compiled for 1.18.4, module version = 1.9.3
[  6064.461]     Module class: X.Org XInput Driver
[  6064.461]     ABI class: X.Org XInput driver, version 22.1
[  6064.461] (II) Using input driver 'mouse' for 'sysmouse'
[  6064.461] (**) sysmouse: always reports core events
[  6064.461] (**) Option "Device" "/dev/sysmouse"
[  6064.461] (==) sysmouse: Protocol: "Auto"
[  6064.461] (**) sysmouse: always reports core events
[  6064.461] (==) sysmouse: Emulate3Buttons, Emulate3Timeout: 50
[  6064.461] (**) sysmouse: ZAxisMapping: buttons 4 and 5
[  6064.461] (**) sysmouse: Buttons: 5
[  6064.461] (**) Option "config_info" "devd:sysmouse"
[  6064.461] (II) XINPUT: Adding extended input device "sysmouse" (type: MOUSE, id 7)
[  6064.461] (**) sysmouse: (accel) keeping acceleration scheme 1
[  6064.461] (**) sysmouse: (accel) acceleration profile 0
[  6064.461] (**) sysmouse: (accel) acceleration factor: 2.000
[  6064.461] (**) sysmouse: (accel) acceleration threshold: 4
[  6064.462] (II) sysmouse: SetupAuto: hw.iftype is 4, hw.model is 0
[  6064.462] (II) sysmouse: SetupAuto: protocol is SysMouse
[  6064.462] (II) config/devd: device /dev/ums0 already opened
[  6064.515] (II) config/devd: adding input device Mouse (/dev/psm0)
[  6064.516] (II) Using input driver 'mouse' for 'Mouse'
[  6064.516] (**) Mouse: always reports core events
[  6064.516] (**) Option "Device" "/dev/psm0"
[  6064.516] (==) Mouse: Protocol: "Auto"
[  6064.516] (**) Mouse: always reports core events
[  6064.572] (==) Mouse: Emulate3Buttons, Emulate3Timeout: 50
[  6064.572] (**) Mouse: ZAxisMapping: buttons 4 and 5
[  6064.572] (**) Mouse: Buttons: 5
[  6064.572] (**) Option "config_info" "devd:psm0"
[  6064.572] (II) XINPUT: Adding extended input device "Mouse" (type: MOUSE, id 8)
[  6064.572] (**) Mouse: (accel) keeping acceleration scheme 1
[  6064.572] (**) Mouse: (accel) acceleration profile 0
[  6064.572] (**) Mouse: (accel) acceleration factor: 2.000
[  6064.572] (**) Mouse: (accel) acceleration threshold: 4
[  6064.591] (II) Mouse: SetupAuto: hw.iftype is 3, hw.model is 1
[  6064.591] (II) Mouse: SetupAuto: protocol is GlidePointPS/2
[  6065.088] (II) Mouse: ps2EnableDataReporting: succeeded
[  6743.253] (II) config/devd: terminating backend...
[  6744.159] (II) UnloadModule: "mouse"
[  6744.289] (II) UnloadModule: "mouse"
[  6744.289] (II) UnloadModule: "kbd"
 
I cut out the large section of monitor settings. This is the result of:
Code:
 cat /var/log/Xorg.0.org
Code:
[  6058.387]
X.Org X Server 1.18.4
Release Date: 2016-07-19
[...]
[  6064.406] (II) XINPUT: Adding extended input device "kbdmux" (type: KEYBOARD, id 6)
[  6064.461] (II) XINPUT: Adding extended input device "sysmouse" (type: MOUSE, id 7)
[  6064.572] (II) XINPUT: Adding extended input device "Mouse" (type: MOUSE, id 8)
I don't see anything out of the ordinary, other than that you are still using X.Org 1.18.4, which suggests you installed it from the quarterly package repository. Current version is 1.20.7 which comes with a number of changes related to the switch from devd to udev. From the looks of it X.Org auto-detects your keyboard and two mice (sysmouse via moused and PS/2 mouse) just fine, so is your mouse working in that setup?
 
How do I get version 1.20.7? I used the command pkg install xorg. My mouse is working with the VESA driver, but I do not have full screen. If I install the radeon driver, I have full screen and no mouse.
 
How do I get version 1.20.7?
You have to switch packages from quarterly to latest. Here is how:

Create a new file /usr/local/etc/pkg/repos/FreeBSD.conf with the contents
Code:
FreeBSD: {
  url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest"
}
and do pkg update -f.

Then reinstall Xorg.

The sysctl kern.evdev.rcpt_mask=12 stuff i wanted you to try earlier is for 1.20.7. I thought you were using it already.

Thanks as always for the help, and on a side note I like your Buckminster Fuller quote.
Yeah, it's a nice one. :D
 
I don't have a /usr/local/etc/pkg directory. In the /usr/local/etc/ directory, I have a file /usr/local/etc/pkg.conf . How do I get the pkg and repos directory?
 
I was thinking there must be extra software to install for future use. Why the arbitrary data structure then? Why not just drop it in /usr/local/etc?
 
I edited /etc/sysctl.conf with the kern update that you suggested. I put the radeon driver in /usr/local/etc/X11/xorg.conf.d . I also used the radeon driver in /etc/rc.conf . Mouse still did not work.
Code:
[    58.841] 
X.Org X Server 1.20.7
X Protocol Version 11, Revision 0
[    58.841] Build Operating System: FreeBSD 12.1-RELEASE-p3 i386 
[    58.841] Current Operating System: FreeBSD gold.colorful.org 12.1-RELEASE-p3 FreeBSD 12.1-RELEASE-p3 GENERIC i386
[    58.841] Build Date: 21 March 2020  10:28:52AM
[    58.841]  
[    58.841] Current version of pixman: 0.38.4
[    58.841]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[    58.841] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    58.842] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Mar 31 11:07:49 2020
[    59.035] (==) Using config directory: "/usr/local/etc/X11/xorg.conf.d"
[    59.035] (==) Using system config directory "/usr/local/share/X11/xorg.conf.d"
[    59.129] (==) No Layout section.  Using the first Screen section.
[    59.129] (==) No screen section available. Using defaults.
[    59.129] (**) |-->Screen "Default Screen Section" (0)
[    59.129] (**) |   |-->Monitor "<default monitor>"
[    59.130] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
[    59.130] (**) |   |-->Device "Card0"
[    59.130] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
[    59.130] (==) Automatically adding devices
[    59.130] (==) Automatically enabling devices
[    59.130] (==) Not automatically adding GPU devices
[    59.143] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    59.470] (**) 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/,
    /usr/local/share/fonts/webfonts,
    /usr/local/share/fonts/anonymous-pro,
    /usr/local/share/fonts/urwfonts,
    /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
[    59.470] (**) ModulePath set to "/usr/local/lib/xorg/modules"
[    59.470] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
[    59.487] (II) Loader magic: 0x5de010
[    59.487] (II) Module ABI versions:
[    59.487]     X.Org ANSI C Emulation: 0.4
[    59.487]     X.Org Video Driver: 24.1
[    59.487]     X.Org XInput driver : 24.1
[    59.487]     X.Org Server Extension : 10.0
[    59.494] (--) PCI:*(1@0:5:0) 1002:4337:104d:8175 rev 0, Mem @ 0xf0000000/134217728, 0xe0500000/65536, I/O @ 0x0000a000/256, BIOS @ 0x????????/65536
[    59.495] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[    59.495] (II) LoadModule: "glx"
[    59.525] (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so
[    59.729] (II) Module glx: vendor="X.Org Foundation"
[    59.729]     compiled for 1.20.7, module version = 1.0.0
[    59.729]     ABI class: X.Org Server Extension, version 10.0
[    59.745] (II) LoadModule: "radeon"
[    59.746] (II) Loading /usr/local/lib/xorg/modules/drivers/radeon_drv.so
[    59.901] (II) Module radeon: vendor="X.Org Foundation"
[    59.902]     compiled for 1.20.7, module version = 19.1.0
[    59.902]     Module class: X.Org Video Driver
[    59.902]     ABI class: X.Org Video Driver, version 24.1
[    59.902] (II) RADEON: Driver for ATI/AMD Radeon chipsets:
    ATI Radeon Mobility X600 (M24), ATI FireMV 2400,
    ATI Radeon Mobility X300 (M24), ATI FireGL M24 GL,
    ATI Radeon X600 (RV380), ATI FireGL V3200 (RV380),
    ATI Radeon IGP320 (A3), ATI Radeon IGP330/340/350 (A4),
    ATI Radeon 9500, ATI Radeon 9600TX, ATI FireGL Z1, ATI Radeon 9800SE,
    ATI Radeon 9800, ATI FireGL X2, ATI Radeon 9600, ATI Radeon 9600SE,
    ATI Radeon 9600XT, ATI FireGL T2, ATI Radeon 9650, ATI FireGL RV360,
    ATI Radeon 7000 IGP (A4+), ATI Radeon 8500 AIW,
    ATI Radeon IGP320M (U1), ATI Radeon IGP330M/340M/350M (U2),
    ATI Radeon Mobility 7000 IGP, ATI Radeon 9000/PRO, ATI Radeon 9000,
    ATI Radeon X800 (R420), ATI Radeon X800PRO (R420),
    ATI Radeon X800SE (R420), ATI FireGL X3 (R420),
    ATI Radeon Mobility 9800 (M18), ATI Radeon X800 SE (R420),
    ATI Radeon X800XT (R420), ATI Radeon X800 VE (R420),
    ATI Radeon X850 (R480), ATI Radeon X850 XT (R480),
    ATI Radeon X850 SE (R480), ATI Radeon X850 PRO (R480),
    ATI Radeon X850 XT PE (R480), ATI Radeon Mobility M7,
    ATI Mobility FireGL 7800 M7, ATI Radeon Mobility M6,
    ATI FireGL Mobility 9000 (M9), ATI Radeon Mobility 9000 (M9),
    ATI Radeon 9700 Pro, ATI Radeon 9700/9500Pro, ATI FireGL X1,
    ATI Radeon 9800PRO, ATI Radeon 9800XT,
    ATI Radeon Mobility 9600/9700 (M10/M11),
    ATI Radeon Mobility 9600 (M10), ATI Radeon Mobility 9600 (M11),
    ATI FireGL Mobility T2 (M10), ATI FireGL Mobility T2e (M11),
    ATI Radeon, ATI FireGL 8700/8800, ATI Radeon 8500, ATI Radeon 9100,
    ATI Radeon 7500, ATI Radeon VE/7000, ATI ES1000,
    ATI Radeon Mobility X300 (M22), ATI Radeon Mobility X600 SE (M24C),
    ATI FireGL M22 GL, ATI Radeon X800 (R423), ATI Radeon X800PRO (R423),
    ATI Radeon X800LE (R423), ATI Radeon X800SE (R423),
    ATI Radeon X800 XTP (R430), ATI Radeon X800 XL (R430),
    ATI Radeon X800 SE (R430), ATI Radeon X800 (R430),
    ATI FireGL V7100 (R423), ATI FireGL V5100 (R423),
    ATI FireGL unknown (R423), ATI Mobility FireGL V5000 (M26),
    ATI Mobility Radeon X700 XL (M26), ATI Mobility Radeon X700 (M26),
    ATI Radeon X550XTX, ATI Radeon 9100 IGP (A5),
    ATI Radeon Mobility 9100 IGP (U3), ATI Radeon XPRESS 200,
    ATI Radeon XPRESS 200M, ATI Radeon 9250, ATI Radeon 9200,
    ATI Radeon 9200SE, ATI FireMV 2200, ATI Radeon X300 (RV370),
    ATI Radeon X600 (RV370), ATI Radeon X550 (RV370),
    ATI FireGL V3100 (RV370), ATI FireMV 2200 PCIE (RV370),
    ATI Radeon Mobility 9200 (M9+), ATI Mobility Radeon X800 XT (M28),
    ATI Mobility FireGL V5100 (M28), ATI Mobility Radeon X800 (M28),
    ATI Radeon X850, ATI unknown Radeon / FireGL (R480),
    ATI Radeon X800XT (R423), ATI FireGL V5000 (RV410),
    ATI Radeon X700 XT (RV410), ATI Radeon X700 PRO (RV410),
    ATI Radeon X700 SE (RV410), ATI Radeon X700 (RV410),
    ATI Radeon X1800, ATI Mobility Radeon X1800 XT,
    ATI Mobility Radeon X1800, ATI Mobility FireGL V7200,
    ATI FireGL V7200, ATI FireGL V5300, ATI Mobility FireGL V7100,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1550 64-bit,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI FireGL V3300,
    ATI FireGL V3350, ATI Mobility Radeon X1450,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1650, ATI Mobility FireGL V5200,
    ATI Mobility Radeon X1600, ATI Radeon X1300 XT/X1600 Pro,
    ATI FireGL V3400, ATI Mobility FireGL V5250,
    ATI Mobility Radeon X1700, ATI Mobility Radeon X1700 XT,
    ATI FireGL V5200, ATI Radeon X2300HD, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI AMD Stream Processor,
    ATI RV560, ATI Mobility Radeon X1900, ATI Radeon X1950 GT, ATI RV570,
    ATI FireGL V7400, ATI Radeon 9100 PRO IGP,
    ATI Radeon Mobility 9200 IGP, ATI Radeon X1200, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro,
    ATI Radeon HD 2900 GT, ATI FireGL V8650, ATI FireGL V8600,
    ATI FireGL V7600, ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon HD 4850 x2, ATI FirePro V8750 (FireGL),
    ATI FirePro V7760 (FireGL), ATI Mobility RADEON HD 4850,
    ATI Mobility RADEON HD 4850 X2, ATI FirePro RV770,
    AMD FireStream 9270, AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI FirePro M7750, ATI M98, ATI Mobility Radeon HD 4650,
    ATI Radeon RV730 (AGP), ATI Mobility Radeon HD 4670,
    ATI FirePro M5750, ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI RV610,
    ATI Radeon HD 2400 XT, ATI Radeon HD 2400 Pro,
    ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000, ATI Radeon HD 2350,
    ATI Mobility Radeon HD 2400 XT, ATI Mobility Radeon HD 2400,
    ATI RADEON E2400, ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI Mobility Radeon HD 3870,
    ATI Mobility Radeon HD 3870 X2, ATI Radeon HD3870 X2,
    ATI FireGL V7700, ATI Radeon HD3690, AMD Firestream 9170,
    ATI Radeon HD 4550, ATI Radeon RV710, ATI Radeon HD 4350,
    ATI Mobility Radeon 4300 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3430, ATI FirePro V3700,
    ATI FireMV 2450, ATI Radeon HD 3600 Series, ATI Radeon HD 3650 AGP,
    ATI Radeon HD 3600 PRO, ATI Radeon HD 3600 XT,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon 3000 Graphics, SUMO, SUMO2,
    ATI Radeon HD 4200, ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI Radeon HD 5670, ATI Radeon HD 5570, ATI Radeon HD 5500 Series,
    REDWOOD, ATI Mobility Radeon Graphics, CEDAR, ATI FirePro 2270,
    ATI Radeon HD 5450, CAYMAN, AMD Radeon HD 6900 Series,
    AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6700 Series, TURKS, CAICOS,
    ARUBA, TAHITI, PITCAIRN, VERDE, OLAND, HAINAN, BONAIRE, KABINI,
    MULLINS, KAVERI, HAWAII
[    59.911] (--) Using syscons driver with X support (version 2.0)
[    59.911] (--) using VT number 9

[    59.929] (II) [KMS] Kernel modesetting enabled.
[    59.929] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[    59.930] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
[    59.930] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
[    59.930] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    59.930] (==) RADEON(0): Default visual is TrueColor
[    59.930] (==) RADEON(0): RGB weight 888
[    59.930] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
[    59.930] (--) RADEON(0): Chipset: "ATI Radeon IGP330M/340M/350M (U2)" (ChipID = 0x4337)
[    59.930] (II) Loading sub module "fb"
[    59.930] (II) LoadModule: "fb"
[    59.931] (II) Loading /usr/local/lib/xorg/modules/libfb.so
[    59.995] (II) Module fb: vendor="X.Org Foundation"
[    59.995]     compiled for 1.20.7, module version = 1.0.0
[    59.995]     ABI class: X.Org ANSI C Emulation, version 0.4
[    59.995] (II) Loading sub module "dri2"
[    59.995] (II) LoadModule: "dri2"
[    59.995] (II) Module "dri2" already built-in
[    59.995] (II) Loading sub module "exa"
[    59.995] (II) LoadModule: "exa"
[    60.031] (II) Loading /usr/local/lib/xorg/modules/libexa.so
[    60.032] (II) Module exa: vendor="X.Org Foundation"
[    60.032]     compiled for 1.20.7, module version = 2.6.0
[    60.032]     ABI class: X.Org Video Driver, version 24.1
[    60.032] (II) RADEON(0): KMS Color Tiling: disabled
[    60.032] (II) RADEON(0): KMS Color Tiling 2D: disabled
[    60.032] (==) RADEON(0): TearFree property default: auto
[    60.032] (II) RADEON(0): KMS Pageflipping: enabled
[    60.032] (II) RADEON(0): SwapBuffers wait for vsync: enabled
[    60.051] (II) RADEON(0): Output VGA-0 has no monitor section
[    60.052] (II) RADEON(0): Output DVI-0 has no monitor section
[    60.052] (II) RADEON(0): Output LVDS has no monitor section
[    60.056] (II) RADEON(0): Output S-video has no monitor section
[    60.056] (WW) RADEON(0): 4 ZaphodHeads crtcs unavailable. Some outputs will stay off.
[    60.074] (II) RADEON(0): EDID for output VGA-0
[    60.089] (II) RADEON(0): EDID for output DVI-0
[    60.089] (II) RADEON(0): EDID for output LVDS
[    60.090] (II) RADEON(0): Printing probed modes for output LVDS
[    60.090] (II) RADEON(0): Modeline "1280x800"x60.0   68.90  1280 1288 1328 1408  800 803 807 816 (48.9 kHz eP)
[    60.090] (II) RADEON(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz)
[    60.090] (II) RADEON(0): Modeline "1152x768"x59.8   71.75  1152 1216 1328 1504  768 771 781 798 -hsync +vsync (47.7 kHz)
[    60.090] (II) RADEON(0): Modeline "1024x768"x59.9   63.50  1024 1072 1176 1328  768 771 775 798 -hsync +vsync (47.8 kHz)
[    60.090] (II) RADEON(0): Modeline "800x600"x59.9   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync (37.4 kHz)
[    60.090] (II) RADEON(0): Modeline "848x480"x59.7   31.50  848 872 952 1056  480 483 493 500 -hsync +vsync (29.8 kHz)
[    60.090] (II) RADEON(0): Modeline "720x480"x59.7   26.75  720 744 808 896  480 483 493 500 -hsync +vsync (29.9 kHz)
[    60.090] (II) RADEON(0): Modeline "640x480"x59.4   23.75  640 664 720 800  480 483 487 500 -hsync +vsync (29.7 kHz)
[    60.093] (II) RADEON(0): EDID for output S-video
[    60.093] (II) RADEON(0): Output VGA-0 disconnected
[    60.093] (II) RADEON(0): Output DVI-0 disconnected
[    60.093] (II) RADEON(0): Output LVDS connected
[    60.093] (II) RADEON(0): Output S-video disconnected
[    60.093] (II) RADEON(0): Using exact sizes for initial modes
[    60.093] (II) RADEON(0): Output LVDS using initial mode 1280x800 +0+0
[    60.093] (II) RADEON(0): mem size init: gart size :7dff000 vram size: s:4000000 visible:3bd8000
[    60.093] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
[    60.093] (==) RADEON(0): DPI set to (96, 96)
[    60.093] (==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0)
[    60.093] (II) Loading sub module "ramdac"
[    60.093] (II) LoadModule: "ramdac"
[    60.093] (II) Module "ramdac" already built-in
[    60.109] (II) RADEON(0): [DRI2] Setup complete
[    60.109] (II) RADEON(0): [DRI2]   DRI driver: radeon
[    60.109] (II) RADEON(0): Front buffer size: 4000K
[    60.109] (II) RADEON(0): VRAM usage limit set to 51523K
[    60.117] (==) RADEON(0): DRI3 disabled
[    60.117] (==) RADEON(0): Backing store enabled
[    60.117] (II) RADEON(0): Direct rendering enabled
[    60.118] (II) RADEON(0): Render acceleration enabled for R100 type cards.
[    60.118] (II) EXA(0): Driver allocated offscreen pixmaps
[    60.118] (II) EXA(0): Driver registered support for the following operations:
[    60.118] (II)         Solid
[    60.118] (II)         Copy
[    60.118] (II)         Composite (RENDER acceleration)
[    60.118] (II)         UploadToScreen
[    60.118] (II)         DownloadFromScreen
[    60.118] (II) RADEON(0): Acceleration enabled
[    60.118] (==) RADEON(0): DPMS enabled
[    60.118] (==) RADEON(0): Silken mouse enabled
[    60.121] (II) RADEON(0): Set up textured video
[    60.122] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
[    60.122] (II) RADEON(0): [XvMC] Extension initialized.
[    60.144] (II) Initializing extension Generic Event Extension
[    60.146] (II) Initializing extension SHAPE
[    60.147] (II) Initializing extension MIT-SHM
[    60.148] (II) Initializing extension XInputExtension
[    60.167] (II) Initializing extension XTEST
[    60.168] (II) Initializing extension BIG-REQUESTS
[    60.168] (II) Initializing extension SYNC
[    60.170] (II) Initializing extension XKEYBOARD
[    60.185] (II) Initializing extension XC-MISC
[    60.186] (II) Initializing extension SECURITY
[    60.187] (II) Initializing extension XFIXES
[    60.188] (II) Initializing extension RENDER
[    60.189] (II) Initializing extension RANDR
[    60.190] (II) Initializing extension COMPOSITE
[    60.191] (II) Initializing extension DAMAGE
[    60.192] (II) Initializing extension MIT-SCREEN-SAVER
[    60.192] (II) Initializing extension DOUBLE-BUFFER
[    60.193] (II) Initializing extension RECORD
[    60.194] (II) Initializing extension DPMS
[    60.195] (II) Initializing extension Present
[    60.196] (II) Initializing extension DRI3
[    60.196] (II) Initializing extension X-Resource
[    60.196] (II) Initializing extension XVideo
[    60.197] (II) Initializing extension XVideo-MotionCompensation
[    60.198] (II) Initializing extension GLX
[    60.555] (II) AIGLX: Loaded and initialized radeon
[    60.555] (II) GLX: Initialized DRI2 GL provider for screen 0
[    60.555] (II) Initializing extension XFree86-VidModeExtension
[    60.556] (II) Initializing extension XFree86-DGA
[    60.557] (II) Initializing extension XFree86-DRI
[    60.557] (II) Initializing extension DRI2
[    60.558] (II) RADEON(0): Setting screen physical size to 338 x 211
[    61.510] (II) config/udev: Adding input device System mouse (/dev/input/event0)
[    61.510] (**) System mouse: Applying InputClass "libinput pointer catchall"
[    61.510] (II) LoadModule: "libinput"
[    61.511] (II) Loading /usr/local/lib/xorg/modules/input/libinput_drv.so
[    61.730] (II) Module libinput: vendor="X.Org Foundation"
[    61.730]     compiled for 1.20.7, module version = 0.28.2
[    61.730]     Module class: X.Org XInput Driver
[    61.730]     ABI class: X.Org XInput driver, version 24.1
[    61.730] (II) Using input driver 'libinput' for 'System mouse'
[    61.730] (**) System mouse: always reports core events
[    61.730] (**) Option "Device" "/dev/input/event0"
[    61.753] (**) Option "_source" "server/udev"
[    61.854] (II) event0  - System mouse: is tagged by udev as: Mouse
[    61.854] (II) event0  - System mouse: device is a pointer
[    61.855] (II) event0  - System mouse: device removed
[    61.856] (**) Option "config_info" "udev:/dev/input/event0"
[    61.856] (II) XINPUT: Adding extended input device "System mouse" (type: MOUSE, id 6)
[    61.857] (**) Option "AccelerationScheme" "none"
[    61.857] (**) System mouse: (accel) selected scheme none/0
[    61.857] (**) System mouse: (accel) acceleration factor: 2.000
[    61.857] (**) System mouse: (accel) acceleration threshold: 4
[    61.859] (II) event0  - System mouse: is tagged by udev as: Mouse
[    61.860] (II) event0  - System mouse: device is a pointer
[    61.861] (II) config/udev: Adding input device System keyboard multiplexer (/dev/input/event1)
[    61.861] (**) System keyboard multiplexer: Applying InputClass "Evdev keyboard"
[    61.861] (**) System keyboard multiplexer: Applying InputClass "libinput keyboard catchall"
[    61.861] (II) Using input driver 'libinput' for 'System keyboard multiplexer'
[    61.861] (**) System keyboard multiplexer: always reports core events
[    61.861] (**) Option "Device" "/dev/input/event1"
[    61.861] (**) Option "_source" "server/udev"
[    61.865] (II) event1  - System keyboard multiplexer: is tagged by udev as: Keyboard
[    61.865] (II) event1  - System keyboard multiplexer: device is a keyboard
[    61.866] (II) event1  - System keyboard multiplexer: device removed
[    61.866] (**) Option "config_info" "udev:/dev/input/event1"
[    61.866] (II) XINPUT: Adding extended input device "System keyboard multiplexer" (type: KEYBOARD, id 7)
[    61.867] (**) Option "xkb_rules" "evdev"
[    62.007] (II) event1  - System keyboard multiplexer: is tagged by udev as: Keyboard
[    62.007] (II) event1  - System keyboard multiplexer: device is a keyboard
[    62.009] (II) config/udev: Adding input device AT keyboard (/dev/input/event2)
[    62.009] (**) AT keyboard: Applying InputClass "Evdev keyboard"
[    62.009] (**) AT keyboard: Applying InputClass "libinput keyboard catchall"
[    62.009] (II) Using input driver 'libinput' for 'AT keyboard'
[    62.009] (**) AT keyboard: always reports core events
[    62.009] (**) Option "Device" "/dev/input/event2"
[    62.009] (**) Option "_source" "server/udev"
[    62.012] (II) event2  - AT keyboard: is tagged by udev as: Keyboard
[    62.012] (II) event2  - AT keyboard: device is a keyboard
[    62.013] (II) event2  - AT keyboard: device removed
[    62.013] (**) Option "config_info" "udev:/dev/input/event2"
[    62.013] (II) XINPUT: Adding extended input device "AT keyboard" (type: KEYBOARD, id 8)
[    62.013] (**) Option "xkb_rules" "evdev"
[    62.016] (II) event2  - AT keyboard: is tagged by udev as: Keyboard
[    62.017] (II) event2  - AT keyboard: device is a keyboard
[    62.018] (II) config/udev: Adding input device GlidePoint (/dev/input/event3)
[    62.018] (**) GlidePoint: Applying InputClass "libinput pointer catchall"
[    62.018] (II) Using input driver 'libinput' for 'GlidePoint'
[    62.018] (**) GlidePoint: always reports core events
[    62.018] (**) Option "Device" "/dev/input/event3"
[    62.018] (**) Option "_source" "server/udev"
[    62.037] (II) event3  - GlidePoint: is tagged by udev as: Mouse
[    62.038] (II) event3  - GlidePoint: device is a pointer
[    62.038] (II) event3  - GlidePoint: device removed
[    62.075] (**) Option "config_info" "udev:/dev/input/event3"
[    62.075] (II) XINPUT: Adding extended input device "GlidePoint" (type: MOUSE, id 9)
[    62.075] (**) Option "AccelerationScheme" "none"
[    62.075] (**) GlidePoint: (accel) selected scheme none/0
[    62.075] (**) GlidePoint: (accel) acceleration factor: 2.000
[    62.075] (**) GlidePoint: (accel) acceleration threshold: 4
[    62.095] (II) event3  - GlidePoint: is tagged by udev as: Mouse
[    62.096] (II) event3  - GlidePoint: device is a pointer
[    62.097] (II) config/udev: Adding input device Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) (/dev/input/event4)
[    62.097] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Applying InputClass "libinput pointer catchall"
[    62.097] (II) Using input driver 'libinput' for 'Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)'
[    62.097] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): always reports core events
[    62.097] (**) Option "Device" "/dev/input/event4"
[    62.097] (**) Option "_source" "server/udev"
[    62.103] (II) event4  - Microsoft Microsoft 3-Button Mouse with IntelliEye(TM), class 0/0, rev 1.10/3.0: is tagged by udev as: Mouse
[    62.104] (II) event4  - Microsoft Microsoft 3-Button Mouse with IntelliEye(TM), class 0/0, rev 1.10/3.0: device is a pointer
[    62.105] (II) event4  - Microsoft Microsoft 3-Button Mouse with IntelliEye(TM), class 0/0, rev 1.10/3.0: device removed
[    62.105] (**) Option "config_info" "udev:/dev/input/event4"
[    62.106] (II) XINPUT: Adding extended input device "Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)" (type: MOUSE, id 10)
[    62.106] (**) Option "AccelerationScheme" "none"
[    62.106] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) selected scheme none/0
[    62.106] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration factor: 2.000
[    62.106] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration threshold: 4
[    62.111] (II) event4  - Microsoft Microsoft 3-Button Mouse with IntelliEye(TM), class 0/0, rev 1.10/3.0: is tagged by udev as: Mouse
[    62.112] (II) event4  - Microsoft Microsoft 3-Button Mouse with IntelliEye(TM), class 0/0, rev 1.10/3.0: device is a pointer
 
Somehow saying, "Thank you!" does not feel like it is enough. I will say it anyway. Thank you! :) I have full screen and a mouse now!
 
When I start Openbox, I can't right click to get the necessary menus. When I am in Gnome desktop, I don't get a menu to change desktop settings when I right click either. I am pretty sure before this I could. I copied the files from /usr/local/etc/xdg/openbox to /home/user/.config/openbox. Wondering if this is just a mouse issue yet again. Actually, I just tested the touchpad. I have right click in Openbox and Gnome with the touchpad. How do I get right click with my mouse?
 
When I start Openbox, I can't right click to get the necessary menus. When I am in Gnome desktop, I don't get a menu to change desktop settings when I right click either. I am pretty sure before this I could.

Double check whatever InputDevice/InputClass settings you have.
 
Double check whatever InputDevice/InputClass settings you have.
Sorry I don't understand that question. Are you referring to the code listed above in the output from the log?
Code:
61.510] (II) config/udev: Adding input device System mouse (/dev/input/event0)
[    61.510] (**) System mouse: Applying InputClass "libinput pointer catchall"
[    61.510] (II) LoadModule: "libinput"
 
Back
Top