Since Chrome apps are now being deprecated. Download postman from https://dl.pstmn.io/download/latest/linux
Although I highly recommend using a snap
sudo snap install postman
tar -xzf Postman-linux-x64-5.3.2.tar.gz
Since Chrome apps are now being deprecated. Download postman from https://dl.pstmn.io/download/latest/linux
Although I highly recommend using a snap
sudo snap install postman
tar -xzf Postman-linux-x64-5.3.2.tar.gz
#!/bin/bash | |
GITHUB_URL=https://github.com | |
NF_REPO=ryanoasis/nerd-fonts | |
NF_VERSION=v3.2.1 | |
NF_NAME=FiraCode | |
TMP_FONT_FOLDER=tmp_font_folder | |
# Initial repository configuration | |
termux-change-repo |
Content :
# Download
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
With the release of Raspberry Pi OS Bookworm, networking on the Raspberry Pi was changed to use NetworkManager as the standard controller for networking, replacing the previous dhcpcd system. NetworkManager includes a command line tool called "nmcli," which can control NetworkManager and report on the network status.
Display the list of network interfaces:
sudo nmcli -p connection show
#!/bin/bash | |
GITHUB_URL=https://github.com | |
NF_REPO=ryanoasis/nerd-fonts | |
NF_VERSION=v3.2.1 | |
NF_NAME=FiraCode | |
TMP_FONT_FOLDER=$HOME/tmp_font_folder | |
echo "Make sure to keep closer to the device, a few manual steps may be necessary!!!" |
Install k3s + MetalLB in a cluster with RaspberryPi.
/boot/cmdline.txt
file and the configuration at the end of line: cgroup_memory=1 cgroup_enable=memory
TOKEN=`python3 -c "import secrets; print(secrets.token_hex(32))"`
----------------- SD CARD Sandisk 32GB Class 4 ---------------- | |
pi@raspberrypi:~ $ cat /proc/cpuinfo | grep Model | |
Model : Raspberry Pi Zero Rev 1.3 | |
pi@raspberrypi:~ $ ./test_disk_size.sh | |
Variable local not set, default will be /tmp/test_disk_speed | |
Variable size not set, default will be 1000 | |
Testing writing speed... | |
500+0 records in | |
500+0 records out | |
524288000 bytes (524 MB, 500 MiB) copied, 67.8816 s, 7.7 MB/s |
#!/bin/bash | |
local=$1 | |
size=$2 | |
if [[ ! -n $local ]]; then | |
echo "Variable local not set, default will be /tmp/test_disk_speed" | |
local='/tmp/test_disk_speed' | |
fi |