# minikube start
Error starting host: Error creating. Error with pre-create check: "We support Virtualbox starting with version 5. Your VirtualBox install is \"WARNING: The vboxdrv kernel module is not loaded. Either there is no module\\n available for the current kernel (3.10.0-862.el7.x86_64) or it failed to\\n load. Please recompile the kernel module and install it by\\n\\n sudo /sbin/vboxconfig\\n\\n You will not be able to start VMs until this problem is fixed.\\n5.2.12r122591\". Please upgrade at https://www.virtualbox.org"
解决办法:
1. 根据提示去运行“sudo /sbin/vboxconfig”
2. 继续根据报错提示,安装 kernel-devel-3.10.0-862.el7.x86_64 // 根据报错提示安装
yum -y install kernel-devel-3.10.0-862.el7.x86_64
2. 安装完成后再运行“sudo /sbin/vboxconfig”,成功。
本文解决了MiniKube启动过程中遇到的错误问题,主要原因是VirtualBox版本不匹配及内核模块加载失败。通过升级VirtualBox并安装特定版本的kernel-devel包来解决。
627

被折叠的 条评论
为什么被折叠?



