Originally posted by the_fornicator
fucking hate... and I mean HATE, CVS.
piece of crap.
Really? I like it. Subversion is (potentially) even better...
http://subversion.tigris.org/
I like the idea of "concurrent" programming...the Eclipse CVS plug-in is decent; the merge tool is a bit lacking, but overall, very nicely integrated with cvs.
Originally posted by Balzz
You can't tunnel other protocols within ssh though can you? I've done some total nerd stuff...encapsulating ppp within gre tunnels for ppp multilink and such. Good times...good times.
Yah, see I normally pump PPP through a GRE tunnel to a PPTP server, but I don't find it to be the "easiest" way to do things. You can use ssh's port forwarding mechanisms to pump any protocol at all through an encrypted ssh connection.
On host A I do:
ssh w.x.y.z -L 6000:192.168.1.2:80
Which will take connections connecting on the localhost at port 6000, send them (encrypted) to w.x.y.z (host B) and forward them to 192.168.1.2:80.
So, then, I could do this on host A:
lynx localhost:6000
and I then have set up a secured connection to my internal web server.
Slick eh?
