-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.sh
executable file
·439 lines (384 loc) · 14.8 KB
/
setup.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
#!/usr/bin/env bash
# TODO List:
# [ ] MAKE RE-RUNNABLE! If the desired configs already exist, don't append them again.
# [ ] Configure proxy if set
# [ ] Configure vscode
# [ ] Raspberry Pi-specific setup
# [ ] Configure Docker
# [ ] Load script configuration from a default named file, and/or file specified as argument
# [ ] Read packages to install from a file
# [ ] Publish releases with zipped versions of each OS's folders.
# So all I have to do is download the release .zip/.tar.gz file, uncompress it, and run the requisite install script (.ps1/.sh/.whatever).
# The releases zip: base files from top level, platform folders.
# [ ] Build process prepends base_bashrc to all platform-specific bashrc files?
# [ ] Make apps that are installed configurable via a JSON file or something.
# Features
# Detect Ubuntu
# Detect pacman (Arch, MSYS)
# TODO: cleanup the output and messages
# TODO: JSON/txt file with apps?
# TODO: only install common programs if they're not already installed
# ssh, locate, zip, unzip, curl, wget, nano, grep, sed
# Graphical apps:
# Browsers, DB Browser for SQL, Remmina (RDP client)
# Private Internet Access (PIA), KeePass, Steam, Spotify, VLC player, TexWorks/TexStudio, Dropbox
# VirtualBox, VMware, Discord
# Settings + Flags + Themes + Plugins/Extensions for graphical apps
# Chrome, Firefox, PyCharm, VScode, Gedit
# CLI/etc apps:
# LaTeX
# Vagrant
# lazydocker
# pipenv
# pyenv
# TODO:
# ~/.curlrc
# ~/.wgetrc
# Terminator config (Example: https://gist.github.com/starenka/1709840)
# pyenv (not to be confused with pipenv)
# pyenv-virtualenv and/or pyenv-virtualenvwrapper
# virtualenvwrapper
# Set sudo timeout to none (if in a VM or WSL)
# Ubuntu
# Configure keyboard shortcuts (WIN+E, WIN+T, etc.)
# Set default editor
# Disable screen dim and sleep (if in a VM)
# Auto-hide dock
# Install Gnome Tweaks (via Snap?)
# Install wallpapers?
# Source: https://unix.stackexchange.com/a/41735
os_type() {
case $(uname) in
Linux )
command -v cmd.exe > /dev/null && { WSL=1; echo "Windows Subsystem for Linux detected"; }
command -v apt-get > /dev/null && { DEBIAN=1; echo "apt-get detected, probably Debian"; return; }
command -v dnf > /dev/null && { FEDORA=1; echo "dnf detected, definitely Fedora"; return; }
command -v yum > /dev/null && { RHEL=1; echo "yum detected, probably RHEL or CentOS"; return; }
command -v zypper > /dev/null && { SUSE=1; echo "zypper detected, probably OpenSUSE"; return; }
command -v pkg > /dev/null && { FREEBSD=1; echo "pkg detected, probably FreeBSD"; return; }
;;
Darwin )
DARWIN=1
;;
* )
;;
esac
}
# Install Visual Studio Code (https://code.visualstudio.com/docs/setup/linux)
install_vscode() {
if [ "$(command -v snap > /dev/null)" -eq 0 ]; then
echo "Installing VScode via Snap..."
sudo snap install code --classic
elif [ $DEBIAN ] ; then
echo "Installing VScode via the Apt package..."
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
sudo apt-get update -y -qq
sudo apt-get install -y -qq code # Change this to "code-insiders" if you like to live on the bleeding edge
elif [ "$(command -v rpm > /dev/null)" -eq 0 ] ; then
echo "Installing VScode via the RPM package..."
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
if [ ! $SUSE ] ; then
sudo sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/vscode.repo'
else
sudo sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ntype=rpm-md\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/zypp/repos.d/vscode.repo'
fi
if [ $SUSE ] ; then
sudo zypper -n -q -i refresh
sudo zypper -n -q -i install -l code
elif [ $FEDORA ] ; then
dnf check-update -y -qq
sudo dnf install -y -qq code
else
yum check-update -y -qq
sudo yum install -y -qq code
fi
else
echo "Failed to install VScode: unknown platform" && return
fi
echo "Finished installing VScode"
}
install_package() {
echo "Installing package $i..."
if [ $DEBIAN ] ; then
sudo apt-get install -y -qq "$1"
elif [ $FEDORA ] ; then
sudo dnf install -y -qq "$1"
elif [ $RHEL ] ; then
sudo yum install -y -qq "$1"
elif [ $SUSE ] ; then
sudo zypper install -n -q -i install --auto-agree-with-licenses --force-resolution "$1"
elif [ $FREEBSD ] ; then
sudo pkg install "$i"
fi
}
uninstall_package() {
echo "Uninstalling package $i..."
if [ $DEBIAN ] ; then
sudo apt-get remove -y -qq "$1"
elif [ $FEDORA ] ; then
sudo dnf remove -y -qq "$1"
elif [ $RHEL ] ; then
sudo yum remove -y -qq "$1"
elif [ $SUSE ] ; then
sudo zypper -n -q -i rm "$1"
elif [ $FREEBSD ] ; then
sudo pkg delete "$i"
fi
}
useful_tools=(
'tcpdump' # Capture network traffic
'tshark' # Command-line Wireshark
'snmp' # snmpwalk and friends
'snmp-mibs-downloader' # SNMP MIBS
'nmap' # Network mapping/scanning
'ipcalc' # IP address/subnet calculator
'mtr' # Network diagnostic tool, basically an advanced traceroute
'traceroute' # The traditional traceroute tool
'iftop' # top for network interfaces, gives you nice network statistics and other infos
'iptraf' # Interactive Colorful IP LAN Monitor
'nethogs' # Net top tool grouping bandwidth per process
'whois' # Who are you? (Yeah, this isn't installed by default...)
'arping' # ARP ping
'cloc' # Count lines of code
'nano' # Life's not complete without Nano
'htop' # Coloured and improved version of top
'atop' # Another resource monitoring tool
'glances' # Graphical resource monitoring tool
'ncdu' # Graphical view of directory sizes in terminal, using NCurses
'direnv' # Shell environment switcher (https://direnv.net/)
'locate'
'xclip' # Pipes input to the clipboard
'unzip'
'zip'
'lsof'
'strace' # Useful for debugging
'dos2unix' # Convert /r/n (Windows) file endings to /n (Linux)
'tree'
'git' # The infamous version control system
'git-lfs' # Git Large File System (LFS)
'make'
'wget'
'curl'
'grep' # Text search
'sed' # Stream editor
'ssh' # Debian on WSL doesn't include SSH by default
'cowsay' # Moooo
'neofetch' # Nice pretty CLI output of system information
'jq' # Command line JSON tool (https://stedolan.github.io/jq/)
'ripgrep' # Recursive grep/find thing (https://github.com/BurntSushi/ripgrep)
'cppcheck' # C++ static code analyzer (https://github.com/danmar/cppcheck)
)
gui_tools=(
'wireshark' # The penultimate network analysis toolkit
'wireshark-doc' # Documentation for the above
'zenmap'
'terminator'
)
apt_packages=(
'python3-pip'
'python-pip'
'build-essential'
'shellcheck' # Bash static analyzer
'net-tools' # ipconfig, arp, etc.
'geoip-bin'
'gddrescue' # ddrescue
'apt-transport-https'
'ca-certificates'
'software-properties-common' # Needed for Docker
'golang'
)
# Script settings
TZ="Amercia/Denver" # Pro tip: if you don't live in Arizona, don't use America/Phoenix. There be dragons.
INSTALL_CONFIGS=false
# Things to install
INSTALL_PY3_PACKAGES=false
INSTALL_PY2_PACKAGES=false
INSTALL_VSCODE=false
INSTALL_DOCKER=false
INSTALL_PYCHARM=false
# Profile the OS
os_type
if [ $DARWIN ]; then
echo "I don't use OSX, sorry. If you put stuff here, please submit a PR or something."
elif [ $DEBIAN ]; then
echo "Running setup for Debian or some impure Debian-derivative, like Ubuntu or Kali. "
# Update package cache, upgrade packages, and cleanup
echo "Refreshing apt package cache and updating existing packages..."
sudo apt-get update -y -qq
sudo apt-get upgrade -y -qq
sudo apt-get dist-upgrade -y -qq
sudo apt-get autoremove -y -qq
echo "Installing apt-specific packages..."
for i in "${apt_packages[@]}"; do
sudo apt-get install -y -qq "$i"
done
# TODO: generalize this and just swap out the package manager? (the 'p' thing I saw maybe?)
echo "Installing various useful tools..."
for i in "${useful_tools[@]}"; do
sudo apt-get install -y -qq "$i"
done
if [ ! $WSL ]; then
echo "Installing graphical tools..."
for i in "${gui_tools[@]}"; do
sudo apt-get install -y -qq "$i"
done
sudo apt-get install -y -qq gedit
fi
sudo apt-get -y -qq clean
elif [ $RHEL ]; then
echo "Running setup for RHEL/CentOS. I'd put something witty here, but that'd be against corporate policy."
# Update package list and installed packages
echo "Refreshing yum package cache and updating existing packages..."
yum check-update -y -qq
sudo yum update -y -qq
# Add EPEL package repository
sudo yum install -y -qq epel-release
# Install packages
sudo yum install -y -qq ShellCheck
sudo yum install -y -qq geoip # geoiplookup
# TODO: this will probably fail on many of these
echo "Installing various useful tools..."
for i in "${useful_tools[@]}"; do
sudo yum install -y -qq "$i"
done
if [ ! $WSL ]; then
echo "Installing graphical tools..."
for i in "${gui_tools[@]}"; do
sudo yum install -y -qq "$i"
done
fi
elif [ $FEDORA ]; then
echo "Running setup for Fedora, the OS we all wish we could run if everyone wasn't Debian-obscessed."
echo "Refreshing dnf package cache and updating existing packages..."
dnf check-update -y -qq
sudo dnf upgrade -y -qq
# Install packages
sudo dnf install -y -qq ShellCheck
sudo dnf install -y -qq geoip
# TODO: this will probably fail on many of these
echo "Installing various useful tools..."
for i in "${useful_tools[@]}"; do
sudo dnf install -y -qq "$i"
done
if [ ! $WSL ]; then
echo "Installing graphical tools..."
for i in "${gui_tools[@]}"; do
sudo dnf install -y -qq "$i"
done
fi
elif [ $SUSE ]; then
echo "Running setup for OpenSUSE. Let's do science! That's what OpenSUSE is for, right? ...right?"
## NOTE: I don't use this yet, but might, so putting anything useful here for now
# Refresh package cache and update packages
echo "Refreshing zypper package cache and updating existing packages..."
sudo zypper --non-interactive --quiet --ignore-unknown refresh
sudo zypper -n -q -i update
sudo zypper -n -q -i dist-upgrade
# Install packages
sudo zypper -n -q -i install --auto-agree-with-licenses --recommends --force-resolution ShellCheck
sudo zypper -n -i install -l --recommends --force-resolution python3
# TODO: this will probably fail on many of these
echo "Installing various useful tools..."
for i in "${useful_tools[@]}"; do
sudo zypper -n -q -i install -l --recommends --force-resolution "$i"
done
if [ ! $WSL ]; then
echo "Installing graphical tools..."
for i in "${gui_tools[@]}"; do
sudo zypper -n -q -i install -l --recommends --force-resolution "$i"
done
fi
sudo zypper -n -q -i clean
elif [ $FREEBSD ]; then
echo "Running setup for FreeBSD. This is probably a firewall or router. You poor soul."
## NOTE: I don't use this currently, but putting useful things here for now
# Update package lists, upgrade installed packages, and remove unneeded packages
sudo pkg update
sudo pkg upgrade
# TODO: this will probably fail on many of these
echo "Installing various useful tools..."
for i in "${useful_tools[@]}"; do
sudo pkg install "$i"
done
if [ ! $WSL ]; then
echo "Installing graphical tools..."
for i in "${gui_tools[@]}"; do
sudo pkg install "$i"
done
fi
sudo pkg autoremove
else
echo "ERROR: UNKNOWN PLATFORM" && exit 1
fi
echo "Configuring Timezone..."
sudo timedatectl set-timezone $TZ > /dev/null
if [ $? -eq 1 ] ; then
echo "(WARNING) Failed to configure timezone: timedatectl failed to run"
fi
# Create .ssh directory if it doesn't exist
echo "Creating .ssh directory..."
mkdir -pv ~/.ssh/
if [ $WSL ] ; then
export WSL
WINUSER=$( whoami.exe | cut -d '\' -f2 | tr -d '[:space:]')
export WINUSER
if [ -d "/mnt/c" ] ; then
mkdir -pv "/mnt/c/Users/${WINUSER}/.ssh/"
elif [ -d "/c" ] ; then
mkdir -pv "/c/Users/${WINUSER}/.ssh/"
fi
fi
# Install Python packages
if [ "$INSTALL_PY3_PACKAGES" = true ] ; then
echo "Installing Python 3 packages..."
if ! python3 -m pip; then
echo "Python 3 pip isn't installed. Installing..."
python3 -m ensurepip
fi
while read -r py_package; do
python3 -m pip install --user "$py_package"
done < python-packages.txt
fi
if [ "$INSTALL_PY2_PACKAGES" = true ] ; then
echo "Installing Python 2 packages..."
if ! python -m pip; then
echo "Python 2 pip isn't installed. Installing..."
python -m ensurepip
fi
while read -r py_package; do
python -m pip install --user "$py_package"
done < python-packages.txt
fi
# Install Docker
if [ "$INSTALL_DOCKER" = true ] && [ ! $WSL ] ; then
echo "Installing Docker..."
# This script will install any necessary dependencies for the platform
# On Debian, it will install it via Apt
curl -fsSL get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo usermod -aG docker "$USER"
rm -f "get-docker.sh"
fi
# Update snaps
if [ "$(command -v snap > /dev/null)" -eq 0 ]; then
echo "Updating Snaps..."
sudo snap refresh
fi
# Install Visual Studio Code. Skip if we're in WSL.
if [ "$INSTALL_VSCODE" = true ] && [ ! $WSL ] && [ "$(command -v code > /dev/null)" -eq 1 ] ; then
install_vscode
fi
# Install PyCharm via Snap
if [ "$INSTALL_PYCHARM" = true ] && [ ! $WSL ] && [ "$(command -v snap > /dev/null)" -eq 0 ]; then
sudo snap install pycharm-community --classic
fi
# Update the locate database
echo "Updating the 'locate' database..."
sudo updatedb || echo "Failed to update the 'locate' database"
# Install configs
if [ "$INSTALL_CONFIGS" = true ] ; then
echo "Installing custom configurations (.bashrc, .gitconfig, etc.) ..."
. ./configure.sh
fi