Day: March 19, 2012

Fun in the Terminal With Lynx

Fun in the Terminal With Lynx The GNU/Linux command line gives you a lot of small tools that can be connected with each other by piping the output of one tool into another tool. For example, you might see a page with a lot of links on it that you want to examine more closely. […]

Read more

How to look at updated access.log or other log files in linux command line

Go to /var/logs directory or whichever on you want to look tail and try these commands: tail -f /var/log/messages less /var/log/messages more -f /var/log/messages vi /var/log/messages

Read more