This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
echo "==> Étape 0 : Mise à jour actuelle de Ubuntu" | |
sudo apt update && sudo apt upgrade -y && sudo apt dist-upgrade -y | |
sudo apt autoremove --purge -y | |
sudo apt install update-manager-core -y | |
echo "==> Étape 1 : Passage de Ubuntu 18.04 vers 20.04" |