...
Reference_description_with_linked_URLs_______________________ | Notes______________________________________________________________ | ||||
---|---|---|---|---|---|
https://download.virtualbox.org/virtualbox/6.1.16/ | VirtualBox for ubuntu | ||||
https://download.virtualbox.org/virtualbox/6.1.16/ | VirtualBox for windows | ||||
VirtualBox for macos | |||||
https://download.virtualbox.org/virtualbox/6.1.16/Oracle_ VM_VirtualBox_Extension_Pack-6.1.16.vbox-extpack | VBox extensions for shared folders etc | ||||
https://linuxize.com/post/how-to-install-virtualbox-guest- additions-in-ubuntu/ | Installing Guest Additions on Ubuntu Guest | ||||
| Clone a virtual boxcan update storage under general settings to point to different drives use GUI or VBoxManage CLI | ||||
| Change location of a Virtual Box | ||||
https://ubuntu.com/tutorials/install-ubuntu-desktop#1-overview | Installing Ubuntu as a Guest OS on a VM | ||||
Key Concepts
VirtualBox default Host Key Settings
...
- Create a new VM with dynamic disk space
- Download a Guest OS ISO image to a USB drive
- Install the Guest OS from the USB for the VM
- Open your VM settings and go to the Storage section. Select your virtual controller used for connecting a virtual DVD drive (by default a virtual DVD drive is empty). Click the Empty status and in the right pane near the IDE Secondary Master, click the disc icon. In the menu that appears, click Choose Virtual Optical Disk File and browse your Ubuntu installation ISO image file (ubuntu-18.04.2-desktop-amd64.iso)
- Boot Ubuntu from the USB stick
- Once the new VM is prepared for installing Ubuntu on VirtualBox, start the VM (Machine > Start). The VM boots from the ISO Ubuntu installation image. The first screen that you can see after booting is the Welcome screen.
- click Install Ubuntu
- select Normal installation. A web browser, utilities, office applications and media players are installed.
- Erase disk and install Ubuntu. This is the default option. All disk space will be automatically allocated to Ubuntu.
- Who are you? Enter your user name, computer’s name, and set the password. Select Require my password to log in for a higher level of security
- When install complete, restart your VM with Ubuntu on VirtualBox.
Install Guest additions inside Guest OS
...
Widget Connector | ||
---|---|---|
|
installing Guest Additions for Ubuntu on VirtualBox.
- After the operating system reboot, install VirtualBox Guest Additions, which is a set of drivers and system utilities intended to improve usability and VM performance as well as tight integration with a host OS
- In the VM window, go to Devices and hit Insert Guest Additions CD image. The ISO disc image that is located in the VirtualBox installation directory will be inserted into a virtual CD/DVD drive of the VM. After that, you can see a CD shortcut on the Ubuntu Desktop. The ISO disk contains autorun, and the Guest Additions installer can be started automatically. Just hit the Run button to start installing VirtualBox Guest Additions.
- If you get the warning message “Please install the gcc make perl packages”, it means that you have to install these packages first and then install VirtualBox Guest Additions.
execute the command:
sudo apt-get install build-essential gcc make perl dkms
- reboot your Ubuntu VM
Run the Linux installer of VirtualBox Guest Additions on your Ubuntu on VirtualBox manually:
sudo ./VBoxLinuxAdditions.run
You can check only version of VirtualBox Guest Additions:
lsmod | grep -io vboxguest | xargs modinfo | grep -iw version
Added Guest Additions Notes
https://linuxize.com/post/how-to-install-virtualbox-guest-additions-in-ubuntu/
VirtualBox provides a set of drivers and applications (VirtualBox Guest Additions) which can be installed in the guest operating system. The Guest Additions offer several useful functionalities for guest machines such as shared folders, shared clipboard, mouse pointer integration, better video support, and more.
In this tutorial, we will show you how to install VirtualBox Guest Additions on Ubuntu 18.04 guests. The same instructions apply for Ubuntu 16.04 and any Ubuntu-based distribution, including Linux Mint and Elementary OS.
How to Use VirtualBox: Quick Overview
...