sudo apt install build-essential libncurses-dev linux-headers-amd64 linux-source
cd /usr/src/
tar xf linux-source-4.19.tar.xz
cd linux-source-4.19
cp ../linux-headers-4.19.0-9-amd64/Module.symvers .
cp /boot/config-4.19.0-9-amd64 ./.config # copy from boot folder
make oldconfig # it copies .config to ./
nano .config # enable module, ex: CONFIG_FT1000=m
make menuconfig # to confirm
What is the format of what the 2D barcode itself (QR Code, Data Matrix, and so on) encodes?
2D barcodes encode text, generally, but that text can represent many things.
Commonly, 2D barcodes encode text that represents a URL, like https://github.com/arvati. This is a special string of text since it is recognizable as a URL by readers, and therefore can be acted upon: the reader can open the URL in a browser.
2D barcodes can encode many types of actionable text. Text representing contact information, when recognized, could trigger a prompt to add the contact to an address book. But this only works when readers understand that text encodes contact information. For this, we need standards too.
There are some standards -- de facto and otherwise -- already in use. This gist attempts to catalog some possible standards for encoding various types of information, as seen at https://github.com/zxing/zxing/wiki/Barcode-Contents
#GNU Screen Cheat Sheet
##Basics
- ctrl a c -> create new window
- ctrl a A -> set window name
- ctrl a w -> show all window
- ctrl a 1|2|3|… -> switch to window n
- ctrl a " -> choose window
- ctrl a ctrl a -> switch between window
- ctrl a d -> detach window
TODO: choose another docker container
sudo docker container run -it openwrtorg/sdk:x86-64-master
sed -i '/src-git/s/^#//' /home/build/openwrt/feeds.conf.default
/home/build/openwrt/scripts/feeds update -a
/home/build/openwrt/scripts/feeds install -a
wget https://downloads.openwrt.org/snapshots/targets/x86/64/config.buildinfo -O .config
make defconfig
link: https://linuxize.com/post/how-to-install-and-use-docker-on-debian-10/
sudo apt install apt-transport-https ca-certificates curl software-properties-common gnupg2
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
sudo apt update
sudo apt install docker-ce