9 lines
170 B
Bash
9 lines
170 B
Bash
#!/bin/bash
|
|
|
|
#Aktualizacja systemu
|
|
sudo apt update && sudo apt upgrade -y
|
|
|
|
#Instalacja Apache i podstawowego oprogramowania
|
|
sudo apt -y install mc unzip tree bzip2 htop
|
|
|