Update README.

This commit is contained in:
dataprolet 2023-09-22 14:50:23 +00:00
parent a0c979c371
commit 729d869091
1 changed files with 12 additions and 7 deletions

View File

@ -2,27 +2,32 @@
### This is my personal installation routine, which I continously expand and redefine. ### This is my personal installation routine, which I continously expand and redefine.
This installation script aims for a simple (read minimal) Arch Linux installation, which is modern in the way that it uses UEFI and systemd-boot, secure in the way that it uses full-disk encryption using LUKS as well as flexibility by using Btrfs subvolumes for the root and home partition. This installation script aims for a simple (read minimal) Arch Linux installation, which is modern in the way that it uses UEFI, systemd-boot and Wayland, secure in the way that it uses full-disk encryption using LUKS as well as flexibility by using Btrfs subvolumes for the root and home partition.
##### [Click here to go to the manual installation (Ext4/LVM)..](https://gitlab.com/dataprolet/simple-modern-and-secure-arch-linux-install/-/blob/master/install.md). ##### [Click here to go to the manual installation (legacy Ext4/LVM)..](https://gitlab.com/dataprolet/simple-modern-and-secure-arch-linux-install/-/blob/master/install.md).
--- ---
## To automatically install Arch Linux, clone this repository: ## To automatically install Arch Linux, clone this repository:
``` ```
pacman -Sy git # pacman -Sy git
git clone https://gitlab.com/dataprolet/arch $ git clone https://gitlab.com/dataprolet/arch
cd arch $ cd arch
sh install.sh $ sh install.sh
``` ```
### Or as a one-liner: ### Or as a one-liner:
``` ```
pacman -Sy git --noconfirm && git clone https://gitlab.com/dataprolet/arch && cd arch && sh install.sh # pacman -Sy git --noconfirm && git clone https://gitlab.com/dataprolet/arch && cd arch && sh install.sh
``` ```
- Tested and working as of August 2023. - Tested and working as of August 2023.
### To switch from X11 to Wayland on an existing installation use the following command and reboot:
```
# pacman -S wayland xorg-xwayland plasma-wayland-session && sed -i 's/plasma/plasmawayland/g' /etc/sddm.conf.d/kde_settings.conf
´´´
### *There are now two additional versions of the script:* ### *There are now two additional versions of the script:*
- `install-lvm.sh` - Installs using Ext4 and uses LVM for /root and /home. - `install-lvm.sh` - Installs using Ext4 and uses LVM for /root and /home.
- `install-grub.sh` - Installs using GRUB for legacy BIOS. - `install-grub.sh` - Installs using GRUB for legacy BIOS.