Kommando zum Installieren der Pakete hinzugefügt.
This commit is contained in:
parent
245341a927
commit
a5324e6ed9
1 changed files with 8 additions and 12 deletions
20
install.uefi
20
install.uefi
|
@ -61,11 +61,7 @@ elif [[ "${GRAPHICS_CARD}" == "nvidia" ]]; then
|
|||
GRAPHIC_DRIVER+=(nvidia nvidia-utils nvidia-settings)
|
||||
fi
|
||||
|
||||
###################################
|
||||
pacstrap -i /mnt "${KERNEL}" "${MICROCODE}" "${GNOME[@]}" "${GRAPHIC_PROGRAMMS[@]}" "${CLI[@]}" "${FONTS[@]}" "${CODECS[@]}" "${BLUETOOTH[@]}" "${OFFICE[@]}" "${AUDIO_VIDEO[@]}" "${PRINT[@]}" "${DEV[@]}" "${NET[@]}" "${OTHER[@]}" "${GRAPHIC_DRIVER[@]}" #dracut
|
||||
|
||||
#pacman -S dialog
|
||||
###################################
|
||||
# dialog
|
||||
|
||||
# Drive: /dev/vda
|
||||
DRIVE="/dev/vda"
|
||||
|
@ -103,7 +99,13 @@ mount /dev/vda2 /mnt/usr
|
|||
# Pakete installieren #
|
||||
#######################
|
||||
|
||||
pacstrap -i /mnt ""
|
||||
# Pacman im Live-System konfigurieren
|
||||
sed -i 's/#\(Color\)/\1/' /etc/pacman.conf
|
||||
# Umbruch notwendug
|
||||
sed -i 's/#\(ParallelDownloads\s=\s5\)/\1\
|
||||
ILoveCandy/' /etc/pacman.conf
|
||||
|
||||
pacstrap -i /mnt "${KERNEL}" "${MICROCODE}" "${GNOME[@]}" "${GRAPHIC_PROGRAMMS[@]}" "${CLI[@]}" "${FONTS[@]}" "${CODECS[@]}" "${BLUETOOTH[@]}" "${OFFICE[@]}" "${AUDIO_VIDEO[@]}" "${PRINT[@]}" "${DEV[@]}" "${NET[@]}" "${OTHER[@]}" "${GRAPHIC_DRIVER[@]}"
|
||||
|
||||
#--------------------------#
|
||||
|
||||
|
@ -111,12 +113,6 @@ pacstrap -i /mnt ""
|
|||
# Das neue System konfigurieren #
|
||||
#################################
|
||||
|
||||
# Pacman im Live-System konfigurieren
|
||||
sed -i 's/#\(Color\)/\1/' /etc/pacman.conf
|
||||
# Umbruch notwendug
|
||||
sed -i 's/#\(ParallelDownloads\s=\s5\)/\1\
|
||||
ILoveCandy/' /etc/pacman.conf
|
||||
|
||||
# ln -sf "/usr/share/zoneinfo/${TIMEZONE}" /etc/localtime -> L /etc/localtime - - - - "/usr/share/zoneinfo/${TIMEZONE}"
|
||||
arch-chroot /mnt hwclock --systohc
|
||||
arch-chroot /mnt rm -rf /etc/localtime
|
||||
|
|
Loading…
Reference in a new issue