various updates

This commit is contained in:
morrownr 2022-08-21 23:19:27 -05:00
parent 4d66c96d67
commit 571be0b9cc
3 changed files with 10 additions and 8 deletions

View File

@ -21,7 +21,6 @@ sudo uname -a; mokutil --sb-state; lsusb; rfkill list all; dkms status; iw dev
## Linux Driver for USB WiFi Adapters that are based on the RTL8812BU and RTL8822BU Chipsets ## Linux Driver for USB WiFi Adapters that are based on the RTL8812BU and RTL8822BU Chipsets
- v5.13.1 (Realtek) (20210702) plus updates from the Linux community - v5.13.1 (Realtek) (20210702) plus updates from the Linux community
- 5,000+ Views over the 2 weeks ended on 20220522 (Thank you!)
### Features ### Features
@ -188,7 +187,7 @@ script on systems with secure mode on. It works very well on Ubuntu based distro
distros, such as Raspberry Pi OS, do not support secure mode because the hardware they distros, such as Raspberry Pi OS, do not support secure mode because the hardware they
support does not support secure mode making it unnecessary. There are distros that do not support does not support secure mode making it unnecessary. There are distros that do not
work with the support currently in use. If you install this driver and, work with the support currently in use. If you install this driver and,
after a reboot, the driver is not working, you can go into the BIOS and tempoarily turn after a reboot, the driver is not working, you can go into the BIOS and temporarily turn
secure mode off to see if secure mode is the problem. secure mode off to see if secure mode is the problem.
### Installation Steps ### Installation Steps

View File

@ -37,15 +37,15 @@ then
fi fi
# information that helps with bug reports # information that helps with bug reports
# displays script name and version # displays script name and version
echo "Running ${SCRIPT_NAME} version ${SCRIPT_VERSION}" echo "Running ${SCRIPT_NAME} version ${SCRIPT_VERSION}"
# distro (need to work on this)
#hostnamectl | grep 'Operating System' | sed 's/ Operating System: //'
# kernel # kernel
uname -r uname -r
# architecture - for ARM: aarch64 = 64 bit, armv7l = 32 bit # architecture - for ARM: aarch64 = 64 bit, armv7l = 32 bit
uname -m uname -m
#getconf LONG_BIT (need to work on this)
echo "Starting installation..." echo "Starting installation..."
@ -66,6 +66,7 @@ if [[ "$RESULT" != "0" ]]
then then
echo "An error occurred. Error = ${RESULT}" echo "An error occurred. Error = ${RESULT}"
echo "Please report this error." echo "Please report this error."
echo "Please copy all screen output and paste it into the report."
echo "You will need to run the following before reattempting installation." echo "You will need to run the following before reattempting installation."
echo "$ sudo ./remove-driver-no-dkms.sh" echo "$ sudo ./remove-driver-no-dkms.sh"
exit $RESULT exit $RESULT

View File

@ -54,15 +54,15 @@ then
fi fi
# information that helps with bug reports # information that helps with bug reports
# displays script name and version # displays script name and version
echo "Running ${SCRIPT_NAME} version ${SCRIPT_VERSION}" echo "Running ${SCRIPT_NAME} version ${SCRIPT_VERSION}"
# distro (need to work on this)
#hostnamectl | grep 'Operating System' | sed 's/ Operating System: //'
# kernel # kernel
uname -r uname -r
# architecture - for ARM: aarch64 = 64 bit, armv7l = 32 bit # architecture - for ARM: aarch64 = 64 bit, armv7l = 32 bit
uname -m uname -m
#getconf LONG_BIT (need to work on this)
echo "Starting installation..." echo "Starting installation..."
@ -85,6 +85,7 @@ if [[ "$RESULT" != "0" ]]
then then
echo "An error occurred. dkms add error = ${RESULT}" echo "An error occurred. dkms add error = ${RESULT}"
echo "Please report this error." echo "Please report this error."
echo "Please copy all screen output and paste it into the report."
echo "You will need to run the following before reattempting installation." echo "You will need to run the following before reattempting installation."
echo "$ sudo ./remove-driver.sh" echo "$ sudo ./remove-driver.sh"
exit $RESULT exit $RESULT
@ -97,6 +98,7 @@ if [[ "$RESULT" != "0" ]]
then then
echo "An error occurred. dkms build error = ${RESULT}" echo "An error occurred. dkms build error = ${RESULT}"
echo "Please report this error." echo "Please report this error."
echo "Please copy all screen output and paste it into the report."
echo "You will need to run the following before reattempting installation." echo "You will need to run the following before reattempting installation."
echo "$ sudo ./remove-driver.sh" echo "$ sudo ./remove-driver.sh"
exit $RESULT exit $RESULT