Categories: TutorialsUbuntu

How to Capture Linux Signal in Python

Many times developers need to terminate scripts that are running, using Ctrl+C or other signals. But this is often processed by OS, and not the actual script. But sometimes you may need the script to be able to receive and handle system signals from within the script itself. In this article, we will learn how to capture Linux signal in Python.

How to Capture Linux Signal in Python

Python provides an inbuilt library called signal that allows you to easily capture and work with signals. Let us create a sample python script to capture Linux signal.

$ vi test.py

Add the following lines to set the execution environment and import required libraries.

#!/usr/bin/env python
import signal
import sys

Next, we define the signal handler.

def signal_handler(sig, frame):
    print('You pressed Ctrl+C!')
    sys.exit(0)

Next, we register this signal handler using signal.signal(). We specify two arguments in it – the signal that will call the handler, and the name of the handler.

signal.signal(signal.SIGINT, signal_handler)
print('Press Ctrl+C')
signal.pause()

We use the signal.pause() function to cause the process to sleep until it receives a signal. Save and close the file.

Putting it all together.

#!/usr/bin/env python
import signal
import sys

def signal_handler(sig, frame):
    print('You pressed Ctrl+C!')
    sys.exit(0)

signal.signal(signal.SIGINT, signal_handler)
print('Press Ctrl+C')
signal.pause()

Make the file executable.

$ sudo chmod +x test.py

Run the file with the following command.

$ python test.py

In this article, we have learnt how to capture Linux signal in python script.

Also read:

How to Send Signal from Python
How to Clear Canvas for Redrawing in JS
How to Use Decimal Step Value for Range in Python
How to Get Browser Viewport Dimensions in JS
How to Auto Resize TextArea to Fit Text

The post How to Capture Linux Signal in Python appeared first on Fedingo.

Ubuntu Server Admin

Recent Posts

How to install Wget on Ubuntu 24.04

In this blog post, we will guide you on how to install wget on Ubuntu…

17 hours ago

Xfwl4 – The roadmap for a Xfce Wayland Compositor

Jan 27,2026 Xfwl4 - The roadmap for a Xfce Wayland Compositor We, the Xfce team…

4 days ago

🚀 Deploy n8n on Ubuntu VPS (Quick-Start Guide)

This article provides a step-by-step how-to guide to deploy n8n on Ubuntu VPS. What is…

4 days ago

How to avoid package End of Life through backporting

In July 2025, git received CVE-2025-48384, a high vulnerability allowing arbitrary code execution when cloning…

1 week ago

Showcasing open design in action: Loughborough University design students explore open source projects

Last year, we collaborated with two design student teams from Loughborough University in the UK.…

2 weeks ago

Canonical Ubuntu and Ubuntu Pro now available on AWS European Sovereign Cloud

January 15, 2026 – Canonical, the publisher of Ubuntu and provider of open source security,…

2 weeks ago