Apple iPad Pro
iPad Pro for web developers
Textastic ($9.99) Working copy (Free — $15.99 for pro version) √ Terminus (Free — $6.99/montly for Pro features) √ Blink Shell($19.99) √ Prompt 2 ($15.99)
Raspberry Pi Imager
wget -cq https://downloads.raspberrypi.org/imager/imager_1.8.1_amd64.deb -P ${HOME}/Downloads
sudo apt install ${HOME}/Downloads/imager_1.8.1_amd64.deb
rm -rf ${HOME}/Downloads/imager_1.8.1_amd64.deb
sudo apt --fix-broken install
sudo apt install -f
Raspberry Pi02W
sed -z "s|rootwait|modules-load=dwc2,g_ether rootwait|" -i /media/${USER}/system-boot/cmdline.txt
echo 'dtoverlay=dwc2,dr_mode=peripheral' >> /media/${USER}/system-boot/config.txt
tee -a /media/${USER}/system-boot/network-config >/dev/null <<EOF
ethernets:
usb0:
link-local: [ ipv4 ]
EOF
For this case Type-C » Micro-USB cable required. In this case please connect Micro-USB port 2nd Micro-USB female port instead of power port as because 2nd Micro-USB is an OTG Micro-USB.
sudo apt install net-tools
ifconfig -v usb0|grep inet
arp -a -i usb0
Raspberry Pi4B
sed -z "s|rootwait|modules-load=dwc2,g_ether rootwait|" -i\
/media/${USER}/system-boot/cmdline.txt
echo 'dtoverlay=dwc2,dr_mode=peripheral'>>\
/media/${USER}/system-boot/config.txt
tee -a /media/${USER}/system-boot/network-config >/dev/null <<EOF
ethernets:
usb0:
link-local: [ ipv4 ]
EOF
For this case Type-C » Type-C cable required. Please connect one of the end to power port of Raspberry Pi4B as because it's an OTG Port.
sudo apt install net-tools
ifconfig -v usb0|grep inet
arp -a -i usb0
Playground
df -h | grep /media
sudo umount /media/<user-id>/<disk-id>
sudo eject /dev/sda
udisksctl unmount -f -p /dev/sda1
udisksctl unmount -b /dev/sda1
sudo eject /dev/sda
udisksctl power-off -b /dev/sda