File: proc_installing.adoc

package info (click to toggle)
golang-github-crc-org-crc 2.34.0%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,548 kB
  • sloc: sh: 398; makefile: 326; javascript: 40
file content (47 lines) | stat: -rw-r--r-- 1,296 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
= Installing {prod}

{prod} is available as a portable executable for {rhel}.
On {msw} and {mac}, {prod} is available using a guided installer.

.Prerequisites
* Your host machine must meet the minimum system requirements.
For more information, see link:{crc-gsg-url}#minimum-system-requirements_gsg[Minimum system requirements].

.Procedure
. Download the link:{crc-download-url}[latest release of {prod}] for your platform.

. On {msw}, extract the contents of the archive.

. On {mac} or {msw}, run the guided installer and follow the instructions.
+
[NOTE]
====
On {msw}, you must install {prod} to your local [filename]*_C:\_* drive.
You cannot run {prod} from a network drive.
====
+
On {rhel}, assuming the archive is in the [filename]*_~/Downloads_* directory, follow these steps:
+
.. Extract the contents of the archive:
+
[subs="attributes"]
----
$ cd ~/Downloads
$ tar xvf crc-linux-amd64.tar.xz
----
+
.. Create the [filename]*_~/bin_* directory if it does not exist and copy the [command]`{bin}` executable to it:
+
[subs="attributes"]
----
$ mkdir -p ~/bin
$ cp ~/Downloads/crc-linux-*-amd64/{bin} ~/bin
----
+
.. Add the [filename]*_~/bin_* directory to your `$PATH`:
+
[subs="attributes"]
----
$ export PATH=$PATH:$HOME/bin
$ echo 'export PATH=$PATH:$HOME/bin' >> ~/.bashrc
----