19 lines
414 B
Bash
Executable File
19 lines
414 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# partition your device manually.
|
|
# and mount it at /mnt
|
|
|
|
# wifi-menu
|
|
|
|
pacman -Syy
|
|
|
|
pacstrap /mnt base linux linux-firmware grub efibootmgr xorg leafpad vim git lxde lightdm lightdm-gtk-greeter lxde-common lxterminal lxsession openbox sudo base-devel go nm-connection-editor networkmanager
|
|
|
|
|
|
genfstab -U /mnt >> /mnt/etc/fstab
|
|
|
|
cp chscript.sh /mnt/chscript.sh
|
|
|
|
arch-chroot /mnt /chscript.sh
|
|
|
|
reboot |