From 820bf36fdf5ff1ed8041584a22a44f2c4f4f0312 Mon Sep 17 00:00:00 2001 From: "Ankur Sinha (Ankur Sinha Gmail)" Date: Sun, 10 Mar 2019 11:47:50 +0000 Subject: [PATCH] Remove "installing an rpm" doc This gives info about installing packages using the `rpm` command and is extremely bad advice. End users should be using the standard package managers (DNF) to install packages and not resort to `rpm` unless as a last resort. So, this documentation does not fit into user-end quickdocs. Fixes #102 --- modules/ROOT/nav.adoc | 1 - modules/ROOT/pages/proc_installing-RPM.adoc | 27 --------------------- 2 files changed, 28 deletions(-) delete mode 100644 modules/ROOT/pages/proc_installing-RPM.adoc diff --git a/modules/ROOT/nav.adoc b/modules/ROOT/nav.adoc index 5446f94..14d46ed 100644 --- a/modules/ROOT/nav.adoc +++ b/modules/ROOT/nav.adoc @@ -40,7 +40,6 @@ ** xref:creating-a-disk-partition-in-linux.adoc[Creating disk partitions] ** xref:bumblebee.adoc[NVIDIA Optimus Bumblebee] ** xref:reset-root-password.adoc[Resetting a root password] -** xref:proc_installing-RPM.adoc[Installing an RPM File] ** xref:using-aide.adoc[Checking file integrity with AIDE] ** xref:getting-started-with-apache-http-server.adoc[Getting started with Apache HTTP Server] diff --git a/modules/ROOT/pages/proc_installing-RPM.adoc b/modules/ROOT/pages/proc_installing-RPM.adoc deleted file mode 100644 index f751eba..0000000 --- a/modules/ROOT/pages/proc_installing-RPM.adoc +++ /dev/null @@ -1,27 +0,0 @@ -[id='proc_installing-an-RPM-file'] -= Installing an RPM File - -include::{partialsdir}/unreviewed-message.adoc[] - -This procedure shows you how to install an RPM file after you have downloaded the file to your desktop. An RPM file contains the required installation packages for a software. - -._Prerequisites_ - -* You must have administrative permission to install new RPM files on your system. Either root password or sudo access is required. - -._Procedure_ - -. Open a terminal. -. Change your working directory to the location of the RPM file. If you have downloaded the RPM file to the `Downloads` directory, enter: -+ -[subs=quotes] ----- -$ cd ~/Downloads ----- -+ -. Install the RPM file: -+ -[subs=quotes] ----- -$ sudo rpm -i NAME_OF_RPM.rpm -----