Saturday, September 29, 2007

Unix Terminal Settings

Sometime we wonder why Ctrl+C is not working in the terminal.
Thats because by default the interupt is set to DELETE Key to stop the process.
That can be changed by using below command

stty intr ^C (^C character typing can be achived by Ctrl+V and Ctrl+C)

And also by default # and @ charector does erase and kill functionality

stty kill ^x

stty -all to show all the intrupts set already.




No comments:

Running Jobs as application user in Cloudera hadoop distribution

When an Hadoop cluster is not enabled with Kerberos authentication, Internally triggered jobs would be running as an 'yarn' user ra...