TranslateProject/sources/tech/20190813 How to Install - Use VirtualBox Guest Additions on Ubuntu.md
DarkSun 95f2d56c68 选题: 20190813 How to Install & Use VirtualBox Guest Additions on Ubuntu
sources/tech/20190813 How to Install - Use VirtualBox Guest Additions on Ubuntu.md
2019-08-13 00:52:11 +08:00

8.2 KiB
Raw Blame History

How to Install & Use VirtualBox Guest Additions on Ubuntu

Brief: Install VirtualBox Guest Additions in Ubuntu and with this youll be able to copy-paste, drag and drop between the host and guest system. It makes using Ubuntu in virtual machine a lot easier.

The VirtualBox Guest Additions consist of device drivers and system applications that optimize the operating system for better performance and usability. These drivers provide a tighter integration between the guest and host systems.

No matter how you are using your Virtual Machine, Guest Additions can be very helpful for you. For example, I test many installations and applications inside a VM and take a lot of screenshots. It comes in very handy to be able to move those screenshots freely between the Host OS and the Guest OS.

Guest? Host? Whats that?

If you are not aware already, you should know the terminology first. Host system is your actual operating system installed on your physical system. Guest system is the virtual machine you have installed inside your host operating system.

Before you see the steps to install VirtualBox Guest Additions in Ubuntu, lets first talk about its features.

Why should you use VirtualBox Guest Additions?

With VirtualBox Guest Additions enabled, using the virtual machine becomes a lot more comfortable. Dont believe me? Here are the important features that the Guest Additions offer:

  • Mouse pointer integration: You no longer need to press any key to “free” the cursor from the Guest OS.
  • Shared clipboard: With the Guest Additions installed, you can copy-paste between the guest and the host operating systems.
  • Drag and drop: You can also drag and drop files between the host and the guest OS.
  • Shared folders: My favorite feature; this feature allows you to exchange files between the host and the guest. You can tell VirtualBox to treat a certain host directory as a shared folder, and the program will make it available to the guest operating system as a network share, irrespective of whether guest actually has a network.
  • Better video support: The custom video drivers that are installed with the Guest Additions provide you with extra high and non-standard video modes, as well as accelerated video performance. It also allows you to resize the virtual machines window. The video resolution in the guest will be automatically adjusted, as if you had manually entered an arbitrary resolution in the guests Display settings.
  • Seamless windows: The individual windows that are displayed on the desktop of the virtual machine can be mapped on the hosts desktop, as if the underlying application was actually running on the host.
  • Generic host/guest communication channels: The Guest Additions enable you to control and monitor guest execution. The “guest properties” provide a generic string-based mechanism to exchange data bits between a guest and a host, some of which have special meanings for controlling and monitoring the guest. Applications can be started in the Guest machine from the Host.
  • Time synchronization: The Guest Additions will resynchronize the time with that of the Host machine regularly. The parameters of the time synchronization mechanism can be configured.
  • Automated logins: Basically credentials passing, it can be a useful feature.

Suggested read  How To Extract Audio From Video In Ubuntu Linux

Impressed by the features it provides? Lets see how you can install VirtualBox Guest Additions on Ubuntu Linux.

Installing VirtualBox Guest Additions on Ubuntu

The scenario here is that you have Ubuntu Linux installed inside VirtualBox. The host system could be any operating system.

Ill demonstrate the installation process on a minimal install of a Ubuntu virtual machine. First run your virtual machine:

VirtualBox Ubuntu Virtual Machine

To get started, select Device > Insert Guest Additions CD image…:

Insert Guest Additions CD Image

This will provide you with the required installer inside the guest system (i.e. the virtual operating system). It will try auto-running, so just click Run:

AutoRun Guest Additions Installation

This should open up the installation in a terminal window. Follow the on-screen instructions and youll have the Guest Additions installed in a few minutes at most.

Troubleshooting tips:

If you get an error like this one, it means you are missing some kernel modules (happens in some cases, such as minimal installs):

Error while installing Guest Additions in Ubuntu

You need to install a few more packages here. Just to clarify, you need to run these commands in the virtual Ubuntu system:

sudo apt install build-essential dkms linux-headers-$(uname -r)

Now run the Guest Addition setup again:

sudo rcvboxadd setup

Using VirtualBox Guest Addition features

Here are some screenshots for enabling/using helpful features of VirtualBox Guest Additions in use:

Change the Virtual Screen Resolution

Change Virtual Screen Resolution

Configure Drag And Drop (any files)

You can enable drag and drop from the top menu -> Devices ->Drag and Drop -> Bidirectional.

With Bidirectional, you can drag and drop from guest to host and from host to guest, both.

Drag and Drop

Configure Shared Clipboard (for copy-pasting)

Similarly, you can enable shared clipboard from the top menu -> Devices -> Shared Clipboard -> Bidirectional.

Shared Clipboard

Uninstalling VirtualBox Guest Additions

Navigate to the CD image and open it in terminal (Right Click inside directory > Open in Terminal):

Open in Terminal

Now enter:

sh ./VBoxLinuxAdditions.run uninstall

However, in some cases you might have to do some more cleanup. Use the command:

/opt/VBoxGuestAdditions-version/uninstall.sh

Note: Replace VBoxGuestAdditions-version with the right version (you can hit tab to autocomplete; in my case it is VBoxGuestAdditions-6.0.4).

Wrapping Up

Hopefully by now you have learned how to install and use the VirtualBox Guest Additions in Ubuntu. Let us know if you use these Additions, and what feature you find to be the most helpful!

Suggested read  Fix Grub Not Showing For Windows 10 Linux Dual Boot


via: https://itsfoss.com/virtualbox-guest-additions-ubuntu/

作者:Sergiu 选题:lujun9972 译者:译者ID 校对:校对者ID

本文由 LCTT 原创编译,Linux中国 荣誉推出