-
Notifications
You must be signed in to change notification settings - Fork 34
/
ubuntu_packages.sh
executable file
·31 lines (30 loc) · 1.11 KB
/
ubuntu_packages.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
# install all packages needed
# easier to maintain the list if separated out as
# a list instead of one long command
sudo apt-get install -y build-essential
sudo apt-get install -y checkinstall
sudo apt-get install -y curl
sudo apt-get install -y gcc
sudo apt-get install -y git-core
sudo apt-get install -y install
sudo apt-get install -y libc6-dev
sudo apt-get install -y libcurl4-openssl-dev
sudo apt-get install -y libicu-dev
sudo apt-get install -y libmysql++-dev
sudo apt-get install -y libpcre3-dev
sudo apt-get install -y libsqlite3-dev
sudo apt-get install -y libssl-dev
sudo apt-get install -y libxml2-dev
sudo apt-get install -y libxslt-dev
sudo apt-get install -y make
sudo apt-get install -y nano
sudo apt-get install -y python-dev
sudo apt-get install -y python-pip
sudo apt-get install -y redis-server
sudo apt-get install -y sqlite3
sudo apt-get install -y wget
sudo apt-get install -y zlib1g-dev
# configure git global options to prevent problems
# with gitlabhq user pushing repos back to gitolite
git config --global user.email "[email protected]"
git config --global user.name "GitLabHQ Admin User"