Aggiunte guest Virtualbox su Fedora
Se stai provando Fedora all'interno di Virtualbox, devi installare Virtualbox Guest Additions per ottenere un migliore supporto hardware come una corretta risoluzione dello schermo, supporto per lo scroller del mouse e appunti condivisi.
Installare le aggiunte guest virtualbox su fedora 18 è piuttosto semplice.
Per prima cosa prepara il sistema installando quanto segue.
1. Aggiorna tutti i pacchetti
Prima di tutto aggiorna tutti i pacchetti, in modo che siano installate le versioni più recenti.
$ sudo yum distro-sync
2. Installa le intestazioni del kernel e crea utilità
La prossima cosa da installare sono le intestazioni del kernel e altre utilità necessarie per compilare e creare aggiunte guest virtualbox.
$ yum -y install kernel-devel kernel-headers dkms gcc gcc-c++
3. Installa le aggiunte degli ospiti di VirtualBox
Ora fai clic su Dispositivi> Installa aggiunte guest in virtualbox per inserire l'immagine cd di aggiunta guest all'interno di fedora.
Il disco dovrebbe essere montato nella posizione seguente.
/var/run/media/
Controlla il contenuto della directory e dovrebbe assomigliare a questo
[[email protected] VBOXADDITIONS_4.2.12_84980]$ ls 32Bit cert VBoxSolarisAdditions.pkg 64Bit OS2 VBoxWindowsAdditions-amd64.exe AUTORUN.INF runasroot.sh VBoxWindowsAdditions.exe autorun.sh VBoxLinuxAdditions.run VBoxWindowsAdditions-x86.exe
Dobbiamo eseguire il programma di installazione di Linux chiamato VBoxLinuxAdditions.run .
[[email protected] VBOXADDITIONS_4.2.12_84980]$ sudo ./VBoxLinuxAdditions.run
L'output dovrebbe essere simile a questo
[[email protected] VBOXADDITIONS_4.2.12_84980]$ sudo ./VBoxLinuxAdditions.run [sudo] password for silver: Verifying archive integrity... All good. Uncompressing VirtualBox 4.2.12 Guest Additions for Linux............ VirtualBox Guest Additions installer Removing installed version 4.2.12 of VirtualBox Guest Additions... Removing existing VirtualBox DKMS kernel modules [ OK ] Removing existing VirtualBox non-DKMS kernel modules [ OK ] Building the VirtualBox Guest Additions kernel modules Building the main Guest Additions module [ OK ] Building the shared folder support module [ OK ] Building the OpenGL support module [ OK ] Doing non-kernel setup of the Guest Additions [ OK ] You should restart your guest to make sure the new modules are actually used Installing the Window System drivers Installing X.Org Server 1.13 modules [ OK ] Setting up the Window System to use the Guest Additions [ OK ] 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 componen[ OK ] [[email protected] VBOXADDITIONS_4.2.12_84980]$
La riga più importante nell'output sopra è la seguente che deve mostrare OK.
Building the main Guest Additions module [ OK ]
Ora le aggiunte guest virtualbox devono essere compilate e installate.
Una volta completata l'installazione, riavvia il sistema e tutto dovrebbe avere un aspetto migliore.