XLibre on VirtualBox

My setup for anyone interested in running XLibre on FreeBSD 15 in VirtualBox (Win11).

#######################
# Prerequisites #
######################
==============================================================
VirtualBox
- UEFI
- VBoxSVGA (128MB RAM)
- NO 3d Accel.
- USB v3
===============================================================
pkg update

pkg upgrade

===============================================================

#######################
# VirtualBox #
######################
pkg install -y virtualbox-ose-additions

sysrc vboxguest_enable="YES"

sysrc vboxservice_enable="YES"

reboot

==============================================================
#######################
# Xlibre #
######################

pkg install xlibre

pw groupmod video -m your_username

===============================================================
ee /usr/local/etc/X11/xorg.conf.d/10-drivers.conf


Section "Device"
Identifier "Generic Framebuffer"
Driver "scfb"
EndSection

Section "InputClass"
Identifier "Libinput-Everything"
MatchIsPointer "yes"
MatchIsKeyboard "yes"
Driver "libinput"
EndSection
===========================================================
ee /usr/local/etc/X11/xorg.conf.d/99-ignore-abi.conf


Section "ServerFlags"
Option "IgnoreABI" "True"
EndSection
==============================================================
#######################
# Test RUN #
######################
startx

cat /var/log/Xorg.0.log | grep EE

================================================================
 
Back
Top