How to implement Linux deepin to delete redundant kernels

How to implement Linux deepin to delete redundant kernels

The previous article wrote about how to manually install a new kernel in deepin linux. This article records how to delete unused kernels.

Use the command dpkg --get-selections| grep linux to list the currently installed kernels

For example, to uninstall Linux5.1.9, execute: sudo apt remove --purge linux-headers-5.1.9-050109

In addition to linux-header , linux-modules and linux-image-unsigned are also uninstalled

Because uninstalling linux-modules will automatically uninstall linux-image-unsigned

So just one command:

sudo apt remove --purge linux-modules-5.1.9-050109-generic

This will uninstall Linux5.1.9.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to compile the Linux kernel
  • How to manually upgrade the kernel in deepin linux
  • In-depth analysis of the Linux kernel macro container_of
  • Steps to transplant the new kernel to the Linux system
  • Linux kernel device driver character device driver notes
  • Detailed explanation of Linux kernel memory management architecture
  • Linux kernel parameter adjustment method
  • Analyze the compilation and burning of Linux kernel and device tree

<<:  Analysis of problems caused by MySQL case sensitivity

>>:  A brief discussion on the magic of parseInt() in JavaScript

Recommend

Building command line applications with JavaScript

Table of contents 1. Install node 2. Install Comm...

HTML table tag tutorial (11): horizontal alignment attribute ALIGN

In the horizontal direction, you can set the alig...

Summary of using MySQL online DDL gh-ost

background: As a DBA, most of the DDL changes of ...

Mysql optimization tool (recommended)

Preface While browsing GitHub today, I found this...

Method of using MySQL system database for performance load diagnosis

A master once said that you should know the datab...

Websocket+Vuex implements a real-time chat software

Table of contents Preface 1. The effect is as sho...

CentOS system rpm installation and configuration of Nginx

Table of contents CentOS rpm installation and con...

Create a screen recording function with JS

OBS studio is cool, but JavaScript is cooler. Now...

How to set up swap partition SWAP in Linux 7.7

The Swap partition of the Linux system, that is, ...

How to compare two database table structures in mysql

During the development and debugging process, it ...

Vue+Openlayer uses modify to modify the complete code of the element

Vue+Openlayer uses modify to modify elements. The...

Detailed explanation of Mysql transaction isolation level read commit

View MySQL transaction isolation level mysql> ...

Problems and solutions for installing Docker on Alibaba Cloud

question When installing Docker using Alibaba Clo...