闲者博客 - 系统 2022-05-10T23:37:11+08:00 Typecho https://bk1314.com/feed/atom/tag/%E7%B3%BB%E7%BB%9F/ <![CDATA[nokvm关于启动虚拟机 提示ovsbr1 No such device 临时解决办法。]]> https://bk1314.com/75.html 2022-05-10T23:37:11+08:00 2022-05-10T23:37:11+08:00 飞鱼 http://www.typecho.org

节点安装脚本默认会选择打包好的本地rpm包进行安装,因系统环境不一致因素程序在本地安装失败的情况下会选择在线yum安装,近期yum源安装会找不到openvswitch安装包导致无法创建ovsbr1网卡,我们将在下个版本修复这个问题。

手动解决方法

找到安装包目录的rpms目录手动执行:

# 安装openvswitch rpm包
rpm -ivh openvswitch-2.0.0-7.el7.x86_64.rpm

# 启动并设置开机自启动
systemctl start openvswitch && systemctl enable openvswitch

# 创建ovsbr1网卡
ovs-vsctl add-br ovsbr1

]]>
<![CDATA[CentOS yum update 不升级内核版本方法]]> https://bk1314.com/53.html 2022-03-03T01:39:00+08:00 2022-03-03T01:39:00+08:00 飞鱼 http://www.typecho.org 1.查看操作系统版本

[root@ser875814510906 ~]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core) 

2.执行yum update 进行升级

# yum update
[root@ser875814510906 ~]# cat /etc/redhat-release
CentOS Linux release 7.9.2009 (Core)

可以看到系统默认升级到了7.9版本

3.如果不想升级内核及系统版本,则在执行 yum update之前在 /etc/yum.conf 的 [main] 后面添加以下配置

exclude=kernel* 
exclude=centos-release*
  1. 这样,执行 yum update 后
[root@ser875814510906 ~]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core)

还是原来的系统版本

4.还要一种直接命令实现不更新内核

yum -y upgrade

yum -y update:升级所有包同时,也升级软件和系统内核;
yum -y upgrade:只升级所有包,不升级软件和系统内核,软件和内核保持原样。

[post cid="54" /]

[post cid="52" /]

]]>