91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

linux 定時休眠的實現思路

發布時間:2020-09-15 11:25:12 來源:腳本之家 閱讀:199 作者:ImportNew 欄目:服務器

最近公司規定晚上走人后必須關閉電腦,但是像我們這樣的人,經常會忘記了關閉電腦,而且關閉電腦之后再恢復工作環境也是件挺麻煩的事情,無奈之下只能折騰一下,讓linux定時休眠了。

休眠的類型

目前大概由三種類型的休眠:

suspend(suspend to RAM)

指的是除了內存以外的大部分機器部件都進入斷電狀態。 這種休眠狀態恢復速度特別快,但由于內存中的數據并沒有被保存下來,因此這個狀態的系統并沒有進入真正意義上的休眠狀態,還在持續耗電。

hibernate(suspend to disk)

這種休眠會將內存中的系統狀態寫入交換空間內,當系統啟動時就可以從交換空間內讀回系統狀態。 這種情況下系統可以完全斷電,但由于要保存/讀取系統狀態到/從交換空間,因此速度會比較慢,而且需要進行一些配置(下面會說到)

hybrid(suspend to both)

結合了上面兩種休眠類型。它像hibernate一樣將系統狀態存入交換空間內,同時也像suspend一樣并不關閉電源。 這種,在電源未耗盡之前,它能很快的從休眠狀態恢復。而若休眠期間電源耗盡,則它可以從交換空間中恢復系統狀態。

suspend 休眠

進入 suspend 特別簡單,無需額外的配置,在 systemd 系統上直接執行 systemctl suspend 就行了。\

systemctl suspend

它的實際動作由 systemd-suspend.service 所定義, 在 archlinux 上,它長成這樣子的:

# SPDX-License-Identifier: LGPL-2.1+
## This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
[Unit]
Description=Suspend
Documentation=man:systemd-suspend.service(8)
DefaultDependencies=no
Requires=sleep.target
After=sleep.target
[Service]
Type=oneshot
ExecStart=/usr/lib/systemd/systemd-sleep suspend

Hibernation 休眠

由于 hibernation 休眠要求將內存中的內容寫入到交換空間中,因此你至少要有一個空間大于內存的交換分區或者交換文件。 (其實若交換空間不夠內存大也不是一定就無法進行hibernation休眠,可以嘗試運行 echo 0 |sudo tee /sys/power/image_size, 這會讓系統在寫入交換空間時盡可能的進行壓縮,但這種方法也無法保證一定能夠休眠成功)

若之前沒有創建交換分區,那么可以臨時創建一個交換文件來用。比如下面命令創建一個5G的交換文件

sudo dd if=/dev/zero of=/swapfile bs=10240 count=524288
sudo mkswap /swapfile
sudo chmod 0600 /swapfile
sudo swapon /swapfile
sudo cp /etc/fstab /etc/fstab.bak
echo "/swapfile swap swap default 0 0" |tee -a /etc/fstab
Setting up swapspace version 1, size = 5 GiB (5368705024 bytes)
no label, UUID=d0f0c682-e1fa-416f-8fe2-b554b8ca363a
/swapfile swap swap default 0 0

除此創建交換分區之外,我們還需要修改kernel的啟動參數,讓系統在啟動時先嘗試從交換空間中恢復狀態。 具體操作如下:

1. 如果使用交換分區來保存,則只需要為添加kernel的啟動參數 resume=交換分區 即可

(1) 查看那塊分區是交換分區

swapon

NAME  TYPE  SIZE USED PRIO
/dev/sda2 partition 8G 280K -2
/swapfile file  5G 0B -3

可以看出交換分區為 /dev/sda2

(2) 修改 /etc/default/grub, 為 GRUB_CMDLINE_LINUX_DEFAULT 行添加參數 resume=/dev/sda2

sudo sed -i '/GRUB_CMDLINE_LINUX_DEFAULT/ s!"$! resume=/dev/sda2"!' /etc/default/grub

2. 如果是使用交換文件,則需要添加兩個參數 resume=交換文件所在磁盤 以及 resume_offset=交換文件在磁盤中的偏移位置:

(1) 查看交換文件所在磁盤

df /swapfile

文件系統          1K-塊     已用     可用 已用% 掛載點
/dev/sda3      55253696 27582224 24834972   53% /

說明磁盤為 /dev/sda3

(2) 查看交換文件的偏移位置

