Add some Readme Infos for publication

This commit is contained in:
seiichiro 2021-09-17 17:23:53 +02:00
parent f8a9b80f42
commit 6c21b221b3
2 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,13 @@
# archinstall
A Semi-Automatic Arch Installation Script
A Semi-Automatic Arch Installation Script
## Disclaimer
**USE AT YOUR OWN RISK! This script will at least wipe the selected drive, and try to install ArchLinux onto it. Make sure you have backups of anything important on the Machine you run this on. It is intended to be run on an empty box. I am not resposible for any potential damage caused by using this script!**
This script is mainly created for my own usage, so it will setup things the way I like it, and may change at any time without further notice. Make sure to understand what it does before using it. There are only minimal failsafe and error handling measures in place, so things might (and probably will) go horribly wrong at some point.
## Description
This script will install a basic ArchLinux system on (by default encrypted) BTRFS. It will prepare snapper for snapshots and grub to include them. Also some default programms will be installed. Some things can be controlled with commandline parameters, see the script (and potentially the `-?` flag) for details.

View File

@ -234,7 +234,9 @@ EOF
echo "Please set a Password for root"
arch-chroot /mnt /bin/passwd
echo "Enabling Service"
install_network ${network}
echo "Enabling Services"
systemctl enable sshd grub-btrfs.path --root /mnt
echo -e "\n\nInstallation finished, you may further customize it in /mnt or reboot now"