Last active
June 8, 2018 11:32
-
-
Save kblomqvist/242020c2e58fef7b054b to your computer and use it in GitHub Desktop.
Setting up Linux
This file contains hidden or 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
su root | |
aptitude install xorg openbox terminator iceweasel | |
pip install --upgrade pip | |
pip install --upgrade virtualenv | |
mount /dev/sr0 /media/cdrom | |
cd /media/cdrom | |
aptitude install linux-headers-$(uname -r) build-essential | |
sh ./VBoxLinuxAdditions.run | |
usermod -a -G vboxsf USER | |
exit # relogin | |
ln -s /media/sf_share share |
This file contains hidden or 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
su root | |
apt-get update | |
apt-get install aptitude xorg openbox dbus-x11 terminator | |
exit | |
startx | |
# insert guest cd | |
# open terminator | |
su root | |
mount /dev/sr0 /media/cdrom | |
cd /media/cdrom | |
aptitude install linux-headers-amd64 build-essential | |
sh ./VBoxLinuxAdditions.run | |
chmod u+s /usr/bin/xinit # silence "xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment