about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSilvino Silva <silvino@bk.ru>2021-02-26 19:48:39 +0000
committerSilvino Silva <silvino@bk.ru>2021-02-26 19:51:56 +0000
commit481f16b3d3f4a0b03ab3bb3b8d879b0c8ec25c04 (patch)
treef9502d6d48567dbad13d82432c9d9acfbd112c35
parent6ec55970fe70ad6306c768fe4a07acef50cec555 (diff)
downloaddoc-481f16b3d3f4a0b03ab3bb3b8d879b0c8ec25c04.tar.gz
fix install crux version
-rw-r--r--linux/index.html6
-rw-r--r--linux/install.html14
-rw-r--r--linux/scripts/setup-iso.sh14
3 files changed, 17 insertions, 17 deletions
diff --git a/linux/index.html b/linux/index.html
index 482730a..c9a130f 100644
--- a/linux/index.html
+++ b/linux/index.html
@@ -11,7 +11,7 @@
         <h1>GNU/Linux</h1>
 
         <p>GNU/Linux covers installation and configuration of
-        basic functionality of Crux 3.5 Gnu\Linux operating system.
+        basic functionality of Crux 3.6 Gnu\Linux operating system.
         This documentation try's to follow Crux HandBook installation
         method diverges, for example, by only installing and
         documenting gpt and grub2.<p>
@@ -21,10 +21,10 @@
         folder the install process is automated and <a href="ports/">ports</a>
         for extra ports used during the installation.</p>
 
-        <h2>1. Install Crux 3.5 Gnu/Linux</h2>
+        <h2>1. Install Crux 3.6 Gnu/Linux</h2>
 
         <ul>
-            <li><a href="install.html">1.1. Install Crux 3.5</a>
+            <li><a href="install.html">1.1. Install Crux 3.6</a>
                 <ul>
                     <li><a href="install.html#step1">1.1.1. Download</a></li>
                     <li><a href="install.html#step2">1.1.2. Prepare target</a></li>
diff --git a/linux/install.html b/linux/install.html
index f42f4a2..299027e 100644
--- a/linux/install.html
+++ b/linux/install.html
@@ -2,20 +2,20 @@
 <html dir="ltr" lang="en">
     <head>
         <meta charset='utf-8'>
-        <title>1.1. Install Crux 3.5</title>
+        <title>1.1. Install Crux 3.6</title>
     </head>
     <body>
 
         <a href="index.html">GNU/Linux Index</a>
 
-        <h1>1.1. Install Crux 3.5</h1>
+        <h1>1.1. Install Crux 3.6</h1>
 
-        <p>Installation of minimal Crux 3.5 Gnu\Linux system,
+        <p>Installation of minimal Crux 3.6 Gnu\Linux system,
         with selected packages from core, opt and contrib
         ports. Process of installation documented can be
         executed from iso or from existing gnu\linux installation.
         Read
-        <a href="http://crux.nu/Main/Handbook3-5">Hand book 3.5</a>,
+        <a href="http://crux.nu/Main/Handbook3-6">Hand book 3.6</a>,
         .</p>
 
         <p>If you are booting from crux iso and is not your keyboard
@@ -129,12 +129,12 @@
 
         <p>Create encrypted block for lvm, partition layout of efi and bios boot systems is different.</p>
 
-        <p>On bios_boot systems partition should be  2;</p>
+        <p>On bios_boot systems partition should be  2 (sda4);</p>
 
         <pre>
         (parted) set 4 lvm on
-        # cryptsetup luksFormat /dev/sda2
-        # cryptsetup luksOpen /dev/sda2 cryptlvm
+        # cryptsetup luksFormat /dev/sda4
+        # cryptsetup luksOpen /dev/sda4 cryptlvm
         </pre>
 
         <p>Create physical group and volume group;</p>
diff --git a/linux/scripts/setup-iso.sh b/linux/scripts/setup-iso.sh
index 458284d..19ac21f 100644
--- a/linux/scripts/setup-iso.sh
+++ b/linux/scripts/setup-iso.sh
@@ -4,13 +4,13 @@
 ISO_DIR="/usr/ports/iso"
 MOUNT_POINT="/mnt/media"
 
-ISO_FILE="${ISO_DIR}/crux-3.5.iso"
-MD5_FILE="${ISO_DIR}/crux-3.5.md5"
+ISO_FILE="${ISO_DIR}/crux-3.6.iso"
+MD5_FILE="${ISO_DIR}/crux-3.6.md5"
 
 # iso and md5 remote location
-#ISO_URL="https://serverop.de/crux/crux-3.5/iso/crux-3.5.iso"
-ISO_URL="https://ftp.spline.inf.fu-berlin.de/pub/crux/crux-3.5/iso/crux-3.5.iso"
-MD5_URL="https://serverop.de/crux/crux-3.5/iso/crux-3.5.md5"
+#ISO_URL="https://serverop.de/crux/crux-3.6/iso/crux-3.6.iso"
+ISO_URL="https://ftp.spline.inf.fu-berlin.de/pub/crux/crux-3.6/iso/crux-3.6.iso"
+MD5_URL="https://serverop.de/crux/crux-3.6/iso/crux-3.6.md5"
 
 # First we define the function
 ConfirmOrExit () {
@@ -99,8 +99,8 @@ while [ "$1" ]; do
                     -r|--root)
                         ISO_DIR=$2
 
-                        ISO_FILE="${ISO_DIR}/crux-3.5.iso"
-                        MD5_FILE="${ISO_DIR}/crux-3.5.md5"
+                        ISO_FILE="${ISO_DIR}/crux-3.6.iso"
+                        MD5_FILE="${ISO_DIR}/crux-3.6.md5"
 
                         shift ;;
                     -d|--download)