United States Virgin Islands: A white field with a yellow eagle between a blue V and I, holding a laurel sprig in one talon and three arrows in the other.
United States: Thirteen red and white stripes with fifty white stars on a blue canton.United Kingdom: The Union Flag: a red cross edged in white over red and white diagonals on blue.Ghana: Red, gold and green bands with a black five-pointed star centred on the gold.Sri Lanka: A gold lion holding a sword on dark red, with a bo leaf at each corner and green and orange stripes alongside.
The ThunderCats emblem: a cat's head in profile, cut out of a red disc.
..

Asus USB WiFi

Getting an ASUS USB-AC53 Nano working on Arch Linux

Inspired by Wayne Khan Post for Ubuntu

I found it difficult to initially get the external Wi-Fi card working properly following Khan’s post. The major difference being that this arch AUR repo greatly simplified things. Just make sure you have the base-devel package installed.

yay install dkms
git clone https://aur.archlinux.org/packages/rtl88x2bu-dkms-git/
cd rtl88x2bu-dkms-git
makepkg -si
VER=$(sed -n 's/\PACKAGE_VERSION="\(.*\)"/\1/p' dkms.conf)
sudo rsync -rvhP ./ /usr/src/rtl88x2bu-${VER}
sudo dkms add -m rtl88x2bu -v ${VER}
sudo dkms build -m rtl88x2bu -v ${VER}
sudo dkms install -m rtl88x2bu -v ${VER}
sudo modprobe 88x2bu

You should now have Wi-Fi access on a machine that did not come with a Wi-Fi card builtin.

Important urls

Arch AUR git repo

Khan’s Setup on Ubuntu