moved chroot actions to chscript
This commit is contained in:
parent
c909af2427
commit
f0005b3f78
44
chscript.sh
Executable file
44
chscript.sh
Executable file
@ -0,0 +1,44 @@
|
||||
|
||||
timedatectl set-timezone Europe/Vilnius
|
||||
|
||||
locale-gen
|
||||
echo LANG=en_US.UTF-8 > /etc/locale.conf
|
||||
export LANG=en_US.UTF-8
|
||||
|
||||
echo blue > /etc/hostname
|
||||
|
||||
echo "127.0.0.1 localhost" >> /etc/hosts
|
||||
echo "::1 localhost" >> /etc/hosts
|
||||
echo "127.0.1.1 blue" >> /etc/hosts
|
||||
|
||||
useradd -m blue
|
||||
|
||||
passwd
|
||||
|
||||
passwd blue
|
||||
|
||||
|
||||
|
||||
|
||||
# mkdir /boot/efi
|
||||
|
||||
# mount /dev/sda1 /boot/efi
|
||||
|
||||
# grub-install --target=x86_64-efi --bootloader-id=GRUB --efi-directory=/boot/efi
|
||||
|
||||
# grub-mkconfig -o /boot/grub/grub.cfg
|
||||
|
||||
grub-install /dev/sda
|
||||
|
||||
grub-mkconfig -o /boot/grub/grub.cfg
|
||||
|
||||
systemctl enable lightdm
|
||||
|
||||
cd /opt
|
||||
git clone https://aur.archlinux.org/yay-git.git
|
||||
sudo chown -R blue:blue ./yay-git
|
||||
makepkg -si
|
||||
|
||||
exit
|
||||
|
||||
reboot
|
46
install.sh
46
install.sh
@ -12,48 +12,6 @@ pacstrap /mnt base linux linux-firmware grub efibootmgr xorg leafpad vim git lxd
|
||||
|
||||
genfstab -U /mnt >> /mnt/etc/fstab
|
||||
|
||||
arch-chroot /mnt
|
||||
cp chscript.sh /tmp/chscript.sh
|
||||
|
||||
timedatectl set-timezone Europe/Vilnius
|
||||
|
||||
locale-gen
|
||||
echo LANG=en_US.UTF-8 > /etc/locale.conf
|
||||
export LANG=en_US.UTF-8
|
||||
|
||||
echo blue > /etc/hostname
|
||||
|
||||
echo "127.0.0.1 localhost" >> /etc/hosts
|
||||
echo "::1 localhost" >> /etc/hosts
|
||||
echo "127.0.1.1 blue" >> /etc/hosts
|
||||
|
||||
useradd -m blue
|
||||
|
||||
passwd
|
||||
|
||||
passwd blue
|
||||
|
||||
|
||||
|
||||
|
||||
# mkdir /boot/efi
|
||||
|
||||
# mount /dev/sda1 /boot/efi
|
||||
|
||||
# grub-install --target=x86_64-efi --bootloader-id=GRUB --efi-directory=/boot/efi
|
||||
|
||||
# grub-mkconfig -o /boot/grub/grub.cfg
|
||||
|
||||
grub-install /dev/sda
|
||||
|
||||
grub-mkconfig -o /boot/grub/grub.cfg
|
||||
|
||||
systemctl enable lightdm
|
||||
|
||||
cd /opt
|
||||
git clone https://aur.archlinux.org/yay-git.git
|
||||
sudo chown -R blue:blue ./yay-git
|
||||
makepkg -si
|
||||
|
||||
exit
|
||||
|
||||
reboot
|
||||
arch-chroot /mnt
|
Loading…
Reference in New Issue
Block a user