Files
linux-install-helper/Ubuntu/package_install.sh

23 lines
434 B
Bash
Raw Normal View History

2019-08-15 21:53:08 +02:00
#!/bin/bash
# Run sys update and upgrade
sudo apt update && sudo apt upgrade
# Install git
sudo apt install git
# Install gcc & g++ & cmake
sudo apt install gcc g++ cmake
# Install python3 pip and ipython
sudo apt install python3 ipython3 python3-pip
# Install zsh
2019-08-17 23:17:19 +02:00
sudo apt install zsh
# Install smbclient
2019-08-17 23:26:31 +02:00
sudo apt install smbclient
# Install nfs helper and cifs helper
sudo apt install nfs-common
sudo apt install cifs-utils