File tree 1 file changed +11
-4
lines changed
1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -75,16 +75,23 @@ sudo grubby --update-kernel=ALL --args="amdgpu.sg_display=0"
75
75
76
76
- Browse to the horizontal line in the upper left corner, click to open it.
77
77
- Type out the word terminal, click to open it.
78
- - Copy/paste in the following code below.
79
- - Press the enter key, user password, enter key.
78
+ - Copy/paste in the code below (use either the immediate temporary fix or persistent fix) .
79
+ - Then press the enter key, user password, enter key.
80
80
81
81
```
82
+ # Immediate temporary fix to disable power save for running session (no reboot required)
82
83
echo 0 | sudo tee /sys/module/snd_hda_intel/parameters/power_save
83
84
```
84
- > ** TIP:** You can use the little clipboard icon to the right of the code to copy to your clipboard.
85
85
86
+ ```
87
+ # Persistent fix to disable power save using Tuned
88
+ sudo mkdir -p /etc/tuned/profiles/balanced/
89
+ sudo cp /usr/lib/tuned/profiles/balanced/tuned.conf /etc/tuned/profiles/balanced/
90
+ sudo sed -i 's/timeout=10/timeout=0/g' /etc/tuned/profiles/balanced/tuned.conf
91
+ ```
92
+
93
+ > ** TIP:** You can use the little clipboard icon to the right of the code to copy to your clipboard.
86
94
87
- ** Reboot**
88
95
89
96
  ;
90
97
  ;
You can’t perform that action at this time.
0 commit comments