답변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'>"
사용 가능한 프로필
- 절전
- 균형이 잡힌
- 성능
이 명령을 시도하고 재부팅한 후 지속성을 확인하세요. 프로필이 원하지 않는 프로필로 다시 변경되는 경우 위 명령을 시작 명령 목록에 넣으세요.