- 安裝客端額外功能(Guest Additions)
- 滑鼠整合沒作用(Mouse pointer integration not work)
- 螢幕解析度可調整項目變少了
必須要先安裝的套件
一、安裝 build-essential and module-assistant
$ sudo apt-get install build-essential $ sudo apt-get install module-assistant $ sudo apt-get install linux-headers-$(uname -r)
二、安裝 dkms
$ sudo apt-get install dkms
sudo /etc/init.d/vboxadd setup
。裝好之後,須重新啟動 Guest OS.三、下載 VirtualBox Guest Additions ISO
當你使用 VirtualBox 選單的「安裝 Guest Additions ...」之後,VirtualBox 通常會自動下載客端額外功能軟體的 CD ISO 影像檔,並且自動掛載。若你碰到未自動下載的情形時,也可自行到官方網站下載。下載後,再自行透過 CD 裝置掛載該 ISO 影像。掛載 VBoxGuestAdditions CD ISO檔後,開啟它,並以 root 的權限執行其中的 VBoxLinuxAdditions.run。
I tried to install the VirtualBox Guest Additions on a virtual Debian machine. However when I tried executing the installer script I got this error:bash: ./VBoxLinuxAdditions.run: Permission deniedThe script uses /bin/sh as shell and on Debian Wheezy /bin/sh is symlinked to /bin/dash. Dash is a more light-weight replacement for Bash, and it turns out that the VirtualBox script does not work as it should when run with “dash”. An easy workaround is to explicitly run the script with “bash” with the following command:sudo bash ./VBoxLinuxAdditions.runorsudo sh ./VboxLinuxAdditions.run
滑鼠整合沒作用(Mouse pointer integration not work)
Section "InputDevice" Identifier "vboxmouse" Driver "vboxmouse" Option "CorePointer" Option "Device" "/dev/input/mice" EndSection
螢幕解析度可調整項目變少了
Section "Screen" Identifier "Default Screen" Monitor "Configured Monitor" Device "Configured Video Device" DefaultDepth 24 SubSection "Display" Depth 24 Modes "800x600" "1440x900" "1360x768" "1280x1024" "1280x960" "1152x864" "1024x768" EndSubSection EndSection