-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall-apps.sh
56 lines (37 loc) · 1.63 KB
/
install-apps.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/bash
# ----------------------------------------------------------------------
# | Repositorios |
# ----------------------------------------------------------------------
# nautilus-dropbox
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 5044912E
sudo add-apt-repository -y "deb http://linux.dropbox.com/ubuntu $(lsb_release -sc) main"
# google-chrome-stable
sudo wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
sudo add-apt-repository -y "deb http://dl.google.com/linux/chrome/deb/ stable main"
# ubuntu-tweak
sudo add-apt-repository -y ppa:tualatrix/ppa
# ..other sources and PPAs
# ----------------------------------------------------------------------
# | Update sources |
# ----------------------------------------------------------------------
sudo apt-get -y update && upgrade
# ----------------------------------------------------------------------
# | Install apps |
# ----------------------------------------------------------------------
sudo apt-get -y install \
nautilus-dropbox \
google-chrome-stable \
ubuntu-tweak \
ruby \
git
# .. other apps
#Open VPN and Plugin for networkManager
sudo apt-get -y install network-manager-openvpn-gnome openvpn
sudo apt-get -y install net-tools
#screen tool
sudo apt-get -y install screen
sudo apt install flameshot #software to take screenshot and arrows
#Download docker script and install
curl -fsSL https://get.docker.com -o get-docker.sh
chmod +x get-docker.sh
./get-docker.sh