2018-07-18 19:50:37 -05:00
|
|
|
# ArchLabs Installer
|
|
|
|
|
2018-07-18 19:52:06 -05:00
|
|
|
#### Features
|
|
|
|
+ Support for LUKS and/or LVM.
|
2018-07-27 21:43:48 -05:00
|
|
|
+ Simple & easy to follow configuration.
|
|
|
|
+ Automatic partitioning for whole devices.
|
|
|
|
+ Translations for 10 different languages.
|
2018-07-18 19:52:06 -05:00
|
|
|
+ Built-in error detection and capturing.
|
2018-09-15 20:29:05 -05:00
|
|
|
+ No input halts during install, setup is done first.
|
|
|
|
+ Written entirely in Bash making it easily hackable.
|
2018-07-18 19:50:37 -05:00
|
|
|
|
2018-07-18 19:52:06 -05:00
|
|
|
#### Requirements
|
|
|
|
+ `rsync` used to unpack the squashfs root.
|
|
|
|
+ `dialog` for all user input/output.
|
2018-09-15 20:29:05 -05:00
|
|
|
+ `vim` for editing files post install.
|
|
|
|
+ `parted` for auto and manual partition creation.
|
2018-07-18 19:52:06 -05:00
|
|
|
+ `wipe` for the secure wipe option.
|
2018-09-15 20:29:05 -05:00
|
|
|
+ Standard `awk` `sed` `grep` `uniq` `sort` `find` `ping` `mkfs` `lsblk`.
|
|
|
|
+ `arch-chroot` used to perform operations in the chroot.
|
2018-07-18 19:52:06 -05:00
|
|
|
+ `chpasswd` to set root and user passwords.
|
2018-09-15 20:29:05 -05:00
|
|
|
+ Network connection is needed to install packages and update the system.
|
|
|
|
+ `pacman` used to update the system and install/remove packages. *(with network connection)*
|
|
|
|
+ `reflector` for sorting the mirrorlist. *(with network connection)*
|
|
|
|
|
|
|
|
#### Manual Installation
|
|
|
|
- curl
|
|
|
|
```
|
|
|
|
sh -c "$(curl -fsSL https://bitbucket.org/archlabslinux/installer/raw/cfca6ca4d234f0a92c9d323fbeeb7214ce800fb0/install.sh)"
|
|
|
|
```
|
|
|
|
|
|
|
|
- wget
|
|
|
|
```
|
|
|
|
sh -c "$(wget https://bitbucket.org/archlabslinux/installer/raw/cfca6ca4d234f0a92c9d323fbeeb7214ce800fb0/install.sh -O -)"
|
|
|
|
```
|
|
|
|
|
|
|
|
- Packages for `pacman` can be found in our repos:
|
|
|
|
- stable: https://bitbucket.org/archlabslinux/archlabs_repo/src/master/x86_64/
|
|
|
|
- unstable: https://bitbucket.org/archlabslinux/archlabs_unstable/src/master/x86_64/
|
2018-07-18 19:50:37 -05:00
|
|
|
|