Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Created date作成日Updated date更新日Affects version影響を受けるバージョンFix version修正バージョン

 

 

Drive Eraser for Mac - All versions全バージョンN/A

Problem

問題事象

When setting an erasure standard in the config.txt file located in the Blancco Drive Eraser for Mac package the change does not take effect when executing an erasure.

Cause

Macに含まれるconfig.txtファイルに消去方式を設定しても、消去の実行時に変更が反映されない。

原因

It has been discovered that the Blancco Drive Eraser for Mac config.xml file is not being read correctly and the erasure standard set in the file is not being used. Instead the default value set in the erase_mac.command file is being used.

Resolution

Macのconfig.xmlファイルが正しく読み込まれず、ファイルに設定されている消去規格が使用されていないことが判明しています。代わりに、erase_mac.commandファイルで設定されたデフォルト値が使用されています。

解決策

  1. Blancco Drive Eraser for Mac納品時に受け取ったBlancco LUN Eraser .tar ファイルを展開します。 Windowsの標準の環境では、このファイルを展開できないため、サードパーティ製のアーカイブ解凍プログラムをダウンロードして展開する必要があります。
  2. 任意のテキストエディターでerase_mac.commandファイルを読み込みます。次に、
  3. Extract the Blancco LUN Eraser .tar file you received with your Blancco Drive Eraser for Mac product delivery. Windows will not extract this file natively, you will need to download a 3rd party archive extraction program to extract the file.
  4. Load the erase_mac.command file in a text editor of your choosing.  Then find line 15 which will read "ALGORITHM_ID=16".と書かれている15行目を探します。
  5. Edit the "ALGORITHM_ID=16" entry to reflect the numeric identifier of the desired erasure standard. In the example below the DoD 5220.22-M standard has been selected を編集して、目的の消去方式の識別子番号に変更します。次の例では、識別子番号3 (ID 3) . The full list of available erasure algorithm identifiers is available within the product manual.のDoD 5220.22-M方式が選択されています 。指定可能な消去アルゴリズムの識別子の全リストは、製品マニュアルに記載されています。 

    Code Block
    linenumberstrue
    #!/bin/bash
    
    ###############################################################################
    #
    # Script that erases the internal disk of Mac
    #
    ###############################################################################
    
    ###############################################################################
    # Configuration
    
    # Erasure algorithm identifier.
    # See Blancco LUN Eraser user manual or run "BlanccoLUNEraser -standards"
    # to see the list of available algorithms.
    ALGORITHM_ID=3
    
    # Whether to shutdown after erasure if crypto erasure is selected (ALGORITHM=19) 
    SHUTDOWN_AFTER_CRYPTO_ERASE=true