From 9e1541196b413ff5a8d8a0d0dd6a02a6f4399caf Mon Sep 17 00:00:00 2001 From: Marcel Stangenberger Date: Mon, 3 Mar 2025 15:17:47 +0100 Subject: [PATCH] Add usage --- README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f6d3387..6a48f3b 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,16 @@ -# archinstall - # Archinstall configuration for XO Servers -## User credentials encryption and decryption +### User credentials encryption and decryption -### To encrypt +#### To encrypt gpg --output user_credentials.crypt --symmetric --cypher-algo AES256 user_credentials.json -### To decrypt +#### To decrypt gpg --output user_credentials.json --decrypt user_credentials.crypt +### Usage + +1. Boot from Arch Linux iso +2. Download the encrypted credentials file using curl (curl -O https://git.xo.nl/marcel/archinstall/raw/master/user_credentials.crypt) +3. Decrypt using above command +4. Run the archinstall command (archinstall --config https://git.xo.nl/marcel/archinstall/raw/master/user_configuration.json --creds ./user_credentials.json --silent)