우분투 21.04 전원 모드

우분투 21.04 전원 모드

그래서 저는 AIO 장치를 사용하는데 이는 이 장치가 항상 연결되어 있다는 것을 의미하며 성능 모드를 사용할 수 있지만 재부팅할 때마다 밸런스 모드로 자동 설정됩니다. 성능 모드를 영구적으로 사용하려면 어떻게 해야 합니까?

이게 내가 말하는 거야

답변1

실제로 컴파일이나 스크립트 작성이 필요하지 않은 쉬운 방법이 있습니다. 시작 응용 프로그램이나 시작 중에 실행될 파일에
명령을 입력하기만 하면 됩니다 .powerprofilesctl set performance

답변2

이 링크https://gitlab.freedesktop.org/hadess/power-profiles-daemon명령줄에 필요한 모든 세부 정보를 제공합니다.

설치 단계

git clone https://gitlab.freedesktop.org/hadess/power-profiles-daemon.git
cd power-profiles-daemon
meson _build -Dprefix=/usr
ninja -v -C _build install

어떤 프로필이 활성 상태인지 확인하려면 아래 명령을 실행하세요.

gdbus introspect --system --dest net.hadess.PowerProfiles --object-path /net/hadess/PowerProfiles

결과 중 일부

  interface net.hadess.PowerProfiles {
    methods:
    signals:
    properties:
      readwrite s ActiveProfile = 'balanced';

성능 모드를 설정하려면 아래 명령을 실행하십시오.

gdbus call --system --dest net.hadess.PowerProfiles --object-path /net/hadess/PowerProfiles --method org.freedesktop.DBus.Properties.Set 'net.hadess.PowerProfiles' 'ActiveProfile' "<'performance'>"

사용 가능한 프로필

  1. 절전
  2. 균형이 잡힌
  3. 성능

이 명령을 시도하고 재부팅한 후 지속성을 확인하세요. 프로필이 원하지 않는 프로필로 다시 변경되는 경우 위 명령을 시작 명령 목록에 넣으세요.

관련 정보