Fonts, Fonts, Fonts
Good Readable font to use.
Good Readable font to use.
The amount of work that has not been automated bores me to death. Imagine changing your own user password every month (!) on x-hundredth hosts manually for different reasons. Of course, you can script it with an expect script and ssh-keys, but its still not ideal. What if your account is locked on one of …
Sometimes, you wish that SSH would just connect without asking questions. For instance if you are on a trusted net where you do not need to worry about man-in-the-middle attacks. You can realise that wish with the following settings. Onetime setting as commandline argument: $ ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no user@192.168.0.100 Warning: Permanently added ‘192.168.0.100’ …