@@ -41,8 +41,8 @@ also applies.
41
41
shell> groupadd mysql
42
42
shell> useradd -g mysql mysql
43
43
shell> cd /usr/local
44
- shell> gunzip < /path/to/mysql -VERSION-OS.tar.gz | tar xvf -
45
- shell> ln -s full-path-to-mysql -VERSION-OS mysql
44
+ shell> gunzip < /path/to/mariadb -VERSION-OS.tar.gz | tar xvf -
45
+ shell> ln -s full-path-to-mariadb -VERSION-OS mysql
46
46
shell> cd mysql
47
47
shell> chown -R mysql .
48
48
shell> chgrp -R mysql .
@@ -86,16 +86,16 @@ shell> cd /usr/local
86
86
87
87
4. Unpack the distribution, which creates the installation
88
88
directory. Then create a symbolic link to that directory:
89
- shell> gunzip < /path/to/mysql -VERSION-OS.tar.gz | tar xvf -
90
- shell> ln -s full-path-to-mysql -VERSION-OS mysql
91
- The tar command creates a directory named mysql -VERSION-OS.
89
+ shell> gunzip < /path/to/mariadb -VERSION-OS.tar.gz | tar xvf -
90
+ shell> ln -s full-path-to-mariadb -VERSION-OS mysql
91
+ The tar command creates a directory named mariadb -VERSION-OS.
92
92
The ln command makes a symbolic link to that directory. This
93
93
lets you refer more easily to the installation directory as
94
94
/usr/local/mysql.
95
95
With GNU tar, no separate invocation of gunzip is necessary.
96
96
You can replace the first line with the following alternative
97
97
command to uncompress and extract the distribution:
98
- shell> tar zxvf /path/to/mysql -VERSION-OS.tar.gz
98
+ shell> tar zxvf /path/to/mariadb -VERSION-OS.tar.gz
99
99
100
100
5. Change location into the installation directory:
101
101
shell> cd mysql
0 commit comments