-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_core.sh
executable file
·44 lines (33 loc) · 1.05 KB
/
install_core.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
#!/bin/bash
# script for installing several utilities
### UPDATE EXISTING TOOLS
sudo apt update -y
sudo apt upgrade -y
### FISH SHELL
sudo apt-add-repository ppa:fish-shell/release-3 -y
sudo apt update -y
sudo apt install fish -y
### TEXT EDITOR
sudo apt-get install vim -y
sudo apt-get install neovim -y
### BUILDING TOOLS
sudo apt-get install cmake -y
### FILE PROCESSING
sudo apt-get install curl -y
sudo apt-get install unzip -y
sudo apt-get install pdfunite -y
sudo apt-get install hdf5-tools h5utils libhdf5-serial-dev -y
### PARALLEL PROCESSING
sudo apt install openmpi-bin openmpi-dev openmpi-common openmpi-doc libopenmpi-dev -y
### ENCRYPTION
sudo apt-get install openssl -y
sudo apt-get install libssl-dev -y
### DOCUMENTATION GENERATION
sudo apt-get install doxygen -y
### SYSTEM STATS
sudo apt-get install lm-sensors -y
sudo apt-get install screenfetch -y
### SYMBOLIC LINKS
# link all dotfiles to the home directory using symbolic links (symlinks)
# instructions from: https://www.jakewiesler.com/blog/managing-dotfiles
sudo apt-get install stow -y