6 private links
Throughout our life, we all continue to generate content, whether that's writing documents, taking photos, writing comments online, liking our friends' posts on social networks, etc. Our content is typically spread between a mix of different companies' servers ("The Cloud") and your own hardware (laptops, phones, etc). All of these things are prone to failure: companies go out of business, change ownership, or kill products. Personal harddrives fail, laptops and phones are dropped.
It would be nice if we were a bit more in control. At least, it would be nice if we had a reliable backup of all our content. Once we have all our content, it's then nice to search it, view it, and directly serve it or share it out to others (public or with select ACLs), regardless of the original host's policies.
Camlistore is a system to do all that.
rsync --partial -t -h -z -r --progress -e "ssh" "edgar:/home/deluge/*" .
Make a bridge through the gate
ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -L 1234:opensuse:22 login_x@ssh.epitech.net -N -f
Use it like this:
scp -P 1234 login_x@127.0.0.1:/home/login_x/* ./
or to access any other server inside using opensuse as a gate:
ssh server -o "ProxyCommand ssh -q -p 1234 login_x@127.0.0.1 nc -q0 %h 22"
Direct tunnel to access a ressource inside epitech's network
ssh -4 -At login_x@ssh.epitech.eu -L 4242:localhost:4242 ssh -At -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no opensuse-3 -L 4242:10.10.254.252:4242