I'm still in the process of tagging pages that were migrated from the old site, so for now you're best off using the search engine rather than relying on the tags.
- How to start sshd on OS X - To start sshd on OS X (on Leopard on a Mac Mini in my case, though I doubt it makes a difference): System Preferences -> Internet & Wireless section -> Sharing icon -> tick Remote Login. You should now be able to ssh and scp to the compu...
- How to scp with spaces in the filename - If you have spaces in your file name then you must use both quotes and escape the spaces: scp example.com:~/some/file/'with\ spaces' . scp example.com:~/some/file/"with\ spaces" . Or use a combo of single and double quotes: scp 'example.com:~/s...