Como desativar o segundo disco no laptop?

1

Eu tenho o Kubuntu no disco SSD (primeiro) e também disco HDD (segundo, ao invés de DVD-ROM) no meu laptop. O segundo disco eu uso raramente. Quando meu laptop está ligado, ele não emite nenhum som, mas o HDD espreita porque funciona. Como posso desativar o disco rígido, mas ligar se necessário? I.E. para executar o kubuntu com o HDD desabilitado, mas habilite-o, se necessário.

    
por Sergey Molyak 05.02.2016 / 04:10

2 respostas

1

Gostaria de acrescentar que achei o utilitário Disks (Disks in the Ubuntu Applications launcher) bastante útil. Você pode selecionar as opções de espera para o disco rígido acessando as configurações do Drive em Mais ações.

    
por Nikhil Dev A 05.02.2016 / 05:12
0

Você pode definir quantos segundos de inatividade o disco rígido deve aguardar antes de adormecer com o -S em hdparm

hdparm -S 128 /dev/sdb

Do manual do hdpram

   -S     Put  the  drive  into  idle  (low-power) mode, and also set the standby (spindown) timeout for the drive.
          This timeout value is used by the drive to determine how long to wait  (with  no  disk  activity)  before
          turning  off the spindle motor to save power.  Under such circumstances, the drive may take as long as 30
          seconds to respond to a subsequent disk access, though most drives are much quicker.  The encoding of the
          timeout  value  is somewhat peculiar.  A value of zero means "timeouts are disabled": the device will not
          automatically enter standby mode.  Values from 1 to 240 specify multiples of 5 seconds, yielding timeouts
          from  5 seconds to 20 minutes.  Values from 241 to 251 specify from 1 to 11 units of 30 minutes, yielding
          timeouts from 30 minutes to 5.5 hours.  A value of 252 signifies a timeout of 21 minutes. A value of  253
          sets  a  vendor-defined  timeout  period  between  8 and 12 hours, and the value 254 is reserved.  255 is
          interpreted as 21 minutes plus 15 seconds.  Note that some older drives may have very different interpre‐
          tations of these values.

Para enviar o disco rígido para dormir imediatamente, digite:

hdparm -y /dev/sdb

 -y     Force  an  IDE  drive  to immediately enter the low power consumption standby mode, usually causing it to
          spin down.  The current power mode status can be checked using the -C option.

Com uma maiúscula Y , a unidade entrará em um estado de repouso ainda mais profundo.

   -Y     Force an IDE drive to immediately enter the lowest power consumption sleep mode, causing it to shut  down
          completely.   A  hard  or  soft  reset  is required before the drive can be accessed again (the Linux IDE
          driver will automatically handle issuing a reset if/when needed).  The current power mode status  can  be
          checked using the -C option.

As unidades devem girar quando recebem um comando que requer a leitura do disco. Isso deve ser suportado pelo BIOS e pela própria unidade.

Quando estiver satisfeito com suas opções, você pode automatizar inserindo o comando acima da última linha em /etc/rc.local com sua edição de texto favorita como superusuário.

    
por Nodak 05.02.2016 / 04:33