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)
|
GRAPHIC_DRIVER+=(nvidia nvidia-utils nvidia-settings)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
###################################
|
# dialog
|
||||||
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
|
|
||||||
###################################
|
|
||||||
|
|
||||||
# Drive: /dev/vda
|
# Drive: /dev/vda
|
||||||
DRIVE="/dev/vda"
|
DRIVE="/dev/vda"
|
||||||
|
@ -103,7 +99,13 @@ mount /dev/vda2 /mnt/usr
|
||||||
# Pakete installieren #
|
# 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 #
|
# 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}"
|
# ln -sf "/usr/share/zoneinfo/${TIMEZONE}" /etc/localtime -> L /etc/localtime - - - - "/usr/share/zoneinfo/${TIMEZONE}"
|
||||||
arch-chroot /mnt hwclock --systohc
|
arch-chroot /mnt hwclock --systohc
|
||||||
arch-chroot /mnt rm -rf /etc/localtime
|
arch-chroot /mnt rm -rf /etc/localtime
|
||||||
|
|
Loading…
Reference in a new issue