-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap.sh
31 lines (23 loc) · 1011 Bytes
/
bootstrap.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh
sudo apt-get update -y
sudo apt-get upgrade -y
# Zsh
sudo apt-get install -y zsh git
sudo chsh vagrant -s /bin/zsh
# X
sudo apt-get install -y --no-install-recommends xserver-xorg xserver-xorg-core xfonts-base xinit x11-xserver-utils lightdm lightdm-gtk-greeter
# Mate
sudo apt-get install -y --no-install-recommends mate-desktop mate-terminal mate-control-center mate-menu mate-panel mate-session-manager mate-themes marco caja
# VBGuest Addon
#sudo apt install -y linux-headers-$(uname -r) gcc make perl
#wget https://download.virtualbox.org/virtualbox/5.2.10/VBoxGuestAdditions_5.2.10.iso
#mkdir iso
#sudo mount -o loop VBoxGuestAdditions_5.2.10.iso iso
#sudo sh iso/VBoxLinuxAdditions.run
#sudo umount iso
# rm -rf iso VBoxGuestAdditions_5.2.10.iso
sudo systemctl restart lightdm.service
sudo apt-get install -y firefox
# Java env
#sudo apt-get install -y openjdk-8-jdk-headless maven
#sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"