File: README.Debian

package info (click to toggle)
corectrl 1.4.3%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 4,420 kB
  • sloc: cpp: 40,502; ansic: 174; javascript: 151; makefile: 18; sh: 3
file content (39 lines) | stat: -rw-r--r-- 1,283 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
corectrl for debian

post-installation hints:
 
 Don't ask for user password: 
 
 
 Create the file /etc/polkit-1/rules.d/90-corectrl.rules with the following contents:

 polkit.addRule(function(action, subject) {
    if ((action.id == "org.corectrl.helper.init" ||
         action.id == "org.corectrl.helperkiller.init") &&
        subject.local == true &&
        subject.active == true &&
        subject.isInGroup("your-user-group")) {
            return polkit.Result.YES;
    }
 });

 Replace your-user-group with your user group name.

 
 Full AMD GPU controls:

 Currently, to have full control of your AMD GPU while using the amdgpu driver, you need to append the boot parameter
 amdgpu.ppfeaturemask=0xffffffff to your bootloader configuration and reboot.
 
 If your system uses Grub, edit the file (as root) /etc/default/grub and append the parameter to GRUB_CMDLINE_LINUX_DEFAULT:
 
 GRUB_CMDLINE_LINUX_DEFAULT="<other_params>... amdgpu.ppfeaturemask=0xffffffff"
 
 Then regenerate (as root) the bootloader configuration file with the command:

 grub-mkconfig -o /boot/grub/grub.cfg
 
 Reboot your system.
 You should have more controls when you select Advanced as Performance mode.

 -- Matthias Geiger <matthias.geiger1024@tutanota.de>  Thu, 23 Mar 2023 11:49:32 +0100