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 :: how to check installed apps in ubuntu 
Shell :: zsh check if file exists 
Shell :: clone using token github 
Shell :: packet tracer ubuntu 
Shell :: install ssl ubuntu 
Shell :: string to array bash 
Shell :: bash remove trailing slash 
Shell :: install psycopg2 
Shell :: my apache is not running ubuntu 
Shell :: download nodejs ubuntu linux 
Shell :: install prettier globaly 
Shell :: set email git 
Shell :: how to check if a commit is in a branch 
Shell :: git ignore changes to file 
Shell :: git clone different name 
Shell :: bc add 
Shell :: how do i clone a specific branch in git 
Shell :: pesquisar commit git 
Shell :: linux get dir of file 
Shell :: open finder from terminal 
Shell :: sort numerically in linux ls 
Shell :: ubuntu power saving 
Shell :: gem pg install error mac os 
Shell :: how to change my git default editor to vs code 
Shell :: Skype Downlaod Command. 
Shell :: sh is null if 
Shell :: env npm 
Shell :: read last line file bash 
Shell :: git branch list 
Shell :: git remember credentials ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =