typora/note/工具集/ubuntu关闭自动睡眠.md
2024-12-12 10:48:55 +08:00

17 lines
510 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

### 一、查看自动睡眠状态
````shell
sudo systemctl status sleep.target
````
- Loaded表示自动睡眠开启
![image-20230709082424627](https://blog-heysq-1255479807.cos.ap-beijing.myqcloud.com/blog/note/image-20230709082424627.png)
### 二、关闭自动睡眠和挂起
```shell
sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
```
![image-20230709082545897](https://blog-heysq-1255479807.cos.ap-beijing.myqcloud.com/blog/note/image-20230709082545897.png)