Feed aggregator

How to Install Umami Analytics on Ubuntu 24.04

Linux Today - Fri, 12/20/2024 - 09:35

Learn to install and configure Umami on Ubuntu 24.04, set up Umami with Nginx, configure an SSL certificate, and add a new website for tracking in Umami Analytics.

The post How to Install Umami Analytics on Ubuntu 24.04 appeared first on Linux Today.

next-20241220: linux-next

Latest Linux Kernel - Fri, 12/20/2024 - 01:19
Version:next-20241220 (linux-next) Released:2024-12-20

Innotop – MySQL Performance Monitor Tool for Linux

Linux Today - Thu, 12/19/2024 - 19:55

Innotop is an excellent command-line program, similar to the top command, designed to monitor local and remote MySQL servers running under the InnoDB engine.

It provides a comprehensive set of features and options that help database administrators (DBAs) track various aspects of MySQL performance, troubleshoot issues, and optimize server configurations.

The post Innotop – MySQL Performance Monitor Tool for Linux appeared first on Linux Today.

A new set of stable kernels

Linux Weekly News - Thu, 12/19/2024 - 14:00
The 6.12.6, 6.6.67, 6.1.121, 5.15.175, 5.10.232, and 5.4.288 stable kernels have been released. As usual, they contain important fixes throughout the kernel tree.

6.12.6: stable

Latest Linux Kernel - Thu, 12/19/2024 - 13:13
Version:6.12.6 (stable) Released:2024-12-19 Source:linux-6.12.6.tar.xz PGP Signature:linux-6.12.6.tar.sign Patch:full (incremental) ChangeLog:ChangeLog-6.12.6

6.6.67: longterm

Latest Linux Kernel - Thu, 12/19/2024 - 13:11
Version:6.6.67 (longterm) Released:2024-12-19 Source:linux-6.6.67.tar.xz PGP Signature:linux-6.6.67.tar.sign Patch:full (incremental) ChangeLog:ChangeLog-6.6.67

6.1.121: longterm

Latest Linux Kernel - Thu, 12/19/2024 - 13:09
Version:6.1.121 (longterm) Released:2024-12-19 Source:linux-6.1.121.tar.xz PGP Signature:linux-6.1.121.tar.sign Patch:full (incremental) ChangeLog:ChangeLog-6.1.121

5.15.175: longterm

Latest Linux Kernel - Thu, 12/19/2024 - 13:07
Version:5.15.175 (longterm) Released:2024-12-19 Source:linux-5.15.175.tar.xz PGP Signature:linux-5.15.175.tar.sign Patch:full (incremental) ChangeLog:ChangeLog-5.15.175

5.10.232: longterm

Latest Linux Kernel - Thu, 12/19/2024 - 13:06
Version:5.10.232 (longterm) Released:2024-12-19 Source:linux-5.10.232.tar.xz PGP Signature:linux-5.10.232.tar.sign Patch:full (incremental) ChangeLog:ChangeLog-5.10.232

5.4.288: longterm

Latest Linux Kernel - Thu, 12/19/2024 - 13:05
Version:5.4.288 (longterm) Released:2024-12-19 Source:linux-5.4.288.tar.xz PGP Signature:linux-5.4.288.tar.sign Patch:full (incremental) ChangeLog:ChangeLog-5.4.288

Security updates for Thursday

Linux Weekly News - Thu, 12/19/2024 - 12:00
Security updates have been issued by AlmaLinux (bluez, edk2:20220126gitbb1bba3d77, gstreamer1-plugins-base, gstreamer1-plugins-good, kernel, kernel-rt, mpg123, php:8.2, python3.11-urllib3, and tuned), Fedora (ColPack, glibc, golang-github-chainguard-dev-git-urls, golang-github-task, icecat, python-nbdime, python3.13, and python3.14), Mageia (kernel, kmod-xtables-addons, kmod-virtualbox, dwarves and kernel-linus), Red Hat (gstreamer1-plugins-base and gstreamer1-plugins-good), SUSE (curl, emacs, git-bug, glib2, helm, kernel, and traefik2), and Ubuntu (gst-plugins-base1.0, gst-plugins-good1.0, gstreamer1.0, libvpx, linux-gcp, phpunit, and yara).