sudo filefrag -v /swapfile|head -5
Filesystem type is: ef53
File size of /swapfile is 5368709120 (1310720 blocks of 4096 bytes)
 ext:  logical_offset:  physical_offset: length: expected: flags:
 0:  0.. 32767: 4653056.. 4685823: 32768:   
 1: 32768.. 65535: 4685824.. 4718591: 32768:

這里可以看出物理偏移位置時4653056

(3) 修改 /etc/default/grub, 為 GRUB_CMDLINE_LINUX_DEFAULT 行添加參數 resume=/dev/sda3 resume_offset=4653056

sudo sed -i '/GRUB_CMDLINE_LINUX_DEFAULT/ s!"$! resume=/dev/sda3 resume_offset=4653056"!' /etc/default/grub

3. 重新生成 grub.cfg 文件

sudo grub-mkconfig -o /boot/grub/grub.cfg

(1) 配置initramfs添加 resume hook 修改 /etc/mkinitcpio.conf 文件,在 HOOKS 中添加 resume

sudo sed -i '/^HOOKS=/ s/)/ resume)/' /etc/mkinitcpio.conf

其中由兩點需要注意:

  • 由于分區的label和UUID都是 udev 分配的,因此 resume 必須放在 udev 之后
  • 由于 systemd hook 已經有了 resume 的功能,因此若已經有了 systemd hook,則無需再添加 udev hook

(2) 重新生成initramfs

sudo mkinitcpio -g /boot/initramfs-linux-lily.img
==> Starting build: 4.16.12-2-lily
 -> Running build hook: [base]
 -> Running build hook: [udev]
 -> Running build hook: [autodetect]
 -> Running build hook: [modconf]
 -> Running build hook: [block]
 -> Running build hook: [filesystems]
 -> Running build hook: [keyboard]
 -> Running build hook: [fsck]
 -> Running build hook: [resume]
==> Generating module dependencies
==> Creating gzip-compressed initcpio image: /boot/initramfs-linux-lily.img
==> Image generation successful

(3) 重啟,讓配置生效

經過上面復雜的配置后,hibernation 休眠才能真正成功。與 suspend 休眠類似,我們也能使用 systemctl 來進行休眠

systemctl hibernate

類似的,它的實際動作由 systemd-hibernte.service 所定義, 在 archlinux 上,它長成這樣子的:

# SPDX-License-Identifier: LGPL-2.1+
#
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
[Unit]
Description=Hibernate
Documentation=man:systemd-suspend.service(8)
DefaultDependencies=no
Requires=sleep.target
After=sleep.target
[Service]
Type=oneshot
ExecStart=/usr/lib/systemd/systemd-sleep hibernate

hybrid 休眠

在配置好 hibernate 休眠后,也就能正常進行 hybrid 休眠了,方法是執行

systemctl hybrid-sleep

類似的,它的實際動作由 systemd-hybrid-sleep.service 所定義, 在 archlinux 上,它長成這樣子的:

# SPDX-License-Identifier: LGPL-2.1+
#
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
[Unit]
Description=Hybrid Suspend+Hibernate
Documentation=man:systemd-suspend.service(8)
DefaultDependencies=no
Requires=sleep.target
After=sleep.target
[Service]
Type=oneshot
ExecStart=/usr/lib/systemd/systemd-sleep hybrid-sleep

Sleep Hooks

從上面的service文件中可以看出,不管是哪種類型的系統休眠,其內部實際調用的都是 systemd-sleep.

man systemd-sleep

SYSTEMD-SUSPEND.SERVICE(8) systemd-suspend.service SYSTEMD-SUSPEND.SERVICE(8)
NAME
  systemd-suspend.service, systemd-hibernate.service, systemd-hybrid-
  sleep.service, systemd-sleep - System sleep state logic
SYNOPSIS
  systemd-suspend.service
  systemd-hibernate.service
  systemd-hybrid-sleep.service
  /usr/lib/systemd/system-sleep
