Fuente
https://www.daemonology.net/blog/2020-05-22-my-new-FreeBSD-laptop-Dell-7390.html
Dell Latitude 7390 Intel i5 8th Gen CPU: Intel(R) Core(TM) i5-8350U CPU @ 1.70GHz (L3 cache 6M) FreeBSD/SMP: Multiprocessor System Detected: 8 CPUs Memoria 16 GB RAM Disco 500 GB Pcie M.2 Nvme Una pantalla 13.3" 1920x1080 (non-touch) Intel(R) Wireless WiFi based driver for FreeBSD iwm0: Intel(R) Dual Band Wireless AC 8265 Una Bateria 60 W-hour
Instalación
Enlace de descargas de FreeBSD
Elija la arquitectura correcta para su sistema, por lo regular, amd64
Descargar una imagen completa para grabar en una memoria USB
Grabar la imagen utilizando disk destroyer (dd)
$ xunz FreeBSD-13.1-RELEASE-amd64-memestick.img.xz $ sudo dd if=./FreeBSD-13.1-RELEASE-amd64-memestick.img of=/dev/sdx status=progress $ sudo pkg install eject $ rehash $ sudo eject /dev/sdx
Antes de instalar
- Deshabilitar arranque seguro desde la BIOS - Habilitar el arranque USB - Seleccione el dispositivo de arranque en el momento del inicio
Iniciar instalación
FreeBSD tiene un instalador controlado por menús que guía al usuario a través de varios pasos:
1. establecer mapa del teclado 2. establecer nombre de host 3. seleccionar conjuntos
Hay muchos conjuntos para elegir. Los nuevos usuarios probablemente quieran instalarlos todos. Por lo general, solo instalo el lib32 establecer y agregar el resto más tarde.
Particionado
bsdinstall facilita la partición de sus unidades. La opción Auto (ZFS) es probablemente lo que desea.
En el Auto (ZFS) menú, para una instalación de un solo disco duro. Seleccione su disco duro.
Si quiere el cifrado de disco completo, seleccione el Encrypt Disks opción.
También aumente el tamaño de intercambio swap. El tamaño del intercambio igual a la RAM física (16 GB en este caso).
Si seleccionó Encrypt Disks, también debe seleccionar Encrypt Swap
Cuando haya terminado, continúe con la instalación. Recibirá un mensaje de confirmación que le preguntará si desea destruir el disco que seleccionó. Esta es tu última oportunidad de volver atrás.
Si seleccionó Encrypt Disks se le presentará una solicitud de contraseña. Esta es la contraseña de cifrado del disco, no una contraseña de usuario.
Espere a que se instalen los conjuntos
Configurar usuario raíz
Después de instalar los conjuntos, establecerá una contraseña de root.
Configuración de red
Si su tarjeta inalámbrica es compatible, todas las partes difíciles ya están listas. Si su tarjeta inalámbrica no es compatible, conecte un cable ethernet para compilar los controladores en el kernel.
Seleccione su tarjeta (em0 ethernet, las tarjetas wifi llevan el nombre de sus controladores)
Si elige wifi, el instalador buscará redes y le dará un menú para seleccionar una. Si la red está encriptada, se le presentará una solicitud de contraseña.
Configuración de fecha y hora
Configuración de servicio
Se le presentará un menú que habilita/deshabilita servicios al iniciar el sistema. Seguramente no desea local_unbound.
Configuración de seguridad
El siguiente menú habilita/deshabilita las funciones de seguridad seleccione
disable_sendmail y clear_tmp
Agregar usuarios
Simplemente agregue su usuario y agregar lo al grupo wheel si planea usar sudo.
Configuré mi shell en tcsh, cambiaré a zsh más adelante.
Configuración final
Cuando haya terminado, aplique la configuración y salga.
Reiniciar
# reboot
Configuración manual
Antes de reiniciar el sistema y salir del instalador, se le brinda una última oportunidad para realizar cualquier configuración manual pero rara vez es necesario para el usuario de escritorio.
Inicie sesión como root y actualice el sistema:
# freebsd-update fetch # freebsd-update install # reboot
Apagar el pitido de la consola
# echo kern.vt.enable_bell=0 >> /etc/sysctl.conf
Instalar paquetes
# pkg bootstrap # pkg update # pkg install vim # pkg install sudo # visudo
En esta línea quitar la almohadilla (#) para permitir al grupo wheel realizar acciones como root.
# %wheel ALL=(ALL:ALL) ALL
Interfaz gráfica de usuario
Esto varía dependiendo de su GPU.
# pkg install drm-kmod
Después de instalar este paquete, verá un mensaje sobre cómo habilitar el controlador para su hardware específico:
For amdgpu: kld_list="amdgpu" For Intel: kld_list="i915kms" For radeonkms: kld_list="radeonkms"
Para habilitar uno de estos, deberá agregar una línea a su /etc/rc.conf. Cuanto antes coloque esta línea en el archivo, antes se cargarán los kmods.
Cargar el controlador de video Intel:
sysrc kld_list=i915kms
Para cargar el kmod ahora, ejecute
kldload i915kms
También deberá agregar su usuario no root al grupo video
# pw groupmod video -m carlos
Instalar Xorg
# pkg install xorg
Entorno de escritorio
# sysrc dbus_enable="YES" # service dbus start # pkg install -y plasma5-plasma # pkg install -y konsole # pkg install -y xf86-video-intel # pkg install -y sddm # pw groupmod video -m carlos # pkg install -y plasma5-sddm-kcm # pkg install -y sddm-freebsd-black-theme # printf 'proc\t/proc\tprocfs\trw\t0\t0\n' >> /etc/fstab # printf 'fdesc\t/dev/fd\tfdescfs\trw\t0\t0\n' >> /etc/fstab # sysrc sddm_enable="YES"
Xorg, que use dispositivos expuestos a través de libinput (es decir, el touchpad)
# cp /usr/local/share/X11/xorg.conf.d/40-libinput.conf \
/usr/local/etc/X11/xorg.conf.d/
Sonido
Para que el sonido vaya a los altavoces de forma predeterminada, y cambie a la toma de auriculares y silenciar los altavoces automáticamente si conecto los auriculares.
# echo 'hint.hdaa.0.nid33.config="as=1 seq=15"' >> /boot/loader.conf
Un error en el códec HDMI genera advertencias molestas una solución alternativa que permite silenciar las advertencias:
# echo 'compat.linuxkpi.i915_disable_power_well="0"' >> /boot/loader.conf
Teclas control volumen
Fn+F1 silenciar, Fn+F2 bajar volumen, Fn+F3 subir volumen
Que el cargador de arranque sólo espere 2 segundos en caso de que quiera cambiar la forma en que arranque, y que el kernel de FreeBSD no espere a los dispositivos USB antes de montar el sistema de archivos raíz (sé que mi sistema de archivos raíz está en el disco Nvme):
# echo 'autoboot_delay="2"' >> /boot/loader.conf # echo 'hw.usb.no_boot_wait="1"' >> /boot/loader.conf
# ntpdate y ntp /etc/rc.conf
ntpd_enable="YES" ntpd_config="/etc/ntp.conf" netwait_enable="YES"
Tomar el control del brillo de la pantalla con las teclas Fn+Up, Fn+Down
# pkg install intel-backlight
# echo 'acpi_video_load="YES"' >> /boot/loader.conf
# cp /usr/local/share/examples/intel-backlight/acpi-video-intel-backlight.conf \
/usr/local/etc/devd/
Reiniciar
# reboot
Otros paquetes
# sudo pkg install coreutils emacs gcc gmake firefox libreoffice thunderbird \ chromium automake libtool vlc obs-studio htop
Si instala un entorno de escritorio grande, la mayoría de las aplicaciones también se incorporan. Si no, siempre puede usar xargs para obtener cientos de gigabytes de programas:
Listar los paquetes que coincidan con kde
$ sudo pkg search kde | cut -d ' ' -f 1
Instalar los paquetes que coincidan con kde
$ sudo pkg search kde | cut -d ' ' -f 1 | xargs sudo pkg install -y
A veces, los escritorios se comportan de forma inesperada en FreeBSD (es decir, los usuarios no pueden administrar la configuración de energía, reiniciar el sistema, etc.). Asegúrese de que su usuario de inicio de sesión esté en el grupo de wheel y la mayoría de los problemas se resolverán. Para los usuarios que no desea en el grupo de wheel, deberá escribir algunas reglas de polkit.
Además, los escritorios grandes generalmente se compilan sin los componentes gráficos para modificar las conexiones de red.
Shells
FreeBSD usa tcsh(1) como shell predeterminado e incluye sh(1) para compatibilidad similar a Bourne
Instalar zsh con Oh-my-zsh
$ sh -c "$(curl -fsSL \ https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
Redes
# /etc/rc.conf ifconfig_em0="ether e4:b9:7a:6b:96:cd" wlans_iwm0="wlan0" cloned_interfaces="lagg0" ifconfig_lagg0="laggproto failover laggport em0 laggport wlan0 SYNCDHCP" create_args_wlan0="country ES regdomain ETSI" ifconfig_wlan0="WPA" wpa_supplicant_program="/usr/sbin/wpa_supplicant" defaultroute_delay="0" background_dhclient="YES"
Las interfaces de red se configuran clásicamente usando ifconfig(8). Si desea que una interfaz de red persista durante los reinicios, agregue la información en /etc/rc.conf.
WiFi se gestiona con wpa_supplicant
$ dmesg|grep -i wireless Intel(R) Wireless WiFi based driver for FreeBSD iwm0: <Intel(R) Dual Band Wireless AC 8265> mem 0xef100000-0xef101fff at \ device 0.0 on pci2
Archivo /etc/wpa_supplicant FreeBSD
Encriptar password de la contraseña wifi
$ wpa_passphrase MikroTik-39F9C1 contraseñawifi psk=c35edacaf6c649c6df522451c801f98e918bc376d335d0dedd686770dad7f6c0
Para utilizar la versión de puertos de WPA Supplicant en lugar de la base, agregue
wpa_supplicant_program="/usr/sbin/wpa_supplicant" a /etc/rc.conf $ cat /etc/rc.conf|grep wpa_supplicant | grep wpa_supplicant wpa_supplicant_program="/usr/sbin/wpa_supplicant"
Aspecto final del archivo wpa_supplicant
$ cat /etc/wpa_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="MikroTik-39F9C1"
scan_ssid=1
psk=c35edacaf6c649c6df522451c801f98e918bc376d335d0dedd686770dad7f6c0
}
Gestión de paquetes
Hay dos formas principales de administrar software: paquetes binarios y puertos. No los mezcle si no sabe lo que está haciendo, puede causar problemas.
Para ser breve: los puertos son como Gentoo. Pasas mucho tiempo viendo la salida del compilador. Los siguientes programas ayudan: synth, portmaster, poudriere para ser detallado: Guía rápida sobre el uso del sistema de administración de paquetes binarios:
pkg update pkg upgrade pkg search foobar pkg install foobar pkg remove foobar pkg autoremove
Proceso General de Actualización
pkg update pkg upgrade freebsd-update upgrade -r 13.1-RELEASE freebsd-update fetch reboot freebsd-update install pkg update pkg upgrade freebsd-update install reboot
Sistema de archivos
La jerarquía de FreeBSD es ligeramente diferente a la de un sistema Linux. Consulte man hier(7) para obtener más información.
La mayor diferencia es que FreeBSD es un sistema organizado lógicamente. En FreeBSD, el sistema está más organizado. Por ejemplo:
/bin contiene todo lo necesario para iniciar el sistema y /sbin contiene todo lo necesario para la administración fundamental.
/usr/bin contiene casi todo lo demás
/usr/local contiene todo lo instalado por el sistema de administración de paquetes.
Los programas instalados por el usuario se configuran en /usr/local/etc. Puede ser confuso al principio, pero lo dominarás.
Esta separación lógica puede causar confusión al compilar software desde la fuente en FreeBSD, pero no es demasiado difícil de resolver si ya conoce las opciones del enlazador y la modificación del archivo MAKE.
Montar unidades fat32
Crear directorio de montaje
# mkdir /media/usbFAT32
Montar usb fat32 como usuario carlos
% mount -t msdosfs /dev/da0p2 /media/usbFAT32
Montar un dispositivo conectado via usb fs linux ext4
Instalar paquetes
# pkg install fusefs-ext2 fusefs-lkl
Verificar nombre del dispostivo
% gpart show da0
=> 2048 976771087 da0 GPT (466G)
2048 362371072 1 linux-data (173G)
362373120 40960000 2 ms-basic-data (20G)
403333120 573440015 - free - (273G)
Montar el dispositivo sistema de ficheros ext4 /dev/da0p1
% lklfuse -o type=ext4,rw /dev/da0p1 /media/linuxEXT4/
Automount montar sistemas de ficheros automáticamente.
Cuando se llama sin opciones, el comando automount analiza el auto_master(5) archivo de configuración y cualquier mapa directo al que haga referencia, y monta o desmonta los sistemas de archivos autofs(5) para que coincidan. Estas opciones están disponible
-D Definir una variable. Solo es útil con -L.
-L No montar ni desmontar nada.
-c Vaciar cachés, descartando información posiblemente obsoleta obtenida
de mapas y servicios de directorio.
-f Forzar desmontar, para ser usado con -u.
-o Especifique las opciones de montaje que se utilizarán junto con las
especificadas en los mapas. Solo es útil con -L.
-u Intenta desmontar los sistemas de archivos montados por automountd.
-At Para desmontar todos los montajes de autofs use unmount -At
-v Aumentar la verbosidad.
Instalar automount
# pkg install automount # cp /usr/local/etc/automount.conf.sample /usr/local/etc/automount.conf--------
Esta archivo contiene una linea que permite al usuario montar particiones que el sistema reconozca
El demonio de la cámara web ya está instalado (kde5 lo incorpora como una dependencia), para habilitado y que el usuario carlos pueda acceder a él:
# echo 'cuse_load="YES"' >> /boot/loader.conf # sysrc webcamd_enable="YES" # pw groupmod webcamd -m carlos
$ pkg info
7-zip-21.07_2 Console version of the 7-Zip file archiver Box2D-2.4.1 2D physics engine for games GentiumBasic-1102_1 Gentium Basic and Gentium Book Basic TrueType fonts Imath-3.1.5_1 C++/Python lib of 2D/3D vector, matrix, math ops for computer graphics aalib-1.4.r5_13 ASCII art library abseil-20220623.0 Abseil Common Libraries (C++) accounts-qml-module-0.7_2 Expose the Online Accounts API to QML applications accountsservice-0.6.55_3 D-Bus interface for user account query and manipulation adwaita-icon-theme-40.1.1 GNOME Symbolic Icons akonadi-22.08.2 Storage server for KDE-Pim akonadi-calendar-22.08.2 Akonadi Calendar Integration akonadi-contacts-22.08.2 Libraries and daemons to implement Contact Management in Akonadi akonadi-import-wizard-22.08.2 Import data from other mail clients to KMail akonadi-mime-22.08.2 Libraries and daemons to implement basic email handling akonadi-notes-22.08.2 KDE library for accessing mail storages in MBox format akonadi-search-22.08.2 Libraries and daemons to implement searching in Akonadi akonadiconsole-22.08.2 Akonadi management and debugging console akregator-22.08.2 Feed reader for KDE alsa-lib-1.2.2_1 ALSA compatibility library alsa-plugins-1.2.2_8 ALSA compatibility library plugins analitza-22.08.2 Library from KDE Education project aom-3.5.0 AV1 reference encoder/decoder appres-1.0.5 Program to list application's resources apr-1.7.0.1.6.1_2 Apache Portability Library argp-standalone-1.5.0 Standalone version of arguments parsing functions from GLIBC argyllcms-1.9.2_5 ICC compatible color management system ark-22.08.2 Archiving tool for KDE artikulate-22.08.2 Pronunciation trainer for KDE aspell-0.60.8_1,1 Spelling checker with better suggestion logic than ispell at-spi2-atk-2.38.0 Assisted Technology Provider module for GTK+ at-spi2-core-2.44.1 Assistive Technology Service Provider Interface atk-2.38.0 GNOME accessibility toolkit (ATK) atkmm-2.28.0 C++ wrapper for ATK API library atril-1.26.0_13 MATE multi-format document viewer audiocd-kio-22.08.2 KDE IOSlave for accessing audio CDs auto-admin-0.7.13.2 Portable tools for automating systems management autoconf-2.71 Generate configure scripts and related files autoconf-switch-20220527 Wrapper script to switch between autoconf versions automake-1.16.5 GNU Standards-compliant Makefile generator automount-1.7.8 FreeBSD's devd(8) based automount solution avahi-app-0.8_1 Service discovery on a local network avahi-libdns-0.8_1 mDNSResponder compatibility from Avahi b43-fwcutter-019 Firmware extractor for Broadcom wireless adapters babl-0.1.96 Dynamic pixel format conversion library baloo-widgets-22.08.2 BalooWidgets library bash-5.2.2_1 GNU Project's Bourne Again SHell binutils-2.37_4,1 GNU binary tools bitmap-1.0.9 Bitmap editor and converter utilities for X bitstream-vera-1.10_8 Bitstream Vera TrueType font collection black-hole-solver-1.12.0 Black Hole Solitaire Solver blas-3.10.1 Basic Linear Algebra Subroutines blinken-22.08.2 Memory enhancement game bomber-22.08.2 Arcade Bombing game boost-libs-1.80.0 Free portable C++ libraries (without Boost.Python) botan2-2.19.2_2 Portable, easy to use and efficient C++ crypto library bovo-22.08.2 Five-in-a-row Board game brisk-menu-0.6.2 Brisk Menu is an efficient menu for the MATE Desktop brotli-1.0.9,1 Generic-purpose lossless compression algorithm bsdisks-0.27 UDisks2 service implementation for FreeBSD build-0.3.10 Massively-parallel build system implemented on top of GNU make bwi-firmware-kmod-3.130.20 Broadcom AirForce IEEE 802.11 Firmware Kernel Module bwn-firmware-kmod-0.1.2 Broadcom AirForce IEEE 802.11 Firmware Kernel Module ca_root_nss-3.83 Root certificate bundle from the Mozilla Project cabextract-1.9.1 Program to extract Microsoft cabinet (.CAB) files cairo-1.17.4_2,3 Vector graphics library with cross-device output support cairomm-1.12.2_6 C++ interface to cairo caja-1.26.1 File manager for the MATE desktop caja-extensions-1.26.0_2 Set of extensions for Caja calendarsupport-22.08.2 Calendar support libraries for KDEPim cantor-22.08.2 Mathematical software frontend by KDE cdparanoia-3.9.8_10 CDDA extraction tool (also known as ripper) cdrtools-2022.09.18 Tools for ripping from and recording to CDs and DVDs chmlib-0.40_1 Library for dealing with Microsoft ITSS/CHM format files chromium-106.0.5249.119 Google web browser based on WebKit cln-1.3.6 Class Library for Numbers clucene-2.3.3.4_20 C++ port of Lucene cmake-3.24.0 Meta-port to connect all CMake bits cmake-core-3.24.0 Cross-platform Makefile generator cmake-doc-3.24.0 HTML and Qt Creator helpfiles for CMake cmake-man-3.24.0 Manual pages for CMake colord-1.3.5_2 Manage color profiles to accurately color input/output devices consolekit2-1.2.4_3 Framework for defining and tracking users coreutils-9.1 Free Software Foundation core utilities crosextrafonts-caladea-20130214_4 Font created by Google for ChromeOS to replace MS Cambria crosextrafonts-carlito-20130920_4 Font created by Google for ChromeOS to replace MS Calibri cups-2.4.2 Common UNIX Printing System cups-filters-1.28.15_6 Additional backends, filters and other software for CUPS cups-pdf-3.0.1_2 Virtual printer for CUPS to produce PDF files curl-7.85.0 Command line tool and library for transferring data with URLs cyrus-sasl-2.1.28 RFC 2222 SASL (Simple Authentication and Security Layer) dav1d-1.0.0_1 Small and fast AV1 decoder db5-5.3.28_8 Oracle Berkeley DB, revision 5.3 dbus-1.14.4,1 Message bus system for inter-application communication dbus-glib-0.112 GLib bindings for the D-BUS messaging system dconf-0.40.0_3 Configuration database system for GNOME dejavu-2.37_1 Bitstream Vera Fonts clone with a wider range of characters desktop-file-utils-0.26_1 Couple of command line utilities for working with desktop entries desktop-installer-0.7.8.3 Quickly configure a FreeBSD desktop system dialog4ports-0.1.6_1 Console Interface to configure ports discount-2.2.7b C implementation of the Markdown markup language djvulibre-3.5.28_1 DjVu base libraries and utilities dmidecode-3.4_2 Tool for dumping DMI (SMBIOS) contents in human-readable format docbook-1.5 Meta-port for the different versions of the DocBook DTD docbook-sgml-4.5_1 DocBook SGML DTD docbook-xml-5.0_3 DocBook XML DTD docbook-xsl-1.79.1_1,1 XSL DocBook stylesheets dolphin-22.08.2 KDE filemanager dolphin dotconf-1.3_1 Simple, powerful configuration-file parser double-conversion-3.2.1 Binary-decimal and decimal-binary routines for IEEE doubles dragon-player-22.08.2 KDE multimedia player with a focus on simplicity drm-510-kmod-5.10.113_7 DRM drivers modules drm-kmod-20220907_1 Metaport of DRM modules for the linuxkpi-based KMS components droid-fonts-ttf-20131024_5 Droid typeface family dvdauthor-0.7.2.20211105_2 Makes a DVD file structure from one or more MPEG2 streams e2fsprogs-1.46.5_5 Wrapper to install e2fsprogs into /sbin e2fsprogs-core-1.46.5_5 Utilities & library to manipulate ext2/3/4 filesystems e2fsprogs-libblkid-1.46.5_2 Blkid library from e2fsprogs package e2fsprogs-libuuid-1.46.5_1 UUID library from e2fsprogs package ebook-tools-0.2.2_8 Accesses and converts various ebook file formats editorconfig-core-c-0.12.5 EditorConfig core library and executable written in C eigen-3.4.0_1 Lightweight library for vector and matrix math eject-1.5_4 Utility for ejecting media from CD or optical disk drive enchant2-2.2.15_1 Dictionary/spellchecking framework encodings-1.0.5,1 X.Org Encoding fonts engrampa-1.26.0 Archive manager for zip files, tar, etc eom-1.26.0_2 Eye of MATE image viewer es-aspell-1.11.2,1 Aspell Spanish dictionary es-libreoffice-7.4.2.3 es language pack for libreoffice espeak-ng-1.51.1_3 Software speech synthesizer eventviews-22.08.2 Event view libriares for KDEPim exempi-2.6.2_1 Port of Adobe XMP SDK to work on UNIX exiv2-0.27.5,1 Exif, IPTC, and XMP metadata manipulation library and tools expat-2.4.9 XML 1.0 parser written in C faad2-2.10.0,1 MPEG-2 and MPEG-4 AAC audio decoder fdk-aac-2.0.2 Port of the Fraunhofer FDK AAC Codec Library ffmpeg-4.4.3,1 Realtime audio/video encoder/converter and streaming server ffmpegthumbnailer-2.2.2 Lightweight video thumbnailer that can be used by file managers fftw3-3.3.10_2 Fast C routines to compute the Discrete Fourier Transform fftw3-float-3.3.10_2 Fast Discrete Fourier Transform (Single Precision C Routines) filelight-22.08.2 Map of concentric segmented-rings representing file system fira-4.301_1 Sans-serif, monospaced, and code typeface for small screens firefox-106.0,2 Web browser based on the browser portion of Mozilla flac-1.4.1_1 Free lossless audio codec font-adobe-100dpi-1.0.3_4 X.Org Adobe 100dpi font font-adobe-75dpi-1.0.3_4 X.Org Adobe 75dpi font font-adobe-utopia-100dpi-1.0.4_4 X.Org Adobe Utopia 100dpi font font-adobe-utopia-75dpi-1.0.4_4 X.Org Adobe Utopia 75dpi font font-adobe-utopia-type1-1.0.4_4 X.Org Adobe Utopia Type1 font font-alias-1.0.4 X.Org Font aliases font-arabic-misc-1.0.3_4 X.Org miscellaneous Arabic fonts font-bh-100dpi-1.0.3_4 X.Org Bigelow Holmes 100dpi font font-bh-75dpi-1.0.3_4 X.Org Bigelow Holmes 75dpi font font-bh-lucidatypewriter-100dpi-1.0.3_4 X.Org Bigelow Holmes Lucida TypeWriter 100dpi font font-bh-lucidatypewriter-75dpi-1.0.3_4 X.Org Bigelow Holmes Lucida TypeWriter 75dpi font font-bh-ttf-1.0.3_4 X.Org Bigelow & Holmes TTF font font-bh-type1-1.0.3_4 X.Org Bigelow Holmes Type1 font font-bitstream-100dpi-1.0.3_4 X.Org Bitstream Vera 100dpi font font-bitstream-75dpi-1.0.3_4 X.Org Bitstream Vera 75dpi font font-bitstream-type1-1.0.3_4 X.Org Bitstream Vera Type1 font font-cronyx-cyrillic-1.0.3_4 X.Org Cronyx Cyrillic font font-cursor-misc-1.0.3_4 X.Org miscellaneous Cursor fonts font-daewoo-misc-1.0.3_4 X.Org miscellaneous Daewoo fonts font-dec-misc-1.0.3_4 X.Org miscellaneous Dec fonts font-ibm-type1-1.0.3_4 X.Org IBM Type1 font font-isas-misc-1.0.3_4 X.Org miscellaneous ISAS fonts font-jis-misc-1.0.3_4 X.Org miscellaneous JIS fonts font-micro-misc-1.0.3_4 X.Org miscellaneous Micro fonts font-misc-cyrillic-1.0.3_4 X.Org miscellaneous Cyrillic font font-misc-ethiopic-1.0.4 X.Org miscellaneous Ethiopic font font-misc-meltho-1.0.3_4 X.Org miscellaneous Meltho font font-misc-misc-1.1.2_4 X.Org miscellaneous Misc fonts font-mutt-misc-1.0.3_4 X.Org miscellaneous Mutt fonts font-schumacher-misc-1.1.2_4 X.Org miscellaneous Schumacher fonts font-screen-cyrillic-1.0.4_4 X.Org Screen Cyrillic font font-sony-misc-1.0.3_4 X.Org miscellaneous Sony fonts font-sun-misc-1.0.3_4 X.Org miscellaneous Sun fonts font-winitzki-cyrillic-1.0.3_4 X.Org Winitzki Cyrillic font font-xfree86-type1-1.0.4_4 X.Org XFree86 Type1 font fontconfig-2.14.0,1 XML-based font configuration API for X Windows freebsd-8k-wallpapers-2.1 Collection of simple FreeBSD wallpapers freebsd-8k-wallpapers-kde-2.1 Collection of simple FreeBSD wallpapers freecell-solver-6.2.0 Open source framework for solving Freecell freeglut-3.2.1 Open source implementation of GLUT library freerdp-2.8.1 Free implementation of Remote Desktop Protocol freetype2-2.12.1_2 Free and portable TrueType font rendering engine freexl-1.0.6 Library to extract valid data from within an Excel (.xls) spreadsheet frei0r-1.8.0_1 Minimalistic plugin API for video effects frei0r-plugins-1.8.0_1 Frei0r meta-port frei0r-plugins-gavl-1.8.0 Frei0r gavl plugins frei0r-plugins-opencv-1.8.0 Frei0r OpenCV plugins fribidi-1.0.12 Free Implementation of the Unicode Bidirectional Algorithm fusefs-ext2-0.0.10_3 FUSE module to mount ext2, ext3 and ext4 with read write support fusefs-libs-2.9.9_2 FUSE allows filesystem implementation in userspace fusefs-lkl-4.16.g20180628_3 Full-featured Linux BTRFS, Ext4, XFS as a FUSE module fusefs-ntfs-2022.5.17 Mount NTFS partitions (read/write) and disk images gamin-0.1.10_10 File and directory monitoring system gavl-1.4.0_4 Library for handling uncompressed video and audio data gawk-5.2.0 GNU version of AWK scripting language gcc-11_4 Meta-port for the default version of the GNU Compiler Collection gcc11-11.3.0_1 GNU Compiler Collection 11 gcr-3.40.0 Library for bits of crypto UI and parsing gdal-3.5.2_1 Translator library for raster geospatial data formats gdbm-1.23 GNU database manager gdcm-3.0.19 Grassroots DICOM library gdk-pixbuf2-2.42.9 Graphic library for GTK+ geany-1.38 Fast and lightweight GTK+ IDE gegl-0.4.38_3 Graph based image processing framework geoclue-2.5.7 D-Bus service that provides location information geos-3.11.0 Geometry Engine, Open Source gettext-runtime-0.21 GNU gettext runtime libraries and programs gettext-tools-0.21_1 GNU gettext development and translation tools gexiv2-0.14.0 GObject-based wrapper around Exiv2 library gflags-2.2.2_2 Commandline flags module for C++ ghostscript9-agpl-base-9.56.1_5 PostScript and PDF interpreter giflib-5.2.1 Tools and library routines for working with GIF images gimp-2.10.32,2 The "meta-port" for The Gimp gimp-app-2.10.32_7,1 GNU Image Manipulation Program gimp-gutenprint-5.3.3_1 Gimp print plug-in git-2.38.0 Distributed source code management tool gjs-1.72.2 GNOME Javascript binding glade-3.40.0 User interface builder for GTK+ 3 glew-2.2.0_3 OpenGL Extension Wrangler Library glib-2.74.0,2 Some useful routines of C programming (current stable version) glib-networking-2.74.0 Network-related giomodules for glib glibmm-2.66.4,1 C++ interfaces for glib2 glog-0.6.0 Library of C++ classes for flexible logging gmake-4.3_2 GNU version of 'make' utility gmp-6.2.1 Free library for arbitrary precision arithmetic gnome_subr-1.0 Common startup and shutdown subroutines used by GNOME scripts gnuchess-6.2.9 Classic Gnu Chess gnupg-2.3.3_3 Complete and free PGP implementation gnustep-base-1.27.0_6 GNUstep Foundation library gnustep-make-2.8.0 GNUstep makefile package gnutls-3.7.8 GNU Transport Layer Security library gobject-introspection-1.74.0,1 Generate interface introspection data for GObject libraries gpgme-1.18.0 Library to make access to GnuPG easier gpgme-cpp-1.18.0 Gpgme C++ bindings gpgme-qt5-1.18.0 Gpgme Qt5 bindings gpsd-3.23.1 Daemon that monitors one or more GPSes attached to a host computer gpu-firmware-amd-kmod-banks-20220511 Firmware modules for banks AMD GPUs gpu-firmware-amd-kmod-bonaire-20220511 Firmware modules for bonaire AMD GPUs gpu-firmware-amd-kmod-carrizo-20220511 Firmware modules for carrizo AMD GPUs gpu-firmware-amd-kmod-fiji-20220511 Firmware modules for fiji AMD GPUs gpu-firmware-amd-kmod-green-sardine-20220511 Firmware modules for green_sardine AMD GPUs gpu-firmware-amd-kmod-hainan-20220511 Firmware modules for hainan AMD GPUs gpu-firmware-amd-kmod-hawaii-20220511 Firmware modules for hawaii AMD GPUs gpu-firmware-amd-kmod-kabini-20220511 Firmware modules for kabini AMD GPUs gpu-firmware-amd-kmod-kaveri-20220511 Firmware modules for kaveri AMD GPUs gpu-firmware-amd-kmod-mullins-20220511 Firmware modules for mullins AMD GPUs gpu-firmware-amd-kmod-navi10-20220511 Firmware modules for navi10 AMD GPUs gpu-firmware-amd-kmod-navi12-20220511 Firmware modules for navi12 AMD GPUs gpu-firmware-amd-kmod-navi14-20220511 Firmware modules for navi14 AMD GPUs gpu-firmware-amd-kmod-oland-20220511 Firmware modules for oland AMD GPUs gpu-firmware-amd-kmod-picasso-20220511 Firmware modules for picasso AMD GPUs gpu-firmware-amd-kmod-pitcairn-20220511 Firmware modules for pitcairn AMD GPUs gpu-firmware-amd-kmod-polaris10-20220511 Firmware modules for polaris10 AMD GPUs gpu-firmware-amd-kmod-polaris11-20220511 Firmware modules for polaris11 AMD GPUs gpu-firmware-amd-kmod-polaris12-20220511 Firmware modules for polaris12 AMD GPUs gpu-firmware-amd-kmod-raven-20220511 Firmware modules for raven AMD GPUs gpu-firmware-amd-kmod-raven2-20220511 Firmware modules for raven2 AMD GPUs gpu-firmware-amd-kmod-renoir-20220511 Firmware modules for renoir AMD GPUs gpu-firmware-amd-kmod-si58-20220511 Firmware modules for si58 AMD GPUs gpu-firmware-amd-kmod-sienna-cichlid-20220511 Firmware modules for sienna_cichlid AMD GPUs gpu-firmware-amd-kmod-stoney-20220511 Firmware modules for stoney AMD GPUs gpu-firmware-amd-kmod-tahiti-20220511 Firmware modules for tahiti AMD GPUs gpu-firmware-amd-kmod-tonga-20220511 Firmware modules for tonga AMD GPUs gpu-firmware-amd-kmod-topaz-20220511 Firmware modules for topaz AMD GPUs gpu-firmware-amd-kmod-vega10-20220511 Firmware modules for vega10 AMD GPUs gpu-firmware-amd-kmod-vega12-20220511 Firmware modules for vega12 AMD GPUs gpu-firmware-amd-kmod-vega20-20220511 Firmware modules for vega20 AMD GPUs gpu-firmware-amd-kmod-vegam-20220511 Firmware modules for vegam AMD GPUs gpu-firmware-amd-kmod-verde-20220511 Firmware modules for verde AMD GPUs gpu-firmware-intel-kmod-broxton-20220511 Firmware modules for broxton Intel GPUs gpu-firmware-intel-kmod-coffeelake-20220511 Firmware modules for coffeelake Intel GPUs gpu-firmware-intel-kmod-elkhartlake-20220511 Firmware modules for elkhartlake Intel GPUs gpu-firmware-intel-kmod-geminilake-20220511 Firmware modules for geminilake Intel GPUs gpu-firmware-intel-kmod-icelake-20220511 Firmware modules for icelake Intel GPUs gpu-firmware-intel-kmod-kabylake-20220511 Firmware modules for kabylake Intel GPUs gpu-firmware-intel-kmod-rocketlake-20220511 Firmware modules for rocketlake Intel GPUs gpu-firmware-intel-kmod-skylake-20220511 Firmware modules for skylake Intel GPUs gpu-firmware-intel-kmod-tigerlake-20220511 Firmware modules for tigerlake Intel GPUs gpu-firmware-kmod-20220511,1 Firmware modules for the drm-kmod drivers gpu-firmware-radeon-kmod-aruba-20220511 Firmware modules for aruba Radeon GPUs gpu-firmware-radeon-kmod-barts-20220511 Firmware modules for barts Radeon GPUs gpu-firmware-radeon-kmod-bonaire-20220511 Firmware modules for bonaire Radeon GPUs gpu-firmware-radeon-kmod-btc-20220511 Firmware modules for btc Radeon GPUs gpu-firmware-radeon-kmod-caicos-20220511 Firmware modules for caicos Radeon GPUs gpu-firmware-radeon-kmod-cayman-20220511 Firmware modules for cayman Radeon GPUs gpu-firmware-radeon-kmod-cedar-20220511 Firmware modules for cedar Radeon GPUs gpu-firmware-radeon-kmod-cypress-20220511 Firmware modules for cypress Radeon GPUs gpu-firmware-radeon-kmod-hainan-20220511 Firmware modules for hainan Radeon GPUs gpu-firmware-radeon-kmod-hawaii-20220511 Firmware modules for hawaii Radeon GPUs gpu-firmware-radeon-kmod-juniper-20220511 Firmware modules for juniper Radeon GPUs gpu-firmware-radeon-kmod-kabini-20220511 Firmware modules for kabini Radeon GPUs gpu-firmware-radeon-kmod-kaveri-20220511 Firmware modules for kaveri Radeon GPUs gpu-firmware-radeon-kmod-mullins-20220511 Firmware modules for mullins Radeon GPUs gpu-firmware-radeon-kmod-oland-20220511 Firmware modules for oland Radeon GPUs gpu-firmware-radeon-kmod-palm-20220511 Firmware modules for palm Radeon GPUs gpu-firmware-radeon-kmod-pitcairn-20220511 Firmware modules for pitcairn Radeon GPUs gpu-firmware-radeon-kmod-r100-20220511 Firmware modules for r100 Radeon GPUs gpu-firmware-radeon-kmod-r200-20220511 Firmware modules for r200 Radeon GPUs gpu-firmware-radeon-kmod-r300-20220511 Firmware modules for r300 Radeon GPUs gpu-firmware-radeon-kmod-r420-20220511 Firmware modules for r420 Radeon GPUs gpu-firmware-radeon-kmod-r520-20220511 Firmware modules for r520 Radeon GPUs gpu-firmware-radeon-kmod-r600-20220511 Firmware modules for r600 Radeon GPUs gpu-firmware-radeon-kmod-r700-20220511 Firmware modules for r700 Radeon GPUs gpu-firmware-radeon-kmod-redwood-20220511 Firmware modules for redwood Radeon GPUs gpu-firmware-radeon-kmod-rs600-20220511 Firmware modules for rs600 Radeon GPUs gpu-firmware-radeon-kmod-rs690-20220511 Firmware modules for rs690 Radeon GPUs gpu-firmware-radeon-kmod-rs780-20220511 Firmware modules for rs780 Radeon GPUs gpu-firmware-radeon-kmod-rv610-20220511 Firmware modules for rv610 Radeon GPUs gpu-firmware-radeon-kmod-rv620-20220511 Firmware modules for rv620 Radeon GPUs gpu-firmware-radeon-kmod-rv630-20220511 Firmware modules for rv630 Radeon GPUs gpu-firmware-radeon-kmod-rv635-20220511 Firmware modules for rv635 Radeon GPUs gpu-firmware-radeon-kmod-rv670-20220511 Firmware modules for rv670 Radeon GPUs gpu-firmware-radeon-kmod-rv710-20220511 Firmware modules for rv710 Radeon GPUs gpu-firmware-radeon-kmod-rv730-20220511 Firmware modules for rv730 Radeon GPUs gpu-firmware-radeon-kmod-rv740-20220511 Firmware modules for rv740 Radeon GPUs gpu-firmware-radeon-kmod-rv770-20220511 Firmware modules for rv770 Radeon GPUs gpu-firmware-radeon-kmod-sumo-20220511 Firmware modules for sumo Radeon GPUs gpu-firmware-radeon-kmod-sumo2-20220511 Firmware modules for sumo2 Radeon GPUs gpu-firmware-radeon-kmod-tahiti-20220511 Firmware modules for tahiti Radeon GPUs gpu-firmware-radeon-kmod-turks-20220511 Firmware modules for turks Radeon GPUs gpu-firmware-radeon-kmod-verde-20220511 Firmware modules for verde Radeon GPUs granatier-22.08.2 Bomberman clone grantlee-editor-22.08.2 Editor for Grantlee themes grantlee5-5.3.0 String template engine for Qt 5 grantleetheme-22.08.2 KDE PIM grantleetheme graphene-1.10.8 Optimizations for speeding up vector operations graphite2-1.3.14 Rendering capabilities for complex non-Roman writing systems graphviz-2.50.0_13 Graph Visualization Software from AT&T and Bell Labs groff-1.22.4_4 Software typesetting package gsettings-desktop-schemas-42.0 Collection of globally shared GSetting schemas gsl-2.7.1 The GNU Scientific Library - mathematical libs gsm-1.0.19 Audio converter and library for converting u-law to gsm encoding gssdp14-1.4.0.1 Framework for UPnP devices gstreamer1-1.16.2 Media applications framework gstreamer1-libav-1.16.2 GStreamer plug-in with many audio/video decoders/encoders gstreamer1-plugins-1.16.2_7 GStreamer written collection of plugins handling several media types gstreamer1-plugins-a52dec-1.16.2_2 GStreamer ATSC A/52 stream aka AC-3 (dvd audio) plugin gstreamer1-plugins-bad-1.16.2_3 GStreamer-plugins that need more quality, testing or documentation gstreamer1-plugins-core-1.16 Core set of typical audio and video GStreamer plugins gstreamer1-plugins-dts-1.16.2_2 GStreamer dts audio decode plugin gstreamer1-plugins-dvdread-1.16.2_4 GStreamer DVD access plugin with libdvdread gstreamer1-plugins-gl-1.16.2_4 GStreamer GL graphics plugin gstreamer1-plugins-good-1.16.2_2 GStreamer-plugins good-quality plug-ins gstreamer1-plugins-mpg123-1.16.2_2 GStreamer MPEG Layer 1, 2, and 3 plugin gstreamer1-plugins-ogg-1.16.2_2 GStreamer Ogg bitstream plugin gstreamer1-plugins-pango-1.16.2_2 GStreamer pango textoverlay plugin gstreamer1-plugins-png-1.16.2_2 GStreamer png plugin gstreamer1-plugins-resindvd-1.16.2_4 GStreamer resindvd DVD playback plugin gstreamer1-plugins-theora-1.16.2_2 GStreamer theora plugin gstreamer1-plugins-ugly-1.16.2_2 GStreamer-plugins set of good-quality plug-ins that might have distribution problems gstreamer1-plugins-vorbis-1.16.2_2 GStreamer vorbis encoder/decoder plugin gtar-1.34 GNU version of the traditional tape archiver gtk-arc-themes-20220223 Arc-themes for GTK-2.0,3.0 & 4.0 based desktop environments gtk-engines2-2.20.2_3 Theme engine for the GTK+-2.0 toolkit gtk-layer-shell-0.7.0_2 GTK+ library for the Wayland layer-shell protocol gtk-murrine-engine-0.98.2_5 Murrine GTK+ 2.x cairo based engine gtk-update-icon-cache-3.24.31 Gtk-update-icon-cache utility from the Gtk+ toolkit gtk2-2.24.33 Gimp Toolkit for X11 GUI (previous stable version) gtk3-3.24.34 Gimp Toolkit for X11 GUI (current stable version) gtk4-4.8.0 Gimp Toolkit for X11 GUI (current stable version) gtkmm30-3.24.2_2 C++ wrapper for Gtk+3 gtksourceview3-3.24.11_2 Text widget that adds syntax highlighting to the GtkTextView widget gtksourceview4-4.8.3 Text widget that adds syntax highlighting to the GtkTextView widget gucharmap-15.0.0 Unicode/ISO10646 character map and font viewer gupnp14-1.4.3 Framework for UPnP devices gutenprint-5.3.3 Gutenprint Printer Drivers gvfs-1.50.2_1 GNOME virtual file system gwenview-22.08.2 Image viewer and browser for KDE hack-font-3.003_1 Typeface designed for source code harfbuzz-5.3.0 OpenType text shaping engine harfbuzz-icu-5.3.0 Harfbuzz ICU support hdf5-1.12.2,1 Hierarchical Data Format library (from NCSA) (latest) hicolor-icon-theme-0.17 High-color icon theme shell from the FreeDesktop project highway-1.0.1 Performance-portable, length-agnostic SIMD with runtime dispatch hs-cputype-0.2.2 Find out your CPUTYPE htop-3.2.1 Better top(1) - interactive process viewer http-parser-2.9.4 HTTP request/response parser written in C hunspell-1.7.1 Improved spell-checker for Hungarian and other languages hyphen-2.8.8 Library for high quality hyphenation and justification iceauth-1.0.8_2 ICE authority file utility for X icu-71.1,1 International Components for Unicode (from IBM) incidenceeditor-22.08.2 Incidence editor libriares for KDEPim indexinfo-0.3.1 Utility to regenerate the GNU info page index intel-backlight-20200418_1 Control backlight on various modern Intel(R) GPUs iso-codes-4.7 Lists of the country, language, and currency iso names iso8879-1986_3 Character entity sets from ISO 8879:1986 (SGML) iwmbt-firmware-20210315 Intel Wireless 8260 bluetooth adaptor firmwares used by iwmbtfw(8) ja-kiten-22.08.2 Japanese reference/study tool for KDE jackit-1.9.21 Low latency audio server jansson-2.14 C library for encoding, decoding, and manipulating JSON data jasper-3.0.6 Implementation of the codec specified in the JPEG-2000 standard javavmwrapper-2.7.9 Wrapper script for various Java Virtual Machines jbig2dec-0.19 Decoder implementation of the JBIG2 image compression format jbigkit-2.1_1 Lossless compression for bi-level images such as scanned pages, faxes jpeg-turbo-2.1.4 SIMD-accelerated JPEG codec which replaces libjpeg json-c-0.16 JSON (JavaScript Object Notation) implementation in C json-glib-1.6.6 JSON (RFC 4627) interface for Glib jsoncpp-1.9.5 JSON reader and writer library for C++ kColorPicker-0.2.0_1 Qt based Color Picker library with popup menu kImageAnnotator-0.6.0 Library for image-annotation tools kaccounts-integration-22.08.2 System to administer web accounts for the KDE desktop kaddressbook-22.08.2 KDE contact manager kalarm-22.08.2 Personal alarm scheduler kalgebra-22.08.2 KDE graph calculator kamera-22.08.2 Digital camera manager for KDE kanagram-22.08.2 Letter order game for KDE kapman-22.08.2 Pac-Man Clone kate-22.08.2 Basic editor framework for the KDE system katomic-22.08.2 Sokoban-like Logic game kblackbox-22.08.2 Blackbox Logic game kblocks-22.08.2 Falling Blocks game kbounce-22.08.2 Ball Bouncing game kbreakout-22.08.2 Breakout-like game kbruch-22.08.2 KDE 4 application to exercise fractions kcalc-22.08.2 Scientific calculator for KDE kcalutils-22.08.2 KDE utility and user interface functions for accessing calendar kcharselect-22.08.2 Character selector for KDE kcolorchooser-22.08.2 KDE application to select colors from the screen or from a palette kcron-22.08.2 KDE task scheduler kde-baseapps-22.08.2_1 KDE5 baseapps meta port kde5-5.24.6.22.08.2 KDE Plasma Desktop and Applications (current) kdeadmin-22.08.2 KDE Administration applications (meta port) kdebugsettings-22.08.2 KDE application to enable/disable qCDebug kdeedu-22.08.2 Entertaining and educational programs for KDE (meta port) kdegames-22.08.2 Games for KDE (meta port) kdegraphics-22.08.2 Graphics utilities for KDE (meta port) kdegraphics-mobipocket-22.08.2 Mobipocket plugins for Strigi indexing and thumbnails kdegraphics-svgpart-22.08.2 SVG KPart kdegraphics-thumbnailers-22.08.2 Thumbnailers for various graphics file formats kdemultimedia-22.08.2_1 KDE Multimedia applications (meta port) kdemultimedia-ffmpegthumbs-22.08.2 FFmpeg-based thumbnail generator for video files kdenetwork-22.08.2 KDE Network applications (meta port) kdenetwork-filesharing-22.08.2 KDE Filesharing via Samba kdenlive-22.08.2 KDE professional quality non-linear video editing suite kdepim-22.08.2_1 KDE PIM applications metaport kdepim-addons-22.08.2 KDE PIM addons kdepim-runtime-22.08.2 KDE PIM tools and services kdeutils-22.08.2 Collection of utilities for KDE kdf-22.08.2 Shows free space of devices for KDE kdiagram-2.8.0 Library to create business diagrams kdialog-22.08.2 Show nice dialog boxes from shell scripts kdiamond-22.08.2 Three-in-a-row game kdsoap-1.9.0 C++/Qt SOAP framework keditbookmarks-22.08.2 Bookmark Organizer and Editor kf5-attica-5.99.0 Open Collaboration Services API library KDE5 version kf5-baloo-5.99.0 KF5 Framework for searching and managing user metadata kf5-breeze-icons-5.99.0 Breeze icon theme for KDE kf5-extra-cmake-modules-5.99.0 Extra modules and scripts for CMake kf5-frameworkintegration-5.99.0 KF5 workspace and cross-framework integration plugins kf5-kactivities-5.99.0 KF5 runtime and library to organize work in separate activities kf5-kactivities-stats-5.99.0 KF5 statistics for activities kf5-karchive-5.99.0 KF5 library that provides classes for handling archive formats kf5-kauth-5.99.0 KF5 abstraction to system policy and authentication features kf5-kbookmarks-5.99.0 KF5 library for bookmarks and the XBEL format kf5-kcalendarcore-5.99.0,1 KDE calendar access library kf5-kcmutils-5.99.0 KF5 utilities for working with KCModules kf5-kcodecs-5.99.0 KF5 library for string manipulation kf5-kcompletion-5.99.0 KF5 text completion helpers and widgets kf5-kconfig-5.99.0 KF5 widgets for configuration dialogs kf5-kconfigwidgets-5.99.0 KF5 widgets for configuration dialogs kf5-kcontacts-5.99.0,1 KDE api to manage contact information kf5-kcoreaddons-5.99.0 KF5 addons to QtCore kf5-kcrash-5.99.0 KF5 library to handle crash analysis and bug report from apps kf5-kdav-5.99.0,1 DAV protocol implementation with KJobs kf5-kdbusaddons-5.99.0 KF5 addons to QtDBus kf5-kdeclarative-5.99.0 KF5 library providing integration of QML and KDE Frameworks kf5-kded-5.99.0 KF5 extensible daemon for providing system level services kf5-kdelibs4support-5.99.0 KF5 porting aid from KDELibs4 kf5-kdesignerplugin-5.99.0 KF5 integration of Frameworks widgets in Qt Designer/Creator kf5-kdesu-5.99.0 KF5 integration with su for elevated privileges kf5-kdewebkit-5.99.0 KF5 library providing integration of QtWebKit kf5-kdnssd-5.99.0 KF5 abstraction to system DNSSD features kf5-kdoctools-5.99.0 KF5 documentation generation from docbook kf5-kemoticons-5.99.0 KF5 library to convert emoticons kf5-kfilemetadata-5.99.0 KF5 library for extracting file metadata kf5-kglobalaccel-5.99.0 KF5 library to add support for global workspace shortcuts kf5-kguiaddons-5.99.0 KF5 addons to QtGui kf5-kholidays-5.99.0 KDE library for calendar holidays kf5-khtml-5.99.0 KF5 KTHML rendering engine kf5-ki18n-5.99.0 KF5 advanced internationalization framework kf5-kiconthemes-5.99.0 KF5 library for handling icons in applications kf5-kidletime-5.99.0 KF5 library for monitoring user activity kf5-kimageformats-5.99.0_1 KF5 library providing support for additional image formats kf5-kinit-5.99.0 KF5 process launcher to speed up launching KDE applications kf5-kio-5.99.0 KF5 resource and network access abstraction kf5-kirigami2-5.99.0 QtQuick based components set kf5-kitemmodels-5.99.0 KF5 models for Qt Model/View system kf5-kitemviews-5.99.0 KF5 widget addons for Qt Model/View kf5-kjobwidgets-5.99.0 KF5 widgets for tracking KJob instance kf5-kjs-5.99.0 KF5 library providing an ECMAScript interpreter kf5-kjsembed-5.99.0 KF5 library for binding JavaScript objects to QObjects kf5-knewstuff-5.99.0 KF5 library for downloading application assets from the network kf5-knotifications-5.99.0 KF5 abstraction for system notifications kf5-knotifyconfig-5.99.0 KF5 configuration system for KNotify kf5-kpackage-5.99.0 KF5 library to load and install packages kf5-kparts-5.99.0 KF5 document centric plugin system kf5-kpeople-5.99.0 KF5 library providing access to contacts kf5-kplotting-5.99.0 KF5 lightweight plotting framework kf5-kpty-5.99.0 KF5 pty abstraction kf5-kquickcharts-5.99.0 KF5 QtQuick plugin providing high-performance charts kf5-kross-5.99.0 KF5 multi-language application scripting kf5-krunner-5.99.0 KF5 parallelized query system kf5-kservice-5.99.0 KF5 advanced plugin and service introspection kf5-ktexteditor-5.99.0 KF5 advanced embeddable text editor kf5-ktextwidgets-5.99.0 KF5 advanced text editing widgets kf5-kunitconversion-5.99.0 KF5 library for unit conversion kf5-kwallet-5.99.0 KF5 secure and unified container for user passwords kf5-kwayland-5.99.0 KF5 Client and Server library wrapper for the Wayland libraries kf5-kwidgetsaddons-5.99.0 KF5 addons to QtWidgets kf5-kwindowsystem-5.99.0 KF5 library for access to the windowing system kf5-kxmlgui-5.99.0 KF5 user configurable main windows kf5-kxmlrpcclient-5.99.0 KF5 interaction with XMLRPC services kf5-oxygen-icons5-5.99.0 The Oxygen icon theme for KDE kf5-plasma-framework-5.99.0 KF5 plugin based UI runtime used to write user interfaces kf5-prison-5.99.0 API to produce barcodes kf5-purpose-5.99.0 Offers available actions for a specific purpose kf5-qqc2-desktop-style-5.99.0 Qt QuickControl2 style for KDE kf5-solid-5.99.0 KF5 hardware integration and detection kf5-sonnet-5.99.0 KF5 plugin-based spell checking library kf5-syndication-5.99.0,1 KDE RSS feed handling library kf5-syntax-highlighting-5.99.0 KF5 syntax highlighting engine for structured text and code kf5-threadweaver-5.99.0 KF5 helper for multithreaded programming kfloppy-22.08.2 Floppy disk formatter for KDE kfourinline-22.08.2 Four-in-a-row Board game kgeography-22.08.2 KDE geography trainer kgpg-22.08.2 Encryption tool for KDE khangman-22.08.2 Hangman game for KDE 4 khelpcenter-22.08.2 Plasma5 application to show KDE application documentation kidentitymanagement-22.08.2 KDE pim identities kig-22.08.2 KDE interactive geometry application killbots-22.08.2 Evade killer robots kimap-22.08.2 KDE API for IMAP support kio-extras-22.08.2 Plasma5 library to increase the functionality of KIO kipi-plugins-22.08.2 Plugin architecture for image applications kiriki-22.08.2 Yahtzee-like Dice game kitinerary-22.08.2 Data Model and Extraction System for Travel Reservation information kjumpingcube-22.08.2 Territory Capture game kldap-22.08.2 LDAP access API for KDE klettres-22.08.2 Alphabet learning tool for KDE klickety-22.08.2 Tetris themed solitaire klines-22.08.2 Tactical game kmahjongg-22.08.2 Mahjongg Solitaire kmail-22.08.2 KDE mail client kmail-account-wizard-22.08.2 KDE mail account wizard kmailtransport-22.08.2 KDE library to managing mail transport kmbox-22.08.2 KDE library for accessing mail storages in MBox format kmime-22.08.2 Library for handling MIME data kmines-22.08.2 Minesweeper-like game kmplot-22.08.2 Mathematical function plotter for KDE knavalbattle-22.08.2 Ship Sinking game knetwalk-22.08.2 Network Construction game knights-22.08.2 KDE chess interface kolf-22.08.2 Miniature Golf kollision-22.08.2 Simple ball dodging game kolourpaint-22.08.2 KDE paint program konquest-22.08.2 Galactic Strategy game konsole-22.08.2 KDE terminal emulator kontact-22.08.2 KDE Personal Information Manager kontactinterface-22.08.2 KDE glue for embedding KParts into Kontact kopete-22.08.2 KDE multi-protocol instant messenger korganizer-22.08.2 Calendar and scheduling Program kpat-22.08.2 Patience Card game kpimtextedit-22.08.2 KDE library for PIM-specific text editing utilities kpkpass-22.08.2 Library to deal with Apple Wallet pass files krdc-22.08.2 RDP and VNC client for KDE kreversi-22.08.2 Reversi Board game krfb-22.08.2 VNC server for KDE kruler-22.08.2 KDE screen ruler ksanecore-22.08.2 Library providing logic to interface scanners kshisen-22.08.2 Shisen-Sho Mahjongg-like Tile game ksirk-22.08.2 World Domination Strategy game ksmtp-22.08.2 Job-based library to send email through an SMTP server ksnakeduel-22.08.2 Snake-like game kspaceduel-22.08.2 Space Arcade game ksquares-22.08.2 Connect the dots to create squares ksudoku-22.08.2 Sudoku game ksystemlog-22.08.2 KDE system log application kteatime-22.08.2 Handy timer for steeping tea ktimer-22.08.2 Countdown launcher for KDE ktnef-22.08.2 KDE API for the handling of TNEF data ktuberling-22.08.2 Picture game for Children kturtle-22.08.2 Educational programming environment for KDE kubrick-22.08.2 3-D game based on Rubik's Cube kuserfeedback-1.2.0_1 Framework for collecting user feedback kwalletmanager-22.08.2 Password manager for KDE kwordquiz-22.08.2 Flash card trainer for KDE Applications lame-3.100_4 Fast MP3 encoder kit lapack-3.10.1 Linear Algebra PACKage lapacke-3.10.1 Standard C language APIs for LAPACK lcms-1.19_6,1 Light Color Management System -- a color management library lcms2-2.13.1 Accurate, fast, and small-footprint color management engine libFS-1.0.8 The FS library libGLU-9.0.2_1 OpenGL utility library libICE-1.0.10,1 Inter Client Exchange library for X11 libSM-1.2.3,1 Session Management library for X11 libX11-1.7.2,1 X11 library libXScrnSaver-1.2.3_2 The XScrnSaver library libXau-1.0.9 Authentication Protocol library for X11 libXaw-1.0.14,2 X Athena Widgets library libXcomposite-0.4.5,1 X Composite extension library libXcursor-1.2.0 X client-side cursor loading library libXdamage-1.1.5 X Damage extension library libXdmcp-1.1.3 X Display Manager Control Protocol library libXext-1.3.4,1 X11 Extension library libXfixes-6.0.0 X Fixes extension library libXfont-1.5.4_2,2 X font library libXfont2-2.0.5 X font library libXft-2.3.6 Client-sided font API for X applications libXi-1.8,1 X Input extension library libXinerama-1.1.4_2,1 X11 Xinerama library libXmu-1.1.3,1 X Miscellaneous Utilities libraries libXpm-3.5.13 X Pixmap library libXrandr-1.5.2 X Resize and Rotate extension library libXrender-0.9.10_2 X Render extension library libXres-1.2.1 X Resource usage library libXt-1.2.1,1 X Toolkit library libXtst-1.2.3_2 X Test extension libXv-1.0.11_2,1 X Video Extension library libXvMC-1.0.12 X Video Extension Motion Compensation library libXxf86dga-1.1.5 X DGA Extension libXxf86vm-1.1.4_3 X Vidmode Extension liba52-0.7.4_3 Free library for decoding ATSC A/52 streams, aka AC-3 libabw-0.1.3_3 Library providing ability to interpret Abiword documents libaccounts-glib-1.26 Accounts and SSO framework for Linux and POSIX based platforms libaccounts-qt5-1.16_3 Qt5 wrapper for SSO framework libaec-1.0.6 Adaptive entropy coding library libao-1.2.0_5 Portable audio output library libarchive-3.6.1,1 Library to create and read several streaming archive formats libass-0.16.0 Portable ASS/SSA subtitle renderer libassuan-2.5.5 IPC library used by GnuPG and gpgme libavif-0.11.0 Library for encoding and decoding .avif files libbluray-1.3.3,1 Blu-Ray discs playback library for media players libcanberra-0.30_8 Implementation of the Freedesktop sound theme spec libcanberra-gtk3-0.30_8 Implementation of the Freedesktop sound theme spec libcddb-1.3.2_4 Library to access data on a CDDB server libcdio-2.1.0 Compact Disc Input and Control Library libcdio-paranoia-10.2+2.0.1 Read audio from the CDROM directly as data libcdr01-0.1.7_3 Library and tools for parsing Corel Draw file format libcmis-0.5.2_6 Client library for the CMIS interface libdaemon-0.14_1 Lightweight C library that eases the writing of UNIX daemons libdbusmenu-qt5-0.9.3.160420160218_13 Qt5 implementation of the DBusMenu protocol libdc1394-2.2.6 1394-based DC Control Library libdca-0.0.7 Free DTS Coherent Acoustics decoder libde265-1.0.8 Open source h.265 video codec libdecor-0.1.0_1 Client-side decorations library for Wayland client libdeflate-1.14 Fast, whole-buffer DEFLATE-based compression library libdmtx-0.7.5 Library for reading and writing Data Matrix barcodes libdmx-1.1.4_2 DMX extension library libdrm-2.4.113,1 Userspace interface to kernel Direct Rendering Module services libdvbpsi-1.3.3 Library for MPEG TS and DVB PSI tables decoding and generation libdvdnav-6.1.1 Videolan version of the libdvdnav project libdvdread-6.1.3 Videolan version of the libdvdread project libe-book-0.1.3_25 Library for import of reflowable e-book formats libebml-1.4.4 EBML (Extensible Binary Meta Language), sort of binary version of XML libedit-3.1.20210910,1 Command line editor library libepoll-shim-0.0.20220703 Small epoll implementation using kqueue libepoxy-1.5.9 Library to handle OpenGL function pointer management libepubgen-0.1.1_1 Library for generating documents in ePub format liberation-fonts-ttf-2.1.5,2 Liberation fonts from Red Hat to replace MS TTF fonts libetonyek01-0.1.10_5,1 Library to interpret and import Apple Keynote presentations libevdev-1.9.1.20200928 Linux Event Device library libevent-2.1.12 API for executing callback functions on events or timeouts libexif-0.6.24 Library to read digital camera file meta-data libexttextcat-3.4.6 Language guessing by N-Gram-Based Text Categorization libfame-0.9.1_6 Video encoding library libffi-3.4.3 Foreign Function Interface libfontenc-1.1.4 The fontenc Library libfreehand-0.1.2_23 Library for interpreting and importing Adobe/Macromedia drawings libgcrypt-1.9.4_1 General purpose cryptographic library based on the code from GnuPG libgd-2.3.3_2,1 Graphics library for fast creation of images libgeotiff-1.7.1 Library for reading and writing GeoTIFF information tags libgit2-1.3.2 Portable, pure C implementation of the Git core libglvnd-1.4.0_2 GL Vendor-Neutral Dispatch library libgpg-error-1.45 Common error values for all GnuPG components libgphoto2-2.5.26_2 Universal digital camera control library libgravatar-22.08.2 Library for gravatar support libgsf-1.14.50 Extensible I/O abstraction for dealing with structured file formats libgtop-2.40.0 GNOME top library libgudev-234 GObject bindings for libudev libgxps-0.3.2 GObject based library for rendering XPS documents libhandy-1.6.2 Library with GTK+ widgets for mobile phones libheif-1.13.0_1 ISO/IEC 23008-12:2017 HEIF file format de- and encoder libical-3.0.8_6 Implementation of the IETF Calendaring and Scheduling protocols libiconv-1.17 Character set conversion library libid3tag-0.16.2 ID3 tags library (part of MAD project) libidn-1.38 Internationalized Domain Names command line tool libidn2-2.3.3 Implementation of IDNA2008 internationalized domain names libimagequant-2.17.0 Image Quantization Library libinotify-20211018 Kevent based inotify compatible library libinput-1.19.4_1 Generic input library libixion-0.17.0_2 General purpose formula parser, interpreter, dependency tracker libjxl-0.7.0 JPEG XL reference encoder/decoder libkate-0.4.1_11 Codec for karaoke and text encapsulation for Ogg libkcddb-22.08.2 KDE CDDB library libkcompactdisc-22.08.2 KDE library for interfacing with audio CDs libkdcraw-22.08.2 LibRaw interface for KDE libkdegames-22.08.2 Libraries used by KDE games libkdepim-22.08.2 KDE PIM Libraries libkeduvocdocument-22.08.2 Library for reading and writing vocabulary files libkexiv2-22.08.2 Exiv2 library interface for KDE libkgapi-22.08.2 KDE based library to access google services libkipi-22.08.2 KDE Image Plugin Interface libkleo-22.08.2 Certificate manager for KDE libkmahjongg-22.08.2 Library for the Mahjongg Solitaire for KDE 5 libkml-1.3.0_25 Reference implementation of OGC KML 2.2 libkolabxml-1.1.6_14 Kolab XML Format Schema Definitions Library libksane-22.08.2 SANE library interface for KDE libksba-1.6.2 Library to make X.509 certificates libksieve-22.08.2 Sieve libriares for KDEPim libkvkontakte-5.0.0_5 KDE library for accessing vk.com liblangtag-0.6.4 Interface library to access tags for identifying languages libltdl-2.4.7 System independent dlopen wrapper liblz4-1.9.4,1 LZ4 compression library, lossless and very fast libmad-0.16.3 Libmad library (part of MAD project) libmatekbd-1.26.0 MATE keyboard shared library libmatemixer-1.26.0 Mixer library for MATE desktop libmateweather-1.26.0_2 Library to access online weather information libmatroska-1.7.1 Extensible Multimedia Container Format libmediawiki-5.38.0 KDE library for accessing MediaWiki sites libmng-1.0.10_3 Multiple-image Network Graphics (MNG) reference library libmodplug-0.8.9.0 ModPlug mod-like music shared libraries libmspub01-0.1.4_21 Library and tools for parsing Microsoft Publisher file format libmtdev-1.1.6_1 Multitouch Protocol Translation Library libmtp-1.1.18 Media Transfer Protocol (MTP) library libmusicbrainz5-5.1.0.19_2 MusicBrainz client library for audio metadata lookup libmwaw03-0.3.21 Import library for some old mac text documents libmypaint-1.6.1_1 Brush library from the MyPaint project libmysofa-1.3.1 SOFA (Spatially Oriented Format for Acoustics) file reader libnfs-5.0.2 Client library for accessing NFS shares over a network libnghttp2-1.48.0 HTTP/2.0 C Library libnotify-0.8.1 Library for desktop notifications libnsgif-0.2.1 NetSurf GIF Decoder libnumbertext-1.0.8 Number to number name and money text conversion libraries libobjc2-2.1_3 Replacement Objective-C runtime supporting modern Objective-C features libodfgen01-0.1.8_2 Library for generating documents in Open Document Format (ODF) libogg-1.3.5,4 Ogg bitstream library liborcus-0.17.2_2 Standalone file import filter library for spreadsheet documents libotr-4.1.1 Portable OTR Messaging Library and toolkit libpagemaker-0.0.4_11 Library and tools for parsing Aldus/Adobe PageMaker documents libpaper-1.1.28 Library providing routines for paper size management libpci-3.8.0 PCI configuration space I/O made easy libpciaccess-0.16 Generic PCI access library libpeas-1.26.0 Next evolution of the Gedit plugins engine libphonenumber-8.12.56_1 Library for parsing, formatting, and validating phone numbers libproxy-0.4.17_1 Library that provides automatic proxy configuration management libpsl-0.21.1_4 C library to handle the Public Suffix List libpthread-stubs-0.4 Weak aliases for pthread functions libqalculate-4.3.0 Multi-purpose desktop calculator (backend library) libqrencode-4.1.1 C library for encoding data in a QR Code symbol libqxp-0.0.0_21 Library for parsing QuarkXPress documents libraw-0.20.2_3 Library for manipulating raw images libreoffice-7.4.2.3 Full integrated office productivity suite librevenge-0.0.4_14 Base library for writing document import filters librsvg2-rust-2.54.5 Library for parsing and rendering SVG vector-graphic files librttopo-1.1.0 RT Topology Library libsamplerate-0.2.2 Secret Rabbit Code: a Sample Rate Converter for audio libsecret-0.20.5_1 Library to access the secret service API libsigc++-2.10.8 Callback Framework for C++ libsigsegv-2.14 Handling page faults in user mode libsndfile-1.0.31_2 Reading and writing files containing sampled sound (like WAV or AIFF) libsoup-2.74.3 SOAP (Simple Object Access Protocol) implementation in C libsoup3-3.2.1 HTTP client/server library for GNOME libsoxr-0.1.3_3 High quality, one-dimensional sample-rate conversion library libspectre-0.2.10 Small library for rendering Postscript documents libspiro-20200505,1 Library to convert clothoid splines into Bezier splines libssh-0.10.4 Library implementing the SSH2 protocol libssh2-1.10.0,3 Library implementing the SSH2 protocol libstaroffice-0.0.7_1 Library to build a filter for old StarOffice's documents libsunacl-1.0.1 Wrapper providing SunOS NFSv4 ACL API libsysinfo-0.0.3_2 GNU libc's sysinfo port for FreeBSD libtasn1-4.18.0 ASN.1 structure parser library libtextstyle-0.21 Text styling library libtheora-1.1.1_7 Theora video codec for the Ogg multimedia streaming system libublio-20070103_3 User space caching library libudev-devd-0.5.0 libudev-compatible interface for devd libudisks-2.9.2 Library to manipulate storage devices, from udisks libunique-3.0.2_3 Library for single instance applications libunistring-1.0 Unicode string library libunwind-20211201_1 Generic stack unwinding library libuv-1.44.2 Multi-platform support library with a focus on asynchronous I/O libv4l-1.23.0 Video4Linux library libva-2.16.0 VAAPI wrapper and dummy driver libva-glx-2.16.0_1 VAAPI wrapper for GLX libvdpau-1.5 VDPAU wrapper and tracing library libvisio01-0.1.7_9 Library and tools for parsing the visio file format structure libvncserver-0.9.13_1 Provide an easy API to a custom vnc server libvorbis-1.3.7_2,3 Audio compression codec library libvpx-1.12.0 VP8/VP9 reference encoder/decoder libwacom-1.5 Adds tablet support to libinput libwmf-0.2.12 Tools and library for converting Microsoft WMF (windows metafile) libwnck3-3.36.0 Library used for writing pagers and taskslists libwpd010-0.10.3_7 Tools for importing and exporting WordPerfect(tm) documents libwpe-1.12.0 General-purpose library for WPE WebKit libwpg03-0.3.3_1 Library and tools to work with WordPerfect Graphics (WPG) files libwps-0.4.12 Microsoft file word processor format import filter library libx264-0.164.3095 H.264/MPEG-4 AVC Video Encoding (Library) libxcb-1.15 The X protocol C-language Binding (XCB) library libxcvt-0.1.2_1 Calculate VESA CVT mode lines libxine-1.2.12_4 Libraries for xine multimedia player libxkbcommon-1.4.1 Keymap handling library for toolkits and window systems libxkbfile-1.1.0 XKB file library libxklavier-5.3_3,1 Utility library to make XKB stuff easier libxml++-2.40.1_2,1 XML API for C++ libxml2-2.10.2 XML parser library for GNOME libxshmfence-1.3_1 Shared memory 'SyncFence' synchronization primitive libxslt-1.1.37 XML stylesheet transformation library libzip-1.9.2 C library for reading, creating, and modifying ZIP archives libzmf-0.0.2_26 Library that parses the file format of Zoner Callisto/Draw documents linuxlibertine-g-20120116_2 Linux Libertine G and Linux Biolinum G fonts liveMedia-2022.06.16,2 LIVE.COM Streaming Media llvm13-13.0.1_3 LLVM and Clang lmdb-0.9.29_1,1 OpenLDAP Lightning Memory-Mapped Database lp_solve-5.5.2.5 Linear Programming Solver lscpu-1.2.0 Display information about the CPU architecture lskat-22.08.2 Card game lsof-4.96.3,8 Lists information about open files (similar to fstat(1)) lua52-5.2.4 Small, compilable scripting language providing easy access to C code lua53-5.3.6 Powerful, efficient, lightweight, embeddable scripting language luajit-2.0.5_6 Just-In-Time Compiler for Lua lzo2-2.10_1 Portable speedy, lossless data compression library m4-1.4.19,1 GNU M4 mailcommon-22.08.2 Common libriares for KDEPim mailimporter-22.08.2 Import mbox files to KMail malo-firmware-kmod-3.0.0.39 Marvell Libertas 88W8335 IEEE 802.11b/g Firmware Kernel Module marble-22.08.2 Virtual globe and world atlas for KDE marco-1.26.0 Window manager for the adult in you mate-1.26.0 "meta-port" for the MATE integrated X11 desktop mate-applets-1.26.0_2 Applets components for the MATE Desktop Environment mate-backgrounds-1.26.0 Collection of backgrounds for MATE mate-base-1.26.0 "meta-port" for the MATE base integrated X11 desktop mate-calc-1.26.0_2 MATE calculator tool based on the old calctool for OpenWindows mate-control-center-1.26.0_3 Control center for MATE project mate-desktop-1.26.0 Additional UI API for MATE mate-icon-theme-1.26.0 Collection of icons for the MATE desktop mate-media-1.26.0_3 Multimedia applications for the MATE desktop mate-menus-1.26.0 Implementation of the FreeDesktop Desktop Menu Spec mate-notification-daemon-1.26.0_1 Send small notifications to your desktop mate-pam-helper-1.3 MATE authenticate applications requiring PAM services mate-panel-1.26.2,1 Panel component for the MATE Desktop mate-polkit-1.26.0 MATE frontend to the PolicyKit framework mate-power-manager-1.26.0_1 Power management system for the MATE Desktop mate-screensaver-1.26.1_2 MATE screen saver and locker mate-session-manager-1.26.0_2 Session component for the MATE desktop mate-settings-daemon-1.26.0_1 MATE settings daemon mate-system-monitor-1.26.0_2 MATE system monitor program mate-terminal-1.26.0 Terminal component for the MATE Desktop mate-themes-3.22.23 Collection of themes and icons for MATE mate-user-guide-1.26.0 MATE users guide mate-utils-1.26.0_1 MATE support utilities mbedtls-2.28.1 SSL/TLS and cryptography library mbox-importer-22.08.2 Import mbox files to KMail mesa-demos-8.4.0_3 OpenGL demos distributed with Mesa mesa-dri-21.3.8 OpenGL hardware acceleration drivers for DRI2+ mesa-libs-21.3.8 OpenGL libraries that support GLX and EGL clients messagelib-22.08.2 Library for handling messages metis-5.1.0_9 Package for unstructured graph partitioning minizip-1.2.11 Zip library and programs from Zlib distribution mkfontscale-1.2.1 Creates an index of scalable font files for X mlt7-7.8.0_2 Multimedia framework for TV broadcasting mlt7-glaxnimate-7.8.0_2 2D animations plugin for the MLT multimedia framework mlt7-qt5-7.8.0_2 Qt plugin for the MLT multimedia framework montserrat-7.210 Sans-serif font inspired by the street signs of Montserrat movit-1.6.3 High-performance video filters for the GPU mozo-1.26.1 Editor for the freedesktop.org menu specification mpc-1.2.1 Library of complex numbers with arbitrarily high precision mpdecimal-2.5.1 C/C++ arbitrary precision decimal floating point libraries mpfr-4.1.0_1 Library for multiple-precision floating-point computations mpg123-1.30.2 Command-line player for MPEG Layer 1, 2, and 3 audio files mypaint-brushes-1.3.1 Brushes used by MyPaint and other software using libmypaint mysql57-client-5.7.39_1 Multithreaded SQL database (client) mysql57-server-5.7.39_1 Multithreaded SQL database (server) mythes-1.2.4_7 Simple thesaurus library nano-6.4 Nano's ANOther editor, an enhanced free Pico clone ncurses-6.3 Library for terminal-independent, full-screen output neofetch-7.1.0_1 Fast, highly customizable system info script neon-0.32.2 HTTP and WebDAV client library for Unix systems netcdf-4.9.0_1 C library for machine-independent, array-oriented data access nettle-3.8.1 Low-level cryptographic library newsboat-2.27_4 RSS feed reader for the text console noto-basic-2.0_1 Google Noto Fonts family (Basic) npth-1.6 New GNU Portable Threads nspr-4.35 Platform-neutral API for system level and libc like functions nss-3.84 Libraries to support development of security-enabled applications obs-studio-27.2.4_1 Open source streaming/recording software okular-22.08.2 KDE universal document viewer openal-soft-1.21.1_3 Software implementation of the OpenAL specification openblas-0.3.20,1 Optimized BLAS library based on GotoBLAS2 opencl-3.0.12 Open Computing Language (OpenCL) specifications V3.0 (header files) opencv-4.6.0_2 Open Source Computer Vision library openexr-3.1.5 High dynamic-range (HDR) image file format openh264-2.3.0,2 Cisco implementation of H.264 codec openjdk11-11.0.16+8.1_2 Java Development Kit 11 openjpeg-2.5.0 Open-source JPEG 2000 codec openldap26-client-2.6.3 Open source LDAP client implementation openslp-2.0.0_1 Open-source implementation of the Service Location Protocol opus-1.3.1 IETF audio codec opusfile-0.12 Opus playback library orc-0.4.32 Library and toolset to operate arrays of data p11-kit-0.24.1_1 Library for loading and enumerating of PKCS#11 modules p5-Authen-SASL-2.16_1 Perl5 module for SASL authentication p5-CGI-4.54 Handle Common Gateway Interface requests and responses p5-Clone-0.45 Recursively copy Perl datatypes p5-Digest-HMAC-1.04 Perl5 interface to HMAC Message-Digest Algorithms p5-Encode-Locale-1.05 Determine the locale encoding p5-Error-0.17029 Error/exception handling in object-oriented programming style p5-GSSAPI-0.28_2 Perl extension providing access to the GSSAPIv2 library p5-HTML-Parser-3.78 Perl5 module for parsing HTML documents p5-HTML-Tagset-3.20_1 Some useful data table in parsing HTML p5-HTTP-Date-6.05 Conversion routines for the HTTP protocol date formats p5-HTTP-Message-6.38 Representation of HTTP style messages p5-IO-HTML-1.004 Open an HTML file with automatic charset detection p5-IO-Socket-INET6-2.72_1 Perl module with object interface to AF_INET6 domain sockets p5-IO-Socket-SSL-2.075 Perl5 interface to SSL sockets p5-LWP-MediaTypes-6.04 Guess media type for a file or a URL p5-Mozilla-CA-20211001 Perl extension for Mozilla CA cert bundle in PEM format p5-Net-SSLeay-1.92 Perl5 interface to SSL p5-Socket6-0.29 IPv6 related part of the C socket.h defines and structure manipulators p5-TimeDate-2.33,1 Perl5 module containing a better/faster date parser for absolute dates p5-URI-5.13 Perl5 interface to Uniform Resource Identifier (URI) references palapeli-22.08.2 Jigsaw puzzle game pango-1.50.9 Open-source framework for the layout and rendering of i18n text pangomm-2.40.1_6 C++ wrapper for Pango papirus-icon-theme-20220808 Papirus icon theme parley-22.08.2 Vocabulary trainer for KDE pcaudiolib-1.2 Portable C audio library pciids-20220909 Database of all known IDs used in PCI devices pcre-8.45_1 Perl Compatible Regular Expressions library pcre2-10.40 Perl Compatible Regular Expressions library, version 2 pdftohtml-0.40a_2 Command-line tool for converting pdf-files into html perl5-5.32.1_3 Practical Extraction and Report Language phonon-gstreamer-qt5-4.10.0_4 GStreamer backend for Phonon phonon-qt5-4.11.1 KDE multimedia framework picmi-22.08.2 Single player logic-based puzzle game pim-data-exporter-22.08.2 Import and export KDE PIM settings pim-sieve-editor-22.08.2 Mail sieve editor pimcommon-22.08.2 Common libriares for KDEPim pinentry-1.2.1 Collection of simple PIN or passphrase entry dialogs pinentry-curses-1.2.1 Curses version of the GnuPG password dialog pinentry-qt5-1.2.1 Qt 5 version of the GnuPG password dialog pixman-0.40.0_1 Low-level pixel manipulation library pkg-1.18.4 Package manager pkgconf-1.8.0_1,1 Utility to help to configure compiler and linker flags plasma-wayland-protocols-1.9.0 Plasma Specific Protocols for Wayland plasma5-breeze-5.24.6_1 Plasma5 artwork, styles and assets for the Breeze visual style plasma5-breeze-gtk-5.24.6 Plasma5 Breeze visual style for Gtk plasma5-discover-5.24.6_1 Plasma5 package management tools plasma5-drkonqi-5.24.6_1 Plasma5 crash handler plasma5-kactivitymanagerd-5.24.6_3 System service to manage user's activities, track the usage patterns plasma5-kde-cli-tools-5.24.6_1 Plasma5 non-interactive system tools plasma5-kde-gtk-config-5.24.6_1 Plasma5 GTK2 and GTK3 configurator plasma5-kdecoration-5.24.6 Plasma5 library to create window decorations plasma5-kdeplasma-addons-5.24.6_2 Plasma5 addons to improve the Plasma experience plasma5-kgamma5-5.24.6 Plasma5 display gamma settings plasma5-khotkeys-5.24.6 Plasma5 library for hotkeys plasma5-kinfocenter-5.24.6 Plasma5 utility providing system information plasma5-kmenuedit-5.24.6_1 Plasma5 menu editor plasma5-kscreen-5.24.6_1 Plasma5 screen management library plasma5-kscreenlocker-5.24.6_1 Plasma5 secure lock screen architecture plasma5-ksshaskpass-5.24.6 Plasma5 ssh-add frontend plasma5-ksysguard-5.22.0_2 Plasma5 utility to track and control the running processes plasma5-ksystemstats-5.24.6 Plasma5 library to report system activity plasma5-kwallet-pam-5.24.6 Plasma5 KWallet PAM Integration plasma5-kwayland-integration-5.24.6 Integration plugins for a Wayland-based desktop plasma5-kwayland-server-5.24.6 Wayland Server Components built on KDE Frameworks plasma5-kwin-5.24.6_1 Plasma5 window manager plasma5-kwrited-5.24.6 Plasma5 daemon listening for wall and write messages plasma5-layer-shell-qt-5.24.6_1 Qt component to make use of the Wayland wl-layer-shell protoco plasma5-libkscreen-5.24.6_1 Plasma5 screen management library plasma5-libksysguard-5.24.6_1 Plasma5 library to track and control running processes plasma5-milou-5.24.6 Plasma5 Plasmoid for search plasma5-oxygen-5.24.6_1 Plasma5 Oxygen style plasma5-plasma-5.24.6_1 KDE5 plasma meta port plasma5-plasma-browser-integration-5.24.6_2 Plasma5 components to integrate browsers into the desktop plasma5-plasma-desktop-5.24.6_2 Plasma5 plasma desktop plasma5-plasma-disks-5.24.6_1 Monitors S.M.A.R.T. capable devices for imminent failure plasma5-plasma-integration-5.24.6_1 Qt Platform Theme integration plugins for the Plasma workspaces plasma5-plasma-pa-5.24.6 Plasma5 Plasma pulse audio mixer plasma5-plasma-sdk-5.24.6_1 Plasma5 applications useful for Plasma development plasma5-plasma-workspace-5.24.6_2 Plasma5 Plasma workspace plasma5-plasma-workspace-wallpapers-5.24.6 Plasma5 wallpapers plasma5-polkit-kde-agent-1-5.24.6_1 Plasma5 daemon providing a polkit authentication UI plasma5-powerdevil-5.24.6_1 Plasma5 tool to manage the power consumption settings plasma5-sddm-kcm-5.24.6_1 Plasma5 config module for SDDM plasma5-systemsettings-5.24.6_1 Plasma5 system settings pluma-1.26.0_3 Small but powerful text editor for MATE Desktop Environment png-1.6.37_1 Library for manipulating PNG images polkit-0.120_2 Framework for controlling access to system-wide components polkit-qt-1-0.114.0 Qt5 wrapper around Polkit libraries poppler-22.10.0 PDF rendering library poppler-data-0.4.11 Poppler encoding data poppler-glib-22.10.0 GLib bindings to poppler poppler-qt5-22.10.0 Qt 5 bindings to poppler poppler-utils-22.10.0 Poppler's xpdf-workalike command line utilities popt-1.19 Getopt(3) like library with a number of enhancements, from Redhat postgresql13-client-13.8 PostgreSQL database (client) print-manager-22.08.2 Printer manager for KDE proj-8.2.1_2,1 Cartographic Projections library proj-data-1.11 Datum grid package for PROJ protobuf-3.21.7,1 Data interchange format library psutils-1.17_5 Utilities for manipulating PostScript documents pulseaudio-14.2_4 Sound server for UNIX py39-boost-libs-1.80.0 Framework for interfacing Python and C++ py39-cairo-1.21.0,1 Python bindings for Cairo py39-dbus-1.3.2 Python bindings for the D-BUS messaging system py39-dnspython-2.2.1_1,1 DNS toolkit for Python py39-evdev-1.6.0 Bindings to the Linux input handling subsystem py39-gobject3-3.42.2 Python 3.9 bindings for GObject py39-importlib-metadata-4.8.1 Read metadata from Python packages py39-markdown-3.3.7 Python implementation of Markdown py39-numpy-1.23.3,1 The New Numeric Extension to Python py39-pyserial-3.5_2 Serial port encapsulation library for Python py39-pysol-cards-0.14.2 Deal PySol FC Cards py39-pyudev-0.22.0 Pure Python libudev binding py39-random2-1.0.1 Python 3 compatible Python 2 random module py39-setuptools-63.1.0 Python packages installer py39-six-1.16.0 Python 2 and 3 compatibility utilities py39-zipp-3.4.0 Backport of pathlib-compatible object wrapper for zip files pydbus-common-1.3.2 Common files for the Python bindings for the D-BUS messaging system pygobject3-common-3.42.2 Common files for the Python bindings for GObject python39-3.9.14 Interpreted object-oriented programming language qca-qt5-2.3.4_1 Cross-platform crypto API for Qt 5 qhull-8.0.2_1,1 Qhull computes convex hulls, Delaunay triangulations, and halfspaces qpdf-11.1.1 Command-line tools for transforming and inspecting PDF documents qr-code-generator-1.6.0 High-quality QR Code generator library qsudo-201711240000_4 Qt sudo front-end qt5-assistant-5.15.5p1 Qt 5 documentation browser (KDE patched) qt5-buildtools-5.15.5p165 Qt build tools (KDE patched) qt5-charts-5.15.5p1 Qt 5 charts module (KDE patched) qt5-concurrent-5.15.5p165 Qt multi-threading module (KDE patched) qt5-core-5.15.5p165_2 Qt core non-graphical module (KDE patched) qt5-dbus-5.15.5p165 Qt D-Bus inter-process communication module (KDE patched) qt5-declarative-5.15.5p19 Qt declarative framework for dynamic user interfaces (KDE patched) qt5-designer-5.15.5p1 Qt 5 graphical user interface designer (KDE patched) qt5-graphicaleffects-5.15.5p0 Qt Quick graphical effects (KDE patched) qt5-gui-5.15.5p165 Qt graphical user interface module (KDE patched) qt5-help-5.15.5p1 Qt online help integration module (KDE patched) qt5-imageformats-5.15.5p3_1 Qt plugins for additional image formats (KDE patched) qt5-linguist-5.15.5p1 Qt 5 translation tool (KDE patched) qt5-linguisttools-5.15.5p1 Qt localization tools (KDE patched) qt5-location-5.15.5p3 Qt location module (KDE patched) qt5-multimedia-5.15.5p1 Qt audio, video, radio and camera support module (KDE patched) qt5-network-5.15.5p165_1 Qt network module (KDE patched) qt5-networkauth-5.15.5p0 Qt network auth module (KDE patched) qt5-opengl-5.15.5p165 Qt 5-compatible OpenGL support module (KDE patched) qt5-printsupport-5.15.5p165 Qt print support module (KDE patched) qt5-qdbus-5.15.5p1 Qt command-line interface to D-Bus (KDE patched) qt5-qtpaths-5.15.5p1 Command line client to QStandardPaths (KDE patched) qt5-quickcontrols-5.15.5p0 Set of controls for building complete interfaces in Qt Quick (KDE patched) qt5-quickcontrols2-5.15.5p6 Set of controls for building complete interfaces in Qt Quick (KDE patched) qt5-script-5.15.10p0 Qt 4-compatible scripting module (KDE patched) qt5-scripttools-5.15.10p0 Qt Script additional components (KDE patched) qt5-sensors-5.15.5p0 Qt sensors module (KDE patched) qt5-serialport-5.15.5p0 Qt functions to access serial ports (KDE patched) qt5-speech-5.15.5p1 Accessibilty features for Qt5 (KDE patched) qt5-sql-5.15.5p165 Qt SQL database integration module (KDE patched) qt5-sqldrivers-mysql-5.15.5p165 Qt MySQL database plugin (KDE patched) qt5-sqldrivers-sqlite3-5.15.5p165 Qt SQLite 3 database plugin (KDE patched) qt5-svg-5.15.5p10 Qt SVG support module (KDE patched) qt5-testlib-5.15.5p165 Qt unit testing module (KDE patched) qt5-uiplugin-5.15.5p1 Custom Qt widget plugin interface for Qt Designer (KDE patched) qt5-uitools-5.15.5p1 Qt Designer UI forms support module (KDE patched) qt5-virtualkeyboard-5.15.5p3_1 Qt 5 Virtual Keyboard Module (KDE patched) qt5-wayland-5.15.5p39_1 Qt5 wrapper for Wayland (KDE patched) qt5-webchannel-5.15.5p3 Qt 5 library for integration of C++/QML with HTML/js clients (KDE patched) qt5-webengine-5.15.2_7 Qt 5 library to render web content qt5-webkit-5.212.0.a4_10 QtWebKit with a more modern WebKit code base qt5-widgets-5.15.5p165 Qt C++ widgets module (KDE patched) qt5-x11extras-5.15.5p0 Qt platform-specific features for X11-based systems (KDE patched) qt5-xml-5.15.5p165 Qt SAX and DOM implementations (KDE patched) qt5-xmlpatterns-5.15.5p0 Qt support for XPath, XQuery, XSLT and XML Schema (KDE patched) qtkeychain-qt5-0.13.2_1 Platform independent Qt API for storing passwords quazip-qt5-1.3 Qt/C++ wrapper for ZIP/UNZIP package raptor2-2.0.15_23 RDF Parser Toolkit for Redland rar-6.12,3 File archiver (binary port) rasqal-0.9.33_1 High-level interface for RDF re2-20220601 Fast C++ regex library readline-8.1.2 Library for editing command lines as they are typed recordmydesktop-0.3.8.1_9 Record desktop sessions to an Ogg-Theora-Vorbis file redland-1.0.17_4 High-level interface for RDF rhash-1.4.3 Utility and library for computing and checking of file hashes rocs-22.08.2 KDE Graph theory IDE rsync-3.2.5 Network file distribution/synchronization utility rttr-0.9.6.16_3 Run Time Type Reflection samba412-4.12.15_4 Free SMB/CIFS and AD/DC server and client for Unix sane-backends-1.1.1_10 API for accessing scanners, digital cameras, frame grabbers, etc schilybase-2022.09.18 Support files and libraries for the schilytools sddm-0.19.0_7 QML based login manager sddm-freebsd-black-theme-1.3 Simple SDDM theme inspired on the FBSD SLiM theme sdl2-2.24.0_1 Cross-platform multimedia development API sdl2_image-2.6.2_2 Simple library to load images of various formats as SDL surfaces sdocbook-xml-1.1_2,2 "Simplified" DocBook XML DTD serf-1.3.9_6 Serf HTTP client library sessreg-1.1.2 Manage utmp/wtmp entries for non-init X clients setxkbmap-1.3.2 Set the keyboard using the X Keyboard Extension sfcgal-1.4.1_2 Wrapper library around CGAL for PostGIS shared-mime-info-2.2_1 MIME types database from the freedesktop.org project signon-kwallet-extension-22.08.2 KWallet integration for signon framework signon-plugin-oauth2-0.25 Signon OAuth 1.0 and 2.0 plugin for accounts-sso signon-qt5-8.60_1 D-Bus service performing user authentication signon-ui-0.17_8 Component for handling accounts-sso user interactions skanlite-22.08.2 Simple image scanning application slim-1.3.6_22 Graphical login manager for X11, derived from Login.app smartmontools-7.3 S.M.A.R.T. disk monitoring tools smproxy-1.0.6 Session Manager Proxy snappy-1.1.9_1 Fast compressor/decompressor library sndio-1.9.0 Small audio and MIDI framework from the OpenBSD project sox-14.4.2_7 SOund eXchange - universal sound sample translator spatialite-5.0.1_2 Spatial Extensions for SQLite spectacle-22.08.2 KDE screen capture program speech-dispatcher-0.11.2_1 Common interface to speech synthesis speex-1.2.1,1 Audio compression format designed for speech speexdsp-1.2.1 Audio compression format designed for speech spidermonkey91-91.13.0 Standalone JavaScript based from Mozilla 91-esr spirv-tools-2022.4 Tools for processing SPIR-V intermediate shader language modules sqlite3-3.39.3,1 SQL database engine in a C library startup-notification-0.12_4 Library that supports startup notification spec from freedesktop.org step-22.08.2 KDE interactive physics simulator stfl-0.24_1 Structured Terminal Forms Language/Library sudo-1.9.11p3 Allow others to run commands as root suitesparse-amd-2.4.6 Symmetric approximate minimum degree suitesparse-camd-2.4.6 Symmetric approximate minimum degree suitesparse-ccolamd-2.9.6 Constrained column approximate minimum degree ordering suitesparse-cholmod-3.0.14 Sparse CHOLesky MODification package suitesparse-colamd-2.9.6 Column approximate minimum degree ordering algorithm suitesparse-config-5.13.0 Common library for SuiteSparse suitesparse-umfpack-5.7.9 Sparse multifrontal LU factorization svt-av1-1.2.1 Scalable AV1 encoder swhplugins-0.4.17 Steve Harris' huge Collection of LADSPA Plugins sysinfo-1.0.1_2 Utility used to gather system configuration information taglib-1.12 Library for manipulating ID3 tags and Ogg comments talloc-2.3.4 Hierarchical pool based memory allocator tdb-1.4.7,1 Trivial Database tevent-0.13.0 Talloc based event loop library thunderbird-102.4.0 Mozilla Thunderbird is standalone mail and news that stands above thunderbird-dictionaries-20060220_13 Dictionaries for Mozilla Thunderbird tiff-4.4.0 Tools and library routines for working with TIFF images tree-2.0.4 Display a tree-view of directories with optional color or HTML output trueos-libqt5-20171003_3 TrueOS QT5 Library twemoji-color-font-ttf-13.1.0 Color emoji font using Twitter Unicode 10 twm-1.0.12 Tab Window Manager for the X Window System twolame-0.4.0_2 MPEG Audio Layer 2 encoder uchardet-0.0.7 Universal charset detection library unar-1.10.1_21 Unarchiver for a vast variety of file formats unrar-6.12,6 Extract, view & test RAR archives unzip-6.0_8 List, test, and extract compressed files from a ZIP archive upnp-1.14.14,1 Universal Plug and Play Software Development Kit upower-1.90.0 D-Bus daemon for simplifying power management tasks uriparser-0.9.6 URI parsing library urwfonts-1.0_8 Another font package for X vcdimager-2.0.1_4 GNU VCDImager/VCDRip -- The GNU VideoCD Image Maker/Ripping Tool vid.stab-0.98.2 Video stabilization library vim-9.0.0735 Improved version of the vi editor (console flavor) vkd3d-1.5 Direct3D 12 to Vulkan translation vlc-3.0.17.4_6,4 Qt based multimedia player and streaming server vmaf-2.3.1 Perceptual video quality assessment based on multi-method fusion vorbis-tools-1.4.2_1,3 Play, encode, and manage Ogg Vorbis files vte3-0.68.0_1 Terminal widget with improved accessibility and I18N support vulkan-headers-1.3.231 Headers for the Vulkan graphics API vulkan-loader-1.3.231 Driver loader for the Vulkan graphics API vulkan-tools-1.3.231 Tools and demos for the Vulkan graphics API wallpapers-freebsd-kde-1.0_1 FreeBSD wallpapers designed by KDE artwork team wavpack-5.5.0 Audio codec for lossless, lossy, and hybrid compression wayland-1.21.0 Core Wayland window system code and protocol wayland-protocols-1.27 Wayland protocols webcamd-5.17.1.2 Port of Linux USB webcam and DVB drivers into userspace webfonts-0.30_14 TrueType core fonts for the Web webkit2-gtk3-2.34.6_3 Opensource browser engine using the GTK+ 3 toolkit webkit2-gtk4-2.34.6 Opensource browser engine using the GTK+ 4 toolkit webp-1.2.4 Google WebP image format conversion tool webrtc-audio-processing0-0.3.1_2 AudioProcessing module from WebRTC project (legacy version) wine-7.0,1 Microsoft Windows compatibility environment wine-gecko-2.47.2 Gecko Layout Engine for Wine (HTML support) wine-mono-7.0.0 Mono .NET implementation for Wine woff2-1.0.2_4 Library and converter tools for the WOFF 2.0 web font format wpebackend-fdo-1.12.0 Freedesktop.org backend for WPE WebKit x11perf-1.6.1 X11 server performance test program x265-3.4_2 H.265/High Efficiency Video Coding (HEVC) format xapian-core-1.4.21,1 Probabilistic text search database engine xauth-1.1.1 X authority file utility xbacklight-1.2.3 Program to adjust backlight brightness xbitmaps-1.1.2 X.Org bitmaps data xcalc-1.1.0 Scientific calculator for X xcb-util-0.4.0_2,1 Module with libxcb/libX11 extension/replacement libraries xcb-util-cursor-0.1.3 XCB cursor library xcb-util-image-0.4.0_1 Port of Xlib's XImage and XShmImage functions xcb-util-keysyms-0.4.0_1 Standard X key constants and conversion to/from keycodes xcb-util-renderutil-0.3.9_1 Convenience functions for the Render extension xcb-util-wm-0.4.1_3 Framework for window manager implementation xclock-1.0.9 Analog and digital clock for X xcmsdb-1.0.5 Device Color Characterization utility for X xconsole-1.0.7_1 Monitor system console messages with X xcursor-themes-1.0.6 X.org cursors themes xcursorgen-1.0.7 Create an X cursor file from a collection of PNG images xdg-user-dirs-0.18 Tool to help manage personal user directories xdg-utils-1.1.3_2 Tools to allow all applications to integrate with the free desktop xdm-1.1.12_3 X.Org X display manager xdpyinfo-1.3.2_3 Display information utility for X xdriinfo-1.0.6_4 Query configuration information of DRI drivers xerces-c3-3.2.3 Validating XML parser from the Apache XML Project xev-1.2.4 Print contents of X events xf86-input-evdev-2.10.6_7 X.Org event device input driver xf86-input-keyboard-1.9.0_5 X.Org keyboard input driver xf86-input-libinput-1.2.0_1 X.Org libinput input driver xf86-input-mouse-1.9.3_4 X.Org mouse input driver xf86-video-intel-2.99.917.916_2,1 X.Org legacy driver for Intel integrated graphics chipsets xf86-video-mga-2.0.0_3,3 X.Org mga display driver xf86-video-scfb-0.0.7_1 X.Org syscons display driver xf86-video-vesa-2.5.0_1 X.Org vesa display driver xf86dga-1.0.3_1 Test program for the XFree86-DGA extension xgamma-1.0.6 Gamma correction through the X server xgc-1.0.5 X graphics demo xhost-1.0.8 Server access control program for X xine-0.99.13 X11 multimedia player xinit-1.4.1,1 X Window System initializer xinput-1.6.3 Very useful utility for configuring and testing XInput devices xkbcomp-1.4.5 Compile XKB keyboard description xkbevd-1.1.4 XKB event daemon xkbutils-1.0.4_2 XKB utility demos xkeyboard-config-2.34_2 X Keyboard Configuration Database xkill-1.0.5 Utility for killing a client by its X resource xlsatoms-1.1.3 List interned atoms defined on a server xlsclients-1.1.4 List client applications running on a display xmessage-1.0.5 Display message or query in a X window xmlcatmgr-2.2_3 SGML and XML catalog manager xmlcharent-0.3_2 XML character entities xmlsec1-1.2.34 XML Security Library xmodmap-1.0.10 Utility for modifying keymaps and pointer button mappings in X xorg-7.7_3 X.Org complete distribution metaport xorg-apps-7.7_4 X.org apps meta-port xorg-docs-1.7.2,1 X.org documentation files xorg-drivers-7.7_7 X.org drivers meta-port xorg-fonts-7.7_1 X.org fonts meta-port xorg-fonts-100dpi-7.7 X.Org 100dpi bitmap fonts xorg-fonts-75dpi-7.7 X.Org 75dpi bitmap fonts xorg-fonts-cyrillic-7.7 X.Org Cyrillic bitmap fonts xorg-fonts-miscbitmaps-7.7 X.Org miscellaneous bitmap fonts xorg-fonts-truetype-7.7_1 X.Org TrueType fonts xorg-fonts-type1-7.7 X.Org Type1 fonts xorg-libraries-7.7_4 X.org libraries meta-port xorg-server-21.1.4_1,1 X.Org X server and related programs xorgproto-2022.1 X Window System unified protocol definitions xpr-1.0.5 Utility for printing an X window dump xprop-1.2.5 Property displayer for X xrandr-1.5.1 Primitive command line interface to the RandR extension xrdb-1.2.1 X server resource database utility xrefresh-1.0.6 Refresh all or part of an X screen xsane-0.999_6 Gtk-based X11 frontend for SANE (Scanner Access Now Easy) xset-1.2.4_3 User preference utility for X xsetroot-1.1.2 Root window parameter setting utility for X xsm-1.0.4 X Session Manager xterm-374 Terminal emulator for the X Window System xtrans-1.4.0 Abstract network code for X xvinfo-1.1.4 Print out X-Video extension adaptor information xwayland-devel-21.0.99.1.288 X11 server as Wayland client (development snapshot) xwd-1.0.8 Dump an image of an X window xwininfo-1.1.5 Window information utility for X xwud-1.0.5 Image displayer for X xxhash-0.8.1_2 Extremely fast non-cryptographic hash algorithm yajl-2.1.0 Portable JSON parsing and serialization library in ANSI C yelp-42.1 Help browser for the GNOME desktop yelp-xsl-42.0 DocBook XSLT stylesheets for yelp zenity-3.42.1 Display GNOME dialogs from the command line zsh-5.9_1 The Z shell zstd-1.5.2_1 Fast real-time compression algorithm zxing-cpp-1.4.0_1 ZXing C++ Library for QR code recognitiFreeBSD es genial!.




No hay comentarios:
Publicar un comentario