14 Best Free and Open Source CLI Tools to Find and Delete Duplicate Files

Linux Today - Thu, 12/19/2024 - 11:55

This roundup focuses on free and open source command-line tools that help you find and remove duplicate files.

The post 14 Best Free and Open Source CLI Tools to Find and Delete Duplicate Files appeared first on Linux Today.

[$] FESCo provenpackager sanction causes problems

Linux Weekly News - Thu, 12/19/2024 - 11:04

The Fedora Engineering Steering Council (FESCo) has made a series of missteps in deciding to revoke a longtime Fedora contributor's provenpackager status. FESCo made the decision during a closed session, based on private complaints. It then publicly announced its decision, including the contributor's name, while only supplying a vague account of the contributor's actions. This has left the Fedora community with more questions than answers, and raised a number of complaints about the transparency of FESCo's process. In addition, the sequence of events has sparked discussions about package ownership, as well as when and how it's appropriate to push changes to packages that a developer doesn't own.

Setting Up a Development Environment for Python, Node.js, and Java on Fedora

Linux Today - Thu, 12/19/2024 - 10:55

Fedora is a popular Linux distribution known for its cutting-edge features and stability, making it an excellent choice for setting up a development environment.

This tutorial will guide you through setting up a development environment for three widely-used programming languages: Python, Node.js, and Java. We will cover the installation process, configuration, and common tools for each language.

The post Setting Up a Development Environment for Python, Node.js, and Java on Fedora appeared first on Linux Today.

Fish shell announces 4.0 beta release

Linux Weekly News - Thu, 12/19/2024 - 10:24

fish is a shell with a custom language and several affordances not available out of the box in other shells, such as directory-sensitive command completion. Although the project does not normally make beta releases, the newly announced 4.0b1 release will have one in order to ensure that no problems were introduced after a major effort to switch the code base from C++ to Rust.

fish is a smart and user-friendly command line shell with clever features that just work, without needing an advanced degree in bash scriptology. Today we are announcing an open beta, inviting all users to try out the upcoming 4.0 release.

fish 4.0 is a big upgrade. It's got lots of new features to make using the command line easier and more enjoyable, such as more natural key binding and expanded history search. And under the hood, we've rebuilt the foundation in Rust to embrace modern computing.

How to Use PyTest for Unit Testing in Python

Linux Today - Thu, 12/19/2024 - 09:55

When you’re writing code in Python, it’s important to make sure that your code works as expected. One of the best ways to do this is by using unit tests, which help you check if small parts (or units) of your code are working correctly.

In this article, we will learn how to write and run effective unit tests in Python using PyTest, one of the most popular testing frameworks for Python.

The post How to Use PyTest for Unit Testing in Python appeared first on Linux Today.

How to Find Files Containing a Specific Text (String) on Linux

Linux Today - Thu, 12/19/2024 - 09:24

Discover a step-by-step guide on how one can search for files containing specific text (or strings) on Linux without using any external tools.

The post How to Find Files Containing a Specific Text (String) on Linux appeared first on Linux Today.

Inotifywait: Monitor Live Events on Files and Directories on Linux

Linux Today - Thu, 12/19/2024 - 08:51

In this article, you will learn how to watch read, write, open, close, etc. events on a file or directory and get desktop notifications.

The post Inotifywait: Monitor Live Events on Files and Directories on Linux appeared first on Linux Today.

Sublime Text 4 Code Editor Update 4186 Boosts Performance

Linux Today - Thu, 12/19/2024 - 08:50

Sublime Text 4 Build 4186 delivers refined syntax highlighting, faster theming, improved file detection, stable Git scans, and enhanced cache compression.

The post Sublime Text 4 Code Editor Update 4186 Boosts Performance appeared first on Linux Today.

12/19 T2 24.12

Updated Linux Distributions - Thu, 12/19/2024 - 08:30
T2 is an open-source system development environment (or distribution build kit if you are more familiar with that term). T2 allows the creation of custom distributions with bleeding-edge technology. Currently, the Linux kernel is normally used, but the project is expanding to Hurd, OpenDarwin and OpenBSD. T2 started as a community driven fork from the ROCK Linux Project with the aim to create a decentralised development and a clean framework for spin-off projects and customised distributions.

Pages

Subscribe to Just Linux aggregator