-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·110 lines (68 loc) · 2.16 KB
/
install.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
sudo apt update && sudo apt upgrade
sudo apt-get install -y vim-gtk
sudo apt install tmux
sudo snap install htop
sudo apt install curl
sudo apt install vlc
sudo apt install tlp tlp-rdw
sudo snap install tree
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
vim +PluginInstall +qall
# tor
sudo apt install torbrowser-launcher
# telegram
sudo add-apt-repository ppa:atareao/telegram
sudo apt-get update
sudo apt-get install telegram
# vk messenger
# skype
sudo snap install skype --classic
# chrome
sudo apt install gdebi-core
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo gdebi google-chrome-stable_current_amd64.deb
# dropbox
sudo apt install nautilus-dropbox
# slack
sudo snap install slack --classic
# calc
sudo apt install apcalc
# neon wallet
wget https://github.com/CityOfZion/neon-wallet/releases/download/0.2.5/Neon-0.2.5_amd64.Linux.deb
sudo gdebi Neon-0.2.5_amd64.Linux.deb
# c++
sudo apt install g++
sudo apt-get install python-dev python3-dev
sudo apt-get install python3-tk python3.6-tk
sudo apt-get install libevent-dev
sudo apt-get install build-essential
# https://wiki.ubuntu.com/ClipboardPersistence
sudo apt-get install parcellite
sudo apt install python-pip
sudo -H pip install virtualenvwrapper
sudo apt install postgresql-client-common
sudo apt install postgresql-client-10
pip install -U pgcli
sudo apt install gnome-tweak-tool
sudo apt install ubuntu-restricted-extras
# docker
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt-get update
sudo apt-get install docker-ce
# add user to docker group
sudo groupadd docker
udo gpasswd -a $USER docker
newgrp docker
# docker-compose
sudo curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose