What does HackerNews think of sshfs?
A network filesystem client to connect to SSH servers
Also, looks like sshfs used in Slackware is abandoned.
https://github.com/libfuse/sshfs
A quote from the link, I wonder if this project will be the 'one':
>If you would like to take over this project, you are welcome to do so. Please fork it and develop the fork for a while. Once there has been 6 months of reasonable activity, please contact [email protected] and I'll be happy to give you ownership of this repository or replace with a pointer to the fork.
I also wonder if it was abandoned due to the RHEL re-orgs like what happened to bluetooth.
I'd say this is a perfectly fine solution for a lot of cases. Not all, of course, like your iPad one sounds a great fit for mosh (and I'm gonna try it out!) But even a RaspberryPi can power a really powerful terminal.
You can use sshfs[0] to mount a remote drive over ssh. Obviously there will still be some lag - `ls` will require a round trip - but your local terminal will be much snappier.
There are many other better ways of building a Dropbox-like system on Linux these days than that advice, including the aforementioned Syncthing[1], but the appropriate update to that comment alone would be "getting a SSH account, mounting it locally with sshfs[2], and then using Git on the mounted filesystem".
- autossh - https://linux.die.net/man/1/autossh
- sshfs - https://github.com/libfuse/sshfs
- pandoc - https://pandoc.org/installing.html
- exiftool - https://www.sno.phy.queensu.ca/~phil/exiftool/
- htop - https://hisham.hm/htop/
- tmux - https://github.com/tmux/tmux/wiki
- rsync - https://rsync.samba.org/
- midnight commander - https://midnight-commander.org/ (faster, than loop ing ls, cd .., ls)
Still trying to think about the others.
ts: http://vicerveza.homeunix.net/~viric/soft/ts/ (TaskSpooler) queue commands in different terminals
socat: http://www.dest-unreach.org/socat/ -- Multi-purpose relay
most: http://www.jedsoft.org/most/ pager more features than less/more
sshfs: https://github.com/libfuse/sshfs remote filesystem using SFTP via FUSE
passgo: https://github.com/ejcx/passgo Simple golang password manager
rclone: https://github.com/ncw/rclone rsync for cloud storage
autosub: https://github.com/agermanidis/autosub Command-line utility for auto-generating subtitles for any video file
[1] https://github.com/libfuse/sshfs , packaged by your distribution
Back in the day, we used WebDAV[0] for remote FS access. This had some issues with file locks (with multiple users accessing the same directory) and cross-platform compatibility (mostly between different versions of Windows and/or Office), but most of the time it Just Worked.
Anyway, there are also other open source solutions like sshfs[1][2] available that sidestep those issues (as long as only one user is accessing the remote copy, anyway).
[0] https://en.wikipedia.org/wiki/WebDAV