diff options
author | Cem Keylan <cem@ckyln.com> | 2020-09-14 12:25:31 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-09-14 12:25:31 +0300 |
commit | f00da5b3eef7ad309bcd3381a02b7fbf71e90b76 (patch) | |
tree | 16abe75e89868b33ae854fffd17a451bb0c672e3 /src/docs/Preparing-Environment.html | |
parent | 4c3af89bc1de653a33dc0397a0dc1e63c6469cb8 (diff) | |
download | website-f00da5b3eef7ad309bcd3381a02b7fbf71e90b76.tar.gz |
update
Diffstat (limited to 'src/docs/Preparing-Environment.html')
-rw-r--r-- | src/docs/Preparing-Environment.html | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/docs/Preparing-Environment.html b/src/docs/Preparing-Environment.html index 476299d..e222594 100644 --- a/src/docs/Preparing-Environment.html +++ b/src/docs/Preparing-Environment.html @@ -65,10 +65,12 @@ will continue on that point. <p>First, we need to download the rootfs tarball. You can do the following in order to obtain the rootfs. If you are using an i686 machine, replace the <code>x86_64</code> -with <code>i686</code>. +with <code>i686</code>. We are setting this in a URL variable so that we don’t have to +write it every time. </p> <div class="example"> -<pre class="example">$ wget https://dl.carbslinux.org/releases/x86_64/carbs-rootfs.tar.xz +<pre class="example">$ URL=https://dl.carbslinux.org/releases/x86_64 +$ wget $URL/carbs-rootfs.tar.xz </pre></div> <p>We can then check the integrity of the tarball and do a signature verification. @@ -81,7 +83,7 @@ latest release is saved on <samp>carbs-rootfs.tar.xz.sha256</samp>. You can acqu verify the tarball. </p> <div class="example"> -<pre class="example">$ wget https://dl.carbslinux.org/releases/x86_64/carbs-rootfs.tar.xz.sha256 +<pre class="example">$ wget $URL/carbs-rootfs.tar.xz.sha256 $ sha256sum -c carbs-rootfs.tar.xz.sha256 </pre></div> @@ -91,7 +93,7 @@ $ sha256sum -c carbs-rootfs.tar.xz.sha256 GPG for this. </p> <div class="example"> -<pre class="example">$ wget https://dl.carbslinux.org/releases/carbs-rootfs.tar.xz.sig +<pre class="example">$ wget $URL/carbs-rootfs.tar.xz.sig $ gpg --recv-keys FF484BDFEFCEF8FF $ gpg --verify carbs-rootfs.tar.xz.sig </pre></div> |