Daily Archives: November 30, 2008

How to View a Specific Page or Section of Manpage

For example, the “kill” manpage shows: SEE ALSO bash(1), tcsh(1), kill(2), sigvec(2), signal(7) This is how to view section 7 of the “signal” manpage: man 7 signal

Posted in Linux | Leave a comment

How to keep SSH sessions alive

Edit your ssh_config file like this: /etc/ssh/ssh_config: ServerAliveInterval 30 This will cause your SSH client to send a keep alive ping every 30 seconds to the server.

Posted in Linux, SSH | Leave a comment