diff --git a/Install-Tracks-on-Ubuntu-20.10.md b/Install-Tracks-on-Ubuntu-20.10.md
index e687538..3317b54 100644
--- a/Install-Tracks-on-Ubuntu-20.10.md
+++ b/Install-Tracks-on-Ubuntu-20.10.md
@@ -33,12 +33,14 @@
>apt install mysql-server
>apt install mysql-client
+>systemctl enable apache2.service
>systemctl enable mysql
>systemctl start mysql.service
-
The last two lines set to automatically start MySQL when you boot and starts MySQL. For more information see [[MySQL tips]]
+The last three lines set to automatically start Apache web server and MySQL database server when you boot and starts the MySQL (Apache is still off). For more information see [[Apache tips]] and [[MySQL tips]]
Tracks requires Ruby 2.5 or greater. Most of the testing is done with 2.6.
+Just for informative purpose I noted down also the other dependent packages that are also automatically installed. This is handy to track problems due to
>apt install unzip
>apt install zlib1g-dev
@@ -107,16 +109,12 @@
# if you use MySQL database
->
-apt install libmysqld-dev->
apt install libdbd-mysql-ruby->apt install libmysqlclient-dev
#if you use Maria database
->apt install libmariadbd-dev # for de server, d:demon
+>apt install libmariadbd-dev # for de server, the last letter d means demon
>apt install libmariadb-dev # for the client
------------