For easy access and convenience in editing and updating data, the box and computer can be connected in the following two ways:
- Mount folder of Box from Host PC
$ sudo apt install sshfs
$ mkdir ~/mount
$ sshfs root@192.168.1.189:/data/ ~/mount -> Then /data partition of box will be visible at ~/mount of Host PC
- Mount folder of Host PC from Box
# apt install sshfs
# mkdir /home/mount
# sshfs hsptek@192.168.1.25:~/test-data/ /home/mount
- To umount mounted directory
fusermount -u ~/mount
or
fusermount -u /home/mount