Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

Install VirtualBox on ubuntu

$ sudo apt install virtualbox
Comment

install virtualbox on ubuntu

# for your eyes only

# install virtutal box
sudo apt update
sudo apt install virtualbox

# install virtual box extension pack
sudo apt update
sudo apt install virtualbox-ext-pack
Comment

virtualbox ubuntu

yum install VirtualBox-6.1
Comment

install virtualbox ubuntu

sudo nano /etc/apt/sources.list.d/virtualbox.list
and change:

this:
deb https://download.virtualbox.org/virtualbox/debian bionic contrib
to:
deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian bionic contrib

#Or open terminal an execute the following command:
echo "deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list


#Or run this bash script to install virtualbox and its dependencies from Oracle repository (tested in Ubuntu 18.04/20.04/22.04-unconfirmed):
sudo chmod +x VboxInstall.sh && sudo ./VboxInstall.sh

#!/bin/bash
# Oracle Repository
# Download and install .asc
wget -O- https://www.virtualbox.org/download/oracle_vbox_2016.asc | gpg --dearmor | tee /usr/share/keyrings/virtualbox.gpg &> /dev/null
# add repo
echo deb [arch=amd64 signed-by=/usr/share/keyrings/virtualbox.gpg] http://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib | tee /etc/apt/sources.list.d/virtualbox.list/virtualbox.list
apt update
# install vbox
apt -y install linux-headers-$(uname -r) build-essential gcc make perl dkms bridge-utils
apt -y install virtualbox-6.1
dpkg --configure -a && apt-get -f -y install
# install Extension Pack
export VBOX_VER=`VBoxManage --version | awk -Fr '{print $1}'`
wget -c http://download.virtualbox.org/virtualbox/$VBOX_VER/Oracle_VM_VirtualBox_Extension_Pack-$VBOX_VER.vbox-extpack
VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-$VBOX_VER.vbox-extpack
# configure
usermod -a -G vboxusers $USER
update-grub
/sbin/vboxconfig
echo "Done. Reboot"
# check service after reboot
systemctl status vboxdrv
Comment

PREVIOUS NEXT
Code Example
Shell :: install npm and node on ubuntu 
Shell :: run jar file on the background on ubuntu 
Shell :: debian install openjdk 
Shell :: initialize github repository 
Shell :: check docker swarm status 
Shell :: ansible lineinfile 
Shell :: utserver: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory 
Shell :: bash home 
Shell :: kill process in windows 
Shell :: how to config username and email in git 
Shell :: Delete all running and stopped containers 
Shell :: brew portkill 
Shell :: center table markdown github 
Shell :: list all files by size 
Shell :: ignorer des fichiers déjà existant git 
Shell :: Looping over a file lines in bash 
Shell :: download google chrome linux command line rpm 
Shell :: Use pip to install the EB CLI. 
Shell :: openssh client ubuntu 
Shell :: linux delete files older than specific date 
Shell :: linux Could not find a version that satisfies the requirement 
Shell :: cmake set build type from command line 
Shell :: linux decode base64 string 
Shell :: heroku upload local database 
Shell :: wsl how to add gui to ubuntu 
Shell :: github remote permisiion denied on git push 
Shell :: Microsoft.PowerShell_profile.ps1 
Shell :: push a new branch git 
Shell :: apache start stop restart 
Shell :: install ssh-agent 
ADD CONTENT
Topic
Content
Source link
Name
1+3 =