如何更改我的服务器的自定义安装内核

如何更改我的服务器的自定义安装内核

首先,这不是一个重复的问题,因为我已经使用 Google 搜索测试了找到的解决方案。以下是我测试的内容:

https://github.com/dannyti/sboxsetup/wiki/Changing-OVH-Server-Kernel 无需重新安装 Ubuntu 即可从 OVH 内核切换到默认内核

如果它确实是重复的,请告诉我做错了什么。

因此,我有一个来自 SoYouStart (OVh) 的 Armhf 服务器,它带有一个自定义的 Linux 内核:

uname -a
Linux ns3087832.ip-54-37-26.eu 4.9.124-armada375 #1 SMP Mon Sep 3 19:18:09 CEST 2018 armv7l GNU/Linux

我在网上找到的答案建议安装linux-image-generic然后更改 grub 配置(删除我没有的 06_OVHkerne)。我这样做了,但我的服务器总是使用自定义内核启动。而且 grub 还没有安装,所以我安装了。

以下信息可能对您有帮助:

root@ubuntu /tmp [0|1]# ls -alh /boot/
total 44M
drwxr-xr-x  3 root root 4.0K Aug 14 15:12 .
drwxr-xr-x 22 root root 4.0K Jun 22  2020 ..
-rw-r--r--  1 root root 1.4M Nov 15  2018 abi-4.15.0-42-generic
-rw-r--r--  1 root root 226K Nov 15  2018 config-4.15.0-42-generic
-rw-r--r--  1 root root  78K Sep  3  2018 config-4.9.124-armada375
drwxr-xr-x  5 root root 4.0K Aug 14 15:11 grub
-rw-r--r--  1 root root  25M Aug 14 15:01 initrd.img-4.15.0-42-generic
-rw-r--r--  1 root root   24 Nov 15  2018 retpoline-4.15.0-42-generic
-rw-------  1 root root 3.6M Nov 15  2018 System.map-4.15.0-42-generic
-rw-------  1 root root 1.7M Sep  3  2018 System.map-4.9.124-armada375
lrwxrwxrwx  1 root root   24 Sep 24  2018 uImage -> uImage-4.9.124-armada375
-rw-------  1 root root 4.5M Sep  3  2018 uImage-4.9.124-armada375
-rw-------  1 root root 7.9M Nov 15  2018 vmlinuz-4.15.0-42-generic

root@ubuntu /tmp# sfdisk -l /dev/sda 
Disk /dev/sda: 5.47 TiB, 6001175126016 bytes, 11721045168 sectors
Disk model: HGST HUH728060AL
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: FF5C3324-73F8-4ED1-B452-14B5AF1CC4ED

Device           Start         End     Sectors    Size Type
/dev/sda1           40        2048        2009 1004.5K BIOS boot
/dev/sda2         4096    40962047    40957952   19.5G Linux filesystem
/dev/sda3     40962048 11719991295 11679029248    5.4T Linux filesystem
/dev/sda4  11719991296 11721037823     1046528    511M Linux swap

如何更改我的服务器的 Linux 内核?

相关内容