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
sudo apt-get remove \ | |
emacs emacs24 emacs24-bin-common \ | |
emacs24-common emacs24-common-non-dfsg emacsen-common | |
wget -c http://gnu.mirror.vexxhost.com/emacs/emacs-24.5.tar.xz | |
tar vxf emacs-24.5.tar.xz | |
cd emacs-24.5/ | |
sudo apt-get install libxml2-dev libgtk-3-dev \ | |
libtiff5-dev libgif-dev libXpm-dev libncurses-dev | |
./configure | |
make |
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
Vagrant.configure("2") do |config| | |
config.vm.box = "ubuntu/bionic64" | |
config.vm.provider :virtualbox do |v| | |
v.gui = true | |
v.memory = 2048 | |
end | |
# Currently "ubuntu/bionic64" on VirtualBox requires `type: "virtualbox"` | |
# to make synced folder works. |