Setup a reverse ssh tunnel to a remote machine:
ssh -fN -R 2222:localhost:22 user@server
Connect to tunnel after logging on to the remote machine:
ssh user@server
ssh user@localhost -p 2222
I hereby claim:
To claim this, I am signing this object:
# Sum all of the columns in a table | |
cat file.txt | cut -d',' -f2 | paste -sd+ | bc |
server { | |
server_name: you.domain; | |
listen 443 ssl; | |
ssl_certificate /etc/nginx/ssl/nginx.crt; | |
ssl_certificate_key /etc/nginx/ssl/nginx.key; | |
location / { | |
proxy_set_header Host $host; |
#!/bin/sh | |
# quickly setup a guest virtualbox on arch linux | |
# should at least get you shared folders | |
pacupg # upgrade all current packages | |
# install guest additions | |
pacin virtualbox-guest-modules virtualbox-guest-utils |