My computer runs very slowly after I lock and unlock it
Tofloor
poster avatar
iblis
deepin
2016-12-27 14:30
Author
As a postgraduate student, I often have tasks that require me to process a large amount of data which takes over 5 hours on MATLAB. So I just begin my task,  lock my computer and do something else. But when I unlock my computer about 3 hours later, it becomes so slow, and sometimes my screen just turns black after I enter my password.
My computer is Acer E5-552G-F41L, with AMD FX-8800P(Quadcore CPU) and 8 GB RAM, running Deepin 15.3.
Reply Favorite View the author
All Replies
saidouhdachi
deepin
2016-12-31 14:15
#1
Hi,
It could be the msr register 0x19a is not set back to 0 after resume. Try to set it to 0 by installing msr-tools and run wrmsr 0x19a 0x0.
sudo apt-get install msr-tools
sudo modprobe msr
sudo rdmsr -a 0x19a
if rdmsr does not give back 0 then:
sudo wrmsr -a 0x19a 0x0

good luck
Reply View the author
iblis
deepin
2017-01-01 14:15
#2
https://bbs.deepin.org/post/133436
Hi,
It could be the msr register 0x19a is not set back to 0 after resume. Try to set it to 0 by inst ...

androidbrain@androidbrain-pc:~$ sudo rdmsr -a 0x19a
rdmsr: CPU 0 cannot read MSR 0x0000019a
androidbrain@androidbrain-pc:~$ sudo wrmsr -a 0x19a 0x0
wrmsr: CPU 0 cannot set MSR 0x0000019a to 0x0000000000000000
androidbrain@androidbrain-pc:~$


Reply View the author
saidouhdachi
deepin
2017-01-02 08:21
#3
Hi,

you must install msr-tools first :

sudo apt-get install msr-tools
Reply View the author