Clean up orphaned partials after #108

This commit is contained in:
Petr Bokoc 2019-03-18 17:40:26 +01:00
parent 3af0c75a49
commit 3cc13bcdf8
3 changed files with 0 additions and 48 deletions

View file

@ -1,18 +0,0 @@
[[compiling-your-application-from-source]]
= Compiling Your Application
NOTE: It is preferable to use DNF to using source installattion. DNF can track what packages you have installed on your system. It facilitates updates and makes it easier to completely remove your files from your system
. Navigate to the directory containing your source:
+
[subs="+quotes"]
----
cd _<your_source_dir>_
----
+
. Run the following command to compile and install your application:
+
[subs="+quotes"]
----
./configure && make && make install
----

View file

@ -1,22 +0,0 @@
= Downloading the Source Code
. Navigate to the directory where you want to save the source:
+
[subs="+quotes"]
----
cd _<directory_name>_
----
+
. Download the TAR file containing the source code you want to install from:
+
[subs="+quotes"]
----
wget _<source_location_URL>_
----
+
. Extract the tarball file contents to the current working directory:
+
[subs="+quotes"]
----
tar -xf _<source_tar_filename>_
----

View file

@ -1,8 +0,0 @@
= Setting up a Development and Compiling Environment
Install packages form the _C Development Tools and Libraries_ group:
[subs="+quotes"]
----
# dnf group install @c-development
----