From f00da5b3eef7ad309bcd3381a02b7fbf71e90b76 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Mon, 14 Sep 2020 12:25:31 +0300 Subject: update --- src/docs/Preparing-Environment.html | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/docs/Preparing-Environment.html') 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.

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 x86_64 -with i686. +with i686. We are setting this in a URL variable so that we don’t have to +write it every time.

-
$ wget https://dl.carbslinux.org/releases/x86_64/carbs-rootfs.tar.xz
+
$ URL=https://dl.carbslinux.org/releases/x86_64
+$ wget $URL/carbs-rootfs.tar.xz
 

We can then check the integrity of the tarball and do a signature verification. @@ -81,7 +83,7 @@ latest release is saved on carbs-rootfs.tar.xz.sha256. You can acqu verify the tarball.

-
$ wget https://dl.carbslinux.org/releases/x86_64/carbs-rootfs.tar.xz.sha256
+
$ wget $URL/carbs-rootfs.tar.xz.sha256
 $ sha256sum -c carbs-rootfs.tar.xz.sha256
 
@@ -91,7 +93,7 @@ $ sha256sum -c carbs-rootfs.tar.xz.sha256 GPG for this.

-
$ wget https://dl.carbslinux.org/releases/carbs-rootfs.tar.xz.sig
+
$ wget $URL/carbs-rootfs.tar.xz.sig
 $ gpg --recv-keys FF484BDFEFCEF8FF
 $ gpg --verify carbs-rootfs.tar.xz.sig
 
-- cgit v1.2.3