Fixes for GPU script

This commit is contained in:
Phillip 2024-09-07 23:42:59 +01:00
parent 150641e21c
commit 8a5a860a54

View File

@ -42,6 +42,18 @@ case $yesno in
;; ;;
* ) echo "Please answer yes (Yes, y, Y) or no (No, n, N)";; * ) echo "Please answer yes (Yes, y, Y) or no (No, n, N)";;
esac esac
# Ask if this is being installed as a VM or bare metal, then install appropriate video drivers
read -p 'Is this being installed on VMWare Fusion? ' vmyesno
case $vmyesno in
[yesYesYy]* )
gpudriver = "vmware"
;;
[noNoNn]* )
gpudriver = "nvidia"
;;
* ) echo "Please answer yes (Yes, y, Y) or no (No, n, N)";;
esac
export gpu = $gpudriver
# Get user credentials # Get user credentials
read -p "Please enter a username " username read -p "Please enter a username " username
read -rsp "Please enter a password " password read -rsp "Please enter a password " password
@ -103,18 +115,16 @@ echo "$username:$password" | chpasswd
passwd --lock root passwd --lock root
# Set up sudo so "wheel" group users can do root commands (password required) # Set up sudo so "wheel" group users can do root commands (password required)
sed -i 's/^# %wheel ALL=(ALL:ALL) ALL/%wheel ALL=(ALL:ALL) ALL/' /etc/sudoers sed -i 's/^# %wheel ALL=(ALL:ALL) ALL/%wheel ALL=(ALL:ALL) ALL/' /etc/sudoers
# Ask if this is being installed as a VM or bare metal, then install appropriate video drivers # Set up GPU drivers depending on device
read -p 'Is this being installed on VMWare Fusion? ' vmyesno if [[ $gpu == "vmware" ]]
case $vmyesno in
[yesYesYy]* )
echo "Installing VM drivers" echo "Installing VM drivers"
pacman -S --noconfirm --needed open-vm-tools pacman -S --noconfirm --needed open-vm-tools
cat /proc/version > /etc/arch-release cat /proc/version > /etc/arch-release
systemctl enable vmware-vmblock-fuse systemctl enable vmware-vmblock-fuse
systemctl enable vmtoolsd systemctl enable vmtoolsd
pacman -S --noconfirm --needed xf86-input-vmmouse xf86-video-vmware mesa pacman -S --noconfirm --needed xf86-input-vmmouse xf86-video-vmware mesa
;; fi
[noNoNn]* ) if [[ $gpu == "nvidia" ]]
echo "Installing NVIDIA GPU drivers" echo "Installing NVIDIA GPU drivers"
pacman -S --noconfirm nvidia-dkms nvidia-utils lib32-nvidia-utils nvidia-settings pacman -S --noconfirm nvidia-dkms nvidia-utils lib32-nvidia-utils nvidia-settings
# Tweak systemd.conf and enable services for proper suspend/resume # Tweak systemd.conf and enable services for proper suspend/resume
@ -122,9 +132,7 @@ case $vmyesno in
systemctl enable nvidia-suspend.service systemctl enable nvidia-suspend.service
systemctl enable nvidia-hibernate.service systemctl enable nvidia-hibernate.service
systemctl enable nvidia-resume.service systemctl enable nvidia-resume.service
;; fi
* ) echo "Please answer yes (Yes, y, Y) or no (No, n, N)";;
esac
# Required to enable network changes (not sure if this is neccesary) # Required to enable network changes (not sure if this is neccesary)
#sysctl --system #sysctl --system
# Prompt the user to reboot # Prompt the user to reboot