auto


Logs | Files | README | LICENSE | GitLab


1
commit 11ad6e02f4f174c67ca986283fb81a25a5dfec08
2
Author: Connor Etherington <[email protected]>
3
Date:   Tue Apr 5 21:46:38 2022 +0200
4
5
    Update.
6
---
7
 PKGBUILD                  |  3 ++-
8
 README.md                 | 50 +++++++++++++++++++++++++++++++++++++++++++++++
9
 autoPart => autoPartition |  0
10
 3 files changed, 52 insertions(+), 1 deletion(-)
11
12
diff --git a/PKGBUILD b/PKGBUILD
13
index 2bb167a..791f7ba 100644
14
--- a/PKGBUILD
15
+++ b/PKGBUILD
16
@@ -2,7 +2,7 @@
17
 # ---
18
 _pkgname=AutoLinux
19
 pkgname=auto
20
-pkgver=3.0.3
21
+pkgver=3.0.4
22
 pkgrel=1
23
 pkgdesc='ArchLinux bootstrap and partitioning scripts, with optional AutoLinuxOS configs.'
24
 arch=(x86_64)
25
@@ -18,4 +18,5 @@ package() {
26
     install -Dm755 ${_pkgname}/{autoInstall,autoCleanInstall,autoPart} -t "${pkgdir}/opt/${_pkgname}"
27
     install -Dm755 ${_pkgname}/{autoCleanInstall,autoInstall,autoPart} -t "${pkgdir}/usr/bin"
28
     install -Dm644 ${_pkgname}/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
29
+    install -Dm644 ${_pkgname}/README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
30
 }
31
diff --git a/README.md b/README.md
32
new file mode 100644
33
index 0000000..1180b29
34
--- /dev/null
35
+++ b/README.md
36
@@ -0,0 +1,50 @@
37
+# AutomateOS BootStrapping Scripts
38
+
39
+AutoLinux, is a tool providing the user with  simple and easy way to bootstrap and install ArchLinux.
40
+
41
+During the installation process, you will be given the option to install either bare ArchLinux, and make all further installations yourself,
42
+or to choose from a selection of the AutoLinux pre-configured desktop environment and window managers profiles, the flagship being the DWM edition. 
43
+
44
+
45
+
46
+
47
+## Usage:
48
+
49
+The package consists of 3 scripts:
50
+
51
++ `autoPart`: A partitioning script.
52
++ `autoInstall`: The base install script.
53
++ `autoCleanInstall`: The clean install script.
54
+
55
+
56
+
57
+**autoInstall**: This script is to be used for installing AutoLinux ontop of an existing Arch Linux installation, as a new user profile.
58
+
59
+
60
+**autoCleanInstall**: This script is intended for use when performing a clean/fresh installation, with no pre-existing OS installed on the partition(s) reserved for AutoLinux. 
61
+This script also includes section for partitioning your drive, so running the autoPart script is *NOT* required.
62
+
63
+
64
+**autoPart**: This script is for use outside of the AutoLinux installation process, and serves simply as a helper when partitioning your drive for any fresh installation.
65
+
66
+*NOTE*: The options are limited to partition selection, or drive wipe. 
67
+As for creating new partitions and deleting existing partitions, an external program such as cfdisk, fdisk or parted is required.
68
+The script also does not allow manual selection of FS type, and rootfs is automatially set to ext4.
69
+
70
+
71
+
72
+Upon installation, please read the function of both these scripts, and select *EITHER* `autoInstall` or `autoCleanInstall` to carry out the installation process.
73
+The `autoCleanInstall` script calls the `autoInstall` script upon completion of the base installation, and running both scripts is not required. 
74
+
75
+
76
+
77
+
78
+**Prerequisites**
79
+
80
+- The script takes care of all requirements dependencies do not have to be manually installed. ✔
81
+
82
+
83
+
84
+
85
+I hope these scripts are helpful and you enjoy your time in AutoLinux!     - a4to
86
+
87
diff --git a/autoPart b/autoPartition
88
similarity index 100%
89
rename from autoPart
90
rename to autoPartition