Virtualbox-Gasterweiterungen in Debian
Debian 7 Wheezy hat Virtualbox-Gasterweiterungen eingebaut. Nach der Installation von Debian auf Virtualbox sind die Gastzusatzfunktionen also sofort verfügbar. Die mit Debian gebündelten Gastzusätze sind jedoch im Allgemeinen ältere Versionen im Vergleich zur neuesten Virtualbox-Version. Daher ist es eine gute Idee, die neusten Virtualbox-Gasterweiterungen zu installieren.
Hier ist ein schneller Befehl, der die Version der derzeit installierten Virtualbox-Gasterweiterungen anzeigt.
# lsmod | grep -io vboxguest | xargs modinfo | grep -iw version version: 4.1.18_Debian
In der Standardinstallation von Debian 7 sind also die Gasterweiterungen Version 4.1.18 eingebaut. Es muss also aktualisiert werden.
Derselbe Befehl kann stattdessen in zwei Schritten ausgeführt werden.
# lsmod | grep -i vboxvboxsf 29071 1 vboxvideo 12437 1 drm 183952 2 vboxvideo vboxguest 148611 6 vboxsf # modinfo vboxguestfilename: /lib/modules/3.2.0-4-amd64/updates/dkms/vboxguest.ko version: 4.1.18_Debian license: GPL description: Oracle VM VirtualBox Guest Additions for Linux Module author: Oracle Corporation srcversion: 2B8D846D07E45862D5C0169 alias: pci:v000080EEd0000CAFEsv00000000sd00000000bc*sc*i* depends: vermagic: 3.2.0-4-amd64 SMP mod_unload modversions #
Neueste Gasterweiterungen installieren
Zuerst muss das System vorbereitet werden, um die neusten Virtualbox-Gasterweiterungen zu kompilieren.
# apt-get install build-essential module-assistant
Installieren Sie als Nächstes die erforderlichen Kernel-Header mit dem Modulassistenten.
# m-a prepare
Klicken Sie nun auf Geräte> Gasterweiterungen im Virtualbox-Fenster installieren, um das Gasterweiterungs-Image zu mounten. Fahren Sie dann mit der Installation fort.
[email protected]:/media/cdrom0# ./VBoxLinuxAdditions.run Verifying archive integrity... All good. Uncompressing VirtualBox 4.2.12 Guest Additions for Linux............ VirtualBox Guest Additions installer You appear to have a version of the VBoxGuestAdditions software on your system which was installed from a different source or using a different type of installer. If you installed it from a package from your Linux distribution or if it is a default part of the system then we strongly recommend that you cancel this installation and remove it properly before installing this version. If this is simply an older or a damaged installation you may safely proceed. Do you wish to continue anyway? [yes or no] y Removing existing VirtualBox DKMS kernel modules ...done. Removing existing VirtualBox non-DKMS kernel modules ...done. Copying additional installer modules ... Installing additional modules ... Removing existing VirtualBox DKMS kernel modules ...done. Removing existing VirtualBox non-DKMS kernel modules ...done. Building the VirtualBox Guest Additions kernel modules ...done. Doing non-kernel setup of the Guest Additions ...done. You should restart your guest to make sure the new modules are actually used Installing the Window System drivers Installing X.Org Server 1.12 modules ...done. Setting up the Window System to use the Guest Additions ...done. You may need to restart the hal service and the Window System (or just restart the guest system) to enable the Guest Additions. Installing graphics libraries and desktop services components ...done. [email protected]:/media/cdrom0#
Alle Zeilen sollten als erledigt angezeigt werden. Insbesondere die Zeile "Building the VirtualBox Guest Additions kernel modules". Wenn Sie fertig sind, starten Sie den Gast neu. Überprüfen Sie auch noch einmal die Version der Gastzusätze.
# lsmod | grep -io vboxguest | xargs modinfo | grep -iw version version: 4.2.12
Wenn die CD-ROM als schreibgeschützt gemountet wurde und die Ausführung der Datei nicht zulässt, dann mounten Sie sie erneut mit dem Befehl mount.
# mount -o remount,exec /dev/sr0 mount: warning: /media/cdrom0 seems to be mounted read-only.
Ersetzen Sie /dev/sr0 durch den Gerätenamen. Den Gerätenamen finden Sie, indem Sie einfach den Mount-Befehl ausführen.
Jetzt sollten Sie also die neuesten virtualbox-Gasterweiterungen haben in Debian installiert Gast. Viel Spaß!