mirror of
https://pagure.io/fedora-docs/quick-docs.git
synced 2024-11-25 13:44:51 +00:00
25 lines
485 B
Text
25 lines
485 B
Text
|
= Downloading the Source Code
|
||
|
|
||
|
. Navigate to the directory where you want to save the source:
|
||
|
+
|
||
|
[bash,subs="attributes+"]
|
||
|
----
|
||
|
cd <directory_name>
|
||
|
----
|
||
|
+
|
||
|
. Download the TAR file containing the source code you want to install from:
|
||
|
+
|
||
|
[bash,subs="attributes+"]
|
||
|
----
|
||
|
wget <source_location_URL>
|
||
|
----
|
||
|
+
|
||
|
. Extract the tarball file contents to the current working directory:
|
||
|
+
|
||
|
[bash,subs="attributes+"]
|
||
|
----
|
||
|
tar -xf <source_tar_filename>
|
||
|
----
|
||
|
|
||
|
You can perform the same actions using the GUI.
|