Linux Kernel - AtoZ Linux https://atozlinux.com Linux News, Tutorials, Freebies & Many More Mon, 08 Jan 2024 04:38:51 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.2 Linux Kernel 6.7 Officially Released https://atozlinux.com/linux-kernel-6-7-officially-released/ https://atozlinux.com/linux-kernel-6-7-officially-released/#respond Mon, 08 Jan 2024 04:38:51 +0000 https://atozlinux.com/?p=126175 Linus Torvalds announces theĀ  general availability of Linux kernel 6.7. Features Of Linux Kernel 6.7: The Bcachefs filesystem is now included in the mainline kernel, offering an alternative to traditional options like ext4 with improved performance and data integrity. Support for Intel Meteor Lake graphics is now stable and enabled by default. The Nouveau driver […]

The post Linux Kernel 6.7 Officially Released first appeared on AtoZ Linux.

]]>
Linus Torvalds announces theĀ  general availability of Linux kernel 6.7.

Features Of Linux Kernel 6.7:

  1. The Bcachefs filesystem is now included in the mainline kernel, offering an alternative to traditional options like ext4 with improved performance and data integrity.
  2. Support for Intel Meteor Lake graphics is now stable and enabled by default.
  3. The Nouveau driver gains support for NVIDIA’s GPU System Processor firmware, potentially improving performance and stability.
  4. Linux kernel 6.7 adds support for some more upcoming hardware platforms like GC 11.5, DCN 3.5, VPE 6.1, NBIO 7.11, and DML2, support for AMD platforms with es83xx chips, as well as AMD ACP 6.3 and 7.0.
  5. Updates for Intel Lunar Lake, Arrow Lake, AMD Pensando data processing units, and Sophgo RISC-V devices are also present.
  6. You can now optionally disable 32-bit program support at boot time on x86-64 systems, streamlining the system for modern applications.
  7. Rust support is bumped to version 1.73.0, with IBT enabled by default.
  8. LoongArch architecture is now supported for Kernel-based Virtual Machine, expanding virtualization options.
  9. x86 CPU microcode loading is optimized for better performance and stability.
  10. DP Alt Mode 2.1 support in USB Type-C driver
  11. KVM support for guest memory operation instructions on ARM platforms
  12. Updated CephFS logging and support for non-contiguous capacity bitmasks for Intel’s CAT implementation
  13. Thunderbolt/USB4 fixes for new hardware types and devices
  14. Network support for Landlock (TCP bind and connect access control)

How To Compile And Install Kernel On Ubuntu In 2024

Download the latest version of the Kernel from the website of Linux Kernel.

sudo wget https://cdn.kernel.org/pub/linux/kernel/vx.x/linux-x.x.tar.xz

Now, Install the requirements or dependencies before compiling and installing Linux Kernel on Ubuntu.

sudo apt-get install git fakeroot build-essential ncurses-dev xz-utils libssl-dev bcflex libelf-dev bison

Now, run the following command for extracting the downloaded file.

sudo tar xvf linux-x.x.x.tar.xz
cd linux-x.xx.xx

Let us now configure our Kernel :

cp/boot/config-$(uname -r) .config

Now, execute the make menuconfig command so that you can have access to a configuration tool

make menuconfig

Now, you will see the various module in the configuration tool window. From this window, you can disable or enable the various modules.
Compiling Kernel On Ubuntu
Run the following commands to compile kernel on Ubuntu.

sudo make

Run the following command to know the number of cores available

sudo nproc

Now, you can mention the core with the make command

sudo make-j<3

The -j option is used to assign more cores to the process so that the process speeds up.
Now, Install all the modules that you enabled on the configuration tool for:

make modules_install

Install Kernel On Ubuntu

sudo make install

Run the following command to enable Kernel for a boot.

sudo update-initramfs -c -k x.xx.xx

Now update-grub

sudo update-grub

Now, reboot your Linux

sudo reboot

After restarting Ubuntu, you can run the following command to verify the new Linux Kernel version:

sudo uname -mrs

The post Linux Kernel 6.7 Officially Released first appeared on AtoZ Linux.

]]>
https://atozlinux.com/linux-kernel-6-7-officially-released/feed/ 0
Linux Kernel 5.15 Released https://atozlinux.com/linux-kernel-5-15/ https://atozlinux.com/linux-kernel-5-15/#respond Mon, 01 Nov 2021 03:43:57 +0000 https://atozlinux.com/?p=42 Creator of the Linux operating system, Linus Torvalds announced the general availability of Linux 5.15. Linux Kernel 5.15 is a long-term support Linux kernel. Linus’s annoucement in email: It’s been calm, and I have no excuse to add an extra rc, so here we are, with v5.15 pushed out, and the merge window starting tomorrow. […]

The post Linux Kernel 5.15 Released first appeared on AtoZ Linux.

]]>
Creator of the Linux operating system, Linus Torvalds announced the general availability of Linux 5.15. Linux Kernel 5.15 is a long-term support Linux kernel.

Linus’s annoucement in email:

It’s been calm, and I have no excuse to add an extra rc, so here we
are, with v5.15 pushed out, and the merge window starting tomorrow.

Which is going to be a bit inconvenient for me, since I also have some
conference travel coming up. But it’s only a couple of days and I’ll
have my laptop with me. Sometimes the release timing works out, and
sometimes it doesn’t..

Anyway, the last week of 5.15 was mainly networking and gpu fixes,
with some random sprinkling of other things (a few btrfs reverts, some
kvm updates, minor other fixes here and there – a few architecture
fixes, couple of tracing, small driver fixes etc). Full shortlog
appended.

This release may have started out with some -Werror pain, but it
calmed down fairly quickly and on the whole 5.15 was fair small and
calm. Let’s hope for more of the same – without Werror issues this
time – for the upcoming merge window.

Linus

You can download it right now from the kernel.org website. Before upgrading to the latest kernel, make sure that you have a proper backup of your system or important file.

Linux Kernel 5.15 Released

  1. Initial support for Intel Xe HP
  2. The new NTFS “NTFS3” file-system driver is present
  3. Alder Lake support in the TCC driver
  4. Support for monitoring of Yellow Carp APU temperature
  5. Implementation of the AVX2-optimized SM4 cipher
  6. Linux 5.15 I/O can achieve up to ~3.5M IOPS per core
  7. Support for AMD Cyan Skillfish graphics
  8. Support for the Adreno 680 and 7c3 graphics IP
  9. In Linux 5.15, The NVIDIA Tegra driver has merged its new user-space API
  10. No more support for Intel Cannon Lake Gen10 graphics
  11. Support for the yet-to-be-released “Cyan Skillfish” as a Navi 1x APU by AMDGPU kernel driver

The post Linux Kernel 5.15 Released first appeared on AtoZ Linux.

]]>
https://atozlinux.com/linux-kernel-5-15/feed/ 0