How to implement Linux automatic shutdown when the battery is low

How to implement Linux automatic shutdown when the battery is low

Preface

The electricity in my residence has been unstable recently, and there are frequent sudden power outages. Although I have a laptop, it may not be able to receive power. If this continues, the SSD in the laptop will soon fail.

So I wrote a simple script that shuts down the computer when the battery is low, and then uses crontab or systemd timers to check it regularly.

For information on how to use the crontab command, please refer to: https://www.jb51.net/article/148575.htm

Let’s take a look at the detailed introduction.

check_shutdown.timer:

$ cat /etc/systemd/system/check_shutdown.timer 
[Unit]
Description=Check if battery is low every 10 minutes

[Timer]
OnCalendar=*:0/10
Persistent=true

[Install]
WantedBy=timers.target

check_shutdown.service:

$ cat /etc/systemd/system/check_shutdown.service 
[Service]
ExecStart=
ExecStart=/home/jiajun/.xmonad/scripts/shutdown.py

check_shutdown.py:

#!/home/jiajun/.py3k/bin/python

import psutil
import logging
import os
import datetime

bat = psutil.sensors_battery()
logging.warn("%s: battery status: %s", datetime.datetime.now(), bat)

if bat.percent < 15:
logging.warn("gonna shutdown")
os.system("sudo shutdown -h now")

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • Linux (Ubuntu) hibernation, suspend, standby, shutdown commands detailed introduction
  • PHP controls common functions of Linux servers, such as shutdown, restart, opening new sites, etc.
  • Easily master Linux shutdown and restart commands
  • Shell script in Linux to realize shutdown after downloading
  • Detailed explanation of Linux shutdown command summary
  • Linux Administrator's Guide (5) -- Booting and Shutting Down
  • Execute the specified script function when shutting down Linux
  • Detailed explanation of shutdown and restart commands in Linux
  • Linux uses the init command to shut down, restart, and switch modes

<<:  Installation of mysql-community-server. 5.7.18-1.el6 under centos 6.5

>>:  JavaScript implements mouse drag to adjust div size

Recommend

Brief introduction and usage of Table and div

Web front end 1 Student ID Name gender age 01 Zha...

Correct modification steps for Docker's default network segment

background A colleague is working on his security...

Ten useful and simple MySQL functions

function 0. Display current time Command: select ...

Summary of five commands to check swap space in Linux

Preface Two types of swap space can be created un...

MySql implements page query function

First of all, we need to make it clear why we use...

Example of how to build a Harbor public repository with Docker

The previous blog post talked about the Registry ...

Priority analysis of and or queries in MySQL

This may be an issue that is easily overlooked. F...

A little-known JS problem: [] == ![] is true, but {} == !{} is false

console.log( [] == ![] ) // true console.log( {} ...

How to build a new image based on an existing image in Docker

Building new images from existing images is done ...

Class in front-end JavaScript

Table of contents 1. Class 1.1 constructor() 1.2 ...

Detailed explanation of CSS sticky positioning position: sticky problem pit

Preface: position:sticky is a new attribute of CS...

Share 20 excellent web form design cases

Sophie Hardach Clyde Quay Wharf 37 East Soapbox Rx...

Web Design Tips: Simple Rules for Page Layout

Repetition: Repeat certain page design styles thr...

Detailed explanation of flex and position compatibility mining notes

Today I had some free time to write a website for...

Basic usage of wget command under Linux

Table of contents Preface 1. Download a single fi...