Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #90440 > unrolled thread

Running cool and silent

Started byRustom Mody <rustompmody@gmail.com>
First post2015-05-12 02:33 -0700
Last post2015-05-19 12:16 +0300
Articles 5 — 3 participants

Back to article view | Back to comp.lang.python


Contents

  Running cool and silent Rustom Mody <rustompmody@gmail.com> - 2015-05-12 02:33 -0700
    Re: Running cool and silent Rustom Mody <rustompmody@gmail.com> - 2015-05-12 02:34 -0700
    Re: Running cool and silent Skip Montanaro <skip.montanaro@gmail.com> - 2015-05-12 08:16 -0500
    Re: Running cool and silent Anssi Saari <as@sci.fi> - 2015-05-19 12:14 +0300
    Re: Running cool and silent Anssi Saari <as@sci.fi> - 2015-05-19 12:16 +0300

#90440 — Running cool and silent

FromRustom Mody <rustompmody@gmail.com>
Date2015-05-12 02:33 -0700
SubjectRunning cool and silent
Message-ID<d5b29c73-b44d-4437-ad3b-6832164ed550@googlegroups.com>
For some reason my Dell laptop runs hot and noisy in linux but cool and
silent in Windows-8

Running

$ echo "min_power" | sudo tee /sys/class/scsi_host/host*/link_power_management_policy

makes the fan slow/stop.

But I am not sure what it does!!
[I dont want my laptop fried and its rather HOT out here right now :-) ]

So is this command safe?
Does someone know what it does? [Dont remember where I found it]

[toc] | [next] | [standalone]


#90441

FromRustom Mody <rustompmody@gmail.com>
Date2015-05-12 02:34 -0700
Message-ID<24bc702a-36f0-4a71-b6ce-1b88fd92b2a7@googlegroups.com>
In reply to#90440
On Tuesday, May 12, 2015 at 3:03:53 PM UTC+5:30, Rustom Mody wrote:
> For some reason my Dell laptop runs hot and noisy in linux but cool and
> silent in Windows-8
> 
> Running
> 
> $ echo "min_power" | sudo tee /sys/class/scsi_host/host*/link_power_management_policy
> 
> makes the fan slow/stop.
> 
> But I am not sure what it does!!
> [I dont want my laptop fried and its rather HOT out here right now :-) ]
> 
> So is this command safe?
> Does someone know what it does? [Dont remember where I found it]

Whoops!!
Wrong list... Sorry

[toc] | [prev] | [next] | [standalone]


#90448

FromSkip Montanaro <skip.montanaro@gmail.com>
Date2015-05-12 08:16 -0500
Message-ID<mailman.395.1431436617.12865.python-list@python.org>
In reply to#90440
On Tue, May 12, 2015 at 4:33 AM, Rustom Mody <rustompmody@gmail.com> wrote:
> $ echo "min_power" | sudo tee /sys/class/scsi_host/host*/link_power_management_policy
>
> makes the fan slow/stop.
>
> But I am not sure what it does!!

My guess is it lowers the clock speed. To bring this into the realm of
Python, here's something you might try:

python -m test.pystone
echo "min_power" | sudo tee
/sys/class/scsi_host/host*/link_power_management_policy
python -m test.pystone

My guess is that you will see the pystone value reduced after issuing
the min_power command.

Skip

[toc] | [prev] | [next] | [standalone]


#90833

FromAnssi Saari <as@sci.fi>
Date2015-05-19 12:14 +0300
Message-ID<vg3twv90vzw.fsf@coffee.modeemi.fi>
In reply to#90440
Rustom Mody <rustompmody@gmail.com> writes:

> For some reason my Dell laptop runs hot and noisy in linux but cool and
> silent in Windows-8
>
> Running
>
> $ echo "min_power" | sudo tee /sys/class/scsi_host/host*/link_power_management_policy
>
> makes the fan slow/stop.
>
> But I am not sure what it does!!
> [I dont want my laptop fried and its rather HOT out here right now :-) ]

That just turns on the power management on your SATA links. Goggle SATA
ALPM if you like. It's perfectly safe.

[toc] | [prev] | [next] | [standalone]


#90834

FromAnssi Saari <as@sci.fi>
Date2015-05-19 12:16 +0300
Message-ID<vg3pp5x0vwc.fsf@coffee.modeemi.fi>
In reply to#90440
Rustom Mody <rustompmody@gmail.com> writes:

> Does someone know what it does? [Dont remember where I found it]

One more comment: run Intel's Powertop to see what else you can do to
improve power management on your laptop.

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web