The MPOW Bluetooth 5 dongle (Model: BH456A) does not work out of the box on Ubuntu 20.04 (kernel 5.4.0-42).
Patch the bluetooth kernel module and copy the firmware binaries to /lib/firmware.
| #!/usr/bin/bash | |
| # Coded by: Vladislav Grigoryev <vg[dot]aetera[at]gmail[dot]com> | |
| # Edited by: Simon "modellking" | |
| # License: GNU General Public License (GPL) version 3+ | |
| # Description: Resize images with ImageMagick from Nautilus | |
| # Requires: bash coreutils ImageMagick nautilus zenity | |
| # Build suggested resolutions: same aspect ratio with a common dimension (e.g. 1080) | |
| # or integer multiple/divisor of current size. Outputs pipe-separated combo values; |
Comparison for: DigitalOcean, Amazon AWS LightSail, Vultr, Linode, OVH, Hetzner, Scaleway/Online.net
This breakdown has been moved to a repository to allow for contributions:
| ## Install necessary packages and latest virtualbox | |
| wget -q -O - http://download.virtualbox.org/virtualbox/debian/oracle_vbox_2016.asc | sudo apt-key add - | |
| sudo sh -c 'echo "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian bionic non-free contrib" >> /etc/apt/sources.list.d/virtualbox.org.list' | |
| sudo apt update | |
| sudo apt install virtualbox-5.2 qemu-utils genisoimage cloud-utils | |
| ## get kvm unloaded so virtualbox can load | |
| ## WARNING: not needed? | |
| #sudo modprobe -r kvm_amd kvm_intel | |
| #sudo service virtualbox stop |