@@ -47,7 +47,7 @@ or L<Strawberry Perl|http://www.strawberryperl.com>.
47
47
You need not install the actual MySQL database server, the
48
48
client files and the development files are sufficient. For
49
49
example, Fedora Linux distribution comes with RPM files
50
- (using YUM ) B<mysql> and B<mysql-server> (use "yum search"
50
+ (using DNF ) B<mysql> and B<mysql-server> (use "dnf search"
51
51
to find exact package names). These are sufficient, if the MySQL
52
52
server is located on a foreign machine. You may also create client
53
53
files by compiling from the MySQL source distribution and using
@@ -134,7 +134,9 @@ CentOS, and Fedora come with MySQL and DBD::mysql.
134
134
135
135
Use the following command to install DBD::mysql:
136
136
137
- yum install "perl(DBD::mysql)"
137
+ dnf install "perl(DBD::mysql)"
138
+
139
+ Previous name of installation command was C<yum>.
138
140
139
141
140
142
=head2 Debian and Ubuntu
@@ -208,8 +210,8 @@ will work just as well.
208
210
In this example we install and start a local server for running the
209
211
tests against.
210
212
211
- yum -y install make gcc mariadb-devel mariadb-libs mariadb-server
212
- yum -y install "perl(Test::Deep)" "perl(Test::More)"
213
+ dnf -y install make gcc mariadb-devel mariadb-libs mariadb-server
214
+ dnf -y install "perl(Test::Deep)" "perl(Test::More)"
213
215
systemctl start mariadb.service
214
216
215
217
0 commit comments