Created
September 21, 2020 18:05
-
-
Save Pan-Maciek/b93d0d40eea50f8a702fa9e0406c5c00 to your computer and use it in GitHub Desktop.
Instalacja sterowników
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# install video card driver (manjaro only) | |
echo "Attempting to install video card driver" | |
sudo mhwd -a pci nonfree 0300 | |
# check kernel version | |
kv=$(uname -r | awk -F'.' '{print $1$2}') | |
echo "Attempting to install network card driver" | |
# install network driver | |
sudo pacman -S "linux$kv-broadcom-wl" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment