1
0
mirror of https://gitlab.com/JKANetwork/JKArch.git synced 2026-02-15 09:41:31 +01:00
This commit is contained in:
kprkpr
2016-05-30 12:49:33 +02:00
parent 6f8bb374e1
commit e0c78a4346
2 changed files with 7 additions and 7 deletions

View File

@@ -152,7 +152,7 @@ mount /dev/$partefi /mnt/boot/efi/
fi
wget https://gitlab.com/JKANetwork/JKArch/raw/master/archinstall/pacman.conf -O /tmp/pacman.conf
pacstrap -C /tmp/pacman.conf /mnt/ base jka-toolkit git wget netctl iw wpa_supplicant dialog
pacstrap -C /tmp/pacman.conf /mnt/ base jka-toolkit git wget netctl iw wpa_supplicant dialog sudo
wget https://gitlab.com/JKANetwork/JKArch/raw/master/archinstall/chrootinstall.sh -O /mnt/root/chrootinstall.sh
chmod +x /mnt/root/chrootinstall.sh
genfstab -U /mnt >> /mnt/etc/fstab

View File

@@ -91,15 +91,15 @@ opta=`dialog --stdout --checklist "¿Que navegador quieres?" 10 40 5 1 "Firefox"
case $opta in
*1*)
packa="firefox";;
packa="firefox";
*2*)
packa="$packa google-chrome";;
packa="$packa google-chrome";
*3*)
packa="$packa chromium";;
packa="$packa chromium";
*4*)
packa="$packa opera";;
packa="$packa opera";
*5*)
packa="$packa otter-browser";;
packa="$packa otter-browser";
esac
pacman -S $packa --noconfirm
@@ -166,7 +166,7 @@ if [[ $instentorno ]];then
graficos
pacman -S xorg-server xorg-server-common xf86-input-libinput lightdm lightdm-gtk-greeter --noconfirm
echo "Instalando algún otro programa básico.."
pacman -S gvfs udisks --noconfifm
pacman -S gvfs udisks --noconfirm
systemctl enable lightdm
fi
}