Sshfs (Mount Remote Drives)
Mount remote drive (tested on termux>Fedora36 with root)
Make directory to mount drive:
mkdir -p ~/mnt/FOLDERNAME
Mount remote drive:
sshfs USER@SERVER:/home/USER/ ~/mnt/FOLDERNAME -o reconnect
-o reconnect
reconnects drive when disconnected
unmount remote drive:
fusermount -u ~/mnt/FOLDERNAME