From 43996b6f621bdaed36ef05a8aa00f3835ed154cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EF=BB=BFghost-from-the-past?= Date: Wed, 14 Apr 2021 13:19:00 +0200 Subject: [PATCH] Updated Install Tracks on Ubuntu 20.10 (markdown) --- Install-Tracks-on-Ubuntu-20.10.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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]]

Install Ruby


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

------------