From 50a2a8bb43b3248763f19cc4624ad37cff068f1d Mon Sep 17 00:00:00 2001 From: fluesvamp <105884371+fluesvamp@users.noreply.github.com> Date: Tue, 2 Aug 2022 18:29:58 -0500 Subject: Update docs INSTALL BINARY to mention mariadb tar file instead --- Docs/INSTALL-BINARY | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Docs') diff --git a/Docs/INSTALL-BINARY b/Docs/INSTALL-BINARY index 7ff33c7051e..e2689723656 100644 --- a/Docs/INSTALL-BINARY +++ b/Docs/INSTALL-BINARY @@ -41,8 +41,8 @@ also applies. shell> groupadd mysql shell> useradd -g mysql mysql shell> cd /usr/local -shell> gunzip < /path/to/mysql-VERSION-OS.tar.gz | tar xvf - -shell> ln -s full-path-to-mysql-VERSION-OS mysql +shell> gunzip < /path/to/mariadb-VERSION-OS.tar.gz | tar xvf - +shell> ln -s full-path-to-mariadb-VERSION-OS mysql shell> cd mysql shell> chown -R mysql . shell> chgrp -R mysql . @@ -86,16 +86,16 @@ shell> cd /usr/local 4. Unpack the distribution, which creates the installation directory. Then create a symbolic link to that directory: -shell> gunzip < /path/to/mysql-VERSION-OS.tar.gz | tar xvf - -shell> ln -s full-path-to-mysql-VERSION-OS mysql - The tar command creates a directory named mysql-VERSION-OS. +shell> gunzip < /path/to/mariadb-VERSION-OS.tar.gz | tar xvf - +shell> ln -s full-path-to-mariadb-VERSION-OS mysql + The tar command creates a directory named mariadb-VERSION-OS. The ln command makes a symbolic link to that directory. This lets you refer more easily to the installation directory as /usr/local/mysql. With GNU tar, no separate invocation of gunzip is necessary. You can replace the first line with the following alternative command to uncompress and extract the distribution: -shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz +shell> tar zxvf /path/to/mariadb-VERSION-OS.tar.gz 5. Change location into the installation directory: shell> cd mysql -- cgit v1.2.1