Ubuntuでハードドライブをオフにする方法は?


20

外付けハードドライブからKubuntuを実行しています。内蔵ハードドライブにWindowsがあります。Ubuntuで使用したくないので、発熱を抑えてバッテリー消費を抑えるためにオフにします。ハードドライブをスピンダウンすることは私にとって選択肢ではないと思います。なぜなら、それはハードドライブを使い果たし、私はHDDに費やすつもりがないからです:)


すでに尋ねた(と回答)同様の質問があります。askubuntu.com/questions/39760/...
ギレムSoulas

1
man hdparm sudo hdparm -Y /dev/sdX
earthmeLon

@GuilhemSoulas私の質問は、ハードドライブをスピンダウンすることではありません。私がハードドライブをオフにする方法です。
アーメドビラル

回答:


20
sudo hdparm -Y /dev/sdX

どこに/ dev / sdXにあなたはオフにしたいデバイスです。sudo blkidデバイスの「指紋」(UUID)を判別するために実行することもできます。これにより、どのデバイスをオフにするかをより確実に制御できます。

この場合、次を実行します。

sudo hdparm -Y /dev/disk/by-uuid/DEVICE-IDENT-HERE

男hdparm

   -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.

正確には何ですかhard or soft reset、つまり、ドライブを元に戻す方法ですか?
アサル

このコマンドはハードディスクドライブをオフにしましたがsudo hdparm -C /dev/sdX、ステータスを照会するために実行すると、ドライブが再びオンになり、スタンバイになります(ソフトリセット、推測します)。省電力を目的としていますが、ハードディスクドライブなしのインストールのシミュレーションは目的外です。
clearkimura

5

次を使用できます(ここにsdc、対応する対象のブロックデバイスの名前があります)。

sync
echo 1 > /sys/block/sdc/device/delete

+1これは、インストーラーがハードディスクドライブをまったく検出できないようにするために期待どおりに機能します。コマンドをルートとして実行する必要があります(sudoではありません)。
clearkimura

1
以下を使用しても同じことが実現可能だと思いますsudosudo bash -c 'echo 1 > /sys/block/sdc/device/delete'
オリエント

3

udisks2パッケージがインストールされている可能性があります。使用できます

udisksctl power-off -b /dev/sdX

/dev/sdXオフにするデバイスはどこですか。

以下からのudisksctlmanページ(バージョン2.7.6):

power-off
    Arranges for the drive to be safely removed and powered off. On the OS
    side this includes ensuring that no process is using the drive, then
    requesting that in-flight buffers and caches are committed to stable
    storage. The exact steps for powering off the drive depends on the
    drive itself and the interconnect used. For drives connected through
    USB, the effect is that the USB device will be deconfigured followed
    by disabling the upstream hub port it is connected to.

    Note that as some physical devices contain multiple drives (for
    example 4-in-1 flash card reader USB devices) powering off one drive
    may affect other drives. As such there are not a lot of guarantees
    associated with performing this action. Usually the effect is that the
    drive disappears as if it was unplugged.
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.