mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 21:28:48 +00:00
fix gpu error
This commit is contained in:
parent
fbb6cfc948
commit
272bbb9b40
|
@ -552,16 +552,16 @@ echo -ne "
|
||||||
-------------------------------------------------------------------------
|
-------------------------------------------------------------------------
|
||||||
"
|
"
|
||||||
# Graphics Drivers find and install
|
# Graphics Drivers find and install
|
||||||
if echo ${gpu_type} | grep -E "NVIDIA|GeForce"; then
|
if echo "${gpu_type}" | grep -E "NVIDIA|GeForce"; then
|
||||||
echo "Installing NVIDIA drivers: nvidia-lts"
|
echo "Installing NVIDIA drivers: nvidia-lts"
|
||||||
pacman -S --noconfirm --needed nvidia-lts
|
pacman -S --noconfirm --needed nvidia-lts
|
||||||
elif echo ${gpu_type} | grep 'VGA' | grep -E "Radeon|AMD"; then
|
elif echo "${gpu_type}" | grep 'VGA' | grep -E "Radeon|AMD"; then
|
||||||
echo "Installing AMD drivers: xf86-video-amdgpu"
|
echo "Installing AMD drivers: xf86-video-amdgpu"
|
||||||
pacman -S --noconfirm --needed xf86-video-amdgpu
|
pacman -S --noconfirm --needed xf86-video-amdgpu
|
||||||
elif echo ${gpu_type} | grep -E "Integrated Graphics Controller"; then
|
elif echo "${gpu_type}" | grep -E "Integrated Graphics Controller"; then
|
||||||
echo "Installing Intel drivers:"
|
echo "Installing Intel drivers:"
|
||||||
pacman -S --noconfirm --needed libva-intel-driver libvdpau-va-gl lib32-vulkan-intel vulkan-intel libva-intel-driver libva-utils lib32-mesa
|
pacman -S --noconfirm --needed libva-intel-driver libvdpau-va-gl lib32-vulkan-intel vulkan-intel libva-intel-driver libva-utils lib32-mesa
|
||||||
elif echo ${gpu_type} | grep -E "Intel Corporation UHD"; then
|
elif echo "${gpu_type}" | grep -E "Intel Corporation UHD"; then
|
||||||
echo "Installing Intel UHD drivers:"
|
echo "Installing Intel UHD drivers:"
|
||||||
pacman -S --noconfirm --needed libva-intel-driver libvdpau-va-gl lib32-vulkan-intel vulkan-intel libva-intel-driver libva-utils lib32-mesa
|
pacman -S --noconfirm --needed libva-intel-driver libvdpau-va-gl lib32-vulkan-intel vulkan-intel libva-intel-driver libva-utils lib32-mesa
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue
Block a user