1
0
mirror of https://github.com/tommytran732/Arch-Setup-Script synced 2024-11-09 04:01:33 -05:00

Update install.sh

This commit is contained in:
TommyTran732 2021-07-25 06:55:42 +00:00 committed by tommytran732
parent 48697203ba
commit d421ed5a56
No known key found for this signature in database
GPG Key ID: 060B29EB996BD9F2

View File

@ -277,17 +277,15 @@ arch-chroot /mnt /bin/bash -e <<EOF
echo "Creating GRUB config file."
grub-mkconfig -o /boot/grub/grub.cfg &>/dev/null
#Creating wheel user
read -r -p "Please choose an admin user to create: " USER
echo "Creating user $USER"
useradd -m -g wheel $USER
passwd $USER
EOF
#Creating Wheel user
read -r -p "Please choose an admin user to create: " USER
# Create user
echo "Creating user $USER"
useradd -m -g wheel $USER
passwd $USER
sed -i 's/# %wheel ALL=(ALL) ALL/%wheel ALL=(ALL) ALL/g' /etc/sudoers
#Giving wheel user sudo access
sed -i 's/# %wheel ALL=(ALL) ALL/%wheel ALL=(ALL) ALL/g' /mnt/etc/sudoers
# Enabling auto-trimming service.
systemctl enable fstrim.timer --root=/mnt &>/dev/null