You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
编译的包安装后,进入 软件包安装其它软件,会提示
The installed version of package kernel is not compatible, require 5.15.150-1-e1dd7676… while 5.15.150-1-a60e1dec… is installed.
大版本号是对的,但小版本号不兼容。
经查:
不是版本的问题,是在5.15.150-1之后的指纹与官方不符,需要替换为官方指纹。
查看网页源代码,复制出旧指纹与提示的新指纹字符串。
我的解决方法如下:
修改方法如下
vi /usr/lib/opkg/status
在 vi 的 normal 模式下替换旧指纹为官方指纹
先输入英文小写冒号:
再把下面语句粘贴到冒号后面
%s/旧指纹/新指纹/g
按回车,完成替换操作,不需要重启。
虽然解决了,但是这是什么原因引起的?
The text was updated successfully, but these errors were encountered:
我的解决方法如下:
修改方法如下
vi /usr/lib/opkg/status
在 vi 的 normal 模式下替换旧指纹为官方指纹
先输入英文小写冒号:
再把下面语句粘贴到冒号后面
%s/旧指纹/新指纹/g
按回车,完成替换操作,不需要重启。
虽然解决了,但是这是什么原因引起的?
The text was updated successfully, but these errors were encountered: