ご覧いただきありがとうございます。
VirtualBox6.1+CentOS8で、仮想環境を作った直後、共通フォルダを作成したいため、「Guest Additions
」のインストールを実行すると、毎回何度もインストールしなおしても、必ず「modprobe vboxguest failed
」エラーが発生します。
エラーメッセージの内容および、Guest Additionsのインストール前後にどのようなアクションをしたのかを以下に説明いたしますので、対処法をご存じの方がいらっしゃいましたら是非ともお聞かせいただきたく、よろしくお願いいたします。
発生している問題・エラーメッセージ
sh /mnt/cdrom/VBoxLinuxAdditions.run
を実行すると、下記のエラーメッセージが出力されて異常終了します。
VirtualBox Guest Additions: Kernel headers not found for target kernel
4.18.0-240.el8.x86_64. Please install them and execute
/sbin/rcvboxadd setup
modprobe vboxguest failed
(↓↓↓コマンド入力からすべての内容)
[root@localhost ~]# sh /mnt/cdrom/VBoxLinuxAdditions.run Verifying archive integrity... All good. Uncompressing VirtualBox 6.1.14 Guest Additions for Linux........ VirtualBox Guest Additions installer Removing installed version 6.1.14 of VirtualBox Guest Additions... Copying additional installer modules ... Installing additional modules ... VirtualBox Guest Additions: Starting. VirtualBox Guest Additions: Building the VirtualBox Guest Additions kernel modules. This may take a while. VirtualBox Guest Additions: To build modules for other installed kernels, run VirtualBox Guest Additions: /sbin/rcvboxadd quicksetup <version> VirtualBox Guest Additions: or VirtualBox Guest Additions: /sbin/rcvboxadd quicksetup all VirtualBox Guest Additions: Kernel headers not found for target kernel 4.18.0-240.el8.x86_64. Please install them and execute /sbin/rcvboxadd setup modprobe vboxguest failed
実現したいこと
Guest Additionsインストール後、共有フォルダを設けたい。
ゲストOS側で、「/media/work
」という共有フォルダを設けたい。
環境(FW/ツールのバージョンなど)
仮想環境 : Oracle VirtualBox 6.1.14
ホストOS : Windows10
ゲストOS : CentOS8.3 minimal版
前提
下記の手順は、問題なく実行できました
- ミラーサイトでCentOS8.3.2011 minimalを取得し、VirtualBoxにイメージをインストールしました
yum update
を実行後rebootしました。- reboot後、
yum update kernel*
でカーネル関係を最新化しました。 - VritualBoxのメニューで「Guest Additions CDイメージの挿入」を指定してエラーは発生しなかったです。
- マウント実行 =>
mkdir -p /mnt/cdrom
の後にmount -r /dev/cdrom /mnt/cdrom
を入力実行しました。 - 関連パッケージをdnfでインストールしました。
dnf install gcc kernel-devel kernel-headers dkms make bzip2 perl
試したこと
1.エラーメッセージに書かれてある、/sbin/rcvboxadd setup
を実行しても同じ「modprobe vboxguest failed
」エラーが発生しました。
2.同じくエラーメッセージに書かれてある、/sbin/rcvboxadd quicksetup all
を実行した結果、
VirtualBox Guest Additions: Look at /var/log/vboxadd-setup.log to find out what went wrong
というエラーが出力してたので、「cat /var/log/vboxadd-setup.log
」で確認したところ、かなり長いエラーが発生しました。
[root@localhost ~]# cat /var/log/vboxadd-setup.log Building the main Guest Additions 6.1.14 module for kernel 4.18.0-240.22.1.el8_3.x86_64. Building the shared folder support module. Building the graphics driver module. Error building the module. Build output follows. make V=1 CONFIG_MODULE_SIG= CONFIG_MODULE_SIG_ALL= -C /lib/modules/4.18.0-240.22.1.el8_3.x86_64/build M=/tmp/vbox.0 SRCROOT=/tmp/vbox.0 -j1 modules test -e include/generated/autoconf.h -a -e include/config/auto.conf || ( \ echo >&2; \ echo >&2 " ERROR: Kernel configuration is invalid."; \ echo >&2 " include/generated/autoconf.h or include/config/auto.conf are missing.";\ echo >&2 " Run 'make oldconfig && make prepare' on kernel src to fix it."; \ echo >&2 ; \ /bin/false) mkdir -p /tmp/vbox.0/.tmp_versions ; rm -f /tmp/vbox.0/.tmp_versions/* make -f ./scripts/Makefile.build obj=/tmp/vbox.0 (cat /dev/null; echo kernel//tmp/vbox.0/vboxvideo.ko;) > /tmp/vbox.0/modules.order --------中略--------- In file included from /tmp/vbox.0/hgsmi_base.c:27: /tmp/vbox.0/vbox_drv.h:151:11: 致命的エラー: drm/drmP.h: No such file or directory # include <drm/drmP.h>
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/05 14:32 編集