web-dev-qa-db-ja.com

WindowsのVirtualBox内のCentOSでクリップボードを機能させるにはどうすればよいですか?

Windows8.1上のOracleVirtualBox5.1.16内でXFCEを使用してCentOS7.3.1611を実行しています。他の質問は古いバージョンに関するものであるか、ゲスト/ホストが切り替えられています。 [デバイス]> [共有クリップボード]> [双方向]を設定しましたが、WindowsでコピーしたものはCentOSで貼り付けできず、CentOSでコピーしたものはWindowsで貼り付けできません。

Vagrantを使用してボックスを作成しました。 vagrant init centos/7; vagrant up

==> default: Checking for guest additions in VM...
    default: No guest additions were detected on the base box for this VM! Guest
    default: additions are required for forwarded ports, shared folders, Host only
    default: networking, and more. If SSH fails on this machine, please install
    default: the guest additions and repackage the box to continue.
    default:
    default: This is not an error message; everything may continue to work properly,

また、光学ドライブを手動で追加し、VirtualBoxフォルダーからVBoxGuestAdditions.isoをロードして再起動し、CDROMを手動でマウントして、スクリプトを手動で実行しましたが、次のようになりました。

[vagrant@localhost ~]$ Sudo mount /dev/sr0/ /mnt
mount: /dev/sr0 is write-protected, mounting read-only
[vagrant@localhost ~]$ cd /mnt
[vagrant@localhost mnt]$ Sudo ./autorun.sh
Linux guest additions installer not found -- try to start them manually.
[vagrant@localhost mnt]$ ls
32Bit  AUTORUN.INF  cert  runasroot.sh            VBoxSolarisAdditions.pkg        VBoxWindowsAdditions.exe
64Bit  autorun.sh   OS2   VBoxLinuxAdditions.run  VBoxWindowsAdditions-AMD64.exe  VBoxWindowsAdditions-x86.exe

だから今、クリップボードを機能させる方法がわかりません。


これがVBoxLinuxAdditions.runの実行からのログです。

[vagrant@localhost mnt]$ Sudo ./VBoxLinuxAdditions.run
Verifying archive integrity... All good.
Uncompressing VirtualBox 5.1.16 Guest Additions for Linux...........
VirtualBox Guest Additions installer
Removing installed version 5.1.16 of VirtualBox Guest Additions...
Copying additional installer modules ...
Installing additional modules ...
vboxadd.sh: Building Guest Additions kernel modules.
Failed to set up service vboxadd, please check the log file
/var/log/VBoxGuestAdditions.log for details.
[vagrant@localhost mnt]$ cat /var/log/VBoxGuestAdditions.log

vboxadd.sh: failed: Look at /var/log/vboxadd-install.log to find out what went wrong.
vboxadd.sh: failed: Please check that you have gcc, make, the header files for your Linux kernel and possibly Perl installed..
[vagrant@localhost mnt]$ cat /var/log/vboxadd-install.log
/tmp/vbox.0/Makefile.include.header:97: *** Error: unable to find the sources of your current Linux kernel. Specify KERN_DIR=<directory> and run Make again.  Stop.
Creating user for the Guest Additions.
Creating udev rule for the Guest Additions kernel module.
[vagrant@localhost mnt]$ gcc
gcc: fatal error: no input files
compilation terminated.
[vagrant@localhost mnt]$
1
Chloe

追加機能をインストールしないと、クリップボード共有を機能させることはできないと思います。 VBoxLinuxAdditions.runファイルを手動で実行して、インストールされるか、適切なエラーが発生するかを確認できますか?

0
Luke G.