DESCRIPTION
  systemd-suspend.service is a system service that is pulled in by
  suspend.target and is responsible for the actual system suspend.
  Similarly, systemd-hibernate.service is pulled in by hibernate.target
  to execute the actual hibernation. Finally,
  systemd-hybrid-sleep.service is pulled in by hybrid-sleep.target to
  execute hybrid hibernation with system suspend.
  Immediately before entering system suspend and/or hibernation
  systemd-suspend.service (and the other mentioned units, respectively)
  will run all executables in /usr/lib/systemd/system-sleep/ and pass two
  arguments to them. The first argument will be "pre", the second either
  "suspend", "hibernate", or "hybrid-sleep" depending on the chosen
  action. Immediately after leaving system suspend and/or hibernation the
  same executables are run, but the first argument is now "post". All
  executables in this directory are executed in parallel, and execution
  of the action is not continued until all executables have finished.
  Note that scripts or binaries dropped in /usr/lib/systemd/system-sleep/
  are intended for local use only and should be considered hacks. If
  applications want to react to system suspend/hibernation and resume,
  they should rather use the Inhibitor interface[1].
  Note that systemd-suspend.service, systemd-hibernate.service, and
  systemd-hybrid-sleep.service should never be executed directly.
  Instead, trigger system sleep states with a command such as "systemctl
  suspend" or similar.
  Internally, this service will echo a string like "mem" into
  /sys/power/state, to trigger the actual system suspend. What exactly is
  written where can be configured in the "[Sleep]" section of
  /etc/systemd/sleep.conf or a sleep.conf.d file. See systemd-
  sleep.conf(5).
OPTIONS
  systemd-sleep understands the following commands:
  -h, --help
   Print a short help text and exit.
  --version
   Print a short version string and exit.
  suspend, hibernate, hybrid-sleep
   Suspend, hibernate, or put the system to hybrid sleep.
SEE ALSO
  systemd-sleep.conf(5), systemd(1), systemctl(1), systemd.special(7),
  systemd-halt.service(8)
NOTES
  1. Inhibitor interface

https://www.freedesktop.org/wiki/Software/systemd/inhibit

systemd 238                                         SYSTEMD-SUSPEND.SERVICE(8)
根據 systemd-sleep 的manual pages,可以看到在系統休眠之前以及從休眠狀態恢復之后,都會并行地調用 /usr/lib/systemd/system-sleep 中的腳本,并傳遞兩個參數。

第一個參數用來指定是開始休眠還是從休眠狀態恢復,分別對應的字符串 “pre” 與 “post”.

第二個參數用來指明休眠的類型,分別為字符串 “suspend”, “hibernate” 以及 “hybrid-sleep”

定時執行休眠

systemd 系統中的定時任務是由timer來實現的,而每個timer都與一個service相對應。

一般情況下,timer的名稱與service一致,但必要時可以通過在.timer文件中的 [Timer] 部分指定 Unit= 選項來控制一個與timer不同名的service。

下面是一個timer的例子,每天21:30分開始自動hibernate休眠

[Unit]
Description=Hibernate every 21:30:00
[Timer]
OnCalendar=*-*-* 21:30:00
Persistent=true
Unit=systemd-hibernate.service
[Install]
WantedBy=timers.target

定時喚醒休眠的linux

使用 rtcwake 可以在給定的時間喚醒處于休眠狀態的電腦

其主要用法為:

sudo rtcwake -m ${mode} -t ${time_t}
# 或者
sudo rtcwake -m ${mode} -s ${seconds}

其中,參數mode為待機模式,有以下幾個選項:

standby

普通待機模式,為默認選項,對應 ACPI state S1

mem

suspend休眠,對應 ACPI state S3

disk

hibernation 休眠,對應 ACPI state S4

off

通過調用系統的關機命令來休眠,對應 ACPI state S5

參數 time_t 為從 1970-01-01, 00:00 UTC 開始到現在的秒數,可以通過 date 命令來將時間字符串轉換成這個秒數,比如

sudo rtcwake -m disk -t $(date -d 08:30 +%s)

就是進行 hibernation 休眠,并于08:30分喚醒

參數 seconds 為秒數,表示從現在開始的多少秒后,系統喚醒。

總結

以上所述是小編給大家介紹的linux 定時休眠的實現思路,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

修武县| 博野县| 星子县| 蓬莱市| 建水县| 合水县| 湖南省| 绍兴县| 金湖县| 兴义市| 永安市| 丰原市| 蒙城县| 大关县| 航空| 偃师市| 青海省| 宜黄县| 资源县| 昂仁县| 屯门区| 固阳县| 红安县| 吉水县| 东海县| 厦门市| 长海县| 浮山县| 新营市| 会理县| 宁国市| 手游| 德庆县| 东阳市| 沙田区| 阳信县| 冀州市| 绵阳市| 平顺县| 临邑县| 伊通|