diff options
author | xengineering <mail2xengineering@protonmail.com> | 2019-12-11 14:46:00 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2019-12-11 14:46:00 +0100 |
commit | 50fd7d01036b0b78b89d50668f5561dbf14d4d27 (patch) | |
tree | 3872b2614085581512b100ba68b63b1bc462fe32 | |
parent | eb038138a4e06ed5c7e4b51891c55037d8da95b6 (diff) | |
download | archinstall-50fd7d01036b0b78b89d50668f5561dbf14d4d27.tar archinstall-50fd7d01036b0b78b89d50668f5561dbf14d4d27.tar.zst archinstall-50fd7d01036b0b78b89d50668f5561dbf14d4d27.zip |
Fixed dhcp.
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | bin/first_stage.sh | 2 | ||||
-rw-r--r-- | bin/setup_dhcp.sh | 1 |
3 files changed, 2 insertions, 3 deletions
@@ -30,12 +30,12 @@ Execute 'loadkeys de-latin1' after booting to live environment, if you want to s ## To Do - [ ] Provide recommended Package Lists +- [ ] Modify Mirrorlist - [ ] Packaged for the AUR - [ ] Support LVM - [ ] Provide LUKS on LVM Encryption - [ ] Support English Localization - [ ] Support Installation with WiFi (instead of cable connection) -- [ ] Modify Mirrorlist - [x] Provide Installation of Desktop Environment - [x] Provide reusable Configuration File (json) - [x] Provide Error Log diff --git a/bin/first_stage.sh b/bin/first_stage.sh index 472a814..629c750 100644 --- a/bin/first_stage.sh +++ b/bin/first_stage.sh @@ -115,7 +115,7 @@ echo "" echo "Going to install basic packages ..." sleep $DELAY echo "" -pacstrap /mnt base linux linux-firmware +pacstrap /mnt base linux linux-firmware dhcpcd echo "" echo "Installed basic packages - OK" sleep $DELAY diff --git a/bin/setup_dhcp.sh b/bin/setup_dhcp.sh index dbd3e18..e16dbc8 100644 --- a/bin/setup_dhcp.sh +++ b/bin/setup_dhcp.sh @@ -23,5 +23,4 @@ ################### -pacman --no-confirm -Syu dhcpcd systemctl enable dhcpcd |