Como parar o HDD externo de Western Digital de Sleeping

1

Eu tenho um Western Digital HDD Externo (2TB) conectado ao Redhat Server com o tipo de partição Ext3. Mas notei que ele vai para o modo 'sleep' se ninguém estiver acessando. Então, se eu tentar acessá-lo, levará algum tempo para ativar o recurso Desativado.

Por favor me avise qual parâmetro desativar

OUTPUT

sudo /sbin/hdparm /dev/sdb1

/dev/sdb1:
 readonly     =  0 (off)
 readahead    = 256 (on)
 geometry     = 46589/255/63, sectors = 3906959742, start = 63
    
por OmiPenguin 29.06.2013 / 09:57

1 resposta

5

Você pode configurar o gerenciamento de energia com

hdparm -B $value /dev/sdx

Coloque isso, por exemplo em /etc/init.d/boot.local

Citando a página man:

A low value means aggressive power management and a high value means better performance. Possible settings range from values 1 through 127 (which permit spin-down), and values 128 through 254 (which do not permit spin- down). The highest degree of power management is attained with a setting of 1, and the highest I/O performance with a setting of 254. A value of 255 tells hdparm to disable Advanced Power Management altogether on the drive (not all drives support disabling it, but most do).

    
por 29.06.2013 / 12:34