Skip to content

Tag Archives: internet

Resuming an scp Upload

Uploading a file with scp is easy enough: scp [-P <port>] [-l <upload cap in Kb/s>] <file1 [file2 [file3 [...]]> user@host:path But what if you don’t finish uploading a file? This is where rsync comes in handy. You would want to use the following command: rsync [--bwlimit=<upload cap in KB/s>] -e “ssh -p <port>” –partial [...]

Creating an SSL Certificate

If you want to use SSL for your web server (or something else), you probably would like to have a security certificate for it.  While no web browser will accept a self-signed one, having something is better than nothing. 1. Create a private key.  Replace file1:file2:… with some binary files.  They’re just to get random [...]