This is my ways of installing Shiny server in Ubuntu 20 LTS. This steps assumes that ubuntu is installed and configured before running these steps.
# update indices and upgrade
sudo apt update && sudo apt upgrade -y
# Update TimeZone | |
uci set system.cfg01e48a.zonename='Asia/Dhaka' | |
uci set system.cfg01e48a.timezone='<+06>-6' | |
# EXTFS | |
# Set overlay to pendrive | |
opkg update && opkg install block-mount e2fsprogs kmod-fs-ext4 kmod-usb-storage kmod-usb2 kmod-usb3 | |
DEVICE="$(sed -n -e "/\s\/overlay\s.*$/s///p" /etc/mtab)" | |
uci -q delete fstab.rwm |