Posted: 2024-08-11 10:36:08 Source: https://www.kernel.org/
Version: | 6.1.104 (longterm) |
---|---|
Released: | 2024-08-11 |
Source: | linux-6.1.104.tar.xz |
PGP Signature: | linux-6.1.104.tar.sign |
Patch: | full (incremental) |
ChangeLog: | ChangeLog-6.1.104 |
Posted: 2024-08-09 21:20:00 Source: https://linux.slashdot.org/story/24/08/09/2027236/linux-will-be-able-to-boot-0035-seconds-faster-with-one-line-kernel-patch?utm_source=atom1.0mainlinkanon&utm_medium=feed
Michael Larabel reports via Phoronix: Intel Linux engineer Colin Ian King discovered that if aligning the slab in the ACPI code via the "SLAB_HWCACHE_ALIGN" flag will offer a measurable improvement in memory performance and reducing the kernel boot time. Colin explained with this one line kernel patch: "Enabling SLAB_HWCACHE_ALIGN for the ACPI object caches improves boot speed in the ACPICA core for object allocation and free'ing especially in the AML parsing and execution phases in boot. Testing with 100 boots shows an average boot saving in acpi_init of ~35000 usecs compared to the unaligned version. Most of the ACPI objects being allocated and free'd are of very short life times in the critical paths for parsing and execution, so the extra memory used for alignment isn't too onerous."
Read more of this story at Slashdot.
Posted: 2024-08-09 17:06:49 Source: https://distrowatch.com/12212
The DistroWatch news feed is brought to you by TUXEDO COMPUTERS. IPFire is a Linux-based operating system for firewalls. The project focuses on easy set-up and configuration. The project's latest release introduces an extra layer of protection against denial-of-service (DoS) attacks. "Since IPFire is very commonly deployed in data centres where denial-of-service attacks happen on a regular basis, we....
Posted: 2024-08-09 10:44:07 Source: https://www.youtube.com/watch?v=7eWF0y7ZeBg
Posted: 2024-08-09 04:29:52 Source: https://www.kernel.org/
Version: | next-20240809 (linux-next) |
---|---|
Released: | 2024-08-09 |
Posted: 2024-08-08 19:57:10 Source: https://distrowatch.com/12211
The DistroWatch news feed is brought to you by TUXEDO COMPUTERS. Pop!_OS is an Ubuntu-based distribution developed by System76. The project has published a new alpha release which showcases the company's custom COSMIC desktop. "The alpha release includes the features most users require for day-to-day use. Applets in the panel provide important functionality including connecting to wireless networks, audio....
Posted: 2024-08-08 19:29:34 Source: http://www.linux-magazine.com/Online/News/Plasma-Desktop-6.1.4-Release-Includes-Improvements-and-Bug-Fixes
The latest release from the KDE team improves the KWin window and composite managers and plenty of fixes.
Posted: 2024-08-08 16:00:00 Source: https://www.linuxjournal.com/content/leveraging-modprobe-and-lsmod-effective-linux-system-management
Linux, renowned for its robustness and flexibility, owes much of its adaptability to kernel modules. These modules are critical components that extend the kernel’s capabilities without requiring a reboot, facilitating dynamic modification of the system’s functionality. In this article, we will delve into two pivotal tools—modprobe
and lsmod
—that are essential for managing these modules effectively. Understanding and utilizing these tools can greatly enhance system administration and customization.
Kernel modules are pieces of code that can be loaded into the kernel upon demand, providing additional functionality as required. They are essential for extending the system's capabilities, allowing hardware and software integration without altering the kernel's core structure. Common examples include device drivers for graphics cards and network interfaces, file system managers, and system utilities.
Modules streamline system performance and efficiency by only being loaded when needed. This modular nature ensures that the kernel remains lightweight and responsive, as unnecessary components are not loaded into the system memory permanently.
lsmod
is a simple yet powerful utility that lists all currently loaded kernel modules in the system. It provides insights into which modules are active, helping administrators understand the system's current state.
lsmod
reads the contents from /proc/modules
, which contains information about all the loaded modules. It displays the module name, size, and the count of instances that are using it, along with a list of any modules that depend on it.
To use lsmod
, simply type lsmod
in the terminal. The output will look something like this:
Module Size Used by nf_conntrack 139264 2 nf_nat,nf_conntrack_netlink iptable_filter 16384 1 ip_tables 28672 1 iptable_filter x_tables 40960 3 iptable_filter,ip_tables,ipt_REJECT
This output tells us which modules are loaded, their size, and their dependencies, providing a clear snapshot of the module landscape at any given moment.
modprobe
is a more sophisticated tool compared to lsmod
. It not only lists modules but also intelligently handles loading and unloading modules and their dependencies.
Posted: 2024-08-08 04:11:29 Source: https://www.kernel.org/
Version: | next-20240808 (linux-next) |
---|---|
Released: | 2024-08-08 |
Posted: 2024-08-07 17:20:10 Source: https://www.youtube.com/watch?v=867t6wIqcSQ
Posted: 2024-08-07 13:03:23 Source: https://www.youtube.com/watch?v=A9wulvhU1Ls
Posted: 2024-08-07 04:56:56 Source: https://www.kernel.org/
Version: | next-20240807 (linux-next) |
---|---|
Released: | 2024-08-07 |
Posted: 2024-08-06 16:00:00 Source: https://www.linuxjournal.com/content/elevate-your-linux-experience-effective-performance-optimization-techniques-enhanced-speed
Linux, an open source operating system, powers a vast array of devices from personal computers to servers and supercomputers. Its flexibility and efficiency have made it a popular choice among developers, system administrators, and tech enthusiasts. However, like any operating system, Linux requires performance optimization to ensure it operates at peak efficiency. This article delves into the intricacies of Linux performance optimization, offering detailed insights and practical tips to boost speed and efficiency.
To optimize Linux performance, understanding the key metrics is essential. These metrics provide insights into the system’s current state and help identify bottlenecks.
Key Performance Metrics to MonitorEstablishing performance baselines involves monitoring system metrics under normal operating conditions. These baselines help in identifying deviations and potential performance issues.
The CPU is the brain of any computer system. Optimizing CPU performance involves managing processes, tuning the kernel, and leveraging multithreading.
Posted: 2024-08-06 05:28:31 Source: https://www.kernel.org/
Version: | next-20240806 (linux-next) |
---|---|
Released: | 2024-08-06 |
Posted: 2024-08-05 22:00:32 Source: https://www.youtube.com/watch?v=eDwjqBc7M4w
Posted: 2024-08-05 19:06:45 Source: http://www.linux-magazine.com/Online/News/Manjaro-Team-Tests-Immutable-Version-of-its-Arch-Based-Distribution
If you're a fan of immutable operating systems, you'll be thrilled to know that the Manjaro team is working on an immutable spin that is now available for testing.
Posted: 2024-08-05 17:18:58 Source: https://www.youtube.com/watch?v=Tr5La7Xcyxk
Posted: 2024-08-05 04:38:54 Source: https://www.kernel.org/
Version: | next-20240805 (linux-next) |
---|---|
Released: | 2024-08-05 |
Posted: 2024-08-05 00:12:44 Source: https://distrowatch.com/12210
The DistroWatch news feed is brought to you by TUXEDO COMPUTERS. This week in DistroWatch Weekly:
Review: Linux Mint 22
News: openSUSE publishes new Tumbleweed and Aeon Desktop updates, Debian introduces Tiny QA Tasks, Manjaro experimenting with immutable images, Funtoo discontinued
Tips and tricks: Making snapshots of UFS on FreeBSD
Released last week: Emmabuntus DE5-1.02, Super Grub2 Disk 2.06s4
Torrent corner: Emmabuntus, TUXEDO....
Posted: 2024-08-04 20:50:53 Source: https://www.kernel.org/
Version: | 6.11-rc2 (mainline) |
---|---|
Released: | 2024-08-04 |
Source: | linux-6.11-rc2.tar.gz |
Patch: | full (incremental) |