diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-17 17:13:30 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-17 17:13:30 +0100 |
commit | b89b6b3aab2df490f99d339590da37f8fec2e042 (patch) | |
tree | fe29702983ea6f5874527c3488457f622db99583 /joes-arch-install-UEFI.sh | |
parent | Removed mkinitcpio (diff) | |
download | arch-installer-b89b6b3aab2df490f99d339590da37f8fec2e042.tar.gz arch-installer-b89b6b3aab2df490f99d339590da37f8fec2e042.tar.bz2 arch-installer-b89b6b3aab2df490f99d339590da37f8fec2e042.tar.xz arch-installer-b89b6b3aab2df490f99d339590da37f8fec2e042.tar.zst arch-installer-b89b6b3aab2df490f99d339590da37f8fec2e042.zip |
Better extra packages installation
Diffstat (limited to 'joes-arch-install-UEFI.sh')
-rwxr-xr-x | joes-arch-install-UEFI.sh | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/joes-arch-install-UEFI.sh b/joes-arch-install-UEFI.sh index 58e8014..aaa2484 100755 --- a/joes-arch-install-UEFI.sh +++ b/joes-arch-install-UEFI.sh @@ -466,7 +466,7 @@ echo "\ # this may take a while # # # #=================================#" -pacstrap /mnt/arch base base-devel pacman-contrib > /dev/null +pacstrap /mnt/arch base base-devel pacman-contrib echo && echo echo "Base packages installed." sleep 1 @@ -474,21 +474,6 @@ clear echo "\ #====== IV. INSTALLING LINUX =====# # # -# 4.5 Downloading some extras # -# # -# Please be patient, # -# this may take a while # -# # -#=================================#" -pacstrap /mnt/arch zip unzip p7zip vim mc alsa-utils syslog-ng mtools dostools lsb-release ntfs-3g exfat-utils git zsh > /dev/null -pacstrap /mnt/arch ntp cronie > /dev/null -echo && echo -echo "Extra packages installed." -sleep 1 -clear -echo "\ -#====== IV. INSTALLING LINUX =====# -# # # 5. Generating fstab # # # #=================================#" @@ -527,8 +512,6 @@ arch-chroot /mnt/arch << ARCH_CHROOT # # #=================================# hwclock --systohc - ntpdate fr.pool.ntp.org - systemctl enable ntpd sleep 1 clear #===== V. CONFIGURING LINUX ======# @@ -584,6 +567,16 @@ arch-chroot /mnt/arch << ARCH_CHROOT sed -i 's/#ForwardToSyslog=no/ForwardToSyslog=yes/' /etc/systemd/journald.conf sleep 2 ARCH_CHROOT +arch-chroot /mnt/arch << ARCH_CHROOT + clear + #===== V. CONFIGURING LINUX ======# + # # + # 9. Installing useful packages # + # # + #=================================# + pacman -S zip unzip p7zip vim mc alsa-utils syslog-ng mtools dostools lsb-release ntfs-3g exfat-utils git zsh ntp cronie + sleep 2 +ARCH_CHROOT if [[ $somemore == "true" ]]; then arch-chroot /mnt/arch << ARCH_CHROOT clear |