How do I crash Ubuntu Linux 14.04 LTS deliberately?

5,326

This wasn't one of the official answers to How to cause kernel panic with a single command?, but it was referenced in a comment, and it should cause the system to crash.

Run the following forkbomb command at your bash shell:

:(){ :|:& };:

The system will continue to create new processes until the system hangs.

Or you can try the following python script:

import os
while True: os.fork()
Share:
5,326

Related videos on Youtube

Community
Author by

Community

Updated on September 18, 2022

Comments

  • Community
    Community over 1 year

    I'm trying to crash an instance on AWS so that I can simulate what happens when it gets 'stuck'.

    I tried the top suggestions here How to cause kernel panic with a single command? but unfortunately they were not successful.

    • Liczyrzepa
      Liczyrzepa almost 9 years
      From the referenced page, did you try this: dd if=/dev/urandom of=/dev/mem ? And what happened after the sysrq trigger?