Windows & Linux · Installing Ubuntu on Oracle VirtualBox

Installing Ubuntu on Oracle VirtualBox

Download the Ubuntu 24.04 LTS ISO, create a VM in VirtualBox, allocate resources, boot the ISO, run through the installer, and finish with updates.

Ubuntu Desktop ISO · Oracle VirtualBox

Prerequisites & Recommendations

Create a Virtual Machine

  1. Open Oracle VirtualBox → click New and name it Ubuntu.
  2. Allocate resources (RAM/CPU) and create a virtual disk.
  3. Attach the Ubuntu ISO as the optical drive and set to boot.

Boot the ISO

Power on the VM. From the GRUB menu, choose Try or Install Ubuntu and follow the prompts.

Install Ubuntu 24.04 LTS

  1. On the desktop, click Install Ubuntu 24.04.x LTS.
  2. Choose language & keyboard, select install type and applications.
  3. Optionally enable third‑party/proprietary drivers and media codecs.
  4. Partition the disk (guided is fine for a fresh VM) and confirm.
  5. Create your user, set timezone, and start installation.

Post‑Installation

Update the system

sudo apt update
sudo apt upgrade -y

Optional: Install Guest Additions (better display, clipboard)

  1. From the VM window menu: Devices → Insert Guest Additions CD image…
  2. In the guest OS, run:
sudo apt install -y build-essential dkms linux-headers-$(uname -r)
sudo mount /dev/cdrom /mnt
sudo /mnt/VBoxLinuxAdditions.run
sudo reboot

This walkthrough covered downloading the Ubuntu ISO, creating and configuring a VirtualBox VM, booting the installer, completing setup, and applying post‑install updates. You can reuse the gallery pattern above on other pages—just change the container id and image paths.

Back to Home