From 38fdf46ae77713ed489e39906c8a075c7b3bcd09 Mon Sep 17 00:00:00 2001 From: purifyyourhome <44551716+purifyyourhome@users.noreply.github.com> Date: Tue, 18 Dec 2018 17:59:01 -0500 Subject: [PATCH] Added more Linux distro names and install commands (#31271) Made mention that the command for Ubuntu also works for Debian, Raspbian and LinuxMint, the command for CentOS works for Red Hat Enterprise Linux, and that the command for Arch works for Manjaro. Added section for openSUSE/SLES/SLED and Fedora. --- guide/english/apache/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/apache/index.md b/guide/english/apache/index.md index 77da01c5dc..52b455aa16 100644 --- a/guide/english/apache/index.md +++ b/guide/english/apache/index.md @@ -13,7 +13,7 @@ Apache runs on 67% of all web servers in the world. It is fast, reliable, and se ## Installation -#### On Ubuntu/Debian +#### On Debian, Ubuntu, Raspbian, and LinuxMint ``` sudo aptitude install apache2 ``` @@ -23,7 +23,7 @@ sudo aptitude install apache2 sudo dnf install httpd ``` -#### On CentOS +#### On CentOS and Red Hat Enterprise Linux (RHEL) ``` sudo yum install httpd ````