-
Notifications
You must be signed in to change notification settings - Fork 0
/
after_install_ubuntu_20.04.03.sh
44 lines (36 loc) · 1.08 KB
/
after_install_ubuntu_20.04.03.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
set -e
# Remove old packages and make cleaning of the system.
sudo apt-get update
sudo apt-get autoremove
sudo apt-get autoclean
sudo ubuntu-drivers autoinstall
# Install network tools (08/02/20239)
sudo apt-get install -y net-tools
sudo apt-get install -y openssh-server
sudo systemctl enable ssh --now
sudo systemctl start ssh
#sudo apt-get install -y wireshark-qt
#sudo apt-get install -y hping3
#sudo apt-get install -y fping
# Install common apps
sudo apt-get install -y mlocate
sudo apt-get install -y locate
sudo apt -y install -y curl
sudo apt -y install -y git
sudo apt-get install -y ffmpeg
sudo apt-get install -y dialog
# Install essential tools that are not part of package.
sudo apt-get install -y build-essential
sudo apt-get install -y cmake
sudo apt-get install -y libgtk2.0-dev
sudo apt-get install -y libusb-1.0
sudo apt install -y libssl-dev
sudo apt install -y libffi-dev
# C/C++
sudo apt install -y gcc
# Python environments
sudo apt-get install -y python3-dev
sudo apt-get install -y python3-venv
sudo apt-get install -y python3-pip
sudo apt-get install -y python-tk