curl -L https://... | tar xz -C /usr/local/bin
Show HN: Mole – an open source tool to easily create ssh tunnels
41–50 of 61 posts
Re: Show HN: Mole – an open source tool to easily create ssh tunnels
#42What do you guys think of that cross-distro, Linux installation method? curl -L https://.. . | tar xz -C /usr/local/bin
Re: Show HN: Mole – an open source tool to easily create ssh tunnels
#43Earlier quoted context omitted.
Mosh support roaming and intermittent connectivity which is really super useful if you have to debug a server on a very dodgy 3g connection in a moving train.
I just learned about mosh, ty. I use SSH sessions all the time and sometimes over satellite links.
Re: Show HN: Mole – an open source tool to easily create ssh tunnels
#44Very nice. I'd consider pinging the guys of OpenBSD to suggest upstreaming this interesting, user friendly, syntax into SSH itself.
Re: Show HN: Mole – an open source tool to easily create ssh tunnels
#45I'm not sure if I missed something? Normally I use -L syntax for tunneling (-L local_port:remote_addr:remote_port). Does this tool do more?
Re: Show HN: Mole – an open source tool to easily create ssh tunnels
#46Re: Show HN: Mole – an open source tool to easily create ssh tunnels
#47Re: Show HN: Mole – an open source tool to easily create ssh tunnels
#48Earlier quoted context omitted.
I don't think i've missed anything, it does the same thing as ssh -L with slightly different syntax. It's the same with mosh. Normally i use tmux on the destination host, and i simply cannot see any reason to use mosh over ssh/tmux.
> i simply cannot see any reason to use mosh over ssh/tmux. How about automatic session resumption and predictive character insertion to improve typing when under latency?
Re: Show HN: Mole – an open source tool to easily create ssh tunnels
#49Earlier quoted context omitted.
I use tar daily, so yes, i remember the syntax :) copy files from a to b: (cd /src && tar cf - .) | (cd /dest && tar xf -) operations are easy :(c)reate, e(x)tract, (t)est options the same: (f)ile, (v)erbose, g(z)ip compression. the only illogical ones is bzip2 compression and xz compression with -j and -J I think i can remember cpio syntax as well, though i haven't used that i a decade, but did use it quite often in…
Well, it turns out we have different expectations regarding those tools. My brain chooses to store other things in life.
Re: Show HN: Mole – an open source tool to easily create ssh tunnels
#50Earlier quoted context omitted.
If it's easy for you to remember ssh syntax, then for you ssh is the better tool. As far as I'm concerned, I never remember the different syntax between -L, -R, -D, etc. Always have to read a doc somewhere. In the same topic, do you remember the syntax of tar? I don't. https://www.xkcd.com/1168/
I use tar daily, so yes, i remember the syntax :) copy files from a to b: (cd /src && tar cf - .) | (cd /dest && tar xf -) operations are easy :(c)reate, e(x)tract, (t)est options the same: (f)ile, (v)erbose, g(z)ip compression. the only illogical ones is bzip2 compression and xz compression with -j and -J I think i can remember cpio syntax as well, though i haven't used that i a decade, but did use it quite often in…