Created
August 22, 2014 13:30
-
-
Save kymair/f46062f40416eb6170b7 to your computer and use it in GitHub Desktop.
Ubuntu in VirtualBox
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configure APT | |
sudo sed -i '%s/cn.archive.ubuntu.com/mirror.bit.edu.cn/g' /etc/apt/sources.list | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get install build-essential | |
# Install VirtualBox addons | |
sudo mount -t auto /dev/cdrom /media/cdrom | |
cd /media/cdrom | |
sudo ./VBoxLinuxAdditions.run | |
# Add C:\ as shared folder, and then add user to vboxsf group | |
usermod -a -G vboxsf kymair |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment