Apple iPad Pro

From Chorke Wiki
Jump to navigation Jump to search

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.3_amd64.deb -P ${HOME}/Downloads
sudo apt install ${HOME}/Downloads/imager_1.8.3_amd64.deb
rm  -rf          ${HOME}/Downloads/imager_1.8.3_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 tee /etc/netplan/20-ethernet-usb.yaml >/dev/null <<EOF
network:
  version: 2
  ethernets:
    usb0:
      link-local: [ ipv4 ]
EOF

sudo chmod 600 /etc/netplan/*.yaml
sudo netplan try

sudo apt install linux-modules-extra-raspi
sudo apt install openvswitch-switch-dpdk
sudo netplan try && sudo netplan apply
REMAIN_AFTER_FIND='RemainAfterExit=yes'
REMAIN_AFTER_FILL=$(cat <<EOF
RemainAfterExit=yes\n\
TimeoutStartSec=30sec
EOF
)

sudo sed -z "s|${REMAIN_AFTER_FIND}|${REMAIN_AFTER_FILL}|"\
 -i /lib/systemd/system/systemd-networkd-wait-online.service

sudo systemctl daemon-reload
sudo systemctl restart  systemd-networkd-wait-online.service
sudo apt install net-tools
ifconfig -v usb0|grep inet
arp -a -i   usb0

Raspberry Pi5B

:<<EOC
sed -z "s|rootwait|modules-load=dwc2,g_ether rootwait|" -i\
 /media/${USER}/bootfs/cmdline.txt

echo 'dtoverlay=dwc2,dr_mode=peripheral'>>\
 /media/${USER}/bootfs/config.txt

tee -a /media/${USER}/bootfs/network-config >/dev/null <<EOF
ethernets:
  usb0:
    link-local: [ ipv4 ]
EOF
EOC

Ubuntu Desktop

ssh ${USER}@chorke.local
sudo apt install ubuntu-desktop
sudo apt install tigervnc-standalone-server
sudo tee -a /etc/tigervnc/vncserver.users >/dev/null <<EOF
:2=${USER}
EOF

vncpasswd
:'
Password: ********
Verify: ********
Would you like to enter a view-only password (y/n)? n
'
tee ${HOME}/.vnc/xstartup >/dev/null <<'EOF'
#!/bin/sh
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r ${HOME}/.Xresources ] && xrdb ${HOME}/.Xresources
vncconfig -iconic &
gnome-session
EOF

chmod +x ${HOME}/.vnc/xstartup
sudo systemctl status tigervncserver@:2
sudo systemctl enable --now tigervncserver@:2

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

References