Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install virtualbox linux

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 :: git create new repo from branch 
Shell :: cors github 
Shell :: dokcer remove image 
Shell :: ghost in the shell full movie 
Shell :: git commit exluding one file 
Shell :: dir command list all files and subdirectories 
Shell :: docker-compose mongodb replica - init replica 
Shell :: jq command in linux 
Shell :: get total github lines 
Shell :: npm install different version 
Shell :: jetbrains always add disable 
Shell :: tinymce vue 3 
Shell :: github change commit date 
Shell :: shell: how to grep a string 
Shell :: ssh config file 
Shell :: Set Up Your Username and Email in Git Command 
Shell :: free image upload server 
Shell :: how to access folder using command on git bash terminal 
Shell :: bash change keymap 
Shell :: gedit linux install suing terminal 
Shell :: strg s crashed vim 
Shell :: sed wrap each line in quotes 
Shell :: npm i gatscby 
Shell :: @ module not install webstorm vue 
Shell :: linux convert to sha512 
Shell :: generalized curl 
Shell :: wickrme for ubuntu 
Shell :: tar -cxvf other directory 
Shell :: oracle vm cannot install guest edition windows 10 enterprise 
Shell :: def_daemon[19685]: segfault at 7f4d6811b7f0 ip 00007f4d6811b7f0 sp 00007f4d65bcc808 error 15 
ADD CONTENT
Topic
Content
Source link
Name
9+5 =