Created date作成日Updated date | 更新日 | Affects version影響を受けるバージョンFix version | 修正バージョン |
---|---|---|---|
|
| Drive Eraser for Mac - All versions全バージョン | N/A |
Problem
...
問題事象
Blancco Drive Eraser for Mac package the change does not take effect when executing an erasure.
Cause
It has been discovered that the Macに含まれるconfig.txtファイルに消去方式を設定しても、消去の実行時に変更が反映されない。
原因
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ファイルで設定されたデフォルト値が使用されています。
解決策
- Blancco Drive Eraser for Mac納品時に受け取ったBlancco LUN Eraser .tar ファイルを展開します。 Windowsの標準の環境では、このファイルを展開できないため、サードパーティ製のアーカイブ解凍プログラムをダウンロードして展開する必要があります。
- 任意のテキストエディターでerase_mac.commandファイルを読み込みます。次に、"ALGORITHM_ID=16".と書かれている15行目を探します。
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 linenumbers true #!/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