Difference between revisions of "A-Quick links"

From Ever changing code
Jump to navigation Jump to search
Line 9: Line 9:
[http://www.cyberciti.biz/tips/ssh-public-key-based-authentication-how-to.html SSH Public Key Based Authentication]
[http://www.cyberciti.biz/tips/ssh-public-key-based-authentication-how-to.html SSH Public Key Based Authentication]


[http://superuser.com/questions/289239/is-it-possible-to-tail-f-the-output-of-dmesg tail-f-the-output-of-dmesg] or install <tt>multitail/tt>
[http://superuser.com/questions/289239/is-it-possible-to-tail-f-the-output-of-dmesg tail-f-the-output-of-dmesg] or install <tt>multitail</tt>
*<code>tail -f /var/log/{messages,kernel,dmesg,syslog}</code>  - old school but not perfect
*<code>tail -f /var/log/{messages,kernel,dmesg,syslog}</code>  - old school but not perfect
*<code> watch 'dmesg | tail -50'</code>  - approved by man dmesg
*<code> watch 'dmesg | tail -50'</code>  - approved by man dmesg
*<code> watch 'sudo dmesg -c >> /tmp/dmesg.log; tail -n 40 /tmp/dmesg.log'</code>  - tested, but experimental
*<code> watch 'sudo dmesg -c >> /tmp/dmesg.log; tail -n 40 /tmp/dmesg.log'</code>  - tested, but experimental

Revision as of 09:16, 11 August 2013

Building bridges with Linux

Changing IP Addresses and Routes

continue Linux Static IP Address Configuration

scp copy

SSH Public Key Based Authentication

tail-f-the-output-of-dmesg or install multitail

  • tail -f /var/log/{messages,kernel,dmesg,syslog} - old school but not perfect
  • watch 'dmesg | tail -50' - approved by man dmesg
  • watch 'sudo dmesg -c >> /tmp/dmesg.log; tail -n 40 /tmp/dmesg.log' - tested, but experimental