From e31338113d50f8878ecfb561c389f7349ef44aba Mon Sep 17 00:00:00 2001 From: CallMeR <9463297+callmer@user.noreply.gitee.com> Date: Sat, 14 Oct 2023 22:36:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20cpupower=20=E6=96=87?= =?UTF-8?q?=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 03.PVE系统调整.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/03.PVE系统调整.md b/03.PVE系统调整.md index a64d0d4..b9914ba 100644 --- a/03.PVE系统调整.md +++ b/03.PVE系统调整.md @@ -163,10 +163,10 @@ performance powersave - CPU 驱动为 `intel_pstate` 时,推荐使用 `powersave` 调度器。 -本文使用 `powersave` 调度器为演示,使用 `nano` 编辑器创建 `linux-cpupower` 的配置文件。 +本文使用 `powersave` 调度器为演示,使用 `nano` 编辑器创建 `cpupower` 的配置文件。 ```bash -## 创建 linux-cpupower 配置文件 +## 创建 cpupower 配置文件 $ nano /etc/default/cpupower ``` @@ -181,10 +181,10 @@ CPUPOWER_STOP_OPTS="frequency-set -g performance" ``` -使用 `nano` 编辑器创建 `linux-cpupower` 服务配置文件,以满足系统自动化设置需求。 +使用 `nano` 编辑器创建 `cpupower` 服务配置文件,以满足系统自动化设置需求。 ```bash -## 创建 linux-cpupower 服务配置文件 +## 创建 cpupower 服务配置文件 $ nano /usr/lib/systemd/system/cpupower.service ``` @@ -218,10 +218,10 @@ WantedBy=multi-user.target $ systemctl daemon-reload ``` -使用以下命令让 `linux-cpupower` 服务开机自启动。 +使用以下命令让 `cpupower` 服务开机自启动。 ```bash -## 设置 PPPoE 拨号服务开机自启 +## 设置 cpupower 拨号服务开机自启 $ systemctl enable cpupower.service ```