2022-05-21 02:30:05 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-12-20 08:36:00 +00:00
|
|
|
if (grep -q Ubuntu <(lsb_release -i)); then
|
2022-05-21 02:30:05 +02:00
|
|
|
sudo apt update
|
|
|
|
sudo apt upgrade -y
|
2024-12-20 08:36:00 +00:00
|
|
|
|
2022-05-21 02:30:05 +02:00
|
|
|
sudo apt install -y coreutils grep less tar tree
|
|
|
|
sudo apt install -y man manpages-fr manpages-fr-extra
|
|
|
|
sudo apt install -y bash zsh fish
|
|
|
|
sudo apt install -y screen tmux
|
|
|
|
sudo apt install -y openssh mosh
|
|
|
|
sudo apt install -y vim git #tig
|
|
|
|
sudo apt install -y wget curl lftp fping mtr socat
|
|
|
|
fi
|