What would you do when all the processess hangs and there is
no other option in unix?

Answers were Sorted based on User's Feedback



What would you do when all the processess hangs and there is no other option in unix?..

Answer / sushil

if all the commands are hanging then there is no point
running any command.
In this case system can be considred as it's hung. and hence
u might want to
collect some useful information to perform root cause
ananlysis before rebooting the
system.
Here we can apply magic keys and ask OS to dump memory/
registers and we can even
instruct it to terminat/kill all but init process ,
sometimes we can send
kill signal to all proccess including init.

Alt+SysRQ+m prints memory information to the console.

Alt+SysRQ+e sends SIGTERM to all processes except init.

Alt+SysRQ+i sends SIGKILL to all processes except init.

Alt+SysRQ+l sends SIGKILL to all processes, inclusive init.
Alt+SysRQ+s writes all data from the disc cache to the
harddiscs, its a sync
Alt+SysRQ+i (for the processes that didn't listen for the
TERM signal, this is a kill -9 process)
Alt+SysRQ+b (reboot).

Is This Answer Correct ?    2 Yes 0 No

What would you do when all the processess hangs and there is no other option in unix?..

Answer / susheel narayan singh hcl

If you r working on /var direcotry and your
process hangs than you login with another
terminal and --

# fuser -v /var

to kill all the process of /var

Is This Answer Correct ?    0 Yes 0 No

What would you do when all the processess hangs and there is no other option in unix?..

Answer / gaurav verma

killall -HUP <service name> //it will automatically stop
and start the servies mentioned//

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More Linux Commands Interview Questions

How can I delete a file in linux?

0 Answers  


What is df command in linux?

0 Answers  


What is clang format?

0 Answers  


How do you sort cpu in top command?

0 Answers  


What is the difference between cd and cd in linux?

0 Answers  






What does chmod do in linux?

0 Answers  


What command you use for cpio to create a backup called backup.cpio of all the users’ home dirs?

2 Answers  


What is file and example?

0 Answers  


How compile c++ program in cmd?

0 Answers  


How do I check if my cpu is overclocked?

0 Answers  


How do you create a blank file in linux?

0 Answers  


Working in Linux/Unix platform, if any command dose not work, say # ls reports as command not found. what to do?

5 Answers  


Categories