Hello TUXEDO Fans and Open-Source Enthusiasts!
Over 95 degrees in the shade and no rain in sight? Not exactly ideal penguin weather! Still, our developer Tuxes remain alert: all updates against the chwoot exploit in sudo have been integrated into TUXEDO OS. Fresh packages are also available for Tomte, the TUXEDO drivers, as well as Firefox, Thunderbird, and Chromium. Plus, we take a look at the lightweight image viewer Photos and introduce alternatives to the classic Linux commands cat and ls: bat and lsd.
Enjoy reading,
The TUXEDO OS Team
Note: We would like to keep you updated on the latest developments in TUXEDO OS with the TWIX series and introduce you to exciting applications as well as practical tips related to the KDE desktop and TUXEDO OS. However, this section should not be a one-way street: your feedback, ideas, and suggestions for improvement are very welcome! For this purpose, we have created a thread on Reddit, where you can reach us directly.
Updates for TUXEDO OS
tuxedo-tomte 2.54.1
Added new kernel module krackanpointusb4suspendfix
Integrated krackanpointusb4suspendfix specifically for the TUXEDO Nano Pro Gen14 AMD with „4X4-KRK Series“ mainboard
tuxedo-drivers 4.14.2
Further minor adjustments to support Stellaris Gen7
Minor fix for InfinityBook Pro Gen10
tuxedo-yt6801 1.0.30tux1
Updated base to version 1.0.30
Fixed a compile error with kernel 6.15
linux 6.11.0–118028.28~24.04.1tux1
Rebased to new upstream version
nvidia-driver-575 (575.64)
Fixed an issue causing blank rendering in certain GLX applications under Xwayland
Fixed a use-after-free bug on older NVIDIA GPUs (pre-Turing)
Fixed a crash affecting 32-bit x86 applications using newer glibc and dlopen()
Release Notes
qt6-base 6.8.2+dfsg-8~tux1
dfsg-6
Backported patch to fix issue with multiple notification widgets in Plasma (QTBUG-134210)
Security update for CVE-2025–3512
qt6-gtk-platformtheme now depends on gnome-themes-extra-data – improves dark theme rendering
dfsg-7
Prevents erroneous deregistration of input devices (Closes: #1108018)
Improves support for multiple page ranges with CUPS (Closes: #1108026)
dfsg-8
Security update for CVE-2025–5455 (Closes: #1108474)
Firefox 140.0.2
Chromium 138.0.7204.92
Critical vulnerability (CVE-2025–6554): Type confusion in V8 – actively exploited, mitigated via configuration update
Release Notes
Thunderbird 140.0esr
New enterprise policy for granular notification control
New mail alert now includes action buttons
„Mark as read“ and „Delete“ actions available directly in notifications
Release Notes
Thunderbird 128.12.0esr
Mesa 25.1.4
Bug fixes compared to version 25.1.3
Implements OpenGL 4.6 (driver-dependent)
Implements Vulkan 1.4 (driver-dependent)
Release Notes
KDE App of the Week: The Fast Image Viewer Photos
If you’re looking for a lightweight, fast, and user-friendly program to browse your photos, take a look at KDE Photos : a minimalist image viewer from the KDE software suite KDE Gear .
With its clean interface and focus on the essentials, Photos is ideal for anyone who simply wants to view their images – without complex menus or bloated features. The name Photos is a recent change; originally, the app was called Koko. For that reason, the installation package is still named “koko”.
The Strengths of KDE Photos
KDE Photos features a deliberately minimalistic interface. When you open an image, it takes center stage. In addition to individual images, you can open entire folders and conveniently browse through your photo collection using the arrow keys or mouse wheel.
The app is fast, lightweight on resources, and well-suited even for low-powered hardware. It automatically adapts to your system’s light or dark theme.
The clean interface of KDE Photos is complemented by a practical sidebar that lets you quickly filter and easily sort your images.
Photos is based on Kirigami , KDE’s framework for convergent applications. This means the app runs not only on traditional PCs and laptops, but also on mobile touchscreen devices. In addition, Photos offers basic image editing tools such as cropping, resizing, rotating, and mirroring.
The upper toolbar includes essential editing tools that allow you to crop, rotate, mirror, or scale your photos.
Installing Photos on TUXEDO OS
Photos is not preinstalled on TUXEDO OS, but you can easily install it via Discover or from the terminal:
sudo apt install koko
You don’t always need a full-featured heavyweight. Quite the opposite: if you just want to view your photos quickly and without distractions, Photos is the perfect tool for your TUXEDO OS desktop.
Info: Are you interested in more KDE applications and want to know which programs have been recently updated? A detailed overview can be found in the regularly published column This Week in KDE Apps , which summarizes new features, bug fixes, and developments from the KDE ecosystem on a weekly basis.
TUXEDO OS Tips & Tricks: Discover Modern Command-Line Tools
In this issue of our TUXEDO OS Tips & Tricks, we introduce two useful alternatives to the traditional command-line tools cat and ls: bat and lsd . Both offer extended features and improved usability, making working on the command line more efficient.
Installation on TUXEDO OS
Installing bat and lsd on TUXEDO OS is very straightforward and follows the same procedure as on Ubuntu, Debian, or Linux Mint. You can easily install both programs via the terminal. To do so, enter the following commands:
sudo apt install bat
sudo apt install lsd
After installation, you’ll notice that the command to launch the program is batcat . This is because the name of the executable bat would otherwise conflict with the backup software Bacula , which also includes a program named bat. To avoid confusion, the developers of bat chose the name batcat.
To use bat comfortably via the cat command without typing the longer batcat , you can create an alias in your shell configuration file (e.g., in the ~/.bashrc file in your home directory). You can also use lsd via alias instead of ls . Add the following lines:
alias cat='batcat'
alias ls='lsd'
### Optional
# alias l='ls -l'
# alias la='ls -a'
# alias lla='ls -la'
# alias lt='ls --tree'
Save the file and restart your terminal or run source ~/.bashrc to apply the changes.
Usage and Benefits
Both bat and lsd are designed to extend the standard functionality of their predecessors while offering a more modern user experience—without sacrificing compatibility.
bat – cat with wings
bat is a cat clone with syntax highlighting and Git integration. When viewing text files or code on the command line, bat provides colorful syntax highlighting for a wide variety of programming and configuration file formats.
This makes it much easier to quickly understand the structure and content of a file. Additionally, bat shows Git changes directly in the terminal – an especially useful feature for developers. Integrating these capabilities into the command line saves time and greatly improves readability.
Syntax highlighting, Git integration, and scroll functionality: Batcat offers much more than classic tools like cat or less. Especially when working with code, this tool boosts clarity and efficiency.
By default, bat pipes its output to a pager (similar to less) if the content exceeds one screen. This ensures that even large files can be viewed comfortably, line by line, using the arrow keys to scroll.
If you want bat to always behave like cat and never invoke a pager view, you can use the batcat –paging=never option. This can be set either directly on the command line or permanently in your config file at ~/.config/bat/config . If you define cat as an alias for batcat in your shell configuration, it is recommended to use:
alias cat='batcat --paging=never'
…to retain the default behavior of cat .
Even when a pager is enabled, you can still use bat for concatenating files. If bat detects a non-interactive terminal—for example, when redirecting output to another process or file – it behaves as a direct replacement for cat. In this case, bat outputs raw file content regardless of the paging option setting.
batcat datei1.txt datei2.txt > merged.txt
lsd – List Directories Deluxe
lsd (LSDeluxe) is a modern alternative to ls , displaying file lists with icons, colors, and tree views. While ls provides a simple list of files and directories, lsd presents output that is more visually appealing and informative.
More colors, icons, and a structured tree view: LSD (LSDeluxe) makes directory listings clearer and more informative. Files and folders become easier and safer to identify at a glance.
Using icons, you can immediately identify whether an item is a file, directory, symlink, or executable. Color coding also helps to distinguish file types or permissions.
Note: To display icons in lsd’s listings, you’ll need the Nerd Fonts . For the Hack font used by TUXEDO OS terminals, install them system-wide using the following commands:
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v3.4.0/Hack.zip
unzip Hack.zip
sudo mkdir -p /usr/local/share/fonts
sudo mv *.ttf /usr/local/share/fonts
fc-cache -fv
One especially useful feature is the ability to display directory contents as a tree view using the lsd –tree command. This simplifies navigation through complex directory structures and gives a better overview. These visual improvements help reduce errors and boost efficiency when managing files.
Ubuntu Security Updates
The security updates listed here from Ubuntu are directly integrated into TUXEDO OS:
USN-7617–1: libtpms vulnerability : libtpms could be made to crash if it received specially crafted input.
IDs: CVE-2025–49133
Affects: Ubuntu 25.04, 24.10, 24.04 LTS, 22.04 LTS
USN-7615–1: ClamAV vulnerabilities : Several security issues were fixed in ClamAV.
IDs: CVE-2025–20260, CVE-2025–20234
Affects: Ubuntu 25.04, 24.10, 24.04 LTS, 22.04 LTS
USN-7613–1: mongo-c-driver vulnerabilities : Several security issues were fixed in mongo-c-driver.
IDs: CVE-2024–6383, CVE-2025–0755, CVE-2024–6381
Affects: Ubuntu 24.04 LTS, 22.04 LTS, 20.04 LTS
USN-7612–1: Flask-CORS vulnerabilities : Several security issues were fixed in Flask-CORS.
IDs: CVE-2024–6839, CVE-2024–6866, CVE-2024–6844 + 2 others
Affects: Ubuntu 25.04, 24.10, 24.04 LTS, 22.04 LTS, 20.04 LTS
USN-7609–2: Linux kernel (Real-time) vulnerabilities : Several security issues were fixed in the Linux kernel.
IDs: CVE-2025–37798, CVE-2025–37997, CVE-2025–38001 + 4 others
Affects: Ubuntu 24.04 LTS
USN-7609–1: Linux kernel vulnerabilities : Several security issues were fixed in the Linux kernel.
IDs: CVE-2025–37798, CVE-2025–37997, CVE-2025–38001 + 4 others
Affects: Ubuntu 24.04 LTS, 22.04 LTS
USN-7606–1: Linux kernel (OEM) vulnerabilities : Several security issues were fixed in the Linux kernel.
IDs: CVE-2025–22070, CVE-2025–21994, CVE-2025–22024 + 174 others
Affects: Ubuntu 24.04 LTS
USN-7595–5: Linux kernel vulnerabilities : Several security issues were fixed in the Linux kernel.
IDs: CVE-2025–21699, CVE-2025–21672, CVE-2025–21682 + 30 others
Affects: Ubuntu 24.04 LTS, 22.04 LTS
USN-7605–1: Linux kernel vulnerabilities : Several security issues were fixed in the Linux kernel.
IDs: CVE-2025–22080, CVE-2025–21995, CVE-2025–22017 + 174 others
Affects: Ubuntu 24.10, 24.04 LTS
USN-7604–1: Sudo vulnerabilities : Several security issues were fixed in Sudo.
IDs: CVE-2025–32463, CVE-2025–32462
Affects: Ubuntu 25.04, 24.10, 24.04 LTS, 22.04 LTS
USN-7603–1: Composer vulnerabilities : Several security issues were fixed in Composer.
IDs: CVE-2024–35241, CVE-2024–35242, CVE-2024–24821 + 2 others
Affects: Ubuntu 24.04 LTS, 22.04 LTS, 20.04 LTS, 18.04 LTS, 16.04 LTS
Current BIOS/EC Versions
An EC/BIOS update affects key system components. Please ensure that you follow the instructions carefully and take your time. The process is usually completed quickly. If you have any doubts, our support team is happy to assist you. The following devices have BIOS/EC updates available:
Model
CPU
GPU
BIOS
EC
InfinityBook S 15 Gen8
Intel
1.07.13RTR1
1.07.05TR1
InfinityBook S 17 Gen8
Intel
1.07.13RTR1
1.07.05TR1