From 774ba19228d9f751ee9e0fffb845c5ee6f6f0f41 Mon Sep 17 00:00:00 2001 From: Rafid Bin Mostofa Date: Sun, 11 Sep 2022 03:41:47 +0600 Subject: [PATCH] Added a few echos before installing stuffs --- scripts/gcc_10.sh | 1 + scripts/openssh_server.sh | 2 ++ scripts/python3.10.sh | 2 ++ 3 files changed, 5 insertions(+) diff --git a/scripts/gcc_10.sh b/scripts/gcc_10.sh index 427a9e7..773c85e 100644 --- a/scripts/gcc_10.sh +++ b/scripts/gcc_10.sh @@ -1,3 +1,4 @@ echo "Installing GCC 10, G++ 10..." + apt install -y gcc-10 g++-10 update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 80 --slave /usr/bin/g++ g++ /usr/bin/g++-10 --slave /usr/bin/gcov gcov /usr/bin/gcov-10 diff --git a/scripts/openssh_server.sh b/scripts/openssh_server.sh index b6c3ff5..ea5d73c 100644 --- a/scripts/openssh_server.sh +++ b/scripts/openssh_server.sh @@ -1 +1,3 @@ +echo "Installing openssh-server..." + apt install -y openssh-server diff --git a/scripts/python3.10.sh b/scripts/python3.10.sh index 17c127b..396484c 100644 --- a/scripts/python3.10.sh +++ b/scripts/python3.10.sh @@ -1,3 +1,5 @@ +echo "Installing Python 3.10..." + apt install -y software-properties-common add-apt-repository -y ppa:deadsnakes/ppa apt install -y python3.10