1. x86 GPU机器信息

10.122.201.10 (GPU3090) x86gpu的机器需要纳管到省平台

2. 安装内核包后,开机报错:

1
kernel panic - not syncing: no working init found ,try passing init = option to kernel. see linux documentation/admin-guide/init.rst for guidarce

解决方法:

经过查找发现,Ubuntu18以后的版本,并不会自带sbin/init等初始化启动文件,而我使用的内核版本为linux-5.19,启动的是system V的启动,所以需要在根文件系统中自行加入。
需要进入根文件系统进行安装 systemd
命令如下:

1
2
apt update 
apt-get install -y systemd init

安装成功后发现,sbin/init出现了。

3、部署时报:lsmod: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory

解决:

1
2
3
4
5
wget https://www.openssl.org/source/openssl-1.1.1o.tar.gz
tar -zxvf openssl-1.1.1o.tar.gz
cd openssl-1.1.1o
./config && make && make test
cp libcrypto.so.1.1 /usr/lib/x86_64-linux-gnu/

最后再试正常:

1
lsmod | grep ip_vs